Full Code of yt-project/yt for AI

main 5378fad3ff1e cached
1219 files
9.3 MB
2.5M tokens
7158 symbols
1 requests
Download .txt
Showing preview only (9,972K chars total). Download the full file or copy to clipboard to get everything.
Repository: yt-project/yt
Branch: main
Commit: 5378fad3ff1e
Files: 1219
Total size: 9.3 MB

Directory structure:
gitextract_qdvf8_62/

├── .codecov.yml
├── .coveragerc
├── .git-blame-ignore-revs
├── .github/
│   ├── CODEOWNERS
│   ├── ISSUE_TEMPLATE.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── config.yml
│   ├── dependabot.yml
│   ├── mergeable.yml
│   └── workflows/
│       ├── bleeding-edge.yaml
│       ├── build-test.yaml
│       ├── type-checking.yaml
│       └── wheels.yaml
├── .gitignore
├── .gitmodules
├── .hgchurn
├── .hgtags
├── .mailmap
├── .pre-commit-config.yaml
├── .tours/
│   └── particle-indexing.tour
├── CITATION
├── CONTRIBUTING.rst
├── COPYING.txt
├── CREDITS
├── MANIFEST.in
├── README.md
├── clean.sh
├── conftest.py
├── doc/
│   ├── Makefile
│   ├── README
│   ├── activate
│   ├── activate.csh
│   ├── cheatsheet.tex
│   ├── docstring_idioms.txt
│   ├── extensions/
│   │   ├── README
│   │   ├── config_help.py
│   │   ├── pythonscript_sphinxext.py
│   │   ├── yt_colormaps.py
│   │   ├── yt_cookbook.py
│   │   └── yt_showfields.py
│   ├── helper_scripts/
│   │   ├── code_support.py
│   │   ├── parse_cb_list.py
│   │   ├── parse_dq_list.py
│   │   ├── parse_object_list.py
│   │   ├── run_recipes.py
│   │   ├── show_fields.py
│   │   ├── split_auto.py
│   │   └── table.py
│   └── source/
│       ├── _static/
│       │   └── custom.css
│       ├── _templates/
│       │   ├── autosummary/
│       │   │   └── class.rst
│       │   └── layout.html
│       ├── about/
│       │   └── index.rst
│       ├── analyzing/
│       │   ├── Particle_Trajectories.ipynb
│       │   ├── _static/
│       │   │   ├── axes.c
│       │   │   ├── axes.h
│       │   │   ├── axes_calculator.pyx
│       │   │   └── axes_calculator_setup.txt
│       │   ├── astropy_integrations.rst
│       │   ├── domain_analysis/
│       │   │   ├── XrayEmissionFields.ipynb
│       │   │   ├── clump_finding.rst
│       │   │   ├── cosmology_calculator.rst
│       │   │   ├── index.rst
│       │   │   └── xray_data_README.rst
│       │   ├── fields.rst
│       │   ├── filtering.rst
│       │   ├── generating_processed_data.rst
│       │   ├── index.rst
│       │   ├── ionization_cube.py
│       │   ├── mesh_filter.ipynb
│       │   ├── objects.rst
│       │   ├── parallel_computation.rst
│       │   ├── particle_filter.ipynb
│       │   ├── saving_data.rst
│       │   ├── time_series_analysis.rst
│       │   └── units.rst
│       ├── conf.py
│       ├── cookbook/
│       │   ├── amrkdtree_downsampling.py
│       │   ├── annotate_timestamp_and_scale.py
│       │   ├── annotations.py
│       │   ├── average_value.py
│       │   ├── calculating_information.rst
│       │   ├── camera_movement.py
│       │   ├── changing_label_formats.py
│       │   ├── colormaps.py
│       │   ├── complex_plots.rst
│       │   ├── constructing_data_objects.rst
│       │   ├── contours_on_slice.py
│       │   ├── count.sh
│       │   ├── custom_camera_volume_rendering.py
│       │   ├── custom_colorbar_tickmarks.ipynb
│       │   ├── custom_transfer_function_volume_rendering.py
│       │   ├── customized_phase_plot.py
│       │   ├── customized_profile_plot.py
│       │   ├── derived_field.py
│       │   ├── downsampling_amr.py
│       │   ├── extract_fixed_resolution_data.py
│       │   ├── find_clumps.py
│       │   ├── fits_radio_cubes.ipynb
│       │   ├── fits_xray_images.ipynb
│       │   ├── geographic_xforms_and_projections.ipynb
│       │   ├── global_phase_plots.py
│       │   ├── hse_field.py
│       │   ├── image_background_colors.py
│       │   ├── image_resolution.py
│       │   ├── index.rst
│       │   ├── matplotlib-animation.py
│       │   ├── multi_plot_3x2_FRB.py
│       │   ├── multi_plot_slice_and_proj.py
│       │   ├── multi_width_image.py
│       │   ├── multiplot_2x2.py
│       │   ├── multiplot_2x2_coordaxes_slice.py
│       │   ├── multiplot_2x2_time_series.py
│       │   ├── multiplot_export_to_mpl.py
│       │   ├── multiplot_phaseplot.py
│       │   ├── notebook_tutorial.rst
│       │   ├── offaxis_projection.py
│       │   ├── offaxis_projection_colorbar.py
│       │   ├── opaque_rendering.py
│       │   ├── overplot_grids.py
│       │   ├── overplot_particles.py
│       │   ├── particle_filter.py
│       │   ├── particle_filter_sfr.py
│       │   ├── particle_one_color_plot.py
│       │   ├── particle_xvz_plot.py
│       │   ├── particle_xy_plot.py
│       │   ├── power_spectrum_example.py
│       │   ├── profile_with_standard_deviation.py
│       │   ├── rad_velocity.py
│       │   ├── radial_profile_styles.py
│       │   ├── render_two_fields.py
│       │   ├── render_two_fields_tf.py
│       │   ├── rendering_with_box_and_grids.py
│       │   ├── show_hide_axes_colorbar.py
│       │   ├── sigma_clip.py
│       │   ├── simple_1d_line_plot.py
│       │   ├── simple_contour_in_slice.py
│       │   ├── simple_off_axis_projection.py
│       │   ├── simple_off_axis_slice.py
│       │   ├── simple_pdf.py
│       │   ├── simple_phase.py
│       │   ├── simple_plots.rst
│       │   ├── simple_profile.py
│       │   ├── simple_projection.py
│       │   ├── simple_projection_methods.py
│       │   ├── simple_projection_stddev.py
│       │   ├── simple_projection_weighted.py
│       │   ├── simple_radial_profile.py
│       │   ├── simple_slice.py
│       │   ├── simple_slice_matplotlib_example.py
│       │   ├── simple_slice_with_multiple_fields.py
│       │   ├── simple_volume_rendering.py
│       │   ├── simulation_analysis.py
│       │   ├── streamlines.py
│       │   ├── streamlines_isocontour.py
│       │   ├── sum_mass_in_sphere.py
│       │   ├── surface_plot.py
│       │   ├── tests/
│       │   │   └── test_cookbook.py
│       │   ├── thin_slice_projection.py
│       │   ├── time_series.py
│       │   ├── time_series_profiles.py
│       │   ├── tipsy_and_yt.ipynb
│       │   ├── various_lens.py
│       │   ├── velocity_vectors_on_slice.py
│       │   ├── vol-annotated.py
│       │   ├── vol-lines.py
│       │   ├── vol-points.py
│       │   ├── yt_gadget_analysis.ipynb
│       │   ├── yt_gadget_owls_analysis.ipynb
│       │   └── zoomin_frames.py
│       ├── developing/
│       │   ├── building_the_docs.rst
│       │   ├── creating_datatypes.rst
│       │   ├── creating_derived_fields.rst
│       │   ├── creating_frontend.rst
│       │   ├── debugdrive.rst
│       │   ├── deprecating_features.rst
│       │   ├── developing.rst
│       │   ├── extensions.rst
│       │   ├── external_analysis.rst
│       │   ├── index.rst
│       │   ├── releasing.rst
│       │   └── testing.rst
│       ├── examining/
│       │   ├── Loading_Data_via_Functions.ipynb
│       │   ├── Loading_Generic_Array_Data.ipynb
│       │   ├── Loading_Generic_Particle_Data.ipynb
│       │   ├── Loading_Spherical_Data.ipynb
│       │   ├── index.rst
│       │   ├── loading_data.rst
│       │   └── low_level_inspection.rst
│       ├── faq/
│       │   └── index.rst
│       ├── help/
│       │   └── index.rst
│       ├── index.rst
│       ├── installing.rst
│       ├── intro/
│       │   └── index.rst
│       ├── quickstart/
│       │   ├── 1)_Introduction.ipynb
│       │   ├── 2)_Data_Inspection.ipynb
│       │   ├── 3)_Simple_Visualization.ipynb
│       │   ├── 4)_Data_Objects_and_Time_Series.ipynb
│       │   ├── 5)_Derived_Fields_and_Profiles.ipynb
│       │   ├── 6)_Volume_Rendering.ipynb
│       │   └── index.rst
│       ├── reference/
│       │   ├── api/
│       │   │   └── api.rst
│       │   ├── changelog.rst
│       │   ├── code_support.rst
│       │   ├── command-line.rst
│       │   ├── configuration.rst
│       │   ├── demeshening.rst
│       │   ├── field_list.rst
│       │   ├── index.rst
│       │   └── python_introduction.rst
│       ├── visualizing/
│       │   ├── FITSImageData.ipynb
│       │   ├── TransferFunctionHelper_Tutorial.ipynb
│       │   ├── Volume_Rendering_Tutorial.ipynb
│       │   ├── callbacks.rst
│       │   ├── colormaps/
│       │   │   ├── cmap_images.py
│       │   │   └── index.rst
│       │   ├── geographic_projections_and_transforms.rst
│       │   ├── index.rst
│       │   ├── interactive_data_visualization.rst
│       │   ├── manual_plotting.rst
│       │   ├── mapserver.rst
│       │   ├── plots.rst
│       │   ├── sketchfab.rst
│       │   ├── streamlines.rst
│       │   ├── unstructured_mesh_rendering.rst
│       │   ├── visualizing_particle_datasets_with_firefly.rst
│       │   └── volume_rendering.rst
│       ├── yt3differences.rst
│       └── yt4differences.rst
├── nose_answer.cfg
├── nose_ignores
├── nose_unit.cfg
├── pyproject.toml
├── setup.py
├── setupext.py
├── tests/
│   ├── DD0000/
│   │   ├── moving7_0000
│   │   ├── moving7_0000.boundary
│   │   ├── moving7_0000.boundary.hdf
│   │   ├── moving7_0000.grid0001
│   │   ├── moving7_0000.grid0002
│   │   ├── moving7_0000.grid0003
│   │   └── moving7_0000.hierarchy
│   ├── DD0010/
│   │   ├── moving7_0010
│   │   ├── moving7_0010.boundary
│   │   ├── moving7_0010.boundary.hdf
│   │   ├── moving7_0010.cpu0000
│   │   ├── moving7_0010.hierarchy
│   │   └── moving7_0010.procmap
│   ├── README
│   ├── ci_install.sh
│   ├── local001.bak
│   ├── local001.dir
│   ├── matplotlibrc
│   ├── nose_runner.py
│   ├── pytest_runner.py
│   ├── report_failed_answers.py
│   ├── tests.yaml
│   └── unpin_requirements.py
└── yt/
    ├── __init__.py
    ├── _maintenance/
    │   ├── __init__.py
    │   ├── backports.py
    │   ├── deprecation.py
    │   ├── ipython_compat.py
    │   └── numpy2_compat.py
    ├── _typing.py
    ├── _version.py
    ├── analysis_modules/
    │   ├── __init__.py
    │   ├── absorption_spectrum/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── cosmological_observation/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_analysis/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_finding/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_mass_function/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── level_sets/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── particle_trajectories/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── photon_simulator/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── ppv_cube/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── radmc3d_export/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── spectral_integrator/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── star_analysis/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── sunrise_export/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── sunyaev_zeldovich/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   └── two_point_functions/
    │       ├── __init__.py
    │       └── api.py
    ├── api.py
    ├── arraytypes.py
    ├── config.py
    ├── data_objects/
    │   ├── __init__.py
    │   ├── analyzer_objects.py
    │   ├── api.py
    │   ├── construction_data_containers.py
    │   ├── data_containers.py
    │   ├── derived_quantities.py
    │   ├── field_data.py
    │   ├── image_array.py
    │   ├── index_subobjects/
    │   │   ├── __init__.py
    │   │   ├── grid_patch.py
    │   │   ├── octree_subset.py
    │   │   ├── particle_container.py
    │   │   ├── stretched_grid.py
    │   │   └── unstructured_mesh.py
    │   ├── level_sets/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── clump_handling.py
    │   │   ├── clump_info_items.py
    │   │   ├── clump_tools.py
    │   │   ├── clump_validators.py
    │   │   ├── contour_finder.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_clump_finding.py
    │   ├── particle_filters.py
    │   ├── particle_trajectories.py
    │   ├── particle_unions.py
    │   ├── profiles.py
    │   ├── region_expression.py
    │   ├── selection_objects/
    │   │   ├── __init__.py
    │   │   ├── boolean_operations.py
    │   │   ├── cut_region.py
    │   │   ├── data_selection_objects.py
    │   │   ├── disk.py
    │   │   ├── object_collection.py
    │   │   ├── point.py
    │   │   ├── ray.py
    │   │   ├── region.py
    │   │   ├── slices.py
    │   │   └── spheroids.py
    │   ├── static_output.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── test_add_field.py
    │   │   ├── test_bbox.py
    │   │   ├── test_boolean_regions.py
    │   │   ├── test_center_squeeze.py
    │   │   ├── test_chunking.py
    │   │   ├── test_clone.py
    │   │   ├── test_compose.py
    │   │   ├── test_connected_sets.py
    │   │   ├── test_covering_grid.py
    │   │   ├── test_cut_region_chaining.py
    │   │   ├── test_cutting_plane.py
    │   │   ├── test_data_collection.py
    │   │   ├── test_data_containers.py
    │   │   ├── test_dataset_access.py
    │   │   ├── test_derived_quantities.py
    │   │   ├── test_disks.py
    │   │   ├── test_ellipsoid.py
    │   │   ├── test_exclude_functions.py
    │   │   ├── test_extract_regions.py
    │   │   ├── test_firefly.py
    │   │   ├── test_fluxes.py
    │   │   ├── test_image_array.py
    │   │   ├── test_io_geometry.py
    │   │   ├── test_numpy_ops.py
    │   │   ├── test_octree.py
    │   │   ├── test_ortho_rays.py
    │   │   ├── test_particle_filter.py
    │   │   ├── test_particle_trajectories.py
    │   │   ├── test_particle_trajectories_pytest.py
    │   │   ├── test_pickling.py
    │   │   ├── test_points.py
    │   │   ├── test_print_stats.py
    │   │   ├── test_profiles.py
    │   │   ├── test_projection.py
    │   │   ├── test_rays.py
    │   │   ├── test_refinement.py
    │   │   ├── test_regions.py
    │   │   ├── test_registration.py
    │   │   ├── test_slice.py
    │   │   ├── test_sph_data_objects.py
    │   │   ├── test_spheres.py
    │   │   ├── test_time_series.py
    │   │   └── test_units_override.py
    │   ├── time_series.py
    │   └── unions.py
    ├── default.mplstyle
    ├── extensions/
    │   └── __init__.py
    ├── exthook.py
    ├── fields/
    │   ├── __init__.py
    │   ├── angular_momentum.py
    │   ├── api.py
    │   ├── astro_fields.py
    │   ├── astro_simulations.py
    │   ├── cosmology_fields.py
    │   ├── derived_field.py
    │   ├── domain_context.py
    │   ├── field_aliases.py
    │   ├── field_detector.py
    │   ├── field_exceptions.py
    │   ├── field_functions.py
    │   ├── field_info_container.py
    │   ├── field_plugin_registry.py
    │   ├── field_type_container.py
    │   ├── fluid_fields.py
    │   ├── fluid_vector_fields.py
    │   ├── geometric_fields.py
    │   ├── interpolated_fields.py
    │   ├── local_fields.py
    │   ├── magnetic_field.py
    │   ├── my_plugin_fields.py
    │   ├── particle_fields.py
    │   ├── species_fields.py
    │   ├── tensor_fields.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── test_ambiguous_fields.py
    │   │   ├── test_angular_momentum.py
    │   │   ├── test_field_access.py
    │   │   ├── test_field_access_pytest.py
    │   │   ├── test_field_name_container.py
    │   │   ├── test_fields.py
    │   │   ├── test_fields_plugins.py
    │   │   ├── test_fields_pytest.py
    │   │   ├── test_magnetic_fields.py
    │   │   ├── test_particle_fields.py
    │   │   ├── test_species_fields.py
    │   │   ├── test_sph_fields.py
    │   │   ├── test_vector_fields.py
    │   │   └── test_xray_fields.py
    │   ├── vector_operations.py
    │   └── xray_emission_fields.py
    ├── frontends/
    │   ├── __init__.py
    │   ├── _skeleton/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── misc.py
    │   ├── adaptahop/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── ahf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── amrex/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_field_parsing.py
    │   │       └── test_outputs.py
    │   ├── amrvac/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── datfile_utils.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── sample_parfiles/
    │   │       │   ├── bw_3d.par
    │   │       │   └── tvdlf_scheme.par
    │   │       ├── test_outputs.py
    │   │       ├── test_read_amrvac_namelist.py
    │   │       └── test_units_override.py
    │   ├── api.py
    │   ├── arepo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── art/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── artio/
    │   │   ├── __init__.py
    │   │   ├── _artio_caller.pyx
    │   │   ├── api.py
    │   │   ├── artio_headers/
    │   │   │   ├── LICENSE
    │   │   │   ├── artio.c
    │   │   │   ├── artio.h
    │   │   │   ├── artio_endian.c
    │   │   │   ├── artio_endian.h
    │   │   │   ├── artio_file.c
    │   │   │   ├── artio_grid.c
    │   │   │   ├── artio_internal.h
    │   │   │   ├── artio_mpi.c
    │   │   │   ├── artio_mpi.h
    │   │   │   ├── artio_parameter.c
    │   │   │   ├── artio_particle.c
    │   │   │   ├── artio_posix.c
    │   │   │   ├── artio_selector.c
    │   │   │   ├── artio_sfc.c
    │   │   │   ├── cosmology.c
    │   │   │   └── cosmology.h
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── athena/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── athena_pp/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── boxlib/
    │   │   ├── __init__.py
    │   │   ├── _deprecation.py
    │   │   ├── api.py
    │   │   ├── data_structures/
    │   │   │   └── __init__.py
    │   │   ├── fields/
    │   │   │   └── __init__.py
    │   │   ├── io/
    │   │   │   └── __init__.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_boxlib_deprecation.py
    │   │       └── test_outputs.py
    │   ├── cf_radial/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_cf_radial_pytest.py
    │   │       └── test_outputs.py
    │   ├── chimera/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── cholla/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── chombo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── eagle/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── enzo/
    │   │   ├── __init__.py
    │   │   ├── answer_testing_support.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── simulation_handling.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── enzo_e/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_misc.py
    │   │       └── test_outputs.py
    │   ├── exodus_ii/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── simulation_handling.py
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   └── test_outputs.py
    │   │   └── util.py
    │   ├── fits/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── flash/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gadget/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── simulation_handling.py
    │   │   ├── testing.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_gadget_pytest.py
    │   │       └── test_outputs.py
    │   ├── gadget_fof/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gamer/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── cfields.pyx
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gdf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── conftest.py
    │   │       ├── test_outputs.py
    │   │       └── test_outputs_nose.py
    │   ├── gizmo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── halo_catalog/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── http_stream/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   └── io.py
    │   ├── moab/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_c5.py
    │   ├── nc4_cm1/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── open_pmd/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── owls/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── owls_ion_tables.py
    │   │   ├── simulation_handling.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── owls_subfind/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── parthenon/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── ramses/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── field_handlers.py
    │   │   ├── fields.py
    │   │   ├── hilbert.py
    │   │   ├── io.py
    │   │   ├── io_utils.pyx
    │   │   ├── particle_handlers.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_file_sanitizer.py
    │   │       ├── test_hilbert.py
    │   │       ├── test_outputs.py
    │   │       └── test_outputs_pytest.py
    │   ├── rockstar/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── sdf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── misc.py
    │   ├── sph/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   └── io.py
    │   ├── stream/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── sample_data/
    │   │   │   ├── __init__.py
    │   │   │   ├── hexahedral_mesh.py
    │   │   │   └── tetrahedral_mesh.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_callable_grids.py
    │   │       ├── test_outputs.py
    │   │       ├── test_stream_amrgrids.py
    │   │       ├── test_stream_hexahedral.py
    │   │       ├── test_stream_octree.py
    │   │       ├── test_stream_particles.py
    │   │       ├── test_stream_species.py
    │   │       ├── test_stream_stretched.py
    │   │       ├── test_stream_unstructured.py
    │   │       └── test_update_data.py
    │   ├── swift/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── tipsy/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   └── ytdata/
    │       ├── __init__.py
    │       ├── api.py
    │       ├── data_structures.py
    │       ├── fields.py
    │       ├── io.py
    │       ├── tests/
    │       │   ├── __init__.py
    │       │   ├── test_data_reload.py
    │       │   ├── test_old_outputs.py
    │       │   ├── test_outputs.py
    │       │   └── test_unit.py
    │       └── utilities.py
    ├── funcs.py
    ├── geometry/
    │   ├── __init__.py
    │   ├── _selection_routines/
    │   │   ├── always_selector.pxi
    │   │   ├── boolean_selectors.pxi
    │   │   ├── compose_selector.pxi
    │   │   ├── cut_region_selector.pxi
    │   │   ├── cutting_plane_selector.pxi
    │   │   ├── data_collection_selector.pxi
    │   │   ├── disk_selector.pxi
    │   │   ├── ellipsoid_selector.pxi
    │   │   ├── grid_selector.pxi
    │   │   ├── halo_particles_selector.pxi
    │   │   ├── indexed_octree_subset_selector.pxi
    │   │   ├── octree_subset_selector.pxi
    │   │   ├── ortho_ray_selector.pxi
    │   │   ├── point_selector.pxi
    │   │   ├── ray_selector.pxi
    │   │   ├── region_selector.pxi
    │   │   ├── selector_object.pxi
    │   │   ├── slice_selector.pxi
    │   │   └── sphere_selector.pxi
    │   ├── api.py
    │   ├── coordinates/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── cartesian_coordinates.py
    │   │   ├── coordinate_handler.py
    │   │   ├── cylindrical_coordinates.py
    │   │   ├── geographic_coordinates.py
    │   │   ├── polar_coordinates.py
    │   │   ├── spec_cube_coordinates.py
    │   │   ├── spherical_coordinates.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_axial_pixelization.py
    │   │       ├── test_cartesian_coordinates.py
    │   │       ├── test_cylindrical_coordinates.py
    │   │       ├── test_geographic_coordinates.py
    │   │       ├── test_polar_coordinates.py
    │   │       ├── test_sanitize_center.py
    │   │       ├── test_sph_pixelization.py
    │   │       ├── test_sph_pixelization_pytestonly.py
    │   │       └── test_spherical_coordinates.py
    │   ├── fake_octree.pyx
    │   ├── geometry_enum.py
    │   ├── geometry_handler.py
    │   ├── grid_container.pxd
    │   ├── grid_container.pyx
    │   ├── grid_geometry_handler.py
    │   ├── grid_visitors.pxd
    │   ├── grid_visitors.pyx
    │   ├── oct_container.pxd
    │   ├── oct_container.pyx
    │   ├── oct_geometry_handler.py
    │   ├── oct_visitors.pxd
    │   ├── oct_visitors.pyx
    │   ├── particle_deposit.pxd
    │   ├── particle_deposit.pyx
    │   ├── particle_geometry_handler.py
    │   ├── particle_oct_container.pyx
    │   ├── particle_smooth.pxd
    │   ├── particle_smooth.pyx
    │   ├── selection_routines.pxd
    │   ├── selection_routines.pyx
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── fake_octree.py
    │   │   ├── test_ewah_write_load.py
    │   │   ├── test_geometries.py
    │   │   ├── test_grid_container.py
    │   │   ├── test_grid_index.py
    │   │   ├── test_particle_deposit.py
    │   │   ├── test_particle_octree.py
    │   │   └── test_pickleable_selections.py
    │   ├── unstructured_mesh_handler.py
    │   └── vectorized_ops.h
    ├── loaders.py
    ├── py.typed
    ├── sample_data/
    │   ├── __init__.py
    │   └── api.py
    ├── sample_data_registry.json
    ├── startup_tasks.py
    ├── test_fake_amr_ds_particle_positions_within_domain.py
    ├── testing.py
    ├── tests/
    │   ├── __init__.py
    │   ├── test_external_frontends.py
    │   ├── test_funcs.py
    │   ├── test_load_archive.py
    │   ├── test_load_errors.py
    │   ├── test_load_sample.py
    │   ├── test_testing.py
    │   └── test_version.py
    ├── units/
    │   ├── __init__.py
    │   ├── _numpy_wrapper_functions.py
    │   ├── dimensions.py
    │   ├── equivalencies.py
    │   ├── physical_constants.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   └── test_magnetic_code_units.py
    │   ├── unit_lookup_table.py
    │   ├── unit_object.py
    │   ├── unit_registry.py
    │   ├── unit_symbols.py
    │   ├── unit_systems.py
    │   └── yt_array.py
    ├── utilities/
    │   ├── __init__.py
    │   ├── amr_kdtree/
    │   │   ├── __init__.py
    │   │   ├── amr_kdtools.py
    │   │   ├── amr_kdtree.py
    │   │   └── api.py
    │   ├── answer_testing/
    │   │   ├── __init__.py
    │   │   ├── answer_tests.py
    │   │   ├── api.py
    │   │   ├── framework.py
    │   │   ├── level_sets_tests.py
    │   │   └── testing_utilities.py
    │   ├── api.py
    │   ├── chemical_formulas.py
    │   ├── command_line.py
    │   ├── configuration_tree.py
    │   ├── configure.py
    │   ├── cosmology.py
    │   ├── cython_fortran_utils.pxd
    │   ├── cython_fortran_utils.pyx
    │   ├── decompose.py
    │   ├── definitions.py
    │   ├── exceptions.py
    │   ├── file_handler.py
    │   ├── flagging_methods.py
    │   ├── fortran_utils.py
    │   ├── grid_data_format/
    │   │   ├── __init__.py
    │   │   ├── conversion/
    │   │   │   ├── __init__.py
    │   │   │   ├── conversion_abc.py
    │   │   │   └── conversion_athena.py
    │   │   ├── docs/
    │   │   │   ├── IRATE_notes.txt
    │   │   │   └── gdf_specification.txt
    │   │   ├── scripts/
    │   │   │   ├── convert_distributed_athena.py
    │   │   │   └── convert_single_athena.py
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   └── test_writer.py
    │   │   └── writer.py
    │   ├── hierarchy_inspection.py
    │   ├── initial_conditions.py
    │   ├── io_handler.py
    │   ├── lib/
    │   │   ├── __init__.py
    │   │   ├── _octree_raytracing.hpp
    │   │   ├── _octree_raytracing.pxd
    │   │   ├── _octree_raytracing.pyx
    │   │   ├── allocation_container.pxd
    │   │   ├── allocation_container.pyx
    │   │   ├── alt_ray_tracers.pyx
    │   │   ├── amr_kdtools.pxd
    │   │   ├── amr_kdtools.pyx
    │   │   ├── api.py
    │   │   ├── autogenerated_element_samplers.pxd
    │   │   ├── autogenerated_element_samplers.pyx
    │   │   ├── basic_octree.pyx
    │   │   ├── bitarray.pxd
    │   │   ├── bitarray.pyx
    │   │   ├── bounded_priority_queue.pxd
    │   │   ├── bounded_priority_queue.pyx
    │   │   ├── bounding_volume_hierarchy.pxd
    │   │   ├── bounding_volume_hierarchy.pyx
    │   │   ├── contour_finding.pxd
    │   │   ├── contour_finding.pyx
    │   │   ├── cosmology_time.pyx
    │   │   ├── cykdtree/
    │   │   │   ├── __init__.py
    │   │   │   ├── c_kdtree.cpp
    │   │   │   ├── c_kdtree.hpp
    │   │   │   ├── c_utils.cpp
    │   │   │   ├── c_utils.hpp
    │   │   │   ├── kdtree.pxd
    │   │   │   ├── kdtree.pyx
    │   │   │   ├── plot.py
    │   │   │   ├── tests/
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── scaling.py
    │   │   │   │   ├── test_kdtree.py
    │   │   │   │   ├── test_plot.py
    │   │   │   │   └── test_utils.py
    │   │   │   ├── utils.pxd
    │   │   │   ├── utils.pyx
    │   │   │   └── windows/
    │   │   │       └── stdint.h
    │   │   ├── cyoctree.pyx
    │   │   ├── depth_first_octree.pyx
    │   │   ├── distance_queue.pxd
    │   │   ├── distance_queue.pyx
    │   │   ├── element_mappings.pxd
    │   │   ├── element_mappings.pyx
    │   │   ├── embree_mesh/
    │   │   │   ├── __init__.py
    │   │   │   ├── mesh_construction.pxd
    │   │   │   ├── mesh_construction.pyx
    │   │   │   ├── mesh_intersection.pxd
    │   │   │   ├── mesh_intersection.pyx
    │   │   │   ├── mesh_samplers.pxd
    │   │   │   ├── mesh_samplers.pyx
    │   │   │   ├── mesh_traversal.pxd
    │   │   │   └── mesh_traversal.pyx
    │   │   ├── endian_swap.h
    │   │   ├── field_interpolation_tables.pxd
    │   │   ├── fixed_interpolator.cpp
    │   │   ├── fixed_interpolator.hpp
    │   │   ├── fixed_interpolator.pxd
    │   │   ├── fnv_hash.pxd
    │   │   ├── fnv_hash.pyx
    │   │   ├── fortran_reader.pyx
    │   │   ├── fp_utils.pxd
    │   │   ├── geometry_utils.pxd
    │   │   ├── geometry_utils.pyx
    │   │   ├── grid_traversal.pxd
    │   │   ├── grid_traversal.pyx
    │   │   ├── healpix_interface.pxd
    │   │   ├── image_samplers.pxd
    │   │   ├── image_samplers.pyx
    │   │   ├── image_utilities.pyx
    │   │   ├── interpolators.pyx
    │   │   ├── lenses.pxd
    │   │   ├── lenses.pyx
    │   │   ├── marching_cubes.h
    │   │   ├── marching_cubes.pyx
    │   │   ├── mesh_triangulation.h
    │   │   ├── mesh_triangulation.pyx
    │   │   ├── mesh_utilities.pyx
    │   │   ├── misc_utilities.pyx
    │   │   ├── octree_raytracing.py
    │   │   ├── origami.pyx
    │   │   ├── origami_tags.c
    │   │   ├── origami_tags.h
    │   │   ├── particle_kdtree_tools.pxd
    │   │   ├── particle_kdtree_tools.pyx
    │   │   ├── particle_mesh_operations.pyx
    │   │   ├── partitioned_grid.pxd
    │   │   ├── partitioned_grid.pyx
    │   │   ├── pixelization_constants.cpp
    │   │   ├── pixelization_constants.hpp
    │   │   ├── pixelization_routines.pyx
    │   │   ├── platform_dep.h
    │   │   ├── platform_dep_math.hpp
    │   │   ├── points_in_volume.pyx
    │   │   ├── primitives.pxd
    │   │   ├── primitives.pyx
    │   │   ├── quad_tree.pyx
    │   │   ├── ragged_arrays.pyx
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   ├── test_allocation_container.py
    │   │   │   ├── test_alt_ray_tracers.py
    │   │   │   ├── test_bitarray.py
    │   │   │   ├── test_bounding_volume_hierarchy.py
    │   │   │   ├── test_element_mappings.py
    │   │   │   ├── test_fill_region.py
    │   │   │   ├── test_geometry_utils.py
    │   │   │   ├── test_nn.py
    │   │   │   ├── test_ragged_arrays.py
    │   │   │   └── test_sample.py
    │   │   ├── tsearch.c
    │   │   ├── tsearch.h
    │   │   ├── vec3_ops.pxd
    │   │   ├── volume_container.pxd
    │   │   └── write_array.pyx
    │   ├── linear_interpolators.py
    │   ├── lodgeit.py
    │   ├── logger.py
    │   ├── math_utils.py
    │   ├── mesh_code_generation.py
    │   ├── mesh_types.yaml
    │   ├── metadata.py
    │   ├── minimal_representation.py
    │   ├── nodal_data_utils.py
    │   ├── object_registries.py
    │   ├── on_demand_imports.py
    │   ├── operator_registry.py
    │   ├── orientation.py
    │   ├── parallel_tools/
    │   │   ├── __init__.py
    │   │   ├── controller_system.py
    │   │   ├── io_runner.py
    │   │   ├── parallel_analysis_interface.py
    │   │   └── task_queue.py
    │   ├── parameter_file_storage.py
    │   ├── particle_generator.py
    │   ├── performance_counters.py
    │   ├── periodic_table.py
    │   ├── physical_constants.py
    │   ├── physical_ratios.py
    │   ├── png_writer.py
    │   ├── rpdb.py
    │   ├── sdf.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── cosmology_answers.yml
    │   │   ├── test_amr_kdtree.py
    │   │   ├── test_chemical_formulas.py
    │   │   ├── test_config.py
    │   │   ├── test_coordinate_conversions.py
    │   │   ├── test_cosmology.py
    │   │   ├── test_cython_fortran_utils.py
    │   │   ├── test_decompose.py
    │   │   ├── test_flagging_methods.py
    │   │   ├── test_hierarchy_inspection.py
    │   │   ├── test_interpolators.py
    │   │   ├── test_minimal_representation.py
    │   │   ├── test_on_demand_imports.py
    │   │   ├── test_particle_generator.py
    │   │   ├── test_periodic_table.py
    │   │   ├── test_periodicity.py
    │   │   ├── test_selectors.py
    │   │   └── test_set_log_level.py
    │   ├── tree_container.py
    │   └── voropp.pyx
    └── visualization/
        ├── __init__.py
        ├── _colormap_data.py
        ├── _commons.py
        ├── _handlers.py
        ├── api.py
        ├── base_plot_types.py
        ├── color_maps.py
        ├── eps_writer.py
        ├── fits_image.py
        ├── fixed_resolution.py
        ├── fixed_resolution_filters.py
        ├── geo_plot_utils.py
        ├── image_writer.py
        ├── line_plot.py
        ├── mapserver/
        │   ├── __init__.py
        │   ├── html/
        │   │   ├── Leaflet.Coordinates-0.1.5.css
        │   │   ├── Leaflet.Coordinates-0.1.5.src.js
        │   │   ├── __init__.py
        │   │   ├── map.js
        │   │   └── map_index.html
        │   └── pannable_map.py
        ├── particle_plots.py
        ├── plot_container.py
        ├── plot_modifications.py
        ├── plot_window.py
        ├── profile_plotter.py
        ├── streamlines.py
        ├── tests/
        │   ├── __init__.py
        │   ├── test_base_plot_types.py
        │   ├── test_callbacks.py
        │   ├── test_callbacks_geographic.py
        │   ├── test_color_maps.py
        │   ├── test_commons.py
        │   ├── test_eps_writer.py
        │   ├── test_export_frb.py
        │   ├── test_filters.py
        │   ├── test_fits_image.py
        │   ├── test_geo_projections.py
        │   ├── test_image_comp_2D_plots.py
        │   ├── test_image_comp_geo.py
        │   ├── test_image_writer.py
        │   ├── test_invalid_origin.py
        │   ├── test_line_annotation_unit.py
        │   ├── test_line_plots.py
        │   ├── test_mesh_slices.py
        │   ├── test_normal_plot_api.py
        │   ├── test_offaxisprojection.py
        │   ├── test_offaxisprojection_pytestonly.py
        │   ├── test_particle_plot.py
        │   ├── test_plot_modifications.py
        │   ├── test_plotwindow.py
        │   ├── test_profile_plots.py
        │   ├── test_raw_field_slices.py
        │   ├── test_save.py
        │   ├── test_set_zlim.py
        │   └── test_splat.py
        └── volume_rendering/
            ├── UBVRI.py
            ├── __init__.py
            ├── _cuda_caster.cu
            ├── api.py
            ├── blenders.py
            ├── camera.py
            ├── camera_path.py
            ├── create_spline.py
            ├── image_handling.py
            ├── lens.py
            ├── off_axis_projection.py
            ├── old_camera.py
            ├── render_source.py
            ├── scene.py
            ├── tests/
            │   ├── __init__.py
            │   ├── test_camera_attributes.py
            │   ├── test_composite.py
            │   ├── test_lenses.py
            │   ├── test_mesh_render.py
            │   ├── test_off_axis_SPH.py
            │   ├── test_points.py
            │   ├── test_save_render.py
            │   ├── test_scene.py
            │   ├── test_sigma_clip.py
            │   ├── test_simple_vr.py
            │   ├── test_varia.py
            │   ├── test_vr_cameras.py
            │   ├── test_vr_orientation.py
            │   └── test_zbuff.py
            ├── transfer_function_helper.py
            ├── transfer_functions.py
            ├── utils.py
            ├── volume_rendering.py
            └── zbuffer_array.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .codecov.yml
================================================
comment: false

coverage:
  status:
    project:
      default:
        threshold: 1%
    patch:
      default:
        threshold: 100%

codecov:
  token: 4c73bd46-5ea2-4c6f-8dd1-8422f5490455


================================================
FILE: .coveragerc
================================================
[run]
plugins = Cython.Coverage
branch = True

[report]
omit=*.yml
     */api.py
	 */__init__.py
	 */__config__.py
	 */tests/*
	 yt/analysis_modules/*
	 yt/mods.py
	 yt/utilities/fits_image.py
	 yt/utilities/lodgeit.py

ignore_errors = True


================================================
FILE: .git-blame-ignore-revs
================================================
# transition to isort
7edfcee093cca277307aabdb180e0ffc69768291
81418e459f16c48d6b7a75d6ef8035dfe9651b39
60f670d75a23a6d094879437a8df455a66acbeaf
556636e64712a4e161b1d09aeba5833540d05994

# transition to black
ebadee629414aed2c7b6526e22a419205329ec38
6f0e37c4b926f1411b14bd35da85c7e7e27d0cd9

# update to black 22.1.0
4036201ab59ac4072defa416ed610c200556b49f

# automated trailing whitespace removal
3ee548b04a41dfbc009921c492fba6a0682651ca

# converting to f-strings
ad898e8e3954bc348daaa449d5ed73db778785e9
ef51ad5199692afcf1a8ab491aa115c00c423113
323ac4ddd4e99d6b951666736d4e9b03b6cfa21e
f7445f02022293f1b089cd8907000301516354bf

# f-strings, black & isort on doc
e6276f25fc5a570d886b6bbdaa7e3062da2d35ca

# fix EOF
5e5ce1487f9b04344d297b7901cf5f82c6fee3cb

# fix trailing whitespace
12068b7a38ec17cb3d83baca32c1dc8d07613f9a

# auto-fixes from pre-commit
f3a0720bb713aead0f0d50888f2176d20fe02ef4
7931b96a90c20d835a4dc96b81019382f9461351

# legacy conversion commits authored by "convert-repo"
b7112d4ccbcd309ae2c5c2ee0f9352466a0cecf2
33f3988bbfa97399114e3df9ac491c828ae59a8c
cae222aec845d0b400e2aa2804e75b2adef17ccd
993162d6fb38f55b0bf372da1c3b984ee2d4f085
ef783151bfd7c6777fa25e9e06f95fe47653b3aa
063e2fb630932cbdcbbbdba603c100a37e7e40f6
279b0551ccc9d9d4c114904b94bc705381c61105

# apply linting to ipynb files
ec8bb45ea1603f3862041fa9e8ec274afd9bbbfd

# auto upgrade typing idioms from Python 3.8 to 3.9
4cfd370a8445abd4620e3853c2c047ee3d649fd7

# migration: black -> ruff-format
3214662dc7d53f7ac56b3589c5a27ef075f83ab4

# auto upgrade syntax from Python 3.9 to 3.10
e86625e780b77a42aedad711e5a9a945ce650974


================================================
FILE: .github/CODEOWNERS
================================================
# Auto request reviews from specific users or teams matching patterns
#
# - the yt-project retains ownership of any code within this repo unless explicitly stated otherwise
# - automated requests for reviews are informational and not binding: any party remains
#   free to conduct reviews or not
# - opting in is purely on a voluntary basis and cannot be done by a third party
# - opting out does not require the person or team to open a PR themselves
# but stakeholders should be contacted if done by a third party.
#
# Documentation at
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# general dependency and CI management
pyproject.toml              @neutrinoceros
uv.lock                     @neutrinoceros
.pre-commit-config.yaml     @neutrinoceros
.git*                       @neutrinoceros


# build
setup(|ext).py              @neutrinoceros
MANIFEST.in                 @neutrinoceros


# testing
conftest.py                 @neutrinoceros


# frontends
yt/frontends/amrvac         @neutrinoceros


================================================
FILE: .github/ISSUE_TEMPLATE.md
================================================
<!--To help us understand and resolve your issue, please fill out the form to
the best of your ability.-->
<!--You can feel free to delete the sections that do not apply.-->

### Bug report

**Bug summary**

<!--A short 1-2 sentences that succinctly describes the bug-->

**Code for reproduction**

<!--A minimum code snippet required to reproduce the bug, also minimizing the
number of dependencies required.-->

<!-- If you need to use a data file to trigger the issue you're having, consider
using one of the datasets from the yt data hub (http://yt-project.org/data). If
your issue cannot be triggered using a public dataset, you can use the yt
curldrop (https://docs.hub.yt/services.html#curldrop) to share data
files. Please include a link to the dataset in the issue if you use the
curldrop.-->

```python
# Paste your code here
#
#
```

**Actual outcome**

<!--The output produced by the above code, which may be a screenshot, console
output, etc.-->

```
# If applicable, paste the console output here
#
#
```

**Expected outcome**

<!--A description of the expected outcome from the code snippet-->
<!--If this used to work in an earlier version of yt, please note the
version it used to work on-->

**Version Information**
<!--Please specify your platform and versions of the relevant libraries you are
using:-->
  * Operating System:
  * Python Version:
  * yt version:
  * Other Libraries (if applicable):

<!--Please tell us how you installed yt and python e.g., from source,
pip, conda. If you installed from conda, please specify which channel you used
if not the default-->


================================================
FILE: .github/PULL_REQUEST_TEMPLATE.md
================================================
<!--Thank you so much for your PR! To help us review, fill out the form
to the best of your ability.  Please make use of the development guide at
http://yt-project.org/docs/dev/developing/index.html-->

<!--Provide a general summary of your changes in the title above, for
example "Raises ValueError on Non-Numeric Input to set_xlim".  Please avoid
non-descriptive titles such as "Addresses issue #8576".-->

<!--If you are able to do so, please do not create the PR out of main, but out
of a separate branch. -->

## PR Summary

<!--Please provide at least 1-2 sentences describing the pull request in
detail.  Why is this change required?  What problem does it solve?-->

<!--If it fixes an open issue, please link to the issue here.-->

## PR Checklist

<!-- Note that some of these check boxes may not apply to all pull requests -->
- [ ] New features are documented, with docstrings and narrative docs
- [ ] Adds a test for any bugs fixed. Adds tests for new features.

<!--We understand that PRs can sometimes be overwhelming, especially as the
reviews start coming in.  Please let us know if the reviews are unclear or the
recommended next step seems overly demanding , or if you would like help in
addressing a reviewer's comments.  And please ping us if you've been waiting
too long to hear back on your PR.-->


================================================
FILE: .github/config.yml
================================================
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome

# Comment to be posted to on first time issues
newIssueWelcomeComment: >
  Hi, and welcome to yt!  Thanks for opening your first issue.  We have an issue
  template that helps us to gather relevant information to help diagnosing and
  fixing the issue.

# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome

# Comment to be posted to on PRs from first time contributors in your repository
newPRWelcomeComment: >
  Hi!  Welcome, and thanks for opening this pull request.  We have some guidelines for
  new pull requests, and soon you'll hear back about the results of our tests and
  continuous integration checks.  Thank you for your contribution!

# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge

# Comment to be posted to on pull requests merged by a first time user
firstPRMergeComment: >
  Hooray!  Congratulations on your first merged pull request!  We hope we keep
  seeing you around!  :fireworks:

# It is recommend to include as many gifs and emojis as possible


================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: github-actions
  directory: /.github/workflows
  labels:
    - dependencies
    - github_actions
    - infrastructure
  schedule:
    interval: monthly
  cooldown:
    default-days: 7
  groups:
     gha-patches:
      update-types:
      - patch

- package-ecosystem: uv
  directory: /
  labels:
    - dependencies
    - python:uv
    - infrastructure
  schedule:
    interval: monthly
  cooldown:
    default-days: 7
  groups:
    uv.lock-patches:
      update-types:
      - patch


================================================
FILE: .github/mergeable.yml
================================================
# config file for mergeable: https://github.com/mergeability/mergeable
version: 2
mergeable:
  - when: pull_request.*
    validate:
      - do: title
        must_exclude:
          regex: ^\[?WIP\b
          message: "WIP pull requests can't be merged."
      - do: label
        must_include:
          regex: 'bug|enhancement|new feature|docs|infrastructure|dead code|refactor'
          message: "Please label this pull request with one of: bug, enhancement, new feature, docs or infrastructure."


================================================
FILE: .github/workflows/bleeding-edge.yaml
================================================
name: CI (bleeding edge)
# this workflow is heavily inspired from pandas, see
# https://github.com/pandas-dev/pandas/blob/master/.github/workflows/python-dev.yml

# goals: check stability against
# - dev version of Python, numpy, matplotlib, and unyt
# - Cython and pytest pre-releases

on:
  push:
    branches:
      - main
  pull_request:
    paths:
      - .github/workflows/bleeding-edge.yaml
  schedule:
    # run this every Wednesday at 3 am UTC
    - cron: 0 3 * * 3
  workflow_dispatch:

permissions: {}

jobs:
  build:
    runs-on: ubuntu-latest
    name: "tests with bleeding-edge crucial deps"
    timeout-minutes: 60

    concurrency:
      # auto-cancel any in-progress job *on the same branch*
      group: ${{ github.workflow }}-${{ github.ref }}
      cancel-in-progress: true

    steps:
    - name: Checkout repo
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        persist-credentials: false

    - name: Set up Python (newest testable version)
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        # this version should be upgraded as often as possible, typically once a year when
        # Cython, numpy and matplotlib are known to be compatible
        python-version: '3.14'
        enable-cache: false
        activate-environment: true # allows using uv pip directly

    - name: Configure uv
      run: |
        echo "UV_PRERELEASE=allow" >> "$GITHUB_ENV"
        echo "UV_INDEX=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" >> "$GITHUB_ENV"
        echo "UV_INDEX_STRATEGY=unsafe-best-match" >> "$GITHUB_ENV"

    - name: Install dependencies
      run: |
        uv add --no-install-project git+https://github.com/yt-project/unyt.git
        uv add --no-install-project --optional test git+https://github.com/pytest-dev/pytest.git
        uv pip install --upgrade setuptools numpy matplotlib Cython ewah-bool-utils

    - name: Build
      # --no-build-isolation is used to guarantee that build time dependencies
      # are not installed by uv sync as specified from pyproject.toml, hence we get
      # to use the dev version of numpy at build time.
      run: uv pip install --editable .[test] --no-build-isolation

    - run: yt config set --local yt log_level 50  # Disable excessive output
    - name: Run Tests
      run: uv run --no-sync pytest yt -vvv --color=yes

  create-issue:
    if: ${{ failure() && github.event_name == 'schedule' }}
    needs: [build]
    permissions:
      issues: write
    runs-on: ubuntu-latest
    name: Create issue on failure

    steps:
    - name: Create issue on failure
      uses: imjohnbo/issue-bot@572eed14422c4d6ca37e870f97e7da209422f5bd # v3.4.4
      with:
        title: 'TST: Upcoming dependency test failures'
        body: |
          The weekly build with future dependencies has failed. Check the logs
          https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
        pinned: false
        close-previous: false
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


================================================
FILE: .github/workflows/build-test.yaml
================================================
name: Build and Test

on:
  push:
    branches:
      - main
  pull_request:
  workflow_dispatch:

defaults:
  run:
    shell: bash

permissions: {}

jobs:
  check-lock-file:
    # validate uv.lock against requirements
    # a failure indicates that the lock file is out of sync
    # with requirements and needs to be updated
    # this is normally done using uv-pre-commit but yt's dependency
    # graph is too big to run on pre-commit.ci
    name: Check uv.lock
    runs-on: ubuntu-latest
    steps:
    - name: Checkout repo
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        persist-credentials: false
    - name: Set up uv
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        version: ">=0.9.11,<0.10.0" # pin uv to avoid the lock file format going out-of-sync
        python-version: 3.14
        cache-suffix: lockcheck
        prune-cache: false
    - run: uv lock --check

  build:
    name: "${{ matrix.tests-type }} tests: py${{ matrix.python-version }} on ${{ matrix.os }} (${{ matrix.test-runner }})"
    needs: [check-lock-file]
    strategy:
      # run all tests even if e.g. image tests fail early
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
        python-version: ['3.13']
        sync_args: [--extra=full]
        tests-type: [unit]
        test-runner: [pytest]
        cache-suffix: [null]
        include:
          - os: windows-latest
            python-version: '3.13'
            sync_args: --extra=full
            tests-type: unit
            test-runner: pytest
            cache-suffix: alldeps
          - os: ubuntu-22.04
            python-version: '3.10.4'
            sync_args: --resolution=lowest
            tests-type: unit
            test-runner: pytest
            cache-suffix: oldestdeps
          - os: ubuntu-latest
            # this job is necessary for non-answer, 'yield' based tests
            # because pytest doesn't support such tests
            python-version: '3.10'
            sync_args: "--extra=full --group=nosetest"
            tests-type: unit
            test-runner: nose
            cache-suffix: alldeps-nose
          - os: ubuntu-latest
            # answer tests use 'yield', so they require nose
            # they are also attached to a specific, occasionally updated, Python version
            # but it does *not* have to match the current minimal supported version
            python-version: '3.10'
            sync_args: "--extra=full --group=nosetest"
            tests-type: answer
            test-runner: nose
            cache-suffix: alldeps-nose
          - os: ubuntu-latest
            # minimal tests with latest Python and no optional dependencies
            python-version: '3.14'
            sync_args: null
            tests-type: unit
            test-runner: pytest
            cache-suffix: minimal

    runs-on: ${{ matrix.os }}

    concurrency:
      # auto-cancel any in-progress job *on the same branch*
      group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.tests-type }}-py${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.test-runner }}
      cancel-in-progress: true

    steps:
    - name: Checkout repo
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        persist-credentials: false
        submodules: ${{ matrix.tests-type == 'answer' }}
    - name: Set up Python
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        python-version: ${{ matrix.python-version }}
        cache-suffix: ${{ matrix.cache-suffix }}
        prune-cache: false
    - name: Install dependencies and yt
      shell: bash
      env:
        sync_args: ${{ matrix.sync_args}}
      run: source ./tests/ci_install.sh

    - name: Patch nosetest
      if: matrix.test-runner == 'nose'
      # note: this could be handled with [tool.uv.sources]
      run: |
        find .venv/lib/python${{matrix.python-version}}/site-packages/nose -name '*.py' \
          -exec sed -i -e s/collections.Callable/collections.abc.Callable/g '{}' ';'

    - name: Run Unit Tests (pytest)
      if: matrix.test-runner == 'pytest'
      run: uv run --no-sync pytest yt --color=yes ${{ contains(matrix.sync_args , 'resolution=lowest' ) && '-Wdefault' || '' }}
      env:
        MPLCONFIGDIR: tests

    - name: Run Tests (nose)
      if: matrix.test-runner == 'nose'
      run: |
        cat nose_ignores | xargs uv run python -m nose -c nose_unit.cfg --traverse-namespace
      env:
        MPLCONFIGDIR: tests

  image-tests:
    name: Image tests
    runs-on: ubuntu-latest
    needs: [check-lock-file]

    concurrency:
      # auto-cancel any in-progress job *on the same branch*
      group: ${{ github.workflow }}-${{ github.ref }}
      cancel-in-progress: true

    steps:
    - name: Checkout repo (with submodules)
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        submodules: true
        persist-credentials: false
    - name: Set up Python
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        python-version: '3.11'
        enable-cache: false
    - name: Install dependencies and yt
      shell: bash
      env:
        sync_args: --group=mapping
      run: source ./tests/ci_install.sh

    - run: python -m pip list

    - name: Run Image Tests
      run: |
        uv run --no-sync \
            pytest yt --color=yes --mpl -m mpl_image_compare \
               --mpl-generate-summary=html \
               --mpl-results-path=pytest_mpl_results \
               --mpl-baseline-path=tests/pytest_mpl_baseline \
               -rxXs # show extra info on xfailed, xpassed, and skipped tests
      env:
        MPLCONFIGDIR: tests

    - name: Generate new image baseline
      if: failure()
      run: |
        uv run --no-sync \
            pytest yt --color=yes --mpl -m mpl_image_compare \
               --mpl-generate-path=pytest_mpl_new_baseline \
               --last-failed
      env:
        MPLCONFIGDIR: tests

    # always attempt to upload artifacts, even
    # (and especially) in case of failure.
    - name: Upload pytest-mpl report
      if: always()
      uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
      with:
        name: yt_pytest_mpl_results
        path: pytest_mpl_results/*

    - name: Upload pytest-mpl baseline
      if: always()
      uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
      with:
        name: yt_pytest_mpl_new_baseline
        path: pytest_mpl_new_baseline/*
        if-no-files-found: ignore


================================================
FILE: .github/workflows/type-checking.yaml
================================================
name: type checking

on:
  push:
    branches:
      - main
  pull_request:
    paths:
      - yt/**/*.py
      - pyproject.toml
      - .github/workflows/type-checking.yaml
  workflow_dispatch:

permissions: {}

jobs:
  build:
    runs-on: ubuntu-latest
    name: type check
    timeout-minutes: 60

    concurrency:
      # auto-cancel any in-progress job *on the same branch*
      group: ${{ github.workflow }}-${{ github.ref }}
      cancel-in-progress: true

    steps:
    - name: Checkout repo
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        persist-credentials: false

    - name: Set up Python
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        # run with oldest supported python version
        # so that we always get compatible versions of
        # core dependencies at type-check time
        python-version: '3.10'
        prune-cache: false
        cache-suffix: typecheck

    - name: Build
      run: uv sync --group typecheck

    - name: Run mypy
      run: uv run --no-sync mypy yt


================================================
FILE: .github/workflows/wheels.yaml
================================================
name: Build CI Wheels

on:
  push:
    branches:
      - main
      - stable
    tags:
      - 'yt-*'
  pull_request:
    paths:
      - '.github/workflows/wheels.yaml'
      - MANIFEST.in
      - pyproject.toml
      - setup.py
      - setupext.py
  workflow_dispatch:

permissions: {}

jobs:
  build_wheels:
    name: Build ${{ matrix.select }}-${{ matrix.archs }} wheels on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        include:
        - os: ubuntu-latest
          archs: x86_64
          select: '*manylinux*'
          id: manylinux_x86_64
        - os: ubuntu-latest
          archs: x86_64
          select: '*musllinux*'
          id: musllinux_x86_64
        - os: macos-latest
          archs: x86_64
          select: '*'
          id: macos_x86_64
        - os: macos-latest
          archs: arm64
          select: '*'
          id: macos_arm64
        - os: windows-latest
          archs: AMD64
          select: '*'
          id: windows_AMD64

    steps:
      - name: Checkout repo
        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
        with:
          persist-credentials: false

      - name: Build wheels for CPython
        uses: pypa/cibuildwheel@ee02a1537ce3071a004a6b08c41e72f0fdc42d9a # v3.4.0
        with:
          extras: uv
          output-dir: dist
        env:
          CIBW_ARCHS: ${{ matrix.archs }}
          CIBW_BUILD: ${{ matrix.select }}

      - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
        with:
          name: wheels-${{ matrix.os }}-${{ matrix.id }}
          path: ./dist/*.whl

  build_sdist:
    name: Build source distribution
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repo
        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
        with:
          persist-credentials: false

      - name: Set up Python
        uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
        with:
          python-version: '3.10'
          enable-cache: false

      - name: Build sdist
        run: uv build --sdist

      - name: Upload sdist
        uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
        with:
          name: sdist
          path: dist/*.tar.gz

      - name: copy configuration files
        run: |
          mkdir cfg
          cp pyproject.toml cfg
          cp conftest.py cfg

      - name: Upload pytest configuration files
        uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
        with:
          name: pytest-conf
          path: cfg

  test_sdist:
    name: Test source distribution
    runs-on: ubuntu-latest
    needs: [build_sdist]
    steps:
      - name: Download sdist
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
        with:
          name: sdist
          path: dist

      - name: Set up Python
        uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
        with:
          python-version: '3.10'
          enable-cache: false
          activate-environment: true # allows using uv pip directly

      - name: Download pytest configuration files
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
        with:
          name: pytest-conf
          path: cfg

      - name: Display structure of downloaded files
        run: ls -R

      - name: Install sdist
        run: uv pip install "$(echo dist/yt-*.tar.gz)[test]"

      - run: uv pip list

      - name: Test sdist
        run: |
          uv run --no-project --directory cfg \
            pytest --color=yes --pyargs yt

  check_manifest:
    name: Check MANIFEST.in
    runs-on: ubuntu-latest
    steps:
    - name: Checkout repo
      uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      with:
        submodules: true
        persist-credentials: false
    - name: Set up Python
      uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
      with:
        python-version: '3.13'
        enable-cache: false
    - name: run check-manifest
      run: uvx check-manifest -vvv

  deploy:
    name: Publish to PyPI
    needs: [build_wheels, test_sdist, check_manifest]
    runs-on: ubuntu-latest
    environment:
      name: pypi
      url: https://pypi.org/p/yt
    permissions:
      id-token: write
    # upload to PyPI on every tag starting with 'yt-'
    if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/yt-')
    steps:
      - name: Download sdist
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
        with:
          name: sdist
          path: dist

      - name: Download wheels
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
        with:
          path: dist
          pattern: wheels-*
          merge-multiple: true

      - name: Publish to PyPI
        uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0


================================================
FILE: .gitignore
================================================
build
yt.egg-info
__config__.py
freetype.cfg
hdf5.cfg
png.cfg
rockstar.cfg
yt_updater.log
yt/frontends/artio/_artio_caller.c
yt/frontends/gamer/cfields.c
yt/analysis_modules/halo_finding/rockstar/rockstar_groupies.c
yt/analysis_modules/halo_finding/rockstar/rockstar_interface.c
yt/analysis_modules/ppv_cube/ppv_utils.c
yt/analysis_modules/photon_simulator/utils.c
yt/frontends/ramses/_ramses_reader.cpp
yt/frontends/ramses/io_utils.c
yt/frontends/sph/smoothing_kernel.c
yt/geometry/fake_octree.c
yt/geometry/grid_container.c
yt/geometry/grid_visitors.c
yt/geometry/oct_container.c
yt/geometry/oct_visitors.c
yt/geometry/particle_deposit.c
yt/geometry/particle_oct_container.c
yt/geometry/particle_oct_container.cpp
yt/geometry/particle_smooth.c
yt/geometry/selection_routines.c
yt/utilities/amr_utils.c
yt/utilities/cython_fortran_utils.c
yt/utilities/lib/autogenerated_element_samplers.c
yt/utilities/kdtree/forthonf2c.h
yt/utilities/libconfig_wrapper.c
yt/utilities/spatial/ckdtree.c
yt/utilities/lib/allocation_container.c
yt/utilities/lib/alt_ray_tracers.c
yt/utilities/lib/amr_kdtools.c
yt/utilities/lib/basic_octree.c
yt/utilities/lib/bitarray.c
yt/utilities/lib/bounded_priority_queue.c
yt/utilities/lib/bounding_volume_hierarchy.c
yt/utilities/lib/contour_finding.c
yt/utilities/lib/cykdtree/kdtree.cpp
yt/utilities/lib/cykdtree/utils.cpp
yt/utilities/lib/cyoctree.c
yt/utilities/lib/depth_first_octree.c
yt/utilities/lib/distance_queue.c
yt/utilities/lib/element_mappings.c
yt/utilities/lib/fnv_hash.c
yt/utilities/lib/fortran_reader.c
yt/utilities/lib/freetype_writer.c
yt/utilities/lib/geometry_utils.c
yt/utilities/lib/image_samplers.c
yt/utilities/lib/image_utilities.c
yt/utilities/lib/interpolators.c
yt/utilities/lib/kdtree.c
yt/utilities/lib/lenses.c
yt/utilities/lib/embree_mesh/mesh_construction.cpp
yt/utilities/lib/embree_mesh/mesh_intersection.cpp
yt/utilities/lib/embree_mesh/mesh_samplers.cpp
yt/utilities/lib/embree_mesh/mesh_traversal.cpp
yt/utilities/lib/mesh_triangulation.c
yt/utilities/lib/mesh_utilities.c
yt/utilities/lib/pixelization_routines.cpp
yt/utilities/lib/misc_utilities.c
yt/utilities/lib/particle_kdtree_tools.cpp
yt/utilities/lib/particle_mesh_operations.c
yt/utilities/lib/partitioned_grid.c
yt/utilities/lib/primitives.c
yt/utilities/lib/origami.c
yt/utilities/lib/particle_mesh_operations.c
yt/utilities/lib/pixelization_routines.c
yt/utilities/lib/pixelization_routines.cpp
yt/utilities/lib/png_writer.c
yt/utilities/lib/points_in_volume.c
yt/utilities/lib/quad_tree.c
yt/utilities/lib/ragged_arrays.c
yt/utilities/lib/cosmology_time.c
yt/utilities/lib/cosmology_time.cpp
yt/utilities/lib/grid_traversal.c
yt/utilities/lib/marching_cubes.c
yt/utilities/lib/png_writer.h
yt/utilities/lib/write_array.c
yt/utilities/lib/partitioned_grid.c
yt/utilities/lib/volume_container.c
yt/utilities/lib/lenses.c
yt/utilities/lib/image_samplers.c
yt/utilities/lib/_octree_raytracing.cpp
yt/utilities/lib/bounding_volume_hierarchy.cpp
yt/utilities/lib/geometry_utils.cpp
yt/utilities/lib/grid_traversal.cpp
yt/utilities/lib/image_samplers.cpp
yt/utilities/lib/marching_cubes.cpp
yt/utilities/lib/misc_utilities.cpp
yt/utilities/lib/partitioned_grid.cpp
*.pyc
*.pyd
.*.swp
*.DS_Store
*.so
.idea/*
tests/results/*
doc/build/*
doc/source/reference/api/generated/*
doc/source/reference/api/yt*
doc/cheatsheet.aux
doc/cheatsheet.log
doc/cheatsheet.pdf
doc/_temp/*
doc/source/quickstart/.ipynb_checkpoints/
dist
.python-version
answer_nosetests.xml


================================================
FILE: .gitmodules
================================================
[submodule "answer-store"]
	path = answer-store
	url = https://github.com/yt-project/answer-store
	branch = yt-4.0
[submodule "tests/pytest_mpl_baseline"]
	path = tests/pytest_mpl_baseline
	url = https://github.com/yt-project/yt_pytest_mpl_baseline


================================================
FILE: .hgchurn
================================================
stephenskory@yahoo.com = s@skory.us
"Stephen Skory stephenskory@yahoo.com" = s@skory.us
bear0980@gmail.com = yuan@astro.columbia.edu
juxtaposicion@gmail.com = cemoody@ucsc.edu
chummels@gmail.com = chummels@astro.columbia.edu
jwise@astro.princeton.edu = jwise@physics.gatech.edu
sam.skillman@gmail.com = samskillman@gmail.com
casey@thestarkeffect.com = caseywstark@gmail.com
chiffre = chiffre@posteo.de
Christian Karch = chiffre@posteo.de
atmyers@berkeley.edu = atmyers2@gmail.com
atmyers = atmyers2@gmail.com
drudd = drudd@uchicago.edu
awetzel = andrew.wetzel@yale.edu
David Collins (dcollins4096@gmail.com) = dcollins4096@gmail.com
dcollins4096 = dcollins4096@gmail.com
dcollins@physics.ucsd.edu = dcollins4096@gmail.com
tabel = tabel@slac.stanford.edu
sername=kayleanelson = kaylea.nelson@yale.edu
kayleanelson = kaylea.nelson@yale.edu
jcforbes@ucsc.edu = jforbes@ucolick.org
biondo@wisc.edu = Biondo@wisc.edu
samgeen@googlemail.com = samgeen@gmail.com
fbogert = fbogert@ucsc.edu
bwoshea = oshea@msu.edu
mornkr@slac.stanford.edu = me@jihoonkim.org
kbarrow = kssbarrow@gatech.edu
kssbarrow@gmail.com = kssbarrow@gatech.edu
kassbarrow@gmail.com = kssbarrow@gatech.edu
antoine.strugarek@cea.fr = strugarek@astro.umontreal.ca
rosen@ucolick.org = alrosen@ucsc.edu
jzuhone = jzuhone@gmail.com
karraki@nmsu.edu = karraki@gmail.com
hckr@eml.cc = astrohckr@gmail.com
julian3@illinois.edu = astrohckr@gmail.com
aj@hckr.eml.cc = astrohckr@gmail.com
cosmosquark = bthompson2090@gmail.com
chris.m.malone@lanl.gov = chris.m.malone@gmail.com
jnaiman@ucolick.org = jnaiman@cfa.harvard.edu
jnaiman = jnaiman@cfa.harvard.edu
migueld.deval = miguel.deval@gmail.com
miguel@archlinux.net = miguel.deval@gmail.com
slevy@ncsa.illinois.edu = salevy@illinois.edu
malzraa@gmail.com = kellerbw@mcmaster.ca
None = convert-repo
dfenn = df11c@my.fsu.edu
langmm = langmm.astro@gmail.com
jmt354 = jmtomlinson95@gmail.com
desika = dnarayan@haverford.edu
Ben Thompson = bthompson2090@gmail.com
goldbaum@ucolick.org = ngoldbau@illinois.edu
ngoldbau@ucsc.edu = ngoldbau@illinois.edu
NTAuthority@honeypot.fritz.box = anokfireball@poseto.de
NTAuthority@guest053.fz-rossendorf.de = anokfireball@poseto.de
NTAuthority@guest692.fz-rossendorf.de = anokfireball@poseto.de
Fabian Koller = anokfireball@poseto.de
Rafael Ruggiero = rafael.ruggiero@usp.br
john.regan@helsinki.fi = john.a.regan@durham.ac.uk
code@andre-bubel.de = a.huebl@hzdr.de


================================================
FILE: .hgtags
================================================
008b15bd5122e910e321316fae6122da9a46e10f svn.1636
009bca8c4c596f01526bc8159c90786e7c011d67 svn.347
00d699ef358745ba38f4381c35f2e7d5a6306161 svn.394
00e034fabfd073790aaa4ef82bbb666582ae9f57 svn.1265
01165f5c21dd23b8fadfb36a736c1af7f2f51bea svn.1687
011e9277ab04e996ac2d710f64cd361235f4103b svn.658
0157ff037651bf0146f57adaf95a173222a3937c svn.6
0161f0770fe9d9a6b45cfff81c6c948bf5ac0d23 svn.112
0173810f90aa32e9f41f822a74f86d7f9aff9406 svn.417
019c2ed6f48651f2dbcf680d35869da9aad5d990 svn.1007
01a6acd7b8084564c58060b14f54609e88f173bf svn.1483
01e8bd44c26797472f364c787dc5cce782d086e5 svn.1204
022d3c06297845aec35f5649a3237710d8b9f55f svn.1802
023b31f57812c07152cd34d79f1f9909cae1e556 svn.83
028e083af0708acaa2050533839115d8a69b9a0c svn.1696
02f2b6cd7ea1d2d2d357475f2204f2410cf892ab svn.1205
03164a14f6b23fc6b8bc7abc6c90ab9680740084 svn.646
03c59e910c318794f99952c90dd146dc7e01e197 svn.258
040638d12856f79baa0d005d14e11cd36ba8a331 svn.330
0484b002a76a99a55a13454b6ce17ef45400316b svn.1356
048721d682f8148428a77d82c59d904f3d9c8504 svn.884
04a629b15da3ff3678e362065cf884834bd02a22 svn.1197
04bff5f55cb9e853b6183000e065b0080bcea8dd svn.1002
04c2b901d8a05070295cbe351fa0c43291ef624c svn.1173
04c660cac68b46d16341e9c455dc372b1334efda svn.1224
04db5f9b3122cc2bf749cc2e53383eb86c853a51 svn.769
04dff7a15ba545a16a93f50d7b125a6fca0ed10f svn.1707
04e29cfda98d62bab16d2053c3b7a774b04298f0 svn.1445
059a6f91c2e580b60123f7ac45983801fbd512bc svn.1257
05a1599e4916c970d398b641bbdb3953f0907ea8 svn.8
05b44aec7b74826628f5bf03adec7d84511efc65 svn.1411
05f3e58bc4b9a0b136659a69df4f1d4d05d0702d svn.1613
060a01faf6ae89a6efb3f6d16fdfee0360e36ecd svn.1757
060cccf0ba19182d334bbdeb576d8f58bf0d71c7 svn.200
0637b5808587b7c6e5425330d61045a0ebfc3c7a svn.1035
0669ff70d50dc275904335d6e5560d8fba1bd524 svn.1014
0682073503fda2662e7a5d1fdf205787cec2ef29 svn.653
06d5806a711f394f6a5889da1214051550ff66c6 svn.802
06e806dbd816945b98448239023700b9ce1feb4f svn.410
06e83f7e374489e7e930bbb3233a7d48da2a4325 svn.930
0763601a5bcc18dffc999f8889aaa24a3954b855 svn.234
07780c9b1b42083cbf29fa4aad7195c65a7155cb svn.1044
0791309fea40c03510ad3513de4fddb084697d80 svn.1058
07981139bfd9fdf363c872de11db226c8431841a svn.1318
079f4596e62fc77247141ff779774a785061abfc svn.1633
07db277ec95af7cb9849096730666b335bcc9c5e svn.1094
07dddd86d8fe37233ea506155e3dea8e4280a38d svn.1579
07f45d81abfb32c883e9f29ff2d6ca442c62faac svn.968
083153346e4989561bf77e67bcf8b07d6d8ee0d7 svn.475
085616db39c365408b3b2713cec63cdc75c1b0d3 svn.189
08930d496c9b0e758bf53d5b8024ded0179cf44f svn.370
08954e47091923482a4ef97dde985554cc9a23df svn.288
08b7d403a90b550912cf513433a5d093d5745250 svn.332
08d3aad985e07d28e217cce7e8849b24d1c18ae3 svn.1435
08d7629cc529e025b1f85fb5d45326975f48b84b svn.45
08dca756db3206be21541d869dfccd5dc43247f9 svn.1379
08febc793acd54cf4b76bbeddcb79637f1553470 svn.1645
0927e0c91ca66d1d41500c9fd08cde5014ceacf8 svn.1139
0954054bc59272f7974c63cd77933ea344c64619 svn.744
0963334d761e9d8db2acf74639cb938c250c8302 svn.1495
099aa96010cdda52c5f2fc83d72e7e03275acd86 svn.1700
099b4e43b52a38fa49164d22726650111cb89f30 svn.1329
09b6347351e9fa337cddc10d39c929b497cc7634 svn.1778
09e730a2c4fb77abfff2ae0dc0e9ab753683815f svn.854
09f95c184d9e12dfdfdce597b3812f81976c68fd svn.898
09fd3ab58e68418a1cceb9db1938655723a8732d svn.1222
0a3cd2ca46aa4a913dc6cca250deba0aba2f7661 svn.536
0a661cfd8bcf95d37bcba79cd5eb0b8d194a4228 svn.24
0a70307856e719657be483e103df1fb3803e6344 svn.182
0a722d174c5e259d343b64af2dff46682815c84b svn.298
0a929e7c80049aa2dba28242c3cfa97b2e3a7bb1 svn.402
0a9a9685cb883fddbba2ad166cfec47924102134 svn.499
0a9e87864df2ff4434732ae7eba7734630cba360 svn.1192
0ae3ae67d23e4014f104007447a53bfe770fbbd8 svn.951
0b0aeb725d723795421475cd3bd285bb0c94c713 svn.1432
0b0be6afa3e6db0011dbc2d132c0f2ede7c1c905 svn.983
0b3713cd3b3dafc68054cbcfdaa80442c11ff172 svn.88
0b78bcc9c1b17e85cd5a57242d3657c2c1bb7a0c svn.559
0ba47ee1dc4abf6efc06cb04b5994c728572fefe svn.1178
0bb40f1e128c4eb6cfc42c4fc043f7cb54550de5 svn.1130
0bc0bdac8bc20d2fb314ae00ccad146883a3311f svn.725
0beb7e783548eb33c55ffe1ceb0c64fb895b511a svn.341
0bf4ca209b1f9fc18947bd604d05ac624094d8a6 svn.1304
0c004242b3f8c110502e4ea6ee1bdb24d6bc75cf svn.271
0c4173bd9d0801ed84dd884c76874bf96c66cc12 svn.720
0c561365081c119bd4d7240258909a38e2f4d03f svn.427
0c7909677b752a79eadcb4325aab9b34f0cb101d svn.1190
0c987873f61cce2b19b2f227520252c624e7f180 svn.123
0c9fa0cfd51283b0531891e486402110005dc0cc svn.1022
0cb628110a0948ef3b8d5f352695321800ec2ff2 svn.1060
0ce364970738c599e6f1aa27aebf59ddbde79faa svn.253
0cf48554d6a7d95cae64d5a28fe4ffdcdf6e5efb svn.1766
0d4a60cf51319720ecd77e7a58dbf59d1a018f45 svn.1017
0d53d3fa1c6aedc57a4e9b9683f0245f8ee1a65e svn.1492
0d5c2d29d28dbd71905afe6889d79c8339519beb svn.1026
0da3c07627aae61a53ca2a8fe5a728acd1831553 svn.1051
0da429b7799c4e9a251921e59006199ae6e58c29 svn.144
0e1919bee94c9b5095f334c9cd7caea4aa0dc4e6 svn.710
0e20a44102dafc5fcc23b4d2429e37a38b218282 svn.668
0e5d5039e575561eb8dc9c8afd89aca00d586489 svn.1730
0e5dd9c049a1f89c0d8821dc46f6d8aa29ed1341 svn.412
0e5f9e70d3a04d88f9b454d8777177aafc48a3a1 svn.64
0e81d2275949f038fd9874b0394e67976705021a svn.363
0e938dd99255dbb30683aa7eb73704a60aabcdbd svn.158
0e9c51767a9ebb496f2ac88bb1de995953b49b59 svn.122
0ec1bb8306a20d164ad38e02e7b7df60382ac77d svn.118
0ecf19fa27577dd5f386ad6153da79966eb19f04 svn.1027
0ed17274b6410a68dd2bf6d82499d5b79a7fbd60 svn.974
0ee8ebbbafaf6a2966dfaaf8e58c559832dd1797 svn.539
0ee914b3cb3b97c478c6e10a1fceda690b04af45 svn.522
0ef34494c8ed215eaeeb41775d671b3da55a23fc svn.445
0f0c7cb6975400e566e78aa88ea15dec8e937778 svn.447
0f1154a13b23e757639ace21e41596b061f50133 svn.661
0f15cd632305fe76dfc6d1639ba093c6a2cf652e svn.1605
0f214513456482b170e01e3226ac34b6e9cc7532 svn.1165
0f57be523b3ec9f88963f1964ab63c7e5f4def4b svn.1625
0f8d2d911aa1c061320825dafda295b56cca2933 svn.1400
0fd851c1be1b98520ac273b5ccfc6510a7593006 svn.761
0fdd63f1c8fd2a6063c0f92bc9024b7ac9ade49a svn.1157
0ff85e6c512a4d14e9dd71ea373efa0c76b24da0 svn.324
105de8e9c3b4083203db5dd507b2063b6ef9f1bd svn.738
1098a40cd1bf368573e2178218a4bada315b99a3 svn.979
111afe4ac34dd880df57aa7c32651d1150bbf625 svn.1765
11614afba0f7ba29930970da8a55708bdbc14254 svn.864
1162e6328a888cf4b1d83fe5c10aaec511a680c8 svn.129
118e1fd5a88e88e9b8efdfe273df0b8cb1a10838 svn.733
11a938db9e02a14bccf251c1de2f564844afa5a0 svn.579
120f50838cd6598bd4cdcef4e2bf87a22a502207 svn.1320
122a58cfd7b4842fbb9317ab01ba2c39f5b0c444 svn.285
127e39229e9a70084beb16bfde1bf1bde81e0429 svn.560
12b70ef667d79c49bce71cec7bfe6289bd073e24 svn.722
12db47fb546b07451b51c62a855e15977ccfbbff svn.1783
13335553c66d4f48e9ac2ec49cd064d1c0e0f1c7 svn.827
133f6efb6e1b4ab30e989c793a72123f76d8fc34 svn.830
1343353d1ff63c13432208a5b7c933e8c947e1c0 svn.1255
1356fca5f8ff55d7c3a8aff88e6519d5c5637f0f svn.403
13576ff5249f3cb5a0c41f6186850801c11295f9 svn.114
136169c5ee3d74488d2f08929d58d2919f053bd7 svn.829
1371fe7d04067853541990eb05c04b2cd8b0cce2 svn.858
137d069b382d7175cf5d425fae13d9f20a8d9005 svn.1433
13bc25d9c7e68124d74e7d3ff85dc0475a12cc37 svn.1366
143e18f3ce685a33208ce4f470b3ec79e1c2a5ab svn.385
149036420e91872c752c4ce518bdfeff70330a62 svn.1135
1490fcfb24c70f19f8821224994b546915f5b4b0 svn.1563
149c0fa98e192e90bed74344a8ae5ebbf407064d svn.120
14ac1c49a658eef1e9ee29e22fa2e0d4b91a3237 svn.704
14b6fa5edc2f5453e9e8ab8113930d53e961374f svn.1789
14bdaf98da0d90eb722eeaec6157de8d0d0408ac svn.1046
14f866bbf50c4cd99474e150129144f9c67c9ea2 svn.437
150f74c95526a7387bc828f957348029f71e61a6 svn.897
153daa22d893d844ae6797ce8b33bacf016b81f3 svn.91
159874fa0df3577327f99ed11df19c03bd7d9926 svn.487
15a63d9a7b7190464132e8f36820b1c69f121458 svn.786
15cac1fda9ddd07988f4b0a222d09bb89beda8cb svn.1279
164274e4466e0a8cabd81f8342ccebc918a5121a svn.477
165bddcbfa004dea70fabe80f82da668831760d0 svn.329
1665a35cd4ea1b29b6bd93b0d82d423bed317294 svn.541
166738006c3a058f301632619fbaa9fdd7800e2b svn.495
167dd46aa411490021352403f7e408ca176e640d svn.556
16876332fbaab496fa75d8b4cef80d32a096bf15 svn.1091
16ac4b5438f69ba8320cde2e7c86bf1e50696c1e svn.1249
17539cf7cec90818d553f47d103067a66b6ece5f svn.75
177a80a5c2cb7737fd16802e2623d72762e09a33 svn.1183
17853da5da9438d1549e0b7a74cc590c78102497 svn.1300
178f1ce70fbd58e636295d8d74de81c2e481046d svn.32
1790cffb14fc49234d98115217d574f918d05b90 svn.878
1799a24c3cc76b221815808e883ac018e7cd987a svn.428
17d411ced9321408ea900b0e5eb89b46c3f43eed svn.214
17e94e863ca4a724e2e0cd4ab12023872ec4a74c svn.759
17ffb91f1954a49e66d0809489b74d5f42abffa0 svn.104
181f4e0072c301c4fbb3146a1558fbf82ab8b4e7 svn.1270
183ed087726cb1158a7ada1fd9ea59e726dff4de svn.1259
18495205f69e0f05998f0760c9a3ebf1d58fd1a9 svn.1391
186b361ed7e6197c89f71dd5a32db8da0178cb89 svn.826
18880acd09ee8e6dae8fca4442c426bddec35784 svn.1037
189409797cf12cbefb0028a1f969149fdd7d17ed svn.1628
18a1dc2a911eeddea1fe71d83759f4eef9b73cc4 svn.709
18ea5b4ac63865d808f56b04b0c97a08fb314c58 svn.1132
190508aa312959c217130a0dabd459ac4b85c043 svn.1099
190731ac2ebeeed836dd407f8f6ffe966ec95016 svn.950
191e425284f01d40d1b4e1c7b40bd86611ff0fde svn.1401
19400f194230d1b999065ef031279aff724a0590 svn.1195
1959f7bb7ef09e346e60ffdefc72de8b56b8139e svn.1063
195a8ad57107ac668cb656f26cdbb6f8b96b9dc1 svn.1156
1974365b127a40e9e62b041b6252c902f204c0b7 svn.1640
19aa76db8a96347d67f1b07cd1fc8a1f26dce3b6 svn.1229
19d2296f62d8f2e2ebbc7f823608d60683ddbc65 svn.161
19e098d6fbf349a90d146cb8be3142e418851ba1 svn.393
1a29c93406b03f5f51bdfde9d1d8e71a5fd0a014 svn.1598
1a6fa6bbf1d839de617cf6d731f124780505c854 svn.1396
1aa14a655fceeb59dc35419dadaa3eb9b3ade3a9 svn.16
1af453e638d1761025e8dadd053d4ceb8d79e90e svn.167
1b0b000a008adecc82d6fbfb2ba683770140c849 svn.1422
1b0db0bf5599a565815ae8de98254b653afc8a94 svn.159
1b0f3eaf60133f5daabf8876df225d7e17a2d7ca svn.273
1b1fbe998eb3a689db2b2cead578f0bad2bee23a svn.855
1b2d2b328f1a2268014054a1a106131524b9a58e svn.1732
1b41f55e39f627f352939c4c40d223666cadd40f svn.108
1b7c2ab8c72587e372905ba952d301c02fcfa35d svn.191
1b7d38aae84dfc9a011ad76c2542c138f4bf720b svn.514
1b8a4c4629be438e8e48b7d5f471b61f7e224eeb svn.294
1bb32ee8b90599f4e01a894eb8f4e1edb7161782 svn.1036
1bf7e34e171d1a8758f2b7176b12ab995241c4cc svn.700
1c37aebefb76e9e26438089b588c1111f1b6d1d7 svn.796
1c40d66bae3c4bf0d1f101ffeb0acea168926cad svn.1762
1cb76ee3636da871dedcf57a83da3866fc73bbfd svn.1021
1cc9cf146664844e360b073dc070fa05d08eaf20 svn.679
1cf9d0e83cff3079412fd45aa2ee0cac66672588 svn.910
1d0c7035c1bacb1f256e0a47534c19aeffeee35d svn.946
1d26ca33c8b44c8c5e8524fed63736780a9e721d svn.1283
1d30cfbd7a6696dd86c635b3faa263e95194733f svn.991
1d3e14608e450f1c05fbbd63e3bae8fe8498531a svn.509
1d9947e7c68242f9a8cb1845c22199d3aabf2dd0 svn.1065
1da8c1d4b86bf7fe632bab0fa19bd5a0860b6414 svn.909
1db0d4260c049fa27e83c262405e37e672f09f70 svn.142
1dd91bfad08fe300ed3202e0b9885434069db507 svn.1446
1e39a8267b63e6c937d0d9bca0be7ba96e884d9a svn.1214
1e4ad371a3e51fc6cf8bff8832e307408ea23fb0 svn.1443
1e5b976a4d43a87b53f6a10ecea1556ede6abb89 svn.729
1e5bad3af0c62d39a4ff1c997c3d69ce6e93f739 svn.1082
1e6351ec0582687c7177e9cdca621c18d9c36df7 svn.932
1e6640c409dd5d809c24df8a1b296359ced079ab svn.1708
1e844764a83b00bae1a1990b8a30fbcac149de66 svn.1015
1ea258dafaa4ce328fb224cb7e04b670e3c0856f svn.1239
1eb85913bbe94398eb973722914de95b28a8f69a svn.902
1ec3baa5fbf66a9caca0a9b224563d5b28374b22 svn.380
1ecf758054d3328567440ee82fa62fe0c316deac svn.1790
1ee66345f10b4429ed1c5b5d3ddc7fd63f05c0ab svn.1710
1f122ef5ebd5f88e6cc8bae94fa39db423620120 svn.1233
1f182f60f8208c83a22f0d617941a4d1408b649f svn.376
1f2849d4a56fa5d7909ecf56a1c5643fe76d7e34 svn.113
1f583c98024f4582ff3b16447f439663b4ae287e svn.1702
1f8bab2426fb59f2f4243844626b3ca6b11d75ec svn.896
1f8c62426fffedfd9471ceedc1096174461c97e7 svn.215
1fd4998e77ffd91041d43840b7a70c1be34cc759 svn.611
1fd4b02732eb20bbf3c3f5c4c46d8533f14c166a svn.349
2048acb78d9f9e117a0841b6a9229f01f56b063f svn.972
204b732a1ad80ad9f6c2f6e904e418ff1556b23a svn.1244
2054ca11283e92918cf372404bf773e6c09ab140 svn.782
206c669b2af6d8c568531423ce447cfd2fd1e122 svn.96
208f087b08e1f353ea1d96d735e53c0d84a2fec2 svn.1218
20d3e642f40308d6ce2bf2352d19bd60046bd474 svn.30
20d866b7ac2534392e54ea71c724940a91e926c4 svn.386
20e6708ceec570278362d6d32ad64228e8d104af svn.774
2105424868d0ddfaac6c68356bcc296903e5e2c6 svn.1243
211283d83105ce19eb95f5c9f26b2b8e9577ab66 svn.756
212bf834fc7f2a96f407eaca2fc11107a28c7b95 svn.1061
21a01aef37253089ca9607afbe6bee41617cee94 svn.795
21ab4b3e629c084ba8f6e39568efc7cb0bea893c svn.1221
21bfc577a0793032cf3180f3210b80be465a9b47 svn.1597
21c80a55ccdfeee4164df15049b6ac883dd42886 svn.591
21ed3bd276caee7cad233138cd85a77985ebfdf4 svn.1184
224c097dde0c7544d7aebd0c7fc4f3b398ee4ead svn.564
2260c13777ed3b984596262a7abcf3d74949b74a svn.1112
2267dbefda0b97873e7e212a9ff953f123c79dbc svn.791
2283ca6161ff49a0a06f25cf2c4718d3f6a8dd6c svn.1461
22d90c022f15abbb36d598f0fc12634b7922da39 svn.1030
22dbd0b1ca710d8534f6bcdfc3d473b1d6c3e0d4 svn.325
22e6c80fe419953eec283f3f4583ed609c9f4d08 svn.1654
23262ad8a41ebca12807a1ca65b1cfd95c2d076d svn.1160
2384a711554a63d4cf9e354848065244b4731419 svn.1503
23a1a6bf68f52048a0831f583593073751306164 svn.1127
23e1b62af018845944937b5cca4a15866647e644 svn.1223
23fae50a1832b41d61b3b0a0a2fb1a8f476821b2 svn.666
245b211eedfa9ab0f96b24de757b65435075feac svn.1185
2476faf0f3ea9fb561ff3789d4324e755524f73a svn.1458
247ff6398810d16538afa9b8cba01c792edc416a svn.1068
24a8cd53314b5547ef2e524c77fee58d6334ec8e svn.1459
24afb3cb63a0a1d7f539c942e746a0746b73bcc5 svn.1427
24be36f110bc8c3fb2167e74f09f7a99f6d20803 svn.272
24c57902ed27f8cb3a4ca1aafc3b66fbd44fa68e svn.1407
24e7e09a8e48bf287b911e5e71243a3892427107 svn.913
25056d70ffd70f590ad36853beeab02ab05b6a90 svn.1303
25064dde309e79255dc027ccac12860b311f97da svn.1264
250cd77c08d85ebab76ecc9e4990cc33ee344767 svn.1293
257c5a7b6c8ef95ccf53da55f692f517a28e6342 svn.282
25d4c96964f04c8790e12ab8b8144939180ba462 svn.922
263dad5f5c2b1571208e7f52f8488c0f189e95a2 svn.1796
266d5d83cf04ff59050e884077f9dabb56b65b2d svn.179
267d7c34121d8fc3579ba5d148e7080074a0e927 svn.772
2724aaaa917db3e5d80d8bf547aa6be9f0f2d17e svn.401
2733c3d4b6355f77b6602b72999a006407d10e3a svn.571
278c2284d6f7e979a8f7260ea27bcc450303f8d1 svn.1337
27ba903abf81b7964ae2a50d051ba42183ae1461 svn.740
27d17ab221f275c243449bc575417a25a70474e4 svn.382
2815181de43f5b2991aaa55f3e1b86b03d57f892 svn.213
2824b91af84c42c2690c935dea1991d87b6d0302 svn.1576
28661086eb26791d5ed1817b47d2e810da311a98 svn.914
2884b80f3126f6cae7b874abf66b88c81db8db6a svn.243
2890691c8b0ce589f0c362b1867e594c3ec4fd0c svn.1424
28e7cbf47cf394681cdc554f46ec13f67d42d5d3 svn.513
28f9faaa116b4e0c8505883f73160aebecdd49a1 svn.35
29101d2bc32703f921c90b8c47ab679d3ff1efe7 svn.1600
29243d349999d43d02851a450f53f031bb40cbb8 svn.803
2952becb97669b5b69c1d2d9442df916f472f408 svn.1416
29694b1e1a5ff373db84659e392c64e74933fcba svn.249
296968b4e2bddcf37cdebb652b2eaf9d662a87d7 svn.1623
2977040634d83c6aa28ab1cce4ba9f397ff6f18f svn.63
298d12183d3757c6439d66ef136852f7fa5c30e5 svn.1451
29acc14771291d9456c9dfb72967a3232b50595f svn.1421
29b2b49c3210d1cb1b6400dba253957aa2fbf497 svn.1711
29bc4b09998c5e58e5e881617d6e4c0735bccf47 svn.526
29e4edf612fbbf9815d8d674f899d89bd19c72e6 svn.1397
29e77b0d7290dc0add9223c50a656208ca270bc4 svn.235
2a1293f17651f5a8b96b837366b06e7b366d4406 svn.1364
2a5783e9aef1edf1a2f5dc9da94b20ada176db28 svn.1614
2a6029d1a826032c2bb80d38023a6fd37e3ac895 svn.1181
2a74e5b6ed96bfab3a334059fc6fbfdbe4bda782 svn.583
2a9a084f0ec1c135287fc824291cf582e2763d1a svn.1808
2aea310b02d8eb288828b1e38457527d03a2150c svn.1202
2b0b1ad509c4507b1ee6d4d7215c1dc13f86d323 svn.562
2b3f5df5d18db2808c64b9fe865af6d081b1b1e0 svn.1351
2b53901a7520aa476ed751bd0269fee64c015043 svn.480
2b5da1b0e6f68f6b24eee859c6a5c073b39cce79 svn.1607
2b616bac66eb2e928e58fdcd260a263cc1e6af77 svn.821
2ba2575991fe70542ec0b1e6491a401220e707f5 svn.467
2bd4b3dbcdb6edb2b971bc78f584ec1534010a5c svn.1460
2bfef661b95619faa38099f97e303917441c9a44 svn.895
2c2e4f27039f9eed5ddf9d08fec08ae079f3e1d3 svn.1609
2c775f41d49b7525484622ccda6033e0497c2cef svn.1486
2cf4d4f200f58d1d4a38eb10f25a305da25dab74 svn.788
2cfc0b9e83e1bb5a71b274b1293932c25fecb268 svn.201
2dc572c5ba89d3e2f234adc0e90fe3c379dc556a svn.434
2e05790c7ff265722b5e610fa8b4c902dbfdbb81 svn.237
2e114ae2bedf49862289dee0df21fbc8961d58df svn.694
2e36f21bfbec38ffe5d016fc24a16fa8c08cf634 svn.1482
2e56f05a2f5c2d1affe804672a96d4a64112fab7 svn.1398
2e6c33866a213869ef4970cbb9a5fa4251246b41 svn.486
2e9604d280d1372305aa1e451fb0ff366908070a svn.227
2f3dc3382cf79dd18095a1d08ae7d86c5ee11fca svn.1242
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.531
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.532
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.533
2fa342f70f1ab638e7ff6d29ba0c3f27fc136ca7 svn.614
2fbffc4b553feb03c2f36b1141e0f272478768e4 svn.994
2fc8ce9aeb98d5e20f7cd2bf04e74d717728b1ec svn.1228
2feee8280510e184223912daf17898a6b9bd8881 svn.1317
300b28b4879e45345ebeef6f215e8828074c6f22 svn.934
3020489da36639adddce2b555be63c0dd19bd838 svn.7
302bb5f79a4e895853d420e82d9ed656a71b9214 svn.1590
3059f8a36287ce425e801b8af84ed6135be18280 svn.1594
306126f9d0f1834277b17adc5b38ac567da555b7 svn.842
30738047b2640774652e1a5bb403c52589ed9747 svn.1232
3076d47821899c6ec96abd622a60ff6b6cda0352 svn.1572
307f6a434baf2c19ed2f04b81559adfc32a19829 svn.1237
30810691843db9af3ac30247b3cd2ee2983ae8cb svn.453
309bf66bbf164ad0d715097eeed41a115c50021a svn.293
30a8cf7bd40464cc8b769f88d51c8c1c3cc14763 svn.260
30c8d69035cd57735a3f86c6dae40e4a6cf5f5bc svn.1578
30c9e3ed1cd0af1220a397c058bed58c34d8acd9 svn.889
30d4b4532a3036cf9839ac248d10454337c49876 svn.1477
30e0ce89424861f1280edc2f0a40c4d6592b9119 svn.49
3122e32e962449ef55ae4dbc65478e5af779c4bd svn.1346
3234b6e46b7bc7a18bc8186d8645784f7a5ccb9c svn.408
326567793ef0406d889de032e525a66d1924f575 svn.464
326dc0e28cdffdab9e0cb8018b751a7f7741a93e svn.51
32a5f8a01d909e39b60f87146383831187ae4b7c svn.153
32d9ef9dafab130232dfdfd629de466a79ffa2cd svn.1748
33d50969dd9576bbdf7c28354d26c854cdc2b3cb svn.537
341577d087f3ea35d05ec6634bbcc956bdb20269 svn.527
342b79f69394e1ce02d5dd8c24788127aeafb88c svn.1560
34b94e7914142149e465a83e458b6c8afccd9a86 svn.166
3510fc0075849ac1601288b8cfd516cc359a86ee svn.1052
353817e819e90bf135e4577de32eb6fccee9670e svn.473
35575098e21b39de79637d8a698efe95f61ea750 svn.226
35609ba9b54cb9a4065d956fc359d49d6a1c3645 svn.1469
356c0e2a81b234b2d99794f680e7380b0e1987ad svn.1369
35759321ad5ba59bcc727870fa0b7634c0efc070 svn.372
35bb46b3e28fba203eb93a8f0904e70b015978b7 svn.1284
35c3413f27068c320d95f4201f7f0cd240d44cea svn.1360
35f42dba0eee8a79ef8221e9032072d7f922eabb svn.1660
3648f2ee0493f7538f15721cafb438e075da0a5f svn.768
366a30324964d2c88c2731b027861897d5c2d98c svn.496
366e5cd0fd14dc9192b82e7f5a18397d74e64314 svn.599
367338cde81885a08621a3b1359140a3fda977cf svn.582
3677c19e25bb9311ca1b714f7ad350347afbf323 svn.773
36b3012bbbc073ed5b2c0de776a2738593167bc6 svn.50
36b804344505a201df09da75721c99f6ba8a9264 svn.132
36df8de9d0bc05b7ab6382e3e497b3ff92d4d2ba svn.291
36fdd3794888b2d9feae5e5ab8392ffdaedcb1ed svn.985
37246737f6859e4117c9a2d6a1d13b2674678cf0 svn.843
3767f3d630ab1693ce5886653da52fe320be4432 svn.1806
37ad56d4f517181aeff99df835d5e5adb0f85e8e svn.1639
3864b1286cf26976ed94cf6a3ec4059edfe08575 svn.1662
3885cc7d11fcdbe9656d8c2148bc07a30cdbf494 svn.405
38e412a867fb28db8d00a4e88a37906c76aab33e svn.812
38f78a2da49df80bbb58119a235811c50aecdad1 svn.69
391ee7617763b5904068181ec383952cdd7ee142 svn.1006
3951ca57fc0dae3a992fb790654b04dacf71bd03 svn.86
396464816d2328b92330a78c22846c56e96a429e svn.1226
39c43000ec6db4e62ff01772d7521afb796a8af9 svn.155
39d85e6ced187b299c627269f0b6d52c691fb24d svn.1635
3a13d92a0679b693d25142b17cbae857c79c0b2d svn.1697
3a3a0158bafeb652c5e7a4f74552e180534d1572 svn.40
3a477287d9d2332aa9a924d8282256751bb60712 svn.916
3a8ff8b2db71d8537af42c5c5cb5ec968af75218 svn.13
3aae41cd34983023a70726fc5cf78e8ffd3badfb svn.151
3b037108ef0ea89914009142b1e8ecaf70e1121c svn.1367
3b1782228da51a8db7c41c35791cfb503ed28a94 svn.1537
3b51aaeb60e63b2235d486c3b01f08d6d7e99d7d svn.604
3b7885d4f4e8e6923fdac19ce7a13996a0d53f06 svn.71
3b9205676f5ac264154b4098908b8e0e81f03cdb svn.1106
3b9a7834cb3009820861484876f55918f2475053 svn.787
3beab6acbd602831fa8c3b0c7dcdb52b330f38f9 svn.682
3bf0dc8a1b82fedad25e742882e1da7c137a53c0 svn.176
3bfb0809df65d84e820c9d0ec5800b2569589a4a svn.390
3cd57220b85ed48e04157f86edd19f22cb2f11f3 svn.92
3d0e66a5066ff4fc4bce6c2717cb1d1ccc840391 svn.662
3d2e410265d5d695bc76081e4d8bd8c9cfa28777 svn.862
3d5d909133b1d65527b63a91ec0a331636775a88 svn.638
3d7c445b1418482e2b20e9332c3f9b948c33493f svn.589
3da7fe78c823506fa20fe57c772ad1842e922b72 svn.1225
3e2e7f6475694accf8d6c8b796cb063c3dfac0ac svn.547
3e41764d307c55c40e69c1d9fbb2240af170ef5f svn.551
3e77557675c97a0cedbe4863c54eb832568b3c8d svn.538
3e908dc26ae65cf3c9dc28c49421e578ae3fb49f svn.212
3e9992635c90bf6809a116a9a91933f950113b34 svn.859
3eb75d1abf615466c5b4687587d2d72463d8b7e7 svn.1561
3ebca2e17e8605067905976ce45aa33fd85a2175 svn.1389
3ec6641e57e5041411874bced46bc471cfa6f556 svn.420
3ed79db929a9ae296e569b6a0a662b62c03f8430 svn.554
3ef4c392b225abbaadbc9ec69a59eb6d38ae673b svn.1071
3f2c22dbcb10b0162c94d32df80a8592d8f7cab8 svn.1551
3f5d67c3b191ad30069da0a959492e85623437b3 svn.1133
3fa2f5f309318b5467f0bbeb5542095a393a0578 svn.219
3fb3e19746293cba3e51ee7dadef127b0064136e svn.871
3fcf225f835cf7b90d8854b50c994435bf9a0c7c svn.34
3fee01e8ac38487fdac22bffc36450a18035adf3 svn.361
4018fe8a6af67d663dcfdc4faf477b1d513388fb svn.781
4049858156fb8795c270d6815556fb10442580d2 svn.1322
4056ab55e28813eaf3ea4b702ef1c5980b680088 svn.1532
40c221438429013119d8d0c6ce987e354f6abb33 svn.1528
40d77e888c26f923e7731771b92d93aaf1a9228c svn.494
40e5005d6d7e1f70583840824cc1f80bb70640c6 svn.377
40e5eb8bfcf1e9f0c9b0ceae0f8a663afce2997f svn.409
40e8cd5a0a4e2d6d6c6a0fd53590d3e64cd08724 svn.648
410babe5b4166e31f8fc82cbc2d7e8c156fa1e4e svn.38
4118634b4393366efbd911b28f190d7260ce418d svn.1767
4163cad7070177da69b53cd4b9887615da6b50c7 svn.1497
416d80a781f033c2ca3cdb1243407ceec601875d svn.1278
417ad747dd1f8672e37a5e51d936dd1052d3713e svn.1273
41a5bc7c2e91022cc0b99bff3c27d028273f5c15 svn.880
41b920254644108c6280e941dcdec28f213e320c svn.504
41d0d10781c8fc39a11f8d863a6c60d9c73316c5 svn.1231
41e6266889a81500a983fcc598d30c3cd41b016b svn.870
4201883836c6384f77136fcea4899eac3da1112e svn.202
420ce4ef78b82b520f2a97ba35b27d792b9d8d29 svn.9
4213a3828fa82a2f928c979b6c094a14591f1359 svn.828
423219f35f50085b079baff29646c18928578bd6 svn.1358
4246c5028815bd713859ac7194531b0dafea0d8e svn.1072
426da8fd1b6f2d0fb1aacd860b83814b0e6d7e7f svn.736
427a362a641904fe9956779a75158137d13e648d svn.366
42aa893a70233f327826b6b88d2595ec58be068c svn.1176
4359c081ace30b9ee341a5e74af0060ca9625ee6 svn.1701
4382b85f7f2976cd95d044e5ce3200209556f46b svn.901
43b5b08e082d211c858fcefa0abc633fa2e2adbb svn.988
43c47f66811d1c3c54ebcbe645151a6938b51803 svn.1487
43f8a7df78eb3b1f54ab6557f32c72842e59c6f9 svn.1000
44482c79545e737aaa40ad828e2b8bc9c32bec7b svn.1666
4461b8732fbbf0ab6200a6fed0c56b995823ea53 svn.178
447813e1e520b5a4789ac3553331a36889724e73 svn.1143
4497b6c8a28f87678baffb8e5ea6a4ab076d3f60 svn.350
449832bda2e9a04c55df98bd146942a3f77bbe00 svn.1498
44bc0a7fdd004cceb19e556222ab6a22aaa10aa7 svn.174
44d880af55ff3e44daeb87c3b6cc5b3e16bf64e8 svn.1008
44edb74af00db2ffb08016f94b0cd399a5ccfd8d svn.85
4515bae5095328873b3ddf34bbd4ccc16a4275a4 svn.1705
451cbca5a3e5304928314da6573264ffe7e0e230 svn.406
4531a562f716d16bf1eba3f8bd14ea9c2dd8a2a4 svn.1381
45343776eb76b76496f01462fecfe65c4bc8ed8a svn.131
457bec224e4b18e0ba380b6956120aa9e55d61e2 svn.173
45a9d7e5fb62c1ba8ffebc8e5585e993b7bd310e svn.623
464e7e577c5c69cd2c709d7fc9dc8bd15dcb16b9 svn.639
4660ab2a5ad8048474c2dfdce74822da12cd5186 svn.1533
46b682802892389cb8d3b8f9b89584f6dc565d9c svn.1545
46cfc58ea9781625cd81fb960d2d6a59b96acce8 svn.1758
46f5d3f78178e6cfc069079e32f13aecb310f24f svn.259
4822375a0361431ea8760efdb9deb181d2418b92 svn.1661
48267b66ccee0e9c7618b7ff1ce0e33a33b9e376 svn.1319
4847223c05ae4e6a6aa1d144bed9a28463cdbbfd svn.1161
485ffe9198e1bf33c5c3714e80734763b772e098 svn.21
48637151be9336a68446115339761b22bfc74a79 svn.1426
488e52ad69c3f3004c4d88e7826894ec3a2a776b svn.469
489b2b01018eece9a3da626ba0ac2a5e5a5ee68b svn.1041
48d00abbf8977b912efe5a52bcf442e5ba0474c0 svn.207
48ee2d9c752ff8436f30f8ad270beccc5a34ef1e svn.1247
48fa57b1bee688c3523a5763a52d721dc2af6e0e svn.1678
49045125c9484e0a60487b1cc65a4db189e5cbc0 svn.750
49218e93b171aa3ff698c921d442b52bb150d487 svn.125
4969b297df682192273b2e7514dfd93b496a032c svn.1167
496d7770984285a5db947fbbdfe4ea77802a0631 svn.938
49712828f5b40038a56b3359ec73397344a413f3 svn.415
4981eb69b4f367a74842be377dfc8bbd4ca2b762 svn.1115
4982554bb736c2985de96401f31aa6e3d9fcb433 svn.1734
49bf13b03356b24d99eab44a38fdae7631a1c41b svn.1043
49c0c0aa33ab9f6222de994a30c1c8c9d71a5f50 svn.552
49e282f62ffaec2781f1c4b32a7ae145ad5e18da svn.185
49eb634fdea7222cd9b28dc9a57b13158077c999 svn.247
49f6e043889adeafb8b36acb4fe109dee6eea2d1 svn.1810
4a01a8ab2deaf4b6c368469064d86676974ca5e2 svn.1333
4a292bf63670c8a83efd41c939a7402235918b48 svn.596
4a2e5c12b4a23e7d9699c85d4e40b2b0cfbaed1b svn.33
4a9245b8d1230a4aeebc5b996401848ef2e8aae7 svn.1737
4aaeb47d11c0f86a6e2ca3c1c3711527e23bd284 svn.27
4aba19b0b4eb4c840aef00f9663fb1b825b48d6c svn.208
4af3e4b9f35b438cd71c732c287b05904b0fc508 svn.1109
4b6e066a9b733af6adf096779d72e14875afc15b svn.357
4ba988999535326cc253a3049470eefaedf87f90 svn.1722
4bbb3be5be5b43f84916368d762c83b0698dad1a svn.1454
4c3d3810975dc9a0948a37e033a3d049658bcfba svn.1743
4c5e134b91396e80b184dca51144f39f9560343f svn.1549
4c9e1ab18d0878e9e4c7d551c13cb68baef38bfb svn.1012
4cc9fa1449811b09112e1e97089be590b7444432 svn.1476
4cd40c4e44534c0f3a173874891b6dc192302cea svn.18
4cf5381992a384aabac16831800c7410ac6929a5 svn.115
4cff5bde76e2deac628cda176628a3cec5a66cc3 svn.645
4d3cd3e470113b37c3bac7d2052d79d7a097ec96 svn.246
4d58ac7afb5ee8358d6989989ac04602de8c0a45 svn.342
4d93b8fb4362acb2626035c0aa12516a81d90fbb svn.148
4d9628abe1955d19050a2d86dcaf0c4ecede96d7 svn.1077
4e25a3ec9fe26987dcf14d93f5f0b0ec07a449fb svn.502
4e7029901b08b617051901d95a383f6242eaa88b svn.1382
4e74cc5353eb286d9f6697636ceb4c35c02fbcb1 svn.1632
4e99c598a17d61bcda0604b2a9da8488bc429a2c svn.1695
4eecc5a5eb0ee949a906d633e73567aa9642e889 svn.1215
4ef9e46137e79825ad2edae673ab6ee70bc7b44a svn.146
4f283440ba805368be141e02ea6cf3ca1544efb5 svn.1241
4fb515e030cd9960c13e228064d8f532653213e8 svn.1134
4fe3cf7dcc79f8ef6cf60148a573008dbd1b5b7a svn.1402
503116d6f3e29bb6baccdd808054579fcf9cafa9 svn.1799
50728409da5a1c155ffafaa2d0f917332766ce91 svn.1749
508bc08810045e1cf1e6970513c9de8fa028846c svn.1430
50b1a45d4899fbe5b643fbcf780037b7edb25ca6 svn.1354
50f6b731870ba3ae773b772050bfb7d27db2e4c7 svn.1615
511379ab4cd6e5e5ee4144890f7f5343fb87aa4c svn.93
516801d12403aaeb3be7a1fa3418b4edee09198f svn.218
517a757f2e616abc924087c336c6a28192649050 svn.1209
520c515ac241d8ecb87692f4ae5c5f2ac5fa975e svn.835
521936dbc055716daa6df19efa7e34e857271f05 svn.216
523845d265b6f21192bf920428ac9a8d7dc066ee svn.903
5257ab69b04aba9315f60d276ba5854b2f182174 svn.1323
526d95c3398d2d8a7d6442693704b93542b1221c svn.1102
5280eb09b8f1cc2c84bb785b19ff807a47254d4b svn.1680
5287daeb9be1f9c97319242ad4d2c226e266341a svn.1101
530003732acb6b8004875550c44824850136bcf5 svn.451
5305e65e9aedf67da3f8028255e21497cbb844f9 svn.77
5340452bb3df18ee1befcb4daf62b3ec5b9c88c1 svn.66
5345173dbe7e26057de5a7fc46e787d47495cbd4 svn.1512
5355b66f4dab824d6a9dec27432b5993ff3d6ccf svn.545
5363b892e7a0402e9417eb7b3f9ce23ff6fc2f6c svn.686
5365f158410c88448e3bc294bb15823895be3b07 svn.435
53cb10663fef331a2252a4da6b96e7e41c5e7474 svn.1620
53dfcf3deef8c8fde2404b620fcb138fc6d2ec13 svn.1754
540e50771aa0b70808479222e27dd4239b3c8612 svn.879
5412bcfdf5df0e75f91f7c242f4f51a094efb62d svn.1004
542c2f66bc5d0cfce5272b1b4056f097b2950e24 svn.1573
5504d339253a7af01a6c9005afe29ca7cbe705f7 svn.5
551dde528c1e313b6ff50bf4d79e3b18e7ac0f31 svn.809
55e939ca948bfbb641d4ff5892a82280518cb0db svn.250
55fecb6fc0d3ae3f40cfeded90d1743f595a7732 svn.400
5616db9bc36e94343e2b92df68c4520d62b38cfe svn.60
5620cdedb5130bbdbdccef255791b98e83bafbef svn.558
563a941879b75768d6d73b60277c85964cdf3f60 svn.4
563fe5a94cabd170cc0cde3ae3d3989a6d1141f7 svn.1110
564a081accc74d3b805b393d5fa681607f45b916 svn.917
56931af41cceed819df913b9b2493682405e941f svn.1098
56abf9195ec818eaa2e835c5d6e5eab7b8f86026 svn.1301
56b1bec77233c6a2931ae689f41cae9653df9256 svn.665
571cb5de9bb60035283627328e04e71c7b4de775 svn.1150
5740382d416f07ccff6d90fae77d808657351836 svn.438
575c627130dc876053158837c6256830f3fb42d1 svn.850
58132b46dc40cb7e24fe03d86014f3075df28110 svn.1728
582f665ff1e445d2fd9d13ab5b4d664e870ac93d svn.874
583d35ad9048b887d4c133101ae9c887bf6a3ee6 svn.629
586f3a9bab88e5bec339980ab203fa5158f77632 svn.1326
587722d62ac08a1bea1dc44bd3558ae627be6b13 svn.521
589441fe2a35347857e3eee6c4b34f6df60325b4 svn.106
58c0b0001072e37b6bba4cc3f388988c596ccc5f svn.193
58e27b76bcc5f805251ab9cb27b3259862b1e9a8 svn.82
58f2a83ce4bd569a69dec333810dabfbf6f3d4d1 svn.163
58f3151c7be6b192acc553c9231d671e11c45d49 svn.1760
58fdd26cbf5ac4b554a0cf795d21e137c9321734 svn.230
5910084f8704411c3302f85073b08323465cbb6b svn.1261
59394c9e003e1ade5b90330307f96520b8dd7f67 svn.1515
595b63f60ba812ff9063a78734ed181dfff09b83 svn.799
5977f55517263d38698d0fb3568e7e9d0865ae23 svn.987
59ee86c8657bf5db81aaf4051507e4c330d5d54e svn.362
59f08140ee87a987e11d5d5788f20f9e899817c1 svn.1627
5a007c385c4a933cb1efecbb1c5c189f479775d3 svn.945
5ab8c1db3dbdf9f6d302ef17da48942a289c1583 svn.1013
5b222b5000d46e6ea65c7d67d6fca5f3a6f5d483 svn.1070
5b636e141f7273bbe593163202da5ee626b65c75 svn.1388
5b82a0336225d5317d86d3cfd63571c3676598eb svn.256
5ba2e572a3f18a22cf11eb07f5c857856f8104ab svn.989
5bb22493e5e79a48fed30ff120d32233dbec294c svn.391
5bbaba649fbf8628a729bc6a208b791d2ec092a1 svn.680
5bd0a4b6acd292e5e40527a43aac64379c19fe48 svn.1410
5bfc0b24ec3c698ac3e0da0954df1f2d68404a86 svn.29
5c269386e9fb9dfbe0b3a622d0ac2a40eababe1b svn.954
5c3608dee30a07df0460ddac10b5ff333e021de5 svn.327
5c4990c765ac586cb341b41508300c5a88b1126d svn.592
5cea2a1eaaa054e8e4e204eb27117ab3215adb25 svn.659
5cf867e52b3db29da760ef52ce2f5e8e8211d3c2 svn.1535
5cfc7ef09092f692c0dd25a33260952db53afe3f svn.266
5d563977f72716f03f98049a416d315636723103 svn.621
5d6603bc222175178fc7da0c5668bc4c54ed3021 svn.1394
5d7dba2c1c644a3715f716d1ca260db24a768637 svn.275
5e047513c0ea6bd422ac2690e5b5dde28d7b0cc4 svn.1419
5e5997d5cb03c6c7181fb513b07850d524a5082e svn.1585
5ebb6b6af2ad27ce2eeec087b8963239a155725d svn.1669
5efc0b3122438f19ba247a468922513ff3dc3f4d svn.635
5f0b8e82d58651c951c356a705e3e4526ba8dbe4 svn.580
5f4ad86c159e3397e6187c9fd01f229fa72a819d svn.1604
5f5bda1a0b4af8978f5cd03fdba4d72d114ac1b5 svn.713
5f5ce1d0313d39aba65fb360c2b43b0f2b6a516a svn.1116
5f6ee3f0aaee445dfb9bb26c8dbef30bd4f2f63c svn.681
5f86cdef685f59a577fbf8b91ce8b6419ba83f1c svn.183
5fa4de6cb71b9e6b9827a25d7612fb4faa0a51f5 svn.966
5fd9f895384805dfd3ebc54e4b27f1acbe452064 svn.140
5fe392f15c2ad1970936acae1c40efa804a71276 svn.181
60864a7b7dce7563b202c1406adca49d761c6504 svn.1276
60d13dff6a0039f4fa6623a034bd94db7ee7b9ad svn.764
60d1b329e1a41b4518091df6131b84b0ef37ad90 svn.542
6131ac5ee202b715f9aa5851f86e1142ef531877 svn.1158
6146454a0fe14b8258bf030278a01db0f1df4404 svn.1033
61df1dd85a78eb81890b01fbe2fa91ef4315ecf7 svn.1593
61f2232514ecd36ae07e1e7d4c199c207de9f047 svn.190
61f44c6c06abdd3a459eaf4cb84e4ce5689f5b60 svn.845
6222bb8d5b37ae0132d8ebd7bd4b7a48db94e684 svn.1703
62631b24fc1de5dacd71f9e72db09763c3cf6268 svn.573
628d1287a686c1410b25f5911527f11700800d71 svn.1556
62aa37991851a45af59b39bca7a205454c62ff4b svn.1032
62bc90b08b309e14eafe31ce70ba0b4b50714a10 svn.67
62db9cb4103179bdc81fc4aa6dc2c06b51ecdc15 svn.117
630f4d0b6c7f16d54298d5d9950cdad53ed0cb6d svn.1251
63150727b1c7fecfa9ce6464779818683fb19487 svn.905
63283a4591bd46de9a1d814d068f68cc43a9c976 svn.1120
6374e52f7c0628aa7e52154913ccbd9fa9c24330 svn.279
6399da8dd8baccfe0d3c23e1a79e38e6c5830f30 svn.737
63b2f81eede89f8ffca37bfc9346336a1947b862 svn.1659
6404f6fc8d5b21a924d342f6acc3cea816f7f23f svn.1755
640a15ddafccbebe106d2b21793cea1c68946a49 svn.1055
6468c80e3d4a0ee4abea5b54c373e48d503ba593 svn.1683
646c70e7e5f886dd105d69a66acd1f5c98bcc5c0 svn.72
64a713646ea00b15ff2939c56b194137cac32e5b svn.442
64d34a6c43b5d5ced5ea8c59070b9c2c10995f8b svn.97
64eb4a5f8d329069fb4f3275806980653f0d2276 svn.229
64fc2c2c26c8db2336b1e0ed2b797f59a63a742d svn.784
654597a4199eed35dfa820947a59a7c18d723474 svn.1113
654ad8eff684ed6ca368a00610e5dc2ce86ae3ff svn.970
65602799686748be921aac98aa0c2ef5a1fffa2f svn.723
6593d04b9f7cbd1f04d6fd89f3a999c9090caa9d svn.1526
65b6222af795244499cd3c0202b5114dda0045e0 svn.1801
65bb67f50da97f1a23c3f36bb9b62496658e9548 svn.1570
65fd080af335c1b0e73c167521e24e9fc48c5d1d svn.1584
661648ac517628eb254a31e2bc703d92b999782e svn.1294
662560be753e9b4a9623791070baf0b86f1b84d0 svn.1488
6662340b2f89c68c21db7a8299a7082e1dfe8d76 svn.1727
667d55685a4a9007c7a142f2121fd1eee585b93b svn.727
6687e9fcf14eceda46be690d854e88c645ea5f04 svn.1691
67096d5c2f230606afb316251be252c698cdfe7b svn.609
6723708753a0619323dd98434f752422f0a02cb9 svn.1325
681fea5f217b1434801bf4693c5d891f0d0902d1 svn.883
6859b5230d62685f9a1be0e18f4f3e69b6afcaca svn.908
686a4b9d4f6b43f78a50735357253ab86c8c67b8 svn.1080
687342e70dd55711de85c904f60f3b15f291f60c svn.413
687bcd6b35ab8d1e106f0e92520641bb20c6d464 svn.1025
689b60640d60e1a36429e6f979a6cc06f2be0a11 svn.1686
68b5418c549309274ab2caf5872b1bcab3ef89ab svn.937
68c17c12fc55b70c72ff10571f1dd1b0bfec03ce svn.1207
68c3e7c4f2039b94b3b35150d1f5bd040081359f svn.1440
68d2052f11c58ed5274309bcb2fabdf46cbd15be svn.566
68eba7c3b1dc0b8f9a546acf7722c9b7223919f2 svn.236
68ffb81df06dfe917f1515bbf66ec957c53ee51a svn.520
692c0b3e97df1a6324a0a97dbe792bc602c499ce svn.172
697a25de00456d499e7e738e8fc8e7998621b277 svn.617
698232e5ae717bd73a966b3d7534de356230423d svn.801
699ed7fe298ed364faa6b6bfdd9bf07705f3ede6 svn.804
69af6d8252c18596851585164364b63034963663 svn.1311
6a4c7518d9d62ec15209325b3332b4c6be89801b svn.503
6a81cc9d3b086744e03f22ab687f2b3fae123b72 svn.1220
6a9c3420d3ee2c6319c5c3a754bdee278d1c9373 svn.130
6b089c0f0a634d5638c21a3194a385592ee0946c svn.1362
6ba57547250acbac6bcff8e2f8938e7e65125ff3 svn.605
6bbb4ccb07cd993eb5c92481dc46b1f73639c10a svn.717
6bf4f8d5eff7a64b6d905f0255ba9f79c492851b svn.948
6c1246ac86ccd1d01c56e80d256758b64837e72c svn.220
6c545b458dc785a1d22929fe38fc9ef122ed3e62 svn.918
6c6edf1ce01f47f9a93ced398c14e44e287a65df svn.1653
6c81db75b3713c0c889b70aca2e1f79ca358d0d1 svn.931
6c8b5837bc619afb424e773811a2812ce7e2d1b8 svn.619
6ca95e61d7bbf5829ffb21a4e53569ac9ed9109b svn.239
6cb0fd747334aadec07001c234477c6c432c8b9a svn.647
6cdeac9c78459431afd34a2889c791f8136caf91 svn.1694
6ce14ad1e51f11d3a12f9e87336a824027db1d5e svn.691
6ce695d22d29d5830eb088c3ed4e8b0686e8161c svn.919
6cf9a71903dd8c412769486fd3e49d883f0a662d svn.443
6d2a962a88f101661e49a204a2b927b1ff691f48 svn.678
6d3b895da46ff0df28d07ff1b44aeafab92420e1 svn.632
6d619bcb275f9b26471116f080ec40806fb39f57 svn.1287
6e103b5715f877a532d24467a72ce798e14d7917 svn.1406
6e1088ed75b3e709e1c1303d4a6174a14092e315 svn.650
6e36c78fa82cd595dffb857cfcc61974596ffda5 svn.1547
6e4b1b54fb1655d880c73c0b586fa9846e3e8406 svn.1688
6e7bbb959a509d936fec8de148068fd5eb4e0e65 svn.1587
6ea12918249c2998d5322490e2d10c2ebfb850b1 svn.837
6ea7649495f915e64fa6774b9c3432ccea684619 svn.381
6ec1218a11b3cceaea156fdc3925b95b5c16ea8b svn.915
6ef8fcc1c3cb89dadd48075eca10ecbf1521b343 svn.1081
6eff9c0a4e808a63f5a4ddcdfef919e04d289596 svn.493
6f38cb6673f788712881c4f21a4976347a4704b1 svn.1511
6f4eaaa712be7e5e560908b01de6e21a64dff80d svn.127
6f67d9ddf8d17e4274170ac479cd38e8eeedd5f9 svn.1142
6f984ee68a329be4627566d3cfb74e902b9478ef svn.46
6fc6d87835f7cda31110259830cb290751782550 svn.1641
702eaddefa978d541c1827b8aaccadd1fb936637 svn.433
70372e292703c1ee793ee744230c04aa2394616a svn.780
708164359b80fd2fd9ab08eda67d8cd12bcae4b7 svn.343
709dc1862b92b31553ccc62257d14a1e7d94df39 svn.923
70a1a0a74e029a222b621a0b51d34aa1eed96c95 svn.491
70b7809f00af3a82fbe52f4a31bbed429c57fedc svn.1403
70d83691afa7c302cf779c4318c155711f18a1c4 svn.1657
70e2a6cfac20b5db6fad69c089c04fe85c28ce66 svn.1539
711eff34e373cf3adb738ac08b5e3d6bef81167d svn.1349
712da1b22a9adcb3376d45aab846fea2863dc643 svn.677
71d855ee2ff5db8d2031e21ef1110f8d1e25d349 svn.947
71df7de83845443319030e411ca63311b94cb2b7 svn.1478
71ed0fd7b8b04dfb59e9d042ad5c16fe03e4603c svn.17
71f40c26df79f4b2abe46202b8702e1e7401f1cd svn.311
72142f3034df364a1b4c6744029df460e5dd08b7 svn.708
7237c3e3741bccf2b48c8761b29ec61f7a74140c svn.1453
72f6e65b00f97472581f40f699677f3295d02f74 svn.1274
735372855c47bebac5cefb53729706320c3e5db5 svn.933
73595cab8615e185936ee4f2f5ce8ffd0ba00193 svn.1093
736b7d80d82e8c49990daa69d6ee152c3f549964 svn.1246
7394cb16a2a56787d29fb2c1238cfd4375a32609 svn.578
73a5f43fbe5bf5a022fbaff1c1f681759b24caab svn.1665
74a4cd9f3ae216250fec79d31d996cf1ca77b84c svn.969
74cac79b667c492030da162ecd3d1a7dc67f1a08 svn.101
74cdf93273b4464daaeffab3a89d3e78da35bc0d svn.53
74e0d6b46fd1d62791d1733a06eb09e4b8fe831f svn.240
74f83c44f9a21237d01ab53bd7abb8b8c2d69e05 svn.1168
750a31f01a28f9d0b0d10acbb3ae2c44443484f0 svn.1562
75210b13d831d6480f07f3972ebe7efca4518663 svn.876
75309fa251bb4ff0900cbf37a584ec031ee33b16 svn.630
755d312a7136f6f5a569fdfaec07ad68bac257bf svn.1103
75a2b0dd253f65fe75245d39f99497dad64da56a svn.1085
75ac4861c335b9aff04c88be698b230090b03670 svn.839
75c736efedb4d64cdb5f027e91ed8ad21347dd2e svn.79
75d8c13524ccb9288d4da283aa7ba549b2a3abcd svn.1761
760e0159100ea5fefea7242935982079f2602887 svn.1794
761f86756a571580948a3150ff87221385366a3e svn.1558
7666c6bbca4e4e3919706326334cae0053f31b16 svn.766
766e39ca35babe04b4b3250a5b4f0376ecdef01d svn.1746
767a773a9e84eba48e07336691f67c1edbaf5548 svn.671
76979776bfc1ec51682e9b97fbeb9d17ab50d32a svn.335
76e08fa2a955c3e00c1fd0fee294d843aafdeaa5 svn.448
76fe7986694b008839ebbab7f57fa496fdcf6d25 svn.1189
7729282bc88011ed2fab9462b4b31098d0b83b82 svn.1079
772a2004987d3cf59b96d2d9b2975616af016e58 svn.296
7737bf992702e8ea55f9b8c9aa445ca679eafc9d svn.806
773914366850d4cdf88ba6357f438cd2427f4756 svn.1090
77480357e062086dfa46e00a21d21254509573ff svn.1010
7752741ad8b4c001ade2fe52d850be728c9a6d8f svn.576
7777f6ab1b807c8ea8374e6ce51c7e23d1a64a2b svn.735
77ad4648ed8d7caf993cbe9a0c9fa98cbd0c7f22 svn.1429
77faf7f8d8624cb1cc71a9abbb389264633f245c svn.1599
78684d161c28f74eb080c8e347cc07affe5e2811 svn.11
78714479ec4b1655ed63ab753e7eb64194bbce49 svn.1731
7888876baa70393e25dc7ee3f5d5fc0060cbfc69 svn.396
78c7a2cd4c6f48e839680c2e0768f61452a1d69a svn.925
78c9ba1b013b12576663205993f06b43339a75b6 svn.31
78eeba413131359509eea37964279674e88921bd svn.1664
78f011aadd008a23a3cf1c16e659a7bfd01f0b80 svn.1525
78f0aea62cd4526c40099b890429cda11414d684 svn.1213
79375d6353efca8288ef5673c48e7c465b8a72e2 svn.1003
79bc3d944298a10b1621e3dafeaa4a46f6d18069 svn.721
79cc0fb85cd94fb15ea9e2ae09c44c638355aa05 svn.43
79f2c675f9dbf256fd7c730bd00f742124be519e svn.126
7a38f6e17dc8c0350c274892ddd761bf5b35cca7 svn.310
7a4795f2964b41b738e697cce7cec0bbeef758e1 svn.1009
7a4a905ac83dc3dce44a6b8954221e7a937b1b39 svn.936
7abdf2775d80674580dcb2ee742af8ce3a28bf80 svn.1439
7ae0e86d0ae77ac1e40bf9fa7b42cdcebb32ea11 svn.698
7af1b07907d92d18a1891139956cc0acc63a34f3 svn.1339
7af46f2766cee10bb777ec28057d33027f54e582 svn.1148
7b093458569729c245fcbbcff0264a7ec9ddb0aa svn.280
7b3988fc85a4f3547220effcd9fdc01c85ae29d3 svn.1258
7b4ea78d32f125a8ed976d98fd7a8270c61ba145 svn.265
7b79ca45ed746cda3e4be06913a4fc938aac2f2e svn.1169
7bc1265533579cb4e7542be7376d77a2bbeb42f2 svn.119
7bea2bddb35fe07eaeea753cab6edc8486df96b3 svn.1286
7c29c4151f71a24a11af92a03468db6656575db0 svn.1792
7c2a177f330a773e3378db85d194dec33f84043a svn.1733
7c341522bf86c7e10bb655f7f6314aa34eca4b16 svn.465
7c3e587ecad52c6e36daf00795fdb3f7eaa065b2 svn.1616
7c5785af82057e3a3854e5a3f757f9ba0b7d3d63 svn.697
7c73ea93d3baf7668938452a5c6ec66aeb8288d8 svn.1105
7c7d8e04c7806fea442209f75fec5b5b5d753c94 svn.831
7c8b269f72c0cf2e3a672b0d21b931b89776e4e9 svn.10
7c903124520810e58dcdac13bd2ed621e12f428b svn.817
7c9cac9f2405fbcf56e45a7a557b1ac8062dfb19 svn.1050
7caae7bbcb13c6b8485c0db265f7f69dbe1db4e3 svn.1368
7ccb68386f7d9364e65edba381b48fc14050b311 svn.1781
7d0f2b21b8275bf67204c564ea9ac3924d09d24c svn.1066
7d2a9e665687315a5d1d69e5e9376442f79dae77 svn.1235
7d2f5d03022601376011f87f26bc0c36ae0ec1c6 svn.1315
7d309c66861fce2272a43bca230d4ba836f73883 svn.1763
7d6ad92040f2d8b47aaad7c7abbfff718b66c57b svn.431
7d6cf76197562ee72b1974a83a30f93c82435a2e svn.471
7db82d6cda20f252f4733db0ef9102d6ec286e06 svn.489
7e0d7092347ea2b7624d564cf13d71256b0b60ec svn.452
7e2d16dd5cf4f8d8172cc7e5751439aad3ecd447 svn.1418
7e2e758ee8c97c7ce30278510e2a98f7d6ca395e svn.1341
7e45cc2e299134dcf3ad2acf71201fe776d67454 svn.1752
7e499a54d7b873e421c947ca39dbefaefaaa320c svn.598
7e6075aa2eccd5b67e3e5b7b315d2278b2e935e1 svn.1345
7e65dffd52574ce677cbcef4ce759075cf3fda5a svn.960
7e71cef8e31d2c47a572349bfc239fefac96667d svn.164
7e7368e614c8032e21271a16632ef023a49ee8b0 svn.601
7e7a74d7ccb5b49b1748b3edeae17ff57781bd35 svn.999
7e84bbe40c5b7cffc577533ccea6a6fd61dc3c1b svn.656
7e93a63d6a63caf65d7de26223500352cea35c14 svn.1508
7ee5f2feb9d59aad4eb6af41de7ba2d62494acc1 svn.652
7ef6994a5fadebf07519c641cf4b72d824cff518 svn.1693
7f3fd5b887bb0fd1a54a948aa1b5d1026e6bdb96 svn.89
7f538f497ed08bd28b75ce150f261436e7dddce3 svn.1145
7fa3ac5cade9adaccefa58726779de6adb1087a1 svn.868
8015f503c5ec815b64e60a3a67881cfc4c6df7cc svn.597
80ac83abd52bc4809da224207756eb3da581449d svn.505
80bad282cbf8785f907a1c198a8161be5a950057 svn.124
80cc3028703002db687c12bb3ceb64f5d6a53ed7 svn.474
80cf6aa16a2702f47990aef67530abf723df077a svn.701
80e43391ea11ba35c3ade9a0427f3b76a1db756e svn.688
80e7766e9707df387d86d6557efd16208da60b96 svn.1083
8118a10e79c3287b3df44eb9bb3d83a3499f20a1 svn.673
812a377719680b1817d6b4d78d88cec45ed11f0e svn.1254
81393d6765455575a8fb15e37dfba5eaf9f9e3ee svn.1472
814b7ff8d33c2aeeff8d2f309e05f541201bb6a3 svn.615
81556cdc5f31b00d5c0cc126799cb8b5885ff312 svn.866
815662a641f5755da44ff6727ca0f90933f9979f svn.340
8182c58ad0f3406cf84c30634976f45df119e87f svn.1677
81938e1ae18d988e40ee758b8e7885d5ca6832b0 svn.612
81a8b445cc4308eb0e45c9e15b88769bb823a1e9 svn.1018
81b3007d285a41c18068d8f486bc53359e20a842 svn.1684
82063f87059b4cf0eb15fda9372c18348a6eeb6f svn.156
824e85d24342fcbd328df485425677a2bc510066 svn.1342
825e70252776616ce9d6a6e50d0bc3d55b7197cf svn.432
828c01a7da237f57e9bdf7846b6dc1e7310bfd78 svn.861
82951c5f6967e055c4df8413a7ef801b1503a5cc svn.418
829e66a249048caf82f38cbed01567a37b6e54e4 svn.808
82c3945c1bbe5e4757e485df57b7d7af4e25d87f svn.557
83263e58fd561ac31176f8257cf93e0f99306a33 svn.867
833234d863be03580d95c3978aa7ab5800b7fbdb svn.1586
833a684b19f01a76e6e083ef4e337f5b5671fbdc svn.1496
833af911bb6950ed186807b033858421dc9998e9 svn.425
839a901fc4ee1d5bb5f297d218daf712db35c2e2 svn.848
83b99a433087db9d4dab352bee880eaf505a9c50 svn.205
83e37d75ef4005c9accb6b292078cc153fb68808 svn.1019
83fd1be26619c2509822c713280d1c9719800d38 svn.872
8406869a75731e17bb48da3dbba9dd22e036cc51 svn.1038
84135ca746d9115dcf06505e5dc271502515667c svn.1245
844549edbfeb810f38de00b3d37162bdd121e2ec svn.407
845b5fda8672799a9a9809b02d3e44eb9dc1b905 svn.524
84694fb038902d50ac9a399ad4d0ac9d4f3a825a svn.620
84938b94351b46f0e04c1ae2a30dafe143c8ca8c svn.1280
849f899f96745f6dfb201a0f08174b5240008c90 svn.1256
84a09db171e3d5289d3416b606c0ae58727787fc svn.1365
84a29238ece32992a21439cc1af6d4773739d47c svn.705
8541a3f921131d33fd10cb03c4af2c0605766be8 svn.712
858f614dd5289a2905e13f5a0d7e56519f65d359 svn.984
85a52aea151770555ca64a81003de926b4254de1 svn.731
861a4b3e654b4af71a3fd84216e91805e93619a0 svn.1536
862306a8cc96362c083ba6ef874375894d9e1482 svn.649
8628c6c2dd265f2cf0c86ca9e33c3e86a4baec11 svn.1340
864e21d9fd45d24ef74b6a81ea7d8eecfcdbe56a svn.978
86c8c50cb6298a23fddd6b00c6dbf9554561924e svn.734
86fc114fd878141c10a5829421b1a5bdcc36703b svn.198
86fd19b1e4db6116e660bad44a8659510bc88350 svn.171
871854458a1e4c7254aca166b60b38e5fd997812 svn.500
875dae7f06e77ed6cf9237bdc3165d97f79b503d svn.771
87a40ec50379ad21cc634f4067552d304a0acbd2 svn.860
87b4f439784c7827a45f67aca66ea41a9355d9c8 svn.1568
87c95800fb46da2cb4607a1573e3756f0251c5a2 svn.498
883691116c1d36a77176710660eb116493b532b5 svn.1514
886d4605de6ca099390b7b8cc2f61fa332efb084 svn.1393
88763cfdd8c05e6cfd4280ce9e3f1c9e8ba1f1de svn.245
8886880992615e4e64d9424b2713a3cde6ecc363 svn.813
88c2900c197f200bb02dd81bb6dd192f676af620 svn.459
89845d23e7587f3afdffb2f08db4855f92a5427b svn.758
89a10337dd0662d72d8590e21e80426a915d7856 svn.1363
89aabab3d202d8a59c48e95b4953e76bc07e849d svn.1332
89c0ca6419b02e56437552b95cb1f46de616b375 svn.1355
89df9a19d2e091086c1dba55d9adfd0dca52a17f svn.1726
8a0b4b881ee9cc567f8505cf6479b707d318d161 svn.819
8a1ad6b1f8798ad22c2ccce5dcd67921b7b6845e svn.1277
8a6463a94c8cffe4fb5b58ba68da7a207446715c svn.168
8a86a5a85de9e27968db5c173005b42ece4c917d svn.965
8ab0cf44a1e7f376822f17c166d625ef2174f085 svn.590
8b3a5ec0bc0818d54abac3652fb23efb28eda087 svn.627
8be3fe249382ae5799d2f9d8908b550b5a218b9e svn.94
8be7ecf34c2c2f7e0dcc4f9911183d4b6de7a49f svn.1291
8c1e1d0828136953953642d54dc1779e192d01ae svn.1310
8c2230b937c3ee7ce03b391e4a461bd666517591 svn.463
8c85a4d78312dfe9268477441d51a75421fa4ec1 svn.636
8cb2595cf85ae6153c354ab362072709d02f930a svn.1674
8cb3788caf6b60b69fd1fa6871365ad77155c976 svn.553
8cc439cd4908a37b9a6a003fab64604646439970 svn.877
8cf9ef42a2ee8743e4dcc0266c137d7290347dbf svn.1803
8d92c38d2f5071ba04168fa8be79c15a1690a218 svn.711
8da7a5197b7205998ee9e1b66ace90707dca4372 svn.1324
8dc392af99318b977258aed56bb551801b964a9e svn.943
8ddbfa657c154329561a7f7301fe63af1bee5de8 svn.631
8e09cf9dc462012fa145b992a3762a395a45a6c2 svn.586
8e1ad8b63c7189647b21a93f31726d5bc989386d svn.337
8e1f65b8f1fffaeb3012697ea6563b9ad3518df0 svn.1179
8e46d277270ec44270ba64a0e9b58f049f8f218a svn.1447
8ea4d84c99709c94fafa5b75d92d8dee46e4dfdc svn.1129
8ec1f002099a56763ac301023acfea7daa143caa svn.482
8ecf50d7068b1fcdcd4bc00b8584cdf8e3d6d858 svn.1725
8ed67117aece3f5023f28a377e3489f706100215 svn.785
8f1c5ce262983f962bae8390bc319ca7856089fa svn.1107
8f536aa935a0fef92ad77d8b4dff108d99d07ac3 svn.961
8f8379ae5ba9cd8c61d259b4bf7e4529f061c7dc svn.906
8fa7c84becd0341ed84dc67d585e65f3b03f13aa svn.468
8fb8e05bdb973fd43d9ce5c8b682680aa5199726 svn.1773
8fceba5b01781a0fd7f4fc3fab2c5a2f6e44423c svn.911
8fe94e553994a68e484f871b857824b9b8def4a1 svn.1385
901c52a909f9c90d3ef0997c1e3b57f6df63da01 svn.392
905743992786d73e673b909a33e0edb12a2e5d8a svn.345
9057a1191c47b0184bbf355f21cf1fcebaf16311 svn.217
907c568da1bf769526447f02f8b4a57a62079b55 svn.996
907feca5bf0c6ac06642cb576bf2254b8b62ac7b svn.1481
909e90b6ff19245a54a064ae75e378a0d91800cc svn.270
90b9e95b83b8ca6acdaf5bd13e4f4d1f1361588f svn.488
91357ef20a1f3f11419c4da9fde1e12708ac838b svn.1444
913fcb4f0c79472bbd93e9824c62c8aa662b58d1 svn.770
913fe489ac4e60e9930281b59c0dea68a4bcd323 svn.637
9159ca04bf16f61e63e01bd20a8c4afffbc699c2 svn.1153
916a361287e99135ddb8e33b2818aed0ffec6127 svn.351
91b2973186627526d836f21b172e5ed2377cbabd svn.1699
91d0807d5270f3006ca34f0ccd9c4a2b81a47cf8 svn.565
91d52e06894d13f2b8da13baa2d8ddfeb1e049a1 svn.1206
91e09807e2ae7128e2f5e32b8906935a6bad8685 svn.1395
92098b0fdd7a4d1d5af9a1bf419709a3f4ac83e2 svn.1502
92239fdd340a536e2cf989d3f32922d48a83aedb svn.1494
927a21cab86adc02d2117edf55e2a4ab8b83d005 svn.73
92820090a70b3d146ccaf34087fd5960e883419f svn.510
92e482a7a589de11eba163373bca29010a5358c7 svn.823
9319791488d21c4f716cd76246a50a3c3a93ce13 svn.567
93321a880a99433b2efc5feb81ec6bd92cfbb4eb svn.810
936376b8be15747cb0cb070de24d03e69d492029 svn.257
9377e463277a33a9d103212940ae6b032680e505 svn.210
9385dddafe44b9aa0b96699d658c07d389de2e13 svn.857
93f9d91f08e3e8f153a08c83db665283b6a627e6 svn.479
941cb047d4aaf379d4066c975b68fb831b7a9008 svn.693
945069070553349eb8ee87bb1cbfda780cbb7ac8 svn.975
94b38e8ff8b357d66128c0cf658961c5f509b7de svn.865
94dbd328cae27a2fc2bdfb5fc08bdfbde2d0eeb7 svn.299
94f4cd4f4a35dca050dc279a66791adca6f0ce40 svn.1642
951195779aff62f5bb0cb10e2aa06c731e972ab6 svn.1031
9535b96f0104968ecf5ab3c9e7468ce23a904a96 svn.1689
9559bda18b4e856a9749c744165735c5155ebfe6 svn.1267
9559d07fbce62a85ccf4b20db90e9ab3ac61c51e svn.516
955a7a3e4c97e9e098e9f11b822946a96cd4c2ca svn.74
95636bc3bc1bc1cdfdc960cd5845d26bc1570a02 svn.1555
957781635f75d753bd6383ab20fcfdabc3600f31 svn.672
95bf6395b37c4ba5ae0a5b101682ab5ca5663d69 svn.1739
95d6cbc8a254c02e9371c64111cf6ea865ad8322 svn.1216
95d858cd57c1d58933493c48116f1034ab3a8e62 svn.15
95ec3bcb988f378331758ab60a4be3df7569bcc4 svn.967
960fc803e2df4ede8b2b874d86107f21c4015c6d svn.508
9640f12726ac9ff6f41e3367088128958e61e212 svn.232
965aeb33157cb092f6c567d70cd03b33cac03d9a svn.238
968eb2518b5e3ec10d5f97929c4826527f824f91 svn.355
96a8ac92924149e0b53b409da391b2c3157fcb94 svn.353
96d05f286624040171e9b951269b48d7207c1837 svn.1521
96d1c770f30975d456e726181723fc236418e52e svn.1771
9704d8eee09e9aa7ed8a25bb370290e7c165e226 svn.128
971a354621a1d9d8cdb55c5984b9bc0b04a20bd1 svn.348
9732bcae276ae99e9e0811f3c1363c88e7d37fdb svn.608
9734bf27770c8267984a34566db598b3e5728aae svn.1152
97588038bbf47ca913de4f468442e1cd86472d19 svn.610
977e4a4d07b40a3b25bd1d70c59224684fae3441 svn.667
97b4a4692fada54dadb2d1f5a20d10bebc2f2caf svn.188
97df23113a045033329931b2d5a4fac8cef9c6b3 svn.714
97fba1eba19a95247d655c901ffe6e182b501d19 svn.1442
9800c5ba2109682bc8cc6a3ccb43f4df78196423 svn.339
9876f685c311b200fe993f176ac7e689862dce5d svn.763
988ec6d271a4678be3f522b5adaa569e78e62a85 svn.14
98911d91b9f92be65ead0ec3c76ddc1ec64f08fa svn.588
98a119a759a65fdc3737917dca91e10cd2614595 svn.1589
98a64b855f10fb4c4ec0fb26b400c930486db61f svn.278
98ad0b1eea20941012842a7cc35bdc057ea6eeab svn.1194
98f12553b78be97ab4a82288e826457a83e59a1f svn.600
9921dc9ed98bcb362576f96422ab51833890a3eb svn.1040
9931de9a9d88ddd1ef0cad7d0cb3eeb3de899a4e svn.211
993773404e8211c08aba35c481f7f8f8af95cf2e svn.26
99652ca45322ff8219909a55c6aea132ab8fc846 svn.1096
99c15130eb2c9aca7a058421f04342790b77e48b svn.1309
99f8230eb4fd93cbef225aeae1d025ca77101047 svn.1436
9a1ebd1808dc4fbc99cd536fa5bef7e562394a5d svn.894
9a71ecc65e66c69b2993aec0873dac3a3b3940c7 svn.460
9a93ef3bf70e27d9e625e9b0e8a79ff009be3b0c svn.52
9a9ada9118516edcea975924ade034bd26dc13ab svn.957
9aa25fb8967e427a27d50791eb2483d614832461 svn.998
9aa3a97b4d50e0ff9dfd27a31de00f7c9feeed3a svn.1076
9ab95a974154bda38fc2619ac6f637ea2b067531 svn.1180
9aec4be13f8ca6fcb94c8d76d234f9f5fbbd61e5 svn.1428
9aef30a081b44a2e20669c2b9efc560138e78cea svn.492
9b10206065a80a8620f63cac765e9afd99d979ee svn.956
9b29a595eb213a3d8b624ffcfec1264daaeb6297 svn.157
9b41c90daf4749214ecb173a00f43135246e6781 svn.1714
9bc1e5dd9832a063fee0f272231d1fcb4fa4c2f4 svn.792
9c112da285602525338629860292979a2d26b201 svn.869
9c3344556df0a135022fc51b4550268e0ff8644d svn.379
9c49782e515a9305eb2520cdb216ce6a3a519115 svn.1608
9c6a4a5c7f86d77a97aed9365a0d805af7f5d6d2 svn.154
9cb29d1f9f10f0d2965be923f870f94a529fafd5 svn.55
9d1e7ed6a6fb317b20bda798ca4d316e4a458a09 svn.1282
9d92e040e9fae5172dd79cddaf35f70f8989f69f svn.886
9d95522b58084ed44db218f5f9b9b8120a4429d7 svn.39
9da0fc2dc4ac8a32ef5dba9721d6ecaf8b556799 svn.715
9e4f7f432edcb71b2fc63de0aa9ab7d2a4dc48a2 svn.887
9e632e3d9ab45e6a235bc32a36167c8846bdfd0b svn.1583
9e6721a9642c652026f903c1d73eee4a112bc642 svn.1200
9ec9c7afba9db271050517210dfeac944e06ea68 svn.228
9ee5ca4720a15232000e029f62003dbccf4a90eb svn.1378
9f1515882b0eb1e9330a2a7bced32d7465db70f3 svn.663
9f207ebe8da55f96872590bc541aeb1c0e95dc05 svn.1108
9f38bbd2a7e0b2a946d449cb92bccaa74cedc1de svn.429
9f8ff6b8d63271ea46fbd5f1c1cc86c011448549 svn.1670
9f9e9b6346e4b4f2e55d0a73f2620442f6adf92b svn.824
9fabaecbb5b52610ac55462dc9527d09d6fbfc41 svn.833
9ff912bc3aa5668736ec642092e9052e4cb5641e svn.940
a0248c89297d1fbcfcc978234971a334d189a509 svn.1078
a02e8681556852d390ca987883bc1f0bf68a883c svn.1095
a06c2aeefa343f95e6114ef42373b41d5168a6fe svn.1234
a0c953d3de30977dfd049bbdb9583babf492f9cd svn.643
a0d79c04569a2fab16b9dcdad2c2279a8d97087f svn.1629
a0d7df05f9a857975a3c5227f3b03f30e9dc984a svn.416
a0f418349af76aa0d155e417b42e62186249d7c8 svn.1648
a10259dbd29b3f03c2b7dc6119e7f646f0cc24f9 svn.1172
a12649dbc73d2cbb659f5c7aac8d018344e0a536 svn.1338
a1295d81ae39fc5a57d0504041c89d2fa48ca6fd svn.644
a163dac0359fbe271c1ca0245d3540857029c3b3 svn.1404
a16838b5cb05592e23262655527f197656796f81 svn.703
a16d588a8e9cf4ec88fd1cb7142c3834f9bc3b73 svn.1804
a18c760d50f79b93a9add8effe453a59432c7775 svn.1759
a1d74d0fc790a3491a52939587410556f6b0a906 svn.1489
a1f4a88de6091601fccaa7d750fc630d89484173 svn.1685
a219cceec164504f0652afba415fcc41eb94dd50 svn.754
a297f869ee4234578f31afdf259e696aa5abac97 svn.1753
a34717eab5696aad8a316ee7e76df8c533b73d4b svn.1720
a3741bbe1e9377d661298a8dbca15698846b80c2 svn.426
a3a91388da54b7cb33dba5f72030690d115686b5 svn.1557
a3e2cea497289ce066176e23cb4300ef42fd2032 svn.268
a3f68e21a03e4f6de50db0a5de6e085147c41ba1 svn.450
a402d09c999716f33b1d5505646bb308d4e39ec5 svn.169
a43969b73291aa0750bfcf156403ea1be4da194e svn.1800
a460319b2b547acc3ba3feaa74b96e1530c7888c svn.838
a48a47a1f51f173205dd227d420ece3611a6ec50 svn.1637
a4fc7736d18490a194bc4a15b778920aee81aa47 svn.1793
a50fe3cbce4e6073c6a645d6b137cdd68e46eefd svn.798
a510c9b3e200cebe7a43326fc9b366952020b70d svn.752
a5267c2eb1d03a1d9c8a699462c7e67533f055e0 svn.1045
a526bb77ca3346dfbf829f14a8b1f8ff31588fdd svn.641
a56aa4ee391728ced5cdf4e896c1b43ae7bfb09d svn.1118
a572e5965967eb1aa33cc2e7d23873258907117a svn.274
a578bb6121dc06b382231f4fa8d5d348bb1271d7 svn.399
a5857bae39ee445ea0c62ba6f4ecdb915230f090 svn.1723
a585956b12cf252a9d003079335feb5c06c99328 svn.800
a586ebd2e3196ff432ce42c22a7f96ce56a40b76 svn.111
a58c3ef148b51785910c57118a514f00ea45c5ab svn.724
a5b10446d760508bf5e8d5aa9a5c9e436249ec8e svn.726
a5b4b425141cf01a7f13ba109ca1f911c7d94d56 svn.1438
a5bab3cf3e5bb59a451209daf738e0d115e4e6f6 svn.1054
a5babafdf8d0662adfbea9079b0c4e3f056bd860 svn.65
a5e219997db4f32ca5c81a2b4aa231ea53a798b3 svn.152
a5ea9c50a0651be227b8b26717cc571749d26604 svn.1201
a5ed10e8bc88fe86cae5592cac69814be8590098 svn.959
a6074bdf26e5e73d9deafb77562d41d63c5e46e1 svn.133
a628cc0521eaf1a5fa06ad4e127359d33ba331f0 svn.1671
a632651a151bbffb850430cf60127d8cbebca142 svn.1336
a646b50a6c312814fbda9365ddb1e2378b601451 svn.1062
a67ce0a27572b4914685b3677f7255886ee53085 svn.755
a6aabdb308ada1f68f6795cac2f3bb1b3b3a270e svn.98
a70125dc712b2cd6f4038c0cc71bdd0726b706a0 svn.1375
a7aac27988511020c8a4b43d97ac296436e85a08 svn.344
a7ff6a46cb6d7d0dc38d744c01ba6d25ce77dcf3 svn.546
a80f3cab483e45ea8c6e7df58780079013a41220 svn.676
a81914dad2eb58c8fa6d345bc5ccc2031774f447 svn.1742
a81931a0ce18e6abe7c31f7a8eda97545f8c4a5e svn.942
a84e91abda7d74e41168d7447ae96bbe1a48e6f6 svn.593
a85b7fd37b4359a40a185d7972411cb171a10f98 svn.196
a86267e508fd91907ed795f277c13849cbfbaa95 svn.1302
a8899e645d975ab0dd8042fd1ba76e660ed84fd2 svn.1591
a8a6f843926816b7d9bdf8a2dbf9423973c4e285 svn.1715
a8d37c1e3ea9582e532abc92c254d7784795eff3 svn.971
a914357b7ae6ae9d06b75cd66b6a90dd612dc4bf svn.1565
a92157febfedda7525b97a3ae3ae102c3f1f9397 svn.570
a9295fc1fe38a604a738dfd593b61251a8876b64 svn.1522
a94d3306a44ee7f0aa98a2f6027ea54b77f21311 svn.501
a94f2e04147d37b0c86e220b47eda0bb842c6693 svn.421
a9997f587f4d1d280852eb4d5a7be43c34d91bd2 svn.36
a99b6b5ef6a1a3a47f2f55b95c622f5cfdfb9ca4 svn.1100
a9c31088a3e164c86f37d3aceec9e8ffd85224a0 svn.928
a9e519c8b5d3010d6ef71a21f1d37a70d302f24b svn.1510
a9f54d68329cef4dbb0fc4aec462a81790a5867c svn.1074
aa1dd68a313f90ed2bed7104cc455049f1d93134 svn.177
aa5a58db2daeacef35ddc3bfe3fb42e2f62dedab svn.1272
aa8c48d95687e4328d713ad09e0a2d5fa8f675d7 svn.25
aaedf208a3c7da4c2f9e4e7090f9a79b6346ef7f svn.233
ab00496b77f0132955f409bd81e661ac498f3fa9 svn.1042
ab16b63dbb36e2fd83ff62f903b7076372ae2280 svn.1501
ab2e41d6b3fbe3fa1b3efab14bd3a269a9c8f2fb svn.1199
ab5719ba28841242625841fde7606293252a1f81 svn.1290
ab5d94b1312c6a7b384630b78b1fca91748567c1 svn.625
abe1b3db045589ce79ddcb349a73cb165a04db18 svn.692
abf2124837c9a76b3165f9db1ff627c6ddada1dc svn.221
ac0ea6d8448371423c5981d840ed6dc1a21c66b7 svn.1186
ac1083dddca99afb1d13aab044e0a1ea1621036a svn.1768
ac9413ddb79055da702d50c9150a6172416108d7 svn.1048
ac970ffcd2cdc118cc58f2601c055b36ef016b47 svn.1655
aca911cccf567b3be747ca4e9d2ca2b9e2dab800 svn.747
acc1571c360ccb3f6b74739da17a84a3aca4281b svn.134
acccfc516c72622744b6278347abac10650db670 svn.976
acec51d08d7624fe76a9aadfe3155ee2483506e3 svn.1490
ad0abbc94dd620f6971e040413801bdf7f5dc5cd svn.1675
ad57f1d5390122313bea130fa196e36f86d7ccd0 svn.1769
addf0f93ae5c8ec8989160d02185e1fcb71e4a43 svn.958
adf2aa0ce50c1ceeb7ba15d3b621139765b35f15 svn.1047
adfcc0995620eee56fb64502c3c748058c968072 svn.378
adffe1af3e0932544c25ac7dfeecce81035b80a4 svn.707
ae058e5b5b0b59b5821b2caa27955794fc5c2820 svn.1651
ae09f960b038793877a44a52e639ff5a6eab6f57 svn.346
ae618970c5d2b233fa46f001a8da2e4d27673214 svn.748
ae7eac9f61672eab28817c79a4c3021577f3bb3a svn.606
aea28bf27fb2695947563966b77625dffc562448 svn.149
aeefcef453f3b17e5bc516ae2ef5783090db3020 svn.622
aef2e9f0f0775830621511191cb1d90cbf31e2dc svn.1348
aef516e1116594cd80a37197723b554b7ed14dd9 svn.1509
af64be205ea2ab36a0aa9fae890406b01f0b1aef svn.814
af78ba12e16cd1c350d7b8d276b63dea1828ff6f svn.523
af86a6b540270ec0b34313cf9a63a959c1c8a903 svn.1735
af9009caf15aece591529c028ba693c4718599c8 svn.818
afd4ae9b829680a7e437ba429f1d5ef583977955 svn.534
aff586a05569925695625366d3994efdbfda75fb svn.48
b017b61136d48d1e975282721dc088ec042ee90b svn.1676
b02e9e71d58e839ce45a0b61472d9a3231b0bb1d svn.529
b034778c7095acd6c1a231d6a8359d4e1557353f svn.1592
b09e8dc65e69b08904691e6fc2da1a3e227b7320 svn.1467
b0b62515d53ea57e9a74f252cb25d98741f57ef1 svn.476
b0c19e4145a3ff2410db03cbd552c9e79c5c6cd1 svn.365
b100edb40a33571f3a8ad85db86fa726f552f7bc svn.1357
b10baedc76153edc3cf9f62609923b031a0c0743 svn.102
b15d74802fe758c9d2661854e0a3d98b65f42564 svn.853
b178007c7e0eeaf82d720f7d67a278581fa68cb6 svn.1162
b187516681a232ffac94cc6741db31b40089f1cb svn.616
b1e2a89b438c98b7cfec2bf0d1788656400b65e9 svn.856
b1f6ec05492ee42c05be7bd552e6a854c1852c0c svn.1016
b254a7fbdf6e8914ba1b20c72efd82ea2895f233 svn.1177
b29b47b078d90d27e17172dbd64371663d753f99 svn.982
b2a797990913cb34b89db24cd90fa0661fce0d10 svn.684
b2efb3cb1ae8e165a00e4ea416061e54b4375e37 svn.1136
b2fc28865d5ada46e419fdcdb6138a48946f5c03 svn.1210
b3508917a48f60870b653906c507c863ecfc6d68 svn.628
b41bea1bcb1de1c425ca3e0c37af428ddb89f7cf svn.1208
b49dcbe2d0cb373270e7afbd936a3c425da25a9f svn.389
b4b34c928a45a00eac301c3eee0056d9e275927a svn.1449
b4c889499f4c41b9bb6e40cf59a1425d1788f779 svn.41
b4cce6b7eacf19d77e87b9c9a329770775936a6a svn.543
b4e3de65979dd083e428846079e509a3041202ad svn.1638
b4fe74aaa8f6b8d44bb333b9f8e3bab72d8a2649 svn.1196
b50805f852a8e2be7ea527f7aa361074f461936c svn.269
b516c2a4c8f925f48f51d4adb3b7f731b586877d svn.1307
b54cc4d9ea3be89229352b78e540f36302b1b67d svn.87
b56cd0e4430d71b6628e34b9141b67770e4c189c svn.1716
b576dbf4b3df62b8fef0fc5b42c1ebb854ebeece svn.670
b57ef455693f2177dc245989457480095481102c svn.369
b5aefdd801963043c02bdda4ee3c581d78325709 svn.607
b6091f03067325dca04b154c82d4ba9473203967 svn.286
b60b25246b1ea4f377f4ec8218bb6eef2774b267 svn.292
b6133494d191fe7c524b134c0ac49c73ebf28409 svn.1595
b62bd324f6a76148938a9f75562bbcc75bad25e0 svn.882
b62dfdcbd5ed48b6dd97c6c08baf763729af853e svn.105
b65ee17c29656ad491d5926c92ce6c1511cf59be svn.461
b66f1ebf55000be1e02f95cc84e2141ab13ac378 svn.760
b68dbe7d587599bed4f5033cddf6b200b3c0c797 svn.1039
b6afde5ee4d5012e2041ac8305d4951021fce11a svn.888
b6df060b80323de2866a13e0fa671652fb0713dd svn.1125
b6e2c5b077fc4816032af9f272a70633bd8bbc62 svn.1253
b72c9063105fc37dc44f5b1927303cf435bb512c svn.674
b7600c714b84873c4ad1c7637de51dcb0595a20f svn.683
b7763d12ffd2ee7fa08d814a66d77e316334a846 svn.834
b7dbd20136811c23c0cb14899acd320067f50f28 svn.360
b7f4ea520c43cfe5409afb6a745ebf32d2f668d9 svn.470
b8007496c5864fe41804232cae36f938910ea5a6 svn.203
b80893f1505443f521f049d263d7c587cfcfa1c3 svn.1747
b8276b8dd4e7ea3eac5b560b0dbb2ab9cbc9e941 svn.252
b83eccc16f7e7b7e0a40fa7829acba11ee9e55a9 svn.312
b853cd61ddc4b7690bbdf1951ba2b97915dbf7a4 svn.1140
b87a153ca34719ca3f7c7bfab49ac497b0fe3575 svn.1374
b8b1484aeb9371e0ec57133badd8e401451dbd04 svn.138
b8be5dfcc9256a3021339d39219e5a92e752d07c svn.1149
b8c88dcfb1690770c3547e51aef90f80eeb25e57 svn.47
b9004cecfea6859995441ccff047349ac2146372 svn.19
b9043b843697016c7929edda4c68aa19b1b34538 svn.549
b90a5e0b349eb2d63def509fd2a1a972714a4827 svn.441
b92d169eb5e10b1f0240084c6e88e69ff7bc9b71 svn.1334
b94c331cba4d1d825d907c64eee88ec0d5c6f197 svn.587
b94fc22d5df709e061d6b45afa4f82962f984cba svn.561
b988ab9044a405bd54a8b82abad6841abf14e5c3 svn.1530
b9c726dc2011338c128420ac8a4564373a350c72 svn.977
b9d559d3c93827503a08f63cd377bb89ba96f94f svn.1174
b9e6a95cadee468ead8fc31de24f615e397c89d0 svn.1729
ba26a56b3af92dc544aa3bdfc85807f6efc072a1 svn.1787
ba52065cb28fd4cabc1d1b62a2c97e970bca272e svn.23
ba72d14db98d4aec227e6b688a70153393514145 svn.1390
ba88dacae29e8a70d19e53bdd1de023f84ef8cce svn.702
bad10987839488295256e8d9b4c98bd41d33c144 svn.921
baed8f20853f4fa7df7ca7b4e810e0fd57f64ebd svn.135
bb127bd1be4a29d863e13ea3bb708758bb18af75 svn.1137
bb1e87ef23ac5ccb79d99a157d7884b0d5acd320 svn.436
bb86dfb4578f0ad377a6ab15e9eec729960a9602 svn.1306
bba760a55e02033fd0055bf67b1c893e6b4082db svn.1011
bba8232865e81643be4c343d4a6bca6687bad827 svn.742
bbd1d3461d4ae66137c197de5135d3852fe10e1c svn.1230
bbd2038ed37182bc4ddb3c574c8113b418999d22 svn.414
bc1400e920f5bed116136d53722700715c07ff54 svn.336
bc42cad69e953bb617aa31d7a374a1ce8a5f925e svn.544
bc8afbc57b67f51384ccaedad69ad024a17e55c1 svn.281
bc9ea94aa2cf29fb36f56ec6d994cba0d9be29ac svn.1166
bcec0692b627b770f3e5b6bab4a22c830746c5f1 svn.822
bceeaee5e4975fb7c5b448257fde44af4d13f384 svn.944
bd0590a19af0a3b7e4f99f7ece4770713b8631f6 svn.397
bd07a43b624c9e249c76af770a1bb82bc89c72e3 svn.655
bd0b543a76b1be2416908cc8c002e516254170fd svn.1474
bd20ff182a70680ed102319d756558b2e6931fbd svn.424
bd37fb10c639aef30c2634843981e03cb922031d svn.863
bd518f331c660af28f9653af0c00bb2b2b377191 svn.186
bd58a3cc636648b5c4165f72df502718001e12e9 svn.446
bd674100764d4566a7df25e2960efea627c425ce svn.1431
bd76d70e13036a042d53118dacdee7017ba24470 svn.1553
bd778de72222fbc5dd4f8f1ca7e2f8e6df9cd8db svn.1456
bd972fcd4ae0b295afac1b1167edefcff7a799d8 svn.512
bdb57322f46908ed60e5d8d5344ae9290baa525f svn.528
be2016c79358602e569cec87eeaf7c8146873384 svn.569
be34fecdf22396fc117ce041d3e350e6bf8460f8 svn.1236
be4a915563973368ff28084c8201f37af10ad46d svn.1193
be6acb7b9827ff8481db261ddd7f59df1a68025d svn.550
be7d1bb42c34dace8162a84a0b9fa85405d580e3 svn.790
be8eaf0b54747c56beb61fa29f5a1e52efbe7e30 svn.1425
be9c17ec40a22a0f2ac629eae2942c47a1e2e46e svn.455
bed7ea6f0af813c6bdbeb6ac61ff4622fb24043a svn.78
bee31785688b4b3ad4b9e754e7fadc6f73dafe07 svn.1724
beefaf3b957aa33f06304fbb5bd8d165f10dbca9 svn.484
bf196d6db35e67bad09d04c5517191d9545f3bb2 svn.175
bf5176323aac3d989544ca00e830a6ee030e2296 svn.289
bf78c745075753faf220e6a1127803633e5d74e2 svn.375
bf9ca3f4fc137b6dbf5f1ecc2f37731f5ba30899 svn.1240
bfa60de05a0572cc29caa94e0200684fea4dc46b svn.1119
bfadc2919b665414db3781ee35f6f78ec96571b7 svn.696
c02c67948ea3bc03cc631a66b6c8a3bbeb7a9a8b svn.199
c06cb14312e16fe08ed3b49d2dd2961b67823f49 svn.757
c098f2b1d264b43305edd5e67b84f838759c0df6 svn.139
c0b88e210dc389abc84d1a5a6b38b468580b9888 svn.753
c0de8e602dca315eaafdc99f0570a6205f36a799 svn.1117
c0ef10d55142de04b6552639be0ef3beaecb8268 svn.1650
c10095fc0b3379a4230af3086c2c82d99fb08f78 svn.383
c136b560a49ef16431d5ebda46bb181d3f30c5ba svn.1053
c13e3d84f3a9a779d232194a736472c0c7dd30b6 svn.1238
c163713e415ac6f33299f8773d95e2872b353910 svn.404
c167a9fb66504c0527d85bbbb2539550e9ef43a0 svn.2
c198ce1f5adb895f14699d3c28f1400ecd209222 svn.624
c19f7596a4c38ccc1376343243b5043a230b8f67 svn.511
c1b1502bbbc8ae1e989ec9139cdd4d1cc3844f7d svn.1405
c1c93678d868e72993bcc2f3476ca75b791b1164 svn.1203
c233bc3385ee77913c98866c10bad6f153f8daaa svn.540
c246630d322cb58675ddef6ebafaca4b73216df9 svn.506
c2a41082a6be8099136177ff717fa82cbae9758a svn.1308
c2b3988e4f9b7530829e3b432df02e7ffe6743dd svn.1582
c2bb172fd266f6ee32d3d4ba4a68e8ab72d21878 svn.885
c2bfbeb2a6189251637353781c52cbbf226d1bb4 svn.290
c2f22be977587da957824faa9aee58ff23f7bc55 svn.58
c3196a368da7180614190efc0395a63929bc6c08 svn.699
c332476fd1461f2dbc3467113e0d311b3b1ae528 svn.81
c3376fa426b1bd1328d044a74f8d98ffe822596f svn.563
c34c1e6c30e51ec604bcfeaca99a384ba6a08cbb svn.577
c368b0a6a927578a598c73058e7a089066fe0f2a svn.231
c3916e50b59483a7d5477a3d2830f7ebaa4e88b4 svn.44
c39afe8c02faf8e017fec2b555f588eae92caea9 svn.1475
c3a8df412c3c5a6d85cff623f3c0bff309892c39 svn.1520
c3cb6c6ea42d39bdff323e454767c966fbe273d6 svn.109
c3ffe484fd397106b02b346a57d4be5538b29bb7 svn.255
c415207cceeaa18d4159f1bf54b4622d257f97fa svn.1634
c44554134dd77398bbdc9ed9d0c6d07ddd9bb0c8 svn.981
c4c5cddc0193b5f2f539a1164f6ceb64f2db3337 svn.881
c4d967b289e88afd7aaf513a69137c9ce9256d33 svn.195
c4ffdb58f38773e05bdb4cba2c07b11f13960a6a svn.333
c50fc0696ef444d7d29476442993549e858c5daa svn.1275
c52bb6ff37c1dad3b2d4bbf9ad1523fdb8b28402 svn.1281
c53e9e42bf066ea0d6cc8727434d0b4b2a475780 svn.1736
c558481a7b1cb461664e002d6276a4a45bec895b svn.194
c5799f4131404885f9f5519469ddc7776db6acd3 svn.1673
c5c15377573c533f5fc534fbf8f41ec86a050410 svn.411
c6088d1d3e29aa86a5afc947eb35f1e1748cadad svn.832
c6096476eeadc2981ea9bcc2583602eb9b65e9fa svn.170
c623c08ff5354afc9dcdaebc4c48e63db16c2925 svn.519
c6859bf896efd71340811b384ebe188adfc0ae95 svn.1335
c68a59d35ff4aab7c379c6901a228c7046b9f9df svn.1104
c6ef0f1ad18b66d53d89f594eb409da7c3f88c11 svn.602
c709cb0943774485ba12513d41f005dad4e1a73b svn.1121
c7162a837fec86e35015ff1106affed097263e8d svn.1408
c74f26086149a38489c2c4dd4d893430513e7d31 svn.633
c75b8dcb044876ed256dfa807fd6c0140d9533e7 svn.1296
c773f6d895653c3ecbdf47ba449adaaac871078e svn.440
c778a0ae6038c46a24c0e8e13039475075ae661c svn.1656
c80d72a952f4c7dc149862d334656d4f29494606 svn.825
c81f9bdea878709507f333f0dac8d3edac0ca837 svn.706
c846c8c22f53d3813d5f48cbbda31848358c73dc svn.585
c84ea36f4cda9bae146389588b04158d93297f5b svn.1709
c8713311b73b6b948194bf185a1973b535eb32ba svn.515
c871904bc45d64e143a583a41c7f57fc8dbf0313 svn.1097
c89c86f10a3bc43e3a6daa573f91138cc16a0d47 svn.1064
c8ee9b5d34430df0ed14cf3f0f1dbc7f1d2b4b16 svn.223
c9773ae3b01374d1b3f9fdf518ca7fd54b573177 svn.1658
c99bb50a463011e62a54fbbea512e004c7f8c460 svn.20
c9ca0c16cf8eb49e0e314f65a7a70de87e870bf9 svn.1380
c9d500439ff90d14fe4769d91134d2f436a1fe50 svn.1706
ca15fea2e6e3e32a908ff6acc3206b7d92667ece svn.204
ca1e28f7895a7a54dc98911762161f370b44f6b5 svn.1386
ca2da2130ce94193b4641865b4b58d278772d9e5 svn.1611
ca5dc5e9e08b86f309231af045059019a9fda402 svn.574
ca6269080027653b454ce5144c0f95c448ec7bbf svn.1024
ca8b8620885703755c186ab7d84dd37157594b2f svn.1601
caea955bfc4a4bc41d45f9062f9611d4e1d0229d svn.358
caf0c2b42ca9839ed7c717de26c99509062c4f8d svn.811
caf4508acac58c6ada5a6e9e192af171711e1a2b svn.206
cb33bfaa936dd21013a66f1e67845305b028e6e3 svn.581
cb55e7475f222fe03bbef195d1b4492f482eabb9 svn.242
cbb1deea25e3a6c5106ca32b9acaad37231b711b svn.472
cbe7888df0dc04f3349262dd716114bf60584352 svn.1566
cc1f76d8fe23fea528b8f58c37d15a005c165820 svn.1212
cc2e1ec4536f68860d74e3d0ff320f5b88fa9237 svn.603
cc3224d42aebab5e87bcb500a56577bd6e7cf2a8 svn.1059
cc38929af6efa218b77da7c8a8ad84f0c39f5bb5 svn.1128
cc74a5c1fe3c598da6cdec23b389ca6e706a8eea svn.1785
cc7bd4cd0d1b9f9a1091bd678047256d975ecb8d svn.1123
cc8f3d28257506a3bc3fb7e14aa924ad38d59071 svn.90
cc91980a1e29913f02f3513fab75f8f23855be4f svn.900
ccf7b27b64988bfa187b588e40db01975e687159 svn.287
cd0c3084edc9eb40f8310068d6ff6d6c7aad00a8 svn.719
cd416a203e19971ad4d604ca44aecec2d2917e46 svn.387
cda04daf48c6309f71c060158c6c5180d90136f6 svn.84
cdc4f7e698242ed2a17946fa3697e1fc7bc7d1c5 svn.1698
cdf65e688238eedbc9f1036a903b6f03735c89c2 svn.1384
ce014fc1956a54e948c897831312b28ff2d40db5 svn.1330
ce2a2203d4f5ed56479a7ef201996ca4863a9c18 svn.517
ce2f3a72ca9da939ab91df6d5cf193a093273a03 svn.836
ce4bf5a027a32c44bcd3bbcf217bc00a06c310bb svn.1505
ce7a63e6fe40b68add31be83d48bcae92237fb02 svn.924
cebe6439577033f1a6727ae2422dccd487729e2a svn.980
cec5c2f0131a6a68816f3cd653bd86846942777d svn.165
cf048d23f9bb70efa03d93aa29281ed5bc489d56 svn.1151
cf0b8fa619131998ad2d9797f62e6d4fdf80dd25 svn.1649
cf10ea8151cb6d668dd33e5547bd4377c0e699e5 svn.990
cf26d7b1d28c8c5561998b8ce1df420dca9e75a7 svn.654
cf5ef451015e5b73967dcba66dda2942d0738030 svn.973
cfd3034246e5374810351f319e7be0bccc989b2c svn.398
d00dff1f4de7ee734b29f596b70e2a86ac22b93a svn.507
d02415804062ce29d1817d6637c2c83ae8c6a985 svn.613
d03329f07d150def647b13629f2076b7e7fed0d3 svn.295
d08bb1b3cfb3773e3ae72796242be9cd722efdf2 svn.1271
d095eeb54e5be45074634e633045237f575e28e6 svn.485
d0b50a7c7a4b2a071640ed4545a9bef6fd0c5494 svn.1164
d0ef00548e9d059f838033cf4f9af66de0a5d11f svn.141
d0f7efcca67d22b8670e257e765fb784dc7f5a98 svn.338
d12d8030ada4bdd6753f9526ceeee4b87e758081 svn.793
d16aa2935585fa8422e5b297f5fcd2315b51fdd1 svn.1415
d1a89f0f04ae32433d86fad2e3d58cc018570315 svn.1524
d1a8a2656a93d9b645072b1cf6ab5c4e3dd232d4 svn.244
d1add6a890d9e5f433efe2f4af3f820e94e5ee6e svn.730
d1b72540f662098dbafd526dabf48f09b5b9b2d2 svn.1745
d1ecf43dff68904f9123a3a29892c4acc4c2ef26 svn.584
d1f98a7c06d1921d36afa0741486ea7f765b9aec svn.767
d2034da217433177c89e79436b59c38144cc9794 svn.1784
d2173c1262774efeef1291f7062521389b7530f7 svn.890
d2282685ac5d1e06a7229f8c39db1d93dbe4edbd svn.1005
d250a805dc0618e8ec8060ed8c1b244d3fd98c09 svn.1056
d279bbbbc82cdf1c4885a4655f901116146df845 svn.789
d2893ea69beeefcfc5c9d56019ac5057dbfeeb6e svn.1779
d294da29169a427c450192c84a94c4dc36917324 svn.535
d2a61719517d9749934b6ca8b91ef87eab5da8fe svn.1756
d2cce60885eecfaa844f23a26f0fae43ac34c600 svn.572
d30456a99475a462bfd2ea3e831e15e27f4463ac svn.1564
d323733a5c1667fd08cfda8f65df8adfa30b49ef svn.1617
d34667423b3940c6105dbb70018eba21a0c66524 svn.1371
d38fe2486bb57ddd100be7ac6d1597fe2a74fb01 svn.1182
d3bf19cb7ce33da131cb742641b947af098964c5 svn.1260
d3c0d5a01e96de0fb8357bd98fd53bcd78e3d8c7 svn.57
d409892c82ab05ee7f678687b756ae192b21cecd svn.1359
d452bb73bf7d898707ffee6b8388800d4d4c32bb svn.1305
d46c717574272bd2cc4b97238f42c410f2d9723e svn.664
d489475826609f4c8013a28bc31b72383a4c896e svn.1441
d49d0a7941ed7725c7a3382573d06d0447e08503 svn.1631
d4edf1cf60d10e3593223705033f460f10c70312 svn.634
d4fac6ea54a62e42d54f846ec3c0df741bd50888 svn.1321
d5057e6c68d784cc5893da72e5ac5ac72f85b535 svn.575
d52d833924ed0f1074688d72c4ce2f644bb46f79 svn.525
d5820ec3227beb823a8a71b1ea5b1648d258dddc svn.1471
d5941dda907940915cd2b05964593d096c6a2fc2 svn.261
d5969b00fa9734a4da0e33ce9c13e46abf3c8648 svn.1268
d5a49ed72a6eb24831dabeed25d2568c7e61a6b9 svn.1131
d63459c7fbabbdc9c1801175bb5444ed40b5569f svn.136
d6dcf317e3417fda2e633885be378e116945b9f5 svn.1146
d6f2fd43ee48e2710a80bbdd99be983aeaa9967d svn.1504
d76b0bdd379455f66e124a2d968a082dba710dde svn.1719
d77977e676fdf1c0e2c05e4296f68933747e70ee svn.462
d77b4d4789f4e93914bb5b435665a77d65e1512e svn.805
d7900a6464c942596365347e0dac9d225f8efe73 svn.56
d7b9cd53e639ca63ff18350a898fdb9262305150 svn.1069
d7c60eeed511fcedfc20d05815ef985ef9b00586 svn.331
d7d86ab3b0d4690912a88421518e2779e2be717a svn.1452
d7eaf968bd14944c4399ca18e3b829489e278b87 svn.1376
d8068096efa1a7478739d255bdc6995b649247d2 svn.1473
d81716777b972787bf80f27bf34d33f40631ff90 svn.939
d8226f2dcf0a14dc2edd0704b8ca1d71288f0beb svn.743
d86244661ec585e3ce0088e7394dbb4e5d530152 svn.1681
d87671d34c248fbf7b4340eb1d77fd5baf93cb46 svn.367
d87bf7bd5791e7facd0e88e76e0b9902c4fb8f90 svn.1712
d8945d2c82435de57ec6a5aadf3fdbcefe89da51 svn.548
d89a70b3f6b24c62fecd63e30e79730460ed3fb3 svn.1028
d8d5d0f85bcd1d0c07758d7056f2a007f906e122 svn.1328
d8f61775a015be47edb16712a599b1831e0cd263 svn.99
d9236d69454cfafe89415698c11e0fc167dc49cf svn.1777
d94c1c5eac0a2775caacf5136617e4f6360ef886 svn.150
d9627b379d0d36e3ca302943cea334cfe052fc8c svn.1554
d96b5c00a521c6c436d8a6cd506482a24e55e823 svn.222
d97109d30a699b5ad60025583df7420df09c7c96 svn.457
d9a2f6d083d569f07828720deb87372fceeca32c svn.1741
d9a557f509a5ad811568db27ae676efcba75599e svn.248
d9bbea43918ee4509e12583fd4603f02576707c2 svn.59
d9ce9b6db9d314a7a518f90d28db3c79686fbeff svn.1764
d9e3844aafe7c3bbf0b18539bac4b24de5acd0b7 svn.1252
da1e5cb40d297b11a5728e70b997a20a7f5a4d7d svn.815
da2fbf9d6dbe9531efc6eec2f99fef06e48b4fb4 svn.1546
da5a324608caba5c8d1dd13fca193ea7cb3fbc57 svn.690
da5b5aade6b6c9aaac226c17cf61329043cce3bb svn.1298
da9027e61c2574ca042f003b2db7a9390340c772 svn.741
da9a9555e9dd1a7132ba696c7139b5af79e81e8d svn.651
daa8e9f1533930e9fe004f28c6a3d8bbaa3873c1 svn.1289
dace5ca959f3d429a5d8422f8ade8ff2020885ee svn.751
dad0938a6a73c2cb20fe741ed5885a631bacbb1a svn.875
db0c05c310ce7bde74d48f39ed1e4867564e10c6 svn.1191
db128cb36550851c7d25f7982a982b335118667c svn.1513
db2716d7aacaf947331b437b6f9259a6c3718fed svn.388
db2d8340dc8c3f4db047424dbce84829600b4f4c svn.1353
db428cad7fb72268daeed2a89e28ef1f4d1642aa svn.1373
db56f738ed6ac4634ab1bce96b763d703986c9e2 svn.1144
db725052b6e3cd8b708a225b35f7d6df48a2730e svn.1744
dbb9baaf6763db6c1ec069bda87eb822e4bb2850 svn.1523
dc3413343f3a6e0f3adb3f5c851611256825278d svn.76
dc3cbb2f3c8b1d30c1bec6551f29661850c79dc0 svn.192
dc5c031766069237f69c3fb997e20a0cc1c9a1d4 svn.1227
dcade05709ccd8d3556c082b9bc17a70d690de71 svn.277
dcb0b183591b93e51f3c7c084e681a575dc9b43e svn.444
dcd3605a556003cdd44f15d61fcbd002437b2882 svn.955
dd14ef8ddc2d8b522b76ea7f186a38ab3b364fca svn.779
dd198266f3cb029f0d5bf63586693e79e0614a4d svn.595
dd258ffab1d84f097561d6e2332cef413a531211 svn.929
dd441b4d3485d9f76b04557b2081407e7b390cbf svn.675
dd6713a2070d4786faa56ee1b5de99de057b9a25 svn.1567
dd852bef6ce6f0af3815cb2844ed2425fc387201 svn.1644
dd8c06cbfd201a05501a77a29ba089b6e7405b6b svn.121
dd9b5bdb90ae7f0fa40a52256c664c4286a9f00f svn.1692
dde9bbaaa7f77a7d3a3ffb0a9ac11ed18665d63f svn.1122
de12d958ec8d61256474cbae0699b46bc245f1c8 svn.1740
de5a16dd44a65e1864acdd8bf0697f28adb682cd svn.187
de5df261f5d9f6a66cc5e8dcc6217d28ae3e02f8 svn.1171
de790db535467baf165508a67ea51f567ef68b4b svn.1155
de989f9e00795ce23acb6447fe09316d5dc991f2 svn.1713
deb4493b2fc41bd98753f9f66a12b4bef8c683a2 svn.1588
deb5472bace0f20d2abb196ee608947f4b24e1a7 svn.449
dec1498ac58f2c3b2d8b4dea3a41330c6942f346 svn.1531
dee00b9b86e0ff5538b2e973a60753d2798f3995 svn.1020
df19be55ad5532cb4a831e24a8c7d29282a90c29 svn.1250
df19fde1fafb23c8e6d8eeea7b4a71c3663d939f svn.1602
df31e314e96595054761ac488c18cab48607337c svn.276
df630d602734c833d58c17456dd0054e4c81dc7e svn.374
df9eee094325daa18d3d8443f71c7bb76e7776e2 svn.1717
dfa1661607fa5daa6f98700397f518ace136fbab svn.776
e0186afc0c8e2fffa8abf02e4414ce5fc887b1a8 svn.1087
e060d802c624e7f6b9dcffbd2f4b24c02797939f svn.907
e08a54b5f3aecea5b384fb7126981c9c9dccf959 svn.594
e1401f51fca72b608abb63a3cb352c1295b65bf1 svn.12
e14986fc7821ce361b2a6c1ba13ac90f5dcd1429 svn.1138
e14a71b2045a992785bb3f3326770efbd02a602e svn.1299
e175cf81425877f3bc1e6b419bfd90d2bcf43086 svn.1412
e20489266f4ab2b653edd84cf071748f571e8cf7 svn.851
e20dca56fba1a0808a13fc700a93527d0b82090c svn.1409
e22471b904aa14082fa012133b648926bf438c43 svn.992
e24d68fd580a8526b5976caf4b805cb73bf69f16 svn.765
e272895dc859c84fa35245a1c186bf4a252defbd svn.1581
e27c6d750b6b94c4ca510903d46d984028b3b631 svn.1797
e286ee5b821fc57e18214c2ff70f75cce9cd11d4 svn.354
e2a5af31a55fac49c28b369e46c03ac0032729dc svn.1571
e2c4af6d557fd7530e53c6b8ce95986183a5aee8 svn.22
e2e61b10359f50643a8478d3b497975e369010c8 svn.430
e2fcb3571d13044d75501ffc65691fd290c988b4 svn.1507
e31e7ae5250c8356021f9972781c3b7911f41fe2 svn.395
e381af52bfacd5303d5818f8825db36145412dfe svn.1343
e38c05dfa50e1f3981da387ee1d151dff5a9dc16 svn.941
e38cbe2eab336984ca2a298b44c97f4031845096 svn.716
e3a860dc2b21287ba888135f8892e4b469d17383 svn.1175
e3aa0614a4d655db7ecabf95adeb4b09f3e07fe2 svn.224
e3c36f35db79a36c92df45b4b2a7334a2c77fe01 svn.762
e3ded6a4190ab349961ad3b103f14290bedd35a9 svn.110
e3f501f80bc2dce414273f63f73f5f6c33aba297 svn.1075
e3fcc61e983e4bb2c7a5141f5278744e3f2c2c1e svn.1266
e3fd071777c105975f82c15a7f45b53111871fb2 svn.490
e42999672ae5fab1bdfdccc0b758405407282bc6 svn.852
e45f96c679ac12778209b30973538c4313478ce4 svn.893
e4c6f2afb5e60e5fc975f8ad197b9e05977ad8d5 svn.1479
e4cb89f2f2b7af049bb785275e75aec6345ee40e svn.184
e4cfc303bb1f0eec319d337ae4f6d3aaa09e4d3e svn.1392
e4efa5208288ef858f2ccbfe4211a0a6a2944785 svn.1111
e53152d529b0834ffb2ba75947ebd8a03ec10e6a svn.660
e562e09b6f3cebd6cdf17f64fdf6328455b37962 svn.1807
e5959ab6348453899a6e8bb3bf49de951d03d4d0 svn.454
e596a16a40a2a897633797103f6d2b30025a8663 svn.1126
e5bf9353cae7206a2f4fcaaf06db42c853a0e45c svn.297
e649c5da9087385ded87e7908622a7a3aa432cf0 svn.775
e65114d76ec41069db902fb50adc1a6caaf59c18 svn.356
e68e2fb451471695ee1e1ac0895a44847be41b8a svn.364
e6ca392f44d89c82ed47827cc351e62b93ecf471 svn.95
e70bb034f46bb63de837c054b9c0082a93eba286 svn.1652
e71694eebd5988be6220b165de355ad6f5639ed8 svn.1086
e7308687c3771a5ce5aad9de3c7960678f2d2c64 svn.952
e746beb215617b69a96729b6fe62d3c16ab2bc1a svn.68
e764b36940ad11559c8fb355200a5be3dc3e5227 svn.422
e79547d8e6826ba37bb81bb572f0f116304a0532 svn.1770
e809a113e46e5f9bcb9e426b722ef93112da30e3 svn.1493
e80ed81b5533cc74f9b9a3f78cb194a09a2eb9f0 svn.687
e8257b5e96d8fa36db504f469fedac7aad1c8936 svn.986
e829e697b9056d623104f8c58c7a17674b15981f svn.1577
e8460c5500b005428e85959558665ec48edca809 svn.1538
e854fcfd3bb2f14339c957d2c8348936ae4db763 svn.518
e865de13f4a9b9ec7d06ba8089c4d5a3f5c70ead svn.61
e8676721e034172dff52af911b38c952fd3b0f33 svn.1414
e877277c9bd2d4708ee8376b6884d49742f1178c svn.847
e880a7d4823404c5e3c23b8e85e5abaae7f989ca svn.1544
e88577b2e9f7b5cc4b6a71467ddecf926d324d39 svn.1262
e8be9d29f2ebd43865b52006a536720d34475659 svn.926
e8c552566b7e611e0b1cf5507fab4c0a71641441 svn.689
e90d98ceddd5099b8e59776cea78818a4e963cef svn.334
e943ea00d2b15c1198088741c69aac8a5d1ea97b svn.423
e951fea3033250e64089a704e19bd9db162f6ae7 svn.1295
e97ce937fcc7314713f79db741948cdc79939a6d svn.1809
e9882484b7cdc4fa2408f82a6026df3459fa4c95 svn.1057
e9c3d7d08b1f72942ee18335ece0c83170d34040 svn.1163
e9c64f18e08b97a9c2a54180789f65013d61873d svn.419
e9c7c5702922b8a61da9d0bf435351e7f5e6861b svn.1690
e9fb3e756f074d3e17131d1315eca56359a3b8ef svn.1073
ea01607fed384e779d95ba04c70d71f2afc3efe1 svn.1269
ea203317990ef509bca17d28c03b924b4d190398 svn.1550
ea21e74c0a987a9b21bb42780b8e5fe427f2a544 svn.749
ea30a44e004f71caf90f435b9a94ed9b447170e3 svn.904
ea3443fc287b6369bcd03204df4881ca25154ada svn.1630
ea3cea63f40d84cc71c1134c35ec0855b53af719 svn.1001
ea9848a0989f43d9443227126e04b57980d5114d svn.1667
eaf6f737155f7883178b450261f306e96f07ada3 svn.695
eb4a739d738bedcd955a47f678793475812429ee svn.1263
eb820e77d4b93ed6c8795aff991f12609bf022ae svn.251
ebc6d7fcbe348258a599674b79925ebcbb3c8e11 svn.1327
ebe4ce0fe92be979d2480f48faedce28a8181fc5 svn.1344
ebe9411ef03491934c417c019a8d251d74ce2de7 svn.899
ec43da2bc1208370cf8306a529bd705bf4490496 svn.1297
ec4cf5d62741efc76e9d0202f302e4e9dd99fc28 svn.1288
ec6b12d6999dc1ca296dcac72bca469d9c26fa0b svn.466
ec84905bae92fe79db17866c3b72deff84efa51f svn.797
ec99f6513ccc04d2649415a033e0e832a2c69fe0 svn.1067
ecbad3699297b914ebc10cebcf803150491faec4 svn.254
ecc98904c752084403545715b184cf55b8781b39 svn.718
ed216bcd32d70aee3bcff4babcdb2b88b01c8902 svn.1679
ed436c5ee36728b29111f713dd0f242b6ad77c49 svn.368
ed945662fb56dac71f20159d917c458c5a698995 svn.359
ed96e2ae3cba35e2132ecaabf74720cf1b2b4961 svn.777
edef3025dc5c36b041481564f09873f383a55acf svn.456
edf4eb2310b560a3832bbecc68544318c8a11f1a svn.891
edf78a84101a105b2387ecf031bb5cbbc534011c svn.1023
ee7ab4e92c74972fa5ece220604ad7d2f5908fcc svn.143
eeb699ff980833c34f5c8b2b4219d194d73178bc svn.1542
eec38ccb6c6cf3b3ea24e86790e52afee26a21ad svn.1124
eed10c69c338f4379b4a2842a0aca95d478b335d svn.497
eed9343db961250471a573539bdc4a82fe4e79d8 svn.669
eee672ed42fb075df1900810565659776e536bb5 svn.1114
ef0b08e329dd1467460a7a9c7bf3e53d4010ae0c svn.739
ef3a39e8fd9b8985c6b0c66375adc2ed000ef4ab svn.807
ef3bfe42a50abc9cedf6528545c73d627f390157 svn.103
ef56cb3058242b6841511103d2e067f09933814c svn.107
ef70305750bd1da1b24174a8ee9507770e9fe3b5 svn.160
ef9eacafbae7825e35d64c77f367bbee0947ae03 svn.1485
efde317797334ba555386283b8e00fca5a77fec8 svn.1612
efe0af4d7cb04614b52bf99845c489915c73f047 svn.1491
f014b0f1317696d0743507d02beb5920b075de59 svn.618
f037671d57fd06d6cb9be940aafaf0e4e7ef37a8 svn.1219
f06de9448050dfaeb6eb120dfc5859cb4411bfa8 svn.481
f06eea2eeee19f26d81fcd1580e44da160e7f874 svn.1084
f0837e1ecbe583af4d8991451dda24383d2833e7 svn.1529
f089bf123355e4f58cccae286daa8341b0faede8 svn.1285
f0bfbf4f0ff8234095f4e9260554d47b0d6c7e6d svn.997
f0c6ace804246be6499292171b3c2a25a2d98469 svn.1455
f0cbaf7bafdda306990b6d7380d2588078a449f2 svn.1575
f0d1af1d9f74a64cc2f3ba41c4791f8ceec4154f svn.568
f0d54897e223f01b8b4f0af89c4c1260b7e5dd1e svn.1352
f1114268a7373a1decbea482e7d1d042756761ae svn.1534
f14a3e397ca98de852fa7cce40243435da79ff78 svn.816
f157b1a713d1f6fd5e2fd6781ed133f248f5ffab svn.1372
f162e5645d5c5e4fe5022a50b8c4dedd960b6401 svn.657
f19bf1ae6de86f7ae40021ab70f97976f5e8ca65 svn.37
f1b05bcc11f5d4e75e88d6314a03f44993124b94 svn.892
f1eb186c43debebfd70fd7d16ae2a582698077fa svn.1034
f1ff6856474c9ff16b490b8383b00045b1aca3bf svn.1423
f249bcbc653b330265ec31240211c662d77b7a29 svn.1434
f259010e70d330e0a78843d5af6e080c42d598aa svn.1543
f29c306f22336754779b19213871262f0f8ba7cd svn.28
f2bc5e164d73596939d721b2a579ec55a58d1274 svn.1788
f2d3a4034d896bf6b4ecb9960aa2f5b9b671f34e svn.920
f2e36095b95676637a36541b79f06f6213984bb0 svn.62
f2ffa05cb5671eb0bad62fcd95d3ba9ecbee3acb svn.1088
f310923770b1b1341ca9163498b0f01ca04ca84c svn.728
f37e8c96a1cfdc199dafc786e656188c8f618fd0 svn.1606
f37f6dcc2fada56360587c2ad701ebf4778e46c9 svn.352
f38b4427c24b586efc68101d772f6d08fa27f810 svn.1470
f3978c2cfb085d876d2d56ebb70d8be183043f30 svn.1089
f3a1522ad4de815aa5b652f140a62a7daa67911b svn.80
f3b88e440ac38fea149a4203b51d4e4656affb6f svn.100
f3da9130ae74c98e353cd540f6904d4979a37491 svn.1704
f40234b616dde3de2d3a9c1c6cd2ec733b9afb7d svn.197
f4793542a3d86170546bfd2ce6b93214dc1aa753 svn.209
f487178c028c014939dd70e7b5be731045293465 svn.1559
f48ce9105d52596c8d44c6398150fbd6aa5ab0b1 svn.1574
f4b6a2cfa7a672dcfc108ea4287f43bd48927dee svn.1361
f4d9bb935e4e95550c4044ca22d31558411f0113 svn.962
f4fa817475a03cfbbcb7f9c359f2142ed09b4556 svn.1211
f50108a56ae7020f7c1de5364db721956416f5c8 svn.384
f52b3c8eee5a72a545b2aee5c541e7745fc9129f svn.42
f59f115516f715da789795a1b6f39c9815c6077b svn.1198
f6366f0ed82d609d1eedfa18d330b4056fe57515 svn.1188
f639a64b8d4cd31d7d2f98ee8f71613b613bd1ae svn.145
f657ebf67d707a3b313b69cabe68d54fcdc2cab7 svn.478
f6e445f88d811e70314f902456dcf1753b4161cc svn.1527
f6f3ef09895ad1890e0125dfdc544f8e5f4ad943 svn.927
f771f2707bd7e55861e4a451dfa7ed4193053486 svn.794
f773270afc6330b8d95b1da050a0f4d59c40e135 svn.732
f7862e1b9fade96044ed6c6d07fb80fe4b472e74 svn.1750
f7d162799d92a2d0fac3185a96dad3aae2c7c0f6 svn.1248
f7f92abef4aebe413aa4d17fa2018a6da52bd649 svn.1791
f811e99c84648f894fa79d6e54bc96339e61af9a svn.1029
f84de6dbd29c9686d91e3e9a818033962fedfff5 svn.555
f8792cdf3ba035cee963c95858cae239df55af31 svn.116
f89742203405b18315a5fb2b688b63ab0068f6cb svn.1468
f8fce3c3ef6220fc74b60123177de796918b4bff svn.912
f91c56b9314ca1653f870f8d0494a97dd317bc04 svn.1187
f936f724467761ab6d8c402e2cc52352b267b830 svn.1569
f938afbd0ef3d4d3ae3f6d82f1039b9d84f2ddf0 svn.1370
f9caeee4910376f6748008a70712f08b76a5b932 svn.849
f9e599e709a08f177a0e9c4a73ed3ea2dc883990 svn.1772
fa0bbf57fc4c71c4890822f1d927eb8c2a39df20 svn.1154
fa19b4c0a2c0f2e9c94261256bc28fb7cc421e7f svn.162
fa2f76a678e5aec01e25d9d2d81702225d28287e svn.1738
fa5f7353102a01fc485e7d5d83aaae50f60c62b7 svn.373
fa8a351202d659f65fb62e5720f31e73e046a67a svn.1292
fabe2f3d8e695775b59a0b43edcec84988230cb8 svn.1159
fac6f6a5ceb212eb3d9b54a28459d6e9e1425aca svn.685
fad4f97a8a85bb4274f876f0d05ea0506562a130 svn.873
fad60561bfd2e187de42f3557dedfcf91fe5a35f svn.844
faeb3b49abaff460913359e420c0ffbd3b18f2d0 svn.778
faff3e0a69c548eef84546f92fce514b1ffeb21c svn.3
fb4fae98bac891bf929eb44fc1a4e37fb55d678d svn.1718
fb56a1daf0b6f7583c2eba1aa3ec5c1155584101 svn.935
fb6ccc3cccc25c03bef4c242428687ca0e233cb9 svn.820
fb7dfa722237f83e639e50e6975b71095c168862 svn.640
fb8e171d63c993cad20c02658ceba5a17d04abe8 svn.1413
fb9021a8268a9162a239877d4d4980265b40107e svn.180
fba75965849daca6545bf08ec091ce0f0727446b svn.1643
fbb08d177e3541d70e36347191970557cc07b95e svn.1170
fc0d258b65596f92647a4c906141ffd514ca6e25 svn.626
fc2c570351bd40022d7e58d6d03c3f9a6afca8ef svn.241
fc3bc9d6eb6bf3f7f12cab13dbb1ab20a0f479df svn.54
fc41bafd040579e1c799ee4cce9e2128fed3ee15 svn.1
fc45caaf89a5c4f916f8bf014f15a5cd48ae3a75 svn.963
fc549023f806baf5442569d6599de2f7d1e08b9c svn.995
fc60e042b59b43410254fef7c87c83dafa26f012 svn.1437
fc645ca33d5515b3e453aafa4f84f1c0287b1459 svn.846
fd07495d021768bc0b40ce4e7033bb8f4c13d6c0 svn.1383
fd0d1b1fa0e1d577a6fe62c1103f2446a989eb89 svn.1049
fd0f837bb381b6819bd11233838282c3b941960a svn.1610
fd12c95c101bb1ef71b4b64fffe25e4be8e087e3 svn.949
fd150370126ae7eeeee46ab7a672a6c9dc08ed7f svn.1417
fd221c9cac3f6ba41f1be8aeaea2a67de0c2a68f svn.1480
fd614c5118ed8cf0866a13cec5a008eeeb7ecad9 svn.1798
fd6d75b921fd5581e7a13596c313afc242ecb7cc svn.137
fd910d5f2741be52641a7162a2ccbc6bfde91cf2 svn.964
fda445ffad25d980c9de21be18ca2f8d6a8c2185 svn.147
fdb1f6fe5de782bf8ecafd7edafda49587b3747d svn.1147
fdb3c581672de44f67fb43351db58b6ab543b1d1 svn.483
fdf9b52fe83d221f74dfa77b86df18f52294a320 svn.1217
fe02c21efeeeb64afa613396d73baf95c16cc636 svn.225
fe491964b2f1cefd84dc01e728f17d4dcbd24526 svn.1751
fe54d44addf4db308f24d45765bf2333aa5f033a svn.458
fef75ecd30caa3b331dd89e5d47afda1c662d9a6 svn.642
fef950f2d9d99551e46a72006947ad6c14b7718d svn.439
ff2bd18d3a67d9ea19832775d904f9e8b9b3bce7 svn.1721
ff9f8fc0a2748cbb63d2b0d7407dbd71b1935106 svn.1668
ffe0cbfa8a2e1981cf071b180872333043fde7db svn.993
fff7118f00e25731ccf37cba3082b8fcb73cf90e svn.371
008b15bd5122e910e321316fae6122da9a46e10f svn.1636
0000000000000000000000000000000000000000 svn.1636
009bca8c4c596f01526bc8159c90786e7c011d67 svn.347
0000000000000000000000000000000000000000 svn.347
00d699ef358745ba38f4381c35f2e7d5a6306161 svn.394
0000000000000000000000000000000000000000 svn.394
00e034fabfd073790aaa4ef82bbb666582ae9f57 svn.1265
0000000000000000000000000000000000000000 svn.1265
01165f5c21dd23b8fadfb36a736c1af7f2f51bea svn.1687
0000000000000000000000000000000000000000 svn.1687
011e9277ab04e996ac2d710f64cd361235f4103b svn.658
0000000000000000000000000000000000000000 svn.658
0157ff037651bf0146f57adaf95a173222a3937c svn.6
0000000000000000000000000000000000000000 svn.6
0161f0770fe9d9a6b45cfff81c6c948bf5ac0d23 svn.112
0000000000000000000000000000000000000000 svn.112
0173810f90aa32e9f41f822a74f86d7f9aff9406 svn.417
0000000000000000000000000000000000000000 svn.417
019c2ed6f48651f2dbcf680d35869da9aad5d990 svn.1007
0000000000000000000000000000000000000000 svn.1007
01a6acd7b8084564c58060b14f54609e88f173bf svn.1483
0000000000000000000000000000000000000000 svn.1483
01e8bd44c26797472f364c787dc5cce782d086e5 svn.1204
0000000000000000000000000000000000000000 svn.1204
022d3c06297845aec35f5649a3237710d8b9f55f svn.1802
0000000000000000000000000000000000000000 svn.1802
023b31f57812c07152cd34d79f1f9909cae1e556 svn.83
0000000000000000000000000000000000000000 svn.83
028e083af0708acaa2050533839115d8a69b9a0c svn.1696
0000000000000000000000000000000000000000 svn.1696
02f2b6cd7ea1d2d2d357475f2204f2410cf892ab svn.1205
0000000000000000000000000000000000000000 svn.1205
03164a14f6b23fc6b8bc7abc6c90ab9680740084 svn.646
0000000000000000000000000000000000000000 svn.646
03c59e910c318794f99952c90dd146dc7e01e197 svn.258
0000000000000000000000000000000000000000 svn.258
040638d12856f79baa0d005d14e11cd36ba8a331 svn.330
0000000000000000000000000000000000000000 svn.330
0484b002a76a99a55a13454b6ce17ef45400316b svn.1356
0000000000000000000000000000000000000000 svn.1356
048721d682f8148428a77d82c59d904f3d9c8504 svn.884
0000000000000000000000000000000000000000 svn.884
04a629b15da3ff3678e362065cf884834bd02a22 svn.1197
0000000000000000000000000000000000000000 svn.1197
04bff5f55cb9e853b6183000e065b0080bcea8dd svn.1002
0000000000000000000000000000000000000000 svn.1002
04c2b901d8a05070295cbe351fa0c43291ef624c svn.1173
0000000000000000000000000000000000000000 svn.1173
04c660cac68b46d16341e9c455dc372b1334efda svn.1224
0000000000000000000000000000000000000000 svn.1224
04db5f9b3122cc2bf749cc2e53383eb86c853a51 svn.769
0000000000000000000000000000000000000000 svn.769
04dff7a15ba545a16a93f50d7b125a6fca0ed10f svn.1707
0000000000000000000000000000000000000000 svn.1707
04e29cfda98d62bab16d2053c3b7a774b04298f0 svn.1445
0000000000000000000000000000000000000000 svn.1445
059a6f91c2e580b60123f7ac45983801fbd512bc svn.1257
0000000000000000000000000000000000000000 svn.1257
05a1599e4916c970d398b641bbdb3953f0907ea8 svn.8
0000000000000000000000000000000000000000 svn.8
05b44aec7b74826628f5bf03adec7d84511efc65 svn.1411
0000000000000000000000000000000000000000 svn.1411
05f3e58bc4b9a0b136659a69df4f1d4d05d0702d svn.1613
0000000000000000000000000000000000000000 svn.1613
060a01faf6ae89a6efb3f6d16fdfee0360e36ecd svn.1757
0000000000000000000000000000000000000000 svn.1757
060cccf0ba19182d334bbdeb576d8f58bf0d71c7 svn.200
0000000000000000000000000000000000000000 svn.200
0637b5808587b7c6e5425330d61045a0ebfc3c7a svn.1035
0000000000000000000000000000000000000000 svn.1035
0669ff70d50dc275904335d6e5560d8fba1bd524 svn.1014
0000000000000000000000000000000000000000 svn.1014
0682073503fda2662e7a5d1fdf205787cec2ef29 svn.653
0000000000000000000000000000000000000000 svn.653
06d5806a711f394f6a5889da1214051550ff66c6 svn.802
0000000000000000000000000000000000000000 svn.802
06e806dbd816945b98448239023700b9ce1feb4f svn.410
0000000000000000000000000000000000000000 svn.410
06e83f7e374489e7e930bbb3233a7d48da2a4325 svn.930
0000000000000000000000000000000000000000 svn.930
0763601a5bcc18dffc999f8889aaa24a3954b855 svn.234
0000000000000000000000000000000000000000 svn.234
07780c9b1b42083cbf29fa4aad7195c65a7155cb svn.1044
0000000000000000000000000000000000000000 svn.1044
0791309fea40c03510ad3513de4fddb084697d80 svn.1058
0000000000000000000000000000000000000000 svn.1058
07981139bfd9fdf363c872de11db226c8431841a svn.1318
0000000000000000000000000000000000000000 svn.1318
079f4596e62fc77247141ff779774a785061abfc svn.1633
0000000000000000000000000000000000000000 svn.1633
07db277ec95af7cb9849096730666b335bcc9c5e svn.1094
0000000000000000000000000000000000000000 svn.1094
07dddd86d8fe37233ea506155e3dea8e4280a38d svn.1579
0000000000000000000000000000000000000000 svn.1579
07f45d81abfb32c883e9f29ff2d6ca442c62faac svn.968
0000000000000000000000000000000000000000 svn.968
083153346e4989561bf77e67bcf8b07d6d8ee0d7 svn.475
0000000000000000000000000000000000000000 svn.475
085616db39c365408b3b2713cec63cdc75c1b0d3 svn.189
0000000000000000000000000000000000000000 svn.189
08930d496c9b0e758bf53d5b8024ded0179cf44f svn.370
0000000000000000000000000000000000000000 svn.370
08954e47091923482a4ef97dde985554cc9a23df svn.288
0000000000000000000000000000000000000000 svn.288
08b7d403a90b550912cf513433a5d093d5745250 svn.332
0000000000000000000000000000000000000000 svn.332
08d3aad985e07d28e217cce7e8849b24d1c18ae3 svn.1435
0000000000000000000000000000000000000000 svn.1435
08d7629cc529e025b1f85fb5d45326975f48b84b svn.45
0000000000000000000000000000000000000000 svn.45
08dca756db3206be21541d869dfccd5dc43247f9 svn.1379
0000000000000000000000000000000000000000 svn.1379
08febc793acd54cf4b76bbeddcb79637f1553470 svn.1645
0000000000000000000000000000000000000000 svn.1645
0927e0c91ca66d1d41500c9fd08cde5014ceacf8 svn.1139
0000000000000000000000000000000000000000 svn.1139
0954054bc59272f7974c63cd77933ea344c64619 svn.744
0000000000000000000000000000000000000000 svn.744
0963334d761e9d8db2acf74639cb938c250c8302 svn.1495
0000000000000000000000000000000000000000 svn.1495
099aa96010cdda52c5f2fc83d72e7e03275acd86 svn.1700
0000000000000000000000000000000000000000 svn.1700
099b4e43b52a38fa49164d22726650111cb89f30 svn.1329
0000000000000000000000000000000000000000 svn.1329
09b6347351e9fa337cddc10d39c929b497cc7634 svn.1778
0000000000000000000000000000000000000000 svn.1778
09e730a2c4fb77abfff2ae0dc0e9ab753683815f svn.854
0000000000000000000000000000000000000000 svn.854
09f95c184d9e12dfdfdce597b3812f81976c68fd svn.898
0000000000000000000000000000000000000000 svn.898
09fd3ab58e68418a1cceb9db1938655723a8732d svn.1222
0000000000000000000000000000000000000000 svn.1222
0a3cd2ca46aa4a913dc6cca250deba0aba2f7661 svn.536
0000000000000000000000000000000000000000 svn.536
0a661cfd8bcf95d37bcba79cd5eb0b8d194a4228 svn.24
0000000000000000000000000000000000000000 svn.24
0a70307856e719657be483e103df1fb3803e6344 svn.182
0000000000000000000000000000000000000000 svn.182
0a722d174c5e259d343b64af2dff46682815c84b svn.298
0000000000000000000000000000000000000000 svn.298
0a929e7c80049aa2dba28242c3cfa97b2e3a7bb1 svn.402
0000000000000000000000000000000000000000 svn.402
0a9a9685cb883fddbba2ad166cfec47924102134 svn.499
0000000000000000000000000000000000000000 svn.499
0a9e87864df2ff4434732ae7eba7734630cba360 svn.1192
0000000000000000000000000000000000000000 svn.1192
0ae3ae67d23e4014f104007447a53bfe770fbbd8 svn.951
0000000000000000000000000000000000000000 svn.951
0b0aeb725d723795421475cd3bd285bb0c94c713 svn.1432
0000000000000000000000000000000000000000 svn.1432
0b0be6afa3e6db0011dbc2d132c0f2ede7c1c905 svn.983
0000000000000000000000000000000000000000 svn.983
0b3713cd3b3dafc68054cbcfdaa80442c11ff172 svn.88
0000000000000000000000000000000000000000 svn.88
0b78bcc9c1b17e85cd5a57242d3657c2c1bb7a0c svn.559
0000000000000000000000000000000000000000 svn.559
0ba47ee1dc4abf6efc06cb04b5994c728572fefe svn.1178
0000000000000000000000000000000000000000 svn.1178
0bb40f1e128c4eb6cfc42c4fc043f7cb54550de5 svn.1130
0000000000000000000000000000000000000000 svn.1130
0bc0bdac8bc20d2fb314ae00ccad146883a3311f svn.725
0000000000000000000000000000000000000000 svn.725
0beb7e783548eb33c55ffe1ceb0c64fb895b511a svn.341
0000000000000000000000000000000000000000 svn.341
0bf4ca209b1f9fc18947bd604d05ac624094d8a6 svn.1304
0000000000000000000000000000000000000000 svn.1304
0c004242b3f8c110502e4ea6ee1bdb24d6bc75cf svn.271
0000000000000000000000000000000000000000 svn.271
0c4173bd9d0801ed84dd884c76874bf96c66cc12 svn.720
0000000000000000000000000000000000000000 svn.720
0c561365081c119bd4d7240258909a38e2f4d03f svn.427
0000000000000000000000000000000000000000 svn.427
0c7909677b752a79eadcb4325aab9b34f0cb101d svn.1190
0000000000000000000000000000000000000000 svn.1190
0c987873f61cce2b19b2f227520252c624e7f180 svn.123
0000000000000000000000000000000000000000 svn.123
0c9fa0cfd51283b0531891e486402110005dc0cc svn.1022
0000000000000000000000000000000000000000 svn.1022
0cb628110a0948ef3b8d5f352695321800ec2ff2 svn.1060
0000000000000000000000000000000000000000 svn.1060
0ce364970738c599e6f1aa27aebf59ddbde79faa svn.253
0000000000000000000000000000000000000000 svn.253
0cf48554d6a7d95cae64d5a28fe4ffdcdf6e5efb svn.1766
0000000000000000000000000000000000000000 svn.1766
0d4a60cf51319720ecd77e7a58dbf59d1a018f45 svn.1017
0000000000000000000000000000000000000000 svn.1017
0d53d3fa1c6aedc57a4e9b9683f0245f8ee1a65e svn.1492
0000000000000000000000000000000000000000 svn.1492
0d5c2d29d28dbd71905afe6889d79c8339519beb svn.1026
0000000000000000000000000000000000000000 svn.1026
0da3c07627aae61a53ca2a8fe5a728acd1831553 svn.1051
0000000000000000000000000000000000000000 svn.1051
0da429b7799c4e9a251921e59006199ae6e58c29 svn.144
0000000000000000000000000000000000000000 svn.144
0e1919bee94c9b5095f334c9cd7caea4aa0dc4e6 svn.710
0000000000000000000000000000000000000000 svn.710
0e20a44102dafc5fcc23b4d2429e37a38b218282 svn.668
0000000000000000000000000000000000000000 svn.668
0e5d5039e575561eb8dc9c8afd89aca00d586489 svn.1730
0000000000000000000000000000000000000000 svn.1730
0e5dd9c049a1f89c0d8821dc46f6d8aa29ed1341 svn.412
0000000000000000000000000000000000000000 svn.412
0e5f9e70d3a04d88f9b454d8777177aafc48a3a1 svn.64
0000000000000000000000000000000000000000 svn.64
0e81d2275949f038fd9874b0394e67976705021a svn.363
0000000000000000000000000000000000000000 svn.363
0e938dd99255dbb30683aa7eb73704a60aabcdbd svn.158
0000000000000000000000000000000000000000 svn.158
0e9c51767a9ebb496f2ac88bb1de995953b49b59 svn.122
0000000000000000000000000000000000000000 svn.122
0ec1bb8306a20d164ad38e02e7b7df60382ac77d svn.118
0000000000000000000000000000000000000000 svn.118
0ecf19fa27577dd5f386ad6153da79966eb19f04 svn.1027
0000000000000000000000000000000000000000 svn.1027
0ed17274b6410a68dd2bf6d82499d5b79a7fbd60 svn.974
0000000000000000000000000000000000000000 svn.974
0ee8ebbbafaf6a2966dfaaf8e58c559832dd1797 svn.539
0000000000000000000000000000000000000000 svn.539
0ee914b3cb3b97c478c6e10a1fceda690b04af45 svn.522
0000000000000000000000000000000000000000 svn.522
0ef34494c8ed215eaeeb41775d671b3da55a23fc svn.445
0000000000000000000000000000000000000000 svn.445
0f0c7cb6975400e566e78aa88ea15dec8e937778 svn.447
0000000000000000000000000000000000000000 svn.447
0f1154a13b23e757639ace21e41596b061f50133 svn.661
0000000000000000000000000000000000000000 svn.661
0f15cd632305fe76dfc6d1639ba093c6a2cf652e svn.1605
0000000000000000000000000000000000000000 svn.1605
0f214513456482b170e01e3226ac34b6e9cc7532 svn.1165
0000000000000000000000000000000000000000 svn.1165
0f57be523b3ec9f88963f1964ab63c7e5f4def4b svn.1625
0000000000000000000000000000000000000000 svn.1625
0f8d2d911aa1c061320825dafda295b56cca2933 svn.1400
0000000000000000000000000000000000000000 svn.1400
0fd851c1be1b98520ac273b5ccfc6510a7593006 svn.761
0000000000000000000000000000000000000000 svn.761
0fdd63f1c8fd2a6063c0f92bc9024b7ac9ade49a svn.1157
0000000000000000000000000000000000000000 svn.1157
0ff85e6c512a4d14e9dd71ea373efa0c76b24da0 svn.324
0000000000000000000000000000000000000000 svn.324
105de8e9c3b4083203db5dd507b2063b6ef9f1bd svn.738
0000000000000000000000000000000000000000 svn.738
1098a40cd1bf368573e2178218a4bada315b99a3 svn.979
0000000000000000000000000000000000000000 svn.979
111afe4ac34dd880df57aa7c32651d1150bbf625 svn.1765
0000000000000000000000000000000000000000 svn.1765
11614afba0f7ba29930970da8a55708bdbc14254 svn.864
0000000000000000000000000000000000000000 svn.864
1162e6328a888cf4b1d83fe5c10aaec511a680c8 svn.129
0000000000000000000000000000000000000000 svn.129
118e1fd5a88e88e9b8efdfe273df0b8cb1a10838 svn.733
0000000000000000000000000000000000000000 svn.733
11a938db9e02a14bccf251c1de2f564844afa5a0 svn.579
0000000000000000000000000000000000000000 svn.579
120f50838cd6598bd4cdcef4e2bf87a22a502207 svn.1320
0000000000000000000000000000000000000000 svn.1320
122a58cfd7b4842fbb9317ab01ba2c39f5b0c444 svn.285
0000000000000000000000000000000000000000 svn.285
127e39229e9a70084beb16bfde1bf1bde81e0429 svn.560
0000000000000000000000000000000000000000 svn.560
12b70ef667d79c49bce71cec7bfe6289bd073e24 svn.722
0000000000000000000000000000000000000000 svn.722
12db47fb546b07451b51c62a855e15977ccfbbff svn.1783
0000000000000000000000000000000000000000 svn.1783
13335553c66d4f48e9ac2ec49cd064d1c0e0f1c7 svn.827
0000000000000000000000000000000000000000 svn.827
133f6efb6e1b4ab30e989c793a72123f76d8fc34 svn.830
0000000000000000000000000000000000000000 svn.830
1343353d1ff63c13432208a5b7c933e8c947e1c0 svn.1255
0000000000000000000000000000000000000000 svn.1255
1356fca5f8ff55d7c3a8aff88e6519d5c5637f0f svn.403
0000000000000000000000000000000000000000 svn.403
13576ff5249f3cb5a0c41f6186850801c11295f9 svn.114
0000000000000000000000000000000000000000 svn.114
136169c5ee3d74488d2f08929d58d2919f053bd7 svn.829
0000000000000000000000000000000000000000 svn.829
1371fe7d04067853541990eb05c04b2cd8b0cce2 svn.858
0000000000000000000000000000000000000000 svn.858
137d069b382d7175cf5d425fae13d9f20a8d9005 svn.1433
0000000000000000000000000000000000000000 svn.1433
13bc25d9c7e68124d74e7d3ff85dc0475a12cc37 svn.1366
0000000000000000000000000000000000000000 svn.1366
143e18f3ce685a33208ce4f470b3ec79e1c2a5ab svn.385
0000000000000000000000000000000000000000 svn.385
149036420e91872c752c4ce518bdfeff70330a62 svn.1135
0000000000000000000000000000000000000000 svn.1135
1490fcfb24c70f19f8821224994b546915f5b4b0 svn.1563
0000000000000000000000000000000000000000 svn.1563
149c0fa98e192e90bed74344a8ae5ebbf407064d svn.120
0000000000000000000000000000000000000000 svn.120
14ac1c49a658eef1e9ee29e22fa2e0d4b91a3237 svn.704
0000000000000000000000000000000000000000 svn.704
14b6fa5edc2f5453e9e8ab8113930d53e961374f svn.1789
0000000000000000000000000000000000000000 svn.1789
14bdaf98da0d90eb722eeaec6157de8d0d0408ac svn.1046
0000000000000000000000000000000000000000 svn.1046
14f866bbf50c4cd99474e150129144f9c67c9ea2 svn.437
0000000000000000000000000000000000000000 svn.437
150f74c95526a7387bc828f957348029f71e61a6 svn.897
0000000000000000000000000000000000000000 svn.897
153daa22d893d844ae6797ce8b33bacf016b81f3 svn.91
0000000000000000000000000000000000000000 svn.91
159874fa0df3577327f99ed11df19c03bd7d9926 svn.487
0000000000000000000000000000000000000000 svn.487
15a63d9a7b7190464132e8f36820b1c69f121458 svn.786
0000000000000000000000000000000000000000 svn.786
15cac1fda9ddd07988f4b0a222d09bb89beda8cb svn.1279
0000000000000000000000000000000000000000 svn.1279
164274e4466e0a8cabd81f8342ccebc918a5121a svn.477
0000000000000000000000000000000000000000 svn.477
165bddcbfa004dea70fabe80f82da668831760d0 svn.329
0000000000000000000000000000000000000000 svn.329
1665a35cd4ea1b29b6bd93b0d82d423bed317294 svn.541
0000000000000000000000000000000000000000 svn.541
166738006c3a058f301632619fbaa9fdd7800e2b svn.495
0000000000000000000000000000000000000000 svn.495
167dd46aa411490021352403f7e408ca176e640d svn.556
0000000000000000000000000000000000000000 svn.556
16876332fbaab496fa75d8b4cef80d32a096bf15 svn.1091
0000000000000000000000000000000000000000 svn.1091
16ac4b5438f69ba8320cde2e7c86bf1e50696c1e svn.1249
0000000000000000000000000000000000000000 svn.1249
17539cf7cec90818d553f47d103067a66b6ece5f svn.75
0000000000000000000000000000000000000000 svn.75
177a80a5c2cb7737fd16802e2623d72762e09a33 svn.1183
0000000000000000000000000000000000000000 svn.1183
17853da5da9438d1549e0b7a74cc590c78102497 svn.1300
0000000000000000000000000000000000000000 svn.1300
178f1ce70fbd58e636295d8d74de81c2e481046d svn.32
0000000000000000000000000000000000000000 svn.32
1790cffb14fc49234d98115217d574f918d05b90 svn.878
0000000000000000000000000000000000000000 svn.878
1799a24c3cc76b221815808e883ac018e7cd987a svn.428
0000000000000000000000000000000000000000 svn.428
17d411ced9321408ea900b0e5eb89b46c3f43eed svn.214
0000000000000000000000000000000000000000 svn.214
17e94e863ca4a724e2e0cd4ab12023872ec4a74c svn.759
0000000000000000000000000000000000000000 svn.759
17ffb91f1954a49e66d0809489b74d5f42abffa0 svn.104
0000000000000000000000000000000000000000 svn.104
181f4e0072c301c4fbb3146a1558fbf82ab8b4e7 svn.1270
0000000000000000000000000000000000000000 svn.1270
183ed087726cb1158a7ada1fd9ea59e726dff4de svn.1259
0000000000000000000000000000000000000000 svn.1259
18495205f69e0f05998f0760c9a3ebf1d58fd1a9 svn.1391
0000000000000000000000000000000000000000 svn.1391
186b361ed7e6197c89f71dd5a32db8da0178cb89 svn.826
0000000000000000000000000000000000000000 svn.826
18880acd09ee8e6dae8fca4442c426bddec35784 svn.1037
0000000000000000000000000000000000000000 svn.1037
189409797cf12cbefb0028a1f969149fdd7d17ed svn.1628
0000000000000000000000000000000000000000 svn.1628
18a1dc2a911eeddea1fe71d83759f4eef9b73cc4 svn.709
0000000000000000000000000000000000000000 svn.709
18ea5b4ac63865d808f56b04b0c97a08fb314c58 svn.1132
0000000000000000000000000000000000000000 svn.1132
190508aa312959c217130a0dabd459ac4b85c043 svn.1099
0000000000000000000000000000000000000000 svn.1099
190731ac2ebeeed836dd407f8f6ffe966ec95016 svn.950
0000000000000000000000000000000000000000 svn.950
191e425284f01d40d1b4e1c7b40bd86611ff0fde svn.1401
0000000000000000000000000000000000000000 svn.1401
19400f194230d1b999065ef031279aff724a0590 svn.1195
0000000000000000000000000000000000000000 svn.1195
1959f7bb7ef09e346e60ffdefc72de8b56b8139e svn.1063
0000000000000000000000000000000000000000 svn.1063
195a8ad57107ac668cb656f26cdbb6f8b96b9dc1 svn.1156
0000000000000000000000000000000000000000 svn.1156
1974365b127a40e9e62b041b6252c902f204c0b7 svn.1640
0000000000000000000000000000000000000000 svn.1640
19aa76db8a96347d67f1b07cd1fc8a1f26dce3b6 svn.1229
0000000000000000000000000000000000000000 svn.1229
19d2296f62d8f2e2ebbc7f823608d60683ddbc65 svn.161
0000000000000000000000000000000000000000 svn.161
19e098d6fbf349a90d146cb8be3142e418851ba1 svn.393
0000000000000000000000000000000000000000 svn.393
1a29c93406b03f5f51bdfde9d1d8e71a5fd0a014 svn.1598
0000000000000000000000000000000000000000 svn.1598
1a6fa6bbf1d839de617cf6d731f124780505c854 svn.1396
0000000000000000000000000000000000000000 svn.1396
1aa14a655fceeb59dc35419dadaa3eb9b3ade3a9 svn.16
0000000000000000000000000000000000000000 svn.16
1af453e638d1761025e8dadd053d4ceb8d79e90e svn.167
0000000000000000000000000000000000000000 svn.167
1b0b000a008adecc82d6fbfb2ba683770140c849 svn.1422
0000000000000000000000000000000000000000 svn.1422
1b0db0bf5599a565815ae8de98254b653afc8a94 svn.159
0000000000000000000000000000000000000000 svn.159
1b0f3eaf60133f5daabf8876df225d7e17a2d7ca svn.273
0000000000000000000000000000000000000000 svn.273
1b1fbe998eb3a689db2b2cead578f0bad2bee23a svn.855
0000000000000000000000000000000000000000 svn.855
1b2d2b328f1a2268014054a1a106131524b9a58e svn.1732
0000000000000000000000000000000000000000 svn.1732
1b41f55e39f627f352939c4c40d223666cadd40f svn.108
0000000000000000000000000000000000000000 svn.108
1b7c2ab8c72587e372905ba952d301c02fcfa35d svn.191
0000000000000000000000000000000000000000 svn.191
1b7d38aae84dfc9a011ad76c2542c138f4bf720b svn.514
0000000000000000000000000000000000000000 svn.514
1b8a4c4629be438e8e48b7d5f471b61f7e224eeb svn.294
0000000000000000000000000000000000000000 svn.294
1bb32ee8b90599f4e01a894eb8f4e1edb7161782 svn.1036
0000000000000000000000000000000000000000 svn.1036
1bf7e34e171d1a8758f2b7176b12ab995241c4cc svn.700
0000000000000000000000000000000000000000 svn.700
1c37aebefb76e9e26438089b588c1111f1b6d1d7 svn.796
0000000000000000000000000000000000000000 svn.796
1c40d66bae3c4bf0d1f101ffeb0acea168926cad svn.1762
0000000000000000000000000000000000000000 svn.1762
1cb76ee3636da871dedcf57a83da3866fc73bbfd svn.1021
0000000000000000000000000000000000000000 svn.1021
1cc9cf146664844e360b073dc070fa05d08eaf20 svn.679
0000000000000000000000000000000000000000 svn.679
1cf9d0e83cff3079412fd45aa2ee0cac66672588 svn.910
0000000000000000000000000000000000000000 svn.910
1d0c7035c1bacb1f256e0a47534c19aeffeee35d svn.946
0000000000000000000000000000000000000000 svn.946
1d26ca33c8b44c8c5e8524fed63736780a9e721d svn.1283
0000000000000000000000000000000000000000 svn.1283
1d30cfbd7a6696dd86c635b3faa263e95194733f svn.991
0000000000000000000000000000000000000000 svn.991
1d3e14608e450f1c05fbbd63e3bae8fe8498531a svn.509
0000000000000000000000000000000000000000 svn.509
1d9947e7c68242f9a8cb1845c22199d3aabf2dd0 svn.1065
0000000000000000000000000000000000000000 svn.1065
1da8c1d4b86bf7fe632bab0fa19bd5a0860b6414 svn.909
0000000000000000000000000000000000000000 svn.909
1db0d4260c049fa27e83c262405e37e672f09f70 svn.142
0000000000000000000000000000000000000000 svn.142
1dd91bfad08fe300ed3202e0b9885434069db507 svn.1446
0000000000000000000000000000000000000000 svn.1446
1e39a8267b63e6c937d0d9bca0be7ba96e884d9a svn.1214
0000000000000000000000000000000000000000 svn.1214
1e4ad371a3e51fc6cf8bff8832e307408ea23fb0 svn.1443
0000000000000000000000000000000000000000 svn.1443
1e5b976a4d43a87b53f6a10ecea1556ede6abb89 svn.729
0000000000000000000000000000000000000000 svn.729
1e5bad3af0c62d39a4ff1c997c3d69ce6e93f739 svn.1082
0000000000000000000000000000000000000000 svn.1082
1e6351ec0582687c7177e9cdca621c18d9c36df7 svn.932
0000000000000000000000000000000000000000 svn.932
1e6640c409dd5d809c24df8a1b296359ced079ab svn.1708
0000000000000000000000000000000000000000 svn.1708
1e844764a83b00bae1a1990b8a30fbcac149de66 svn.1015
0000000000000000000000000000000000000000 svn.1015
1ea258dafaa4ce328fb224cb7e04b670e3c0856f svn.1239
0000000000000000000000000000000000000000 svn.1239
1eb85913bbe94398eb973722914de95b28a8f69a svn.902
0000000000000000000000000000000000000000 svn.902
1ec3baa5fbf66a9caca0a9b224563d5b28374b22 svn.380
0000000000000000000000000000000000000000 svn.380
1ecf758054d3328567440ee82fa62fe0c316deac svn.1790
0000000000000000000000000000000000000000 svn.1790
1ee66345f10b4429ed1c5b5d3ddc7fd63f05c0ab svn.1710
0000000000000000000000000000000000000000 svn.1710
1f122ef5ebd5f88e6cc8bae94fa39db423620120 svn.1233
0000000000000000000000000000000000000000 svn.1233
1f182f60f8208c83a22f0d617941a4d1408b649f svn.376
0000000000000000000000000000000000000000 svn.376
1f2849d4a56fa5d7909ecf56a1c5643fe76d7e34 svn.113
0000000000000000000000000000000000000000 svn.113
1f583c98024f4582ff3b16447f439663b4ae287e svn.1702
0000000000000000000000000000000000000000 svn.1702
1f8bab2426fb59f2f4243844626b3ca6b11d75ec svn.896
0000000000000000000000000000000000000000 svn.896
1f8c62426fffedfd9471ceedc1096174461c97e7 svn.215
0000000000000000000000000000000000000000 svn.215
1fd4998e77ffd91041d43840b7a70c1be34cc759 svn.611
0000000000000000000000000000000000000000 svn.611
1fd4b02732eb20bbf3c3f5c4c46d8533f14c166a svn.349
0000000000000000000000000000000000000000 svn.349
2048acb78d9f9e117a0841b6a9229f01f56b063f svn.972
0000000000000000000000000000000000000000 svn.972
204b732a1ad80ad9f6c2f6e904e418ff1556b23a svn.1244
0000000000000000000000000000000000000000 svn.1244
2054ca11283e92918cf372404bf773e6c09ab140 svn.782
0000000000000000000000000000000000000000 svn.782
206c669b2af6d8c568531423ce447cfd2fd1e122 svn.96
0000000000000000000000000000000000000000 svn.96
208f087b08e1f353ea1d96d735e53c0d84a2fec2 svn.1218
0000000000000000000000000000000000000000 svn.1218
20d3e642f40308d6ce2bf2352d19bd60046bd474 svn.30
0000000000000000000000000000000000000000 svn.30
20d866b7ac2534392e54ea71c724940a91e926c4 svn.386
0000000000000000000000000000000000000000 svn.386
20e6708ceec570278362d6d32ad64228e8d104af svn.774
0000000000000000000000000000000000000000 svn.774
2105424868d0ddfaac6c68356bcc296903e5e2c6 svn.1243
0000000000000000000000000000000000000000 svn.1243
211283d83105ce19eb95f5c9f26b2b8e9577ab66 svn.756
0000000000000000000000000000000000000000 svn.756
212bf834fc7f2a96f407eaca2fc11107a28c7b95 svn.1061
0000000000000000000000000000000000000000 svn.1061
21a01aef37253089ca9607afbe6bee41617cee94 svn.795
0000000000000000000000000000000000000000 svn.795
21ab4b3e629c084ba8f6e39568efc7cb0bea893c svn.1221
0000000000000000000000000000000000000000 svn.1221
21bfc577a0793032cf3180f3210b80be465a9b47 svn.1597
0000000000000000000000000000000000000000 svn.1597
21c80a55ccdfeee4164df15049b6ac883dd42886 svn.591
0000000000000000000000000000000000000000 svn.591
21ed3bd276caee7cad233138cd85a77985ebfdf4 svn.1184
0000000000000000000000000000000000000000 svn.1184
224c097dde0c7544d7aebd0c7fc4f3b398ee4ead svn.564
0000000000000000000000000000000000000000 svn.564
2260c13777ed3b984596262a7abcf3d74949b74a svn.1112
0000000000000000000000000000000000000000 svn.1112
2267dbefda0b97873e7e212a9ff953f123c79dbc svn.791
0000000000000000000000000000000000000000 svn.791
2283ca6161ff49a0a06f25cf2c4718d3f6a8dd6c svn.1461
0000000000000000000000000000000000000000 svn.1461
22d90c022f15abbb36d598f0fc12634b7922da39 svn.1030
0000000000000000000000000000000000000000 svn.1030
22dbd0b1ca710d8534f6bcdfc3d473b1d6c3e0d4 svn.325
0000000000000000000000000000000000000000 svn.325
22e6c80fe419953eec283f3f4583ed609c9f4d08 svn.1654
0000000000000000000000000000000000000000 svn.1654
23262ad8a41ebca12807a1ca65b1cfd95c2d076d svn.1160
0000000000000000000000000000000000000000 svn.1160
2384a711554a63d4cf9e354848065244b4731419 svn.1503
0000000000000000000000000000000000000000 svn.1503
23a1a6bf68f52048a0831f583593073751306164 svn.1127
0000000000000000000000000000000000000000 svn.1127
23e1b62af018845944937b5cca4a15866647e644 svn.1223
0000000000000000000000000000000000000000 svn.1223
23fae50a1832b41d61b3b0a0a2fb1a8f476821b2 svn.666
0000000000000000000000000000000000000000 svn.666
245b211eedfa9ab0f96b24de757b65435075feac svn.1185
0000000000000000000000000000000000000000 svn.1185
2476faf0f3ea9fb561ff3789d4324e755524f73a svn.1458
0000000000000000000000000000000000000000 svn.1458
247ff6398810d16538afa9b8cba01c792edc416a svn.1068
0000000000000000000000000000000000000000 svn.1068
24a8cd53314b5547ef2e524c77fee58d6334ec8e svn.1459
0000000000000000000000000000000000000000 svn.1459
24afb3cb63a0a1d7f539c942e746a0746b73bcc5 svn.1427
0000000000000000000000000000000000000000 svn.1427
24be36f110bc8c3fb2167e74f09f7a99f6d20803 svn.272
0000000000000000000000000000000000000000 svn.272
24c57902ed27f8cb3a4ca1aafc3b66fbd44fa68e svn.1407
0000000000000000000000000000000000000000 svn.1407
24e7e09a8e48bf287b911e5e71243a3892427107 svn.913
0000000000000000000000000000000000000000 svn.913
25056d70ffd70f590ad36853beeab02ab05b6a90 svn.1303
0000000000000000000000000000000000000000 svn.1303
25064dde309e79255dc027ccac12860b311f97da svn.1264
0000000000000000000000000000000000000000 svn.1264
250cd77c08d85ebab76ecc9e4990cc33ee344767 svn.1293
0000000000000000000000000000000000000000 svn.1293
257c5a7b6c8ef95ccf53da55f692f517a28e6342 svn.282
0000000000000000000000000000000000000000 svn.282
25d4c96964f04c8790e12ab8b8144939180ba462 svn.922
0000000000000000000000000000000000000000 svn.922
263dad5f5c2b1571208e7f52f8488c0f189e95a2 svn.1796
0000000000000000000000000000000000000000 svn.1796
266d5d83cf04ff59050e884077f9dabb56b65b2d svn.179
0000000000000000000000000000000000000000 svn.179
267d7c34121d8fc3579ba5d148e7080074a0e927 svn.772
0000000000000000000000000000000000000000 svn.772
2724aaaa917db3e5d80d8bf547aa6be9f0f2d17e svn.401
0000000000000000000000000000000000000000 svn.401
2733c3d4b6355f77b6602b72999a006407d10e3a svn.571
0000000000000000000000000000000000000000 svn.571
278c2284d6f7e979a8f7260ea27bcc450303f8d1 svn.1337
0000000000000000000000000000000000000000 svn.1337
27ba903abf81b7964ae2a50d051ba42183ae1461 svn.740
0000000000000000000000000000000000000000 svn.740
27d17ab221f275c243449bc575417a25a70474e4 svn.382
0000000000000000000000000000000000000000 svn.382
2815181de43f5b2991aaa55f3e1b86b03d57f892 svn.213
0000000000000000000000000000000000000000 svn.213
2824b91af84c42c2690c935dea1991d87b6d0302 svn.1576
0000000000000000000000000000000000000000 svn.1576
28661086eb26791d5ed1817b47d2e810da311a98 svn.914
0000000000000000000000000000000000000000 svn.914
2884b80f3126f6cae7b874abf66b88c81db8db6a svn.243
0000000000000000000000000000000000000000 svn.243
2890691c8b0ce589f0c362b1867e594c3ec4fd0c svn.1424
0000000000000000000000000000000000000000 svn.1424
28e7cbf47cf394681cdc554f46ec13f67d42d5d3 svn.513
0000000000000000000000000000000000000000 svn.513
28f9faaa116b4e0c8505883f73160aebecdd49a1 svn.35
0000000000000000000000000000000000000000 svn.35
29101d2bc32703f921c90b8c47ab679d3ff1efe7 svn.1600
0000000000000000000000000000000000000000 svn.1600
29243d349999d43d02851a450f53f031bb40cbb8 svn.803
0000000000000000000000000000000000000000 svn.803
2952becb97669b5b69c1d2d9442df916f472f408 svn.1416
0000000000000000000000000000000000000000 svn.1416
29694b1e1a5ff373db84659e392c64e74933fcba svn.249
0000000000000000000000000000000000000000 svn.249
296968b4e2bddcf37cdebb652b2eaf9d662a87d7 svn.1623
0000000000000000000000000000000000000000 svn.1623
2977040634d83c6aa28ab1cce4ba9f397ff6f18f svn.63
0000000000000000000000000000000000000000 svn.63
298d12183d3757c6439d66ef136852f7fa5c30e5 svn.1451
0000000000000000000000000000000000000000 svn.1451
29acc14771291d9456c9dfb72967a3232b50595f svn.1421
0000000000000000000000000000000000000000 svn.1421
29b2b49c3210d1cb1b6400dba253957aa2fbf497 svn.1711
0000000000000000000000000000000000000000 svn.1711
29bc4b09998c5e58e5e881617d6e4c0735bccf47 svn.526
0000000000000000000000000000000000000000 svn.526
29e4edf612fbbf9815d8d674f899d89bd19c72e6 svn.1397
0000000000000000000000000000000000000000 svn.1397
29e77b0d7290dc0add9223c50a656208ca270bc4 svn.235
0000000000000000000000000000000000000000 svn.235
2a1293f17651f5a8b96b837366b06e7b366d4406 svn.1364
0000000000000000000000000000000000000000 svn.1364
2a5783e9aef1edf1a2f5dc9da94b20ada176db28 svn.1614
0000000000000000000000000000000000000000 svn.1614
2a6029d1a826032c2bb80d38023a6fd37e3ac895 svn.1181
0000000000000000000000000000000000000000 svn.1181
2a74e5b6ed96bfab3a334059fc6fbfdbe4bda782 svn.583
0000000000000000000000000000000000000000 svn.583
2a9a084f0ec1c135287fc824291cf582e2763d1a svn.1808
0000000000000000000000000000000000000000 svn.1808
2aea310b02d8eb288828b1e38457527d03a2150c svn.1202
0000000000000000000000000000000000000000 svn.1202
2b0b1ad509c4507b1ee6d4d7215c1dc13f86d323 svn.562
0000000000000000000000000000000000000000 svn.562
2b3f5df5d18db2808c64b9fe865af6d081b1b1e0 svn.1351
0000000000000000000000000000000000000000 svn.1351
2b53901a7520aa476ed751bd0269fee64c015043 svn.480
0000000000000000000000000000000000000000 svn.480
2b5da1b0e6f68f6b24eee859c6a5c073b39cce79 svn.1607
0000000000000000000000000000000000000000 svn.1607
2b616bac66eb2e928e58fdcd260a263cc1e6af77 svn.821
0000000000000000000000000000000000000000 svn.821
2ba2575991fe70542ec0b1e6491a401220e707f5 svn.467
0000000000000000000000000000000000000000 svn.467
2bd4b3dbcdb6edb2b971bc78f584ec1534010a5c svn.1460
0000000000000000000000000000000000000000 svn.1460
2bfef661b95619faa38099f97e303917441c9a44 svn.895
0000000000000000000000000000000000000000 svn.895
2c2e4f27039f9eed5ddf9d08fec08ae079f3e1d3 svn.1609
0000000000000000000000000000000000000000 svn.1609
2c775f41d49b7525484622ccda6033e0497c2cef svn.1486
0000000000000000000000000000000000000000 svn.1486
2cf4d4f200f58d1d4a38eb10f25a305da25dab74 svn.788
0000000000000000000000000000000000000000 svn.788
2cfc0b9e83e1bb5a71b274b1293932c25fecb268 svn.201
0000000000000000000000000000000000000000 svn.201
2dc572c5ba89d3e2f234adc0e90fe3c379dc556a svn.434
0000000000000000000000000000000000000000 svn.434
2e05790c7ff265722b5e610fa8b4c902dbfdbb81 svn.237
0000000000000000000000000000000000000000 svn.237
2e114ae2bedf49862289dee0df21fbc8961d58df svn.694
0000000000000000000000000000000000000000 svn.694
2e36f21bfbec38ffe5d016fc24a16fa8c08cf634 svn.1482
0000000000000000000000000000000000000000 svn.1482
2e56f05a2f5c2d1affe804672a96d4a64112fab7 svn.1398
0000000000000000000000000000000000000000 svn.1398
2e6c33866a213869ef4970cbb9a5fa4251246b41 svn.486
0000000000000000000000000000000000000000 svn.486
2e9604d280d1372305aa1e451fb0ff366908070a svn.227
0000000000000000000000000000000000000000 svn.227
2f3dc3382cf79dd18095a1d08ae7d86c5ee11fca svn.1242
0000000000000000000000000000000000000000 svn.1242
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.531
0000000000000000000000000000000000000000 svn.531
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.532
0000000000000000000000000000000000000000 svn.532
2f7c6f7c38ca0b4a2d59246e98f0785af7c586eb svn.533
0000000000000000000000000000000000000000 svn.533
2fa342f70f1ab638e7ff6d29ba0c3f27fc136ca7 svn.614
0000000000000000000000000000000000000000 svn.614
2fbffc4b553feb03c2f36b1141e0f272478768e4 svn.994
0000000000000000000000000000000000000000 svn.994
2fc8ce9aeb98d5e20f7cd2bf04e74d717728b1ec svn.1228
0000000000000000000000000000000000000000 svn.1228
2feee8280510e184223912daf17898a6b9bd8881 svn.1317
0000000000000000000000000000000000000000 svn.1317
300b28b4879e45345ebeef6f215e8828074c6f22 svn.934
0000000000000000000000000000000000000000 svn.934
3020489da36639adddce2b555be63c0dd19bd838 svn.7
0000000000000000000000000000000000000000 svn.7
302bb5f79a4e895853d420e82d9ed656a71b9214 svn.1590
0000000000000000000000000000000000000000 svn.1590
3059f8a36287ce425e801b8af84ed6135be18280 svn.1594
0000000000000000000000000000000000000000 svn.1594
306126f9d0f1834277b17adc5b38ac567da555b7 svn.842
0000000000000000000000000000000000000000 svn.842
30738047b2640774652e1a5bb403c52589ed9747 svn.1232
0000000000000000000000000000000000000000 svn.1232
3076d47821899c6ec96abd622a60ff6b6cda0352 svn.1572
0000000000000000000000000000000000000000 svn.1572
307f6a434baf2c19ed2f04b81559adfc32a19829 svn.1237
0000000000000000000000000000000000000000 svn.1237
30810691843db9af3ac30247b3cd2ee2983ae8cb svn.453
0000000000000000000000000000000000000000 svn.453
309bf66bbf164ad0d715097eeed41a115c50021a svn.293
0000000000000000000000000000000000000000 svn.293
30a8cf7bd40464cc8b769f88d51c8c1c3cc14763 svn.260
0000000000000000000000000000000000000000 svn.260
30c8d69035cd57735a3f86c6dae40e4a6cf5f5bc svn.1578
0000000000000000000000000000000000000000 svn.1578
30c9e3ed1cd0af1220a397c058bed58c34d8acd9 svn.889
0000000000000000000000000000000000000000 svn.889
30d4b4532a3036cf9839ac248d10454337c49876 svn.1477
0000000000000000000000000000000000000000 svn.1477
30e0ce89424861f1280edc2f0a40c4d6592b9119 svn.49
0000000000000000000000000000000000000000 svn.49
3122e32e962449ef55ae4dbc65478e5af779c4bd svn.1346
0000000000000000000000000000000000000000 svn.1346
3234b6e46b7bc7a18bc8186d8645784f7a5ccb9c svn.408
0000000000000000000000000000000000000000 svn.408
326567793ef0406d889de032e525a66d1924f575 svn.464
0000000000000000000000000000000000000000 svn.464
326dc0e28cdffdab9e0cb8018b751a7f7741a93e svn.51
0000000000000000000000000000000000000000 svn.51
32a5f8a01d909e39b60f87146383831187ae4b7c svn.153
0000000000000000000000000000000000000000 svn.153
32d9ef9dafab130232dfdfd629de466a79ffa2cd svn.1748
0000000000000000000000000000000000000000 svn.1748
33d50969dd9576bbdf7c28354d26c854cdc2b3cb svn.537
0000000000000000000000000000000000000000 svn.537
341577d087f3ea35d05ec6634bbcc956bdb20269 svn.527
0000000000000000000000000000000000000000 svn.527
342b79f69394e1ce02d5dd8c24788127aeafb88c svn.1560
0000000000000000000000000000000000000000 svn.1560
34b94e7914142149e465a83e458b6c8afccd9a86 svn.166
0000000000000000000000000000000000000000 svn.166
3510fc0075849ac1601288b8cfd516cc359a86ee svn.1052
0000000000000000000000000000000000000000 svn.1052
353817e819e90bf135e4577de32eb6fccee9670e svn.473
0000000000000000000000000000000000000000 svn.473
35575098e21b39de79637d8a698efe95f61ea750 svn.226
0000000000000000000000000000000000000000 svn.226
35609ba9b54cb9a4065d956fc359d49d6a1c3645 svn.1469
0000000000000000000000000000000000000000 svn.1469
356c0e2a81b234b2d99794f680e7380b0e1987ad svn.1369
0000000000000000000000000000000000000000 svn.1369
35759321ad5ba59bcc727870fa0b7634c0efc070 svn.372
0000000000000000000000000000000000000000 svn.372
35bb46b3e28fba203eb93a8f0904e70b015978b7 svn.1284
0000000000000000000000000000000000000000 svn.1284
35c3413f27068c320d95f4201f7f0cd240d44cea svn.1360
0000000000000000000000000000000000000000 svn.1360
35f42dba0eee8a79ef8221e9032072d7f922eabb svn.1660
0000000000000000000000000000000000000000 svn.1660
3648f2ee0493f7538f15721cafb438e075da0a5f svn.768
0000000000000000000000000000000000000000 svn.768
366a30324964d2c88c2731b027861897d5c2d98c svn.496
0000000000000000000000000000000000000000 svn.496
366e5cd0fd14dc9192b82e7f5a18397d74e64314 svn.599
0000000000000000000000000000000000000000 svn.599
367338cde81885a08621a3b1359140a3fda977cf svn.582
0000000000000000000000000000000000000000 svn.582
3677c19e25bb9311ca1b714f7ad350347afbf323 svn.773
0000000000000000000000000000000000000000 svn.773
36b3012bbbc073ed5b2c0de776a2738593167bc6 svn.50
0000000000000000000000000000000000000000 svn.50
36b804344505a201df09da75721c99f6ba8a9264 svn.132
0000000000000000000000000000000000000000 svn.132
36df8de9d0bc05b7ab6382e3e497b3ff92d4d2ba svn.291
0000000000000000000000000000000000000000 svn.291
36fdd3794888b2d9feae5e5ab8392ffdaedcb1ed svn.985
0000000000000000000000000000000000000000 svn.985
37246737f6859e4117c9a2d6a1d13b2674678cf0 svn.843
0000000000000000000000000000000000000000 svn.843
3767f3d630ab1693ce5886653da52fe320be4432 svn.1806
0000000000000000000000000000000000000000 svn.1806
37ad56d4f517181aeff99df835d5e5adb0f85e8e svn.1639
0000000000000000000000000000000000000000 svn.1639
3864b1286cf26976ed94cf6a3ec4059edfe08575 svn.1662
0000000000000000000000000000000000000000 svn.1662
3885cc7d11fcdbe9656d8c2148bc07a30cdbf494 svn.405
0000000000000000000000000000000000000000 svn.405
38e412a867fb28db8d00a4e88a37906c76aab33e svn.812
0000000000000000000000000000000000000000 svn.812
38f78a2da49df80bbb58119a235811c50aecdad1 svn.69
0000000000000000000000000000000000000000 svn.69
391ee7617763b5904068181ec383952cdd7ee142 svn.1006
0000000000000000000000000000000000000000 svn.1006
3951ca57fc0dae3a992fb790654b04dacf71bd03 svn.86
0000000000000000000000000000000000000000 svn.86
396464816d2328b92330a78c22846c56e96a429e svn.1226
0000000000000000000000000000000000000000 svn.1226
39c43000ec6db4e62ff01772d7521afb796a8af9 svn.155
0000000000000000000000000000000000000000 svn.155
39d85e6ced187b299c627269f0b6d52c691fb24d svn.1635
0000000000000000000000000000000000000000 svn.1635
3a13d92a0679b693d25142b17cbae857c79c0b2d svn.1697
0000000000000000000000000000000000000000 svn.1697
3a3a0158bafeb652c5e7a4f74552e180534d1572 svn.40
0000000000000000000000000000000000000000 svn.40
3a477287d9d2332aa9a924d8282256751bb60712 svn.916
0000000000000000000000000000000000000000 svn.916
3a8ff8b2db71d8537af42c5c5cb5ec968af75218 svn.13
0000000000000000000000000000000000000000 svn.13
3aae41cd34983023a70726fc5cf78e8ffd3badfb svn.151
0000000000000000000000000000000000000000 svn.151
3b037108ef0ea89914009142b1e8ecaf70e1121c svn.1367
0000000000000000000000000000000000000000 svn.1367
3b1782228da51a8db7c41c35791cfb503ed28a94 svn.1537
0000000000000000000000000000000000000000 svn.1537
3b51aaeb60e63b2235d486c3b01f08d6d7e99d7d svn.604
0000000000000000000000000000000000000000 svn.604
3b7885d4f4e8e6923fdac19ce7a13996a0d53f06 svn.71
0000000000000000000000000000000000000000 svn.71
3b9205676f5ac264154b4098908b8e0e81f03cdb svn.1106
0000000000000000000000000000000000000000 svn.1106
3b9a7834cb3009820861484876f55918f2475053 svn.787
0000000000000000000000000000000000000000 svn.787
3beab6acbd602831fa8c3b0c7dcdb52b330f38f9 svn.682
0000000000000000000000000000000000000000 svn.682
3bf0dc8a1b82fedad25e742882e1da7c137a53c0 svn.176
0000000000000000000000000000000000000000 svn.176
3bfb0809df65d84e820c9d0ec5800b2569589a4a svn.390
0000000000000000000000000000000000000000 svn.390
3cd57220b85ed48e04157f86edd19f22cb2f11f3 svn.92
0000000000000000000000000000000000000000 svn.92
3d0e66a5066ff4fc4bce6c2717cb1d1ccc840391 svn.662
0000000000000000000000000000000000000000 svn.662
3d2e410265d5d695bc76081e4d8bd8c9cfa28777 svn.862
0000000000000000000000000000000000000000 svn.862
3d5d909133b1d65527b63a91ec0a331636775a88 svn.638
0000000000000000000000000000000000000000 svn.638
3d7c445b1418482e2b20e9332c3f9b948c33493f svn.589
0000000000000000000000000000000000000000 svn.589
3da7fe78c823506fa20fe57c772ad1842e922b72 svn.1225
0000000000000000000000000000000000000000 svn.1225
3e2e7f6475694accf8d6c8b796cb063c3dfac0ac svn.547
0000000000000000000000000000000000000000 svn.547
3e41764d307c55c40e69c1d9fbb2240af170ef5f svn.551
0000000000000000000000000000000000000000 svn.551
3e77557675c97a0cedbe4863c54eb832568b3c8d svn.538
0000000000000000000000000000000000000000 svn.538
3e908dc26ae65cf3c9dc28c49421e578ae3fb49f svn.212
0000000000000000000000000000000000000000 svn.212
3e9992635c90bf6809a116a9a91933f950113b34 svn.859
0000000000000000000000000000000000000000 svn.859
3eb75d1abf615466c5b4687587d2d72463d8b7e7 svn.1561
0000000000000000000000000000000000000000 svn.1561
3ebca2e17e8605067905976ce45aa33fd85a2175 svn.1389
0000000000000000000000000000000000000000 svn.1389
3ec6641e57e5041411874bced46bc471cfa6f556 svn.420
0000000000000000000000000000000000000000 svn.420
3ed79db929a9ae296e569b6a0a662b62c03f8430 svn.554
0000000000000000000000000000000000000000 svn.554
3ef4c392b225abbaadbc9ec69a59eb6d38ae673b svn.1071
0000000000000000000000000000000000000000 svn.1071
3f2c22dbcb10b0162c94d32df80a8592d8f7cab8 svn.1551
0000000000000000000000000000000000000000 svn.1551
3f5d67c3b191ad30069da0a959492e85623437b3 svn.1133
0000000000000000000000000000000000000000 svn.1133
3fa2f5f309318b5467f0bbeb5542095a393a0578 svn.219
0000000000000000000000000000000000000000 svn.219
3fb3e19746293cba3e51ee7dadef127b0064136e svn.871
0000000000000000000000000000000000000000 svn.871
3fcf225f835cf7b90d8854b50c994435bf9a0c7c svn.34
0000000000000000000000000000000000000000 svn.34
3fee01e8ac38487fdac22bffc36450a18035adf3 svn.361
0000000000000000000000000000000000000000 svn.361
4018fe8a6af67d663dcfdc4faf477b1d513388fb svn.781
0000000000000000000000000000000000000000 svn.781
4049858156fb8795c270d6815556fb10442580d2 svn.1322
0000000000000000000000000000000000000000 svn.1322
4056ab55e28813eaf3ea4b702ef1c5980b680088 svn.1532
0000000000000000000000000000000000000000 svn.1532
40c221438429013119d8d0c6ce987e354f6abb33 svn.1528
0000000000000000000000000000000000000000 svn.1528
40d77e888c26f923e7731771b92d93aaf1a9228c svn.494
0000000000000000000000000000000000000000 svn.494
40e5005d6d7e1f70583840824cc1f80bb70640c6 svn.377
0000000000000000000000000000000000000000 svn.377
40e5eb8bfcf1e9f0c9b0ceae0f8a663afce2997f svn.409
0000000000000000000000000000000000000000 svn.409
40e8cd5a0a4e2d6d6c6a0fd53590d3e64cd08724 svn.648
0000000000000000000000000000000000000000 svn.648
410babe5b4166e31f8fc82cbc2d7e8c156fa1e4e svn.38
0000000000000000000000000000000000000000 svn.38
4118634b4393366efbd911b28f190d7260ce418d svn.1767
0000000000000000000000000000000000000000 svn.1767
4163cad7070177da69b53cd4b9887615da6b50c7 svn.1497
0000000000000000000000000000000000000000 svn.1497
416d80a781f033c2ca3cdb1243407ceec601875d svn.1278
0000000000000000000000000000000000000000 svn.1278
417ad747dd1f8672e37a5e51d936dd1052d3713e svn.1273
0000000000000000000000000000000000000000 svn.1273
41a5bc7c2e91022cc0b99bff3c27d028273f5c15 svn.880
0000000000000000000000000000000000000000 svn.880
41b920254644108c6280e941dcdec28f213e320c svn.504
0000000000000000000000000000000000000000 svn.504
41d0d10781c8fc39a11f8d863a6c60d9c73316c5 svn.1231
0000000000000000000000000000000000000000 svn.1231
41e6266889a81500a983fcc598d30c3cd41b016b svn.870
0000000000000000000000000000000000000000 svn.870
4201883836c6384f77136fcea4899eac3da1112e svn.202
0000000000000000000000000000000000000000 svn.202
420ce4ef78b82b520f2a97ba35b27d792b9d8d29 svn.9
0000000000000000000000000000000000000000 svn.9
4213a3828fa82a2f928c979b6c094a14591f1359 svn.828
0000000000000000000000000000000000000000 svn.828
423219f35f50085b079baff29646c18928578bd6 svn.1358
0000000000000000000000000000000000000000 svn.1358
4246c5028815bd713859ac7194531b0dafea0d8e svn.1072
0000000000000000000000000000000000000000 svn.1072
426da8fd1b6f2d0fb1aacd860b83814b0e6d7e7f svn.736
0000000000000000000000000000000000000000 svn.736
427a362a641904fe9956779a75158137d13e648d svn.366
0000000000000000000000000000000000000000 svn.366
42aa893a70233f327826b6b88d2595ec58be068c svn.1176
0000000000000000000000000000000000000000 svn.1176
4359c081ace30b9ee341a5e74af0060ca9625ee6 svn.1701
0000000000000000000000000000000000000000 svn.1701
4382b85f7f2976cd95d044e5ce3200209556f46b svn.901
0000000000000000000000000000000000000000 svn.901
43b5b08e082d211c858fcefa0abc633fa2e2adbb svn.988
0000000000000000000000000000000000000000 svn.988
43c47f66811d1c3c54ebcbe645151a6938b51803 svn.1487
0000000000000000000000000000000000000000 svn.1487
43f8a7df78eb3b1f54ab6557f32c72842e59c6f9 svn.1000
0000000000000000000000000000000000000000 svn.1000
44482c79545e737aaa40ad828e2b8bc9c32bec7b svn.1666
0000000000000000000000000000000000000000 svn.1666
4461b8732fbbf0ab6200a6fed0c56b995823ea53 svn.178
0000000000000000000000000000000000000000 svn.178
447813e1e520b5a4789ac3553331a36889724e73 svn.1143
0000000000000000000000000000000000000000 svn.1143
4497b6c8a28f87678baffb8e5ea6a4ab076d3f60 svn.350
0000000000000000000000000000000000000000 svn.350
449832bda2e9a04c55df98bd146942a3f77bbe00 svn.1498
0000000000000000000000000000000000000000 svn.1498
44bc0a7fdd004cceb19e556222ab6a22aaa10aa7 svn.174
0000000000000000000000000000000000000000 svn.174
44d880af55ff3e44daeb87c3b6cc5b3e16bf64e8 svn.1008
0000000000000000000000000000000000000000 svn.1008
44edb74af00db2ffb08016f94b0cd399a5ccfd8d svn.85
0000000000000000000000000000000000000000 svn.85
4515bae5095328873b3ddf34bbd4ccc16a4275a4 svn.1705
0000000000000000000000000000000000000000 svn.1705
451cbca5a3e5304928314da6573264ffe7e0e230 svn.406
0000000000000000000000000000000000000000 svn.406
4531a562f716d16bf1eba3f8bd14ea9c2dd8a2a4 svn.1381
0000000000000000000000000000000000000000 svn.1381
45343776eb76b76496f01462fecfe65c4bc8ed8a svn.131
0000000000000000000000000000000000000000 svn.131
457bec224e4b18e0ba380b6956120aa9e55d61e2 svn.173
0000000000000000000000000000000000000000 svn.173
45a9d7e5fb62c1ba8ffebc8e5585e993b7bd310e svn.623
0000000000000000000000000000000000000000 svn.623
464e7e577c5c69cd2c709d7fc9dc8bd15dcb16b9 svn.639
0000000000000000000000000000000000000000 svn.639
4660ab2a5ad8048474c2dfdce74822da12cd5186 svn.1533
0000000000000000000000000000000000000000 svn.1533
46b682802892389cb8d3b8f9b89584f6dc565d9c svn.1545
0000000000000000000000000000000000000000 svn.1545
46cfc58ea9781625cd81fb960d2d6a59b96acce8 svn.1758
0000000000000000000000000000000000000000 svn.1758
46f5d3f78178e6cfc069079e32f13aecb310f24f svn.259
0000000000000000000000000000000000000000 svn.259
4822375a0361431ea8760efdb9deb181d2418b92 svn.1661
0000000000000000000000000000000000000000 svn.1661
48267b66ccee0e9c7618b7ff1ce0e33a33b9e376 svn.1319
0000000000000000000000000000000000000000 svn.1319
4847223c05ae4e6a6aa1d144bed9a28463cdbbfd svn.1161
0000000000000000000000000000000000000000 svn.1161
485ffe9198e1bf33c5c3714e80734763b772e098 svn.21
0000000000000000000000000000000000000000 svn.21
48637151be9336a68446115339761b22bfc74a79 svn.1426
0000000000000000000000000000000000000000 svn.1426
488e52ad69c3f3004c4d88e7826894ec3a2a776b svn.469
0000000000000000000000000000000000000000 svn.469
489b2b01018eece9a3da626ba0ac2a5e5a5ee68b svn.1041
0000000000000000000000000000000000000000 svn.1041
48d00abbf8977b912efe5a52bcf442e5ba0474c0 svn.207
0000000000000000000000000000000000000000 svn.207
48ee2d9c752ff8436f30f8ad270beccc5a34ef1e svn.1247
0000000000000000000000000000000000000000 svn.1247
48fa57b1bee688c3523a5763a52d721dc2af6e0e svn.1678
0000000000000000000000000000000000000000 svn.1678
49045125c9484e0a60487b1cc65a4db189e5cbc0 svn.750
0000000000000000000000000000000000000000 svn.750
49218e93b171aa3ff698c921d442b52bb150d487 svn.125
0000000000000000000000000000000000000000 svn.125
4969b297df682192273b2e7514dfd93b496a032c svn.1167
0000000000000000000000000000000000000000 svn.1167
496d7770984285a5db947fbbdfe4ea77802a0631 svn.938
0000000000000000000000000000000000000000 svn.938
49712828f5b40038a56b3359ec73397344a413f3 svn.415
0000000000000000000000000000000000000000 svn.415
4981eb69b4f367a74842be377dfc8bbd4ca2b762 svn.1115
0000000000000000000000000000000000000000 svn.1115
4982554bb736c2985de96401f31aa6e3d9fcb433 svn.1734
0000000000000000000000000000000000000000 svn.1734
49bf13b03356b24d99eab44a38fdae7631a1c41b svn.1043
0000000000000000000000000000000000000000 svn.1043
49c0c0aa33ab9f6222de994a30c1c8c9d71a5f50 svn.552
0000000000000000000000000000000000000000 svn.552
49e282f62ffaec2781f1c4b32a7ae145ad5e18da svn.185
0000000000000000000000000000000000000000 svn.185
49eb634fdea7222cd9b28dc9a57b13158077c999 svn.247
0000000000000000000000000000000000000000 svn.247
49f6e043889adeafb8b36acb4fe109dee6eea2d1 svn.1810
0000000000000000000000000000000000000000 svn.1810
4a01a8ab2deaf4b6c368469064d86676974ca5e2 svn.1333
0000000000000000000000000000000000000000 svn.1333
4a292bf63670c8a83efd41c939a7402235918b48 svn.596
0000000000000000000000000000000000000000 svn.596
4a2e5c12b4a23e7d9699c85d4e40b2b0cfbaed1b svn.33
0000000000000000000000000000000000000000 svn.33
4a9245b8d1230a4aeebc5b996401848ef2e8aae7 svn.1737
0000000000000000000000000000000000000000 svn.1737
4aaeb47d11c0f86a6e2ca3c1c3711527e23bd284 svn.27
0000000000000000000000000000000000000000 svn.27
4aba19b0b4eb4c840aef00f9663fb1b825b48d6c svn.208
0000000000000000000000000000000000000000 svn.208
4af3e4b9f35b438cd71c732c287b05904b0fc508 svn.1109
0000000000000000000000000000000000000000 svn.1109
4b6e066a9b733af6adf096779d72e14875afc15b svn.357
0000000000000000000000000000000000000000 svn.357
4ba988999535326cc253a3049470eefaedf87f90 svn.1722
0000000000000000000000000000000000000000 svn.1722
4bbb3be5be5b43f84916368d762c83b0698dad1a svn.1454
0000000000000000000000000000000000000000 svn.1454
4c3d3810975dc9a0948a37e033a3d049658bcfba svn.1743
0000000000000000000000000000000000000000 svn.1743
4c5e134b91396e80b184dca51144f39f9560343f svn.1549
0000000000000000000000000000000000000000 svn.1549
4c9e1ab18d0878e9e4c7d551c13cb68baef38bfb svn.1012
0000000000000000000000000000000000000000 svn.1012
4cc9fa1449811b09112e1e97089be590b7444432 svn.1476
0000000000000000000000000000000000000000 svn.1476
4cd40c4e44534c0f3a173874891b6dc192302cea svn.18
0000000000000000000000000000000000000000 svn.18
4cf5381992a384aabac16831800c7410ac6929a5 svn.115
0000000000000000000000000000000000000000 svn.115
4cff5bde76e2deac628cda176628a3cec5a66cc3 svn.645
0000000000000000000000000000000000000000 svn.645
4d3cd3e470113b37c3bac7d2052d79d7a097ec96 svn.246
0000000000000000000000000000000000000000 svn.246
4d58ac7afb5ee8358d6989989ac04602de8c0a45 svn.342
0000000000000000000000000000000000000000 svn.342
4d93b8fb4362acb2626035c0aa12516a81d90fbb svn.148
0000000000000000000000000000000000000000 svn.148
4d9628abe1955d19050a2d86dcaf0c4ecede96d7 svn.1077
0000000000000000000000000000000000000000 svn.1077
4e25a3ec9fe26987dcf14d93f5f0b0ec07a449fb svn.502
0000000000000000000000000000000000000000 svn.502
4e7029901b08b617051901d95a383f6242eaa88b svn.1382
0000000000000000000000000000000000000000 svn.1382
4e74cc5353eb286d9f6697636ceb4c35c02fbcb1 svn.1632
0000000000000000000000000000000000000000 svn.1632
4e99c598a17d61bcda0604b2a9da8488bc429a2c svn.1695
0000000000000000000000000000000000000000 svn.1695
4eecc5a5eb0ee949a906d633e73567aa9642e889 svn.1215
0000000000000000000000000000000000000000 svn.1215
4ef9e46137e79825ad2edae673ab6ee70bc7b44a svn.146
0000000000000000000000000000000000000000 svn.146
4f283440ba805368be141e02ea6cf3ca1544efb5 svn.1241
0000000000000000000000000000000000000000 svn.1241
4fb515e030cd9960c13e228064d8f532653213e8 svn.1134
0000000000000000000000000000000000000000 svn.1134
4fe3cf7dcc79f8ef6cf60148a573008dbd1b5b7a svn.1402
0000000000000000000000000000000000000000 svn.1402
503116d6f3e29bb6baccdd808054579fcf9cafa9 svn.1799
0000000000000000000000000000000000000000 svn.1799
50728409da5a1c155ffafaa2d0f917332766ce91 svn.1749
0000000000000000000000000000000000000000 svn.1749
508bc08810045e1cf1e6970513c9de8fa028846c svn.1430
0000000000000000000000000000000000000000 svn.1430
50b1a45d4899fbe5b643fbcf780037b7edb25ca6 svn.1354
0000000000000000000000000000000000000000 svn.1354
50f6b731870ba3ae773b772050bfb7d27db2e4c7 svn.1615
0000000000000000000000000000000000000000 svn.1615
511379ab4cd6e5e5ee4144890f7f5343fb87aa4c svn.93
0000000000000000000000000000000000000000 svn.93
516801d12403aaeb3be7a1fa3418b4edee09198f svn.218
0000000000000000000000000000000000000000 svn.218
517a757f2e616abc924087c336c6a28192649050 svn.1209
0000000000000000000000000000000000000000 svn.1209
520c515ac241d8ecb87692f4ae5c5f2ac5fa975e svn.835
0000000000000000000000000000000000000000 svn.835
521936dbc055716daa6df19efa7e34e857271f05 svn.216
0000000000000000000000000000000000000000 svn.216
523845d265b6f21192bf920428ac9a8d7dc066ee svn.903
0000000000000000000000000000000000000000 svn.903
5257ab69b04aba9315f60d276ba5854b2f182174 svn.1323
0000000000000000000000000000000000000000 svn.1323
526d95c3398d2d8a7d6442693704b93542b1221c svn.1102
0000000000000000000000000000000000000000 svn.1102
5280eb09b8f1cc2c84bb785b19ff807a47254d4b svn.1680
0000000000000000000000000000000000000000 svn.1680
5287daeb9be1f9c97319242ad4d2c226e266341a svn.1101
0000000000000000000000000000000000000000 svn.1101
530003732acb6b8004875550c44824850136bcf5 svn.451
0000000000000000000000000000000000000000 svn.451
5305e65e9aedf67da3f8028255e21497cbb844f9 svn.77
0000000000000000000000000000000000000000 svn.77
5340452bb3df18ee1befcb4daf62b3ec5b9c88c1 svn.66
0000000000000000000000000000000000000000 svn.66
5345173dbe7e26057de5a7fc46e787d47495cbd4 svn.1512
0000000000000000000000000000000000000000 svn.1512
5355b66f4dab824d6a9dec27432b5993ff3d6ccf svn.545
0000000000000000000000000000000000000000 svn.545
5363b892e7a0402e9417eb7b3f9ce23ff6fc2f6c svn.686
0000000000000000000000000000000000000000 svn.686
5365f158410c88448e3bc294bb15823895be3b07 svn.435
0000000000000000000000000000000000000000 svn.435
53cb10663fef331a2252a4da6b96e7e41c5e7474 svn.1620
0000000000000000000000000000000000000000 svn.1620
53dfcf3deef8c8fde2404b620fcb138fc6d2ec13 svn.1754
0000000000000000000000000000000000000000 svn.1754
540e50771aa0b70808479222e27dd4239b3c8612 svn.879
0000000000000000000000000000000000000000 svn.879
5412bcfdf5df0e75f91f7c242f4f51a094efb62d svn.1004
0000000000000000000000000000000000000000 svn.1004
542c2f66bc5d0cfce5272b1b4056f097b2950e24 svn.1573
0000000000000000000000000000000000000000 svn.1573
5504d339253a7af01a6c9005afe29ca7cbe705f7 svn.5
0000000000000000000000000000000000000000 svn.5
551dde528c1e313b6ff50bf4d79e3b18e7ac0f31 svn.809
0000000000000000000000000000000000000000 svn.809
55e939ca948bfbb641d4ff5892a82280518cb0db svn.250
0000000000000000000000000000000000000000 svn.250
55fecb6fc0d3ae3f40cfeded90d1743f595a7732 svn.400
0000000000000000000000000000000000000000 svn.400
5616db9bc36e94343e2b92df68c4520d62b38cfe svn.60
0000000000000000000000000000000000000000 svn.60
5620cdedb5130bbdbdccef255791b98e83bafbef svn.558
0000000000000000000000000000000000000000 svn.558
563a941879b75768d6d73b60277c85964cdf3f60 svn.4
0000000000000000000000000000000000000000 svn.4
563fe5a94cabd170cc0cde3ae3d3989a6d1141f7 svn.1110
0000000000000000000000000000000000000000 svn.1110
564a081accc74d3b805b393d5fa681607f45b916 svn.917
0000000000000000000000000000000000000000 svn.917
56931af41cceed819df913b9b2493682405e941f svn.1098
0000000000000000000000000000000000000000 svn.1098
56abf9195ec818eaa2e835c5d6e5eab7b8f86026 svn.1301
0000000000000000000000000000000000000000 svn.1301
56b1bec77233c6a2931ae689f41cae9653df9256 svn.665
0000000000000000000000000000000000000000 svn.665
571cb5de9bb60035283627328e04e71c7b4de775 svn.1150
0000000000000000000000000000000000000000 svn.1150
5740382d416f07ccff6d90fae77d808657351836 svn.438
0000000000000000000000000000000000000000 svn.438
575c627130dc876053158837c6256830f3fb42d1 svn.850
0000000000000000000000000000000000000000 svn.850
58132b46dc40cb7e24fe03d86014f3075df28110 svn.1728
0000000000000000000000000000000000000000 svn.1728
582f665ff1e445d2fd9d13ab5b4d664e870ac93d svn.874
0000000000000000000000000000000000000000 svn.874
583d35ad9048b887d4c133101ae9c887bf6a3ee6 svn.629
0000000000000000000000000000000000000000 svn.629
586f3a9bab88e5bec339980ab203fa5158f77632 svn.1326
0000000000000000000000000000000000000000 svn.1326
587722d62ac08a1bea1dc44bd3558ae627be6b13 svn.521
0000000000000000000000000000000000000000 svn.521
589441fe2a35347857e3eee6c4b34f6df60325b4 svn.106
0000000000000000000000000000000000000000 svn.106
58c0b0001072e37b6bba4cc3f388988c596ccc5f svn.193
0000000000000000000000000000000000000000 svn.193
58e27b76bcc5f805251ab9cb27b3259862b1e9a8 svn.82
0000000000000000000000000000000000000000 svn.82
58f2a83ce4bd569a69dec333810dabfbf6f3d4d1 svn.163
0000000000000000000000000000000000000000 svn.163
58f3151c7be6b192acc553c9231d671e11c45d49 svn.1760
0000000000000000000000000000000000000000 svn.1760
58fdd26cbf5ac4b554a0cf795d21e137c9321734 svn.230
0000000000000000000000000000000000000000 svn.230
5910084f8704411c3302f85073b08323465cbb6b svn.1261
0000000000000000000000000000000000000000 svn.1261
59394c9e003e1ade5b90330307f96520b8dd7f67 svn.1515
0000000000000000000000000000000000000000 svn.1515
595b63f60ba812ff9063a78734ed181dfff09b83 svn.799
0000000000000000000000000000000000000000 svn.799
5977f55517263d38698d0fb3568e7e9d0865ae23 svn.987
0000000000000000000000000000000000000000 svn.987
59ee86c8657bf5db81aaf4051507e4c330d5d54e svn.362
0000000000000000000000000000000000000000 svn.362
59f08140ee87a987e11d5d5788f20f9e899817c1 svn.1627
0000000000000000000000000000000000000000 svn.1627
5a007c385c4a933cb1efecbb1c5c189f479775d3 svn.945
0000000000000000000000000000000000000000 svn.945
5ab8c1db3dbdf9f6d302ef17da48942a289c1583 svn.1013
0000000000000000000000000000000000000000 svn.1013
5b222b5000d46e6ea65c7d67d6fca5f3a6f5d483 svn.1070
0000000000000000000000000000000000000000 svn.1070
5b636e141f7273bbe593163202da5ee626b65c75 svn.1388
0000000000000000000000000000000000000000 svn.1388
5b82a0336225d5317d86d3cfd63571c3676598eb svn.256
0000000000000000000000000000000000000000 svn.256
5ba2e572a3f18a22cf11eb07f5c857856f8104ab svn.989
0000000000000000000000000000000000000000 svn.989
5bb22493e5e79a48fed30ff120d32233dbec294c svn.391
0000000000000000000000000000000000000000 svn.391
5bbaba649fbf8628a729bc6a208b791d2ec092a1 svn.680
0000000000000000000000000000000000000000 svn.680
5bd0a4b6acd292e5e40527a43aac64379c19fe48 svn.1410
0000000000000000000000000000000000000000 svn.1410
5bfc0b24ec3c698ac3e0da0954df1f2d68404a86 svn.29
0000000000000000000000000000000000000000 svn.29
5c269386e9fb9dfbe0b3a622d0ac2a40eababe1b svn.954
0000000000000000000000000000000000000000 svn.954
5c3608dee30a07df0460ddac10b5ff333e021de5 svn.327
0000000000000000000000000000000000000000 svn.327
5c4990c765ac586cb341b41508300c5a88b1126d svn.592
0000000000000000000000000000000000000000 svn.592
5cea2a1eaaa054e8e4e204eb27117ab3215adb25 svn.659
0000000000000000000000000000000000000000 svn.659
5cf867e52b3db29da760ef52ce2f5e8e8211d3c2 svn.1535
0000000000000000000000000000000000000000 svn.1535
5cfc7ef09092f692c0dd25a33260952db53afe3f svn.266
0000000000000000000000000000000000000000 svn.266
5d563977f72716f03f98049a416d315636723103 svn.621
0000000000000000000000000000000000000000 svn.621
5d6603bc222175178fc7da0c5668bc4c54ed3021 svn.1394
0000000000000000000000000000000000000000 svn.1394
5d7dba2c1c644a3715f716d1ca260db24a768637 svn.275
0000000000000000000000000000000000000000 svn.275
5e047513c0ea6bd422ac2690e5b5dde28d7b0cc4 svn.1419
0000000000000000000000000000000000000000 svn.1419
5e5997d5cb03c6c7181fb513b07850d524a5082e svn.1585
0000000000000000000000000000000000000000 svn.1585
5ebb6b6af2ad27ce2eeec087b8963239a155725d svn.1669
0000000000000000000000000000000000000000 svn.1669
5efc0b3122438f19ba247a468922513ff3dc3f4d svn.635
0000000000000000000000000000000000000000 svn.635
5f0b8e82d58651c951c356a705e3e4526ba8dbe4 svn.580
0000000000000000000000000000000000000000 svn.580
5f4ad86c159e3397e6187c9fd01f229fa72a819d svn.1604
0000000000000000000000000000000000000000 svn.1604
5f5bda1a0b4af8978f5cd03fdba4d72d114ac1b5 svn.713
0000000000000000000000000000000000000000 svn.713
5f5ce1d0313d39aba65fb360c2b43b0f2b6a516a svn.1116
0000000000000000000000000000000000000000 svn.1116
5f6ee3f0aaee445dfb9bb26c8dbef30bd4f2f63c svn.681
0000000000000000000000000000000000000000 svn.681
5f86cdef685f59a577fbf8b91ce8b6419ba83f1c svn.183
0000000000000000000000000000000000000000 svn.183
5fa4de6cb71b9e6b9827a25d7612fb4faa0a51f5 svn.966
0000000000000000000000000000000000000000 svn.966
5fd9f895384805dfd3ebc54e4b27f1acbe452064 svn.140
0000000000000000000000000000000000000000 svn.140
5fe392f15c2ad1970936acae1c40efa804a71276 svn.181
0000000000000000000000000000000000000000 svn.181
60864a7b7dce7563b202c1406adca49d761c6504 svn.1276
0000000000000000000000000000000000000000 svn.1276
60d13dff6a0039f4fa6623a034bd94db7ee7b9ad svn.764
0000000000000000000000000000000000000000 svn.764
60d1b329e1a41b4518091df6131b84b0ef37ad90 svn.542
0000000000000000000000000000000000000000 svn.542
6131ac5ee202b715f9aa5851f86e1142ef531877 svn.1158
0000000000000000000000000000000000000000 svn.1158
6146454a0fe14b8258bf030278a01db0f1df4404 svn.1033
0000000000000000000000000000000000000000 svn.1033
61df1dd85a78eb81890b01fbe2fa91ef4315ecf7 svn.1593
0000000000000000000000000000000000000000 svn.1593
61f2232514ecd36ae07e1e7d4c199c207de9f047 svn.190
0000000000000000000000000000000000000000 svn.190
61f44c6c06abdd3a459eaf4cb84e4ce5689f5b60 svn.845
0000000000000000000000000000000000000000 svn.845
6222bb8d5b37ae0132d8ebd7bd4b7a48db94e684 svn.1703
0000000000000000000000000000000000000000 svn.1703
62631b24fc1de5dacd71f9e72db09763c3cf6268 svn.573
0000000000000000000000000000000000000000 svn.573
628d1287a686c1410b25f5911527f11700800d71 svn.1556
0000000000000000000000000000000000000000 svn.1556
62aa37991851a45af59b39bca7a205454c62ff4b svn.1032
0000000000000000000000000000000000000000 svn.1032
62bc90b08b309e14eafe31ce70ba0b4b50714a10 svn.67
0000000000000000000000000000000000000000 svn.67
62db9cb4103179bdc81fc4aa6dc2c06b51ecdc15 svn.117
0000000000000000000000000000000000000000 svn.117
630f4d0b6c7f16d54298d5d9950cdad53ed0cb6d svn.1251
0000000000000000000000000000000000000000 svn.1251
63150727b1c7fecfa9ce6464779818683fb19487 svn.905
0000000000000000000000000000000000000000 svn.905
63283a4591bd46de9a1d814d068f68cc43a9c976 svn.1120
0000000000000000000000000000000000000000 svn.1120
6374e52f7c0628aa7e52154913ccbd9fa9c24330 svn.279
0000000000000000000000000000000000000000 svn.279
6399da8dd8baccfe0d3c23e1a79e38e6c5830f30 svn.737
0000000000000000000000000000000000000000 svn.737
63b2f81eede89f8ffca37bfc9346336a1947b862 svn.1659
0000000000000000000000000000000000000000 svn.1659
6404f6fc8d5b21a924d342f6acc3cea816f7f23f svn.1755
0000000000000000000000000000000000000000 svn.1755
640a15ddafccbebe106d2b21793cea1c68946a49 svn.1055
0000000000000000000000000000000000000000 svn.1055
6468c80e3d4a0ee4abea5b54c373e48d503ba593 svn.1683
0000000000000000000000000000000000000000 svn.1683
646c70e7e5f886dd105d69a66acd1f5c98bcc5c0 svn.72
0000000000000000000000000000000000000000 svn.72
64a713646ea00b15ff2939c56b194137cac32e5b svn.442
0000000000000000000000000000000000000000 svn.442
64d34a6c43b5d5ced5ea8c59070b9c2c10995f8b svn.97
0000000000000000000000000000000000000000 svn.97
64eb4a5f8d329069fb4f3275806980653f0d2276 svn.229
0000000000000000000000000000000000000000 svn.229
64fc2c2c26c8db2336b1e0ed2b797f59a63a742d svn.784
0000000000000000000000000000000000000000 svn.784
654597a4199eed35dfa820947a59a7c18d723474 svn.1113
0000000000000000000000000000000000000000 svn.1113
654ad8eff684ed6ca368a00610e5dc2ce86ae3ff svn.970
0000000000000000000000000000000000000000 svn.970
65602799686748be921aac98aa0c2ef5a1fffa2f svn.723
0000000000000000000000000000000000000000 svn.723
6593d04b9f7cbd1f04d6fd89f3a999c9090caa9d svn.1526
0000000000000000000000000000000000000000 svn.1526
65b6222af795244499cd3c0202b5114dda0045e0 svn.1801
0000000000000000000000000000000000000000 svn.1801
65bb67f50da97f1a23c3f36bb9b62496658e9548 svn.1570
0000000000000000000000000000000000000000 svn.1570
65fd080af335c1b0e73c167521e24e9fc48c5d1d svn.1584
0000000000000000000000000000000000000000 svn.1584
661648ac517628eb254a31e2bc703d92b999782e svn.1294
0000000000000000000000000000000000000000 svn.1294
662560be753e9b4a9623791070baf0b86f1b84d0 svn.1488
0000000000000000000000000000000000000000 svn.1488
6662340b2f89c68c21db7a8299a7082e1dfe8d76 svn.1727
0000000000000000000000000000000000000000 svn.1727
667d55685a4a9007c7a142f2121fd1eee585b93b svn.727
0000000000000000000000000000000000000000 svn.727
6687e9fcf14eceda46be690d854e88c645ea5f04 svn.1691
0000000000000000000000000000000000000000 svn.1691
67096d5c2f230606afb316251be252c698cdfe7b svn.609
0000000000000000000000000000000000000000 svn.609
6723708753a0619323dd98434f752422f0a02cb9 svn.1325
0000000000000000000000000000000000000000 svn.1325
681fea5f217b1434801bf4693c5d891f0d0902d1 svn.883
0000000000000000000000000000000000000000 svn.883
6859b5230d62685f9a1be0e18f4f3e69b6afcaca svn.908
0000000000000000000000000000000000000000 svn.908
686a4b9d4f6b43f78a50735357253ab86c8c67b8 svn.1080
0000000000000000000000000000000000000000 svn.1080
687342e70dd55711de85c904f60f3b15f291f60c svn.413
0000000000000000000000000000000000000000 svn.413
687bcd6b35ab8d1e106f0e92520641bb20c6d464 svn.1025
0000000000000000000000000000000000000000 svn.1025
689b60640d60e1a36429e6f979a6cc06f2be0a11 svn.1686
0000000000000000000000000000000000000000 svn.1686
68b5418c549309274ab2caf5872b1bcab3ef89ab svn.937
0000000000000000000000000000000000000000 svn.937
68c17c12fc55b70c72ff10571f1dd1b0bfec03ce svn.1207
0000000000000000000000000000000000000000 svn.1207
68c3e7c4f2039b94b3b35150d1f5bd040081359f svn.1440
0000000000000000000000000000000000000000 svn.1440
68d2052f11c58ed5274309bcb2fabdf46cbd15be svn.566
0000000000000000000000000000000000000000 svn.566
68eba7c3b1dc0b8f9a546acf7722c9b7223919f2 svn.236
0000000000000000000000000000000000000000 svn.236
68ffb81df06dfe917f1515bbf66ec957c53ee51a svn.520
0000000000000000000000000000000000000000 svn.520
692c0b3e97df1a6324a0a97dbe792bc602c499ce svn.172
0000000000000000000000000000000000000000 svn.172
697a25de00456d499e7e738e8fc8e7998621b277 svn.617
0000000000000000000000000000000000000000 svn.617
698232e5ae717bd73a966b3d7534de356230423d svn.801
0000000000000000000000000000000000000000 svn.801
699ed7fe298ed364faa6b6bfdd9bf07705f3ede6 svn.804
0000000000000000000000000000000000000000 svn.804
69af6d8252c18596851585164364b63034963663 svn.1311
0000000000000000000000000000000000000000 svn.1311
6a4c7518d9d62ec15209325b3332b4c6be89801b svn.503
0000000000000000000000000000000000000000 svn.503
6a81cc9d3b086744e03f22ab687f2b3fae123b72 svn.1220
0000000000000000000000000000000000000000 svn.1220
6a9c3420d3ee2c6319c5c3a754bdee278d1c9373 svn.130
0000000000000000000000000000000000000000 svn.130
6b089c0f0a634d5638c21a3194a385592ee0946c svn.1362
0000000000000000000000000000000000000000 svn.1362
6ba57547250acbac6bcff8e2f8938e7e65125ff3 svn.605
0000000000000000000000000000000000000000 svn.605
6bbb4ccb07cd993eb5c92481dc46b1f73639c10a svn.717
0000000000000000000000000000000000000000 svn.717
6bf4f8d5eff7a64b6d905f0255ba9f79c492851b svn.948
0000000000000000000000000000000000000000 svn.948
6c1246ac86ccd1d01c56e80d256758b64837e72c svn.220
0000000000000000000000000000000000000000 svn.220
6c545b458dc785a1d22929fe38fc9ef122ed3e62 svn.918
0000000000000000000000000000000000000000 svn.918
6c6edf1ce01f47f9a93ced398c14e44e287a65df svn.1653
0000000000000000000000000000000000000000 svn.1653
6c81db75b3713c0c889b70aca2e1f79ca358d0d1 svn.931
0000000000000000000000000000000000000000 svn.931
6c8b5837bc619afb424e773811a2812ce7e2d1b8 svn.619
0000000000000000000000000000000000000000 svn.619
6ca95e61d7bbf5829ffb21a4e53569ac9ed9109b svn.239
0000000000000000000000000000000000000000 svn.239
6cb0fd747334aadec07001c234477c6c432c8b9a svn.647
0000000000000000000000000000000000000000 svn.647
6cdeac9c78459431afd34a2889c791f8136caf91 svn.1694
0000000000000000000000000000000000000000 svn.1694
6ce14ad1e51f11d3a12f9e87336a824027db1d5e svn.691
0000000000000000000000000000000000000000 svn.691
6ce695d22d29d5830eb088c3ed4e8b0686e8161c svn.919
0000000000000000000000000000000000000000 svn.919
6cf9a71903dd8c412769486fd3e49d883f0a662d svn.443
0000000000000000000000000000000000000000 svn.443
6d2a962a88f101661e49a204a2b927b1ff691f48 svn.678
0000000000000000000000000000000000000000 svn.678
6d3b895da46ff0df28d07ff1b44aeafab92420e1 svn.632
0000000000000000000000000000000000000000 svn.632
6d619bcb275f9b26471116f080ec40806fb39f57 svn.1287
0000000000000000000000000000000000000000 svn.1287
6e103b5715f877a532d24467a72ce798e14d7917 svn.1406
0000000000000000000000000000000000000000 svn.1406
6e1088ed75b3e709e1c1303d4a6174a14092e315 svn.650
0000000000000000000000000000000000000000 svn.650
6e36c78fa82cd595dffb857cfcc61974596ffda5 svn.1547
0000000000000000000000000000000000000000 svn.1547
6e4b1b54fb1655d880c73c0b586fa9846e3e8406 svn.1688
0000000000000000000000000000000000000000 svn.1688
6e7bbb959a509d936fec8de148068fd5eb4e0e65 svn.1587
0000000000000000000000000000000000000000 svn.1587
6ea12918249c2998d5322490e2d10c2ebfb850b1 svn.837
0000000000000000000000000000000000000000 svn.837
6ea7649495f915e64fa6774b9c3432ccea684619 svn.381
0000000000000000000000000000000000000000 svn.381
6ec1218a11b3cceaea156fdc3925b95b5c16ea8b svn.915
0000000000000000000000000000000000000000 svn.915
6ef8fcc1c3cb89dadd48075eca10ecbf1521b343 svn.1081
0000000000000000000000000000000000000000 svn.1081
6eff9c0a4e808a63f5a4ddcdfef919e04d289596 svn.493
0000000000000000000000000000000000000000 svn.493
6f38cb6673f788712881c4f21a4976347a4704b1 svn.1511
0000000000000000000000000000000000000000 svn.1511
6f4eaaa712be7e5e560908b01de6e21a64dff80d svn.127
0000000000000000000000000000000000000000 svn.127
6f67d9ddf8d17e4274170ac479cd38e8eeedd5f9 svn.1142
0000000000000000000000000000000000000000 svn.1142
6f984ee68a329be4627566d3cfb74e902b9478ef svn.46
0000000000000000000000000000000000000000 svn.46
6fc6d87835f7cda31110259830cb290751782550 svn.1641
0000000000000000000000000000000000000000 svn.1641
702eaddefa978d541c1827b8aaccadd1fb936637 svn.433
0000000000000000000000000000000000000000 svn.433
70372e292703c1ee793ee744230c04aa2394616a svn.780
0000000000000000000000000000000000000000 svn.780
708164359b80fd2fd9ab08eda67d8cd12bcae4b7 svn.343
0000000000000000000000000000000000000000 svn.343
709dc1862b92b31553ccc62257d14a1e7d94df39 svn.923
0000000000000000000000000000000000000000 svn.923
70a1a0a74e029a222b621a0b51d34aa1eed96c95 svn.491
0000000000000000000000000000000000000000 svn.491
70b7809f00af3a82fbe52f4a31bbed429c57fedc svn.1403
0000000000000000000000000000000000000000 svn.1403
70d83691afa7c302cf779c4318c155711f18a1c4 svn.1657
0000000000000000000000000000000000000000 svn.1657
70e2a6cfac20b5db6fad69c089c04fe85c28ce66 svn.1539
0000000000000000000000000000000000000000 svn.1539
711eff34e373cf3adb738ac08b5e3d6bef81167d svn.1349
0000000000000000000000000000000000000000 svn.1349
712da1b22a9adcb3376d45aab846fea2863dc643 svn.677
0000000000000000000000000000000000000000 svn.677
71d855ee2ff5db8d2031e21ef1110f8d1e25d349 svn.947
0000000000000000000000000000000000000000 svn.947
71df7de83845443319030e411ca63311b94cb2b7 svn.1478
0000000000000000000000000000000000000000 svn.1478
71ed0fd7b8b04dfb59e9d042ad5c16fe03e4603c svn.17
0000000000000000000000000000000000000000 svn.17
71f40c26df79f4b2abe46202b8702e1e7401f1cd svn.311
0000000000000000000000000000000000000000 svn.311
72142f3034df364a1b4c6744029df460e5dd08b7 svn.708
0000000000000000000000000000000000000000 svn.708
7237c3e3741bccf2b48c8761b29ec61f7a74140c svn.1453
0000000000000000000000000000000000000000 svn.1453
72f6e65b00f97472581f40f699677f3295d02f74 svn.1274
0000000000000000000000000000000000000000 svn.1274
735372855c47bebac5cefb53729706320c3e5db5 svn.933
0000000000000000000000000000000000000000 svn.933
73595cab8615e185936ee4f2f5ce8ffd0ba00193 svn.1093
0000000000000000000000000000000000000000 svn.1093
736b7d80d82e8c49990daa69d6ee152c3f549964 svn.1246
0000000000000000000000000000000000000000 svn.1246
7394cb16a2a56787d29fb2c1238cfd4375a32609 svn.578
0000000000000000000000000000000000000000 svn.578
73a5f43fbe5bf5a022fbaff1c1f681759b24caab svn.1665
0000000000000000000000000000000000000000 svn.1665
74a4cd9f3ae216250fec79d31d996cf1ca77b84c svn.969
0000000000000000000000000000000000000000 svn.969
74cac79b667c492030da162ecd3d1a7dc67f1a08 svn.101
0000000000000000000000000000000000000000 svn.101
74cdf93273b4464daaeffab3a89d3e78da35bc0d svn.53
0000000000000000000000000000000000000000 svn.53
74e0d6b46fd1d62791d1733a06eb09e4b8fe831f svn.240
0000000000000000000000000000000000000000 svn.240
74f83c44f9a21237d01ab53bd7abb8b8c2d69e05 svn.1168
0000000000000000000000000000000000000000 svn.1168
750a31f01a28f9d0b0d10acbb3ae2c44443484f0 svn.1562
0000000000000000000000000000000000000000 svn.1562
75210b13d831d6480f07f3972ebe7efca4518663 svn.876
0000000000000000000000000000000000000000 svn.876
75309fa251bb4ff0900cbf37a584ec031ee33b16 svn.630
0000000000000000000000000000000000000000 svn.630
755d312a7136f6f5a569fdfaec07ad68bac257bf svn.1103
0000000000000000000000000000000000000000 svn.1103
75a2b0dd253f65fe75245d39f99497dad64da56a svn.1085
0000000000000000000000000000000000000000 svn.1085
75ac4861c335b9aff04c88be698b230090b03670 svn.839
0000000000000000000000000000000000000000 svn.839
75c736efedb4d64cdb5f027e91ed8ad21347dd2e svn.79
0000000000000000000000000000000000000000 svn.79
75d8c13524ccb9288d4da283aa7ba549b2a3abcd svn.1761
0000000000000000000000000000000000000000 svn.1761
760e0159100ea5fefea7242935982079f2602887 svn.1794
0000000000000000000000000000000000000000 svn.1794
761f86756a571580948a3150ff87221385366a3e svn.1558
0000000000000000000000000000000000000000 svn.1558
7666c6bbca4e4e3919706326334cae0053f31b16 svn.766
0000000000000000000000000000000000000000 svn.766
766e39ca35babe04b4b3250a5b4f0376ecdef01d svn.1746
0000000000000000000000000000000000000000 svn.1746
767a773a9e84eba48e07336691f67c1edbaf5548 svn.671
0000000000000000000000000000000000000000 svn.671
76979776bfc1ec51682e9b97fbeb9d17ab50d32a svn.335
0000000000000000000000000000000000000000 svn.335
76e08fa2a955c3e00c1fd0fee294d843aafdeaa5 svn.448
0000000000000000000000000000000000000000 svn.448
76fe7986694b008839ebbab7f57fa496fdcf6d25 svn.1189
0000000000000000000000000000000000000000 svn.1189
7729282bc88011ed2fab9462b4b31098d0b83b82 svn.1079
0000000000000000000000000000000000000000 svn.1079
772a2004987d3cf59b96d2d9b2975616af016e58 svn.296
0000000000000000000000000000000000000000 svn.296
7737bf992702e8ea55f9b8c9aa445ca679eafc9d svn.806
0000000000000000000000000000000000000000 svn.806
773914366850d4cdf88ba6357f438cd2427f4756 svn.1090
0000000000000000000000000000000000000000 svn.1090
77480357e062086dfa46e00a21d21254509573ff svn.1010
0000000000000000000000000000000000000000 svn.1010
7752741ad8b4c001ade2fe52d850be728c9a6d8f svn.576
0000000000000000000000000000000000000000 svn.576
7777f6ab1b807c8ea8374e6ce51c7e23d1a64a2b svn.735
0000000000000000000000000000000000000000 svn.735
77ad4648ed8d7caf993cbe9a0c9fa98cbd0c7f22 svn.1429
0000000000000000000000000000000000000000 svn.1429
77faf7f8d8624cb1cc71a9abbb389264633f245c svn.1599
0000000000000000000000000000000000000000 svn.1599
78684d161c28f74eb080c8e347cc07affe5e2811 svn.11
0000000000000000000000000000000000000000 svn.11
78714479ec4b1655ed63ab753e7eb64194bbce49 svn.1731
0000000000000000000000000000000000000000 svn.1731
7888876baa70393e25dc7ee3f5d5fc0060cbfc69 svn.396
0000000000000000000000000000000000000000 svn.396
78c7a2cd4c6f48e839680c2e0768f61452a1d69a svn.925
0000000000000000000000000000000000000000 svn.925
78c9ba1b013b12576663205993f06b43339a75b6 svn.31
0000000000000000000000000000000000000000 svn.31
78eeba413131359509eea37964279674e88921bd svn.1664
0000000000000000000000000000000000000000 svn.1664
78f011aadd008a23a3cf1c16e659a7bfd01f0b80 svn.1525
0000000000000000000000000000000000000000 svn.1525
78f0aea62cd4526c40099b890429cda11414d684 svn.1213
0000000000000000000000000000000000000000 svn.1213
79375d6353efca8288ef5673c48e7c465b8a72e2 svn.1003
0000000000000000000000000000000000000000 svn.1003
79bc3d944298a10b1621e3dafeaa4a46f6d18069 svn.721
0000000000000000000000000000000000000000 svn.721
79cc0fb85cd94fb15ea9e2ae09c44c638355aa05 svn.43
0000000000000000000000000000000000000000 svn.43
79f2c675f9dbf256fd7c730bd00f742124be519e svn.126
0000000000000000000000000000000000000000 svn.126
7a38f6e17dc8c0350c274892ddd761bf5b35cca7 svn.310
0000000000000000000000000000000000000000 svn.310
7a4795f2964b41b738e697cce7cec0bbeef758e1 svn.1009
0000000000000000000000000000000000000000 svn.1009
7a4a905ac83dc3dce44a6b8954221e7a937b1b39 svn.936
0000000000000000000000000000000000000000 svn.936
7abdf2775d80674580dcb2ee742af8ce3a28bf80 svn.1439
0000000000000000000000000000000000000000 svn.1439
7ae0e86d0ae77ac1e40bf9fa7b42cdcebb32ea11 svn.698
0000000000000000000000000000000000000000 svn.698
7af1b07907d92d18a1891139956cc0acc63a34f3 svn.1339
0000000000000000000000000000000000000000 svn.1339
7af46f2766cee10bb777ec28057d33027f54e582 svn.1148
0000000000000000000000000000000000000000 svn.1148
7b093458569729c245fcbbcff0264a7ec9ddb0aa svn.280
0000000000000000000000000000000000000000 svn.280
7b3988fc85a4f3547220effcd9fdc01c85ae29d3 svn.1258
0000000000000000000000000000000000000000 svn.1258
7b4ea78d32f125a8ed976d98fd7a8270c61ba145 svn.265
0000000000000000000000000000000000000000 svn.265
7b79ca45ed746cda3e4be06913a4fc938aac2f2e svn.1169
0000000000000000000000000000000000000000 svn.1169
7bc1265533579cb4e7542be7376d77a2bbeb42f2 svn.119
0000000000000000000000000000000000000000 svn.119
7bea2bddb35fe07eaeea753cab6edc8486df96b3 svn.1286
0000000000000000000000000000000000000000 svn.1286
7c29c4151f71a24a11af92a03468db6656575db0 svn.1792
0000000000000000000000000000000000000000 svn.1792
7c2a177f330a773e3378db85d194dec33f84043a svn.1733
0000000000000000000000000000000000000000 svn.1733
7c341522bf86c7e10bb655f7f6314aa34eca4b16 svn.465
0000000000000000000000000000000000000000 svn.465
7c3e587ecad52c6e36daf00795fdb3f7eaa065b2 svn.1616
0000000000000000000000000000000000000000 svn.1616
7c5785af82057e3a3854e5a3f757f9ba0b7d3d63 svn.697
0000000000000000000000000000000000000000 svn.697
7c73ea93d3baf7668938452a5c6ec66aeb8288d8 svn.1105
0000000000000000000000000000000000000000 svn.1105
7c7d8e04c7806fea442209f75fec5b5b5d753c94 svn.831
0000000000000000000000000000000000000000 svn.831
7c8b269f72c0cf2e3a672b0d21b931b89776e4e9 svn.10
0000000000000000000000000000000000000000 svn.10
7c903124520810e58dcdac13bd2ed621e12f428b svn.817
0000000000000000000000000000000000000000 svn.817
7c9cac9f2405fbcf56e45a7a557b1ac8062dfb19 svn.1050
0000000000000000000000000000000000000000 svn.1050
7caae7bbcb13c6b8485c0db265f7f69dbe1db4e3 svn.1368
0000000000000000000000000000000000000000 svn.1368
7ccb68386f7d9364e65edba381b48fc14050b311 svn.1781
0000000000000000000000000000000000000000 svn.1781
7d0f2b21b8275bf67204c564ea9ac3924d09d24c svn.1066
0000000000000000000000000000000000000000 svn.1066
7d2a9e665687315a5d1d69e5e9376442f79dae77 svn.1235
0000000000000000000000000000000000000000 svn.1235
7d2f5d03022601376011f87f26bc0c36ae0ec1c6 svn.1315
0000000000000000000000000000000000000000 svn.1315
7d309c66861fce2272a43bca230d4ba836f73883 svn.1763
0000000000000000000000000000000000000000 svn.1763
7d6ad92040f2d8b47aaad7c7abbfff718b66c57b svn.431
0000000000000000000000000000000000000000 svn.431
7d6cf76197562ee72b1974a83a30f93c82435a2e svn.471
0000000000000000000000000000000000000000 svn.471
7db82d6cda20f252f4733db0ef9102d6ec286e06 svn.489
0000000000000000000000000000000000000000 svn.489
7e0d7092347ea2b7624d564cf13d71256b0b60ec svn.452
0000000000000000000000000000000000000000 svn.452
7e2d16dd5cf4f8d8172cc7e5751439aad3ecd447 svn.1418
0000000000000000000000000000000000000000 svn.1418
7e2e758ee8c97c7ce30278510e2a98f7d6ca395e svn.1341
0000000000000000000000000000000000000000 svn.1341
7e45cc2e299134dcf3ad2acf71201fe776d67454 svn.1752
0000000000000000000000000000000000000000 svn.1752
7e499a54d7b873e421c947ca39dbefaefaaa320c svn.598
0000000000000000000000000000000000000000 svn.598
7e6075aa2eccd5b67e3e5b7b315d2278b2e935e1 svn.1345
0000000000000000000000000000000000000000 svn.1345
7e65dffd52574ce677cbcef4ce759075cf3fda5a svn.960
0000000000000000000000000000000000000000 svn.960
7e71cef8e31d2c47a572349bfc239fefac96667d svn.164
0000000000000000000000000000000000000000 svn.164
7e7368e614c8032e21271a16632ef023a49ee8b0 svn.601
0000000000000000000000000000000000000000 svn.601
7e7a74d7ccb5b49b1748b3edeae17ff57781bd35 svn.999
0000000000000000000000000000000000000000 svn.999
7e84bbe40c5b7cffc577533ccea6a6fd61dc3c1b svn.656
0000000000000000000000000000000000000000 svn.656
7e93a63d6a63caf65d7de26223500352cea35c14 svn.1508
0000000000000000000000000000000000000000 svn.1508
7ee5f2feb9d59aad4eb6af41de7ba2d62494acc1 svn.652
0000000000000000000000000000000000000000 svn.652
7ef6994a5fadebf07519c641cf4b72d824cff518 svn.1693
0000000000000000000000000000000000000000 svn.1693
7f3fd5b887bb0fd1a54a948aa1b5d1026e6bdb96 svn.89
0000000000000000000000000000000000000000 svn.89
7f538f497ed08bd28b75ce150f261436e7dddce3 svn.1145
0000000000000000000000000000000000000000 svn.1145
7fa3ac5cade9adaccefa58726779de6adb1087a1 svn.868
0000000000000000000000000000000000000000 svn.868
8015f503c5ec815b64e60a3a67881cfc4c6df7cc svn.597
0000000000000000000000000000000000000000 svn.597
80ac83abd52bc4809da224207756eb3da581449d svn.505
0000000000000000000000000000000000000000 svn.505
80bad282cbf8785f907a1c198a8161be5a950057 svn.124
0000000000000000000000000000000000000000 svn.124
80cc3028703002db687c12bb3ceb64f5d6a53ed7 svn.474
0000000000000000000000000000000000000000 svn.474
80cf6aa16a2702f47990aef67530abf723df077a svn.701
0000000000000000000000000000000000000000 svn.701
80e43391ea11ba35c3ade9a0427f3b76a1db756e svn.688
0000000000000000000000000000000000000000 svn.688
80e7766e9707df387d86d6557efd16208da60b96 svn.1083
0000000000000000000000000000000000000000 svn.1083
8118a10e79c3287b3df44eb9bb3d83a3499f20a1 svn.673
0000000000000000000000000000000000000000 svn.673
812a377719680b1817d6b4d
Download .txt
gitextract_qdvf8_62/

├── .codecov.yml
├── .coveragerc
├── .git-blame-ignore-revs
├── .github/
│   ├── CODEOWNERS
│   ├── ISSUE_TEMPLATE.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── config.yml
│   ├── dependabot.yml
│   ├── mergeable.yml
│   └── workflows/
│       ├── bleeding-edge.yaml
│       ├── build-test.yaml
│       ├── type-checking.yaml
│       └── wheels.yaml
├── .gitignore
├── .gitmodules
├── .hgchurn
├── .hgtags
├── .mailmap
├── .pre-commit-config.yaml
├── .tours/
│   └── particle-indexing.tour
├── CITATION
├── CONTRIBUTING.rst
├── COPYING.txt
├── CREDITS
├── MANIFEST.in
├── README.md
├── clean.sh
├── conftest.py
├── doc/
│   ├── Makefile
│   ├── README
│   ├── activate
│   ├── activate.csh
│   ├── cheatsheet.tex
│   ├── docstring_idioms.txt
│   ├── extensions/
│   │   ├── README
│   │   ├── config_help.py
│   │   ├── pythonscript_sphinxext.py
│   │   ├── yt_colormaps.py
│   │   ├── yt_cookbook.py
│   │   └── yt_showfields.py
│   ├── helper_scripts/
│   │   ├── code_support.py
│   │   ├── parse_cb_list.py
│   │   ├── parse_dq_list.py
│   │   ├── parse_object_list.py
│   │   ├── run_recipes.py
│   │   ├── show_fields.py
│   │   ├── split_auto.py
│   │   └── table.py
│   └── source/
│       ├── _static/
│       │   └── custom.css
│       ├── _templates/
│       │   ├── autosummary/
│       │   │   └── class.rst
│       │   └── layout.html
│       ├── about/
│       │   └── index.rst
│       ├── analyzing/
│       │   ├── Particle_Trajectories.ipynb
│       │   ├── _static/
│       │   │   ├── axes.c
│       │   │   ├── axes.h
│       │   │   ├── axes_calculator.pyx
│       │   │   └── axes_calculator_setup.txt
│       │   ├── astropy_integrations.rst
│       │   ├── domain_analysis/
│       │   │   ├── XrayEmissionFields.ipynb
│       │   │   ├── clump_finding.rst
│       │   │   ├── cosmology_calculator.rst
│       │   │   ├── index.rst
│       │   │   └── xray_data_README.rst
│       │   ├── fields.rst
│       │   ├── filtering.rst
│       │   ├── generating_processed_data.rst
│       │   ├── index.rst
│       │   ├── ionization_cube.py
│       │   ├── mesh_filter.ipynb
│       │   ├── objects.rst
│       │   ├── parallel_computation.rst
│       │   ├── particle_filter.ipynb
│       │   ├── saving_data.rst
│       │   ├── time_series_analysis.rst
│       │   └── units.rst
│       ├── conf.py
│       ├── cookbook/
│       │   ├── amrkdtree_downsampling.py
│       │   ├── annotate_timestamp_and_scale.py
│       │   ├── annotations.py
│       │   ├── average_value.py
│       │   ├── calculating_information.rst
│       │   ├── camera_movement.py
│       │   ├── changing_label_formats.py
│       │   ├── colormaps.py
│       │   ├── complex_plots.rst
│       │   ├── constructing_data_objects.rst
│       │   ├── contours_on_slice.py
│       │   ├── count.sh
│       │   ├── custom_camera_volume_rendering.py
│       │   ├── custom_colorbar_tickmarks.ipynb
│       │   ├── custom_transfer_function_volume_rendering.py
│       │   ├── customized_phase_plot.py
│       │   ├── customized_profile_plot.py
│       │   ├── derived_field.py
│       │   ├── downsampling_amr.py
│       │   ├── extract_fixed_resolution_data.py
│       │   ├── find_clumps.py
│       │   ├── fits_radio_cubes.ipynb
│       │   ├── fits_xray_images.ipynb
│       │   ├── geographic_xforms_and_projections.ipynb
│       │   ├── global_phase_plots.py
│       │   ├── hse_field.py
│       │   ├── image_background_colors.py
│       │   ├── image_resolution.py
│       │   ├── index.rst
│       │   ├── matplotlib-animation.py
│       │   ├── multi_plot_3x2_FRB.py
│       │   ├── multi_plot_slice_and_proj.py
│       │   ├── multi_width_image.py
│       │   ├── multiplot_2x2.py
│       │   ├── multiplot_2x2_coordaxes_slice.py
│       │   ├── multiplot_2x2_time_series.py
│       │   ├── multiplot_export_to_mpl.py
│       │   ├── multiplot_phaseplot.py
│       │   ├── notebook_tutorial.rst
│       │   ├── offaxis_projection.py
│       │   ├── offaxis_projection_colorbar.py
│       │   ├── opaque_rendering.py
│       │   ├── overplot_grids.py
│       │   ├── overplot_particles.py
│       │   ├── particle_filter.py
│       │   ├── particle_filter_sfr.py
│       │   ├── particle_one_color_plot.py
│       │   ├── particle_xvz_plot.py
│       │   ├── particle_xy_plot.py
│       │   ├── power_spectrum_example.py
│       │   ├── profile_with_standard_deviation.py
│       │   ├── rad_velocity.py
│       │   ├── radial_profile_styles.py
│       │   ├── render_two_fields.py
│       │   ├── render_two_fields_tf.py
│       │   ├── rendering_with_box_and_grids.py
│       │   ├── show_hide_axes_colorbar.py
│       │   ├── sigma_clip.py
│       │   ├── simple_1d_line_plot.py
│       │   ├── simple_contour_in_slice.py
│       │   ├── simple_off_axis_projection.py
│       │   ├── simple_off_axis_slice.py
│       │   ├── simple_pdf.py
│       │   ├── simple_phase.py
│       │   ├── simple_plots.rst
│       │   ├── simple_profile.py
│       │   ├── simple_projection.py
│       │   ├── simple_projection_methods.py
│       │   ├── simple_projection_stddev.py
│       │   ├── simple_projection_weighted.py
│       │   ├── simple_radial_profile.py
│       │   ├── simple_slice.py
│       │   ├── simple_slice_matplotlib_example.py
│       │   ├── simple_slice_with_multiple_fields.py
│       │   ├── simple_volume_rendering.py
│       │   ├── simulation_analysis.py
│       │   ├── streamlines.py
│       │   ├── streamlines_isocontour.py
│       │   ├── sum_mass_in_sphere.py
│       │   ├── surface_plot.py
│       │   ├── tests/
│       │   │   └── test_cookbook.py
│       │   ├── thin_slice_projection.py
│       │   ├── time_series.py
│       │   ├── time_series_profiles.py
│       │   ├── tipsy_and_yt.ipynb
│       │   ├── various_lens.py
│       │   ├── velocity_vectors_on_slice.py
│       │   ├── vol-annotated.py
│       │   ├── vol-lines.py
│       │   ├── vol-points.py
│       │   ├── yt_gadget_analysis.ipynb
│       │   ├── yt_gadget_owls_analysis.ipynb
│       │   └── zoomin_frames.py
│       ├── developing/
│       │   ├── building_the_docs.rst
│       │   ├── creating_datatypes.rst
│       │   ├── creating_derived_fields.rst
│       │   ├── creating_frontend.rst
│       │   ├── debugdrive.rst
│       │   ├── deprecating_features.rst
│       │   ├── developing.rst
│       │   ├── extensions.rst
│       │   ├── external_analysis.rst
│       │   ├── index.rst
│       │   ├── releasing.rst
│       │   └── testing.rst
│       ├── examining/
│       │   ├── Loading_Data_via_Functions.ipynb
│       │   ├── Loading_Generic_Array_Data.ipynb
│       │   ├── Loading_Generic_Particle_Data.ipynb
│       │   ├── Loading_Spherical_Data.ipynb
│       │   ├── index.rst
│       │   ├── loading_data.rst
│       │   └── low_level_inspection.rst
│       ├── faq/
│       │   └── index.rst
│       ├── help/
│       │   └── index.rst
│       ├── index.rst
│       ├── installing.rst
│       ├── intro/
│       │   └── index.rst
│       ├── quickstart/
│       │   ├── 1)_Introduction.ipynb
│       │   ├── 2)_Data_Inspection.ipynb
│       │   ├── 3)_Simple_Visualization.ipynb
│       │   ├── 4)_Data_Objects_and_Time_Series.ipynb
│       │   ├── 5)_Derived_Fields_and_Profiles.ipynb
│       │   ├── 6)_Volume_Rendering.ipynb
│       │   └── index.rst
│       ├── reference/
│       │   ├── api/
│       │   │   └── api.rst
│       │   ├── changelog.rst
│       │   ├── code_support.rst
│       │   ├── command-line.rst
│       │   ├── configuration.rst
│       │   ├── demeshening.rst
│       │   ├── field_list.rst
│       │   ├── index.rst
│       │   └── python_introduction.rst
│       ├── visualizing/
│       │   ├── FITSImageData.ipynb
│       │   ├── TransferFunctionHelper_Tutorial.ipynb
│       │   ├── Volume_Rendering_Tutorial.ipynb
│       │   ├── callbacks.rst
│       │   ├── colormaps/
│       │   │   ├── cmap_images.py
│       │   │   └── index.rst
│       │   ├── geographic_projections_and_transforms.rst
│       │   ├── index.rst
│       │   ├── interactive_data_visualization.rst
│       │   ├── manual_plotting.rst
│       │   ├── mapserver.rst
│       │   ├── plots.rst
│       │   ├── sketchfab.rst
│       │   ├── streamlines.rst
│       │   ├── unstructured_mesh_rendering.rst
│       │   ├── visualizing_particle_datasets_with_firefly.rst
│       │   └── volume_rendering.rst
│       ├── yt3differences.rst
│       └── yt4differences.rst
├── nose_answer.cfg
├── nose_ignores
├── nose_unit.cfg
├── pyproject.toml
├── setup.py
├── setupext.py
├── tests/
│   ├── DD0000/
│   │   ├── moving7_0000
│   │   ├── moving7_0000.boundary
│   │   ├── moving7_0000.boundary.hdf
│   │   ├── moving7_0000.grid0001
│   │   ├── moving7_0000.grid0002
│   │   ├── moving7_0000.grid0003
│   │   └── moving7_0000.hierarchy
│   ├── DD0010/
│   │   ├── moving7_0010
│   │   ├── moving7_0010.boundary
│   │   ├── moving7_0010.boundary.hdf
│   │   ├── moving7_0010.cpu0000
│   │   ├── moving7_0010.hierarchy
│   │   └── moving7_0010.procmap
│   ├── README
│   ├── ci_install.sh
│   ├── local001.bak
│   ├── local001.dir
│   ├── matplotlibrc
│   ├── nose_runner.py
│   ├── pytest_runner.py
│   ├── report_failed_answers.py
│   ├── tests.yaml
│   └── unpin_requirements.py
└── yt/
    ├── __init__.py
    ├── _maintenance/
    │   ├── __init__.py
    │   ├── backports.py
    │   ├── deprecation.py
    │   ├── ipython_compat.py
    │   └── numpy2_compat.py
    ├── _typing.py
    ├── _version.py
    ├── analysis_modules/
    │   ├── __init__.py
    │   ├── absorption_spectrum/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── cosmological_observation/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_analysis/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_finding/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── halo_mass_function/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── level_sets/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── particle_trajectories/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── photon_simulator/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── ppv_cube/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── radmc3d_export/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── spectral_integrator/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── star_analysis/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── sunrise_export/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   ├── sunyaev_zeldovich/
    │   │   ├── __init__.py
    │   │   └── api.py
    │   └── two_point_functions/
    │       ├── __init__.py
    │       └── api.py
    ├── api.py
    ├── arraytypes.py
    ├── config.py
    ├── data_objects/
    │   ├── __init__.py
    │   ├── analyzer_objects.py
    │   ├── api.py
    │   ├── construction_data_containers.py
    │   ├── data_containers.py
    │   ├── derived_quantities.py
    │   ├── field_data.py
    │   ├── image_array.py
    │   ├── index_subobjects/
    │   │   ├── __init__.py
    │   │   ├── grid_patch.py
    │   │   ├── octree_subset.py
    │   │   ├── particle_container.py
    │   │   ├── stretched_grid.py
    │   │   └── unstructured_mesh.py
    │   ├── level_sets/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── clump_handling.py
    │   │   ├── clump_info_items.py
    │   │   ├── clump_tools.py
    │   │   ├── clump_validators.py
    │   │   ├── contour_finder.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_clump_finding.py
    │   ├── particle_filters.py
    │   ├── particle_trajectories.py
    │   ├── particle_unions.py
    │   ├── profiles.py
    │   ├── region_expression.py
    │   ├── selection_objects/
    │   │   ├── __init__.py
    │   │   ├── boolean_operations.py
    │   │   ├── cut_region.py
    │   │   ├── data_selection_objects.py
    │   │   ├── disk.py
    │   │   ├── object_collection.py
    │   │   ├── point.py
    │   │   ├── ray.py
    │   │   ├── region.py
    │   │   ├── slices.py
    │   │   └── spheroids.py
    │   ├── static_output.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── test_add_field.py
    │   │   ├── test_bbox.py
    │   │   ├── test_boolean_regions.py
    │   │   ├── test_center_squeeze.py
    │   │   ├── test_chunking.py
    │   │   ├── test_clone.py
    │   │   ├── test_compose.py
    │   │   ├── test_connected_sets.py
    │   │   ├── test_covering_grid.py
    │   │   ├── test_cut_region_chaining.py
    │   │   ├── test_cutting_plane.py
    │   │   ├── test_data_collection.py
    │   │   ├── test_data_containers.py
    │   │   ├── test_dataset_access.py
    │   │   ├── test_derived_quantities.py
    │   │   ├── test_disks.py
    │   │   ├── test_ellipsoid.py
    │   │   ├── test_exclude_functions.py
    │   │   ├── test_extract_regions.py
    │   │   ├── test_firefly.py
    │   │   ├── test_fluxes.py
    │   │   ├── test_image_array.py
    │   │   ├── test_io_geometry.py
    │   │   ├── test_numpy_ops.py
    │   │   ├── test_octree.py
    │   │   ├── test_ortho_rays.py
    │   │   ├── test_particle_filter.py
    │   │   ├── test_particle_trajectories.py
    │   │   ├── test_particle_trajectories_pytest.py
    │   │   ├── test_pickling.py
    │   │   ├── test_points.py
    │   │   ├── test_print_stats.py
    │   │   ├── test_profiles.py
    │   │   ├── test_projection.py
    │   │   ├── test_rays.py
    │   │   ├── test_refinement.py
    │   │   ├── test_regions.py
    │   │   ├── test_registration.py
    │   │   ├── test_slice.py
    │   │   ├── test_sph_data_objects.py
    │   │   ├── test_spheres.py
    │   │   ├── test_time_series.py
    │   │   └── test_units_override.py
    │   ├── time_series.py
    │   └── unions.py
    ├── default.mplstyle
    ├── extensions/
    │   └── __init__.py
    ├── exthook.py
    ├── fields/
    │   ├── __init__.py
    │   ├── angular_momentum.py
    │   ├── api.py
    │   ├── astro_fields.py
    │   ├── astro_simulations.py
    │   ├── cosmology_fields.py
    │   ├── derived_field.py
    │   ├── domain_context.py
    │   ├── field_aliases.py
    │   ├── field_detector.py
    │   ├── field_exceptions.py
    │   ├── field_functions.py
    │   ├── field_info_container.py
    │   ├── field_plugin_registry.py
    │   ├── field_type_container.py
    │   ├── fluid_fields.py
    │   ├── fluid_vector_fields.py
    │   ├── geometric_fields.py
    │   ├── interpolated_fields.py
    │   ├── local_fields.py
    │   ├── magnetic_field.py
    │   ├── my_plugin_fields.py
    │   ├── particle_fields.py
    │   ├── species_fields.py
    │   ├── tensor_fields.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── test_ambiguous_fields.py
    │   │   ├── test_angular_momentum.py
    │   │   ├── test_field_access.py
    │   │   ├── test_field_access_pytest.py
    │   │   ├── test_field_name_container.py
    │   │   ├── test_fields.py
    │   │   ├── test_fields_plugins.py
    │   │   ├── test_fields_pytest.py
    │   │   ├── test_magnetic_fields.py
    │   │   ├── test_particle_fields.py
    │   │   ├── test_species_fields.py
    │   │   ├── test_sph_fields.py
    │   │   ├── test_vector_fields.py
    │   │   └── test_xray_fields.py
    │   ├── vector_operations.py
    │   └── xray_emission_fields.py
    ├── frontends/
    │   ├── __init__.py
    │   ├── _skeleton/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── misc.py
    │   ├── adaptahop/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── ahf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── amrex/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_field_parsing.py
    │   │       └── test_outputs.py
    │   ├── amrvac/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── datfile_utils.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── sample_parfiles/
    │   │       │   ├── bw_3d.par
    │   │       │   └── tvdlf_scheme.par
    │   │       ├── test_outputs.py
    │   │       ├── test_read_amrvac_namelist.py
    │   │       └── test_units_override.py
    │   ├── api.py
    │   ├── arepo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── art/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── artio/
    │   │   ├── __init__.py
    │   │   ├── _artio_caller.pyx
    │   │   ├── api.py
    │   │   ├── artio_headers/
    │   │   │   ├── LICENSE
    │   │   │   ├── artio.c
    │   │   │   ├── artio.h
    │   │   │   ├── artio_endian.c
    │   │   │   ├── artio_endian.h
    │   │   │   ├── artio_file.c
    │   │   │   ├── artio_grid.c
    │   │   │   ├── artio_internal.h
    │   │   │   ├── artio_mpi.c
    │   │   │   ├── artio_mpi.h
    │   │   │   ├── artio_parameter.c
    │   │   │   ├── artio_particle.c
    │   │   │   ├── artio_posix.c
    │   │   │   ├── artio_selector.c
    │   │   │   ├── artio_sfc.c
    │   │   │   ├── cosmology.c
    │   │   │   └── cosmology.h
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── athena/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── athena_pp/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── boxlib/
    │   │   ├── __init__.py
    │   │   ├── _deprecation.py
    │   │   ├── api.py
    │   │   ├── data_structures/
    │   │   │   └── __init__.py
    │   │   ├── fields/
    │   │   │   └── __init__.py
    │   │   ├── io/
    │   │   │   └── __init__.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_boxlib_deprecation.py
    │   │       └── test_outputs.py
    │   ├── cf_radial/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_cf_radial_pytest.py
    │   │       └── test_outputs.py
    │   ├── chimera/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── cholla/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── chombo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── eagle/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── enzo/
    │   │   ├── __init__.py
    │   │   ├── answer_testing_support.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── simulation_handling.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── enzo_e/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_misc.py
    │   │       └── test_outputs.py
    │   ├── exodus_ii/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── simulation_handling.py
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   └── test_outputs.py
    │   │   └── util.py
    │   ├── fits/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── flash/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gadget/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── simulation_handling.py
    │   │   ├── testing.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_gadget_pytest.py
    │   │       └── test_outputs.py
    │   ├── gadget_fof/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gamer/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── cfields.pyx
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── gdf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── conftest.py
    │   │       ├── test_outputs.py
    │   │       └── test_outputs_nose.py
    │   ├── gizmo/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── halo_catalog/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── http_stream/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   └── io.py
    │   ├── moab/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_c5.py
    │   ├── nc4_cm1/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── open_pmd/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── owls/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── owls_ion_tables.py
    │   │   ├── simulation_handling.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── owls_subfind/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── parthenon/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── ramses/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── field_handlers.py
    │   │   ├── fields.py
    │   │   ├── hilbert.py
    │   │   ├── io.py
    │   │   ├── io_utils.pyx
    │   │   ├── particle_handlers.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_file_sanitizer.py
    │   │       ├── test_hilbert.py
    │   │       ├── test_outputs.py
    │   │       └── test_outputs_pytest.py
    │   ├── rockstar/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── sdf/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── misc.py
    │   ├── sph/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   └── io.py
    │   ├── stream/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   ├── misc.py
    │   │   ├── sample_data/
    │   │   │   ├── __init__.py
    │   │   │   ├── hexahedral_mesh.py
    │   │   │   └── tetrahedral_mesh.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_callable_grids.py
    │   │       ├── test_outputs.py
    │   │       ├── test_stream_amrgrids.py
    │   │       ├── test_stream_hexahedral.py
    │   │       ├── test_stream_octree.py
    │   │       ├── test_stream_particles.py
    │   │       ├── test_stream_species.py
    │   │       ├── test_stream_stretched.py
    │   │       ├── test_stream_unstructured.py
    │   │       └── test_update_data.py
    │   ├── swift/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   ├── tipsy/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── data_structures.py
    │   │   ├── definitions.py
    │   │   ├── fields.py
    │   │   ├── io.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       └── test_outputs.py
    │   └── ytdata/
    │       ├── __init__.py
    │       ├── api.py
    │       ├── data_structures.py
    │       ├── fields.py
    │       ├── io.py
    │       ├── tests/
    │       │   ├── __init__.py
    │       │   ├── test_data_reload.py
    │       │   ├── test_old_outputs.py
    │       │   ├── test_outputs.py
    │       │   └── test_unit.py
    │       └── utilities.py
    ├── funcs.py
    ├── geometry/
    │   ├── __init__.py
    │   ├── _selection_routines/
    │   │   ├── always_selector.pxi
    │   │   ├── boolean_selectors.pxi
    │   │   ├── compose_selector.pxi
    │   │   ├── cut_region_selector.pxi
    │   │   ├── cutting_plane_selector.pxi
    │   │   ├── data_collection_selector.pxi
    │   │   ├── disk_selector.pxi
    │   │   ├── ellipsoid_selector.pxi
    │   │   ├── grid_selector.pxi
    │   │   ├── halo_particles_selector.pxi
    │   │   ├── indexed_octree_subset_selector.pxi
    │   │   ├── octree_subset_selector.pxi
    │   │   ├── ortho_ray_selector.pxi
    │   │   ├── point_selector.pxi
    │   │   ├── ray_selector.pxi
    │   │   ├── region_selector.pxi
    │   │   ├── selector_object.pxi
    │   │   ├── slice_selector.pxi
    │   │   └── sphere_selector.pxi
    │   ├── api.py
    │   ├── coordinates/
    │   │   ├── __init__.py
    │   │   ├── api.py
    │   │   ├── cartesian_coordinates.py
    │   │   ├── coordinate_handler.py
    │   │   ├── cylindrical_coordinates.py
    │   │   ├── geographic_coordinates.py
    │   │   ├── polar_coordinates.py
    │   │   ├── spec_cube_coordinates.py
    │   │   ├── spherical_coordinates.py
    │   │   └── tests/
    │   │       ├── __init__.py
    │   │       ├── test_axial_pixelization.py
    │   │       ├── test_cartesian_coordinates.py
    │   │       ├── test_cylindrical_coordinates.py
    │   │       ├── test_geographic_coordinates.py
    │   │       ├── test_polar_coordinates.py
    │   │       ├── test_sanitize_center.py
    │   │       ├── test_sph_pixelization.py
    │   │       ├── test_sph_pixelization_pytestonly.py
    │   │       └── test_spherical_coordinates.py
    │   ├── fake_octree.pyx
    │   ├── geometry_enum.py
    │   ├── geometry_handler.py
    │   ├── grid_container.pxd
    │   ├── grid_container.pyx
    │   ├── grid_geometry_handler.py
    │   ├── grid_visitors.pxd
    │   ├── grid_visitors.pyx
    │   ├── oct_container.pxd
    │   ├── oct_container.pyx
    │   ├── oct_geometry_handler.py
    │   ├── oct_visitors.pxd
    │   ├── oct_visitors.pyx
    │   ├── particle_deposit.pxd
    │   ├── particle_deposit.pyx
    │   ├── particle_geometry_handler.py
    │   ├── particle_oct_container.pyx
    │   ├── particle_smooth.pxd
    │   ├── particle_smooth.pyx
    │   ├── selection_routines.pxd
    │   ├── selection_routines.pyx
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── fake_octree.py
    │   │   ├── test_ewah_write_load.py
    │   │   ├── test_geometries.py
    │   │   ├── test_grid_container.py
    │   │   ├── test_grid_index.py
    │   │   ├── test_particle_deposit.py
    │   │   ├── test_particle_octree.py
    │   │   └── test_pickleable_selections.py
    │   ├── unstructured_mesh_handler.py
    │   └── vectorized_ops.h
    ├── loaders.py
    ├── py.typed
    ├── sample_data/
    │   ├── __init__.py
    │   └── api.py
    ├── sample_data_registry.json
    ├── startup_tasks.py
    ├── test_fake_amr_ds_particle_positions_within_domain.py
    ├── testing.py
    ├── tests/
    │   ├── __init__.py
    │   ├── test_external_frontends.py
    │   ├── test_funcs.py
    │   ├── test_load_archive.py
    │   ├── test_load_errors.py
    │   ├── test_load_sample.py
    │   ├── test_testing.py
    │   └── test_version.py
    ├── units/
    │   ├── __init__.py
    │   ├── _numpy_wrapper_functions.py
    │   ├── dimensions.py
    │   ├── equivalencies.py
    │   ├── physical_constants.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   └── test_magnetic_code_units.py
    │   ├── unit_lookup_table.py
    │   ├── unit_object.py
    │   ├── unit_registry.py
    │   ├── unit_symbols.py
    │   ├── unit_systems.py
    │   └── yt_array.py
    ├── utilities/
    │   ├── __init__.py
    │   ├── amr_kdtree/
    │   │   ├── __init__.py
    │   │   ├── amr_kdtools.py
    │   │   ├── amr_kdtree.py
    │   │   └── api.py
    │   ├── answer_testing/
    │   │   ├── __init__.py
    │   │   ├── answer_tests.py
    │   │   ├── api.py
    │   │   ├── framework.py
    │   │   ├── level_sets_tests.py
    │   │   └── testing_utilities.py
    │   ├── api.py
    │   ├── chemical_formulas.py
    │   ├── command_line.py
    │   ├── configuration_tree.py
    │   ├── configure.py
    │   ├── cosmology.py
    │   ├── cython_fortran_utils.pxd
    │   ├── cython_fortran_utils.pyx
    │   ├── decompose.py
    │   ├── definitions.py
    │   ├── exceptions.py
    │   ├── file_handler.py
    │   ├── flagging_methods.py
    │   ├── fortran_utils.py
    │   ├── grid_data_format/
    │   │   ├── __init__.py
    │   │   ├── conversion/
    │   │   │   ├── __init__.py
    │   │   │   ├── conversion_abc.py
    │   │   │   └── conversion_athena.py
    │   │   ├── docs/
    │   │   │   ├── IRATE_notes.txt
    │   │   │   └── gdf_specification.txt
    │   │   ├── scripts/
    │   │   │   ├── convert_distributed_athena.py
    │   │   │   └── convert_single_athena.py
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   └── test_writer.py
    │   │   └── writer.py
    │   ├── hierarchy_inspection.py
    │   ├── initial_conditions.py
    │   ├── io_handler.py
    │   ├── lib/
    │   │   ├── __init__.py
    │   │   ├── _octree_raytracing.hpp
    │   │   ├── _octree_raytracing.pxd
    │   │   ├── _octree_raytracing.pyx
    │   │   ├── allocation_container.pxd
    │   │   ├── allocation_container.pyx
    │   │   ├── alt_ray_tracers.pyx
    │   │   ├── amr_kdtools.pxd
    │   │   ├── amr_kdtools.pyx
    │   │   ├── api.py
    │   │   ├── autogenerated_element_samplers.pxd
    │   │   ├── autogenerated_element_samplers.pyx
    │   │   ├── basic_octree.pyx
    │   │   ├── bitarray.pxd
    │   │   ├── bitarray.pyx
    │   │   ├── bounded_priority_queue.pxd
    │   │   ├── bounded_priority_queue.pyx
    │   │   ├── bounding_volume_hierarchy.pxd
    │   │   ├── bounding_volume_hierarchy.pyx
    │   │   ├── contour_finding.pxd
    │   │   ├── contour_finding.pyx
    │   │   ├── cosmology_time.pyx
    │   │   ├── cykdtree/
    │   │   │   ├── __init__.py
    │   │   │   ├── c_kdtree.cpp
    │   │   │   ├── c_kdtree.hpp
    │   │   │   ├── c_utils.cpp
    │   │   │   ├── c_utils.hpp
    │   │   │   ├── kdtree.pxd
    │   │   │   ├── kdtree.pyx
    │   │   │   ├── plot.py
    │   │   │   ├── tests/
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── scaling.py
    │   │   │   │   ├── test_kdtree.py
    │   │   │   │   ├── test_plot.py
    │   │   │   │   └── test_utils.py
    │   │   │   ├── utils.pxd
    │   │   │   ├── utils.pyx
    │   │   │   └── windows/
    │   │   │       └── stdint.h
    │   │   ├── cyoctree.pyx
    │   │   ├── depth_first_octree.pyx
    │   │   ├── distance_queue.pxd
    │   │   ├── distance_queue.pyx
    │   │   ├── element_mappings.pxd
    │   │   ├── element_mappings.pyx
    │   │   ├── embree_mesh/
    │   │   │   ├── __init__.py
    │   │   │   ├── mesh_construction.pxd
    │   │   │   ├── mesh_construction.pyx
    │   │   │   ├── mesh_intersection.pxd
    │   │   │   ├── mesh_intersection.pyx
    │   │   │   ├── mesh_samplers.pxd
    │   │   │   ├── mesh_samplers.pyx
    │   │   │   ├── mesh_traversal.pxd
    │   │   │   └── mesh_traversal.pyx
    │   │   ├── endian_swap.h
    │   │   ├── field_interpolation_tables.pxd
    │   │   ├── fixed_interpolator.cpp
    │   │   ├── fixed_interpolator.hpp
    │   │   ├── fixed_interpolator.pxd
    │   │   ├── fnv_hash.pxd
    │   │   ├── fnv_hash.pyx
    │   │   ├── fortran_reader.pyx
    │   │   ├── fp_utils.pxd
    │   │   ├── geometry_utils.pxd
    │   │   ├── geometry_utils.pyx
    │   │   ├── grid_traversal.pxd
    │   │   ├── grid_traversal.pyx
    │   │   ├── healpix_interface.pxd
    │   │   ├── image_samplers.pxd
    │   │   ├── image_samplers.pyx
    │   │   ├── image_utilities.pyx
    │   │   ├── interpolators.pyx
    │   │   ├── lenses.pxd
    │   │   ├── lenses.pyx
    │   │   ├── marching_cubes.h
    │   │   ├── marching_cubes.pyx
    │   │   ├── mesh_triangulation.h
    │   │   ├── mesh_triangulation.pyx
    │   │   ├── mesh_utilities.pyx
    │   │   ├── misc_utilities.pyx
    │   │   ├── octree_raytracing.py
    │   │   ├── origami.pyx
    │   │   ├── origami_tags.c
    │   │   ├── origami_tags.h
    │   │   ├── particle_kdtree_tools.pxd
    │   │   ├── particle_kdtree_tools.pyx
    │   │   ├── particle_mesh_operations.pyx
    │   │   ├── partitioned_grid.pxd
    │   │   ├── partitioned_grid.pyx
    │   │   ├── pixelization_constants.cpp
    │   │   ├── pixelization_constants.hpp
    │   │   ├── pixelization_routines.pyx
    │   │   ├── platform_dep.h
    │   │   ├── platform_dep_math.hpp
    │   │   ├── points_in_volume.pyx
    │   │   ├── primitives.pxd
    │   │   ├── primitives.pyx
    │   │   ├── quad_tree.pyx
    │   │   ├── ragged_arrays.pyx
    │   │   ├── tests/
    │   │   │   ├── __init__.py
    │   │   │   ├── test_allocation_container.py
    │   │   │   ├── test_alt_ray_tracers.py
    │   │   │   ├── test_bitarray.py
    │   │   │   ├── test_bounding_volume_hierarchy.py
    │   │   │   ├── test_element_mappings.py
    │   │   │   ├── test_fill_region.py
    │   │   │   ├── test_geometry_utils.py
    │   │   │   ├── test_nn.py
    │   │   │   ├── test_ragged_arrays.py
    │   │   │   └── test_sample.py
    │   │   ├── tsearch.c
    │   │   ├── tsearch.h
    │   │   ├── vec3_ops.pxd
    │   │   ├── volume_container.pxd
    │   │   └── write_array.pyx
    │   ├── linear_interpolators.py
    │   ├── lodgeit.py
    │   ├── logger.py
    │   ├── math_utils.py
    │   ├── mesh_code_generation.py
    │   ├── mesh_types.yaml
    │   ├── metadata.py
    │   ├── minimal_representation.py
    │   ├── nodal_data_utils.py
    │   ├── object_registries.py
    │   ├── on_demand_imports.py
    │   ├── operator_registry.py
    │   ├── orientation.py
    │   ├── parallel_tools/
    │   │   ├── __init__.py
    │   │   ├── controller_system.py
    │   │   ├── io_runner.py
    │   │   ├── parallel_analysis_interface.py
    │   │   └── task_queue.py
    │   ├── parameter_file_storage.py
    │   ├── particle_generator.py
    │   ├── performance_counters.py
    │   ├── periodic_table.py
    │   ├── physical_constants.py
    │   ├── physical_ratios.py
    │   ├── png_writer.py
    │   ├── rpdb.py
    │   ├── sdf.py
    │   ├── tests/
    │   │   ├── __init__.py
    │   │   ├── cosmology_answers.yml
    │   │   ├── test_amr_kdtree.py
    │   │   ├── test_chemical_formulas.py
    │   │   ├── test_config.py
    │   │   ├── test_coordinate_conversions.py
    │   │   ├── test_cosmology.py
    │   │   ├── test_cython_fortran_utils.py
    │   │   ├── test_decompose.py
    │   │   ├── test_flagging_methods.py
    │   │   ├── test_hierarchy_inspection.py
    │   │   ├── test_interpolators.py
    │   │   ├── test_minimal_representation.py
    │   │   ├── test_on_demand_imports.py
    │   │   ├── test_particle_generator.py
    │   │   ├── test_periodic_table.py
    │   │   ├── test_periodicity.py
    │   │   ├── test_selectors.py
    │   │   └── test_set_log_level.py
    │   ├── tree_container.py
    │   └── voropp.pyx
    └── visualization/
        ├── __init__.py
        ├── _colormap_data.py
        ├── _commons.py
        ├── _handlers.py
        ├── api.py
        ├── base_plot_types.py
        ├── color_maps.py
        ├── eps_writer.py
        ├── fits_image.py
        ├── fixed_resolution.py
        ├── fixed_resolution_filters.py
        ├── geo_plot_utils.py
        ├── image_writer.py
        ├── line_plot.py
        ├── mapserver/
        │   ├── __init__.py
        │   ├── html/
        │   │   ├── Leaflet.Coordinates-0.1.5.css
        │   │   ├── Leaflet.Coordinates-0.1.5.src.js
        │   │   ├── __init__.py
        │   │   ├── map.js
        │   │   └── map_index.html
        │   └── pannable_map.py
        ├── particle_plots.py
        ├── plot_container.py
        ├── plot_modifications.py
        ├── plot_window.py
        ├── profile_plotter.py
        ├── streamlines.py
        ├── tests/
        │   ├── __init__.py
        │   ├── test_base_plot_types.py
        │   ├── test_callbacks.py
        │   ├── test_callbacks_geographic.py
        │   ├── test_color_maps.py
        │   ├── test_commons.py
        │   ├── test_eps_writer.py
        │   ├── test_export_frb.py
        │   ├── test_filters.py
        │   ├── test_fits_image.py
        │   ├── test_geo_projections.py
        │   ├── test_image_comp_2D_plots.py
        │   ├── test_image_comp_geo.py
        │   ├── test_image_writer.py
        │   ├── test_invalid_origin.py
        │   ├── test_line_annotation_unit.py
        │   ├── test_line_plots.py
        │   ├── test_mesh_slices.py
        │   ├── test_normal_plot_api.py
        │   ├── test_offaxisprojection.py
        │   ├── test_offaxisprojection_pytestonly.py
        │   ├── test_particle_plot.py
        │   ├── test_plot_modifications.py
        │   ├── test_plotwindow.py
        │   ├── test_profile_plots.py
        │   ├── test_raw_field_slices.py
        │   ├── test_save.py
        │   ├── test_set_zlim.py
        │   └── test_splat.py
        └── volume_rendering/
            ├── UBVRI.py
            ├── __init__.py
            ├── _cuda_caster.cu
            ├── api.py
            ├── blenders.py
            ├── camera.py
            ├── camera_path.py
            ├── create_spline.py
            ├── image_handling.py
            ├── lens.py
            ├── off_axis_projection.py
            ├── old_camera.py
            ├── render_source.py
            ├── scene.py
            ├── tests/
            │   ├── __init__.py
            │   ├── test_camera_attributes.py
            │   ├── test_composite.py
            │   ├── test_lenses.py
            │   ├── test_mesh_render.py
            │   ├── test_off_axis_SPH.py
            │   ├── test_points.py
            │   ├── test_save_render.py
            │   ├── test_scene.py
            │   ├── test_sigma_clip.py
            │   ├── test_simple_vr.py
            │   ├── test_varia.py
            │   ├── test_vr_cameras.py
            │   ├── test_vr_orientation.py
            │   └── test_zbuff.py
            ├── transfer_function_helper.py
            ├── transfer_functions.py
            ├── utils.py
            ├── volume_rendering.py
            └── zbuffer_array.py
Download .txt
Showing preview only (569K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (7158 symbols across 588 files)

FILE: conftest.py
  function pytest_addoption (line 40) | def pytest_addoption(parser):
  function pytest_configure (line 83) | def pytest_configure(config):
  function pytest_collection_modifyitems (line 189) | def pytest_collection_modifyitems(config, items):
  function pytest_itemcollected (line 219) | def pytest_itemcollected(item):
  function _param_list (line 229) | def _param_list(request):
  function _get_answer_files (line 263) | def _get_answer_files(request):
  function hashing (line 302) | def hashing(request):
  function temp_dir (line 367) | def temp_dir():
  function ds (line 384) | def ds(request):
  function field (line 402) | def field(request):
  function dobj (line 411) | def dobj(request):
  function axis (line 420) | def axis(request):
  function weight (line 429) | def weight(request):
  function ds_repr (line 438) | def ds_repr(request):
  function Npart (line 447) | def Npart(request):

FILE: doc/extensions/config_help.py
  function setup (line 8) | def setup(app):
  class GetConfigHelp (line 19) | class GetConfigHelp(Directive):
    method run (line 24) | def run(self):

FILE: doc/extensions/pythonscript_sphinxext.py
  class PythonScriptDirective (line 14) | class PythonScriptDirective(Directive):
    method run (line 27) | def run(self):
  function setup (line 71) | def setup(app):
  function get_image_tag (line 82) | def get_image_tag(filename, image_dir, image_rel_dir):
  function make_image_dir (line 89) | def make_image_dir(setup, rst_dir):
  function thread_safe_mkdir (line 97) | def thread_safe_mkdir(dirname):

FILE: doc/extensions/yt_colormaps.py
  function setup (line 15) | def setup(app):
  class ColormapScript (line 26) | class ColormapScript(Directive):
    method run (line 30) | def run(self):

FILE: doc/extensions/yt_cookbook.py
  function setup (line 15) | def setup(app):
  class CookbookScript (line 29) | class CookbookScript(Directive):
    method run (line 33) | def run(self):

FILE: doc/extensions/yt_showfields.py
  function setup (line 7) | def setup(app):
  class ShowFields (line 18) | class ShowFields(Directive):
    method run (line 24) | def run(self):

FILE: doc/helper_scripts/code_support.py
  class CodeSupport (line 13) | class CodeSupport:
    method __init__ (line 14) | def __init__(self, **kwargs):

FILE: doc/helper_scripts/parse_cb_list.py
  function write_docstring (line 23) | def write_docstring(f, name, cls):

FILE: doc/helper_scripts/parse_dq_list.py
  function write_docstring (line 22) | def write_docstring(f, name, func):

FILE: doc/helper_scripts/parse_object_list.py
  function write_docstring (line 21) | def write_docstring(f, name, cls):

FILE: doc/helper_scripts/run_recipes.py
  function prep_dirs (line 31) | def prep_dirs():
  function run_recipe (line 36) | def run_recipe(payload):

FILE: doc/helper_scripts/show_fields.py
  function _strip_ftype (line 31) | def _strip_ftype(field):
  function fix_units (line 133) | def fix_units(units, in_cgs=False):
  function print_all_fields (line 141) | def print_all_fields(fl):
  class FieldInfo (line 190) | class FieldInfo:
    method __init__ (line 193) | def __init__(self, ftype, field, ptype):

FILE: doc/source/analyzing/_static/axes.c
  function calculate_axes (line 3) | void calculate_axes(ParticleCollection *part,

FILE: doc/source/analyzing/_static/axes.h
  type ParticleCollection (line 1) | typedef struct structParticleCollection {

FILE: doc/source/analyzing/ionization_cube.py
  function IonizedHydrogen (line 13) | def IonizedHydrogen(data):

FILE: doc/source/conf.py
  function setup (line 264) | def setup(app):

FILE: doc/source/cookbook/derived_field.py
  function thermal_energy_dens (line 12) | def thermal_energy_dens(data):

FILE: doc/source/cookbook/hse_field.py
  function _hse (line 18) | def _hse(data):

FILE: doc/source/cookbook/matplotlib-animation.py
  function animate (line 16) | def animate(i):

FILE: doc/source/cookbook/particle_filter.py
  function stars_10Myr (line 11) | def stars_10Myr(pfilter, data):
  function stars_100Myr (line 17) | def stars_100Myr(pfilter, data):
  function stars_old (line 23) | def stars_old(pfilter, data):

FILE: doc/source/cookbook/particle_filter_sfr.py
  function formed_star (line 8) | def formed_star(pfilter, data):

FILE: doc/source/cookbook/power_spectrum_example.py
  function doit (line 28) | def doit(ds):
  function fft_comp (line 92) | def fft_comp(ds, irho, iu, nindex_rho, level, low, delta):

FILE: doc/source/cookbook/tests/test_cookbook.py
  function test_recipe (line 23) | def test_recipe():
  function check_recipe (line 33) | def check_recipe(cmd):

FILE: setup.py
  class BinaryDistribution (line 93) | class BinaryDistribution(Distribution):
    method has_ext_modules (line 96) | def has_ext_modules(self):

FILE: setupext.py
  function stdchannel_redirected (line 35) | def stdchannel_redirected(stdchannel, dest_filename):
  function check_for_openmp (line 61) | def check_for_openmp():
  function check_CPP14_flag (line 159) | def check_CPP14_flag(compile_flags):
  function check_CPP14_flags (line 202) | def check_CPP14_flags(possible_compile_flags):
  function check_for_pyembree (line 214) | def check_for_pyembree(std_libs):
  function in_conda_env (line 245) | def in_conda_env():
  function read_embree_location (line 249) | def read_embree_location():
  function get_cpu_count (line 334) | def get_cpu_count():
  function install_ccompiler (line 350) | def install_ccompiler():
  function get_python_include_dirs (line 381) | def get_python_include_dirs():
  function create_build_ext (line 413) | def create_build_ext(lib_exts, cythonize_aliases):
  function get_setup_options (line 495) | def get_setup_options():

FILE: tests/nose_runner.py
  class NoseWorker (line 15) | class NoseWorker(multiprocessing.Process):
    method __init__ (line 16) | def __init__(self, task_queue, result_queue):
    method run (line 21) | def run(self):
  class NoseTask (line 39) | class NoseTask:
    method __init__ (line 40) | def __init__(self, job):
    method __call__ (line 46) | def __call__(self):
    method __str__ (line 62) | def __str__(self):
  function generate_tasks_input (line 66) | def generate_tasks_input():

FILE: tests/report_failed_answers.py
  function generate_failed_answers_html (line 32) | def generate_failed_answers_html(failed_answers):
  function upload_to_curldrop (line 113) | def upload_to_curldrop(data, filename):
  function upload_failed_answers (line 145) | def upload_failed_answers(failed_answers):
  function generate_answers (line 171) | def generate_answers(answer_dir, answers):
  function upload_answers (line 214) | def upload_answers(answers):
  function extract_image_locations (line 254) | def extract_image_locations(error_string):
  function parse_nose_xml (line 300) | def parse_nose_xml(nose_xml):
  function handle_error (line 352) | def handle_error(error, testcase, missing_errors, missing_answers, faile...

FILE: tests/unpin_requirements.py
  function unpin_requirements (line 21) | def unpin_requirements(requirements: list[str]) -> list[str]:

FILE: yt/__init__.py
  function run_nose (line 94) | def run_nose(*args, **kwargs):

FILE: yt/_maintenance/backports.py
  class ReprEnum (line 29) | class ReprEnum(Enum):
  class StrEnum (line 35) | class StrEnum(str, ReprEnum):
    method __new__ (line 40) | def __new__(cls, *values):
    method _generate_next_value_ (line 61) | def _generate_next_value_(name, start, count, last_values):  # noqa B902

FILE: yt/_maintenance/deprecation.py
  function issue_deprecation_warning (line 6) | def issue_deprecation_warning(
  function future_positional_only (line 47) | def future_positional_only(positions2names: dict[int, str], /, **depr_kw...

FILE: yt/_version.py
  class VersionTuple (line 13) | class VersionTuple(NamedTuple):
  function _parse_to_version_info (line 30) | def _parse_to_version_info(version_str: str) -> VersionTuple:

FILE: yt/arraytypes.py
  function blankRecordArray (line 6) | def blankRecordArray(desc, elements):

FILE: yt/config.py
  function _setup_postinit_configuration (line 77) | def _setup_postinit_configuration():

FILE: yt/data_objects/analyzer_objects.py
  class AnalysisTask (line 6) | class AnalysisTask:
    method __init_subclass__ (line 7) | def __init_subclass__(cls, *args, **kwargs):
    method __init__ (line 12) | def __init__(self, *args, **kwargs):
    method __repr__ (line 20) | def __repr__(self):
  function analysis_task (line 27) | def analysis_task(params=None):
  function MaximumValue (line 39) | def MaximumValue(params, data_object):
  function CurrentTimeYears (line 45) | def CurrentTimeYears(params, ds):
  class SlicePlotDataset (line 49) | class SlicePlotDataset(AnalysisTask):
    method __init__ (line 52) | def __init__(self, *args, **kwargs):
    method eval (line 58) | def eval(self, ds):
  class QuantityProxy (line 63) | class QuantityProxy(AnalysisTask):
    method __repr__ (line 67) | def __repr__(self):
    method __init__ (line 74) | def __init__(self, *args, **kwargs):
    method eval (line 78) | def eval(self, data_object):
  class ParameterValue (line 83) | class ParameterValue(AnalysisTask):
    method __init__ (line 86) | def __init__(self, parameter, cast=None):
    method eval (line 96) | def eval(self, ds):
  function create_quantity_proxy (line 100) | def create_quantity_proxy(quantity_object):

FILE: yt/data_objects/construction_data_containers.py
  class YTStreamline (line 67) | class YTStreamline(YTSelectionContainer1D):
    method __init__ (line 110) | def __init__(self, positions, length=1.0, fields=None, ds=None, **kwar...
    method _get_list_of_grids (line 126) | def _get_list_of_grids(self):
    method _get_data_from_grid (line 136) | def _get_data_from_grid(self, grid, field):
    method _get_cut_mask (line 145) | def _get_cut_mask(self, grid):
  class YTProj (line 171) | class YTProj(YTSelectionContainer2D):
    method __init__ (line 176) | def __init__(
    method blocks (line 239) | def blocks(self):
    method field (line 243) | def field(self):
    method get_data (line 246) | def get_data(self, fields=None):
    method to_pw (line 355) | def to_pw(self, fields=None, center="center", width=None, origin="cent...
    method plot (line 366) | def plot(self, fields=None):
    method _initialize_projected_units (line 389) | def _initialize_projected_units(self, fields, chunk):
  class YTParticleProj (line 420) | class YTParticleProj(YTProj):
    method __init__ (line 427) | def __init__(
    method _handle_chunk (line 454) | def _handle_chunk(self, chunk, fields, tree):
  class YTQuadTreeProj (line 458) | class YTQuadTreeProj(YTProj):
    method __init__ (line 525) | def __init__(
    method _mrep (line 557) | def _mrep(self):
    method deserialize (line 560) | def deserialize(self, fields):
    method serialize (line 579) | def serialize(self):
    method _get_tree (line 584) | def _get_tree(self, nvals):
    method _initialize_chunk (line 599) | def _initialize_chunk(self, chunk, tree):
    method _handle_chunk (line 608) | def _handle_chunk(self, chunk, fields, tree):
  class YTCoveringGrid (line 644) | class YTCoveringGrid(YTSelectionContainer3D):
    method __init__ (line 687) | def __init__(
    method get_global_startindex (line 729) | def get_global_startindex(self):
    method to_xarray (line 733) | def to_xarray(self, fields=None):
    method icoords (line 788) | def icoords(self):
    method fwidth (line 798) | def fwidth(self):
    method fcoords (line 804) | def fcoords(self):
    method ires (line 816) | def ires(self):
    method set_field_parameter (line 821) | def set_field_parameter(self, name, val):
    method _sanitize_dims (line 826) | def _sanitize_dims(self, dims):
    method _sanitize_edge (line 835) | def _sanitize_edge(self, edge):
    method _reshape_vals (line 851) | def _reshape_vals(self, arr):
    method shape (line 857) | def shape(self):
    method _setup_data_source (line 860) | def _setup_data_source(self):
    method get_bbox (line 878) | def get_bbox(self):
    method get_data (line 881) | def get_data(self, fields=None):
    method _split_fields (line 939) | def _split_fields(self, fields_to_get):
    method _fill_particles (line 960) | def _fill_particles(self, part):
    method _check_sph_type (line 964) | def _check_sph_type(self, finfo):
    method _fill_sph_particles (line 998) | def _fill_sph_particles(self, fields):
    method _fill_fields (line 1107) | def _fill_fields(self, fields):
    method _generate_container_field (line 1142) | def _generate_container_field(self, field):
    method LeftEdge (line 1174) | def LeftEdge(self):
    method RightEdge (line 1178) | def RightEdge(self):
    method deposit (line 1181) | def deposit(self, positions, fields=None, method=None, kernel_name="cu...
    method write_to_gdf (line 1200) | def write_to_gdf(self, gdf_path, fields, nprocs=1, field_units=None, *...
    method _get_grid_bounds_size (line 1250) | def _get_grid_bounds_size(self):
    method to_fits_data (line 1264) | def to_fits_data(self, fields, length_unit=None):
  class YTArbitraryGrid (line 1288) | class YTArbitraryGrid(YTCoveringGrid):
    method __init__ (line 1326) | def __init__(self, left_edge, right_edge, dims, ds=None, field_paramet...
    method _fill_fields (line 1341) | def _fill_fields(self, fields):
    method _get_grid_bounds_size (line 1364) | def _get_grid_bounds_size(self):
  class LevelState (line 1377) | class LevelState:
  class YTSmoothedCoveringGrid (line 1397) | class YTSmoothedCoveringGrid(YTCoveringGrid):
    method __init__ (line 1429) | def __init__(self, *args, **kwargs):
    method _setup_data_source (line 1438) | def _setup_data_source(self, level_state=None):
    method _compute_minimum_level (line 1459) | def _compute_minimum_level(self):
    method _fill_fields (line 1492) | def _fill_fields(self, fields):
    method _initialize_level_state (line 1548) | def _initialize_level_state(self, fields):
    method _minimal_box (line 1577) | def _minimal_box(self, dds):
    method _update_level_state (line 1597) | def _update_level_state(self, level_state):
  class YTSurface (line 1627) | class YTSurface(YTSelectionContainer3D):
    method __init__ (line 1679) | def __init__(self, data_source, surface_field, field_value, ds=None):
    method _generate_container_field (line 1695) | def _generate_container_field(self, field):
    method get_data (line 1699) | def get_data(self, fields=None, sample_type="face", no_ghost=False):
    method _extract_isocontours_from_grid (line 1739) | def _extract_isocontours_from_grid(
    method calculate_flux (line 1763) | def calculate_flux(self, field_x, field_y, field_z, fluxing_field=None):
    method _calculate_flux_in_grid (line 1832) | def _calculate_flux_in_grid(
    method vertices (line 1871) | def vertices(self):
    method triangles (line 1877) | def triangles(self):
    method surface_area (line 1888) | def surface_area(self):
    method export_obj (line 1901) | def export_obj(
    method _color_samples_obj (line 2039) | def _color_samples_obj(
    method _export_obj (line 2112) | def _export_obj(
    method export_blender (line 2244) | def export_blender(
    method _export_blender (line 2370) | def _export_blender(
    method export_ply (line 2445) | def export_ply(
    method _color_samples (line 2513) | def _color_samples(
    method _export_ply (line 2547) | def _export_ply(
    method export_sketchfab (line 2657) | def export_sketchfab(
    method _upload_to_sketchfab (line 2781) | def _upload_to_sketchfab(self, data, files):
  class YTOctree (line 2810) | class YTOctree(YTSelectionContainer3D):
    method __init__ (line 2860) | def __init__(
    method _generate_tree (line 2883) | def _generate_tree(self):
    method tree (line 2925) | def tree(self):
    method sph_smoothing_style (line 2936) | def sph_smoothing_style(self):
    method sph_normalize (line 2941) | def sph_normalize(self):
    method sph_num_neighbors (line 2946) | def sph_num_neighbors(self):
    method _sanitize_ptypes (line 2950) | def _sanitize_ptypes(self, ptypes):
    method _setup_data_source (line 2965) | def _setup_data_source(self):
    method _sanitize_edge (line 2977) | def _sanitize_edge(self, edge, default):
    method get_data (line 2994) | def get_data(self, fields=None):
    method _gather_smooth (line 3023) | def _gather_smooth(self, fields, units, normalize):
    method _scatter_smooth (line 3056) | def _scatter_smooth(self, fields, units, normalize):

FILE: yt/data_objects/data_containers.py
  function sanitize_weight_field (line 35) | def sanitize_weight_field(ds, field, weight):
  function _get_ipython_key_completion (line 51) | def _get_ipython_key_completion(ds):
  class YTDataContainer (line 60) | class YTDataContainer(abc.ABC):
    method __init__ (line 78) | def __init__(self, ds: Optional["Dataset"], field_parameters) -> None:
    method __init_subclass__ (line 121) | def __init_subclass__(cls, *args, **kwargs):
    method pf (line 128) | def pf(self):
    method index (line 132) | def index(self):
    method _debug (line 138) | def _debug(self):
    method _set_default_field_parameters (line 148) | def _set_default_field_parameters(self):
    method _is_default_field_parameter (line 153) | def _is_default_field_parameter(self, parameter):
    method apply_units (line 161) | def apply_units(self, arr, units):
    method _first_matching_field (line 168) | def _first_matching_field(self, field: FieldName) -> FieldKey:
    method _set_center (line 175) | def _set_center(self, center):
    method get_field_parameter (line 184) | def get_field_parameter(self, name, default=None):
    method set_field_parameter (line 194) | def set_field_parameter(self, name, val):
    method has_field_parameter (line 201) | def has_field_parameter(self, name):
    method clear_data (line 207) | def clear_data(self, fields: list[AnyFieldKey] | AnyFieldKey | None = ...
    method has_key (line 226) | def has_key(self, key):
    method keys (line 232) | def keys(self):
    method _reshape_vals (line 235) | def _reshape_vals(self, arr):
    method __getitem__ (line 238) | def __getitem__(self, key):
    method _ipython_key_completions_ (line 260) | def _ipython_key_completions_(self):
    method __setitem__ (line 263) | def __setitem__(self, key, val):
    method __delitem__ (line 269) | def __delitem__(self, key):
    method get_bbox (line 278) | def get_bbox(self) -> tuple[unyt_array, unyt_array]:
    method _generate_field (line 284) | def _generate_field(self, field):
    method _generate_fluid_field (line 298) | def _generate_fluid_field(self, field):
    method _generate_spatial_fluid (line 314) | def _generate_spatial_fluid(self, field, ngz):
    method _generate_particle_field (line 364) | def _generate_particle_field(self, field):
    method _count_particles (line 399) | def _count_particles(self, ftype):
    method _generate_container_field (line 414) | def _generate_container_field(self, field):
    method _parameter_iterate (line 417) | def _parameter_iterate(self, seq):
    method write_out (line 424) | def write_out(self, filename, fields=None, format="%0.16e"):
    method to_dataframe (line 488) | def to_dataframe(self, fields):
    method to_astropy_table (line 520) | def to_astropy_table(self, fields):
    method save_as_dataset (line 548) | def save_as_dataset(self, filename=None, fields=None):
    method create_firefly_object (line 660) | def create_firefly_object(
    method argmax (line 913) | def argmax(self, field, axis=None):
    method argmin (line 959) | def argmin(self, field, axis=None):
    method _compute_extrema (line 1005) | def _compute_extrema(self, field):
    method max (line 1017) | def max(self, field, axis=None):
    method min (line 1052) | def min(self, field, axis=None):
    method std (line 1087) | def std(self, field, axis=None, weight=None):
    method ptp (line 1124) | def ptp(self, field):
    method profile (line 1147) | def profile(
    method mean (line 1245) | def mean(self, field, axis=None, weight=None):
    method sum (line 1286) | def sum(self, field, axis=None):
    method integrate (line 1323) | def integrate(self, field, weight=None, axis=None, *, moment=1):
    method _hash (line 1363) | def _hash(self):
    method __reduce__ (line 1372) | def __reduce__(self):
    method clone (line 1380) | def clone(self):
    method __repr__ (line 1409) | def __repr__(self):
    method _field_parameter_state (line 1422) | def _field_parameter_state(self, field_parameters):
    method _field_type_state (line 1435) | def _field_type_state(self, ftype, finfo, obj=None):
    method _determine_fields (line 1449) | def _determine_fields(self, fields):
    method tiles (line 1498) | def tiles(self):
    method blocks (line 1505) | def blocks(self):
  function _get_ds_by_hash (line 1532) | def _get_ds_by_hash(hash):
  function _reconstruct_object (line 1545) | def _reconstruct_object(*args, **kwargs):

FILE: yt/data_objects/derived_quantities.py
  function get_position_fields (line 15) | def get_position_fields(field, data):
  class DerivedQuantity (line 31) | class DerivedQuantity(ParallelAnalysisInterface):
    method __init__ (line 34) | def __init__(self, data_source):
    method __init_subclass__ (line 37) | def __init_subclass__(cls, *args, **kwargs):
    method count_values (line 42) | def count_values(self, *args, **kwargs):
    method __call__ (line 45) | def __call__(self, *args, **kwargs):
    method process_chunk (line 68) | def process_chunk(self, data, *args, **kwargs):
    method reduce_intermediate (line 71) | def reduce_intermediate(self, values):
  class DerivedQuantityCollection (line 75) | class DerivedQuantityCollection:
    method __new__ (line 76) | def __new__(cls, data_source, *args, **kwargs):
    method __getitem__ (line 83) | def __getitem__(self, key):
    method keys (line 90) | def keys(self):
  class WeightedAverageQuantity (line 94) | class WeightedAverageQuantity(DerivedQuantity):
    method count_values (line 126) | def count_values(self, fields, weight):
    method __call__ (line 130) | def __call__(self, fields, weight):
    method process_chunk (line 137) | def process_chunk(self, data, fields, weight):
    method reduce_intermediate (line 142) | def reduce_intermediate(self, values):
  class TotalQuantity (line 147) | class TotalQuantity(DerivedQuantity):
    method count_values (line 165) | def count_values(self, fields):
    method __call__ (line 169) | def __call__(self, fields):
    method process_chunk (line 176) | def process_chunk(self, data, fields):
    method reduce_intermediate (line 180) | def reduce_intermediate(self, values):
  class TotalMass (line 184) | class TotalMass(TotalQuantity):
    method __call__ (line 199) | def __call__(self):
  class CenterOfMass (line 213) | class CenterOfMass(DerivedQuantity):
    method count_values (line 244) | def count_values(self, use_gas=True, use_particles=False, particle_typ...
    method process_chunk (line 258) | def process_chunk(
    method reduce_intermediate (line 279) | def reduce_intermediate(self, values):
  class BulkVelocity (line 296) | class BulkVelocity(DerivedQuantity):
    method count_values (line 327) | def count_values(self, use_gas=True, use_particles=False, particle_typ...
    method process_chunk (line 337) | def process_chunk(
    method reduce_intermediate (line 360) | def reduce_intermediate(self, values):
  class WeightedStandardDeviation (line 377) | class WeightedStandardDeviation(DerivedQuantity):
    method count_values (line 410) | def count_values(self, fields, weight):
    method __call__ (line 414) | def __call__(self, fields, weight):
    method process_chunk (line 423) | def process_chunk(self, data, fields, weight):
    method reduce_intermediate (line 438) | def reduce_intermediate(self, values):
  class AngularMomentumVector (line 461) | class AngularMomentumVector(DerivedQuantity):
    method count_values (line 502) | def count_values(self, use_gas=True, use_particles=True, particle_type...
    method process_chunk (line 519) | def process_chunk(
    method reduce_intermediate (line 552) | def reduce_intermediate(self, values):
  class Extrema (line 565) | class Extrema(DerivedQuantity):
    method count_values (line 594) | def count_values(self, fields, non_zero, *, check_finite=False):
    method __call__ (line 597) | def __call__(self, fields, non_zero=False, *, check_finite=False):
    method process_chunk (line 604) | def process_chunk(self, data, fields, non_zero, *, check_finite=False):
    method reduce_intermediate (line 622) | def reduce_intermediate(self, values):
  class SampleAtMaxFieldValues (line 630) | class SampleAtMaxFieldValues(DerivedQuantity):
    method count_values (line 653) | def count_values(self, field, sample_fields):
    method __call__ (line 657) | def __call__(self, field, sample_fields):
    method process_chunk (line 663) | def process_chunk(self, data, field, sample_fields):
    method reduce_intermediate (line 674) | def reduce_intermediate(self, values):
    method _func (line 678) | def _func(self, arr):
  class MaxLocation (line 682) | class MaxLocation(SampleAtMaxFieldValues):
    method __call__ (line 701) | def __call__(self, field):
  class SampleAtMinFieldValues (line 711) | class SampleAtMinFieldValues(SampleAtMaxFieldValues):
    method _func (line 734) | def _func(self, arr):
  class MinLocation (line 738) | class MinLocation(SampleAtMinFieldValues):
    method __call__ (line 757) | def __call__(self, field):
  class SpinParameter (line 767) | class SpinParameter(DerivedQuantity):
    method count_values (line 805) | def count_values(self, **kwargs):
    method process_chunk (line 808) | def process_chunk(
    method reduce_intermediate (line 838) | def reduce_intermediate(self, values):

FILE: yt/data_objects/field_data.py
  class YTFieldData (line 1) | class YTFieldData(dict):

FILE: yt/data_objects/image_array.py
  class ImageArray (line 8) | class ImageArray(unyt_array):
    method __new__ (line 71) | def __new__(
    method __array_finalize__ (line 87) | def __array_finalize__(self, obj):
    method write_hdf5 (line 92) | def write_hdf5(self, filename, dataset_name=None):
    method add_background_color (line 127) | def add_background_color(self, background="black", inline=True):
    method rescale (line 191) | def rescale(self, cmax=None, amax=None, inline=True):
    method write_png (line 252) | def write_png(
    method write_image (line 321) | def write_image(
    method save (line 398) | def save(self, filename, png=True, hdf5=True, dataset_name=None):
    method _clipping_value (line 426) | def _clipping_value(self, sigma_clip, im=None):

FILE: yt/data_objects/index_subobjects/grid_patch.py
  class AMRGridPatch (line 23) | class AMRGridPatch(YTSelectionContainer):
    method __init__ (line 43) | def __init__(self, id, filename=None, index=None):
    method get_global_startindex (line 55) | def get_global_startindex(self):
    method __getitem__ (line 74) | def __getitem__(self, key):
    method convert (line 89) | def convert(self, datatype):
    method shape (line 98) | def shape(self):
    method _reshape_vals (line 101) | def _reshape_vals(self, arr):
    method _generate_container_field (line 106) | def _generate_container_field(self, field):
    method _setup_dx (line 123) | def _setup_dx(self):
    method __repr__ (line 143) | def __repr__(self):
    method __int__ (line 147) | def __int__(self):
    method clear_data (line 150) | def clear_data(self):
    method _prepare_grid (line 159) | def _prepare_grid(self):
    method get_position (line 186) | def get_position(self, index):
    method _fill_child_mask (line 191) | def _fill_child_mask(self, child, mask, tofill, dlevel=1):
    method child_mask (line 208) | def child_mask(self):
    method child_indices (line 222) | def child_indices(self):
    method child_index_mask (line 226) | def child_index_mask(self):
    method retrieve_ghost_zones (line 239) | def retrieve_ghost_zones(self, n_zones, fields, all_levels=False, smoo...
    method get_vertex_centered_data (line 270) | def get_vertex_centered_data(
    method select_icoords (line 314) | def select_icoords(self, dobj):
    method select_fcoords (line 322) | def select_fcoords(self, dobj):
    method select_fwidth (line 332) | def select_fwidth(self, dobj):
    method select_ires (line 341) | def select_ires(self, dobj):
    method select_tcoords (line 349) | def select_tcoords(self, dobj):
    method smooth (line 353) | def smooth(self, *args, **kwargs):
    method particle_operation (line 356) | def particle_operation(self, *args, **kwargs):
    method deposit (line 359) | def deposit(self, positions, fields=None, method=None, kernel_name="cu...
    method select_blocks (line 383) | def select_blocks(self, selector):
    method _get_selector_mask (line 387) | def _get_selector_mask(self, selector):
    method select (line 401) | def select(self, selector, source, dest, offset):
    method count (line 416) | def count(self, selector):
    method count_particles (line 422) | def count_particles(self, selector, x, y, z):
    method select_particles (line 427) | def select_particles(self, selector, x, y, z):

FILE: yt/data_objects/index_subobjects/octree_subset.py
  function cell_count_cache (line 25) | def cell_count_cache(func):
  class OctreeSubset (line 37) | class OctreeSubset(YTSelectionContainer, abc.ABC):
    method __init__ (line 47) | def __init__(self, base_region, domain, ds, num_zones=2, num_ghost_zon...
    method oct_handler (line 62) | def oct_handler(self):
    method __getitem__ (line 66) | def __getitem__(self, key):
    method nz (line 82) | def nz(self):
    method get_bbox (line 85) | def get_bbox(self):
    method _reshape_vals (line 88) | def _reshape_vals(self, arr):
    method mask_refinement (line 109) | def mask_refinement(self, selector):
    method select_blocks (line 113) | def select_blocks(self, selector):
    method select_tcoords (line 119) | def select_tcoords(self, dobj):
    method domain_ind (line 133) | def domain_ind(self):
    method deposit (line 136) | def deposit(self, positions, fields=None, method=None, kernel_name="cu...
    method mesh_sampling_particle_field (line 208) | def mesh_sampling_particle_field(self, positions, mesh_field, lvlmax=N...
    method smooth (line 272) | def smooth(
    method particle_operation (line 392) | def particle_operation(
    method select_icoords (line 484) | def select_icoords(self, dobj):
    method select_fcoords (line 490) | def select_fcoords(self, dobj):
    method select_fwidth (line 497) | def select_fwidth(self, dobj):
    method select_ires (line 504) | def select_ires(self, dobj):
    method select (line 509) | def select(self, selector, source, dest, offset):
    method count (line 515) | def count(self, selector):
    method count_particles (line 518) | def count_particles(self, selector, x, y, z):
    method select_particles (line 523) | def select_particles(self, selector, x, y, z):
    method get_vertex_centered_data (line 527) | def get_vertex_centered_data(self, fields):
  class OctreeSubsetBlockSlicePosition (line 546) | class OctreeSubsetBlockSlicePosition:
    method __init__ (line 547) | def __init__(self, ind, block_slice):
    method __getitem__ (line 554) | def __getitem__(self, key):
    method id (line 563) | def id(self):
    method Level (line 567) | def Level(self):
    method LeftEdge (line 571) | def LeftEdge(self):
    method RightEdge (line 581) | def RightEdge(self):
    method dds (line 591) | def dds(self):
    method clear_data (line 594) | def clear_data(self):
    method get_vertex_centered_data (line 597) | def get_vertex_centered_data(self, fields, smoothed=False, no_ghost=Fa...
    method _field_parameter_state (line 603) | def _field_parameter_state(self, field_parameters):
  class OctreeSubsetBlockSlice (line 607) | class OctreeSubsetBlockSlice:
    method __init__ (line 608) | def __init__(self, octree_subset, ds):
    method octree_subset_with_gz (line 618) | def octree_subset_with_gz(self):
    method get_vertex_centered_data (line 624) | def get_vertex_centered_data(self, fields, smoothed=False, no_ghost=Fa...
    method __iter__ (line 656) | def __iter__(self):
  class YTPositionArray (line 661) | class YTPositionArray(unyt_array):
    method morton (line 663) | def morton(self):
    method to_octree (line 673) | def to_octree(self, num_zones=2, dims=(1, 1, 1), n_ref=64):
    method validate (line 687) | def validate(self):

FILE: yt/data_objects/index_subobjects/particle_container.py
  function _non_indexed (line 15) | def _non_indexed(name):
  class ParticleContainer (line 22) | class ParticleContainer(YTSelectionContainer):
    method __init__ (line 28) | def __init__(
    method __reduce__ (line 53) | def __reduce__(self):
    method selector (line 60) | def selector(self):
    method select_particles (line 63) | def select_particles(self, selector, x, y, z):
    method _expand_data_files (line 68) | def _expand_data_files(self):
    method retrieve_ghost_zones (line 78) | def retrieve_ghost_zones(self, ngz, coarse_ghosts=False):

FILE: yt/data_objects/index_subobjects/stretched_grid.py
  class StretchedGrid (line 8) | class StretchedGrid(AMRGridPatch):
    method __init__ (line 9) | def __init__(self, id, cell_widths, *, filename=None, index=None):
    method _check_consistency (line 13) | def _check_consistency(self):
    method _get_selector_mask (line 19) | def _get_selector_mask(self, selector):
    method select_fwidth (line 33) | def select_fwidth(self, dobj):
    method select_fcoords (line 48) | def select_fcoords(self, dobj):

FILE: yt/data_objects/index_subobjects/unstructured_mesh.py
  class UnstructuredMesh (line 10) | class UnstructuredMesh(YTSelectionContainer):
    method __init__ (line 19) | def __init__(
    method _check_consistency (line 39) | def _check_consistency(self):
    method __repr__ (line 50) | def __repr__(self):
    method get_global_startindex (line 53) | def get_global_startindex(self):
    method convert (line 61) | def convert(self, datatype):
    method shape (line 70) | def shape(self):
    method _generate_container_field (line 73) | def _generate_container_field(self, field):
    method select_fcoords (line 76) | def select_fcoords(self, dobj=None):
    method select_fwidth (line 86) | def select_fwidth(self, dobj):
    method select_icoords (line 89) | def select_icoords(self, dobj):
    method select_ires (line 92) | def select_ires(self, dobj):
    method select_tcoords (line 95) | def select_tcoords(self, dobj):
    method deposit (line 98) | def deposit(self, positions, fields=None, method=None, kernel_name="cu...
    method select_blocks (line 101) | def select_blocks(self, selector):
    method select (line 105) | def select(self, selector, source, dest, offset):
    method count (line 113) | def count(self, selector):
    method count_particles (line 119) | def count_particles(self, selector, x, y, z):
    method select_particles (line 124) | def select_particles(self, selector, x, y, z):
    method _get_selector_mask (line 128) | def _get_selector_mask(self, selector):
    method select_fcoords_vertex (line 140) | def select_fcoords_vertex(self, dobj=None):
  class SemiStructuredMesh (line 148) | class SemiStructuredMesh(UnstructuredMesh):
    method __repr__ (line 153) | def __repr__(self):
    method _generate_container_field (line 156) | def _generate_container_field(self, field):
    method select_fwidth (line 166) | def select_fwidth(self, dobj):
    method select_ires (line 175) | def select_ires(self, dobj):
    method select_tcoords (line 182) | def select_tcoords(self, dobj):
    method _get_selector_mask (line 189) | def _get_selector_mask(self, selector):
    method select (line 201) | def select(self, selector, source, dest, offset):

FILE: yt/data_objects/level_sets/clump_handling.py
  function add_contour_field (line 15) | def add_contour_field(ds, contour_key):
  class Clump (line 36) | class Clump(TreeContainer):
    method __init__ (line 37) | def __init__(
    method leaves (line 88) | def leaves(self):
    method add_validator (line 98) | def add_validator(self, validator, *args, **kwargs):
    method add_info_item (line 108) | def add_info_item(self, info_item, *args, **kwargs):
    method set_default_clump_info (line 117) | def set_default_clump_info(self):
    method clear_clump_info (line 136) | def clear_clump_info(self):
    method find_children (line 146) | def find_children(self, min_val, max_val=None):
    method __iter__ (line 187) | def __iter__(self):
    method save_as_dataset (line 192) | def save_as_dataset(self, filename=None, fields=None):
    method pass_down (line 372) | def pass_down(self, operation):
    method _validate (line 387) | def _validate(self):
    method __reduce__ (line 402) | def __reduce__(self):
    method __getitem__ (line 408) | def __getitem__(self, request):
  function find_clumps (line 412) | def find_clumps(clump, min_val, max_val, d_clump):

FILE: yt/data_objects/level_sets/clump_info_items.py
  function add_clump_info (line 8) | def add_clump_info(name, function):
  class ClumpInfoCallback (line 12) | class ClumpInfoCallback:
    method __init__ (line 18) | def __init__(self, name, function, args=None, kwargs=None):
    method __call__ (line 28) | def __call__(self, clump):
  function _center_of_mass (line 35) | def _center_of_mass(clump, units="code_length", **kwargs):
  function _total_cells (line 43) | def _total_cells(clump):
  function _cell_mass (line 51) | def _cell_mass(clump):
  function _mass_weighted_jeans_mass (line 59) | def _mass_weighted_jeans_mass(clump):
  function _volume_weighted_jeans_mass (line 69) | def _volume_weighted_jeans_mass(clump):
  function _max_grid_level (line 79) | def _max_grid_level(clump):
  function _min_number_density (line 87) | def _min_number_density(clump):
  function _max_number_density (line 95) | def _max_number_density(clump):
  function _distance_to_main_clump (line 103) | def _distance_to_main_clump(clump, units="pc"):

FILE: yt/data_objects/level_sets/clump_tools.py
  function recursive_all_clumps (line 8) | def recursive_all_clumps(clump, list, level, parentnumber):
  function return_all_clumps (line 24) | def return_all_clumps(clump):
  function return_bottom_clumps (line 42) | def return_bottom_clumps(clump, dbg=0):
  function recursive_bottom_clumps (line 55) | def recursive_bottom_clumps(clump, clump_list, dbg=0, level=0):
  function clump_list_sort (line 69) | def clump_list_sort(clump_list):

FILE: yt/data_objects/level_sets/clump_validators.py
  function add_validator (line 10) | def add_validator(name, function):
  class ClumpValidator (line 14) | class ClumpValidator:
    method __init__ (line 20) | def __init__(self, function, args=None, kwargs=None):
    method __call__ (line 29) | def __call__(self, clump):
  function _gravitationally_bound (line 33) | def _gravitationally_bound(
  function _min_cells (line 108) | def _min_cells(clump, n_cells):

FILE: yt/data_objects/level_sets/contour_finder.py
  function identify_contours (line 15) | def identify_contours(data_source, field, min_val, max_val, cached_field...

FILE: yt/data_objects/level_sets/tests/test_clump_finding.py
  function test_clump_finding (line 16) | def test_clump_finding():
  function test_clump_tree_save (line 95) | def test_clump_tree_save():
  function test_clump_field_parameters (line 159) | def test_clump_field_parameters():

FILE: yt/data_objects/particle_filters.py
  class DummyFieldInfo (line 12) | class DummyFieldInfo:
  class ParticleFilter (line 20) | class ParticleFilter:
    method __init__ (line 21) | def __init__(self, name, function, requires, filtered_type):
    method apply (line 28) | def apply(self, dobj):
    method available (line 47) | def available(self, field_list):
    method missing (line 53) | def missing(self, field_list):
    method wrap_func (line 60) | def wrap_func(self, field_name, old_fi):
  function add_particle_filter (line 70) | def add_particle_filter(name, function, requires=None, filtered_type="al...
  function particle_filter (line 127) | def particle_filter(name=None, requires=None, filtered_type="all"):

FILE: yt/data_objects/particle_trajectories.py
  class ParticleTrajectories (line 13) | class ParticleTrajectories:
    method __init__ (line 59) | def __init__(
    method has_key (line 149) | def has_key(self, key):
    method keys (line 152) | def keys(self):
    method __getitem__ (line 155) | def __getitem__(self, key):
    method __setitem__ (line 165) | def __setitem__(self, key, val):
    method __delitem__ (line 171) | def __delitem__(self, key):
    method __iter__ (line 177) | def __iter__(self):
    method __len__ (line 191) | def __len__(self):
    method add_fields (line 197) | def add_fields(self, fields):
    method _get_data (line 214) | def _get_data(self, fields):
    method trajectory_from_index (line 308) | def trajectory_from_index(self, index):
    method write_out (line 349) | def write_out(self, filename_base):
    method write_out_h5 (line 384) | def write_out_h5(self, filename):

FILE: yt/data_objects/profiles.py
  function _sanitize_min_max_units (line 27) | def _sanitize_min_max_units(amin, amax, finfo, registry):
  function preserve_source_parameters (line 44) | def preserve_source_parameters(func):
  class ProfileFieldAccumulator (line 64) | class ProfileFieldAccumulator:
    method __init__ (line 65) | def __init__(self, n_fields, size):
  class ProfileND (line 74) | class ProfileND(ParallelAnalysisInterface):
    method __init__ (line 77) | def __init__(self, data_source, weight_field=None):
    method add_fields (line 92) | def add_fields(self, fields):
    method set_field_unit (line 110) | def set_field_unit(self, field, new_unit):
    method _finalize_storage (line 130) | def _finalize_storage(self, fields, temp_storage):
    method _bin_chunk (line 215) | def _bin_chunk(self, chunk, fields, storage):
    method _filter (line 218) | def _filter(self, bin_fields):
    method _get_data (line 227) | def _get_data(self, chunk, fields):
    method __getitem__ (line 268) | def __getitem__(self, field):
    method items (line 291) | def items(self):
    method keys (line 294) | def keys(self):
    method __iter__ (line 297) | def __iter__(self):
    method _get_bins (line 300) | def _get_bins(self, mi, ma, n, take_log):
    method save_as_dataset (line 312) | def save_as_dataset(self, filename=None):
  class ProfileNDFromDataset (line 414) | class ProfileNDFromDataset(ProfileND):
    method __init__ (line 419) | def __init__(self, ds):
  class Profile1D (line 451) | class Profile1D(ProfileND):
    method __init__ (line 479) | def __init__(
    method _bin_chunk (line 508) | def _bin_chunk(self, chunk, fields, storage):
    method set_x_unit (line 528) | def set_x_unit(self, new_unit):
    method bounds (line 540) | def bounds(self):
    method plot (line 543) | def plot(self):
    method _export_prep (line 552) | def _export_prep(self, fields, only_used):
    method to_dataframe (line 567) | def to_dataframe(self, fields=None, only_used=False, include_std=False):
    method to_astropy_table (line 619) | def to_astropy_table(self, fields=None, only_used=False, include_std=F...
  class Profile1DFromDataset (line 679) | class Profile1DFromDataset(ProfileNDFromDataset, Profile1D):
    method __init (line 684) | def __init(self, ds):
  class Profile2D (line 688) | class Profile2D(ProfileND):
    method __init__ (line 731) | def __init__(
    method _bin_chunk (line 781) | def _bin_chunk(self, chunk, fields, storage):
    method set_x_unit (line 803) | def set_x_unit(self, new_unit):
    method set_y_unit (line 814) | def set_y_unit(self, new_unit):
    method bounds (line 826) | def bounds(self):
    method plot (line 829) | def plot(self):
  class Profile2DFromDataset (line 839) | class Profile2DFromDataset(ProfileNDFromDataset, Profile2D):
    method __init (line 844) | def __init(self, ds):
  class ParticleProfile (line 848) | class ParticleProfile(Profile2D):
    method __init__ (line 892) | def __init__(
    method _bin_chunk (line 941) | def _bin_chunk(self, chunk, fields, storage):
  class Profile3D (line 995) | class Profile3D(ProfileND):
    method __init__ (line 1053) | def __init__(
    method _bin_chunk (line 1121) | def _bin_chunk(self, chunk, fields, storage):
    method bounds (line 1147) | def bounds(self):
    method set_x_unit (line 1154) | def set_x_unit(self, new_unit):
    method set_y_unit (line 1165) | def set_y_unit(self, new_unit):
    method set_z_unit (line 1176) | def set_z_unit(self, new_unit):
  class Profile3DFromDataset (line 1188) | class Profile3DFromDataset(ProfileNDFromDataset, Profile3D):
    method __init (line 1193) | def __init(self, ds):
  function sanitize_field_tuple_keys (line 1197) | def sanitize_field_tuple_keys(input_dict, data_source):
  function create_profile (line 1207) | def create_profile(

FILE: yt/data_objects/region_expression.py
  class RegionExpression (line 16) | class RegionExpression:
    method __init__ (line 17) | def __init__(self, ds):
    method all_data (line 21) | def all_data(self):
    method __getitem__ (line 24) | def __getitem__(self, item):
    method _ipython_key_completions_ (line 87) | def _ipython_key_completions_(self):
    method _spec_to_value (line 90) | def _spec_to_value(self, input):
    method _create_slice (line 99) | def _create_slice(self, slice_tuple):
    method _slice_to_edges (line 148) | def _slice_to_edges(self, ax, val):
    method _create_region (line 161) | def _create_region(self, bounds_tuple):
    method _create_point (line 178) | def _create_point(self, point_tuple):
    method _create_ray (line 182) | def _create_ray(self, ray_slice):
    method _create_ortho_ray (line 190) | def _create_ortho_ray(self, ray_tuple):

FILE: yt/data_objects/selection_objects/boolean_operations.py
  class YTBooleanContainer (line 13) | class YTBooleanContainer(YTSelectionContainer3D):
    method __init__ (line 47) | def __init__(
    method _get_bbox (line 58) | def _get_bbox(self):
  class YTIntersectionContainer3D (line 67) | class YTIntersectionContainer3D(YTSelectionContainer3D):
    method __init__ (line 96) | def __init__(self, data_objects, ds=None, field_parameters=None, data_...
    method get_bbox (line 106) | def get_bbox(self):
  class YTDataObjectUnion (line 118) | class YTDataObjectUnion(YTSelectionContainer3D):
    method __init__ (line 147) | def __init__(self, data_objects, ds=None, field_parameters=None, data_...

FILE: yt/data_objects/selection_objects/cut_region.py
  class YTCutRegion (line 18) | class YTCutRegion(YTSelectionContainer3D):
    method __init__ (line 46) | def __init__(
    method _check_filter_fields (line 87) | def _check_filter_fields(self):
    method chunks (line 108) | def chunks(self, fields, chunking_style, **kwargs):
    method get_data (line 117) | def get_data(self, fields=None):
    method blocks (line 130) | def blocks(self):
    method _cond_ind (line 147) | def _cond_ind(self):
    method _part_ind_KDTree (line 170) | def _part_ind_KDTree(self, ptype):
    method _part_ind_brute_force (line 234) | def _part_ind_brute_force(self, ptype):
    method _part_ind (line 251) | def _part_ind(self, ptype):
    method icoords (line 262) | def icoords(self):
    method fcoords (line 266) | def fcoords(self):
    method ires (line 270) | def ires(self):
    method fwidth (line 274) | def fwidth(self):
    method _get_bbox (line 277) | def _get_bbox(self):

FILE: yt/data_objects/selection_objects/data_selection_objects.py
  class YTSelectionContainer (line 44) | class YTSelectionContainer(YTDataContainer, ParallelAnalysisInterface, a...
    method __init__ (line 54) | def __init__(self, ds, field_parameters, data_source=None):
    method selector (line 76) | def selector(self):
    method chunks (line 92) | def chunks(self, fields, chunking_style, **kwargs):
    method _identify_dependencies (line 111) | def _identify_dependencies(self, fields_to_get, spatial=False):
    method get_data (line 137) | def get_data(self, fields=None):
    method _get_bbox (line 225) | def _get_bbox(self):
    method get_bbox (line 232) | def get_bbox(self) -> tuple[unyt_array, unyt_array]:
    method _generate_fields (line 258) | def _generate_fields(self, fields_to_generate):
    method __or__ (line 339) | def __or__(self, other):
    method __invert__ (line 351) | def __invert__(self):
    method __xor__ (line 360) | def __xor__(self, other):
    method __and__ (line 371) | def __and__(self, other):
    method __add__ (line 382) | def __add__(self, other):
    method __sub__ (line 385) | def __sub__(self, other):
    method _field_lock (line 397) | def _field_lock(self):
    method _ds_hold (line 403) | def _ds_hold(self, new_ds):
    method _chunked_read (line 430) | def _chunked_read(self, chunk):
    method _activate_cache (line 450) | def _activate_cache(self):
    method _initialize_cache (line 463) | def _initialize_cache(self, cache):
    method icoords (line 469) | def icoords(self):
    method fcoords (line 475) | def fcoords(self):
    method ires (line 481) | def ires(self):
    method fwidth (line 487) | def fwidth(self):
    method fcoords_vertex (line 493) | def fcoords_vertex(self):
    method max_level (line 499) | def max_level(self):
    method max_level (line 508) | def max_level(self, value):
    method min_level (line 519) | def min_level(self):
    method min_level (line 528) | def min_level(self, value):
  class YTSelectionContainer0D (line 539) | class YTSelectionContainer0D(YTSelectionContainer):
    method __init__ (line 543) | def __init__(self, ds, field_parameters=None, data_source=None):
  class YTSelectionContainer1D (line 547) | class YTSelectionContainer1D(YTSelectionContainer):
    method __init__ (line 551) | def __init__(self, ds, field_parameters=None, data_source=None):
  class YTSelectionContainer2D (line 558) | class YTSelectionContainer2D(YTSelectionContainer):
    method __init__ (line 567) | def __init__(self, axis, ds, field_parameters=None, data_source=None):
    method _convert_field_name (line 573) | def _convert_field_name(self, field):
    method _get_pw (line 576) | def _get_pw(self, fields, center, width, origin, plot_type):
    method to_frb (line 603) | def to_frb(self, width, resolution, center=None, height=None, periodic...
  class YTSelectionContainer3D (line 699) | class YTSelectionContainer3D(YTSelectionContainer):
    method __init__ (line 711) | def __init__(self, center, ds, field_parameters=None, data_source=None):
    method cut_region (line 717) | def cut_region(self, field_cuts, field_parameters=None, locals=None):
    method _build_operator_cut (line 755) | def _build_operator_cut(self, operation, field, value, units=None):
    method _build_function_cut (line 777) | def _build_function_cut(self, function, field, units=None, **kwargs):
    method exclude_above (line 797) | def exclude_above(self, field, value, units=None):
    method include_above (line 831) | def include_above(self, field, value, units=None):
    method exclude_equal (line 865) | def exclude_equal(self, field, value, units=None):
    method include_equal (line 895) | def include_equal(self, field, value, units=None):
    method exclude_inside (line 925) | def exclude_inside(self, field, min_value, max_value, units=None):
    method include_inside (line 968) | def include_inside(self, field, min_value, max_value, units=None):
    method exclude_outside (line 1012) | def exclude_outside(self, field, min_value, max_value, units=None):
    method include_outside (line 1045) | def include_outside(self, field, min_value, max_value, units=None):
    method exclude_below (line 1078) | def exclude_below(self, field, value, units=None):
    method exclude_nan (line 1108) | def exclude_nan(self, field, units=None):
    method include_below (line 1135) | def include_below(self, field, value, units=None):
    method extract_isocontours (line 1166) | def extract_isocontours(
    method _extract_isocontours_from_grid (line 1261) | def _extract_isocontours_from_grid(
    method calculate_isocontour_flux (line 1279) | def calculate_isocontour_flux(
    method _calculate_flux_in_grid (line 1355) | def _calculate_flux_in_grid(
    method extract_connected_sets (line 1381) | def extract_connected_sets(
    method volume (line 1425) | def volume(self):

FILE: yt/data_objects/selection_objects/disk.py
  class YTDisk (line 18) | class YTDisk(YTSelectionContainer3D):
    method __init__ (line 59) | def __init__(
    method _get_bbox (line 86) | def _get_bbox(self):

FILE: yt/data_objects/selection_objects/object_collection.py
  class YTDataCollection (line 11) | class YTDataCollection(YTSelectionContainer3D):
    method __init__ (line 20) | def __init__(

FILE: yt/data_objects/selection_objects/point.py
  class YTPoint (line 10) | class YTPoint(YTSelectionContainer0D):
    method __init__ (line 42) | def __init__(self, p, ds=None, field_parameters=None, data_source=None):

FILE: yt/data_objects/selection_objects/ray.py
  class YTOrthoRay (line 23) | class YTOrthoRay(YTSelectionContainer1D):
    method __init__ (line 75) | def __init__(self, axis, coords, ds=None, field_parameters=None, data_...
    method coords (line 104) | def coords(self):
  class YTRay (line 108) | class YTRay(YTSelectionContainer1D):
    method __init__ (line 159) | def __init__(
    method _generate_container_field (line 188) | def _generate_container_field(self, field):
    method _generate_container_field_grid (line 195) | def _generate_container_field_grid(self, field):
    method _generate_container_field_sph (line 205) | def _generate_container_field_sph(self, field):

FILE: yt/data_objects/selection_objects/region.py
  class YTRegion (line 15) | class YTRegion(YTSelectionContainer3D):
    method __init__ (line 37) | def __init__(
    method _get_bbox (line 67) | def _get_bbox(self):

FILE: yt/data_objects/selection_objects/slices.py
  class YTSlice (line 24) | class YTSlice(YTSelectionContainer2D):
    method __init__ (line 69) | def __init__(
    method _generate_container_field (line 84) | def _generate_container_field(self, field):
    method _mrep (line 105) | def _mrep(self):
    method to_pw (line 108) | def to_pw(self, fields=None, center="center", width=None, origin="cent...
    method plot (line 119) | def plot(self, fields=None):
  class YTCuttingPlane (line 143) | class YTCuttingPlane(YTSelectionContainer2D):
    method __init__ (line 200) | def __init__(
    method normal (line 234) | def normal(self):
    method _generate_container_field (line 237) | def _generate_container_field(self, field):
    method to_pw (line 279) | def to_pw(self, fields=None, center="center", width=None, axes_unit=No...
    method to_frb (line 316) | def to_frb(self, width, resolution, height=None, periodic=False):

FILE: yt/data_objects/selection_objects/spheroids.py
  class YTSphere (line 23) | class YTSphere(YTSelectionContainer3D):
    method __init__ (line 49) | def __init__(
    method _get_bbox (line 64) | def _get_bbox(self):
  class YTMinimalSphere (line 71) | class YTMinimalSphere(YTSelectionContainer3D):
    method __init__ (line 93) | def __init__(self, points, ds=None, field_parameters=None, data_source...
  class YTEllipsoid (line 117) | class YTEllipsoid(YTSelectionContainer3D):
    method __init__ (line 153) | def __init__(
    method _get_bbox (line 218) | def _get_bbox(self):

FILE: yt/data_objects/static_output.py
  function _setup_ds_store (line 108) | def _setup_ds_store(ytcfg: YTConfig) -> None:
  function _unsupported_object (line 116) | def _unsupported_object(ds, obj_name):
  class MutableAttribute (line 123) | class MutableAttribute:
    method __init__ (line 126) | def __init__(self, display_array=False):
    method __get__ (line 133) | def __get__(self, instance, owner):
    method __set__ (line 136) | def __set__(self, instance, value):
  function requires_index (line 151) | def requires_index(attr_name):
  class Dataset (line 166) | class Dataset(abc.ABC):
    method __new__ (line 207) | def __new__(cls, filename=None, *args, **kwargs):
    method __init_subclass__ (line 230) | def __init_subclass__(cls, *args, **kwargs):
    method __init__ (line 242) | def __init__(
    method filename (line 323) | def filename(self):
    method parameter_filename (line 330) | def parameter_filename(self):
    method basename (line 335) | def basename(self):
    method directory (line 339) | def directory(self):
    method fullpath (line 343) | def fullpath(self):
    method backup_filename (line 354) | def backup_filename(self):
    method unique_identifier (line 359) | def unique_identifier(self) -> str:
    method periodicity (line 366) | def periodicity(self):
    method force_periodicity (line 374) | def force_periodicity(self, val=True):
    method _missing_load_requirements (line 386) | def _missing_load_requirements(cls) -> list[str]:
    method _is_valid (line 395) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _parse_parameter_file (line 401) | def _parse_parameter_file(self):
    method _set_code_unit_attributes (line 408) | def _set_code_unit_attributes(self):
    method _set_derived_attrs (line 414) | def _set_derived_attrs(self):
    method __reduce__ (line 432) | def __reduce__(self):
    method __repr__ (line 436) | def __repr__(self):
    method __str__ (line 439) | def __str__(self):
    method _hash (line 442) | def _hash(self):
    method checksum (line 447) | def checksum(self):
    method _mrep (line 482) | def _mrep(self):
    method _skip_cache (line 486) | def _skip_cache(self):
    method _guess_candidates (line 490) | def _guess_candidates(cls, base, directories, files):
    method close (line 502) | def close(self):  # noqa: B027
    method __getitem__ (line 505) | def __getitem__(self, key):
    method __iter__ (line 509) | def __iter__(self):
    method get_smallest_appropriate_unit (line 512) | def get_smallest_appropriate_unit(
    method has_key (line 601) | def has_key(self, key):
    method index (line 611) | def index(self):
    method print_key_parameters (line 625) | def print_key_parameters(self):
    method print_stats (line 659) | def print_stats(self):
    method field_list (line 663) | def field_list(self):
    method field_info (line 667) | def field_info(self):
    method field_info (line 673) | def field_info(self, value):
    method create_field_info (line 676) | def create_field_info(self):
    method set_field_label_format (line 725) | def set_field_label_format(self, format_property, value):
    method setup_deprecated_fields (line 748) | def setup_deprecated_fields(self):
    method _setup_coordinate_handler (line 761) | def _setup_coordinate_handler(self, axis_order: AxisOrder | None) -> N...
    method add_particle_union (line 853) | def add_particle_union(self, union):
    method add_particle_filter (line 891) | def add_particle_filter(self, filter):
    method _setup_filtered_type (line 923) | def _setup_filtered_type(self, filter):
    method _setup_particle_types (line 970) | def _setup_particle_types(self, ptypes=None):
    method _get_field_info (line 978) | def _get_field_info(
    method _get_field_info_helper (line 1039) | def _get_field_info_helper(
    method _setup_classes (line 1078) | def _setup_classes(self):
    method _add_object_class (line 1090) | def _add_object_class(self, name, base):
    method _find_extremum (line 1102) | def _find_extremum(self, field, ext, source=None, to_array=True):
    method find_max (line 1156) | def find_max(self, field, source=None, to_array=True):
    method find_min (line 1165) | def find_min(self, field, source=None, to_array=True):
    method find_field_values_at_point (line 1174) | def find_field_values_at_point(self, fields, coords):
    method find_field_values_at_points (line 1187) | def find_field_values_at_points(self, fields, coords):
    method all_data (line 1215) | def all_data(self, find_max=False, **kwargs):
    method box (line 1227) | def box(self, left_edge, right_edge, **kwargs):
    method _setup_particle_type (line 1249) | def _setup_particle_type(self, ptype):
    method particle_fields_by_type (line 1255) | def particle_fields_by_type(self):
    method particles_exist (line 1263) | def particles_exist(self):
    method particle_type_counts (line 1270) | def particle_type_counts(self):
    method ires_factor (line 1284) | def ires_factor(self):
    method relative_refinement (line 1292) | def relative_refinement(self, l0, l1):
    method _assign_unit_system (line 1295) | def _assign_unit_system(
    method _uses_code_length_unit (line 1365) | def _uses_code_length_unit(self) -> bool:
    method _uses_code_time_unit (line 1369) | def _uses_code_time_unit(self) -> bool:
    method _create_unit_registry (line 1372) | def _create_unit_registry(self, unit_system):
    method set_units (line 1408) | def set_units(self):
    method setup_cosmology (line 1433) | def setup_cosmology(self):
    method get_unit_from_registry (line 1467) | def get_unit_from_registry(self, unit_str):
    method set_code_units (line 1481) | def set_code_units(self):
    method _validate_units_override_keys (line 1533) | def _validate_units_override_keys(cls, units_override):
    method _sanitize_units_override (line 1551) | def _sanitize_units_override(cls, units_override):
    method _override_code_units (line 1628) | def _override_code_units(self):
    method units (line 1644) | def units(self):
    method arr (line 1655) | def arr(self):
    method quan (line 1703) | def quan(self):
    method add_field (line 1748) | def add_field(
    method add_mesh_sampling_particle_field (line 1815) | def add_mesh_sampling_particle_field(self, sample_field, ptype="all"):
    method add_deposited_particle_field (line 1859) | def add_deposited_particle_field(
    method add_gradient_fields (line 1948) | def add_gradient_fields(self, fields=None):
    method max_level (line 2017) | def max_level(self):
    method max_level (line 2023) | def max_level(self, value):
    method min_level (line 2029) | def min_level(self):
    method min_level (line 2035) | def min_level(self, value):
    method define_unit (line 2038) | def define_unit(self, symbol, value, tex_repr=None, offset=None, prefi...
    method _is_within_domain (line 2072) | def _is_within_domain(self, point) -> bool:
  function _reconstruct_ds (line 2085) | def _reconstruct_ds(*args, **kwargs):
  class ParticleFile (line 2092) | class ParticleFile:
    method __init__ (line 2100) | def __init__(self, ds, io, filename, file_id, range=None):
    method select (line 2115) | def select(self, selector):  # noqa: B027
    method count (line 2118) | def count(self, selector):  # noqa: B027
    method _calculate_offsets (line 2121) | def _calculate_offsets(self, fields, pcounts):  # noqa: B027
    method __lt__ (line 2124) | def __lt__(self, other):
    method __eq__ (line 2129) | def __eq__(self, other):
    method __hash__ (line 2134) | def __hash__(self):
  class ParticleDataset (line 2138) | class ParticleDataset(Dataset):
    method __init__ (line 2143) | def __init__(

FILE: yt/data_objects/tests/test_add_field.py
  function test_add_field_lambda (line 15) | def test_add_field_lambda():
  function test_add_field_partial (line 28) | def test_add_field_partial():
  function test_add_field_arbitrary_callable (line 44) | def test_add_field_arbitrary_callable():
  function test_add_field_uncallable (line 57) | def test_add_field_uncallable():
  function test_add_field_flipped_signature (line 67) | def test_add_field_flipped_signature():
  function test_add_field_signature_v2 (line 78) | def test_add_field_signature_v2():
  function test_add_field_keyword_only (line 89) | def test_add_field_keyword_only():
  function test_derived_field (line 102) | def test_derived_field(monkeypatch):
  function test_dimensionless_field (line 134) | def test_dimensionless_field(add_field_kwargs):
  function test_add_field_quick (line 150) | def test_add_field_quick():
  function test_add_field_quick_syntax2 (line 193) | def test_add_field_quick_syntax2():
  function capturable_logger (line 254) | def capturable_logger(caplog):
  function test_add_field_quick_syntax_warnings (line 269) | def test_add_field_quick_syntax_warnings(caplog):

FILE: yt/data_objects/tests/test_bbox.py
  function test_object_bbox (line 9) | def test_object_bbox():
  function test_covering_grid_bbox (line 60) | def test_covering_grid_bbox():
  function test_intersection_bbox (line 90) | def test_intersection_bbox():

FILE: yt/data_objects/tests/test_boolean_regions.py
  function test_boolean_spheres_no_overlap (line 11) | def test_boolean_spheres_no_overlap():
  function test_boolean_spheres_overlap (line 60) | def test_boolean_spheres_overlap():
  function test_boolean_regions_no_overlap (line 103) | def test_boolean_regions_no_overlap():
  function test_boolean_regions_overlap (line 154) | def test_boolean_regions_overlap():
  function test_boolean_cylinders_no_overlap (line 197) | def test_boolean_cylinders_no_overlap():
  function test_boolean_cylinders_overlap (line 248) | def test_boolean_cylinders_overlap():
  function test_boolean_ellipsoids_no_overlap (line 292) | def test_boolean_ellipsoids_no_overlap():
  function test_boolean_ellipsoids_overlap (line 343) | def test_boolean_ellipsoids_overlap():
  function test_boolean_mix_periodicity (line 386) | def test_boolean_mix_periodicity():
  function test_boolean_ray_region_no_overlap (line 441) | def test_boolean_ray_region_no_overlap():
  function test_boolean_ray_region_overlap (line 492) | def test_boolean_ray_region_overlap():
  function test_boolean_rays_no_overlap (line 536) | def test_boolean_rays_no_overlap():
  function test_boolean_rays_overlap (line 586) | def test_boolean_rays_overlap():
  function test_boolean_slices_no_overlap (line 634) | def test_boolean_slices_no_overlap():
  function test_boolean_slices_overlap (line 685) | def test_boolean_slices_overlap():
  function test_boolean_ray_slice_no_overlap (line 728) | def test_boolean_ray_slice_no_overlap():
  function test_boolean_ray_slice_overlap (line 779) | def test_boolean_ray_slice_overlap():

FILE: yt/data_objects/tests/test_center_squeeze.py
  function test_center_squeeze (line 6) | def test_center_squeeze():
  function check_single_ds (line 15) | def check_single_ds(ds):

FILE: yt/data_objects/tests/test_chunking.py
  function _get_dobjs (line 7) | def _get_dobjs(c):
  function test_chunking (line 21) | def test_chunking():
  function test_ds_hold (line 45) | def test_ds_hold():

FILE: yt/data_objects/tests/test_clone.py
  function test_clone_sphere (line 6) | def test_clone_sphere():
  function test_clone_cut_region (line 27) | def test_clone_cut_region():

FILE: yt/data_objects/tests/test_compose.py
  function setup_module (line 9) | def setup_module():
  function _IDFIELD (line 17) | def _IDFIELD(data):
  function test_compose_no_overlap (line 31) | def test_compose_no_overlap():
  function test_compose_overlap (line 84) | def test_compose_overlap():
  function test_compose_max_level_min_level (line 162) | def test_compose_max_level_min_level():

FILE: yt/data_objects/tests/test_connected_sets.py
  function test_connected_sets (line 5) | def test_connected_sets():

FILE: yt/data_objects/tests/test_covering_grid.py
  function setup_module (line 19) | def setup_module():
  function test_covering_grid (line 28) | def test_covering_grid():
  function test_covering_grid_data_source (line 96) | def test_covering_grid_data_source():
  function test_xarray_export (line 147) | def test_xarray_export():
  function test_smoothed_covering_grid (line 184) | def test_smoothed_covering_grid():
  function test_arbitrary_grid (line 210) | def test_arbitrary_grid():
  function test_octree_cg (line 258) | def test_octree_cg():
  function test_smoothed_covering_grid_2d_dataset (line 267) | def test_smoothed_covering_grid_2d_dataset():
  function test_arbitrary_grid_derived_field (line 274) | def test_arbitrary_grid_derived_field():
  function test_arbitrary_field_parameters (line 302) | def test_arbitrary_field_parameters():
  function test_arbitrary_grid_edge (line 321) | def test_arbitrary_grid_edge():

FILE: yt/data_objects/tests/test_cut_region_chaining.py
  function test_chained_cut_region_with_locals (line 7) | def test_chained_cut_region_with_locals():

FILE: yt/data_objects/tests/test_cutting_plane.py
  function setup_module (line 10) | def setup_module():
  function teardown_func (line 16) | def teardown_func(fns):
  function test_cutting_plane (line 24) | def test_cutting_plane():

FILE: yt/data_objects/tests/test_data_collection.py
  function setup_module (line 7) | def setup_module():
  function test_data_collection (line 13) | def test_data_collection():

FILE: yt/data_objects/tests/test_data_containers.py
  function temp_workdir (line 21) | def temp_workdir(tmp_path):
  function test_yt_data_container (line 29) | def test_yt_data_container():
  function test_write_out (line 60) | def test_write_out():
  function test_invalid_write_out (line 81) | def test_invalid_write_out():
  function test_to_dataframe (line 92) | def test_to_dataframe():
  function test_to_astropy_table (line 103) | def test_to_astropy_table():
  function test_std (line 116) | def test_std():
  function test_to_frb (line 121) | def test_to_frb():
  function test_extract_isocontours (line 141) | def test_extract_isocontours():
  function test_derived_field (line 168) | def test_derived_field():

FILE: yt/data_objects/tests/test_dataset_access.py
  function test_box_creation (line 19) | def test_box_creation():
  function test_region_from_d (line 39) | def test_region_from_d():
  function test_accessing_all_data (line 81) | def test_accessing_all_data():
  function test_slice_from_r (line 94) | def test_slice_from_r():
  function test_point_from_r (line 129) | def test_point_from_r():
  function test_ray_from_r (line 141) | def test_ray_from_r():
  function test_ortho_ray_from_r (line 164) | def test_ortho_ray_from_r():
  function test_particle_counts (line 187) | def test_particle_counts():
  function test_checksum (line 200) | def test_checksum():

FILE: yt/data_objects/tests/test_derived_quantities.py
  function setup_module (line 15) | def setup_module():
  function test_extrema (line 21) | def test_extrema():
  function test_extrema_with_nan (line 44) | def test_extrema_with_nan():
  function test_average (line 58) | def test_average():
  function test_standard_deviation (line 76) | def test_standard_deviation():
  function test_max_location (line 100) | def test_max_location():
  function test_min_location (line 115) | def test_min_location():
  function test_sample_at_min_field_values (line 130) | def test_sample_at_min_field_values():
  function test_sample_at_max_field_values (line 151) | def test_sample_at_max_field_values():
  function test_in_memory_sph_derived_quantities (line 172) | def test_in_memory_sph_derived_quantities():
  function test_sph_datasets_derived_quantities (line 216) | def test_sph_datasets_derived_quantities():
  function test_derived_quantities_with_particle_types (line 231) | def test_derived_quantities_with_particle_types():

FILE: yt/data_objects/tests/test_disks.py
  function test_bad_disk_input (line 7) | def test_bad_disk_input():

FILE: yt/data_objects/tests/test_ellipsoid.py
  function setup_module (line 7) | def setup_module():
  function _difference (line 14) | def _difference(x1, x2, dw):
  function test_ellipsoid (line 21) | def test_ellipsoid():

FILE: yt/data_objects/tests/test_exclude_functions.py
  function test_exclude_above (line 8) | def test_exclude_above():
  function test_exclude_below (line 19) | def test_exclude_below():
  function test_exclude_nan (line 30) | def test_exclude_nan():
  function test_equal (line 40) | def test_equal():
  function test_inside_outside (line 53) | def test_inside_outside():

FILE: yt/data_objects/tests/test_extract_regions.py
  function setup_module (line 13) | def setup_module():
  function test_cut_region (line 19) | def test_cut_region():
  function test_cut_region_simple_syntax (line 71) | def test_cut_region_simple_syntax():
  function test_region_and_particles (line 102) | def test_region_and_particles():
  function test_region_chunked_read (line 121) | def test_region_chunked_read():
  function test_chained_cut_region (line 132) | def test_chained_cut_region():

FILE: yt/data_objects/tests/test_firefly.py
  function test_firefly_JSON_string (line 10) | def test_firefly_JSON_string():
  function test_firefly_write_to_disk (line 29) | def test_firefly_write_to_disk(tmp_path):
  function firefly_test_dataset (line 45) | def firefly_test_dataset():
  function test_field_empty_specification (line 78) | def test_field_empty_specification(
  function test_field_unique_string_specification (line 98) | def test_field_unique_string_specification(firefly_test_dataset):
  function test_field_common_string_specification (line 128) | def test_field_common_string_specification(firefly_test_dataset):
  function test_field_tuple_specification (line 176) | def test_field_tuple_specification(
  function test_field_invalid_specification (line 235) | def test_field_invalid_specification(
  function test_field_mixed_specification (line 251) | def test_field_mixed_specification(firefly_test_dataset):

FILE: yt/data_objects/tests/test_fluxes.py
  function setup_module (line 12) | def setup_module():
  function test_flux_calculation (line 18) | def test_flux_calculation():
  function test_sampling (line 35) | def test_sampling():
  class ExporterTests (line 49) | class ExporterTests(TestCase):
    method setUp (line 50) | def setUp(self):
    method tearDown (line 55) | def tearDown(self):
    method test_export_ply (line 59) | def test_export_ply(self):
    method test_export_obj (line 73) | def test_export_obj(self):
  function test_correct_output_unit_fake_ds (line 136) | def test_correct_output_unit_fake_ds():
  function test_radius_surface (line 146) | def test_radius_surface():

FILE: yt/data_objects/tests/test_image_array.py
  function setup_module (line 15) | def setup_module():
  function teardown_module (line 24) | def teardown_module():
  function dummy_image (line 28) | def dummy_image(kstep, nlayers):
  function test_rgba_rescale (line 36) | def test_rgba_rescale():
  class TestImageArray (line 54) | class TestImageArray(unittest.TestCase):
    method setUp (line 58) | def setUp(self):
    method test_image_arry_units (line 63) | def test_image_arry_units(self):
    method test_image_array_hdf5 (line 73) | def test_image_array_hdf5(self):
    method test_image_array_rgb_png (line 104) | def test_image_array_rgb_png(self):
    method test_image_array_rgba_png (line 114) | def test_image_array_rgba_png(self):
    method test_image_array_background (line 123) | def test_image_array_background(self):
    method test_write_image (line 131) | def test_write_image(self):
    method test_clipping_value (line 136) | def test_clipping_value(self):
    method tearDown (line 148) | def tearDown(self):

FILE: yt/data_objects/tests/test_io_geometry.py
  function test_preserve_geometric_properties (line 14) | def test_preserve_geometric_properties():
  function test_default_to_cartesian (line 32) | def test_default_to_cartesian():

FILE: yt/data_objects/tests/test_numpy_ops.py
  function setup_module (line 7) | def setup_module():
  function test_mean_sum_integrate (line 13) | def test_mean_sum_integrate():
  function test_min_max (line 93) | def test_min_max():
  function test_argmin (line 153) | def test_argmin():
  function test_argmax (line 186) | def test_argmax():

FILE: yt/data_objects/tests/test_octree.py
  function test_building_tree (line 9) | def test_building_tree():
  function test_sph_interpolation_scatter (line 18) | def test_sph_interpolation_scatter():
  function test_sph_interpolation_gather (line 55) | def test_sph_interpolation_gather():
  function test_octree_properties (line 94) | def test_octree_properties():

FILE: yt/data_objects/tests/test_ortho_rays.py
  function test_ortho_ray (line 7) | def test_ortho_ray():

FILE: yt/data_objects/tests/test_particle_filter.py
  function test_add_particle_filter (line 15) | def test_add_particle_filter():
  function test_add_particle_filter_overriding (line 55) | def test_add_particle_filter_overriding():
  function test_particle_filter_decorator (line 100) | def test_particle_filter_decorator():
  function test_particle_filter_exceptions (line 125) | def test_particle_filter_exceptions():
  function test_particle_filter_dependency (line 147) | def test_particle_filter_dependency():
  function test_covering_grid_particle_filter (line 171) | def test_covering_grid_particle_filter():
  function test_sph_particle_filter_plotting (line 193) | def test_sph_particle_filter_plotting():

FILE: yt/data_objects/tests/test_particle_trajectories.py
  function setup_module (line 9) | def setup_module():
  function test_orbit_traj (line 28) | def test_orbit_traj():
  function test_etc_traj (line 44) | def test_etc_traj():

FILE: yt/data_objects/tests/test_particle_trajectories_pytest.py
  function particle_trajectories_test_dataset (line 23) | def particle_trajectories_test_dataset():
  function test_uniqueness (line 53) | def test_uniqueness():
  function test_ptype (line 83) | def test_ptype():
  function test_default_field_tuple (line 123) | def test_default_field_tuple(particle_trajectories_test_dataset, ptype):
  function test_time_and_index (line 139) | def test_time_and_index(particle_trajectories_test_dataset, ptype):

FILE: yt/data_objects/tests/test_pickling.py
  function test_grid_pickles (line 14) | def test_grid_pickles():
  function test_particle_pickles (line 23) | def test_particle_pickles():

FILE: yt/data_objects/tests/test_points.py
  function setup_module (line 8) | def setup_module():
  function test_point_creation (line 14) | def test_point_creation():
  function test_domain_point (line 26) | def test_domain_point():
  function test_fast_find_field_values_at_points (line 61) | def test_fast_find_field_values_at_points():

FILE: yt/data_objects/tests/test_print_stats.py
  function test_no_print_stats (line 9) | def test_no_print_stats():
  function test_print_stats (line 15) | def test_print_stats():

FILE: yt/data_objects/tests/test_profiles.py
  function test_profiles (line 25) | def test_profiles():
  function test_particle_profiles (line 253) | def test_particle_profiles():
  function test_mixed_particle_mesh_profiles (line 326) | def test_mixed_particle_mesh_profiles():
  function test_particle_profile_negative_field (line 401) | def test_particle_profile_negative_field():
  function test_profile_zero_weight (line 481) | def test_profile_zero_weight():
  function test_profile_sph_data (line 528) | def test_profile_sph_data():
  function test_profile_override_limits (line 545) | def test_profile_override_limits():
  class TestBadProfiles (line 585) | class TestBadProfiles(unittest.TestCase):
    method setUp (line 589) | def setUp(self):
    method tearDown (line 594) | def tearDown(self):
    method test_unequal_data_shape_profile (line 600) | def test_unequal_data_shape_profile(self):
    method test_unequal_bin_field_profile (line 625) | def test_unequal_bin_field_profile(self):
    method test_set_linear_scaling_for_none_extrema (line 649) | def test_set_linear_scaling_for_none_extrema(self):
  function test_index_field_units (line 665) | def test_index_field_units():
  function test_export_astropy (line 683) | def test_export_astropy():
  function test_export_pandas (line 725) | def test_export_pandas():
  function test_preserve_source_parameters_restores_field_parameters_on_exception (line 754) | def test_preserve_source_parameters_restores_field_parameters_on_excepti...

FILE: yt/data_objects/tests/test_projection.py
  function setup_module (line 14) | def setup_module():
  function teardown_func (line 20) | def teardown_func(fns):
  function test_projection (line 29) | def test_projection(pf):
  function test_max_level (line 164) | def test_max_level():
  function test_min_level (line 173) | def test_min_level():

FILE: yt/data_objects/tests/test_rays.py
  function test_ray (line 17) | def test_ray():
  function test_ray_particle (line 72) | def test_ray_particle():
  function test_ray_particle2 (line 90) | def test_ray_particle2():

FILE: yt/data_objects/tests/test_refinement.py
  function setup_fake_refby (line 7) | def setup_fake_refby():
  function test_refine_by (line 44) | def test_refine_by():

FILE: yt/data_objects/tests/test_regions.py
  function test_box_creation (line 7) | def test_box_creation():
  function test_max_level_min_level_semantics (line 20) | def test_max_level_min_level_semantics():
  function test_ellipsis_selection (line 34) | def test_ellipsis_selection():

FILE: yt/data_objects/tests/test_registration.py
  function test_reregistration_warning (line 7) | def test_reregistration_warning():

FILE: yt/data_objects/tests/test_slice.py
  function setup_module (line 12) | def setup_module():
  function teardown_func (line 18) | def teardown_func(fns):
  function test_slice (line 27) | def test_slice(pf):
  function test_slice_over_edges (line 78) | def test_slice_over_edges():
  function test_slice_over_outer_boundary (line 88) | def test_slice_over_outer_boundary():

FILE: yt/data_objects/tests/test_sph_data_objects.py
  function test_point (line 9) | def test_point():
  function test_slice (line 44) | def test_slice():
  function test_slice_to_frb (line 67) | def test_slice_to_frb():
  function test_region (line 77) | def test_region():
  function test_periodic_region (line 97) | def test_periodic_region():
  function test_sphere (line 125) | def test_sphere():
  function test_disk (line 156) | def test_disk():
  function test_ray (line 177) | def test_ray():
  function test_cutting (line 197) | def test_cutting():
  function test_chained_selection (line 206) | def test_chained_selection():
  function test_boolean_selection (line 215) | def test_boolean_selection():
  function test_arbitrary_grid (line 265) | def test_arbitrary_grid():
  function test_compare_arbitrary_grid_slice (line 279) | def test_compare_arbitrary_grid_slice():
  function test_gather_slice (line 298) | def test_gather_slice():
  function test_gather_grid (line 319) | def test_gather_grid():
  function test_covering_grid_scatter (line 334) | def test_covering_grid_scatter():
  function test_covering_grid_gather (line 348) | def test_covering_grid_gather():
  function test_covering_grid_derived_fields (line 365) | def test_covering_grid_derived_fields():

FILE: yt/data_objects/tests/test_spheres.py
  function setup_module (line 9) | def setup_module():
  function test_domain_sphere (line 25) | def test_domain_sphere():
  function test_sphere_center (line 92) | def test_sphere_center():
  function test_center_error (line 110) | def test_center_error():
  function test_minimal_sphere (line 121) | def test_minimal_sphere():
  function test_minimal_sphere_bad_inputs (line 140) | def test_minimal_sphere_bad_inputs():

FILE: yt/data_objects/tests/test_time_series.py
  function test_pattern_expansion (line 12) | def test_pattern_expansion():
  function test_no_match_pattern (line 29) | def test_no_match_pattern():
  function FakeDataset (line 37) | def FakeDataset():
  function fake_datasets (line 73) | def fake_datasets():
  function test_init_fake_dataseries (line 85) | def test_init_fake_dataseries(fake_datasets):
  function test_init_fake_dataseries2 (line 114) | def test_init_fake_dataseries2(FakeDataset, fake_datasets):
  function test_get_by_key (line 125) | def test_get_by_key(FakeDataset, fake_datasets):

FILE: yt/data_objects/tests/test_units_override.py
  function test_schema_validation (line 12) | def test_schema_validation():
  function test_invalid_schema_detection (line 30) | def test_invalid_schema_detection():
  function test_typing_error_detection (line 57) | def test_typing_error_detection():
  function test_dimensionality_error_detection (line 68) | def test_dimensionality_error_detection():

FILE: yt/data_objects/time_series.py
  class AnalysisTaskProxy (line 36) | class AnalysisTaskProxy:
    method __init__ (line 37) | def __init__(self, time_series):
    method __getitem__ (line 40) | def __getitem__(self, key):
    method keys (line 50) | def keys(self):
    method __contains__ (line 53) | def __contains__(self, key):
  function get_ds_prop (line 57) | def get_ds_prop(propname):
  class TimeSeriesParametersContainer (line 82) | class TimeSeriesParametersContainer:
    method __init__ (line 83) | def __init__(self, data_object):
    method __getattr__ (line 86) | def __getattr__(self, attr):
  class DatasetSeries (line 92) | class DatasetSeries:
    method __init_subclass__ (line 153) | def __init_subclass__(cls, *args, **kwargs):
    method __new__ (line 160) | def __new__(cls, outputs, *args, **kwargs):
    method __init__ (line 170) | def __init__(
    method _get_filenames_from_glob_pattern (line 199) | def _get_filenames_from_glob_pattern(outputs):
    method __getitem__ (line 214) | def __getitem__(self, key):
    method __len__ (line 228) | def __len__(self):
    method outputs (line 232) | def outputs(self):
    method piter (line 235) | def piter(self, storage=None, dynamic=False):
    method eval (line 341) | def eval(self, tasks, obj=None):
    method from_output_log (line 364) | def from_output_log(cls, output_log, line_prefix="DATASET WRITTEN", pa...
    method _load (line 375) | def _load(self, output_fn, *, hint: str | None = None, **kwargs):
    method particle_trajectories (line 386) | def particle_trajectories(
    method _get_by_attribute (line 440) | def _get_by_attribute(
    method get_by_time (line 545) | def get_by_time(
    method get_by_redshift (line 577) | def get_by_redshift(
  class TimeSeriesQuantitiesContainer (line 608) | class TimeSeriesQuantitiesContainer:
    method __init__ (line 609) | def __init__(self, data_object, quantities):
    method __getitem__ (line 613) | def __getitem__(self, key):
  class DatasetSeriesObject (line 629) | class DatasetSeriesObject:
    method __init__ (line 630) | def __init__(self, time_series, data_object_name, *args, **kwargs):
    method eval (line 641) | def eval(self, tasks):
    method get (line 644) | def get(self, ds):
  class SimulationTimeSeries (line 651) | class SimulationTimeSeries(DatasetSeries, ABC):
    method __init__ (line 652) | def __init__(self, parameter_filename, find_outputs=False):
    method _set_parameter_defaults (line 679) | def _set_parameter_defaults(self):  # noqa: B027
    method _parse_parameter_file (line 683) | def _parse_parameter_file(self):
    method _set_units (line 687) | def _set_units(self):
    method _calculate_simulation_bounds (line 691) | def _calculate_simulation_bounds(self):
    method _get_all_outputs (line 695) | def _get_all_outputs(self, *, find_outputs=False):
    method __repr__ (line 698) | def __repr__(self):
    method arr (line 704) | def arr(self):
    method quan (line 713) | def quan(self):
    method print_key_parameters (line 720) | def print_key_parameters(self):
    method _print_attr (line 744) | def _print_attr(self, a):
    method _get_outputs_by_key (line 754) | def _get_outputs_by_key(self, key, values, tolerance=None, outputs=None):

FILE: yt/data_objects/unions.py
  class Union (line 6) | class Union(ABC):
    method _union_type (line 9) | def _union_type(self) -> str: ...
    method __init__ (line 11) | def __init__(self, name, sub_types):
    method __iter__ (line 15) | def __iter__(self):
    method __repr__ (line 18) | def __repr__(self):
  class MeshUnion (line 22) | class MeshUnion(Union):
  class ParticleUnion (line 26) | class ParticleUnion(Union):

FILE: yt/extensions/__init__.py
  function setup (line 23) | def setup():

FILE: yt/exthook.py
  class ExtensionImporter (line 27) | class ExtensionImporter:
    method __init__ (line 33) | def __init__(self, module_choices, wrapper_module):
    method __eq__ (line 39) | def __eq__(self, other):
    method __ne__ (line 47) | def __ne__(self, other):
    method install (line 50) | def install(self):
    method find_module (line 53) | def find_module(self, fullname, path=None):
    method load_module (line 57) | def load_module(self, fullname):
    method is_important_traceback (line 91) | def is_important_traceback(self, important_module, tb):
    method is_important_frame (line 103) | def is_important_frame(self, important_module, tb):

FILE: yt/fields/angular_momentum.py
  function setup_angular_momentum (line 14) | def setup_angular_momentum(registry, ftype="gas", slice_info=None):

FILE: yt/fields/astro_fields.py
  function setup_astro_fields (line 9) | def setup_astro_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/astro_simulations.py
  class AstroSimulation (line 13) | class AstroSimulation(DomainContext):

FILE: yt/fields/cosmology_fields.py
  function setup_cosmology_fields (line 7) | def setup_cosmology_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/derived_field.py
  class _FieldFuncSignature (line 39) | class _FieldFuncSignature(enum.Enum):
  function TranslationFunc (line 44) | def TranslationFunc(field_name):
  function NullFunc (line 53) | def NullFunc(field, data):
  function DeprecatedFieldFunc (line 57) | def DeprecatedFieldFunc(ret_field, func, since, removal):
  class DerivedFieldBase (line 76) | class DerivedFieldBase(abc.ABC):
    method __call__ (line 78) | def __call__(self, field, data):
    method __repr__ (line 82) | def __repr__(self) -> str:
    method __mul__ (line 86) | def __mul__(self, other) -> "DerivedFieldCombination":
    method __rmul__ (line 89) | def __rmul__(self, other) -> "DerivedFieldCombination":
    method __truediv__ (line 93) | def __truediv__(self, other) -> "DerivedFieldCombination":
    method __rtruediv__ (line 96) | def __rtruediv__(self, other) -> "DerivedFieldCombination":
    method __add__ (line 100) | def __add__(self, other) -> "DerivedFieldCombination":
    method __radd__ (line 103) | def __radd__(self, other) -> "DerivedFieldCombination":
    method __sub__ (line 107) | def __sub__(self, other) -> "DerivedFieldCombination":
    method __rsub__ (line 110) | def __rsub__(self, other) -> "DerivedFieldCombination":
    method __neg__ (line 114) | def __neg__(self) -> "DerivedFieldCombination":
    method __leq__ (line 118) | def __leq__(self, other) -> "DerivedFieldCombination":
    method __lt__ (line 121) | def __lt__(self, other) -> "DerivedFieldCombination":
    method __geq__ (line 124) | def __geq__(self, other) -> "DerivedFieldCombination":
    method __gt__ (line 127) | def __gt__(self, other) -> "DerivedFieldCombination":
    method __eq__ (line 132) | def __eq__(self, other) -> "DerivedFieldCombination":  # type: ignore[...
    method __ne__ (line 135) | def __ne__(self, other) -> "DerivedFieldCombination":  # type: ignore[...
    method __hash__ (line 139) | def __hash__(self) -> int:
  class DerivedFieldCombination (line 143) | class DerivedFieldCombination(DerivedFieldBase):
    method __init__ (line 148) | def __init__(self, terms: list, op: Callable):
    method __hash__ (line 167) | def __hash__(self) -> int:
    method __call__ (line 170) | def __call__(self, field, data):
    method __repr__ (line 188) | def __repr__(self):
    method getDependentFields (line 191) | def getDependentFields(self):
    method name (line 203) | def name(self):
    method __bool__ (line 206) | def __bool__(self):
  class DerivedField (line 220) | class DerivedField(DerivedFieldBase):
    method __init__ (line 272) | def __init__(
    method __hash__ (line 344) | def __hash__(self) -> int:
    method _copy_def (line 364) | def _copy_def(self):
    method is_sph_field (line 378) | def is_sph_field(self):
    method local_sampling (line 391) | def local_sampling(self):
    method get_units (line 394) | def get_units(self):
    method get_projected_units (line 401) | def get_projected_units(self):
    method check_available (line 408) | def check_available(self, data):
    method get_dependencies (line 418) | def get_dependencies(self, *args, **kwargs):
    method _get_needed_parameters (line 426) | def _get_needed_parameters(self, fd):
    method unit_registry (line 442) | def unit_registry(self, data):
    method __call__ (line 454) | def __call__(self, data):
    method _func_signature_type (line 471) | def _func_signature_type(self) -> _FieldFuncSignature:
    method _eval (line 478) | def _eval(self, data):
    method get_source (line 487) | def get_source(self):
    method get_label (line 493) | def get_label(self, projected=False):
    method alias_field (line 520) | def alias_field(self) -> bool:
    method is_alias (line 529) | def is_alias(self) -> bool:
    method is_alias_to (line 532) | def is_alias_to(self, other: "DerivedField") -> bool:
    method alias_name (line 536) | def alias_name(self) -> FieldKey | None:
    method __repr__ (line 541) | def __repr__(self):
    method _is_ion (line 556) | def _is_ion(self):
    method _ion_to_label (line 563) | def _ion_to_label(self):
    method get_latex_display_name (line 663) | def get_latex_display_name(self):
    method __copy__ (line 677) | def __copy__(self):
  class FieldValidator (line 698) | class FieldValidator:
    method __init_subclass__ (line 703) | def __init_subclass__(cls, **kwargs):
  class ValidateParameter (line 711) | class ValidateParameter(FieldValidator):
    method __init__ (line 725) | def __init__(
    method __call__ (line 734) | def __call__(self, data):
  class ValidateDataField (line 744) | class ValidateDataField(FieldValidator):
    method __init__ (line 755) | def __init__(self, field):
    method __call__ (line 759) | def __call__(self, data):
  class ValidateProperty (line 771) | class ValidateProperty(FieldValidator):
    method __init__ (line 781) | def __init__(self, prop: str | Iterable[str]):
    method __call__ (line 785) | def __call__(self, data):
  class ValidateSpatial (line 792) | class ValidateSpatial(FieldValidator):
    method __init__ (line 807) | def __init__(self, ghost_zones: int | None = 0, fields=None):
    method __call__ (line 812) | def __call__(self, data):
  class ValidateGridType (line 822) | class ValidateGridType(FieldValidator):
    method __init__ (line 828) | def __init__(self):
    method __call__ (line 831) | def __call__(self, data):

FILE: yt/fields/domain_context.py
  class DomainContext (line 8) | class DomainContext(abc.ABC):
    class __metaclass__ (line 9) | class __metaclass__(type):
      method __init__ (line 10) | def __init__(cls, name, b, d):
    method __init__ (line 17) | def __init__(self, ds):

FILE: yt/fields/field_detector.py
  class FieldDetector (line 27) | class FieldDetector(defaultdict):
    method __init__ (line 34) | def __init__(self, nd=16, ds=None, flat=False, field_parameters=None):
    method _reshape_vals (line 101) | def _reshape_vals(self, arr):
    method __missing__ (line 108) | def __missing__(self, item: tuple[str, str] | str):
    method _debug (line 190) | def _debug(self):
    method deposit (line 194) | def deposit(self, *args, **kwargs):
    method mesh_sampling_particle_field (line 204) | def mesh_sampling_particle_field(self, *args, **kwargs):
    method smooth (line 210) | def smooth(self, *args, **kwargs):
    method particle_operation (line 218) | def particle_operation(self, *args, **kwargs):
    method _read_data (line 221) | def _read_data(self, field_name):
    method get_field_parameter (line 233) | def get_field_parameter(self, param, default=0.0):
    method apply_units (line 271) | def apply_units(self, arr, units):
    method has_field_parameter (line 274) | def has_field_parameter(self, param):
    method fcoords (line 278) | def fcoords(self):
    method fcoords_vertex (line 289) | def fcoords_vertex(self):
    method icoords (line 298) | def icoords(self):
    method ires (line 310) | def ires(self):
    method fwidth (line 318) | def fwidth(self):

FILE: yt/fields/field_exceptions.py
  class ValidationException (line 1) | class ValidationException(Exception):
  class NeedsGridType (line 5) | class NeedsGridType(ValidationException):
    method __init__ (line 6) | def __init__(self, ghost_zones=0, fields=None):
    method __str__ (line 10) | def __str__(self):
  class NeedsOriginalGrid (line 15) | class NeedsOriginalGrid(NeedsGridType):
    method __init__ (line 16) | def __init__(self):
  class NeedsDataField (line 20) | class NeedsDataField(ValidationException):
    method __init__ (line 21) | def __init__(self, missing_fields):
    method __str__ (line 24) | def __str__(self):
  class NeedsProperty (line 28) | class NeedsProperty(ValidationException):
    method __init__ (line 29) | def __init__(self, missing_properties):
    method __str__ (line 32) | def __str__(self):
  class NeedsParameter (line 36) | class NeedsParameter(ValidationException):
    method __init__ (line 37) | def __init__(self, missing_parameters):
    method __str__ (line 40) | def __str__(self):
  class NeedsConfiguration (line 44) | class NeedsConfiguration(ValidationException):
    method __init__ (line 45) | def __init__(self, parameter, value):
    method __str__ (line 49) | def __str__(self):
  class FieldUnitsError (line 53) | class FieldUnitsError(Exception):

FILE: yt/fields/field_functions.py
  function get_radius (line 10) | def get_radius(data, field_prefix, ftype):
  function get_periodic_rvec (line 47) | def get_periodic_rvec(data):
  function validate_field_function (line 79) | def validate_field_function(function: Callable) -> None:

FILE: yt/fields/field_info_container.py
  class FieldInfoContainer (line 38) | class FieldInfoContainer(UserDict):
    method __init__ (line 52) | def __init__(self, ds, field_list: list[FieldKey], slice_info=None):
    method curvilinear (line 64) | def curvilinear(self) -> bool:
    method setup_fluid_fields (line 78) | def setup_fluid_fields(self):
    method setup_fluid_index_fields (line 81) | def setup_fluid_index_fields(self):
    method setup_particle_fields (line 94) | def setup_particle_fields(self, ptype, ftype="gas", num_neighbors=64):
    method setup_extra_union_fields (line 166) | def setup_extra_union_fields(self, ptype="all"):
    method setup_smoothed_fields (line 175) | def setup_smoothed_fields(self, ptype, num_neighbors=64, ftype="gas"):
    method get_aliases_gallery (line 218) | def get_aliases_gallery(self) -> list[FieldName]:
    method setup_fluid_aliases (line 247) | def setup_fluid_aliases(self, ftype: FieldType = "gas") -> None:
    method _sanitize_sampling_type (line 303) | def _sanitize_sampling_type(sampling_type: str) -> str:
    method add_field (line 331) | def add_field(
    method load_all_plugins (line 394) | def load_all_plugins(self, ftype: str | None = "gas") -> None:
    method load_plugin (line 404) | def load_plugin(
    method find_dependencies (line 416) | def find_dependencies(self, loaded):
    method add_output_field (line 424) | def add_output_field(self, name, sampling_type, **kwargs):
    method alias (line 434) | def alias(
    method add_deprecated_field (line 501) | def add_deprecated_field(
    method has_key (line 555) | def has_key(self, key):
    method __missing__ (line 563) | def __missing__(self, key):
    method create_with_fallback (line 569) | def create_with_fallback(cls, fallback, name=""):
    method __contains__ (line 575) | def __contains__(self, key):
    method __iter__ (line 582) | def __iter__(self):
    method keys (line 587) | def keys(self):
    method check_derived_fields (line 593) | def check_derived_fields(self, fields_to_check=None):
    method _set_linear_fields (line 688) | def _set_linear_fields(self):

FILE: yt/fields/field_plugin_registry.py
  function register_field_plugin (line 8) | def register_field_plugin(func: Callable) -> Callable:

FILE: yt/fields/field_type_container.py
  function _fill_values (line 14) | def _fill_values(values):
  class FieldTypeContainer (line 28) | class FieldTypeContainer:
    method __init__ (line 29) | def __init__(self, ds):
    method __getattr__ (line 32) | def __getattr__(self, attr):
    method field_types (line 40) | def field_types(self):
    method __dir__ (line 43) | def __dir__(self):
    method __iter__ (line 46) | def __iter__(self):
    method __contains__ (line 54) | def __contains__(self, obj):
    method _ipython_display_ (line 65) | def _ipython_display_(self):
  class FieldNameContainer (line 83) | class FieldNameContainer:
    method __init__ (line 84) | def __init__(self, ds, field_type):
    method __getattr__ (line 88) | def __getattr__(self, attr):
    method __setattr__ (line 95) | def __setattr__(self, attr, value):
    method __dir__ (line 101) | def __dir__(self):
    method __iter__ (line 104) | def __iter__(self):
    method __contains__ (line 109) | def __contains__(self, obj):
    method _ipython_display_ (line 127) | def _ipython_display_(self):

FILE: yt/fields/fluid_fields.py
  function setup_fluid_fields (line 18) | def setup_fluid_fields(registry, ftype="gas", slice_info=None):
  function setup_gradient_fields (line 244) | def setup_gradient_fields(registry, grad_field, field_units, slice_info=...

FILE: yt/fields/fluid_vector_fields.py
  function setup_fluid_vector_fields (line 15) | def setup_fluid_vector_fields(

FILE: yt/fields/geometric_fields.py
  function setup_geometric_fields (line 19) | def setup_geometric_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/interpolated_fields.py
  function add_interpolated_field (line 15) | def add_interpolated_field(

FILE: yt/fields/local_fields.py
  class LocalFieldInfoContainer (line 17) | class LocalFieldInfoContainer(FieldInfoContainer):
    method add_field (line 18) | def add_field(
  class derived_field (line 55) | class derived_field:
    method __init__ (line 58) | def __init__(self, **kwargs) -> None:
    method __call__ (line 61) | def __call__(self, f: Callable) -> Callable:
  function setup_local_fields (line 67) | def setup_local_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/magnetic_field.py
  function get_magnetic_normalization (line 21) | def get_magnetic_normalization(key: str) -> float:
  function setup_magnetic_field_fields (line 31) | def setup_magnetic_field_fields(
  function setup_magnetic_field_aliases (line 263) | def setup_magnetic_field_aliases(registry, ds_ftype, ds_fields, ftype="g...

FILE: yt/fields/my_plugin_fields.py
  function setup_my_plugins_fields (line 9) | def setup_my_plugins_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/particle_fields.py
  function _field_concat (line 71) | def _field_concat(fname):
  function _field_concat_slice (line 84) | def _field_concat_slice(fname, axi):
  function particle_deposition_functions (line 97) | def particle_deposition_functions(ptype, coord_name, mass_name, registry):
  function particle_scalar_functions (line 245) | def particle_scalar_functions(ptype, coord_name, vel_name, registry):
  function particle_vector_functions (line 277) | def particle_vector_functions(ptype, coord_names, vel_names, registry):
  function get_angular_momentum_components (line 304) | def get_angular_momentum_components(ptype, data, spos, svel):
  function standard_particle_fields (line 311) | def standard_particle_fields(
  function add_particle_average (line 741) | def add_particle_average(registry, ptype, field_name, weight=None, densi...
  function add_nearest_neighbor_field (line 770) | def add_nearest_neighbor_field(ptype, coord_name, registry, nneighbors=64):
  function add_nearest_neighbor_value_field (line 793) | def add_nearest_neighbor_value_field(ptype, coord_name, sampled_field, r...
  function add_union_field (line 823) | def add_union_field(registry, ptype, field_name, units):

FILE: yt/fields/species_fields.py
  function _create_fraction_func (line 21) | def _create_fraction_func(ftype, species):
  function _mass_from_cell_volume_and_density (line 28) | def _mass_from_cell_volume_and_density(ftype, species):
  function _mass_from_particle_mass_and_fraction (line 35) | def _mass_from_particle_mass_and_fraction(ftype, species):
  function _create_number_density_func (line 42) | def _create_number_density_func(ftype, species):
  function _create_density_func (line 53) | def _create_density_func(ftype, species):
  function add_species_field_by_density (line 60) | def add_species_field_by_density(registry, ftype, species):
  function add_species_field_by_fraction (line 100) | def add_species_field_by_fraction(registry, ftype, species):
  function add_species_aliases (line 140) | def add_species_aliases(registry, ftype, alias_species, species):
  function add_deprecated_species_aliases (line 158) | def add_deprecated_species_aliases(registry, ftype, alias_species, speci...
  function add_deprecated_species_alias (line 167) | def add_deprecated_species_alias(registry, ftype, alias_species, species...
  function add_nuclei_density_fields (line 189) | def add_nuclei_density_fields(registry, ftype):
  function _default_nuclei_density (line 252) | def _default_nuclei_density(field, data):
  function _nuclei_density (line 267) | def _nuclei_density(field, data):
  function _get_all_elements (line 304) | def _get_all_elements(species_list):
  function _get_element_multiple (line 313) | def _get_element_multiple(compound, element):
  function setup_species_fields (line 324) | def setup_species_fields(registry, ftype="gas", slice_info=None):

FILE: yt/fields/tensor_fields.py
  function metric (line 5) | def metric(mu: int, nu: int):
  function setup_stress_energy_ideal (line 15) | def setup_stress_energy_ideal(registry, ftype="gas"):

FILE: yt/fields/tests/test_ambiguous_fields.py
  function test_ambiguous_fails (line 6) | def test_ambiguous_fails():
  function test_nameonly_field_with_all_aliases_candidates (line 26) | def test_nameonly_field_with_all_aliases_candidates():

FILE: yt/fields/tests/test_angular_momentum.py
  function test_AM_value (line 6) | def test_AM_value():

FILE: yt/fields/tests/test_field_access.py
  function test_field_access (line 9) | def test_field_access():

FILE: yt/fields/tests/test_field_access_pytest.py
  function test_unexisting_field_access (line 10) | def test_unexisting_field_access():

FILE: yt/fields/tests/test_field_name_container.py
  function do_field_type (line 5) | def do_field_type(ft):
  function test_field_name_container (line 24) | def test_field_name_container():
  function test_vertex_fields_only_in_unstructured_ds (line 37) | def test_vertex_fields_only_in_unstructured_ds():

FILE: yt/fields/tests/test_fields.py
  function get_params (line 32) | def get_params(ds):
  function _strip_ftype (line 57) | def _strip_ftype(field):
  class FieldAccessTestCase (line 66) | class FieldAccessTestCase:
    method description (line 72) | def description(self) -> str:
  function get_base_ds (line 76) | def get_base_ds(nprocs):
  function test_all_fields (line 125) | def test_all_fields():
  function test_add_deposited_particle_field (line 197) | def test_add_deposited_particle_field():
  function test_add_gradient_fields (line 223) | def test_add_gradient_fields():
  function test_add_gradient_fields_by_fname (line 247) | def test_add_gradient_fields_by_fname():
  function test_add_gradient_multiple_fields (line 259) | def test_add_gradient_multiple_fields():
  function test_add_gradient_fields_curvilinear (line 279) | def test_add_gradient_fields_curvilinear():
  function get_data (line 303) | def get_data(ds, field_name):
  function test_add_field_unit_semantics (line 310) | def test_add_field_unit_semantics():
  function test_add_field_from_lambda (line 384) | def test_add_field_from_lambda():
  function test_array_like_field (line 410) | def test_array_like_field():
  function test_array_like_field_output_units (line 423) | def test_array_like_field_output_units():
  function test_add_field_string (line 436) | def test_add_field_string():
  function test_add_field_string_aliasing (line 455) | def test_add_field_string_aliasing():
  function test_morton_index (line 487) | def test_morton_index():
  function test_deposit_amr (line 499) | def test_deposit_amr():
  function test_ion_field_labels (line 507) | def test_ion_field_labels():
  function test_default_fluid_type_None (line 552) | def test_default_fluid_type_None():

FILE: yt/fields/tests/test_fields_plugins.py
  class TestPluginFile (line 36) | class TestPluginFile(unittest.TestCase):
    method setUpClass (line 38) | def setUpClass(cls):
    method tearDownClass (line 50) | def tearDownClass(cls):
    method testCustomField (line 57) | def testCustomField(self):

FILE: yt/fields/tests/test_fields_pytest.py
  function test_validate_field_function (line 19) | def test_validate_field_function(function):
  function test_validate_field_function_default (line 30) | def test_validate_field_function_default(function):
  function test_invalidate_field_function (line 55) | def test_invalidate_field_function(function):

FILE: yt/fields/tests/test_magnetic_fields.py
  function setup_module (line 8) | def setup_module():
  function test_magnetic_fields (line 14) | def test_magnetic_fields():

FILE: yt/fields/tests/test_particle_fields.py
  function test_relative_particle_fields (line 11) | def test_relative_particle_fields():
  function test_los_particle_fields (line 28) | def test_los_particle_fields():

FILE: yt/fields/tests/test_species_fields.py
  function test_default_species_fields (line 8) | def test_default_species_fields():

FILE: yt/fields/tests/test_sph_fields.py
  function test_sph_field_semantics (line 45) | def test_sph_field_semantics():
  function sph_fields_validate (line 50) | def sph_fields_validate(ds_fn):

FILE: yt/fields/tests/test_vector_fields.py
  function random_unit_vector (line 14) | def random_unit_vector(prng):
  function random_velocity_vector (line 21) | def random_velocity_vector(prng):
  function compare_vector_conversions (line 25) | def compare_vector_conversions(data_source):
  function test_vector_component_conversions_fake (line 146) | def test_vector_component_conversions_fake():
  function test_vector_component_conversions_real (line 157) | def test_vector_component_conversions_real():

FILE: yt/fields/tests/test_xray_fields.py
  function setup_module (line 11) | def setup_module():
  function check_xray_fields (line 17) | def check_xray_fields(ds_fn, fields):
  function test_sloshing_apec (line 33) | def test_sloshing_apec():
  function test_d9p_cloudy (line 42) | def test_d9p_cloudy():
  function test_d9p_cloudy_local (line 60) | def test_d9p_cloudy_local():

FILE: yt/fields/vector_operations.py
  function get_bulk (line 32) | def get_bulk(data, basename, unit):
  function create_magnitude_field (line 40) | def create_magnitude_field(
  function create_relative_field (line 78) | def create_relative_field(
  function create_los_field (line 104) | def create_los_field(
  function create_squared_field (line 156) | def create_squared_field(
  function create_vector_fields (line 182) | def create_vector_fields(
  function create_averaged_field (line 664) | def create_averaged_field(

FILE: yt/fields/xray_emission_fields.py
  function _get_data_file (line 22) | def _get_data_file(table_type, data_dir=None):
  class EnergyBoundsException (line 35) | class EnergyBoundsException(YTException):
    method __init__ (line 36) | def __init__(self, lower, upper):
    method __str__ (line 40) | def __str__(self):
  class ObsoleteDataException (line 44) | class ObsoleteDataException(YTException):
    method __init__ (line 45) | def __init__(self, table_type):
    method __str__ (line 50) | def __str__(self):
  class XrayEmissivityIntegrator (line 54) | class XrayEmissivityIntegrator:
    method __init__ (line 80) | def __init__(self, table_type, redshift=0.0, data_dir=None, use_metals...
    method get_interpolator (line 107) | def get_interpolator(self, data_type, e_min, e_max, energy=True):
  function add_xray_emissivity_field (line 145) | def add_xray_emissivity_field(

FILE: yt/frontends/__init__.py
  function __getattr__ (line 52) | def __getattr__(value):

FILE: yt/frontends/_skeleton/data_structures.py
  class SkeletonGrid (line 14) | class SkeletonGrid(AMRGridPatch):
    method __init__ (line 17) | def __init__(self, id, index, level):
  class SkeletonHierarchy (line 24) | class SkeletonHierarchy(GridIndex):
    method __init__ (line 27) | def __init__(self, ds, dataset_type="skeleton"):
    method _detect_output_fields (line 37) | def _detect_output_fields(self):
    method _count_grids (line 46) | def _count_grids(self):
    method _parse_index (line 50) | def _parse_index(self):
    method _populate_grid_objects (line 61) | def _populate_grid_objects(self):
  class SkeletonDataset (line 75) | class SkeletonDataset(Dataset):
    method __init__ (line 82) | def __init__(
    method _set_code_unit_attributes (line 103) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 127) | def _parse_parameter_file(self):
    method _is_valid (line 166) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/_skeleton/fields.py
  class SkeletonFieldInfo (line 8) | class SkeletonFieldInfo(FieldInfoContainer):
    method __init__ (line 19) | def __init__(self, ds, field_list):
    method setup_fluid_fields (line 23) | def setup_fluid_fields(self):
    method setup_particle_fields (line 29) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/_skeleton/io.py
  class SkeletonIOHandler (line 4) | class SkeletonIOHandler(BaseIOHandler):
    method _read_particle_coords (line 8) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 14) | def _read_particle_fields(self, chunks, ptf, selector):
    method _read_fluid_selection (line 22) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_chunk_data (line 42) | def _read_chunk_data(self, chunk, fields):

FILE: yt/frontends/adaptahop/data_structures.py
  class AdaptaHOPParticleIndex (line 29) | class AdaptaHOPParticleIndex(ParticleIndex):
    method _setup_filenames (line 30) | def _setup_filenames(self):
  class AdaptaHOPDataset (line 51) | class AdaptaHOPDataset(Dataset):
    method __init__ (line 61) | def __init__(
    method _set_code_unit_attributes (line 89) | def _set_code_unit_attributes(self):
    method _guess_headers_from_file (line 95) | def _guess_headers_from_file(self, filename) -> None:
    method _parse_parameter_file (line 137) | def _parse_parameter_file(self):
    method _is_valid (line 172) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method halo (line 180) | def halo(self, halo_id, ptype="DM"):
  class AdaptaHOPHaloContainer (line 200) | class AdaptaHOPHaloContainer(YTSelectionContainer):
    method __init__ (line 274) | def __init__(self, ptype, particle_identifier, parent_ds, halo_ds):
    method __repr__ (line 296) | def __repr__(self):
    method __getitem__ (line 299) | def __getitem__(self, key):
    method ihalo (line 303) | def ihalo(self):
    method _set_halo_member_data (line 318) | def _set_halo_member_data(self):
    method _set_halo_properties (line 356) | def _set_halo_properties(self):

FILE: yt/frontends/adaptahop/definitions.py
  function HEADER_ATTRIBUTES (line 13) | def HEADER_ATTRIBUTES(*, double: bool, longint: bool) -> ATTR_T:
  class AdaptaHOPDefTemplate (line 29) | class AdaptaHOPDefTemplate:
    method __init_subclass__ (line 31) | def __init_subclass__(cls, *args, **kwargs):
    method __init__ (line 36) | def __init__(self, longint, double_precision):
  class AdaptaHOPOld (line 41) | class AdaptaHOPOld(AdaptaHOPDefTemplate):
    method HALO_ATTRIBUTES (line 43) | def HALO_ATTRIBUTES(self) -> ATTR_T:
  class AdaptaHOPNewNoContam (line 95) | class AdaptaHOPNewNoContam(AdaptaHOPDefTemplate):
    method HALO_ATTRIBUTES (line 97) | def HALO_ATTRIBUTES(self) -> ATTR_T:
  class AdaptaHOPNewContam (line 158) | class AdaptaHOPNewContam(AdaptaHOPNewNoContam):
    method HALO_ATTRIBUTES (line 160) | def HALO_ATTRIBUTES(self) -> ATTR_T:

FILE: yt/frontends/adaptahop/fields.py
  class AdaptaHOPFieldInfo (line 20) | class AdaptaHOPFieldInfo(FieldInfoContainer):
    method setup_particle_fields (line 59) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/adaptahop/io.py
  class IOHandlerAdaptaHOPBinary (line 20) | class IOHandlerAdaptaHOPBinary(BaseParticleIOHandler):
    method _read_fluid_selection (line 26) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_chunk_data (line 29) | def _read_chunk_data(self, chunk, fields):
    method _yield_coordinates (line 32) | def _yield_coordinates(self, data_file):
    method _read_particle_coords (line 35) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 50) | def _read_particle_fields(self, chunks, ptf, selector):
    method _count_particles (line 111) | def _count_particles(self, data_file):
    method _identify_fields (line 115) | def _identify_fields(self, data_file):
    method _get_particle_positions (line 128) | def _get_particle_positions(self):
    method members (line 176) | def members(self, ihalo):
    method _sorted_chunk_iterator (line 186) | def _sorted_chunk_iterator(self, chunks):
  function _todo_from_attributes (line 191) | def _todo_from_attributes(attributes: ATTR_T, halo_attributes: ATTR_T):
  function _find_attr_position (line 242) | def _find_attr_position(key, halo_attributes: ATTR_T) -> int:

FILE: yt/frontends/adaptahop/tests/test_outputs.py
  function test_opening (line 24) | def test_opening(brick):
  function test_field_access (line 37) | def test_field_access(brick):
  function test_get_halo (line 58) | def test_get_halo(brick):

FILE: yt/frontends/ahf/data_structures.py
  class AHFHalosFile (line 15) | class AHFHalosFile(HaloCatalogFile):
    method __init__ (line 16) | def __init__(self, ds, io, filename, file_id, range=None):
    method read_data (line 26) | def read_data(self, usecols=None):
    method _read_column_names (line 29) | def _read_column_names(self, filename):
    method _read_particle_positions (line 39) | def _read_particle_positions(self, ptype, f=None):
  class AHFHalosDataset (line 52) | class AHFHalosDataset(Dataset):
    method __init__ (line 57) | def __init__(
    method _set_code_unit_attributes (line 80) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 86) | def _parse_parameter_file(self):
    method _is_valid (line 121) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _read_log_simu (line 129) | def _read_log_simu(self):
    method _read_parameter (line 143) | def _read_parameter(self):
    method _skip_cache (line 158) | def _skip_cache(self):

FILE: yt/frontends/ahf/fields.py
  class AHFHalosFieldInfo (line 10) | class AHFHalosFieldInfo(FieldInfoContainer):

FILE: yt/frontends/ahf/io.py
  class IOHandlerAHFHalos (line 8) | class IOHandlerAHFHalos(BaseParticleIOHandler):
    method _read_fluid_selection (line 12) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_particle_coords (line 15) | def _read_particle_coords(self, chunks, ptf):
    method _yield_coordinates (line 28) | def _yield_coordinates(self, data_file):
    method _read_particle_fields (line 35) | def _read_particle_fields(self, chunks, ptf, selector):
    method _count_particles (line 63) | def _count_particles(self, data_file):
    method _identify_fields (line 71) | def _identify_fields(self, data_file):
    method _sorted_chunk_iterator (line 75) | def _sorted_chunk_iterator(self, chunks):

FILE: yt/frontends/ahf/tests/test_outputs.py
  function load (line 23) | def load(filename):
  function test_fields_ahf_halos (line 28) | def test_fields_ahf_halos():
  function test_AHFHalosDataset (line 36) | def test_AHFHalosDataset():

FILE: yt/frontends/amrex/data_structures.py
  class BoxlibGrid (line 60) | class BoxlibGrid(AMRGridPatch):
    method __init__ (line 64) | def __init__(self, grid_id, offset, filename=None, index=None):
    method _prepare_grid (line 71) | def _prepare_grid(self):
    method get_global_startindex (line 76) | def get_global_startindex(self):
    method _setup_dx (line 79) | def _setup_dx(self):
    method Parent (line 85) | def Parent(self):
    method Children (line 91) | def Children(self):
    method _get_offset (line 94) | def _get_offset(self, f):
    method select_ires (line 104) | def select_ires(self, dobj):
    method _fill_child_mask (line 113) | def _fill_child_mask(self, child, mask, tofill, dlevel=1):
  class BoxLibParticleHeader (line 130) | class BoxLibParticleHeader:
    method __init__ (line 131) | def __init__(self, ds, directory_name, is_checkpoint, extra_field_name...
    method _generate_particle_fields (line 187) | def _generate_particle_fields(self, extra_field_names):
  class AMReXParticleHeader (line 235) | class AMReXParticleHeader:
    method __init__ (line 236) | def __init__(self, ds, directory_name, is_checkpoint, extra_field_name...
    method _generate_particle_fields (line 293) | def _generate_particle_fields(self):
  class BoxlibHierarchy (line 334) | class BoxlibHierarchy(GridIndex):
    method __init__ (line 337) | def __init__(self, ds, dataset_type="boxlib_native"):
    method _parse_index (line 346) | def _parse_index(self):
    method _cache_endianness (line 458) | def _cache_endianness(self, test_grid):
    method _populate_grid_objects (line 494) | def _populate_grid_objects(self):
    method _reconstruct_parent_child (line 505) | def _reconstruct_parent_child(self):
    method _count_grids (line 527) | def _count_grids(self):
    method _initialize_grid_arrays (line 546) | def _initialize_grid_arrays(self):
    method _initialize_state_variables (line 550) | def _initialize_state_variables(self):
    method _detect_output_fields (line 556) | def _detect_output_fields(self):
    method _setup_data_io (line 564) | def _setup_data_io(self):
    method _determine_particle_output_type (line 567) | def _determine_particle_output_type(self, directory_name):
    method _read_particles (line 576) | def _read_particles(self, directory_name, is_checkpoint, extra_field_n...
  class BoxlibDataset (line 615) | class BoxlibDataset(Dataset):
    method __init__ (line 626) | def __init__(
    method _localize_check (line 670) | def _localize_check(self, fn):
    method _is_valid (line 681) | def _is_valid(cls, filename, *args, cparam_filename=None, **kwargs):
    method _lookup_cparam_filepath (line 705) | def _lookup_cparam_filepath(cls, output_dir, cparam_filename):
    method unique_identifier (line 718) | def unique_identifier(self) -> str:
    method _parse_parameter_file (line 722) | def _parse_parameter_file(self):
    method _parse_cparams (line 734) | def _parse_cparams(self):
    method _parse_fparams (line 780) | def _parse_fparams(self):
    method _parse_header_file (line 806) | def _parse_header_file(self):
    method _set_code_unit_attributes (line 914) | def _set_code_unit_attributes(self):
    method print_key_parameters (line 921) | def print_key_parameters(self):
    method relative_refinement (line 934) | def relative_refinement(self, l0, l1):
  class AMReXHierarchy (line 939) | class AMReXHierarchy(BoxlibHierarchy):
    method __init__ (line 940) | def __init__(self, ds, dataset_type="boxlib_native"):
  class AMReXDataset (line 949) | class AMReXDataset(BoxlibDataset):
    method _parse_parameter_file (line 954) | def _parse_parameter_file(self):
  class OrionHierarchy (line 964) | class OrionHierarchy(BoxlibHierarchy):
    method __init__ (line 965) | def __init__(self, ds, dataset_type="orion_native"):
    method _detect_output_fields (line 970) | def _detect_output_fields(self):
    method _read_particles (line 991) | def _read_particles(self):
    method _read_particle_file (line 1005) | def _read_particle_file(self, fn):
  class OrionDataset (line 1050) | class OrionDataset(BoxlibDataset):
    method __init__ (line 1055) | def __init__(
  class CastroHierarchy (line 1078) | class CastroHierarchy(BoxlibHierarchy):
    method __init__ (line 1079) | def __init__(self, ds, dataset_type="castro_native"):
  class CastroDataset (line 1100) | class CastroDataset(AMReXDataset):
    method __init__ (line 1106) | def __init__(
    method _parse_parameter_file (line 1128) | def _parse_parameter_file(self):
  class MaestroDataset (line 1169) | class MaestroDataset(AMReXDataset):
    method __init__ (line 1175) | def __init__(
    method _parse_parameter_file (line 1197) | def _parse_parameter_file(self):
  class NyxHierarchy (line 1223) | class NyxHierarchy(BoxlibHierarchy):
    method __init__ (line 1224) | def __init__(self, ds, dataset_type="nyx_native"):
  class NyxDataset (line 1246) | class NyxDataset(BoxlibDataset):
    method __init__ (line 1252) | def __init__(
    method _parse_parameter_file (line 1274) | def _parse_parameter_file(self):
    method _set_code_unit_attributes (line 1321) | def _set_code_unit_attributes(self):
  class QuokkaDataset (line 1330) | class QuokkaDataset(AMReXDataset):
  function _guess_pcast (line 1336) | def _guess_pcast(vals):
  function _read_raw_field_names (line 1362) | def _read_raw_field_names(raw_file):
  function _string_to_numpy_array (line 1367) | def _string_to_numpy_array(s):
  function _line_to_numpy_arrays (line 1371) | def _line_to_numpy_arrays(line):
  function _get_active_dimensions (line 1378) | def _get_active_dimensions(box):
  function _read_header (line 1382) | def _read_header(raw_file, field):
  class WarpXHeader (line 1438) | class WarpXHeader:
    method __init__ (line 1439) | def __init__(self, header_fn):
  class WarpXHierarchy (line 1485) | class WarpXHierarchy(BoxlibHierarchy):
    method __init__ (line 1486) | def __init__(self, ds, dataset_type="boxlib_native"):
    method _detect_output_fields (line 1504) | def _detect_output_fields(self):
  function _skip_line (line 1521) | def _skip_line(line):
  class WarpXDataset (line 1532) | class WarpXDataset(BoxlibDataset):
    method __init__ (line 1538) | def __init__(
    method _parse_parameter_file (line 1562) | def _parse_parameter_file(self):
    method _set_code_unit_attributes (line 1596) | def _set_code_unit_attributes(self):

FILE: yt/frontends/amrex/fields.py
  function _thermal_energy_density (line 16) | def _thermal_energy_density(data):
  function _specific_thermal_energy (line 33) | def _specific_thermal_energy(data):
  function _temperature (line 38) | def _temperature(data):
  class WarpXFieldInfo (line 47) | class WarpXFieldInfo(FieldInfoContainer):
    method __init__ (line 79) | def __init__(self, ds, field_list):
    method setup_fluid_fields (line 87) | def setup_fluid_fields(self):
    method setup_fluid_aliases (line 92) | def setup_fluid_aliases(self):
    method setup_particle_fields (line 95) | def setup_particle_fields(self, ptype):
  class NyxFieldInfo (line 178) | class NyxFieldInfo(FieldInfoContainer):
  class BoxlibFieldInfo (line 186) | class BoxlibFieldInfo(FieldInfoContainer):
    method setup_particle_fields (line 225) | def setup_particle_fields(self, ptype):
    method setup_fluid_fields (line 245) | def setup_fluid_fields(self):
    method setup_momentum_to_velocity (line 272) | def setup_momentum_to_velocity(self):
    method setup_velocity_to_momentum (line 287) | def setup_velocity_to_momentum(self):
  class CastroFieldInfo (line 303) | class CastroFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 356) | def setup_fluid_fields(self):
  class MaestroFieldInfo (line 380) | class MaestroFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 444) | def setup_fluid_fields(self):
  class Substance (line 512) | class Substance:
    method __init__ (line 513) | def __init__(self, data: str) -> None:
    method get_spec (line 525) | def get_spec(self) -> SubstanceSpec:
    method is_isotope (line 528) | def is_isotope(self) -> bool:
    method is_molecule (line 531) | def is_molecule(self) -> bool:
    method is_descriptive_name (line 534) | def is_descriptive_name(self) -> bool:
    method __str__ (line 537) | def __str__(self) -> str:
    method _to_tex_isotope (line 542) | def _to_tex_isotope(self) -> str:
    method _to_tex_molecule (line 546) | def _to_tex_molecule(self) -> str:
    method _to_tex_descriptive (line 552) | def _to_tex_descriptive(self) -> str:
    method to_tex (line 555) | def to_tex(self) -> str:
  function _create_density_func (line 567) | def _create_density_func(field_name):

FILE: yt/frontends/amrex/io.py
  function _remove_raw (line 12) | def _remove_raw(all_fields, raw_fields):
  class IOHandlerBoxlib (line 19) | class IOHandlerBoxlib(BaseIOHandler):
    method __init__ (line 22) | def __init__(self, ds, *args, **kwargs):
    method _read_fluid_selection (line 25) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_raw_field (line 61) | def _read_raw_field(self, grid, field):
    method _read_chunk_data (line 90) | def _read_chunk_data(self, chunk, fields):
    method _read_particle_coords (line 123) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 129) | def _read_particle_fields(self, chunks, ptf, selector):
  class IOHandlerOrion (line 202) | class IOHandlerOrion(IOHandlerBoxlib):
    method particle_filename (line 208) | def particle_filename(self):
    method particle_field_index (line 218) | def particle_field_index(self):
    method _read_particle_selection (line 224) | def _read_particle_selection(self, chunks, selector, fields):
    method _read_particles (line 247) | def _read_particles(self, grid, field):

FILE: yt/frontends/amrex/tests/test_field_parsing.py
  function test_Substance_spec (line 17) | def test_Substance_spec(data, expected):
  function test_Substance_type (line 32) | def test_Substance_type(data, expected_type):
  function test_Substance_to_str (line 48) | def test_Substance_to_str(data, expected_str, expected_tex):

FILE: yt/frontends/amrex/tests/test_outputs.py
  function test_radadvect (line 48) | def test_radadvect():
  function test_radtube (line 60) | def test_radtube():
  function test_star (line 72) | def test_star():
  function test_LyA (line 84) | def test_LyA():
  function test_nyx_particle_io (line 95) | def test_nyx_particle_io():
  function test_RT_particles (line 144) | def test_RT_particles():
  function test_castro_particle_io (line 153) | def test_castro_particle_io():
  function test_langmuir (line 193) | def test_langmuir():
  function test_plasma (line 207) | def test_plasma():
  function test_beam (line 221) | def test_beam():
  function test_warpx_particle_io (line 237) | def test_warpx_particle_io():
  function test_raw_fields (line 294) | def test_raw_fields():
  function test_OrionDataset (line 300) | def test_OrionDataset():
  function test_NyxDataset (line 305) | def test_NyxDataset():
  function test_NyxDataset_2 (line 310) | def test_NyxDataset_2():
  function test_CastroDataset (line 315) | def test_CastroDataset():
  function test_CastroDataset_2 (line 320) | def test_CastroDataset_2():
  function test_CastroDataset_3 (line 325) | def test_CastroDataset_3():
  function test_WarpXDataset (line 330) | def test_WarpXDataset():
  function test_magnetic_units (line 336) | def test_magnetic_units():
  function test_WarpXDataset_2 (line 352) | def test_WarpXDataset_2():
  function test_AMReXDataset (line 357) | def test_AMReXDataset():
  function test_units_override (line 363) | def test_units_override():
  function test_nyx_no_part (line 371) | def test_nyx_no_part():
  function test_maestro_parameters (line 421) | def test_maestro_parameters():
  function check_coordsys_data (line 451) | def check_coordsys_data(ds):
  function test_coordsys_1d_cylindrical (line 474) | def test_coordsys_1d_cylindrical():
  function test_coordsys_2d_cylindrical (line 482) | def test_coordsys_2d_cylindrical():
  function test_coordsys_1d_spherical (line 490) | def test_coordsys_1d_spherical():
  function test_coordsys_2d_spherical (line 498) | def test_coordsys_2d_spherical():

FILE: yt/frontends/amrvac/data_structures.py
  function _parse_geometry (line 30) | def _parse_geometry(geometry_tag: str) -> Geometry:
  class AMRVACGrid (line 55) | class AMRVACGrid(AMRGridPatch):
    method __init__ (line 60) | def __init__(self, id, index, level):
    method get_global_startindex (line 67) | def get_global_startindex(self):
    method retrieve_ghost_zones (line 78) | def retrieve_ghost_zones(self, n_zones, fields, all_levels=False, smoo...
  class AMRVACHierarchy (line 92) | class AMRVACHierarchy(GridIndex):
    method __init__ (line 95) | def __init__(self, ds, dataset_type="amrvac"):
    method _detect_output_fields (line 105) | def _detect_output_fields(self):
    method _count_grids (line 111) | def _count_grids(self):
    method _parse_index (line 115) | def _parse_index(self):
    method _populate_grid_objects (line 157) | def _populate_grid_objects(self):
  class AMRVACDataset (line 164) | class AMRVACDataset(Dataset):
    method __init__ (line 168) | def __init__(
    method _is_valid (line 273) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _parse_parameter_file (line 297) | def _parse_parameter_file(self):
    method _set_code_unit_attributes (line 373) | def _set_code_unit_attributes(self):
    method _validate_units_override_keys (line 468) | def _validate_units_override_keys(cls, units_override):

FILE: yt/frontends/amrvac/datfile_utils.py
  function get_header (line 15) | def get_header(istream):
  function get_tree_info (line 106) | def get_tree_info(istream):
  function get_single_block_data (line 141) | def get_single_block_data(istream, byte_offset, block_shape):
  function get_single_block_field_data (line 152) | def get_single_block_field_data(istream, byte_offset, block_shape, field...

FILE: yt/frontends/amrvac/fields.py
  function _velocity (line 26) | def _velocity(field, data, idir, prefix=None):
  class AMRVACFieldInfo (line 58) | class AMRVACFieldInfo(FieldInfoContainer):
    method _setup_velocity_fields (line 90) | def _setup_velocity_fields(self, idust=None):
    method _setup_dust_fields (line 120) | def _setup_dust_fields(self):
    method setup_fluid_fields (line 162) | def setup_fluid_fields(self):

FILE: yt/frontends/amrvac/io.py
  function read_amrvac_namelist (line 18) | def read_amrvac_namelist(parfiles):
  class AMRVACIOHandler (line 57) | class AMRVACIOHandler(BaseIOHandler):
    method __init__ (line 61) | def __init__(self, ds):
    method _read_particle_coords (line 68) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 75) | def _read_particle_fields(self, chunks, ptf, selector):
    method _read_data (line 84) | def _read_data(self, fid, grid, field):
    method _read_fluid_selection (line 117) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_chunk_data (line 181) | def _read_chunk_data(self, chunk, fields):

FILE: yt/frontends/amrvac/tests/test_outputs.py
  function _get_fields_to_check (line 24) | def _get_fields_to_check(ds):
  function test_AMRVACDataset (line 38) | def test_AMRVACDataset():
  function test_domain_size (line 43) | def test_domain_size():
  function test_grid_attributes (line 55) | def test_grid_attributes():
  function test_bw_polar_2d (line 69) | def test_bw_polar_2d():
  function test_blastwave_cartesian_3D (line 77) | def test_blastwave_cartesian_3D():
  function test_blastwave_spherical_2D (line 85) | def test_blastwave_spherical_2D():
  function test_blastwave_cylindrical_3D (line 93) | def test_blastwave_cylindrical_3D():
  function test_khi_cartesian_2D (line 101) | def test_khi_cartesian_2D():
  function test_khi_cartesian_3D (line 109) | def test_khi_cartesian_3D():
  function test_jet_cylindrical_25D (line 117) | def test_jet_cylindrical_25D():
  function test_riemann_cartesian_175D (line 125) | def test_riemann_cartesian_175D():
  function test_rmi_cartesian_dust_2D (line 133) | def test_rmi_cartesian_dust_2D():

FILE: yt/frontends/amrvac/tests/test_read_amrvac_namelist.py
  function test_read_pathlike (line 15) | def test_read_pathlike():
  function test_read_one_file (line 20) | def test_read_one_file():
  function test_accumulate_basename (line 29) | def test_accumulate_basename():

FILE: yt/frontends/amrvac/tests/test_units_override.py
  function _assert_normalisations_equal (line 23) | def _assert_normalisations_equal(ds):
  function test_normalisations_length_temp_nb (line 35) | def test_normalisations_length_temp_nb():
  function test_normalisations_length_temp_mass (line 47) | def test_normalisations_length_temp_mass():
  function test_normalisations_length_time_mass (line 59) | def test_normalisations_length_time_mass():
  function test_normalisations_length_vel_nb (line 71) | def test_normalisations_length_vel_nb():
  function test_normalisations_length_vel_mass (line 83) | def test_normalisations_length_vel_mass():
  function test_normalisations_default (line 95) | def test_normalisations_default():
  function test_normalisations_too_many_args (line 115) | def test_normalisations_too_many_args():
  function test_normalisations_vel_and_length (line 128) | def test_normalisations_vel_and_length():

FILE: yt/frontends/arepo/data_structures.py
  class ArepoHDF5Dataset (line 10) | class ArepoHDF5Dataset(GadgetHDF5Dataset):
    method __init__ (line 14) | def __init__(
    method _is_valid (line 48) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _get_uvals (line 72) | def _get_uvals(self):
    method _set_code_unit_attributes (line 93) | def _set_code_unit_attributes(self):

FILE: yt/frontends/arepo/fields.py
  class ArepoFieldInfo (line 10) | class ArepoFieldInfo(GadgetFieldInfo):
    method __init__ (line 11) | def __init__(self, ds, field_list, slice_info=None):
    method setup_particle_fields (line 49) | def setup_particle_fields(self, ptype, *args, **kwargs):
    method setup_gas_particle_fields (line 55) | def setup_gas_particle_fields(self, ptype):

FILE: yt/frontends/arepo/io.py
  class IOHandlerArepoHDF5 (line 7) | class IOHandlerArepoHDF5(IOHandlerGadgetHDF5):
    method _generate_smoothing_length (line 10) | def _generate_smoothing_length(self, index):
    method _get_smoothing_length (line 14) | def _get_smoothing_length(self, data_file, position_dtype, position_sh...

FILE: yt/frontends/arepo/tests/test_outputs.py
  function test_arepo_hdf5_selection (line 20) | def test_arepo_hdf5_selection():
  function test_arepo_bullet (line 39) | def test_arepo_bullet():
  function test_arepo_tng59 (line 64) | def test_arepo_tng59():
  function test_arepo_tng59_periodicity (line 73) | def test_arepo_tng59_periodicity():
  function test_nh_density (line 82) | def test_nh_density():
  function test_arepo_tng59_selection (line 92) | def test_arepo_tng59_selection():
  function test_arepo_cr (line 109) | def test_arepo_cr():

FILE: yt/frontends/art/data_structures.py
  class ARTIndex (line 37) | class ARTIndex(OctreeIndex):
    method __init__ (line 38) | def __init__(self, ds, dataset_type="art"):
    method get_smallest_dx (line 48) | def get_smallest_dx(self):
    method _initialize_oct_handler (line 56) | def _initialize_oct_handler(self):
    method _detect_output_fields (line 80) | def _detect_output_fields(self):
    method _identify_base_chunk (line 89) | def _identify_base_chunk(self, dobj):
    method _chunk_all (line 107) | def _chunk_all(self, dobj):
    method _chunk_spatial (line 113) | def _chunk_spatial(self, dobj, ngz, sort=None, preload_fields=None):
    method _chunk_io (line 122) | def _chunk_io(self, dobj, cache=True, local_only=False):
  class ARTDataset (line 134) | class ARTDataset(Dataset):
    method __init__ (line 138) | def __init__(
    method _find_files (line 182) | def _find_files(self, file_amr):
    method __str__ (line 207) | def __str__(self):
    method _set_code_unit_attributes (line 210) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 244) | def _parse_parameter_file(self):
    method create_field_info (line 366) | def create_field_info(self):
    method _is_valid (line 377) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  class ARTParticleFile (line 396) | class ARTParticleFile(ParticleFile):
    method __init__ (line 397) | def __init__(self, ds, io, filename, file_id):
  class ARTParticleIndex (line 411) | class ARTParticleIndex(ParticleIndex):
    method _setup_filenames (line 412) | def _setup_filenames(self):
  class DarkMatterARTDataset (line 425) | class DarkMatterARTDataset(ARTDataset):
    method __init__ (line 430) | def __init__(
    method _find_files (line 467) | def _find_files(self, file_particle):
    method __str__ (line 492) | def __str__(self):
    method _set_code_unit_attributes (line 495) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 527) | def _parse_parameter_file(self):
    method create_field_info (line 664) | def create_field_info(self):
    method _is_valid (line 672) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  class ARTDomainSubset (line 733) | class ARTDomainSubset(OctreeSubset):
    method oct_handler (line 735) | def oct_handler(self):
    method fill (line 738) | def fill(self, content, ftfields, selector):
  class ARTDomainFile (line 791) | class ARTDomainFile:
    method __init__ (line 802) | def __init__(self, ds, nvar, oct_handler, domain_id):
    method oct_handler (line 812) | def oct_handler(self):
    method level_count (line 816) | def level_count(self):
    method level_child_offsets (line 824) | def level_child_offsets(self):
    method level_offsets (line 831) | def level_offsets(self):
    method _count_art_octs (line 857) | def _count_art_octs(self, f, offset, MinLev, MaxLevelNow):
    method _read_amr_level (line 897) | def _read_amr_level(self, oct_handler):
    method _read_amr_root (line 923) | def _read_amr_root(self, oct_handler):
    method included (line 949) | def included(self, selector):

FILE: yt/frontends/art/fields.py
  class ARTFieldInfo (line 13) | class ARTFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 45) | def setup_fluid_fields(self):

FILE: yt/frontends/art/io.py
  class IOHandlerART (line 19) | class IOHandlerART(BaseIOHandler):
    method __init__ (line 26) | def __init__(self, *args, **kwargs):
    method _read_fluid_selection (line 36) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _get_mask (line 67) | def _get_mask(self, selector, ftype):
    method _read_particle_coords (line 80) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 89) | def _read_particle_fields(self, chunks, ptf, selector):
    method _get_field (line 103) | def _get_field(self, field):
  class IOHandlerDarkMatterART (line 177) | class IOHandlerDarkMatterART(IOHandlerART):
    method _count_particles (line 180) | def _count_particles(self, data_file):
    method _identify_fields (line 186) | def _identify_fields(self, domain):
    method _get_field (line 195) | def _get_field(self, field):
    method _yield_coordinates (line 250) | def _yield_coordinates(self, data_file):
  function _determine_field_size (line 259) | def _determine_field_size(pf, field, lspecies, ptmax):
  function interpolate_ages (line 279) | def interpolate_ages(
  function _read_art_level_info (line 297) | def _read_art_level_info(
  function get_ranges (line 406) | def get_ranges(
  function read_particles (line 436) | def read_particles(file, Nrow, idxa, idxb, fields):
  function read_star_field (line 465) | def read_star_field(file, field=None):
  function _read_child_mask_level (line 479) | def _read_child_mask_level(f, level_child_offsets, level, nLevel, nhydro...
  function _read_child_level (line 507) | def _read_child_level(
  function _read_root_level (line 557) | def _read_root_level(f, level_offsets, level_info, nhydro_vars=10):
  function find_root (line 574) | def find_root(f, a, b, tol=1e-6):
  function quad (line 588) | def quad(fintegrand, xmin, xmax, n=1e4):
  function a2b (line 597) | def a2b(at, Om0=0.27, Oml0=0.73, h=0.700):
  function b2a (line 608) | def b2a(bt, **kwargs):
  function a2t (line 620) | def a2t(at, Om0=0.27, Oml0=0.73, h=0.700):
  function b2t (line 629) | def b2t(tb, n=1e2, logger=None, **kwargs):

FILE: yt/frontends/art/tests/test_outputs.py
  function test_d9p (line 30) | def test_d9p():
  function test_d9p_global_values (line 52) | def test_d9p_global_values():
  function test_ARTDataset (line 118) | def test_ARTDataset():
  function test_units_override (line 123) | def test_units_override():
  function test_particle_selection (line 128) | def test_particle_selection():

FILE: yt/frontends/artio/artio_headers/artio.c
  type __int64 (line 31) | typedef __int64 int64_t;
  type __int32 (line 32) | typedef __int32 int32_t;
  function artio_fileset_set_buffer_size (line 43) | int artio_fileset_set_buffer_size( int buffer_size ) {
  function artio_fileset (line 52) | artio_fileset *artio_fileset_open(char * file_prefix, int type, const ar...
  function artio_fileset (line 138) | artio_fileset *artio_fileset_create(char * file_prefix, int64_t root_cells,
  function artio_fileset_close (line 173) | int artio_fileset_close(artio_fileset *handle) {
  function artio_fileset (line 213) | artio_fileset *artio_fileset_allocate( char *file_prefix, int mode,
  function artio_fileset_destroy (line 258) | void artio_fileset_destroy( artio_fileset *handle ) {
  function artio_fileset_has_grid (line 278) | int artio_fileset_has_grid( artio_fileset *handle ) {
  function artio_fileset_has_particles (line 285) | int artio_fileset_has_particles( artio_fileset *handle ) {

FILE: yt/frontends/artio/artio_headers/artio.h
  type __int64 (line 34) | typedef __int64 int64_t;
  type __int32 (line 35) | typedef __int32 int32_t;
  type artio_context (line 117) | typedef struct {
  type artio_context (line 121) | typedef struct {
  type artio_fileset (line 128) | typedef struct artio_fileset_struct artio_fileset;
  type artio_selection (line 129) | typedef struct artio_selection_struct artio_selection;

FILE: yt/frontends/artio/artio_headers/artio_endian.c
  type __int64 (line 26) | typedef __int64 int64_t;
  type __int32 (line 27) | typedef __int32 int32_t;
  function artio_int_swap (line 32) | void artio_int_swap(int32_t *src, int count) {
  function artio_float_swap (line 49) | void artio_float_swap(float *src, int count) {
  function artio_double_swap (line 66) | void artio_double_swap(double *src, int count) {
  function artio_long_swap (line 88) | void artio_long_swap(int64_t *src, int count) {

FILE: yt/frontends/artio/artio_headers/artio_endian.h
  type __int64 (line 27) | typedef __int64 int64_t;
  type __int32 (line 28) | typedef __int32 int32_t;

FILE: yt/frontends/artio/artio_headers/artio_file.c
  function artio_fh (line 29) | artio_fh *artio_file_fopen( char * filename, int mode, const artio_conte...
  function artio_file_attach_buffer (line 42) | int artio_file_attach_buffer( artio_fh *handle, void *buf, int buf_size ) {
  function artio_file_detach_buffer (line 57) | int artio_file_detach_buffer( artio_fh *handle ) {
  function artio_file_fwrite (line 71) | int artio_file_fwrite( artio_fh *handle, const void *buf, int64_t count,...
  function artio_file_fflush (line 86) | int artio_file_fflush(artio_fh *handle) {
  function artio_file_fread (line 100) | int artio_file_fread(artio_fh *handle, void *buf, int64_t count, int typ...
  function artio_file_ftell (line 115) | int artio_file_ftell(artio_fh *handle, int64_t *offset) {
  function artio_file_fseek (line 130) | int artio_file_fseek(artio_fh *handle, int64_t offset, int whence ) {
  function artio_file_fclose (line 145) | int artio_file_fclose(artio_fh *handle) {
  function artio_file_set_endian_swap_tag (line 159) | void artio_file_set_endian_swap_tag(artio_fh *handle) {

FILE: yt/frontends/artio/artio_headers/artio_grid.c
  type __int64 (line 31) | typedef __int64 int64_t;
  type __int32 (line 32) | typedef __int32 int32_t;
  function artio_fileset_open_grid (line 51) | int artio_fileset_open_grid(artio_fileset *handle) {
  function artio_fileset_add_grid (line 137) | int artio_fileset_add_grid(artio_fileset *handle,
  function artio_grid_file (line 344) | artio_grid_file *artio_grid_file_allocate(void) {
  function artio_grid_file_destroy (line 382) | void artio_grid_file_destroy(artio_grid_file *ghandle) {
  function artio_fileset_close_grid (line 405) | int artio_fileset_close_grid(artio_fileset *handle) {
  function artio_grid_count_octs_in_sfc_range (line 420) | int artio_grid_count_octs_in_sfc_range(artio_fileset *handle,
  function artio_grid_cache_sfc_range (line 526) | int artio_grid_cache_sfc_range(artio_fileset *handle, int64_t start, int...
  function artio_grid_clear_sfc_cache (line 598) | int artio_grid_clear_sfc_cache( artio_fileset *handle ) {
  function artio_grid_find_file (line 624) | int artio_grid_find_file(artio_grid_file *ghandle, int start, int end, i...
  function artio_grid_seek_to_sfc (line 656) | int artio_grid_seek_to_sfc(artio_fileset *handle, int64_t sfc) {
  function artio_grid_write_root_cell_begin (line 694) | int artio_grid_write_root_cell_begin(artio_fileset *handle, int64_t sfc,
  function artio_grid_write_root_cell_end (line 743) | int artio_grid_write_root_cell_end(artio_fileset *handle) {
  function artio_grid_write_level_begin (line 758) | int artio_grid_write_level_begin(artio_fileset *handle, int level) {
  function artio_grid_write_level_end (line 782) | int artio_grid_write_level_end(artio_fileset *handle) {
  function artio_grid_write_oct (line 808) | int artio_grid_write_oct(artio_fileset *handle, float *variables,
  function artio_grid_read_root_cell_begin (line 856) | int artio_grid_read_root_cell_begin(artio_fileset *handle, int64_t sfc,
  function artio_grid_read_oct (line 948) | int artio_grid_read_oct(artio_fileset *handle,
  function artio_grid_read_level_begin (line 1033) | int artio_grid_read_level_begin(artio_fileset *handle, int level) {
  function artio_grid_read_level_end (line 1111) | int artio_grid_read_level_end(artio_fileset *handle) {
  function artio_grid_read_root_cell_end (line 1139) | int artio_grid_read_root_cell_end(artio_fileset *handle) {
  function artio_grid_read_sfc_range_levels (line 1157) | int artio_grid_read_sfc_range_levels(artio_fileset *handle,
  function artio_grid_read_sfc_range (line 1279) | int artio_grid_read_sfc_range(artio_fileset *handle,
  function artio_grid_read_selection (line 1299) | int artio_grid_read_selection(artio_fileset *handle,
  function artio_grid_read_selection_levels (line 1316) | int artio_grid_read_selection_levels( artio_fileset *handle,

FILE: yt/frontends/artio/artio_headers/artio_internal.h
  type __int64 (line 34) | typedef __int64 int64_t;
  type __int32 (line 35) | typedef __int32 int32_t;
  type artio_fh (line 66) | typedef struct ARTIO_FH artio_fh;
  type artio_particle_file (line 68) | typedef struct artio_particle_file_struct {
  type artio_grid_file (line 91) | typedef struct artio_grid_file_struct {
  type parameter (line 124) | typedef struct parameter_struct {
  type parameter_list (line 133) | typedef struct parameter_list_struct {
  type artio_fileset_struct (line 140) | struct artio_fileset_struct {
  type artio_selection_struct (line 162) | struct artio_selection_struct {

FILE: yt/frontends/artio/artio_headers/artio_mpi.c
  type __int64 (line 33) | typedef __int64 int64_t;
  type __int32 (line 34) | typedef __int32 int32_t;
  type ARTIO_FH (line 42) | struct ARTIO_FH {
  function artio_fh (line 52) | artio_fh *artio_file_fopen_i( char * filename, int mode, const artio_con...
  function artio_file_attach_buffer_i (line 102) | int artio_file_attach_buffer_i( artio_fh *handle, void *buf, int buf_siz...
  function artio_file_detach_buffer_i (line 119) | int artio_file_detach_buffer_i( artio_fh *handle ) {
  function artio_file_fwrite_i (line 132) | int artio_file_fwrite_i( artio_fh *handle, const void *buf, int64_t coun...
  function artio_file_fflush_i (line 195) | int artio_file_fflush_i(artio_fh *handle) {
  function artio_file_fread_i (line 218) | int artio_file_fread_i(artio_fh *handle, void *buf, int64_t count, int t...
  function artio_file_ftell_i (line 316) | int artio_file_ftell_i(artio_fh *handle, int64_t *offset) {
  function artio_file_fseek_i (line 331) | int artio_file_fseek_i(artio_fh *handle, int64_t offset, int whence ) {
  function artio_file_fclose_i (line 387) | int artio_file_fclose_i(artio_fh *handle) {
  function artio_file_set_endian_swap_tag_i (line 397) | void artio_file_set_endian_swap_tag_i(artio_fh *handle) {

FILE: yt/frontends/artio/artio_headers/artio_mpi.h
  type artio_context_struct (line 13) | struct artio_context_struct {

FILE: yt/frontends/artio/artio_headers/artio_parameter.c
  type __int64 (line 30) | typedef __int64 int64_t;
  type __int32 (line 31) | typedef __int32 int32_t;
  function artio_type_size (line 36) | size_t artio_type_size(int type) {
  function parameter_list (line 64) | parameter_list *artio_parameter_list_init() {
  function artio_parameter_read (line 75) | int artio_parameter_read(artio_fh *handle, parameter_list *parameters) {
  function artio_parameter_write (line 137) | int artio_parameter_write(artio_fh *handle, parameter_list *parameters) {
  function artio_parameter_iterate (line 173) | int artio_parameter_iterate( artio_fileset *handle,
  function parameter (line 197) | parameter *artio_parameter_list_search(parameter_list * parameters, cons...
  function artio_parameter_list_insert (line 205) | int artio_parameter_list_insert(parameter_list * parameters, const char ...
  function artio_parameter_list_unpack (line 253) | int artio_parameter_list_unpack(parameter_list *parameters,
  function artio_parameter_list_unpack_index (line 275) | int artio_parameter_list_unpack_index(parameter_list *parameters,
  function artio_parameter_array_length (line 302) | int artio_parameter_array_length( parameter *item ) {
  function artio_parameter_get_array_length (line 319) | int artio_parameter_get_array_length(artio_fileset *handle, const char *...
  function artio_parameter_list_free (line 331) | int artio_parameter_list_free(parameter_list * parameters) {
  function artio_parameter_list_print (line 353) | int artio_parameter_list_print(parameter_list * parameters) {
  function artio_parameter_set_int (line 393) | int artio_parameter_set_int(artio_fileset *handle, const char * key, int...
  function artio_parameter_get_int (line 398) | int artio_parameter_get_int(artio_fileset *handle, const char * key, int...
  function artio_parameter_set_int_array (line 402) | int artio_parameter_set_int_array(artio_fileset *handle, const char * ke...
  function artio_parameter_get_int_array (line 408) | int artio_parameter_get_int_array(artio_fileset *handle, const char * ke...
  function artio_parameter_get_int_array_index (line 414) | int artio_parameter_get_int_array_index( artio_fileset *handle, const ch...
  function artio_parameter_set_float (line 420) | int artio_parameter_set_float(artio_fileset *handle, const char * key, f...
  function artio_parameter_get_float (line 425) | int artio_parameter_get_float(artio_fileset *handle, const char * key, f...
  function artio_parameter_set_float_array (line 429) | int artio_parameter_set_float_array(artio_fileset *handle, const char * ...
  function artio_parameter_get_float_array (line 435) | int artio_parameter_get_float_array(artio_fileset *handle, const char * ...
  function artio_parameter_get_float_array_index (line 441) | int artio_parameter_get_float_array_index(artio_fileset *handle, const c...
  function artio_parameter_set_double (line 447) | int artio_parameter_set_double(artio_fileset *handle, const char * key, ...
  function artio_parameter_get_double (line 452) | int artio_parameter_get_double(artio_fileset *handle, const char * key, ...
  function artio_parameter_set_double_array (line 456) | int artio_parameter_set_double_array(artio_fileset *handle, const char *...
  function artio_parameter_get_double_array (line 462) | int artio_parameter_get_double_array(artio_fileset *handle, const char *...
  function artio_parameter_get_double_array_index (line 468) | int artio_parameter_get_double_array_index(artio_fileset *handle, const ...
  function artio_parameter_set_long (line 474) | int artio_parameter_set_long(artio_fileset *handle, const char * key, in...
  function artio_parameter_get_long (line 479) | int artio_parameter_get_long(artio_fileset *handle, const char * key, in...
  function artio_parameter_set_long_array (line 483) | int artio_parameter_set_long_array(artio_fileset *handle, const char * key,
  function artio_parameter_get_long_array (line 489) | int artio_parameter_get_long_array(artio_fileset *handle, const char * key,
  function artio_parameter_get_long_array_index (line 495) | int artio_parameter_get_long_array_index(artio_fileset *handle, const ch...
  function artio_parameter_set_string (line 501) | int artio_parameter_set_string(artio_fileset *handle, const char *key, c...
  function artio_parameter_set_string_array (line 505) | int artio_parameter_set_string_array(artio_fileset *handle, const char *...
  function artio_parameter_get_string (line 538) | int artio_parameter_get_string(artio_fileset *handle, const char *key, c...
  function artio_parameter_get_string_array_index (line 542) | int artio_parameter_get_string_array_index( artio_fileset *handle, const...
  function artio_parameter_get_string_array (line 569) | int artio_parameter_get_string_array(artio_fileset *handle, const char *...

FILE: yt/frontends/artio/artio_headers/artio_particle.c
  type __int64 (line 30) | typedef __int64 int64_t;
  type __int32 (line 31) | typedef __int32 int32_t;
  function artio_fileset_open_particles (line 43) | int artio_fileset_open_particles(artio_fileset *handle) {
  function artio_fileset_add_particles (line 143) | int artio_fileset_add_particles( artio_fileset *handle,
  function artio_particle_file (line 401) | artio_particle_file *artio_particle_file_allocate(void) {
  function artio_particle_file_destroy (line 428) | void artio_particle_file_destroy( artio_particle_file *phandle ) {
  function artio_fileset_close_particles (line 452) | int artio_fileset_close_particles(artio_fileset *handle) {
  function artio_particle_cache_sfc_range (line 466) | int artio_particle_cache_sfc_range(artio_fileset *handle,
  function artio_particle_clear_sfc_cache (line 542) | int artio_particle_clear_sfc_cache( artio_fileset *handle ) {
  function artio_particle_find_file (line 569) | int artio_particle_find_file(artio_particle_file *phandle,
  function artio_particle_seek_to_sfc (line 603) | int artio_particle_seek_to_sfc(artio_fileset *handle, int64_t sfc) {
  function artio_particle_write_root_cell_begin (line 640) | int artio_particle_write_root_cell_begin(artio_fileset *handle, int64_t ...
  function artio_particle_write_root_cell_end (line 680) | int artio_particle_write_root_cell_end(artio_fileset *handle) {
  function artio_particle_write_species_begin (line 700) | int artio_particle_write_species_begin(artio_fileset *handle,
  function artio_particle_write_species_end (line 730) | int artio_particle_write_species_end(artio_fileset *handle) {
  function artio_particle_write_particle (line 757) | int artio_particle_write_particle(artio_fileset *handle, int64_t pid, in...
  function artio_particle_read_root_cell_begin (line 803) | int artio_particle_read_root_cell_begin(artio_fileset *handle, int64_t sfc,
  function artio_particle_read_particle (line 839) | int artio_particle_read_particle(artio_fileset *handle, int64_t * pid, i...
  function artio_particle_read_species_begin (line 884) | int artio_particle_read_species_begin(artio_fileset *handle, int species) {
  function artio_particle_read_species_end (line 932) | int artio_particle_read_species_end(artio_fileset *handle) {
  function artio_particle_read_root_cell_end (line 957) | int artio_particle_read_root_cell_end(artio_fileset *handle) {
  function artio_particle_read_selection (line 976) | int artio_particle_read_selection(artio_fileset *handle,
  function artio_particle_read_selection_species (line 995) | int artio_particle_read_selection_species( artio_fileset *handle,
  function artio_particle_read_sfc_range (line 1022) | int artio_particle_read_sfc_range(artio_fileset *handle,
  function artio_particle_read_sfc_range_species (line 1041) | int artio_particle_read_sfc_range_species(artio_fileset *handle,

FILE: yt/frontends/artio/artio_headers/artio_posix.c
  type __int64 (line 33) | typedef __int64 int64_t;
  type __int32 (line 34) | typedef __int32 int32_t;
  type ARTIO_FH (line 39) | struct ARTIO_FH {
  function artio_fh (line 58) | artio_fh *artio_file_fopen_i( char * filename, int mode, const artio_con...
  function artio_file_attach_buffer_i (line 88) | int artio_file_attach_buffer_i( artio_fh *handle, void *buf, int buf_siz...
  function artio_file_detach_buffer_i (line 105) | int artio_file_detach_buffer_i( artio_fh *handle ) {
  function artio_file_fwrite_i (line 118) | int artio_file_fwrite_i(artio_fh *handle, const void *buf, int64_t count...
  function artio_file_fflush_i (line 181) | int artio_file_fflush_i(artio_fh *handle) {
  function artio_file_fread_i (line 204) | int artio_file_fread_i(artio_fh *handle, void *buf, int64_t count, int t...
  function artio_file_ftell_i (line 288) | int artio_file_ftell_i( artio_fh *handle, int64_t *offset ) {
  function artio_file_fseek_i (line 302) | int artio_file_fseek_i(artio_fh *handle, int64_t offset, int whence ) {
  function artio_file_fclose_i (line 357) | int artio_file_fclose_i(artio_fh *handle) {
  function artio_file_set_endian_swap_tag_i (line 367) | void artio_file_set_endian_swap_tag_i(artio_fh *handle) {

FILE: yt/frontends/artio/artio_headers/artio_selector.c
  type __int64 (line 30) | typedef __int64 int64_t;
  type __int32 (line 31) | typedef __int32 int32_t;
  function artio_selection_iterator (line 42) | int artio_selection_iterator( artio_selection *selection,
  function artio_selection_iterator_reset (line 72) | int artio_selection_iterator_reset( artio_selection *selection ) {
  function artio_selection_size (line 78) | int64_t artio_selection_size( artio_selection *selection ) {
  function artio_selection (line 87) | artio_selection *artio_selection_allocate( artio_fileset *handle ) {
  function artio_selection_destroy (line 104) | int artio_selection_destroy( artio_selection *selection ) {
  function artio_selection_add_range (line 116) | int artio_selection_add_range( artio_selection *selection,
  function artio_selection_add_root_cell (line 202) | int artio_selection_add_root_cell( artio_selection *selection, int coord...
  function artio_selection_print (line 220) | void artio_selection_print( artio_selection *selection ) {
  function artio_selection (line 228) | artio_selection *artio_select_all( artio_fileset *handle ) {
  function artio_selection (line 248) | artio_selection *artio_select_volume( artio_fileset *handle, double lpos...
  function artio_selection (line 291) | artio_selection *artio_select_cube( artio_fileset *handle, double center...

FILE: yt/frontends/artio/artio_headers/artio_sfc.c
  function artio_morton_index (line 36) | int64_t artio_morton_index( artio_fileset *handle, int coords[nDim] )
  function artio_hilbert_index (line 61) | int64_t artio_hilbert_index( artio_fileset *handle, int coords[nDim] )
  function artio_hilbert_coords (line 154) | void artio_hilbert_coords( artio_fileset *handle, int64_t index, int coo...
  function artio_slab_index (line 233) | int64_t artio_slab_index( artio_fileset *handle, int coords[nDim], int s...
  function artio_slab_coords (line 253) | void artio_slab_coords( artio_fileset *handle, int64_t index, int coords...
  function artio_sfc_index_position (line 274) | int64_t artio_sfc_index_position( artio_fileset *handle, double position...
  function artio_sfc_index (line 284) | int64_t artio_sfc_index( artio_fileset *handle, int coords[nDim] ) {
  function artio_sfc_coords (line 294) | void artio_sfc_coords( artio_fileset *handle, int64_t index, int coords[...

FILE: yt/frontends/artio/artio_headers/cosmology.c
  type CosmologyParametersStruct (line 35) | struct CosmologyParametersStruct
  function CosmologyParameters (line 67) | CosmologyParameters *cosmology_allocate() {
  function cosmology_free (line 78) | void cosmology_free(CosmologyParameters *c) {
  function cosmology_is_set (line 83) | int cosmology_is_set(CosmologyParameters *c)
  function cosmology_fail_on_reset (line 89) | void cosmology_fail_on_reset(const char *name, double old_value, double ...
  function cosmology_set_OmegaM (line 97) | void cosmology_set_OmegaM(CosmologyParameters *c, double v)
  function cosmology_set_OmegaL (line 110) | void cosmology_set_OmegaL(CosmologyParameters *c, double v)
  function cosmology_set_OmegaB (line 122) | void cosmology_set_OmegaB(CosmologyParameters *c, double v)
  function cosmology_set_h (line 134) | void cosmology_set_h(CosmologyParameters *c, double v)
  function cosmology_set_DeltaDC (line 145) | void cosmology_set_DeltaDC(CosmologyParameters *c, double v)
  function cosmology_init (line 156) | void cosmology_init(CosmologyParameters *c)
  function cosmology_set_fixed (line 188) | void cosmology_set_fixed(CosmologyParameters *c)
  function cosmology_mu (line 195) | double cosmology_mu(CosmologyParameters *c, double a)
  function cosmology_dc_factor (line 201) | double cosmology_dc_factor(CosmologyParameters *c, double dPlus)
  function cosmology_fill_table_integrate (line 208) | void cosmology_fill_table_integrate(CosmologyParameters *c, double a, do...
  function asinh (line 220) | double asinh(double x){
  function cosmology_fill_table_piece (line 225) | void cosmology_fill_table_piece(CosmologyParameters *c, int istart, int n)
  function cosmology_fill_table (line 300) | void cosmology_fill_table(CosmologyParameters *c, double amin, double amax)
  function cosmology_clear_table (line 400) | void cosmology_clear_table(CosmologyParameters *c)
  function cosmology_check_range (line 424) | void cosmology_check_range(CosmologyParameters *c, double a)
  function cosmology_set_thread_safe_range (line 442) | void cosmology_set_thread_safe_range(CosmologyParameters *c, double amin...
  function cosmology_get_value_from_table (line 449) | double cosmology_get_value_from_table(CosmologyParameters *c, double a, ...
  function cosmology_find_index (line 472) | int cosmology_find_index(CosmologyParameters *c, double v, double table[])

FILE: yt/frontends/artio/artio_headers/cosmology.h
  type CosmologyParameters (line 4) | typedef struct CosmologyParametersStruct CosmologyParameters;

FILE: yt/frontends/artio/data_structures.py
  class ARTIOOctreeSubset (line 24) | class ARTIOOctreeSubset(OctreeSubset):
    method __init__ (line 31) | def __init__(self, base_region, sfc_start, sfc_end, oct_handler, ds):
    method oct_handler (line 46) | def oct_handler(self):
    method min_ind (line 50) | def min_ind(self):
    method max_ind (line 54) | def max_ind(self):
    method fill (line 57) | def fill(self, fields, selector):
    method fill_particles (line 77) | def fill_particles(self, fields):
  class ARTIORootMeshSubset (line 104) | class ARTIORootMeshSubset(ARTIOOctreeSubset):
    method fill (line 110) | def fill(self, fields, selector):
    method deposit (line 123) | def deposit(self, positions, fields=None, method=None, kernel_name="cu...
  class ARTIOIndex (line 150) | class ARTIOIndex(Index):
    method __init__ (line 151) | def __init__(self, ds, dataset_type="artio"):
    method max_range (line 164) | def max_range(self):
    method _setup_geometry (line 167) | def _setup_geometry(self):
    method get_smallest_dx (line 170) | def get_smallest_dx(self):
    method _get_particle_type_counts (line 179) | def _get_particle_type_counts(self):
    method convert (line 190) | def convert(self, unit):
    method find_max (line 193) | def find_max(self, field, finest_levels=3):
    method find_max_cell_location (line 203) | def find_max_cell_location(self, field, finest_levels=3):
    method _detect_output_fields (line 214) | def _detect_output_fields(self):
    method _detect_fluid_fields (line 220) | def _detect_fluid_fields(self):
    method _detect_particle_fields (line 223) | def _detect_particle_fields(self):
    method _identify_base_chunk (line 232) | def _identify_base_chunk(self, dobj):
    method _data_size (line 299) | def _data_size(self, dobj, dobjs):
    method _chunk_all (line 305) | def _chunk_all(self, dobj):
    method _chunk_spatial (line 309) | def _chunk_spatial(self, dobj, ngz, preload_fields=None):
    method _chunk_io (line 320) | def _chunk_io(self, dobj, cache=True, local_only=False):
    method _read_fluid_fields (line 326) | def _read_fluid_fields(self, fields, dobj, chunk=None):
    method _icoords_to_fcoords (line 340) | def _icoords_to_fcoords(
  class ARTIODataset (line 358) | class ARTIODataset(Dataset):
    method __init__ (line 363) | def __init__(
    method _set_code_unit_attributes (line 392) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 398) | def _parse_parameter_file(self):
    method create_field_info (line 504) | def create_field_info(self):
    method _is_valid (line 520) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/artio/definitions.py
  class ARTIOconstants (line 33) | class ARTIOconstants:
    method __init__ (line 34) | def __init__(self):

FILE: yt/frontends/artio/fields.py
  class ARTIOFieldInfo (line 18) | class ARTIOFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 57) | def setup_fluid_fields(self):
    method setup_particle_fields (line 133) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/artio/io.py
  class IOHandlerARTIO (line 6) | class IOHandlerARTIO(BaseIOHandler):
    method _read_fluid_selection (line 9) | def _read_fluid_selection(self, chunks, selector, fields):
    method _read_particle_coords (line 21) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 35) | def _read_particle_fields(self, chunks, ptf, selector):

FILE: yt/frontends/artio/tests/test_outputs.py
  function test_sizmbhloz (line 30) | def test_sizmbhloz():
  function test_ARTIODataset (line 51) | def test_ARTIODataset():
  function test_units_override (line 56) | def test_units_override():
  function test_particle_derived_field (line 61) | def test_particle_derived_field():

FILE: yt/frontends/athena/data_structures.py
  function chk23 (line 21) | def chk23(strin):
  function str23 (line 25) | def str23(strin):
  function check_readline (line 32) | def check_readline(fl):
  function check_break (line 43) | def check_break(line):
  function _get_convert (line 52) | def _get_convert(fname):
  class AthenaGrid (line 59) | class AthenaGrid(AMRGridPatch):
    method __init__ (line 62) | def __init__(self, id, index, level, start, dimensions, file_offset, r...
    method _setup_dx (line 75) | def _setup_dx(self):
  function parse_line (line 91) | def parse_line(line, grid):
  class AthenaHierarchy (line 122) | class AthenaHierarchy(GridIndex):
    method __init__ (line 127) | def __init__(self, ds, dataset_type="athena"):
    method _detect_output_fields (line 138) | def _detect_output_fields(self):
    method _count_grids (line 202) | def _count_grids(self):
    method _parse_index (line 205) | def _parse_index(self):
    method _populate_grid_objects (line 423) | def _populate_grid_objects(self):
    method _reconstruct_parent_child (line 430) | def _reconstruct_parent_child(self):
    method _get_grid_children (line 451) | def _get_grid_children(self, grid):
    method _chunk_io (line 457) | def _chunk_io(self, dobj, cache=True, local_only=False):
  class AthenaDataset (line 465) | class AthenaDataset(Dataset):
    method __init__ (line 470) | def __init__(
    method _set_code_unit_attributes (line 507) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 528) | def _parse_parameter_file(self):
    method _is_valid (line 635) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _skip_cache (line 659) | def _skip_cache(self):
    method __str__ (line 662) | def __str__(self):

FILE: yt/frontends/athena/fields.py
  function velocity_field (line 11) | def velocity_field(comp):
  class AthenaFieldInfo (line 18) | class AthenaFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 36) | def setup_fluid_fields(self):

FILE: yt/frontends/athena/io.py
  class IOHandlerAthena (line 13) | class IOHandlerAthena(BaseIOHandler):
    method _read_field_names (line 19) | def _read_field_names(self, grid):
    method _read_chunk_data (line 22) | def _read_chunk_data(self, chunk, fields):
    method _read_data_slice (line 75) | def _read_data_slice(self, grid, field, axis, coord):
    method _read_fluid_selection (line 82) | def _read_fluid_selection(self, chunks, selector, fields, size):
  function get_read_table_offset (line 109) | def get_read_table_offset(f):

FILE: yt/frontends/athena/tests/test_outputs.py
  function test_cloud (line 27) | def test_cloud():
  function test_blast (line 45) | def test_blast():
  function test_blast_override (line 61) | def test_blast_override():
  function test_stripping (line 84) | def test_stripping():
  function test_nprocs (line 103) | def test_nprocs():
  function test_AthenaDataset (line 131) | def test_AthenaDataset():
  function test_mag_factor (line 137) | def test_mag_factor():

FILE: yt/frontends/athena_pp/data_structures.py
  class AthenaPPGrid (line 30) | class AthenaPPGrid(AMRGridPatch):
    method __init__ (line 33) | def __init__(self, id, index, level):
    method _setup_dx (line 39) | def _setup_dx(self):
  class AthenaPPStretchedGrid (line 52) | class AthenaPPStretchedGrid(StretchedGrid):
    method __init__ (line 55) | def __init__(self, id, cell_widths, index, level):
  class AthenaPPHierarchy (line 62) | class AthenaPPHierarchy(GridIndex):
    method __init__ (line 66) | def __init__(self, ds, dataset_type="athena_pp"):
    method _detect_output_fields (line 76) | def _detect_output_fields(self):
    method _count_grids (line 79) | def _count_grids(self):
    method _parse_index (line 82) | def _parse_index(self):
    method _populate_grid_objects (line 121) | def _populate_grid_objects(self):
  class AthenaPPDataset (line 128) | class AthenaPPDataset(Dataset):
    method __init__ (line 133) | def __init__(
    method _set_code_unit_attributes (line 177) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 204) | def _parse_parameter_file(self):
    method _is_valid (line 265) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _skip_cache (line 269) | def _skip_cache(self):
    method __str__ (line 272) | def __str__(self):

FILE: yt/frontends/athena_pp/fields.py
  function velocity_field (line 11) | def velocity_field(j):
  class AthenaPPFieldInfo (line 18) | class AthenaPPFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 27) | def setup_fluid_fields(self):

FILE: yt/frontends/athena_pp/io.py
  function grid_sequences (line 10) | def grid_sequences(grids):
  class IOHandlerAthenaPP (line 17) | class IOHandlerAthenaPP(BaseIOHandler):
    method __init__ (line 21) | def __init__(self, ds):
    method _read_particles (line 25) | def _read_particles(
    method _read_fluid_selection (line 30) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_chunk_data (line 63) | def _read_chunk_data(self, chunk, fields):

FILE: yt/frontends/athena_pp/tests/test_outputs.py
  function test_disk (line 26) | def test_disk():
  function test_AM06 (line 48) | def test_AM06():
  function test_AM06_override (line 64) | def test_AM06_override():
  function test_units_override (line 72) | def test_units_override():
  function test_AthenaPPDataset (line 77) | def test_AthenaPPDataset():
  function test_magnetic_units (line 82) | def test_magnetic_units():
  function test_mag_factor (line 90) | def test_mag_factor():

FILE: yt/frontends/boxlib/_deprecation.py
  function boxlib_deprecation (line 4) | def boxlib_deprecation():

FILE: yt/frontends/boxlib/tests/test_boxlib_deprecation.py
  function test_imports (line 6) | def test_imports():

FILE: yt/frontends/boxlib/tests/test_outputs.py
  function test_radadvect (line 48) | def test_radadvect():
  function test_radtube (line 60) | def test_radtube():
  function test_star (line 72) | def test_star():
  function test_LyA (line 84) | def test_LyA():
  function test_nyx_particle_io (line 95) | def test_nyx_particle_io():
  function test_RT_particles (line 144) | def test_RT_particles():
  function test_castro_particle_io (line 153) | def test_castro_particle_io():
  function test_langmuir (line 193) | def test_langmuir():
  function test_plasma (line 207) | def test_plasma():
  function test_beam (line 221) | def test_beam():
  function test_warpx_particle_io (line 237) | def test_warpx_particle_io():
  function test_raw_fields (line 294) | def test_raw_fields():
  function test_OrionDataset (line 300) | def test_OrionDataset():
  function test_NyxDataset (line 305) | def test_NyxDataset():
  function test_NyxDataset_2 (line 310) | def test_NyxDataset_2():
  function test_CastroDataset (line 315) | def test_CastroDataset():
  function test_CastroDataset_2 (line 320) | def test_CastroDataset_2():
  function test_CastroDataset_3 (line 325) | def test_CastroDataset_3():
  function test_WarpXDataset (line 330) | def test_WarpXDataset():
  function test_magnetic_units (line 336) | def test_magnetic_units():
  function test_WarpXDataset_2 (line 352) | def test_WarpXDataset_2():
  function test_AMReXDataset (line 357) | def test_AMReXDataset():
  function test_units_override (line 363) | def test_units_override():
  function test_nyx_no_part (line 371) | def test_nyx_no_part():
  function test_maestro_parameters (line 421) | def test_maestro_parameters():
  function test_castro_parameters (line 452) | def test_castro_parameters():

FILE: yt/frontends/cf_radial/data_structures.py
  class CFRadialGrid (line 25) | class CFRadialGrid(AMRGridPatch):
    method __init__ (line 28) | def __init__(self, id, index, level, dimensions):
  class CFRadialHierarchy (line 36) | class CFRadialHierarchy(GridIndex):
    method __init__ (line 39) | def __init__(self, ds, dataset_type="cf_radial"):
    method _detect_output_fields (line 49) | def _detect_output_fields(self):
    method _count_grids (line 63) | def _count_grids(self):
    method _parse_index (line 66) | def _parse_index(self):
    method _populate_grid_objects (line 74) | def _populate_grid_objects(self):
  class CFRadialDataset (line 82) | class CFRadialDataset(Dataset):
    method __init__ (line 87) | def __init__(
    method _handle (line 197) | def _handle(self, filename: str | None = None):
    method _validate_grid_dim (line 207) | def _validate_grid_dim(
    method _validate_grid_shape (line 237) | def _validate_grid_shape(
    method _round_grid_guess (line 252) | def _round_grid_guess(self, bounds: tuple[float, float], unit_str: str):
    method _set_code_unit_attributes (line 262) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 269) | def _parse_parameter_file(self):
    method _is_valid (line 298) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/cf_radial/fields.py
  class CFRadialFieldInfo (line 11) | class CFRadialFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 20) | def setup_fluid_fields(self):

FILE: yt/frontends/cf_radial/io.py
  class CFRadialIOHandler (line 13) | class CFRadialIOHandler(BaseIOHandler):
    method _read_fluid_selection (line 17) | def _read_fluid_selection(self, chunks, selector, fields, size):

FILE: yt/frontends/cf_radial/tests/test_cf_radial_pytest.py
  function create_cf_radial_mock_gridded_ds (line 10) | def create_cf_radial_mock_gridded_ds(savedir: Path) -> Path:
  function test_load_mock_gridded_cf_radial (line 37) | def test_load_mock_gridded_cf_radial(tmp_path):

FILE: yt/frontends/cf_radial/tests/test_outputs.py
  function test_units_override (line 44) | def test_units_override():
  function test_cf_radial_gridded (line 50) | def test_cf_radial_gridded():
  function check_fields (line 63) | def check_fields(ds, field):
  function check_field_units (line 69) | def check_field_units(ad, field, value):
  function check_origin_latitude_longitude (line 73) | def check_origin_latitude_longitude(ds):
  function check_domain (line 78) | def check_domain(ds):
  function test_auto_gridding (line 94) | def test_auto_gridding():
  function test_grid_parameters (line 128) | def test_grid_parameters():
  function test_cfradial_grid_field_values (line 177) | def test_cfradial_grid_field_values():

FILE: yt/frontends/chimera/data_structures.py
  class ChimeraMesh (line 26) | class ChimeraMesh(SemiStructuredMesh):
    method __init__ (line 29) | def __init__(self, *args, **kwargs):
  function _find_files (line 33) | def _find_files(filename_c):
  class ChimeraUNSIndex (line 47) | class ChimeraUNSIndex(UnstructuredIndex):
    method __init__ (line 48) | def __init__(self, ds, dataset_type="chimera"):
    method _initialize_mesh (line 54) | def _initialize_mesh(self):
    method _detect_output_fields (line 156) | def _detect_output_fields(self):  # Reads in the available data fields
    method _chunk_io (line 186) | def _chunk_io(self, dobj, cache=True, local_only=False):  # Creates Da...
    method _setup_data_io (line 193) | def _setup_data_io(self):
  class ChimeraDataset (line 197) | class ChimeraDataset(Dataset):
    method __init__ (line 202) | def __init__(
    method _set_code_unit_attributes (line 217) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 230) | def _parse_parameter_file(self):
    method _is_valid (line 271) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/chimera/fields.py
  class ChimeraFieldInfo (line 16) | class ChimeraFieldInfo(FieldInfoContainer):
    method __init__ (line 48) | def __init__(self, ds, field_list):
    method setup_fluid_fields (line 52) | def setup_fluid_fields(self):
    method setup_particle_fields (line 64) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/chimera/io.py
  class ChimeraIOHandler (line 17) | class ChimeraIOHandler(BaseIOHandler):
    method __init__ (line 21) | def __init__(self, ds):
    method _read_particle_coords (line 26) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 32) | def _read_particle_fields(self, chunks, ptf, selector):
    method _read_fluid_selection (line 40) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method io_iter (line 60) | def io_iter(self, chunks, fields):
    method _read_chunk_data (line 212) | def _read_chunk_data(self, chunk, fields):

FILE: yt/frontends/chimera/tests/test_outputs.py
  function test_2D (line 21) | def test_2D():
  function test_3D (line 107) | def test_3D():
  function test_multimesh (line 188) | def test_multimesh():  # Tests that the multimesh system for 3D data has...

FILE: yt/frontends/cholla/data_structures.py
  class ChollaGrid (line 17) | class ChollaGrid(AMRGridPatch):
    method __init__ (line 20) | def __init__(self, id, index, level, dims):
  class ChollaHierarchy (line 28) | class ChollaHierarchy(GridIndex):
    method __init__ (line 31) | def __init__(self, ds, dataset_type="cholla"):
    method _detect_output_fields (line 41) | def _detect_output_fields(self):
    method _count_grids (line 45) | def _count_grids(self):
    method _parse_index (line 48) | def _parse_index(self):
    method _populate_grid_objects (line 56) | def _populate_grid_objects(self):
  class ChollaDataset (line 65) | class ChollaDataset(Dataset):
    method __init__ (line 70) | def __init__(
    method _set_code_unit_attributes (line 82) | def _set_code_unit_attributes(self):
    method _parse_parameter_file (line 102) | def _parse_parameter_file(self):
    method _is_valid (line 163) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/cholla/fields.py
  function velocity_field (line 15) | def velocity_field(comp):
  class ChollaFieldInfo (line 22) | class ChollaFieldInfo(FieldInfoContainer):
    method setup_fluid_fields (line 39) | def setup_fluid_fields(self):
    method setup_particle_fields (line 152) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/cholla/io.py
  class ChollaIOHandler (line 7) | class ChollaIOHandler(BaseIOHandler):
    method _read_particle_coords (line 11) | def _read_particle_coords(self, chunks, ptf):
    method _read_particle_fields (line 14) | def _read_particle_fields(self, chunks, ptf, selector):
    method _read_fluid_selection (line 17) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_chunk_data (line 34) | def _read_chunk_data(self, chunk, fields):

FILE: yt/frontends/cholla/tests/test_outputs.py
  function test_ChollaDataset (line 22) | def test_ChollaDataset():
  function test_ChollaSimple_fields (line 28) | def test_ChollaSimple_fields():
  function test_ChollaSimple_derived_fields (line 53) | def test_ChollaSimple_derived_fields():
  function test_cholla_data (line 83) | def test_cholla_data():

FILE: yt/frontends/chombo/data_structures.py
  function is_chombo_hdf5 (line 28) | def is_chombo_hdf5(fn):
  class ChomboGrid (line 37) | class ChomboGrid(AMRGridPatch):
    method __init__ (line 41) | def __init__(self, id, index, level, start, stop):
    method get_global_startindex (line 48) | def get_global_startindex(self):
    method _setup_dx (line 67) | def _setup_dx(self):
    method Parent (line 72) | def Parent(self):
    method Children (line 78) | def Children(self):
  class ChomboHierarchy (line 82) | class ChomboHierarchy(GridIndex):
    method __init__ (line 86) | def __init__(self, ds, dataset_type="chombo_hdf5"):
    method _read_particles (line 103) | def _read_particles(self):
    method _detect_output_fields (line 127) | def _detect_output_fields(self):
    method _count_grids (line 142) | def _count_grids(self):
    method _parse_index (line 153) | def _parse_index(self):
    method _populate_grid_objects (line 206) | def _populate_grid_objects(self):
    method _setup_derived_fields (line 212) | def _setup_derived_fields(self):
    method _reconstruct_parent_child (line 215) | def _reconstruct_parent_child(self):
  class ChomboDataset (line 236) | class ChomboDataset(Dataset):
    method __init__ (line 241) | def __init__(
    method _set_code_unit_attributes (line 274) | def _set_code_unit_attributes(self):
    method _localize (line 287) | def _localize(self, f, default):
    method _parse_parameter_file (line 292) | def _parse_parameter_file(self):
    method _determine_current_time (line 315) | def _determine_current_time(self):
    method _determine_periodic (line 328) | def _determine_periodic(self):
    method _calc_left_edge (line 338) | def _calc_left_edge(self):
    method _calc_right_edge (line 345) | def _calc_right_edge(self):
    method _calc_domain_dimensions (line 352) | def _calc_domain_dimensions(self):
    method _is_valid (line 360) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method print_key_parameters (line 391) | def print_key_parameters(self):
  class PlutoHierarchy (line 405) | class PlutoHierarchy(ChomboHierarchy):
    method __init__ (line 406) | def __init__(self, ds, dataset_type="chombo_hdf5"):
    method _parse_index (line 409) | def _parse_index(self):
  class PlutoDataset (line 465) | class PlutoDataset(ChomboDataset):
    method __init__ (line 469) | def __init__(
    method _parse_parameter_file (line 490) | def _parse_parameter_file(self):
    method _is_valid (line 555) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  class Orion2Hierarchy (line 575) | class Orion2Hierarchy(ChomboHierarchy):
    method __init__ (line 576) | def __init__(self, ds, dataset_type="orion_chombo_native"):
    method _detect_output_fields (line 579) | def _detect_output_fields(self):
    method _read_particles (line 594) | def _read_particles(self):
  class Orion2Dataset (line 637) | class Orion2Dataset(ChomboDataset):
    method __init__ (line 642) | def __init__(
    method _parse_parameter_file (line 661) | def _parse_parameter_file(self):
    method _parse_inputs_file (line 683) | def _parse_inputs_file(self, ini_filename):
    method _is_valid (line 716) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  class ChomboPICHierarchy (line 751) | class ChomboPICHierarchy(ChomboHierarchy):
    method __init__ (line 752) | def __init__(self, ds, dataset_type="chombo_hdf5"):
  class ChomboPICDataset (line 756) | class ChomboPICDataset(ChomboDataset):
    method __init__ (line 761) | def __init__(
    method _is_valid (line 785) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/chombo/fields.py
  class ChomboFieldInfo (line 20) | class ChomboFieldInfo(FieldInfoContainer):
  class Orion2FieldInfo (line 28) | class Orion2FieldInfo(ChomboFieldInfo):
    method setup_particle_fields (line 67) | def setup_particle_fields(self, ptype):
    method setup_fluid_fields (line 87) | def setup_fluid_fields(self):
  class ChomboPICFieldInfo3D (line 195) | class ChomboPICFieldInfo3D(FieldInfoContainer):
    method setup_particle_fields (line 219) | def setup_particle_fields(self, ptype, ftype="gas", num_neighbors=64):
  function _dummy_position (line 265) | def _dummy_position(data):
  function _dummy_velocity (line 269) | def _dummy_velocity(data):
  function _dummy_field (line 273) | def _dummy_field(data):
  class ChomboPICFieldInfo2D (line 281) | class ChomboPICFieldInfo2D(ChomboPICFieldInfo3D):
    method __init__ (line 299) | def __init__(self, ds, field_list):
  class ChomboPICFieldInfo1D (line 326) | class ChomboPICFieldInfo1D(ChomboPICFieldInfo3D):
    method __init__ (line 341) | def __init__(self, ds, field_list):
  class PlutoFieldInfo (line 386) | class PlutoFieldInfo(ChomboFieldInfo):
    method setup_fluid_fields (line 400) | def setup_fluid_fields(self):

FILE: yt/frontends/chombo/io.py
  class IOHandlerChomboHDF5 (line 10) | class IOHandlerChomboHDF5(BaseIOHandler):
    method __init__ (line 16) | def __init__(self, ds, *args, **kwargs):
    method _calculate_offsets (line 25) | def _calculate_offsets(self):
    method _read_ghost_info (line 47) | def _read_ghost_info(self):
    method field_dict (line 62) | def field_dict(self):
    method particle_field_index (line 76) | def particle_field_index(self):
    method _read_data (line 89) | def _read_data(self, grid, field):
    method _read_fluid_selection (line 110) | def _read_fluid_selection(self, chunks, selector, fields, size):
    method _read_particle_selection (line 146) | def _read_particle_selection(self, chunks, selector, fields):
    method _read_particles (line 169) | def _read_particles(self, grid, name):
  function parse_orion_sinks (line 198) | def parse_orion_sinks(fn):
  class IOHandlerOrion2HDF5 (line 262) | class IOHandlerOrion2HDF5(IOHandlerChomboHDF5):
    method particle_field_index (line 268) | def particle_field_index(self):
    method _read_particles (line 276) | def _read_particles(self, grid, field):

FILE: yt/frontends/chombo/tests/test_outputs.py
  function test_gc (line 21) | def test_gc():
  function test_tb (line 34) | def test_tb():
  function test_iso (line 47) | def test_iso():
  function test_zp (line 61) | def test_zp():
  function test_kho (line 74) | def test_kho():
  function test_ChomboDataset (line 84) | def test_ChomboDataset():
  function test_Orion2Dataset (line 90) | def test_Orion2Dataset():
  function test_PlutoDataset (line 96) | def test_PlutoDataset():
  function test_units_override_zp (line 102) | def test_units_override_zp():
  function test_units_override_gc (line 108) | def test_units_override_gc():
  function test_units_override_kho (line 114) | def test_units_override_kho():

FILE: yt/frontends/eagle/data_structures.py
  class EagleDataset (line 12) | class EagleDataset(GadgetHDF5Dataset):
    method _parse_parameter_file (line 18) | def _parse_parameter_file(self):
    method _set_code_unit_attributes (line 36) | def _set_code_unit_attributes(self):
    method _is_valid (line 40) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  class EagleNetworkDataset (line 74) | class EagleNetworkDataset(EagleDataset):
    method _is_valid (line 81) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:

FILE: yt/frontends/eagle/fields.py
  class EagleNetworkFieldInfo (line 7) | class EagleNetworkFieldInfo(OWLSFieldInfo):
    method __init__ (line 129) | def __init__(self, ds, field_list, slice_info=None):
    method _create_ion_density_func (line 132) | def _create_ion_density_func(self, ftype, ion):

FILE: yt/frontends/eagle/io.py
  class IOHandlerEagleNetwork (line 4) | class IOHandlerEagleNetwork(IOHandlerOWLS):

FILE: yt/frontends/eagle/tests/test_outputs.py
  function test_EagleDataset (line 10) | def test_EagleDataset():
  function test_Snipshot (line 22) | def test_Snipshot():

FILE: yt/frontends/enzo/answer_testing_support.py
  class AssertWrapper (line 19) | class AssertWrapper:
    method __init__ (line 25) | def __init__(self, description, *args):
    method __call__ (line 31) | def __call__(self):
  function requires_outputlog (line 35) | def requires_outputlog(path=".", prefix=""):
  function standard_small_simulation (line 64) | def standard_small_simulation(ds_fn, fields):
  class ShockTubeTest (line 84) | class ShockTubeTest:
    method __init__ (line 85) | def __init__(
    method __call__ (line 96) | def __call__(self):
    method get_analytical_solution (line 119) | def get_analytical_solution(self):

FILE: yt/frontends/enzo/data_structures.py
  class EnzoGrid (line 25) | class EnzoGrid(AMRGridPatch):
    method __init__ (line 30) | def __init__(self, id, index):
    method set_filename (line 41) | def set_filename(self, filename):
    method Parent (line 59) | def Parent(self):
    method Children (line 65) | def Children(self):
    method NumberOfActiveParticles (line 69) | def NumberOfActiveParticles(self):
  class EnzoGridInMemory (line 80) | class EnzoGridInMemory(EnzoGrid):
    method set_filename (line 83) | def set_filename(self, filename):
  class EnzoGridGZ (line 87) | class EnzoGridGZ(EnzoGrid):
    method retrieve_ghost_zones (line 90) | def retrieve_ghost_zones(self, n_zones, fields, all_levels=False, smoo...
  class EnzoHierarchy (line 142) | class EnzoHierarchy(GridIndex):
    method __init__ (line 147) | def __init__(self, ds, dataset_type):
    method _count_grids (line 164) | def _count_grids(self):
    method _guess_dataset_type (line 185) | def _guess_dataset_type(self, rank, test_grid, test_grid_id):
    method _parse_index (line 211) | def _parse_index(self):
    method _initialize_grid_arrays (line 282) | def _initialize_grid_arrays(self):
    method _fill_arrays (line 293) | def _fill_arrays(self, ei, si, LE, RE, npart, nap):
    method __pointer_handler (line 304) | def __pointer_handler(self, m):
    method _rebuild_top_grids (line 325) | def _rebuild_top_grids(self, level=0):
    method _populate_grid_objects (line 344) | def _populate_grid_objects(self):
    method _detect_active_particle_fields (line 352) | def _detect_active_particle_fields(self):
    method _setup_derived_fields (line 388) | def _setup_derived_fields(self):
    method _detect_output_fields (line 403) | def _detect_output_fields(self):
    method _generate_random_grids (line 442) | def _generate_random_grids(self):
    method _get_particle_type_counts (line 463) | def _get_particle_type_counts(self):
    method find_particles_by_type (line 472) | def find_particles_by_type(self, ptype, max_num=None, additional_field...
  class EnzoHierarchyInMemory (line 534) | class EnzoHierarchyInMemory(EnzoHierarchy):
    method enzo (line 538) | def enzo(self):
    method __init__ (line 543) | def __init__(self, ds, dataset_type=None):
    method _initialize_data_storage (line 551) | def _initialize_data_storage(self):
    method _count_grids (line 554) | def _count_grids(self):
    method _parse_index (line 557) | def _parse_index(self):
    method _initialize_grid_arrays (line 585) | def _initialize_grid_arrays(self):
    method _copy_index_structure (line 589) | def _copy_index_structure(self):
    method save_data (line 602) | def save_data(self, *args, **kwargs):
    method _generate_random_grids (line 608) | def _generate_random_grids(self):
    method _chunk_io (line 620) | def _chunk_io(self, dobj, cache=True, local_only=False):
  class EnzoHierarchy1D (line 634) | class EnzoHierarchy1D(EnzoHierarchy):
    method _fill_arrays (line 635) | def _fill_arrays(self, ei, si, LE, RE, npart, nap):
  class EnzoHierarchy2D (line 649) | class EnzoHierarchy2D(EnzoHierarchy):
    method _fill_arrays (line 650) | def _fill_arrays(self, ei, si, LE, RE, npart, nap):
  class EnzoDataset (line 664) | class EnzoDataset(Dataset):
    method __init__ (line 673) | def __init__(
    method _setup_1d (line 712) | def _setup_1d(self):
    method _setup_2d (line 717) | def _setup_2d(self):
    method get_parameter (line 722) | def get_parameter(self, parameter, type=None):
    method unique_identifier (line 755) | def unique_identifier(self) -> str:
    method _parse_parameter_file (line 770) | def _parse_parameter_file(self):
    method _parse_enzo3_parameter_file (line 784) | def _parse_enzo3_parameter_file(self, f):
    method _parse_enzo2_parameter_file (line 828) | def _parse_enzo2_parameter_file(self, f):
    method _set_code_unit_attributes (line 941) | def _set_code_unit_attributes(self):
    method _is_valid (line 986) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
    method _guess_candidates (line 992) | def _guess_candidates(cls, base, directories, files):
  class EnzoDatasetInMemory (line 1003) | class EnzoDatasetInMemory(EnzoDataset):
    method __init__ (line 1007) | def __init__(self, parameter_override=None, conversion_override=None):
    method _parse_parameter_file (line 1018) | def _parse_parameter_file(self):
    method _obtain_enzo (line 1060) | def _obtain_enzo(self):
    method _is_valid (line 1066) | def _is_valid(cls, filename: str, *args, **kwargs) -> bool:
  function rblocks (line 1075) | def rblocks(f, blocksize=4096):
  function rlines (line 1098) | def rlines(f, keepends=False):

FILE: yt/frontends/enzo/fields.py
  class EnzoFieldInfo (line 51) | class EnzoFieldInfo(FieldInfoContainer):
    method __init__ (line 116) | def __init__(self, ds, field_list):
    method add_species_field (line 137) | def add_species_field(self, species):
    method setup_species_fields (line 157) | def setup_species_fields(self):
    method setup_fluid_fields (line 179) | def setup_fluid_fields(self):
    method setup_energy_field (line 193) | def setup_energy_field(self):
    method setup_particle_fields (line 323) | def setup_particle_fields(self, ptype):

FILE: yt/frontends/enzo/io.py
  class IOHandlerPackedHDF5 (line 13) | class IOHandlerPackedHDF5(BaseIOHandler):
    method _read_field_names (line 18) | def _read_field_names(self, grid):
    method _read_exception (line 59) | def _read_exception(self):
    method _r
Copy disabled (too large) Download .json
Condensed preview — 1219 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (10,224K chars).
[
  {
    "path": ".codecov.yml",
    "chars": 192,
    "preview": "comment: false\n\ncoverage:\n  status:\n    project:\n      default:\n        threshold: 1%\n    patch:\n      default:\n        "
  },
  {
    "path": ".coveragerc",
    "chars": 241,
    "preview": "[run]\nplugins = Cython.Coverage\nbranch = True\n\n[report]\nomit=*.yml\n     */api.py\n\t */__init__.py\n\t */__config__.py\n\t */t"
  },
  {
    "path": ".git-blame-ignore-revs",
    "chars": 1613,
    "preview": "# transition to isort\n7edfcee093cca277307aabdb180e0ffc69768291\n81418e459f16c48d6b7a75d6ef8035dfe9651b39\n60f670d75a23a6d0"
  },
  {
    "path": ".github/CODEOWNERS",
    "chars": 1094,
    "preview": "# Auto request reviews from specific users or teams matching patterns\n#\n# - the yt-project retains ownership of any code"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "chars": 1591,
    "preview": "<!--To help us understand and resolve your issue, please fill out the form to\nthe best of your ability.-->\n<!--You can f"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "chars": 1320,
    "preview": "<!--Thank you so much for your PR! To help us review, fill out the form\nto the best of your ability.  Please make use of"
  },
  {
    "path": ".github/config.yml",
    "chars": 1126,
    "preview": "# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome\n\n# Comment to be posted to on f"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 524,
    "preview": "version: 2\nupdates:\n- package-ecosystem: github-actions\n  directory: /.github/workflows\n  labels:\n    - dependencies\n   "
  },
  {
    "path": ".github/mergeable.yml",
    "chars": 501,
    "preview": "# config file for mergeable: https://github.com/mergeability/mergeable\nversion: 2\nmergeable:\n  - when: pull_request.*\n  "
  },
  {
    "path": ".github/workflows/bleeding-edge.yaml",
    "chars": 3100,
    "preview": "name: CI (bleeding edge)\n# this workflow is heavily inspired from pandas, see\n# https://github.com/pandas-dev/pandas/blo"
  },
  {
    "path": ".github/workflows/build-test.yaml",
    "chars": 6749,
    "preview": "name: Build and Test\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n  workflow_dispatch:\n\ndefaults:\n  run:\n    "
  },
  {
    "path": ".github/workflows/type-checking.yaml",
    "chars": 1105,
    "preview": "name: type checking\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n    paths:\n      - yt/**/*.py\n      - pyproj"
  },
  {
    "path": ".github/workflows/wheels.yaml",
    "chars": 5142,
    "preview": "name: Build CI Wheels\n\non:\n  push:\n    branches:\n      - main\n      - stable\n    tags:\n      - 'yt-*'\n  pull_request:\n  "
  },
  {
    "path": ".gitignore",
    "chars": 3477,
    "preview": "build\nyt.egg-info\n__config__.py\nfreetype.cfg\nhdf5.cfg\npng.cfg\nrockstar.cfg\nyt_updater.log\nyt/frontends/artio/_artio_call"
  },
  {
    "path": ".gitmodules",
    "chars": 249,
    "preview": "[submodule \"answer-store\"]\n\tpath = answer-store\n\turl = https://github.com/yt-project/answer-store\n\tbranch = yt-4.0\n[subm"
  },
  {
    "path": ".hgchurn",
    "chars": 2400,
    "preview": "stephenskory@yahoo.com = s@skory.us\n\"Stephen Skory stephenskory@yahoo.com\" = s@skory.us\nbear0980@gmail.com = yuan@astro."
  },
  {
    "path": ".hgtags",
    "chars": 256991,
    "preview": "008b15bd5122e910e321316fae6122da9a46e10f svn.1636\n009bca8c4c596f01526bc8159c90786e7c011d67 svn.347\n00d699ef358745ba38f43"
  },
  {
    "path": ".mailmap",
    "chars": 12920,
    "preview": "Stephen Skory <s@skory.us> Stephen Skory <stephenskory@yahoo.com>\nStephen Skory <s@skory.us> \"Stephen Skory stephenskory"
  },
  {
    "path": ".pre-commit-config.yaml",
    "chars": 1420,
    "preview": "# pre-commit 1.1.0 is required for `exclude`\n# however `minimum_pre_commit_version` itself requires 1.15.0\nminimum_pre_c"
  },
  {
    "path": ".tours/particle-indexing.tour",
    "chars": 9442,
    "preview": "{\n  \"$schema\": \"https://aka.ms/codetour-schema\",\n  \"title\": \"particle indexing\",\n  \"steps\": [\n    {\n      \"title\": \"Intr"
  },
  {
    "path": "CITATION",
    "chars": 1965,
    "preview": "To cite yt in publications, please use:\n\nTurk, M. J., Smith, B. D., Oishi, J. S., et al. 2011, ApJS, 192, 9\n\nIn the body"
  },
  {
    "path": "CONTRIBUTING.rst",
    "chars": 36486,
    "preview": ".. This document is rendered in HTML with cross-reference links filled in at\n   https://yt-project.org/doc/developing/de"
  },
  {
    "path": "COPYING.txt",
    "chars": 3496,
    "preview": "===============================\n The yt project licensing terms\n===============================\n\nyt is licensed under th"
  },
  {
    "path": "CREDITS",
    "chars": 6955,
    "preview": "yt is a group effort.\n\nContributors:\n                Tom Abel (tabel@slac.stanford.edu)\n                Gabriel Altay (g"
  },
  {
    "path": "MANIFEST.in",
    "chars": 3418,
    "preview": "include README* CREDITS CITATION  setupext.py CONTRIBUTING.rst\ninclude yt/visualization/mapserver/html/map.js\ninclude yt"
  },
  {
    "path": "README.md",
    "chars": 7339,
    "preview": "# The yt Project\n\n[![PyPI](https://img.shields.io/pypi/v/yt)](https://pypi.org/project/yt)\n[![Supported Python Versions]"
  },
  {
    "path": "clean.sh",
    "chars": 42,
    "preview": "#!/usr/bin/env bash\ngit clean -f -d -x yt\n"
  },
  {
    "path": "conftest.py",
    "chars": 16914,
    "preview": "import os\nimport shutil\nimport sys\nimport tempfile\nfrom importlib.metadata import version\nfrom importlib.util import fin"
  },
  {
    "path": "doc/Makefile",
    "chars": 5159,
    "preview": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHINXBUILD "
  },
  {
    "path": "doc/README",
    "chars": 368,
    "preview": "This directory contains the uncompiled yt documentation.  It's written to be\nused with Sphinx, a tool designed for writi"
  },
  {
    "path": "doc/activate",
    "chars": 3018,
    "preview": "### Adapted from virtualenv's activate script\n\n# This file must be used with \"source bin/activate\" *from bash*\n# you can"
  },
  {
    "path": "doc/activate.csh",
    "chars": 1964,
    "preview": "# This file must be used with \"source bin/activate.csh\" *from csh*.\n# You cannot run it directly.\n# Created by Davide Di"
  },
  {
    "path": "doc/cheatsheet.tex",
    "chars": 19718,
    "preview": "\\documentclass[10pt,landscape]{article}\n\\usepackage{multicol}\n\\usepackage{calc}\n\\usepackage{ifthen}\n\\usepackage[landscap"
  },
  {
    "path": "doc/docstring_idioms.txt",
    "chars": 1687,
    "preview": "Idioms for Docstrings in yt\n===========================\n\nFor a full list of recognized constructs for marking up docstri"
  },
  {
    "path": "doc/extensions/README",
    "chars": 153,
    "preview": "This includes a version of the Numpy Documentation extension that has been\nslightly modified to emit extra TOC tree item"
  },
  {
    "path": "doc/extensions/config_help.py",
    "chars": 1045,
    "preview": "import re\nimport subprocess\n\nfrom docutils import statemachine\nfrom docutils.parsers.rst import Directive\n\n\ndef setup(ap"
  },
  {
    "path": "doc/extensions/pythonscript_sphinxext.py",
    "chars": 2769,
    "preview": "import errno\nimport glob\nimport os\nimport shutil\nimport subprocess\nimport tempfile\nimport time\nimport uuid\n\nfrom docutil"
  },
  {
    "path": "doc/extensions/yt_colormaps.py",
    "chars": 2045,
    "preview": "# This extension is quite simple:\n#  1. It accepts a script name\n#  2. This script is added to the document in a literal"
  },
  {
    "path": "doc/extensions/yt_cookbook.py",
    "chars": 2879,
    "preview": "# This extension is quite simple:\n#  1. It accepts a script name\n#  2. This script is added to the document in a literal"
  },
  {
    "path": "doc/extensions/yt_showfields.py",
    "chars": 825,
    "preview": "import subprocess\nimport sys\n\nfrom docutils.parsers.rst import Directive\n\n\ndef setup(app):\n    app.add_directive(\"yt_sho"
  },
  {
    "path": "doc/helper_scripts/code_support.py",
    "chars": 2610,
    "preview": "vals = [\n    \"FluidQuantities\",\n    \"Particles\",\n    \"Parameters\",\n    \"Units\",\n    \"ReadOnDemand\",\n    \"LoadRawData\",\n "
  },
  {
    "path": "doc/helper_scripts/parse_cb_list.py",
    "chars": 1381,
    "preview": "import inspect\nfrom textwrap import TextWrapper\n\nimport yt\n\nds = yt.load(\"RD0005-mine/RedshiftOutput0005\")\n\noutput = ope"
  },
  {
    "path": "doc/helper_scripts/parse_dq_list.py",
    "chars": 1043,
    "preview": "import inspect\nfrom textwrap import TextWrapper\n\nimport yt\n\nds = yt.load(\"RD0005-mine/RedshiftOutput0005\")\n\noutput = ope"
  },
  {
    "path": "doc/helper_scripts/parse_object_list.py",
    "chars": 1062,
    "preview": "import inspect\nfrom textwrap import TextWrapper\n\nimport yt\n\nds = yt.load(\"RD0005-mine/RedshiftOutput0005\")\n\noutput = ope"
  },
  {
    "path": "doc/helper_scripts/run_recipes.py",
    "chars": 2481,
    "preview": "#!/usr/bin/env python3\n\nimport glob\nimport os\nimport shutil\nimport subprocess\nimport sys\nimport tempfile\nimport tracebac"
  },
  {
    "path": "doc/helper_scripts/show_fields.py",
    "chars": 10132,
    "preview": "import inspect\n\nimport numpy as np\n\nimport yt.frontends as frontends_module\nfrom yt.config import ytcfg\nfrom yt.fields.d"
  },
  {
    "path": "doc/helper_scripts/split_auto.py",
    "chars": 1784,
    "preview": "import collections\n\ntemplates = dict(\n    autoclass=r\"\"\"\n%(name)s\n%(header)s\n\n.. autoclass:: %(name)s\n   :members:\n   :i"
  },
  {
    "path": "doc/helper_scripts/table.py",
    "chars": 3280,
    "preview": "contents = [\n    (\n        \"Getting Started\",\n        [\n            (\"welcome/index.html\", \"Welcome to yt!\", \"What's yt "
  },
  {
    "path": "doc/source/_static/custom.css",
    "chars": 1898,
    "preview": "blockquote {\n    font-size: 16px;\n    border-left: none;\n}\n\ndd {\n    margin-left: 30px;\n}\n\n/*\n\nCollapse the navbar when "
  },
  {
    "path": "doc/source/_templates/autosummary/class.rst",
    "chars": 392,
    "preview": "{% extends \"!autosummary/class.rst\" %}\n\n{% block methods %}\n{% if methods %}\n.. autosummary::\n   :toctree:\n   {% for ite"
  },
  {
    "path": "doc/source/_templates/layout.html",
    "chars": 1627,
    "preview": "{% extends '!layout.html' %}\n\n{%- block linktags %}\n    <link href=\"https://yt-project.org/doc/{{ pagename }}.html\" rel="
  },
  {
    "path": "doc/source/about/index.rst",
    "chars": 3454,
    "preview": ".. _aboutyt:\n\nAbout yt\n========\n\n.. contents::\n   :depth: 1\n   :local:\n   :backlinks: none\n\nWhat is yt?\n-----------\n\nyt "
  },
  {
    "path": "doc/source/analyzing/Particle_Trajectories.ipynb",
    "chars": 12700,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Particle Trajectories\"\n   ]\n  },\n"
  },
  {
    "path": "doc/source/analyzing/_static/axes.c",
    "chars": 529,
    "preview": "#include \"axes.h\"\n\nvoid calculate_axes(ParticleCollection *part,\n    double *ax1, double *ax2, double *ax3)\n{\n    int i;"
  },
  {
    "path": "doc/source/analyzing/_static/axes.h",
    "chars": 234,
    "preview": "typedef struct structParticleCollection {\n     long npart;\n     double *xpos;\n     double *ypos;\n     double *zpos;\n} Pa"
  },
  {
    "path": "doc/source/analyzing/_static/axes_calculator.pyx",
    "chars": 1072,
    "preview": "import numpy as np\ncimport numpy as np\n\n\ncdef extern from \"axes.h\":\n    ctypedef struct ParticleCollection:\n            "
  },
  {
    "path": "doc/source/analyzing/_static/axes_calculator_setup.txt",
    "chars": 599,
    "preview": "NAME = \"axes_calculator\"\nEXT_SOURCES = [\"axes.c\"]\nEXT_LIBRARIES = []\nEXT_LIBRARY_DIRS = []\nEXT_INCLUDE_DIRS = []\nDEFINES"
  },
  {
    "path": "doc/source/analyzing/astropy_integrations.rst",
    "chars": 2597,
    "preview": ".. _astropy-integrations:\n\nAstroPy Integrations\n====================\n\nyt enables a number of integrations with the Astro"
  },
  {
    "path": "doc/source/analyzing/domain_analysis/XrayEmissionFields.ipynb",
    "chars": 9231,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# X-ray Emission Fields\"\n   ]\n  },\n"
  },
  {
    "path": "doc/source/analyzing/domain_analysis/clump_finding.rst",
    "chars": 7750,
    "preview": ".. _clump_finding:\n\nClump Finding\n=============\n\nThe clump finder uses a contouring algorithm to identified topologicall"
  },
  {
    "path": "doc/source/analyzing/domain_analysis/cosmology_calculator.rst",
    "chars": 2927,
    "preview": ".. _cosmology-calculator:\n\nCosmology Calculator\n====================\n\nThe cosmology calculator can be used to calculate "
  },
  {
    "path": "doc/source/analyzing/domain_analysis/index.rst",
    "chars": 2233,
    "preview": ".. _domain-analysis:\n\nDomain-Specific Analysis\n========================\n\nyt powers a number modules that provide special"
  },
  {
    "path": "doc/source/analyzing/domain_analysis/xray_data_README.rst",
    "chars": 2201,
    "preview": ".. _xray_data_README:\n\nAuxiliary Data Files for use with yt's Photon Simulator\n========================================="
  },
  {
    "path": "doc/source/analyzing/fields.rst",
    "chars": 39656,
    "preview": ".. _fields:\n\nFields in yt\n============\n\nFields are spatially-dependent quantities associated with a parent dataset.\nExam"
  },
  {
    "path": "doc/source/analyzing/filtering.rst",
    "chars": 13063,
    "preview": ".. _filtering-data:\n\nFiltering your Dataset\n======================\n\nLarge datasets are oftentimes too overwhelming to de"
  },
  {
    "path": "doc/source/analyzing/generating_processed_data.rst",
    "chars": 14440,
    "preview": ".. _generating-processed-data:\n\nGenerating Processed Data\n=========================\n\nAlthough yt provides a number of bu"
  },
  {
    "path": "doc/source/analyzing/index.rst",
    "chars": 816,
    "preview": ".. _analyzing:\n\nGeneral Data Analysis\n=====================\n\nThis documentation describes much of the yt infrastructure "
  },
  {
    "path": "doc/source/analyzing/ionization_cube.py",
    "chars": 1461,
    "preview": "import time\n\nimport h5py\nimport numpy as np\n\nimport yt\nfrom yt.utilities.parallel_tools.parallel_analysis_interface impo"
  },
  {
    "path": "doc/source/analyzing/mesh_filter.ipynb",
    "chars": 7755,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Filtering Grid Data\"\n   ]\n  },\n  "
  },
  {
    "path": "doc/source/analyzing/objects.rst",
    "chars": 34924,
    "preview": ".. _Data-objects:\n\nData Objects\n============\n\nWhat are Data Objects in yt?\n----------------------------\n\nData objects (a"
  },
  {
    "path": "doc/source/analyzing/parallel_computation.rst",
    "chars": 29501,
    "preview": ".. _parallel-computation:\n\nParallel Computation With yt\n============================\n\nyt has been instrumented with the "
  },
  {
    "path": "doc/source/analyzing/particle_filter.ipynb",
    "chars": 5648,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Filtering Particle Data\\n\",\n    \""
  },
  {
    "path": "doc/source/analyzing/saving_data.rst",
    "chars": 7819,
    "preview": ".. _saving_data:\n\nSaving Reloadable Data\n======================\n\nMost of the data loaded into or generated with yt can b"
  },
  {
    "path": "doc/source/analyzing/time_series_analysis.rst",
    "chars": 7786,
    "preview": ".. _time-series-analysis:\n\nTime Series Analysis\n====================\n\nOften, one wants to analyze a continuous set of ou"
  },
  {
    "path": "doc/source/analyzing/units.rst",
    "chars": 13194,
    "preview": ".. _units:\n\nSymbolic Units\n==============\n\nThis section describes yt's symbolic unit capabilities. This is provided as\nq"
  },
  {
    "path": "doc/source/conf.py",
    "chars": 8780,
    "preview": "#\n# yt documentation build configuration file, created by\n# sphinx-quickstart on Tue Jan 11 09:46:53 2011.\n#\n# This file"
  },
  {
    "path": "doc/source/cookbook/amrkdtree_downsampling.py",
    "chars": 2614,
    "preview": "# Using AMRKDTree Homogenized Volumes to examine large datasets\n# at lower resolution.\n\n# In this example we will show h"
  },
  {
    "path": "doc/source/cookbook/annotate_timestamp_and_scale.py",
    "chars": 268,
    "preview": "import yt\n\nts = yt.load(\"enzo_tiny_cosmology/DD000?/DD000?\")\nfor ds in ts:\n    p = yt.ProjectionPlot(ds, \"z\", (\"gas\", \"d"
  },
  {
    "path": "doc/source/cookbook/annotations.py",
    "chars": 705,
    "preview": "import yt\n\nds = yt.load(\"enzo_tiny_cosmology/DD0046/DD0046\")\np = yt.ProjectionPlot(ds, \"z\", (\"gas\", \"density\"))\np.annota"
  },
  {
    "path": "doc/source/cookbook/average_value.py",
    "chars": 554,
    "preview": "import yt\n\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")  # load data\n\nfield = (\"gas\", \"temperature\")  # The fiel"
  },
  {
    "path": "doc/source/cookbook/calculating_information.rst",
    "chars": 3999,
    "preview": "Calculating Dataset Information\n-------------------------------\n\nThese recipes demonstrate methods of calculating quanti"
  },
  {
    "path": "doc/source/cookbook/camera_movement.py",
    "chars": 704,
    "preview": "import numpy as np\n\nimport yt\n\nds = yt.load(\"MOOSE_sample_data/out.e-s010\")\nsc = yt.create_scene(ds)\ncam = sc.camera\n\n# "
  },
  {
    "path": "doc/source/cookbook/changing_label_formats.py",
    "chars": 342,
    "preview": "import yt\n\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Set the format of the ionozation_label to be `plus_mi"
  },
  {
    "path": "doc/source/cookbook/colormaps.py",
    "chars": 616,
    "preview": "import yt\n\n# Load the dataset\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a projection and save it wi"
  },
  {
    "path": "doc/source/cookbook/complex_plots.rst",
    "chars": 16378,
    "preview": "A Few Complex Plots\n-------------------\n\nThe built-in plotting functionality covers the very simple use cases that are\nm"
  },
  {
    "path": "doc/source/cookbook/constructing_data_objects.rst",
    "chars": 1239,
    "preview": "Constructing Data Objects\n-------------------------\n\nThese recipes demonstrate a few uncommon methods of constructing da"
  },
  {
    "path": "doc/source/cookbook/contours_on_slice.py",
    "chars": 440,
    "preview": "import yt\n\n# first add density contours on a density slice\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")"
  },
  {
    "path": "doc/source/cookbook/count.sh",
    "chars": 125,
    "preview": "for fn in *.py\ndo\n    COUNT=`cat *.rst | grep --count ${fn}`\n    if [ $COUNT -lt 1 ]\n    then\n        echo ${fn}\n    fi\n"
  },
  {
    "path": "doc/source/cookbook/custom_camera_volume_rendering.py",
    "chars": 654,
    "preview": "import yt\n\n# Load the dataset\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\n# Create a volume rendering\nsc = yt.create_scene("
  },
  {
    "path": "doc/source/cookbook/custom_colorbar_tickmarks.ipynb",
    "chars": 2813,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Custom Colorbar Tickmarks\"\n   ]\n "
  },
  {
    "path": "doc/source/cookbook/custom_transfer_function_volume_rendering.py",
    "chars": 670,
    "preview": "import numpy as np\n\nimport yt\n\n# Load the dataset\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\n# Create a volume rendering\ns"
  },
  {
    "path": "doc/source/cookbook/customized_phase_plot.py",
    "chars": 732,
    "preview": "import yt\nimport yt.units as u\n\nds = yt.load(\"HiresIsolatedGalaxy/DD0044/DD0044\")\n\ncenter = [0.53, 0.53, 0.53]\nnormal = "
  },
  {
    "path": "doc/source/cookbook/customized_profile_plot.py",
    "chars": 723,
    "preview": "import yt\nimport yt.units as u\n\nds = yt.load(\"HiresIsolatedGalaxy/DD0044/DD0044\")\n\ncenter = [0.53, 0.53, 0.53]\nnormal = "
  },
  {
    "path": "doc/source/cookbook/derived_field.py",
    "chars": 928,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# You can create a derived field by"
  },
  {
    "path": "doc/source/cookbook/downsampling_amr.py",
    "chars": 821,
    "preview": "import yt\n\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# The maximum refinement level of this dataset is 8\npri"
  },
  {
    "path": "doc/source/cookbook/extract_fixed_resolution_data.py",
    "chars": 1068,
    "preview": "# For this example we will use h5py to write to our output file.\nimport h5py\n\nimport yt\n\nds = yt.load(\"IsolatedGalaxy/ga"
  },
  {
    "path": "doc/source/cookbook/find_clumps.py",
    "chars": 2478,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.data_objects.level_sets.api import Clump, find_clumps\n\nds = yt.load(\"IsolatedGalax"
  },
  {
    "path": "doc/source/cookbook/fits_radio_cubes.ipynb",
    "chars": 12670,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Analyzing FITS Radio Cubes\"\n   ]\n"
  },
  {
    "path": "doc/source/cookbook/fits_xray_images.ipynb",
    "chars": 13887,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# X-ray FITS Images\"\n   ]\n  },\n  {\n"
  },
  {
    "path": "doc/source/cookbook/geographic_xforms_and_projections.ipynb",
    "chars": 14988,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Geographic Transforms and Project"
  },
  {
    "path": "doc/source/cookbook/global_phase_plots.py",
    "chars": 402,
    "preview": "import yt\n\n# load the dataset\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# This is an object that describes t"
  },
  {
    "path": "doc/source/cookbook/hse_field.py",
    "chars": 1541,
    "preview": "import numpy as np\n\nimport yt\n\n# Open a dataset from when there's a lot of sloshing going on.\n\nds = yt.load(\"GasSloshing"
  },
  {
    "path": "doc/source/cookbook/image_background_colors.py",
    "chars": 1227,
    "preview": "import yt\n\n# This shows how to save ImageArray objects, such as those returned from\n# volume renderings, to pngs with va"
  },
  {
    "path": "doc/source/cookbook/image_resolution.py",
    "chars": 2641,
    "preview": "import numpy as np\n\nimport yt\n\n# Load the dataset.  We'll work with a some Gadget data to illustrate all\n# the different"
  },
  {
    "path": "doc/source/cookbook/index.rst",
    "chars": 1427,
    "preview": ".. _cookbook:\n\nThe Cookbook\n============\n\nyt provides a great deal of functionality to the user, but sometimes it can\nbe"
  },
  {
    "path": "doc/source/cookbook/matplotlib-animation.py",
    "chars": 697,
    "preview": "from matplotlib import rc_context\nfrom matplotlib.animation import FuncAnimation\n\nimport yt\n\nts = yt.load(\"GasSloshingLo"
  },
  {
    "path": "doc/source/cookbook/multi_plot_3x2_FRB.py",
    "chars": 2559,
    "preview": "import numpy as np\nfrom matplotlib.colors import LogNorm\n\nimport yt\nfrom yt.visualization.api import get_multi_plot\n\nfn "
  },
  {
    "path": "doc/source/cookbook/multi_plot_slice_and_proj.py",
    "chars": 2965,
    "preview": "import numpy as np\nfrom matplotlib.colors import LogNorm\n\nimport yt\nfrom yt.visualization.base_plot_types import get_mul"
  },
  {
    "path": "doc/source/cookbook/multi_width_image.py",
    "chars": 918,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a slice plot for the datas"
  },
  {
    "path": "doc/source/cookbook/multiplot_2x2.py",
    "chars": 1521,
    "preview": "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\nimport yt\n\nfn = \"IsolatedGalaxy/galaxy0030"
  },
  {
    "path": "doc/source/cookbook/multiplot_2x2_coordaxes_slice.py",
    "chars": 1796,
    "preview": "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\nimport yt\n\nfn = \"IsolatedGalaxy/galaxy0030"
  },
  {
    "path": "doc/source/cookbook/multiplot_2x2_time_series.py",
    "chars": 1395,
    "preview": "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\nimport yt\n\nfns = [\n    \"Enzo_64/DD0005/dat"
  },
  {
    "path": "doc/source/cookbook/multiplot_export_to_mpl.py",
    "chars": 509,
    "preview": "import yt\n\nds = yt.load_sample(\"IsolatedGalaxy\")\n\nfields = [\n    (\"gas\", \"density\"),\n    (\"gas\", \"velocity_x\"),\n    (\"ga"
  },
  {
    "path": "doc/source/cookbook/multiplot_phaseplot.py",
    "chars": 1450,
    "preview": "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\nimport yt\n\nfig = plt.figure()\n\n# See http:"
  },
  {
    "path": "doc/source/cookbook/notebook_tutorial.rst",
    "chars": 1376,
    "preview": ".. _notebook-tutorial:\n\nNotebook Tutorial\n-----------------\n\nThe IPython notebook is a powerful system for literate codi"
  },
  {
    "path": "doc/source/cookbook/offaxis_projection.py",
    "chars": 1293,
    "preview": "import numpy as np\n\nimport yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Choose a cent"
  },
  {
    "path": "doc/source/cookbook/offaxis_projection_colorbar.py",
    "chars": 1696,
    "preview": "import yt\n\nfn = \"IsolatedGalaxy/galaxy0030/galaxy0030\"  # dataset to load\n\nds = yt.load(fn)  # load data\n\n# Now we need "
  },
  {
    "path": "doc/source/cookbook/opaque_rendering.py",
    "chars": 2076,
    "preview": "import numpy as np\n\nimport yt\n\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# We start by building a default vo"
  },
  {
    "path": "doc/source/cookbook/overplot_grids.py",
    "chars": 455,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\n# Make a density projection.\np = yt.ProjectionPl"
  },
  {
    "path": "doc/source/cookbook/overplot_particles.py",
    "chars": 643,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\n# Make a density projection centered on the 'm'a"
  },
  {
    "path": "doc/source/cookbook/particle_filter.py",
    "chars": 2366,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.data_objects.particle_filters import add_particle_filter\n\n\n# Define filter functio"
  },
  {
    "path": "doc/source/cookbook/particle_filter_sfr.py",
    "chars": 1071,
    "preview": "import numpy as np\nfrom matplotlib import pyplot as plt\n\nimport yt\nfrom yt.data_objects.particle_filters import add_part"
  },
  {
    "path": "doc/source/cookbook/particle_one_color_plot.py",
    "chars": 279,
    "preview": "import yt\n\n# load the dataset\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# create our plot\np = yt.ParticlePlo"
  },
  {
    "path": "doc/source/cookbook/particle_xvz_plot.py",
    "chars": 438,
    "preview": "import yt\n\n# load the dataset\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# create our plot\np = yt.ParticlePlo"
  },
  {
    "path": "doc/source/cookbook/particle_xy_plot.py",
    "chars": 380,
    "preview": "import yt\n\n# load the dataset\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# create our plot\np = yt.ParticlePlo"
  },
  {
    "path": "doc/source/cookbook/power_spectrum_example.py",
    "chars": 3012,
    "preview": "import matplotlib.pyplot as plt\nimport numpy as np\n\nimport yt\n\n\"\"\"\nMake a turbulent KE power spectrum.  Since we are str"
  },
  {
    "path": "doc/source/cookbook/profile_with_standard_deviation.py",
    "chars": 1098,
    "preview": "import matplotlib.pyplot as plt\n\nimport yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# "
  },
  {
    "path": "doc/source/cookbook/rad_velocity.py",
    "chars": 1292,
    "preview": "import matplotlib.pyplot as plt\n\nimport yt\n\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\n# Get the fir"
  },
  {
    "path": "doc/source/cookbook/radial_profile_styles.py",
    "chars": 1270,
    "preview": "import matplotlib.pyplot as plt\n\nimport yt\n\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\n# Get a spher"
  },
  {
    "path": "doc/source/cookbook/render_two_fields.py",
    "chars": 715,
    "preview": "import yt\nfrom yt.visualization.volume_rendering.api import Scene, create_volume_source\n\nfilePath = \"Sedov_3d/sedov_hdf5"
  },
  {
    "path": "doc/source/cookbook/render_two_fields_tf.py",
    "chars": 1077,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.visualization.volume_rendering.api import Scene, create_volume_source\n\nds = yt.loa"
  },
  {
    "path": "doc/source/cookbook/rendering_with_box_and_grids.py",
    "chars": 584,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0043/data0043\")\nsc = yt.create_scene(ds, (\"gas\", \"density\"))\n\n# Y"
  },
  {
    "path": "doc/source/cookbook/show_hide_axes_colorbar.py",
    "chars": 319,
    "preview": "import yt\n\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\nslc = yt.SlicePlot(ds, \"x\", (\"gas\", \"density\"))\nslc.save"
  },
  {
    "path": "doc/source/cookbook/sigma_clip.py",
    "chars": 617,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"enzo_tiny_cosmology/RD0009/RD0009\")\n\n# Create a volume rendering, which wil"
  },
  {
    "path": "doc/source/cookbook/simple_1d_line_plot.py",
    "chars": 436,
    "preview": "import yt\n\n# Load the dataset\nds = yt.load(\"SecondOrderTris/RZ_p_no_parts_do_nothing_bcs_cone_out.e\", step=-1)\n\n# Create"
  },
  {
    "path": "doc/source/cookbook/simple_contour_in_slice.py",
    "chars": 937,
    "preview": "import yt\n\n# Load the data file.\nds = yt.load(\"Sedov_3d/sedov_hdf5_chk_0002\")\n\n# Make a traditional slice plot.\nsp = yt."
  },
  {
    "path": "doc/source/cookbook/simple_off_axis_projection.py",
    "chars": 579,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a 15 kpc radius sphere, ce"
  },
  {
    "path": "doc/source/cookbook/simple_off_axis_slice.py",
    "chars": 548,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a 15 kpc radius sphere, ce"
  },
  {
    "path": "doc/source/cookbook/simple_pdf.py",
    "chars": 568,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GalaxyClusterMerger/fiducial_1to3_b0.273d_hdf5_plt_cnt_0175\")\n\n# Create a d"
  },
  {
    "path": "doc/source/cookbook/simple_phase.py",
    "chars": 701,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a sphere of radius 100 kpc"
  },
  {
    "path": "doc/source/cookbook/simple_plots.rst",
    "chars": 9581,
    "preview": "Making Simple Plots\n-------------------\n\nOne of the easiest ways to interact with yt is by creating simple\nvisualization"
  },
  {
    "path": "doc/source/cookbook/simple_profile.py",
    "chars": 563,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a 1D profile within a sphe"
  },
  {
    "path": "doc/source/cookbook/simple_projection.py",
    "chars": 342,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GalaxyClusterMerger/fiducial_1to3_b0.273d_hdf5_plt_cnt_0175\")\n\n# Create pro"
  },
  {
    "path": "doc/source/cookbook/simple_projection_methods.py",
    "chars": 340,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GalaxyClusterMerger/fiducial_1to3_b0.273d_hdf5_plt_cnt_0175\")\n\n# Create pro"
  },
  {
    "path": "doc/source/cookbook/simple_projection_stddev.py",
    "chars": 396,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GalaxyClusterMerger/fiducial_1to3_b0.273d_hdf5_plt_cnt_0175\")\n\n# Create den"
  },
  {
    "path": "doc/source/cookbook/simple_projection_weighted.py",
    "chars": 321,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GalaxyClusterMerger/fiducial_1to3_b0.273d_hdf5_plt_cnt_0175\")\n\n# Create den"
  },
  {
    "path": "doc/source/cookbook/simple_radial_profile.py",
    "chars": 588,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"IsolatedGalaxy/galaxy0030/galaxy0030\")\n\n# Create a sphere of radius 100 kpc"
  },
  {
    "path": "doc/source/cookbook/simple_slice.py",
    "chars": 354,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\n# Create gas density slice"
  },
  {
    "path": "doc/source/cookbook/simple_slice_matplotlib_example.py",
    "chars": 1059,
    "preview": "import numpy as np\n\nimport yt\n\n# Load the dataset.\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\n# Crea"
  },
  {
    "path": "doc/source/cookbook/simple_slice_with_multiple_fields.py",
    "chars": 308,
    "preview": "import yt\n\n# Load the dataset\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\n# Create gas density slices"
  },
  {
    "path": "doc/source/cookbook/simple_volume_rendering.py",
    "chars": 353,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\n# Create a volume rendering, which will determin"
  },
  {
    "path": "doc/source/cookbook/simulation_analysis.py",
    "chars": 1284,
    "preview": "import yt\n\nyt.enable_parallelism()\n\n# Enable parallelism in the script (assuming it was called with\n# `mpirun -np <n_pro"
  },
  {
    "path": "doc/source/cookbook/streamlines.py",
    "chars": 1250,
    "preview": "import matplotlib.pyplot as plt\nimport numpy as np\nfrom mpl_toolkits.mplot3d import Axes3D\n\nimport yt\nfrom yt.units impo"
  },
  {
    "path": "doc/source/cookbook/streamlines_isocontour.py",
    "chars": 2490,
    "preview": "import matplotlib.pyplot as plt\nimport numpy as np\nfrom mpl_toolkits.mplot3d import Axes3D\nfrom mpl_toolkits.mplot3d.art"
  },
  {
    "path": "doc/source/cookbook/sum_mass_in_sphere.py",
    "chars": 644,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0029/data0029\")\n\n# Create a 1 Mpc radius sphere, centered on the "
  },
  {
    "path": "doc/source/cookbook/surface_plot.py",
    "chars": 1506,
    "preview": "import matplotlib.pyplot as plt\nimport numpy as np\nfrom mpl_toolkits.mplot3d import Axes3D  # noqa: F401\nfrom mpl_toolki"
  },
  {
    "path": "doc/source/cookbook/tests/test_cookbook.py",
    "chars": 1204,
    "preview": "\"\"\"Module for cookbook testing\n\n\nThis test should be run from main yt directory.\n\nExample:\n\n      $ sed -e '/where/d' -i"
  },
  {
    "path": "doc/source/cookbook/thin_slice_projection.py",
    "chars": 1131,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"Enzo_64/DD0030/data0030\")\n\n# Make a projection that is the full width of th"
  },
  {
    "path": "doc/source/cookbook/time_series.py",
    "chars": 1700,
    "preview": "import matplotlib.pyplot as plt\nimport numpy as np\n\nimport yt\n\n# Enable parallelism in the script (assuming it was calle"
  },
  {
    "path": "doc/source/cookbook/time_series_profiles.py",
    "chars": 876,
    "preview": "import yt\n\n# Create a time-series object.\nsim = yt.load_simulation(\"enzo_tiny_cosmology/32Mpc_32.enzo\", \"Enzo\")\nsim.get_"
  },
  {
    "path": "doc/source/cookbook/tipsy_and_yt.ipynb",
    "chars": 5003,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Tipsy Data\"\n   ]\n  },\n  {"
  },
  {
    "path": "doc/source/cookbook/various_lens.py",
    "chars": 4682,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.visualization.volume_rendering.api import Scene, create_volume_source\n\nfield = (\"g"
  },
  {
    "path": "doc/source/cookbook/velocity_vectors_on_slice.py",
    "chars": 223,
    "preview": "import yt\n\n# Load the dataset.\nds = yt.load(\"GasSloshing/sloshing_nomag2_hdf5_plt_cnt_0150\")\n\np = yt.SlicePlot(ds, \"x\", "
  },
  {
    "path": "doc/source/cookbook/vol-annotated.py",
    "chars": 954,
    "preview": "import yt\n\nds = yt.load(\"Enzo_64/DD0043/data0043\")\n\nsc = yt.create_scene(ds, lens_type=\"perspective\")\n\nsource = sc[0]\n\ns"
  },
  {
    "path": "doc/source/cookbook/vol-lines.py",
    "chars": 469,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.units import kpc\nfrom yt.visualization.volume_rendering.api import LineSource\n\nds "
  },
  {
    "path": "doc/source/cookbook/vol-points.py",
    "chars": 608,
    "preview": "import numpy as np\n\nimport yt\nfrom yt.units import kpc\nfrom yt.visualization.volume_rendering.api import PointSource\n\nds"
  },
  {
    "path": "doc/source/cookbook/yt_gadget_analysis.ipynb",
    "chars": 6315,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Gadget data\"\n   ]\n  },\n  "
  },
  {
    "path": "doc/source/cookbook/yt_gadget_owls_analysis.ipynb",
    "chars": 5255,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Gadget OWLS Data\"\n   ]\n  "
  },
  {
    "path": "doc/source/cookbook/zoomin_frames.py",
    "chars": 1245,
    "preview": "import numpy as np\n\nimport yt\n\n# load data\nfn = \"IsolatedGalaxy/galaxy0030/galaxy0030\"\nds = yt.load(fn)\n\n# This is the n"
  },
  {
    "path": "doc/source/developing/building_the_docs.rst",
    "chars": 9191,
    "preview": ".. _documentation:\n\nDocumentation\n=============\n\n.. _writing_documentation:\n\nHow to Write Documentation\n----------------"
  },
  {
    "path": "doc/source/developing/creating_datatypes.rst",
    "chars": 2636,
    "preview": ".. _creating-objects:\n\nCreating Data Objects\n=====================\n\nThe three-dimensional datatypes in yt follow a fairl"
  },
  {
    "path": "doc/source/developing/creating_derived_fields.rst",
    "chars": 19048,
    "preview": ".. _creating-derived-fields:\n\nCreating Derived Fields\n=======================\n\nOne of the more powerful means of extendi"
  },
  {
    "path": "doc/source/developing/creating_frontend.rst",
    "chars": 16543,
    "preview": ".. _creating_frontend:\n\nCreating A New Code Frontend\n============================\n\nyt is designed to support analysis an"
  },
  {
    "path": "doc/source/developing/debugdrive.rst",
    "chars": 4386,
    "preview": ".. _debug-drive:\n\nDebugging yt\n============\n\nThere are several different convenience functions that allow you to control"
  },
  {
    "path": "doc/source/developing/deprecating_features.rst",
    "chars": 4349,
    "preview": ".. how-to-deprecate::\n\nHow to deprecate a feature\n--------------------------\n\nSince the 4.0.0 release, deprecation happe"
  },
  {
    "path": "doc/source/developing/developing.rst",
    "chars": 39,
    "preview": ".. include:: ../../../CONTRIBUTING.rst\n"
  },
  {
    "path": "doc/source/developing/extensions.rst",
    "chars": 3217,
    "preview": ".. _extensions:\n\nExtension Packages\n==================\n\n.. note:: For some additional discussion, see `YTEP-0029\n       "
  },
  {
    "path": "doc/source/developing/external_analysis.rst",
    "chars": 15666,
    "preview": ".. _external-analysis-tools:\n\nUsing yt with External Analysis Tools\n=====================================\n\nyt can be use"
  },
  {
    "path": "doc/source/developing/index.rst",
    "chars": 930,
    "preview": "Developing in yt\n================\n\nyt is an open-source project with a community of contributing scientists.\nWhile you c"
  },
  {
    "path": "doc/source/developing/releasing.rst",
    "chars": 13700,
    "preview": "How to Do a Release\n-------------------\n\nPeriodically, the yt development community issues new releases. yt loosely foll"
  },
  {
    "path": "doc/source/developing/testing.rst",
    "chars": 25649,
    "preview": ".. _testing:\n\nTesting\n=======\n\nyt includes a testing suite that one can run on the code base to ensure that no\nbreaks in"
  },
  {
    "path": "doc/source/examining/Loading_Data_via_Functions.ipynb",
    "chars": 11052,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"35cb9c22-04eb-476c-a7b6-afd27690be4d\",\n   \"metadata\": {},\n   \"so"
  },
  {
    "path": "doc/source/examining/Loading_Generic_Array_Data.ipynb",
    "chars": 27055,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Generic Array Data\\n\",\n  "
  },
  {
    "path": "doc/source/examining/Loading_Generic_Particle_Data.ipynb",
    "chars": 7842,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Generic Particle Data\\n\","
  },
  {
    "path": "doc/source/examining/Loading_Spherical_Data.ipynb",
    "chars": 7425,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Loading Spherical Data\\n\",\n    \"\\"
  },
  {
    "path": "doc/source/examining/index.rst",
    "chars": 758,
    "preview": ".. _examining-data:\n\nLoading and Examining Data\n==========================\n\nNominally, one should just be able to run ``"
  },
  {
    "path": "doc/source/examining/loading_data.rst",
    "chars": 127233,
    "preview": ".. _loading-data:\n\nLoading Data\n============\n\nThis section contains information on how to load data into yt, as well as\n"
  },
  {
    "path": "doc/source/examining/low_level_inspection.rst",
    "chars": 12298,
    "preview": ".. _low-level-data-inspection:\n\nLow-Level Data Inspection: Accessing Raw Data\n=========================================="
  },
  {
    "path": "doc/source/faq/index.rst",
    "chars": 16375,
    "preview": ".. _faq:\n\n\nFrequently Asked Questions\n==========================\n\n.. contents::\n   :depth: 2\n   :local:\n   :backlinks: n"
  },
  {
    "path": "doc/source/help/index.rst",
    "chars": 7715,
    "preview": ".. _asking-for-help:\n\nWhat to do if you run into problems\n===================================\n\nIf you run into problems "
  },
  {
    "path": "doc/source/index.rst",
    "chars": 5216,
    "preview": "yt Overview\n===========\n\nyt is a community-developed analysis and visualization toolkit for\nvolumetric data.  yt has bee"
  },
  {
    "path": "doc/source/installing.rst",
    "chars": 9069,
    "preview": ".. _installing-yt:\n\nGetting and Installing yt\n=========================\n\n.. contents::\n   :depth: 2\n   :local:\n   :backl"
  },
  {
    "path": "doc/source/intro/index.rst",
    "chars": 8136,
    "preview": "Introduction to yt\n==================\n\nHerein, we present a brief introduction to yt's capabilities and\ninfrastructure w"
  },
  {
    "path": "doc/source/quickstart/1)_Introduction.ipynb",
    "chars": 3083,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Welcome to the yt quickstart!\\n\","
  },
  {
    "path": "doc/source/quickstart/2)_Data_Inspection.ipynb",
    "chars": 11463,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Starting Out and Loading Data\\n\","
  },
  {
    "path": "doc/source/quickstart/3)_Simple_Visualization.ipynb",
    "chars": 8068,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Simple Visualizations of Data\\n\","
  },
  {
    "path": "doc/source/quickstart/4)_Data_Objects_and_Time_Series.ipynb",
    "chars": 12312,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Data Objects and Time Series Data"
  },
  {
    "path": "doc/source/quickstart/5)_Derived_Fields_and_Profiles.ipynb",
    "chars": 9849,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Derived Fields and Profiles\\n\",\n "
  },
  {
    "path": "doc/source/quickstart/6)_Volume_Rendering.ipynb",
    "chars": 3588,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# A Brief Demo of Volume Rendering\\"
  },
  {
    "path": "doc/source/quickstart/index.rst",
    "chars": 2819,
    "preview": ".. _quickstart:\n\nyt Quickstart\n=============\n\nThe quickstart is a series of worked examples of how to use much of the\nfu"
  }
]

// ... and 1019 more files (download for full content)

About this extraction

This page contains the full source code of the yt-project/yt GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1219 files (9.3 MB), approximately 2.5M tokens, and a symbol index with 7158 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!