wind_workflow_manager
¶
Classes:
-
WindWorkflowManager–Helps managing the logical workflow for simulations relating to wind turbines.
WindWorkflowManager
¶
WindWorkflowManager(
placements,
synthetic_power_curve_cut_out=25,
synthetic_power_curve_rounding=1,
)
Bases: WorkflowManager
Helps managing the logical workflow for simulations relating to wind turbines.
Initialization:
Parameters:
-
(placements¶DataFrame) –A Pandas DataFrame describing the wind turbine placements to be simulated. It must include the following columns: 'geom' or 'lat' and 'lon' 'hub_height' 'capacity' 'rotor_diam' or 'powerCurve'
-
(synthetic_power_curve_cut_out¶int, default:25) –cut out wind speed, by default 25
-
(synthetic_power_curve_rounding¶int, default:1) –rounding floor, by default 1
Returns:
-
numpy array–A corrected power curve.
Methods:
-
adjust_variable_to_long_run_average–Adjusts the average mean of the specified variable to a known long-run-average
-
apply_air_density_correction_to_wind_speeds–Applies air density corrections to the wind speeds at the hub height.
-
apply_availability_factor–Applies a relative reduction factor to the energy output (capacity factor) time series
-
apply_loss_factor–Applies a loss factor onto a specified variable
-
apply_wake_correction_of_wind_speeds–Applies a wind-speed dependent reduction factor to the wind speeds at elevated height,
-
consider_boundary_height–Corrects the given target heights for locations by planetary boundary
-
convolute_power_curves–Convolutes a turbine power curve from a normal distribution function with wind-speed-dependent standard deviation.
-
estimate_roughness_from_land_cover–Estimates the 'roughness' value column in the placements DataFrame from a given land cover classification raster file.
-
extract_raster_values_at_placements–Extracts pixel values at each of the configured placements from the specified raster file
-
get_scalar_values_from_raster–Auxiliary function to extract raster values with NaN fallback options.
-
interpolate_raster_vals_to_hub_height–Given several raster datasets which correspond to a desired value (e.g. average wind speed) at
-
logarithmic_projection_of_wind_speeds_to_hub_height–Projects the wind speed values to the hub height.
-
project_windspeeds_to_hub_height–Projects wind speeds to hub heights for a given projection/scaling method.
-
read–Reads the specified variables from the NetCDF4-style weather dataset, and then extracts
-
register_workflow_parameter–Add a parameter to the WorkflowManager which will be included in the output XArray dataset
-
set_correction_factors–Gets the correction factors if necessary and sets them as class attribute.
-
set_roughness–Sets the 'roughness' column in the placements DataFrame.
-
set_time_index–Sets the time index of the WorkflowManager
-
simulate–Applies the invoking power curve to the given wind speeds.
-
spatial_disaggregation–[summary]
-
to_netcdf–Saves an XArray dataset to netCDF4 format
-
to_xarray–Generates an XArray dataset from the data currently contained in the WorkflowManager
-
wind_shear_projection_of_wind_speeds_to_hub_height–Projects the wind speed values to the hub height.
Source code in reskit/wind/workflows/wind_workflow_manager.py
adjust_variable_to_long_run_average
¶
adjust_variable_to_long_run_average(
variable: str,
source_long_run_average: Union[str, float, ndarray],
real_long_run_average: Union[str, float, ndarray],
real_lra_scaling: float = 1,
spatial_interpolation: str = "linear-spline",
nodata_fallback: str = "nan",
nodata_fallback_scaling: float = 1,
allow_nans: bool = True,
)
Adjusts the average mean of the specified variable to a known long-run-average
Note:
uses the equation: variable[t] = variable[t] * real_long_run_average / source_long_run_average
Parameters:
-
(variable¶str) –The variable to be adjusted
-
(source_long_run_average¶Union[str, float, ndarray]) –The variable's native long run average (the average in the weather file) - If a string is given, it is expected to be a path to a raster file which can be used to look up the average values from using the coordinates in
.placements- If a numpy ndarray (or derivative) is given, the shape must be one of (time, placements) or at least (placements) -
(real_long_run_average¶Union[str, float, ndarray]) –The variables 'true' long run average - If a string is given, it is expected to be a path to a raster file which can be used to look up the average values from using the coordinates in
.placements- If a numpy ndarray (or derivative) is given, the shape must be one of (time, placements) or at least (placements) -
(real_lra_scaling¶float, default:1) –An optional scaling factor to apply to the values derived from
real_long_run_average. - This is primarily useful whenreal_long_run_averageis a path to a raster file - By default 1 -
(spatial_interpolation¶str, default:'linear-spline') –When either
source_long_run_averageorreal_long_run_averageare a path to a raster file, this input specifies which interpolation algorithm should be used - Options are: "near", "linear-spline", "cubic-spline", "average" - By default "linear-spline" - See for more info: geokit.raster.interpolateValues -
(nodata_fallback¶str, default:'nan') –When real_long_run_average has no data, one can decide between different fallback options, by default np.nan: - np.nan or None : return np.nan for missing values in real_long_run_average - float : Apply this float value as a scaling factor for all no-data locations only: source_long_run_average * nodata_fallback. NOTE: A value of 1.0 will return the source lra value in case of missing real lra values (no additional nodata_fallback_scaling applied). - str : Will be interpreted as a filepath to a raster with alternative real_long_run_average values, scaled by nodata_fallback_scaling. - callable : any callable method taking the arguments (all iterables): 'locs' and 'source_long_run_average_value' (the locations as gk.geom.point objects and original value from source data). The output values will be considered as the new real_long_run_average for missing locations only (absolute data, no additional nodata_fallback_scaling applied).
NOTE: np.nan will also be returned in case that the nodata fallback does not yield values either.
-
(nodata_fallback_scaling¶float, default:1) –An optional scaling factor to apply to the values derived from
nodata_fallback. - This is primarily useful whennodata_fallbackis a path to a raster file - By default 1 -
(allow_nans¶boolean, default:True) –If True, NaN values may remain after scaling, else an error will raised. By default True.
Returns:
-
WorkflowManager–Returns the invoking WorkflowManager (for chaining)
Source code in reskit/workflow_manager.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | |
apply_air_density_correction_to_wind_speeds
¶
Applies air density corrections to the wind speeds at the hub height.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
apply_availability_factor
¶
apply_availability_factor(availability_factor)
Applies a relative reduction factor to the energy output (capacity factor) time series to statistically account for non-availabilities.
Parameters:
-
(availability_factor¶float) –Factor that will be applied to the output time series.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
apply_loss_factor
¶
apply_loss_factor(
loss: Union[float, ndarray, FunctionType],
variables: Union[str, List[str]] = ["capacity_factor"],
)
Applies a loss factor onto a specified variable
Parameters:
-
(loss¶Union[float, ndarray, FunctionType]) –The loss factor(s) to be applied - If a float or a numpy ndarray is given, then the following operation is performed:
variable = variable * (1 - loss) - If a function is given, then the following operation is performed: variable = variable * (1 - loss(variable) ) - If a numpy ndarray is given, it must be broadcastable to the variable's shape in
.sim_data -
(variables¶Union[str, List[str]], default:['capacity_factor']) –The variable or variables to apply the loss factor to - By default ["capacity_factor"]
Returns:
-
WorkflowManager–Returns the invoking WorkflowManager (for chaining)
Source code in reskit/workflow_manager.py
apply_wake_correction_of_wind_speeds
¶
apply_wake_correction_of_wind_speeds(
wake_curve="dena_mean",
)
Applies a wind-speed dependent reduction factor to the wind speeds at elevated height, based on
Parameters:
-
(wake_curve¶str, default:'dena_mean') –string value to describe the wake reduction method. None will cause no reduction. Location-sepcific values can also be given in a 'wake_curve' column of the placements dataframe, the latter will be overridden by the 'wake_curve' argument. By default "dena_mean". Choose from (see more information here under wind_efficiency_curve_name[1]): * "dena_mean", * "knorr_mean", * "dena_extreme1", * "dena_extreme2", * "knorr_extreme1", * "knorr_extreme2", * "knorr_extreme3",
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
consider_boundary_height
¶
Corrects the given target heights for locations by planetary boundary layer (PBL) effects, by limiting the target height either to the PBL height when elevated (starting) height < PBL < target height or avoiding scaling altogether when PBL <= elevated (startig) height (by setting target height to elevated starting height).
Return
numpy array The adapted target heights.
Source code in reskit/wind/workflows/wind_workflow_manager.py
convolute_power_curves
¶
Convolutes a turbine power curve from a normal distribution function with wind-speed-dependent standard deviation.
Parameters:
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
estimate_roughness_from_land_cover
¶
estimate_roughness_from_land_cover(path, source_type)
Estimates the 'roughness' value column in the placements DataFrame from a given land cover classification raster file.
Parameters:
-
(path¶str) –path to the raster file
-
(source_type¶str) –string value to get the corresponding key-value pairs. Accepted types 'clc', 'clc-code', 'globCover', 'modis', or 'cci', by default 'clc'
See Also
roughness_from_land_cover_classification
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
extract_raster_values_at_placements
¶
Extracts pixel values at each of the configured placements from the specified raster file
get_scalar_values_from_raster
¶
Auxiliary function to extract raster values with NaN fallback options.
Source code in reskit/workflow_manager.py
interpolate_raster_vals_to_hub_height
¶
interpolate_raster_vals_to_hub_height(
name: str, height_to_raster_dict: dict, **kwargs
)
Given several raster datasets which correspond to a desired value (e.g. average wind speed) at different altitudes, this function will read values for each placement location from each of these datasets, and will then linearly interpolate them to the hub height of each turbine
Parameters:
-
(name¶str) –The name of the variable to create (will be placed in the
self.placementsmember) -
(height_to_raster_dict¶dict) –A dictionary which maps altitude values to raster datasets
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
logarithmic_projection_of_wind_speeds_to_hub_height
¶
Projects the wind speed values to the hub height.
consider_boundary_layer_height : bool, optional If True, the wind speed will be scaled only to max. the boundary layer height. By default False.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
project_windspeeds_to_hub_height
¶
project_windspeeds_to_hub_height(
height_scaling_method,
height_scaling_data,
consider_boundary_layer_height=True,
allow_extrapolation=True,
)
Projects wind speeds to hub heights for a given projection/scaling method.
Parameters:
-
(height_scaling_method¶tuple | list | None) –The method to project the windspeeds from the default height (eg. 100m) to hub height (possibly affected by the planetary boundary layer height). First tuple/list entry (str) describes the general approach (e.g. logarithmic scaling or based on long-run-average windspeed interpolation). Options are: ("lra", [vertical method]) : Calculation based on the long-run average wind speeds (e.g. GWA) of the 2 nearest available height levels. [vertical method] (str) describes the form of interpolation, e.g. "linear". ("log", [landcover]) : Logarithmic height scaling based on surface roughness defined via a mapping of the land cover category. [landcover] (str) defines the landcover data used for roughness mapping. All landcover types accepted as land_cover_type in logarithmic_profile.roughness_from_land_cover_classification() are allowed.. None : No height scaling will be applied when None. By default ("lra", "linear").
-
(height_scaling_data¶(str, dict)) –The data required for the selected height_scaling_method (see above). The expected data formats are, depending on height_scaling_method: ("log", [landcover]) : str Path to the respective "landcover" raster file. ("lra", [vertical method]) : {int : str} Dict with heights as keys and paths to the LRA-windspeeds at the respective heights as values. Must contain at least one higher and one lower height than the reference height of real_lra_ws_path.
-
(consider_boundary_layer_height¶bool, default:True) –Corrects the given hub heights for locations by planetary boundary layer (PBL) effects if True, see consider_boundary_height() for details. By default True.
-
(allow_extrapolation¶bool, default:True) –Takes effect only in interpolating methods, will then allow to extrapolate beyond the min/max height range, by default True.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | |
read
¶
read(
variables: Union[str, List[str]],
source_type: str,
source: str,
set_time_index: bool = False,
spatial_interpolation_mode: str = "bilinear",
temporal_reindex_method: str = "nearest",
time_index_from=None,
**kwargs,
)
Reads the specified variables from the NetCDF4-style weather dataset, and then extracts
those variables for each of the coordinates configured in .placements. The resulting
data is then available in .sim_data.
Parameters:
-
(variables¶str or list of strings) –The variables (or variables) to be read from the specified source - If a path to a weather source is given, then only the 'standard' variables configured for that source type are available (see the doc string for the weather source you are interested in) - If either 'elevated_wind_speed' or 'surface_wind_speed' is included in the variable list, then the members
.elevated_wind_speed_heightand.surface_wind_speed_height, respectfully, are also added. These are constants which specify what the 'native' wind speed height is, which depends on the source - A pre-loaded NCSource can also be given, thus allowing for any variable in the source to be specified in thevariableslist. But the user needs to take care of initializing the NCSource and loading the data they want -
(source_type¶str) –The type of weather datasource which is to be loaded. Can be one of: "ERA5", "SARAH", "MERRA", or 'user' - If a pre-loaded NCSource is given for the
sourceobject, then thesource_typeshould be "user" -
(source¶str or NCSource) –The source to read weather variables from
-
(set_time_index¶bool, default:False) –If True, instructs the workflow manager to set the time index to that which is read from the weather source - By default False
-
(spatial_interpolation_mode¶str, default:'bilinear') –The spatial interpolation mode to use while reading data from the weather source at each of the placement coordinates - By default "bilinear"
-
(temporal_reindex_method¶str, default:'nearest') –In the event of missing data, this algorithm is used to fill in the missing data. - Can be, for example, "nearest", "ffill", "bfill", "interpolate" - By default "nearest"
Returns:
-
WorkflowManager–Returns the invoking WorkflowManager (for chaining)
Raises:
-
RuntimeError–If set_time_index is False but no
.time_indexexists -
RuntimeError–If source_type is unknown
Source code in reskit/workflow_manager.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | |
register_workflow_parameter
¶
Add a parameter to the WorkflowManager which will be included in the output XArray dataset
Parameters:
-
(key¶str) –The workflow parameter's access key
-
(value¶Union[str, float]) –The workflow parameter's value. Only strings and floats are allowed
Source code in reskit/workflow_manager.py
set_correction_factors
¶
set_correction_factors(correction_factors, verbose=True)
Gets the correction factors if necessary and sets them as class attribute.
Parameters:
-
(correction_factors¶(str, float)) –correction factor as float or path to the correction factor raster file
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
set_roughness
¶
set_roughness(roughness)
Sets the 'roughness' column in the placements DataFrame.
Parameters:
-
(roughness¶(numeric, iterable)) –If a numeric is given, sets the same roughness values to all placements. If an iterable is given, sets the corresponding roughness value in the iterable to the placements. The length of the iterable must match the number of placements
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
set_time_index
¶
Sets the time index of the WorkflowManager
Source code in reskit/workflow_manager.py
simulate
¶
simulate(
max_batch_size=None,
cf_correction_factor=1.0,
tolerance=0.01,
max_iterations=10,
verbose=True,
)
Applies the invoking power curve to the given wind speeds. A max_batch_size can be set, splitting the simulation in batches. If set, cf_correction_factor is applied iteratively to adjust avreage cf output. Capacity factors are calculated in the subfunction _sim(), which is called iteratively.
max_batch_size : int, optional The maximum number of locations to be simulated simultaneously. If None, no limits will be applied, by default None.
cf_correction_factor : float, optional The average cf output will be adjusted by this ratio via wind speed adaptations (no linear scaling). By default 1.0.
tolerance : float, optional The max. deviation of the simulated average cf from the enforced corrected value, by default 0.03, i.e. 3% absolute.
max_iterations : int, optional The max. No. of simulation iterations allowed for iterative simulation of one batch until the tolerance is met, else a TimeOutError will be raised. By default 10 iterations.
verbose : bool, optional If True, additional status information will be printed, by default True.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 | |
spatial_disaggregation
¶
spatial_disaggregation(
variable: str,
source_high_resolution: Union[str, float, ndarray],
source_low_resolution: Union[str, float, ndarray],
real_lra_scaling: float = 1,
spatial_interpolation: str = "linear-spline",
)
[summary]
Parameters:
-
(variable¶str) –[description]
-
(source_long_run_average¶Union[str, float, ndarray]) –[description]
-
(real_long_run_average¶Union[str, float, ndarray]) –[description]
-
(real_lra_scaling¶float, default:1) –[description], by default 1
-
(spatial_interpolation¶str, default:'linear-spline') –[description], by default "linear-spline"
Source code in reskit/workflow_manager.py
to_netcdf
¶
to_netcdf(
xds: Dataset,
output_netcdf_path: str = None,
output_variables: List[str] = None,
custom_attributes: dict = None,
_intermediate_dict=False,
) -> str
Saves an XArray dataset to netCDF4 format
Note:
- The .placements data is automatically added to the XArray dataset along the 'locations' dimension
- The workflow_parameters data is automatically added as dimensionless variables
- The .sim_data is automatically added along the dimensions (time, locations)
- The .time_index is automatically added along the dimension 'time'
Parameters:
-
(xds¶Dataset) –The XArray dataset to save
-
(output_netcdf_path¶str, default:None) –If given, the XArray dataset will be written to disc at the specified path - By default None
-
(output_variables¶List[str], default:None) –If given, specifies the variables which should be included in the resulting dataset. Otherwise all suitable variables found in
.placements,.workflow_parameters,.sim_data, and.time_indexwill be included - Only variables of numeric or string type are suitable due to NetCDF4 limitations - By default None -
(custom_attributes¶dict, default:None) –If given, adds the key-value pairs as attributes to the XArray dataset before saving - These will be added in addition to existing attributes - By default None
Returns:
-
output_netcdf_path–The resulting output_netcdf_path
Source code in reskit/workflow_manager.py
to_xarray
¶
to_xarray(
output_netcdf_path: str = None,
output_variables: List[str] = None,
custom_attributes: dict = None,
_intermediate_dict=False,
) -> Dataset
Generates an XArray dataset from the data currently contained in the WorkflowManager
Note:
- The .placements data is automatically added to the XArray dataset along the 'locations' dimension
- The workflow_parameters data is automatically added as dimensionless variables
- The .sim_data is automatically added along the dimensions (time, locations)
- The .time_index is automatically added along the dimension 'time'
Parameters:
-
(output_netcdf_path¶str, default:None) –If given, the XArray dataset will be written to disc at the specified path - By default None
-
(output_variables¶List[str], default:None) –If given, specifies the variables which should be included in the resulting dataset. Otherwise all suitable variables found in
.placements,.workflow_parameters,.sim_data, and.time_indexwill be included - Only variables of numeric or string type are suitable due to NetCDF4 limitations - By default None -
(custom_attributes¶dict, default:None) –If given, adds the key-value pairs as attributes to the XArray dataset - These will be added in addition to the workflow_parameters - By default None
Returns:
-
Dataset–The resulting XArray dataset
Source code in reskit/workflow_manager.py
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 | |
wind_shear_projection_of_wind_speeds_to_hub_height
¶
wind_shear_projection_of_wind_speeds_to_hub_height(
alternative_wind_speed_rasters,
consider_boundary_layer_height=False,
allow_extrapolation=True,
)
Projects the wind speed values to the hub height.
consider_boundary_layer_height : bool, optional If True, the wind speed will be scaled only to max. the boundary layer height. By default False. allow_extrapolation . BOOL; OPTIONAL If False, target heights must be between minimum and maximum height keys provided in alternative_wind_speed_rasters. By default True.
Return
A reference to the invoking WindWorkflowManager
Source code in reskit/wind/workflows/wind_workflow_manager.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 | |