@@ -35,3693 +36,3350 @@ import java.util.Arrays; * Some original code are commented out for comparison, * but will to be deleted when finalized.) * - *- * + * * @author Archana * @version 1.0 */ public class PRLibrary { - public static RZLL getRZLLInstance() { - return RZLL.getInstance(); - } + public static RZLL getRZLLInstance(){ + return RZLL.getInstance(); + } + + /** + * This function computes altimeterInInches from altimeterInMillibars + * @param altimeterInMillibars + * @return the altimeter in inches + */ + public static float prAlti(float altimeterInMillibars){ + float altimeterInInches =GempakConstants.RMISSD; + if (altimeterInMillibars != GempakConstants.RMISSD){ + altimeterInInches = ( float ) ( altimeterInMillibars * 29.921 / 1013.25 ); + } + return altimeterInInches; + } + + /** + * This function computes altimeterInMillibars from altimeterInInches + * @param altimeterInMillibars + * @return the altimeter in millibars + */ + public static float prAltm(float altimeterInInches){ + float altimeterInMillibars = GempakConstants.RMISSD; + if(altimeterInInches != GempakConstants.RMISSD){ + altimeterInMillibars = ( float ) ( altimeterInInches * 1013.25 / 29.921 ); + } + return altimeterInMillibars; + } + + /** + * Computes altimeter from the station pressure and elevation + * @param pres - pressure at the station + * @param selv - elevation of the station + * @return the computed altimeter in Inches + */ + public static float prAltp(float pres, float selv){ + if(pres != GempakConstants.RMISSD && selv != GempakConstants.RMISSD){ + float seaLevelTempInKelvin = GempakConstants.TMCK + 15; + float hgtk = prHgmk(selv); + double exponent = - ( GempakConstants.GRAVTY / ( GempakConstants.GAMUSD * GempakConstants.RDGAS ) * 1000.0f); +// double base = pres * ( 1.0f - ( hgtk * GempakConstants.GAMUSD / seaLevelTempInKelvin ) ); +// float altm = (float) Math.pow( base, Math.exp( exponent ) ); +// return prAlti( pres * altm ); + double base = ( 1.0f - ( hgtk * GempakConstants.GAMUSD / seaLevelTempInKelvin ) ); + float altm = (float) Math.pow( base, exponent ); + return prAlti( pres * altm ); + }else{ + return GempakConstants.RMISSD; + } + } + +/*** + * Computes TPWN, the numeric weather code for temporary/ probability/vicinity weather, + * with probability 30 weather taking precedence over vicinity weather + * and vicinity weather taking precedence over temporary weather. + * @param twnm - Temporary weather code + * @param vwnm - Vicinity weather code + * @param pprb - Probability for forecast change indicator + * @return the temporary/probability/vicinity numeric weather code + */ + public static float prTpwn(float twnm, float vwnm, float pprb){ + float tpwn = GempakConstants.RMISSD; + if ( Math.round(pprb) == 30 + && !MissingValueTester.isDataValueMissing(twnm)){ + tpwn = twnm; + }else if (!MissingValueTester.isDataValueMissing(vwnm)){ + tpwn = vwnm; + }else{ + tpwn = twnm; + } + return tpwn; + } + + /*** + * Computes prAllWeatherNumericCode, the numeric weather code for + * prevailing temporary/ probability/vicinity weather, + * with probability 30 weather taking precedence over vicinity weather + * and vicinity weather taking precedence over temporary weather + * and temporary weather taking precedence over prevailing weather. + * @param wnum - Prevailing numeric weather code + * @param twnm - Temporary weather code + * @param vwnm - Vicinity weather code + * @param pprb - Probability for forecast change indicator + * @return the all weather numeric code + */ + public static float prAwnm(float wnum, float twnm, float vwnm, float pprb){ + float prAllWeatherNumericCode = prTpwn( twnm,vwnm, pprb); + return (MissingValueTester.isDataValueMissing(prAllWeatherNumericCode) + ? wnum : prAllWeatherNumericCode); + } + + /*** + * Computes a standard abbreviated 3-digit display of + * pressure containing the tens and units digits and the first digit + * after the decimal point. The input is multiplied by 10, truncated, + * and the original thousand and hundred digits are dropped + * @param pmsl - the pressure in mb + * @return the standard abbreviated pressure + */ + public static float prAmsl(float pmsl){ + float pramsl = GempakConstants.RMISSD; + if (MissingValueTester.isDataValueMissing(pmsl)){ + return pramsl; + }else{ + float aalt = pmsl % 100; + aalt *= 10; + pramsl = Math.round(aalt); + return pramsl; + } + } + + /*** + * Computes the WMO fractional cloud cover from + * the input numeric total cloud cover + * @param cfrt - Numeric total cloud cover + * @return RMISSD if the numeric total cloud cover is equal to RMISSD + * and the WMO fractional cloud cover otherwise + */ + public static float prCfct(float cfrt){ + float prcfct = GempakConstants.RMISSD; + int[] itable = {1, 6, 6, 2, 2, 7, 3, 8, 4, 5}; + if ( !MissingValueTester.isDataValueMissing(cfrt)){ + if ( (cfrt >= 0) && (cfrt <= 9) ){ + int index = Math.round(cfrt); + /*sanity check*/ + if(itable != null && itable.length > 0 + && itable.length >= (index +1) ){ +// prcfct = itable[index + 1]; + prcfct = itable[index]; + } + } + } + return prcfct; + } + + /*** + * Computes the maximum cloud cover from the low, mid and high cloud covers. + * + * Coverage values are ordered as follows: + * 0 no clouds + * 1 clear + * 6 thin scattered + * 2 scattered + * 7 thin broken + * 3 broken + * 8 thin overcast + * 4 overcast9 + * 9 partially obscured + * 5 obscured + * + * @param clcl - low-level cloud cover + * @param clcm - mid-level cloud cover + * @param clch - high-level cloud cover + * @return the maximum cloud cover + */ + public static float prClct(float clcl, float clcm, float clch){ + /*Sanity check*/ + if ( clcl == GempakConstants.RMISSD + || clcm == GempakConstants.RMISSD + || clch == GempakConstants.RMISSD){ + return GempakConstants.RMISSD; + } + int[] list = {1, 2, 4, 6, 8, 10, 3, 5, 7, 9}; + int[] invert = {0, 1, 6, 2, 7, 3, 8, 4, 9, 5}; + int ilow = 1; + int imed = 1; + int ihigh = 1; + int iclcl = (int) clcl; + int iclcm = (int) clcm; + int iclch = (int) clch; + if ( iclcl >= 0 && iclcl < 10 ){ + ilow = list[iclcl]; + } + if ( iclcm >= 0 && iclcm < 10 ){ + imed = list[iclcm]; + } + if ( iclch >= 0 && iclch < 10 ){ + ihigh = list[iclch]; + } + int[] tempArray = {ilow,imed,ihigh}; + Arrays.sort(tempArray); +// int maxVal = tempArray[3]; + int maxVal = tempArray[2]; + if(maxVal == 9){ + maxVal = (imed > ihigh ? imed : ihigh); + if(maxVal < 3){ + maxVal = 9; + } + } +// return invert[maxVal]; + return invert[maxVal - 1]; + } + + /*** + * Computes the numeric cloud coverage from the combined cloud height and coverage + * @param comx - the combined cloud height (either at the low/medium/high cloud level expressed in hundreds of feet) and coverage. + * @return the numeric cloud coverage + */ + public static float prClcx(float comx){ + /*Sanity check*/ + if(MissingValueTester.isDataValueMissing(comx)){ + return GempakConstants.RMISSD; + } + else{ + return ( ((int) comx) % 10 ); + } + } + + /*** + * This method computes the lowest ceiling from ceil, chc1, chc2 and + * chc3. if there is no ceiling, get the lowest layer from chc1, chc2 and chc3. + * @param ceil - Ceiling in hundreds of feet + * @param chc1 - Cloud height & coverage 1 + * @param chc2 - Cloud height & coverage 2 + * @param chc3 - Cloud height & coverage 3 + * @return The lowest ceiling combined with a numeric cloud coverage + */ + public static float prCldb ( float ceil,float chc1,float chc2,float chc3){ + float prcldb = GempakConstants.RMISSD; + float temp = GempakConstants.RMISSD; + if(!MissingValueTester.isDataValueMissing(ceil)){ + if(!MissingValueTester.isDataValueMissing(chc1) + && Math.abs( ceil - ( ( int ) chc1/10) ) < GempakConstants.RDIFFD ){ + prcldb = chc1; + } + else if (!MissingValueTester.isDataValueMissing(chc2) + && Math.abs( ceil - ( ( int ) chc2/10) ) < GempakConstants.RDIFFD ){ + prcldb = chc2; + } + else if (!MissingValueTester.isDataValueMissing(chc3) + && Math.abs( ceil - ( ( int ) chc3/10) ) < GempakConstants.RDIFFD ){ + prcldb = chc3; + } + } + else{ + /*Check the first report*/ + if(!MissingValueTester.isDataValueMissing(chc1)){ + temp = chc1; + } - /** - * This function computes altimeterInInches from altimeterInMillibars - * - * @param altimeterInMillibars - * @return the altimeter in inches - */ - public static float prAlti(float altimeterInMillibars) { - float altimeterInInches = GempakConstants.RMISSD; - if (altimeterInMillibars != GempakConstants.RMISSD) { - altimeterInInches = (float) (altimeterInMillibars * 29.921 / 1013.25); - } - return altimeterInInches; - } + /*Check the second report*/ +// if(!MissingValueTester.isDataValueMissing(chc2) +// && ! (MissingValueTester.isDataValueMissing(chc2) +// && (chc1 > chc2) ) ){ +// temp = chc2; +// } +// To make like legacy (test chc1 missing, not chc2): +// if(!MissingValueTester.isDataValueMissing(chc2) +// && !MissingValueTester.isDataValueMissing(chc1) +// && (chc1 > chc2) ){ +// Fix legacy: + if(!MissingValueTester.isDataValueMissing(chc2)) { + if (MissingValueTester.isDataValueMissing(chc1)){ + temp = chc2; + } + else if (chc1 > chc2) { + temp = chc2; + } + } + + /*Check the third report*/ +// if(!MissingValueTester.isDataValueMissing(chc3) +// && !(MissingValueTester.isDataValueMissing(temp)) +// && (temp > chc3)){ +// temp = chc3; +// } + if(!MissingValueTester.isDataValueMissing(chc3)) { + if (MissingValueTester.isDataValueMissing(temp)) { + temp = chc3; + } + else if (temp > chc3){ + temp = chc3; + } + } + + if( !MissingValueTester.isDataValueMissing(temp) ){ + prcldb = temp; + } + } + return prcldb; + } + + /*** + *
+ * Computes the numeric cloud coverage from the combined cloud height and coverage + * @param comx - the combined cloud height (either at the low/medium/high cloud level expressed in hundreds of feet) and + * numeric cloud coverage. + * @return the cloud height in feet * 100 + *+ */ + public static float prClhx(float comx){ + /*Sanity check*/ + if(MissingValueTester.isDataValueMissing(comx) || comx < 10){ + return GempakConstants.RMISSD; + } +// return ( comx > 10000 ? ( ( (int) (comx) - 10000) /10 ) : (int) comx); + return ( comx > 10000 ? ( ( (int) (comx) - 10000) /10 ) : (int) (comx / 10.)); + } + + /*** + * Computes the fractional cloud coverage from the numeric cloud coverage + * @param clcx - the numeric cloud coverage for clouds ( one of Low/Mid/High/Total cloud coverage) + * @return the fractional cloud coverage + */ + public static float prCloa(float clcx){ + /*Sanity check*/ + if(MissingValueTester.isDataValueMissing(clcx)){ + return GempakConstants.RMISSD; + } + float[] cloud = { + 0.00f, /*missing*/ + 0.00f, /*clear*/ + 0.40f, /*scattered*/ + 0.75f, /*broken*/ + 1.00f, /*overcast*/ + 1.00f, /*obscured*/ + 0.25f, /*thin scattered*/ + 0.60f, /*thin broken*/ + 0.90f, /*thin overcast*/ + 0.00f /*partially obscured*/ + }; + + int icld = (int) clcx; + if ( icld < 0 || icld > 9){ + icld = 0; + } + return ( (cloud != null && cloud.length > 0 && cloud.length >= icld ) ? cloud[icld] : GempakConstants.RMISSD ); + } + + /*** + * Computes the combined low, mid and high cloud coverage + * The following equation is used: cmbc = clcl*100 + clcm*10 + clch + * @param clcl - low cloud coverage + * @param clcm - mid cloud coverage + * @param clch - high cloud coverage + * @return the combined cloud coverage + */ + public static float prCmbc(float clcl, float clcm, float clch){ + /*Sanity check*/ +// if ( MissingValueTester.isDataValueMissing(clcl) +// || MissingValueTester.isDataValueMissing(clcm) +// || MissingValueTester.isDataValueMissing(clch)){ +// return GempakConstants.RMISSD; +// } +//999999 Set missing dta values to 0. + + int iclcl = 0; + int iclcm = 0; + int iclch = 0; + + if ( clcl >= 0 && clcl <= 9 ){ + iclcl = (int) clcl; + } + + if ( clcm >= 0 && clcm <= 9 ){ + iclcm = (int) clcm; + } + + if ( clch >= 0 && clch <= 9 ){ + iclch = (int) clch; + } + + return (( iclcl * 100 ) + ( iclcm * 10 ) + iclch); + } + + /*** + * Computes the Ceiling converted to Mean Sea Level in hundreds of feet + * @param ceil - Ceiling in hundreds of feet + * @param selv - Station elevation in meters + * @return The ceiling converted to Mean Sea Level in hundreds of feet + */ + public static float prCmsl(float ceil, float selv){ + /*Sanity check*/ + if ( MissingValueTester.isDataValueMissing(ceil) + || MissingValueTester.isDataValueMissing(selv) ){ + return GempakConstants.RMISSD; + } + return ( (prHgmf(selv) / 100) + ceil); + } + - /** - * This function computes altimeterInMillibars from altimeterInInches - * - * @param altimeterInMillibars - * @return the altimeter in millibars - */ - public static float prAltm(float altimeterInInches) { - float altimeterInMillibars = GempakConstants.RMISSD; - if (altimeterInInches != GempakConstants.RMISSD) { - altimeterInMillibars = (float) (altimeterInInches * 1013.25 / 29.921); - } - return altimeterInMillibars; - } + + /*** + * Computes the combined height and numeric sky coverage for high clouds, + * whose height is greater than 17,900 feet + * @param chc1 - Cloud height & coverage 1 + * @param chc2 - Cloud height & coverage 2 + * @param chc3 - Cloud height & coverage 3 + * @return the computed combined height and numeric sky coverage for high clouds + */ + public static float prComh ( float chc1, float chc2, float chc3 ){ + float prcomh = GempakConstants.RMISSD; + if (MissingValueTester.isDataValueMissing(chc1)){ + return GempakConstants.RMISSD; + } + int ichc1 = -1; + int ihght = -1; + int icovr = -1; + int icovx = -1; + /* + * (Non-Javadoc) + * Check for thin obscured combined with cloud height and coverage and get height code. + */ + ichc1 = ( ( chc1 >= 10000 ) ? ( ( int ) (chc1) - 10000 ) : ( int ) (chc1) ); - /** - * Computes altimeter from the station pressure and elevation - * - * @param pres - * - pressure at the station - * @param selv - * - elevation of the station - * @return the computed altimeter in Inches - */ - public static float prAltp(float pres, float selv) { - if (pres != GempakConstants.RMISSD && selv != GempakConstants.RMISSD) { - float seaLevelTempInKelvin = GempakConstants.TMCK + 15; - float hgtk = prHgmk(selv); - double exponent = -(GempakConstants.GRAVTY - / (GempakConstants.GAMUSD * GempakConstants.RDGAS) * 1000.0f); - // double base = pres * ( 1.0f - ( hgtk * GempakConstants.GAMUSD / - // seaLevelTempInKelvin ) ); - // float altm = (float) Math.pow( base, Math.exp( exponent ) ); - // return prAlti( pres * altm ); - double base = (1.0f - (hgtk * GempakConstants.GAMUSD / seaLevelTempInKelvin)); - float altm = (float) Math.pow(base, exponent); - return prAlti(pres * altm); - } else { - return GempakConstants.RMISSD; - } - } + ihght = ichc1 / 10; + + /*Check height against high level limits*/ + if ( ihght > 178) { + prcomh = chc1 % 10000; + icovr = (int) prCtcf( (float)(ichc1 %10) ); + } + + /*Check 2nd report*/ + if( !MissingValueTester.isDataValueMissing(chc2) ){ + ihght = (int) (chc2 / 10); + icovx = (int) prCtcf( ( chc2 - (float) ( ihght * 10 ) ) ); + if ( ihght > 178 && icovx > icovr){ + prcomh = chc2; + icovr = icovx; + } + } + + /*Check 3rd report*/ + if( !MissingValueTester.isDataValueMissing(chc3) ){ + ihght = (int) (chc3 / 10); + icovx = ( int ) prCtcf( ( chc3 - (float) ( ihght * 10 ) ) ); + if ( ihght > 178 && icovx > icovr){ + prcomh = chc3; + } + } + return prcomh; + } + + /*** + * Computes the combined height and numeric sky coverage for clouds, + * whose height is lesser than 63000 feet + * @param chc1 - Cloud height & coverage 1 + * @param chc2 - Cloud height & coverage 2 + * @param chc3 - Cloud height & coverage 3 + * @return the combined height & coverage for low clouds + */ + public static float prComl(float chc1, float chc2, float chc3 ){ + float prcoml = GempakConstants.RMISSD; + int icovr = -1; + if( !MissingValueTester.isDataValueMissing(chc1) ){ + if ( chc1 == 10000){ + /*Partially obscured conditions reported.*/ + prcoml = 9.0f; + }else{ + /* Check for thin obscured combined with cloud height and + * coverage and get height code + */ + int ichc1 = -1; + int ihght = -1; + int icovx = -1; + ichc1 = ( chc1 > 10000 ? ( ( int ) chc1 - 10000) : (int) chc1 ); + ihght = ichc1 / 10; + + /*Check height against low-level limit.*/ + if ( ihght <= 63){ + prcoml = chc1; + icovr = (int) prCtcf ( ((float) (ichc1%10) ) ); + } + else if ( chc1 > 10000 ){ + prcoml = 9.0f; + } + + /*Check 2nd cloud report.*/ + if ( !MissingValueTester.isDataValueMissing(chc2)){ + ihght = ( int ) (chc2) / 10; + icovx = ( int ) prCtcf ( chc2 - (float) (ihght * 10) ); + if ( ( ihght <= 63 ) && ( icovx > icovr ) ){ + prcoml = chc2; + icovr = icovx; + } + } - /*** - * Computes TPWN, the numeric weather code for temporary/ - * probability/vicinity weather, with probability 30 weather taking - * precedence over vicinity weather and vicinity weather taking precedence - * over temporary weather. - * - * @param twnm - * - Temporary weather code - * @param vwnm - * - Vicinity weather code - * @param pprb - * - Probability for forecast change indicator - * @return the temporary/probability/vicinity numeric weather code - */ - public static float prTpwn(float twnm, float vwnm, float pprb) { - float tpwn = GempakConstants.RMISSD; - if (Math.round(pprb) == 30 - && !MissingValueTester.isDataValueMissing(twnm)) { - tpwn = twnm; - } else if (!MissingValueTester.isDataValueMissing(vwnm)) { - tpwn = vwnm; - } else { - tpwn = twnm; - } - return tpwn; - } + /*Check 3rd cloud report.*/ + if ( !MissingValueTester.isDataValueMissing( chc3 )){ + ihght = ( int ) (chc3) / 10; + icovx = ( int ) prCtcf ( chc3 - (float) (ihght * 10) ); + if ( ( ihght <= 63 ) && ( icovx > icovr ) ){ + prcoml = chc3; + } + } + + + } + } + return prcoml; + } + + /*** + * Computes the combined height and numeric sky coverage for mid-level clouds, + * whose height is greater than 63000 feet but lesser than 179,000 feet. + * @param chc1 - Cloud height & coverage 1 + * @param chc2 - Cloud height & coverage 2 + * @param chc3 - Cloud height & coverage 3 + * @return the combined height & coverage for mid-level clouds + */ + public static float prComm(float chc1, float chc2, float chc3 ){ + float prcomm = GempakConstants.RMISSD; + int icovr = -1; + if( !MissingValueTester.isDataValueMissing(chc1) ){ + int ichc1 = -1; + int ihght = -1; + int icovx = -1; + + /* Check for thin obscured combined with cloud height and + * coverage and get height code + */ + ichc1 = ( chc1 >= 10000 ? ( ( int ) chc1 - 10000) : (int) chc1 ); + ihght = ichc1 / 10; + + /*Check height against mid-level limits.*/ + if ( ( ihght > 63 ) && ( ihght < 179 ) ){ + prcomm = chc1 % 10000; + icovr = (int) prCtcf ( ((float) (ichc1%10) ) ); + } + + /*Check 2nd cloud report.*/ + if ( !MissingValueTester.isDataValueMissing(chc2)){ + ihght = ( int ) (chc2) / 10; + icovx = ( int ) prCtcf ( chc2 - (float) (ihght * 10) ); + if ( ( ihght > 63 ) && ( ihght < 179 ) && ( icovx > icovr ) ){ + prcomm = chc2; + icovr = icovx; + } + } - /*** - * Computes prAllWeatherNumericCode, the numeric weather code for prevailing - * temporary/ probability/vicinity weather, with probability 30 weather - * taking precedence over vicinity weather and vicinity weather taking - * precedence over temporary weather and temporary weather taking precedence - * over prevailing weather. - * - * @param wnum - * - Prevailing numeric weather code - * @param twnm - * - Temporary weather code - * @param vwnm - * - Vicinity weather code - * @param pprb - * - Probability for forecast change indicator - * @return the all weather numeric code - */ - public static float prAwnm(float wnum, float twnm, float vwnm, float pprb) { - float prAllWeatherNumericCode = prTpwn(twnm, vwnm, pprb); - return (MissingValueTester.isDataValueMissing(prAllWeatherNumericCode) ? wnum - : prAllWeatherNumericCode); - } + /*Check 3rd cloud report.*/ + if ( !MissingValueTester.isDataValueMissing( chc3 )){ + ihght = ( int ) (chc3) / 10; + icovx = ( int ) prCtcf ( chc3 - (float) (ihght * 10) ); + if ( ( ihght > 63 ) && ( ihght < 179 ) && ( icovx > icovr ) ){ + prcomm = chc3; + } + } - /*** - * Computes a standard abbreviated 3-digit display of pressure containing - * the tens and units digits and the first digit after the decimal point. - * The input is multiplied by 10, truncated, and the original thousand and - * hundred digits are dropped - * - * @param pmsl - * - the pressure in mb - * @return the standard abbreviated pressure - */ - public static float prAmsl(float pmsl) { - float pramsl = GempakConstants.RMISSD; - if (MissingValueTester.isDataValueMissing(pmsl)) { - return pramsl; - } else { - float aalt = pmsl % 100; - aalt *= 10; - pramsl = Math.round(aalt); - return pramsl; - } - } + } + return prcomm; + } + + /*** + * Computes the highest cloud height and coverage from the low, mid and high cloud height and coverage + * @param coml - Low report height & coverage + * @param comm - Mid report height & coverage + * @param comh - High report height & coverage + * @return the highest combined cloud height and coverage + */ + public static float prComt(float coml, float comm, float comh){ + /*Sanity check*/ + if ( MissingValueTester.isDataValueMissing(coml) + || MissingValueTester.isDataValueMissing(comm) + || MissingValueTester.isDataValueMissing(comh)){ + return GempakConstants.RMISSD; + } else{ + float prcomt = GempakConstants.RMISSD; + /*Decode coverage values for each level*/ + int clcl = ( (int) coml ) - ( ((int) coml ) / 10 * 10 ); + int clcm = ( (int) comm ) - ( ((int) comm ) / 10 * 10 ); + int clch = ( (int) comh ) - ( ((int) comh ) / 10 * 10 ); + + /*Get maximum coverage value*/ + float clct = prClct( clcl, clcm, clch ); + + /*Find maximum combined value*/ + if ( clct == clcl ) + prcomt = coml; + else if ( clct == clcm ) + prcomt = comm; + else + prcomt = coml; + + return prcomt; + } + } - /*** - * Computes the WMO fractional cloud cover from the input numeric total - * cloud cover - * - * @param cfrt - * - Numeric total cloud cover - * @return RMISSD if the numeric total cloud cover is equal to RMISSD and - * the WMO fractional cloud cover otherwise - */ - public static float prCfct(float cfrt) { - float prcfct = GempakConstants.RMISSD; - int[] itable = { 1, 6, 6, 2, 2, 7, 3, 8, 4, 5 }; - if (!MissingValueTester.isDataValueMissing(cfrt)) { - if ((cfrt >= 0) && (cfrt <= 9)) { - int index = Math.round(cfrt); - /* sanity check */ - if (itable != null && itable.length > 0 - && itable.length >= (index + 1)) { - // prcfct = itable[index + 1]; - prcfct = itable[index]; - } - } - } - return prcfct; - } + /*** + * Computes the combined cloud height and coverage from the + * cloud height (clhx) and the cloud coverage (clcx) + * @param clhx - Cloud height + * @param clcx - Cloud coverage + * @return The combined cloud height and coverage + */ + public static float prComx( float clhx, float clcx){ + float prcomx = GempakConstants.RMISSD; + /*Check for clear case*/ + if ( clcx == 1) + prcomx = clcx; + /*Check for obscured clouds with missing height; return cloud - coverage only.*/ + else if ( ( ( clcx == 5 ) || ( clcx == 9 ) )&& MissingValueTester.isDataValueMissing(clhx) ) { + prcomx = clcx; + } + /*Check for missing or invalid data*/ + else if ( ( clhx < 0 ) || MissingValueTester.isDataValueMissing(clhx) ) + return GempakConstants.RMISSD; + else { + /* + * Combine data by multiplying height by 10 and adding clouds. + * Missing cloud amounts are given the value 0 (clear). + */ + int iclhx = (int) clhx; + int iclcx = (int) clcx; + if ( ( iclcx < 0 ) || ( iclcx > 9 ) ) + iclcx = 0; + prcomx = ( iclhx * 10 ) + iclcx; + } + + return prcomx; + } + + /*** + * Computes the cloud type symbol number from the synoptic code cloud type number + * @param ctyh - Synoptic code for high cloud + * @return The cloud type symbol number after adding 20 to ctyh if + * ctyh lies between 1 and 9 and 0.0 otherwise + */ + public static float prCsyh ( float ctyh){ + return ( ( ( ctyh >= 1) && ( ctyh <= 9 ) ) ? ctyh + 20 : 0.0f ); + } + + /*** + * Computes the cloud type symbol number from the synoptic code cloud type number + * @param ctyl - Synoptic code for low cloud + * @return The cloud type symbol number as ctyl if + * ctyl lies between 1 and 9 and 0.0 otherwise + */ + public static float prCsyl ( float ctyl){ + return ( ( ( ctyl >= 1) && ( ctyl <= 9 ) ) ? ctyl : 0.0f ); + } + + /*** + * Computes the cloud type symbol number from the synoptic code cloud type number + * @param ctym - Synoptic code for mid cloud + * @return The cloud type symbol number after adding 10 to ctym if + * ctym lies between 1 and 9 and 0.0 otherwise + */ + public static float prCsym ( float ctym){ + return ( ( ( ctym >= 1) && ( ctym <= 9 ) ) ? ctym + 10 : 0.0f ); + } + + /*** + * Computes the cloud type symbol number for the first level at which clouds are reported + * @param ctyl - Synoptic code for low cloud + * @param ctym - Synoptic code for mid cloud + * @param ctyh - Synoptic code for high cloud + * @return Cloud symbol number + */ + public static float prCsyt ( float ctyl, float ctym, float ctyh){ + float prcsyt = 0.0f; + if ( ( ctyl >= 1) && ( ctyl <= 9 ) ){ + prcsyt = ctyl; + } + else if ( ( ctym >= 1) && ( ctym <= 9 ) ){ + prcsyt = ctym + 10; + } + else if ( ( ctyh >= 1) && ( ctyh <= 9 ) ){ + prcsyt = ctyh + 20; + } + return prcsyt; + } + + /*** + * Computes the maximum cloud cover from the combined height/coverage for low, mid and high clouds + * @param chc1 - Combined height and coverage for low clouds + * @param chc2 - Combined height and coverage for mid clouds + * @param chc3 - Combined height and coverage for high clouds + * @return the maximum cloud cover + */ + public static float prCtcc( float chc1, float chc2, float chc3){ + float prctcc = GempakConstants.RMISSD; + + /*Sanity check*/ + if ( !MissingValueTester.isDataValueMissing(chc1) + && !MissingValueTester.isDataValueMissing(chc2) + && !MissingValueTester.isDataValueMissing(chc3)) { + /* + * Compute ordered values for each cloud cover, with checks for + * out-of-bounds values. + */ + int[] list = {1, 2, 4, 6, 8, 10, 3, 5, 7, 9}; + int[] invert = {0, 1, 6, 2, 7, 3, 8, 4, 9, 5}; + int ilow = 1; + int imed = 1; + int ihi = 1; + int iclcl = Math.round(chc1) % 10; + if ( ( iclcl >= 0 ) && ( iclcl < 10 ) ) + ilow = list[iclcl]; - /*** - * Computes the maximum cloud cover from the low, mid and high cloud covers. - * - * Coverage values are ordered as follows: 0 no clouds 1 clear 6 thin - * scattered 2 scattered 7 thin broken 3 broken 8 thin overcast 4 overcast9 - * 9 partially obscured 5 obscured - * - * @param clcl - * - low-level cloud cover - * @param clcm - * - mid-level cloud cover - * @param clch - * - high-level cloud cover - * @return the maximum cloud cover - */ - public static float prClct(float clcl, float clcm, float clch) { - /* Sanity check */ - if (clcl == GempakConstants.RMISSD || clcm == GempakConstants.RMISSD - || clch == GempakConstants.RMISSD) { - return GempakConstants.RMISSD; - } - int[] list = { 1, 2, 4, 6, 8, 10, 3, 5, 7, 9 }; - int[] invert = { 0, 1, 6, 2, 7, 3, 8, 4, 9, 5 }; - int ilow = 1; - int imed = 1; - int ihigh = 1; - int iclcl = (int) clcl; - int iclcm = (int) clcm; - int iclch = (int) clch; - if (iclcl >= 0 && iclcl < 10) { - ilow = list[iclcl]; - } - if (iclcm >= 0 && iclcm < 10) { - imed = list[iclcm]; - } - if (iclch >= 0 && iclch < 10) { - ihigh = list[iclch]; - } - int[] tempArray = { ilow, imed, ihigh }; - Arrays.sort(tempArray); - // int maxVal = tempArray[3]; - int maxVal = tempArray[2]; - if (maxVal == 9) { - maxVal = (imed > ihigh ? imed : ihigh); - if (maxVal < 3) { - maxVal = 9; - } - } - // return invert[maxVal]; - return invert[maxVal - 1]; - } + int iclcm = Math.round(chc2) % 10; + if ( ( iclcm >= 0 ) && ( iclcm < 10 ) ) + imed = list[iclcm]; + + int iclch = Math.round(chc3) % 10; + if ( ( iclch >= 0 ) && ( iclch < 10 ) ) + ihi = list[iclch]; + + int[] tempArray = {ilow, imed, ihi}; + Arrays.sort(tempArray); + + /*Compute maximum value*/ + if (tempArray != null && tempArray.length == 3 ){ + int maxVal = tempArray[2]; + if ( maxVal == 9 ){ + maxVal = ( imed > ihi ? imed : ihi ); + if ( maxVal < 3 ) + maxVal = 9; + } + /*Invert maximum value to get numeric cloud coverage*/ +// prctcc = invert[maxVal]; + prctcc = invert[maxVal - 1]; + } + } + return prctcc; + } + + /*** + * Computes the CFRT from CLCT. CFRT is the WMO fractional cloud cover table + * @param clct - is the numberic total cloud cover + * @return the WMO fractional cloud cover + */ + public static float prCtcf(float clct){ + int[] itable = {0, 3, 6, 8, 9, 2, 5, 7, 0}; + if ( MissingValueTester.isDataValueMissing(clct) ){ + return GempakConstants.RMISSD; + } + + /*Get fractional cloud cover WMO code*/ + if ( ( clct > 0 ) && ( clct <= 9 ) ){ + return itable [ (int) (clct - 1.) ]; + } + + return GempakConstants.RMISSD; + } + + /** + * Divides a floating point number by 100 + * @param hvalue the value to divide + * @return the input value divided by 100, if hvalue is not missing + * and RMISSD (-9999.0) otherwise + */ + public static float prD100( float hvalue){ + return ( !MissingValueTester.isDataValueMissing(hvalue) ? hvalue/100 : GempakConstants.RMISSD ); + } + + /** + * Computes the density of dry air given the pressure (in mb) + * and temperature (in Celsius) + * @param pres - Pressure in millibars + * @param tmpc - Temperature in Celsius + * @return Density of dry air in kg/(m**3) + */ + public static float prDden ( float pres, float tmpc ){ + + float prdden = GempakConstants.RMISSD; + /*Check for bad data*/ + if ( !MissingValueTester.isDataValueMissing(pres) + && !MissingValueTester.isDataValueMissing(tmpc) + && tmpc >= -GempakConstants.TMCK){ + /* Convert temperature and compute*/ + float tmpk = prTmck( tmpc ); + prdden = 100 * pres / ( GempakConstants.RDGAS * tmpk ); + } + return prdden; + } + + /*** + * Computes the dewpoint depression, from tmpx and dwpx, both of which + * must be in the same units (one of Kelvin, Celsius or Farenheit) + * @param tmpx - Air temperature + * @param dwpx - Dewpoint temperature + * @return the dewpoint depresssion (in the same units are tmpx and dwpx) + * if both tmpx and dwpx are valid values and RMISSD ( - 9999.0) otherwise. + */ + public static float prDdep ( float tmpx, float dwpx ){ + return ( ( !MissingValueTester.isDataValueMissing(tmpx) + && !MissingValueTester.isDataValueMissing(dwpx) + && dwpx <= tmpx) ? ( tmpx - dwpx ) : GempakConstants.RMISSD ); + } + + /** + * Computes DMAX, the maximum temperature obtained by + * comparing the 6-hour maximum at 00Z, + * the 6-hour maximum at 06Z and + * the local midnight maximum (reported at 00 LST) + * if either of the 6-hour values is missing, the maximum is set to missing. + * The inputs are in Celsius, the output in degrees Farenheit + * @param t00x - 6-hour maximum temperature at 00Z, Celsius + * @param t06x - 6-hour maximum temperature at 06Z, Celsius + * @param tdxc - Local midnight max temperature at 00 LST, Celsius + * @return The maximum of the 3 temperature values (in Farenheit) + */ + public static float prDmax ( float t00x, float t06x, float tdxc){ + if ( MissingValueTester.isDataValueMissing(t00x) + || MissingValueTester.isDataValueMissing(t06x)){ + return GempakConstants.RMISSD; + } + else if ( !MissingValueTester.isDataValueMissing(tdxc) ){ + float[] tempArray = { t00x, t06x, tdxc }; + Arrays.sort(tempArray); + return prTmcf ( tempArray[2] ); + }else{ + return ( t00x > t06x ? prTmcf (t00x) : prTmcf(t06x) ); + } + } + + /** + * Converts the temperature from Celsius to Farenheit + * @param tmpc - the temperature in Celsius + * @return the temperature in Farenheit + */ + public static float prTmcf( float tmpc){ + return ( !MissingValueTester.isDataValueMissing( tmpc ) ? ( tmpc * GempakConstants.RPRM ) + 32 : GempakConstants.RMISSD ); + } - /*** - * Computes the numeric cloud coverage from the combined cloud height and - * coverage - * - * @param comx - * - the combined cloud height (either at the low/medium/high - * cloud level expressed in hundreds of feet) and coverage. - * @return the numeric cloud coverage - */ - public static float prClcx(float comx) { - /* Sanity check */ - if (MissingValueTester.isDataValueMissing(comx)) { - return GempakConstants.RMISSD; - } else { - return (((int) comx) % 10); - } - } + /** + * Converts the temperature from Farenheit to Celsius + * @param tmpc - the temperature in Farenheit + * @return the temperature in Celsius + */ + public static float prTmfc( float tmpf){ + return ( !MissingValueTester.isDataValueMissing( tmpf ) ? ( tmpf - 32 ) / GempakConstants.RPRM : GempakConstants.RMISSD ); + } + + /** + * Converts the input temperature from Farenheit to Kelvin + * @param tmpf - The input temperature in Farenheit + * @return the equivalent temperature in Kelvin if tmpf is valid or RMISSD ( -9999.0) otherwise + */ + public static float prTmfk ( float tmpf) { + if ( !MissingValueTester.isDataValueMissing(tmpf)){ + float tmpc = prTmfc( tmpf ); + return prTmck ( tmpc); + }else{ + return GempakConstants.RMISSD; + } + } + + /** + * Converts the input temperature from Kelvin to Farenheit + * @param tmpk - the input temperature in Kelvin + * @return the equivalent temperature in Farenheit if tmpk is valid or RMISSD ( -9999.0) otherwise + */ + public static float prTmkf( float tmpk){ + return ( !MissingValueTester.isDataValueMissing(tmpk) + ? ( prTmkc( tmpk ) * GempakConstants.RPRM ) + 32 : GempakConstants.RMISSD ); + } + + /** + * Converts the input temperature from Celsius to Kelvin + * @param tmpc - temperature in Celsius + * @return the equivalent temperature in Kelvin if tmpc is valid and + * RMISSD (-9999.0) otherwise + */ + public static float prTmck( float tmpc){ + return ( !MissingValueTester.isDataValueMissing(tmpc) + ? (tmpc + GempakConstants.TMCK) : GempakConstants.RMISSD ); + } - /*** - * This method computes the lowest ceiling from ceil, chc1, chc2 and chc3. - * if there is no ceiling, get the lowest layer from chc1, chc2 and chc3. - * - * @param ceil - * - Ceiling in hundreds of feet - * @param chc1 - * - Cloud height & coverage 1 - * @param chc2 - * - Cloud height & coverage 2 - * @param chc3 - * - Cloud height & coverage 3 - * @return The lowest ceiling combined with a numeric cloud coverage - */ - public static float prCldb(float ceil, float chc1, float chc2, float chc3) { - float prcldb = GempakConstants.RMISSD; - float temp = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(ceil)) { - if (!MissingValueTester.isDataValueMissing(chc1) - && Math.abs(ceil - ((int) chc1 / 10)) < GempakConstants.RDIFFD) { - prcldb = chc1; - } else if (!MissingValueTester.isDataValueMissing(chc2) - && Math.abs(ceil - ((int) chc2 / 10)) < GempakConstants.RDIFFD) { - prcldb = chc2; - } else if (!MissingValueTester.isDataValueMissing(chc3) - && Math.abs(ceil - ((int) chc3 / 10)) < GempakConstants.RDIFFD) { - prcldb = chc3; - } - } else { - /* Check the first report */ - if (!MissingValueTester.isDataValueMissing(chc1)) { - temp = chc1; - } - - /* Check the second report */ - // if(!MissingValueTester.isDataValueMissing(chc2) - // && ! (MissingValueTester.isDataValueMissing(chc2) - // && (chc1 > chc2) ) ){ - // temp = chc2; - // } - // To make like legacy (test chc1 missing, not chc2): - // if(!MissingValueTester.isDataValueMissing(chc2) - // && !MissingValueTester.isDataValueMissing(chc1) - // && (chc1 > chc2) ){ - // Fix legacy: - if (!MissingValueTester.isDataValueMissing(chc2)) { - if (MissingValueTester.isDataValueMissing(chc1)) { - temp = chc2; - } else if (chc1 > chc2) { - temp = chc2; - } - } - - /* Check the third report */ - // if(!MissingValueTester.isDataValueMissing(chc3) - // && !(MissingValueTester.isDataValueMissing(temp)) - // && (temp > chc3)){ - // temp = chc3; - // } - if (!MissingValueTester.isDataValueMissing(chc3)) { - if (MissingValueTester.isDataValueMissing(temp)) { - temp = chc3; - } else if (temp > chc3) { - temp = chc3; - } - } - - if (!MissingValueTester.isDataValueMissing(temp)) { - prcldb = temp; - } - } - return prcldb; - } - - /*** - *
- * Computes the numeric cloud coverage from the combined cloud height and coverage - * @param comx - the combined cloud height (either at the low/medium/high cloud level expressed in hundreds of feet) and - * numeric cloud coverage. - * @return the cloud height in feet * 100 - *- */ - public static float prClhx(float comx) { - /* Sanity check */ - if (MissingValueTester.isDataValueMissing(comx) || comx < 10) { - return GempakConstants.RMISSD; - } - // return ( comx > 10000 ? ( ( (int) (comx) - 10000) /10 ) : (int) - // comx); - return (comx > 10000 ? (((int) (comx) - 10000) / 10) - : (int) (comx / 10.)); - } - - /*** - * Computes the fractional cloud coverage from the numeric cloud coverage - * - * @param clcx - * - the numeric cloud coverage for clouds ( one of - * Low/Mid/High/Total cloud coverage) - * @return the fractional cloud coverage - */ - public static float prCloa(float clcx) { - /* Sanity check */ - if (MissingValueTester.isDataValueMissing(clcx)) { - return GempakConstants.RMISSD; - } - float[] cloud = { 0.00f, /* missing */ - 0.00f, /* clear */ - 0.40f, /* scattered */ - 0.75f, /* broken */ - 1.00f, /* overcast */ - 1.00f, /* obscured */ - 0.25f, /* thin scattered */ - 0.60f, /* thin broken */ - 0.90f, /* thin overcast */ - 0.00f /* partially obscured */ - }; - - int icld = (int) clcx; - if (icld < 0 || icld > 9) { - icld = 0; - } - return ((cloud != null && cloud.length > 0 && cloud.length >= icld) ? cloud[icld] - : GempakConstants.RMISSD); - } - - /*** - * Computes the combined low, mid and high cloud coverage The following - * equation is used: cmbc = clcl*100 + clcm*10 + clch - * - * @param clcl - * - low cloud coverage - * @param clcm - * - mid cloud coverage - * @param clch - * - high cloud coverage - * @return the combined cloud coverage - */ - public static float prCmbc(float clcl, float clcm, float clch) { - /* Sanity check */ - // if ( MissingValueTester.isDataValueMissing(clcl) - // || MissingValueTester.isDataValueMissing(clcm) - // || MissingValueTester.isDataValueMissing(clch)){ - // return GempakConstants.RMISSD; - // } - // 999999 Set missing dta values to 0. - - int iclcl = 0; - int iclcm = 0; - int iclch = 0; - - if (clcl >= 0 && clcl <= 9) { - iclcl = (int) clcl; - } - - if (clcm >= 0 && clcm <= 9) { - iclcm = (int) clcm; - } - - if (clch >= 0 && clch <= 9) { - iclch = (int) clch; - } - - return ((iclcl * 100) + (iclcm * 10) + iclch); - } - - /*** - * Computes the Ceiling converted to Mean Sea Level in hundreds of feet - * - * @param ceil - * - Ceiling in hundreds of feet - * @param selv - * - Station elevation in meters - * @return The ceiling converted to Mean Sea Level in hundreds of feet - */ - public static float prCmsl(float ceil, float selv) { - /* Sanity check */ - if (MissingValueTester.isDataValueMissing(ceil) - || MissingValueTester.isDataValueMissing(selv)) { - return GempakConstants.RMISSD; - } - return ((prHgmf(selv) / 100) + ceil); - } - - /*** - * Computes the combined height and numeric sky coverage for high clouds, - * whose height is greater than 17,900 feet - * - * @param chc1 - * - Cloud height & coverage 1 - * @param chc2 - * - Cloud height & coverage 2 - * @param chc3 - * - Cloud height & coverage 3 - * @return the computed combined height and numeric sky coverage for high - * clouds - */ - public static float prComh(float chc1, float chc2, float chc3) { - float prcomh = GempakConstants.RMISSD; - if (MissingValueTester.isDataValueMissing(chc1)) { - return GempakConstants.RMISSD; - } - int ichc1 = -1; - int ihght = -1; - int icovr = -1; - int icovx = -1; - /* - * (Non-Javadoc) Check for thin obscured combined with cloud height and - * coverage and get height code. - */ - ichc1 = ((chc1 >= 10000) ? ((int) (chc1) - 10000) : (int) (chc1)); - - ihght = ichc1 / 10; - - /* Check height against high level limits */ - if (ihght > 178) { - prcomh = chc1 % 10000; - icovr = (int) prCtcf((ichc1 % 10)); - } - - /* Check 2nd report */ - if (!MissingValueTester.isDataValueMissing(chc2)) { - ihght = (int) (chc2 / 10); - icovx = (int) prCtcf((chc2 - (ihght * 10))); - if (ihght > 178 && icovx > icovr) { - prcomh = chc2; - icovr = icovx; - } - } - - /* Check 3rd report */ - if (!MissingValueTester.isDataValueMissing(chc3)) { - ihght = (int) (chc3 / 10); - icovx = (int) prCtcf((chc3 - (ihght * 10))); - if (ihght > 178 && icovx > icovr) { - prcomh = chc3; - } - } - return prcomh; - } - - /*** - * Computes the combined height and numeric sky coverage for clouds, whose - * height is lesser than 63000 feet - * - * @param chc1 - * - Cloud height & coverage 1 - * @param chc2 - * - Cloud height & coverage 2 - * @param chc3 - * - Cloud height & coverage 3 - * @return the combined height & coverage for low clouds - */ - public static float prComl(float chc1, float chc2, float chc3) { - float prcoml = GempakConstants.RMISSD; - int icovr = -1; - if (!MissingValueTester.isDataValueMissing(chc1)) { - if (chc1 == 10000) { - /* Partially obscured conditions reported. */ - prcoml = 9.0f; - } else { - /* - * Check for thin obscured combined with cloud height and - * coverage and get height code - */ - int ichc1 = -1; - int ihght = -1; - int icovx = -1; - ichc1 = (chc1 > 10000 ? ((int) chc1 - 10000) : (int) chc1); - ihght = ichc1 / 10; - - /* Check height against low-level limit. */ - if (ihght <= 63) { - prcoml = chc1; - icovr = (int) prCtcf(((ichc1 % 10))); - } else if (chc1 > 10000) { - prcoml = 9.0f; - } - - /* Check 2nd cloud report. */ - if (!MissingValueTester.isDataValueMissing(chc2)) { - ihght = (int) (chc2) / 10; - icovx = (int) prCtcf(chc2 - (ihght * 10)); - if ((ihght <= 63) && (icovx > icovr)) { - prcoml = chc2; - icovr = icovx; + /** + * Converts the input temperature from Kelvin to Celsius + * @param tmpk - temperature in Kelvin + * @return the equivalent temperature in Celsius if tmpk is valid and + * RMISSD (-9999.0) otherwise + */ + + public static float prTmkc ( float tmpk ){ + return ( !MissingValueTester.isDataValueMissing(tmpk) + ? ( tmpk - GempakConstants.TMCK) : GempakConstants.RMISSD ); + } + + /** + *
+ * Computes the minimum temperature obtained by + * comparing the 6-hour minimum at 12Z and the 6-hour minimum at 18Z. + * if either of the 6-hour values is missing, the minimum is set to missing. + * The inputs are in degrees C, the output in degrees F. + *+ * @param t12n - 6-hour minimum temperature at 12Z, deg Celsius + * @param t18n - 6-hour minimum temperature at 18Z, deg Celsius + * @return the minimum temperature (in Farenheit) after comparing the two input values, if they exist + * and RMISSD (-9999.0) otherwise. + */ + public static float prDmin ( float t12n, float t18n ){ + if ( !MissingValueTester.isDataValueMissing(t12n) + && !MissingValueTester.isDataValueMissing(t18n)){ + float minValue = ( t12n < t18n ? t12n : t18n); + return prTmcf( minValue ); + } + return GempakConstants.RMISSD; + } + + /** + * Computes the wind direction in degrees from the input u and v components of velocity, + * both of which must be in the same units (either meters/second or knots) + * @param uX - U component of velocity + * @param vX- V component of velocity + * @return The wind direction in degrees + */ + public static float prDrct ( float uX, float vX){ + if ( !MissingValueTester.isDataValueMissing(uX) + && !MissingValueTester.isDataValueMissing(vX)){ + float prDrct = 0.0f; +// if ( ( uX != 0 ) && ( vX != 0 ) ){ + if ( ( uX != 0f ) || ( vX != 0f ) ){ + prDrct = (float) Math.atan2(-uX, -vX) * GempakConstants.RTD; + if ( prDrct <= 0 ) + prDrct += 360; + } + return prDrct; } - } - - /* Check 3rd cloud report. */ - if (!MissingValueTester.isDataValueMissing(chc3)) { - ihght = (int) (chc3) / 10; - icovx = (int) prCtcf(chc3 - (ihght * 10)); - if ((ihght <= 63) && (icovx > icovr)) { - prcoml = chc3; - } - } - - } - } - return prcoml; - } - - /*** - * Computes the combined height and numeric sky coverage for mid-level - * clouds, whose height is greater than 63000 feet but lesser than 179,000 - * feet. - * - * @param chc1 - * - Cloud height & coverage 1 - * @param chc2 - * - Cloud height & coverage 2 - * @param chc3 - * - Cloud height & coverage 3 - * @return the combined height & coverage for mid-level clouds - */ - public static float prComm(float chc1, float chc2, float chc3) { - float prcomm = GempakConstants.RMISSD; - int icovr = -1; - if (!MissingValueTester.isDataValueMissing(chc1)) { - int ichc1 = -1; - int ihght = -1; - int icovx = -1; - - /* - * Check for thin obscured combined with cloud height and coverage - * and get height code - */ - ichc1 = (chc1 >= 10000 ? ((int) chc1 - 10000) : (int) chc1); - ihght = ichc1 / 10; - - /* Check height against mid-level limits. */ - if ((ihght > 63) && (ihght < 179)) { - prcomm = chc1 % 10000; - icovr = (int) prCtcf(((ichc1 % 10))); - } - - /* Check 2nd cloud report. */ - if (!MissingValueTester.isDataValueMissing(chc2)) { - ihght = (int) (chc2) / 10; - icovx = (int) prCtcf(chc2 - (ihght * 10)); - if ((ihght > 63) && (ihght < 179) && (icovx > icovr)) { - prcomm = chc2; - icovr = icovx; - } - } - - /* Check 3rd cloud report. */ - if (!MissingValueTester.isDataValueMissing(chc3)) { - ihght = (int) (chc3) / 10; - icovx = (int) prCtcf(chc3 - (ihght * 10)); - if ((ihght > 63) && (ihght < 179) && (icovx > icovr)) { - prcomm = chc3; - } - } - - } - return prcomm; - } - - /*** - * Computes the highest cloud height and coverage from the low, mid and high - * cloud height and coverage - * - * @param coml - * - Low report height & coverage - * @param comm - * - Mid report height & coverage - * @param comh - * - High report height & coverage - * @return the highest combined cloud height and coverage - */ - public static float prComt(float coml, float comm, float comh) { - /* Sanity check */ - if (MissingValueTester.isDataValueMissing(coml) - || MissingValueTester.isDataValueMissing(comm) - || MissingValueTester.isDataValueMissing(comh)) { - return GempakConstants.RMISSD; - } else { - float prcomt = GempakConstants.RMISSD; - /* Decode coverage values for each level */ - int clcl = ((int) coml) - (((int) coml) / 10 * 10); - int clcm = ((int) comm) - (((int) comm) / 10 * 10); - int clch = ((int) comh) - (((int) comh) / 10 * 10); - - /* Get maximum coverage value */ - float clct = prClct(clcl, clcm, clch); - - /* Find maximum combined value */ - if (clct == clcl) - prcomt = coml; - else if (clct == clcm) - prcomt = comm; - else - prcomt = coml; - - return prcomt; - } - } - - /*** - * Computes the combined cloud height and coverage from the cloud height - * (clhx) and the cloud coverage (clcx) - * - * @param clhx - * - Cloud height - * @param clcx - * - Cloud coverage - * @return The combined cloud height and coverage - */ - public static float prComx(float clhx, float clcx) { - float prcomx = GempakConstants.RMISSD; - /* Check for clear case */ - if (clcx == 1) - prcomx = clcx; - /* - * Check for obscured clouds with missing height; return cloud - - * coverage only. - */ - else if (((clcx == 5) || (clcx == 9)) - && MissingValueTester.isDataValueMissing(clhx)) { - prcomx = clcx; - } - /* Check for missing or invalid data */ - else if ((clhx < 0) || MissingValueTester.isDataValueMissing(clhx)) - return GempakConstants.RMISSD; - else { - /* - * Combine data by multiplying height by 10 and adding clouds. - * Missing cloud amounts are given the value 0 (clear). - */ - int iclhx = (int) clhx; - int iclcx = (int) clcx; - if ((iclcx < 0) || (iclcx > 9)) - iclcx = 0; - prcomx = (iclhx * 10) + iclcx; - } - - return prcomx; - } - - /*** - * Computes the cloud type symbol number from the synoptic code cloud type - * number - * - * @param ctyh - * - Synoptic code for high cloud - * @return The cloud type symbol number after adding 20 to ctyh if ctyh lies - * between 1 and 9 and 0.0 otherwise - */ - public static float prCsyh(float ctyh) { - return (((ctyh >= 1) && (ctyh <= 9)) ? ctyh + 20 : 0.0f); - } - - /*** - * Computes the cloud type symbol number from the synoptic code cloud type - * number - * - * @param ctyl - * - Synoptic code for low cloud - * @return The cloud type symbol number as ctyl if ctyl lies between 1 and 9 - * and 0.0 otherwise - */ - public static float prCsyl(float ctyl) { - return (((ctyl >= 1) && (ctyl <= 9)) ? ctyl : 0.0f); - } - - /*** - * Computes the cloud type symbol number from the synoptic code cloud type - * number - * - * @param ctym - * - Synoptic code for mid cloud - * @return The cloud type symbol number after adding 10 to ctym if ctym lies - * between 1 and 9 and 0.0 otherwise - */ - public static float prCsym(float ctym) { - return (((ctym >= 1) && (ctym <= 9)) ? ctym + 10 : 0.0f); - } - - /*** - * Computes the cloud type symbol number for the first level at which clouds - * are reported - * - * @param ctyl - * - Synoptic code for low cloud - * @param ctym - * - Synoptic code for mid cloud - * @param ctyh - * - Synoptic code for high cloud - * @return Cloud symbol number - */ - public static float prCsyt(float ctyl, float ctym, float ctyh) { - float prcsyt = 0.0f; - if ((ctyl >= 1) && (ctyl <= 9)) { - prcsyt = ctyl; - } else if ((ctym >= 1) && (ctym <= 9)) { - prcsyt = ctym + 10; - } else if ((ctyh >= 1) && (ctyh <= 9)) { - prcsyt = ctyh + 20; - } - return prcsyt; - } - - /*** - * Computes the maximum cloud cover from the combined height/coverage for - * low, mid and high clouds - * - * @param chc1 - * - Combined height and coverage for low clouds - * @param chc2 - * - Combined height and coverage for mid clouds - * @param chc3 - * - Combined height and coverage for high clouds - * @return the maximum cloud cover - */ - public static float prCtcc(float chc1, float chc2, float chc3) { - float prctcc = GempakConstants.RMISSD; - - /* Sanity check */ - if (!MissingValueTester.isDataValueMissing(chc1) - && !MissingValueTester.isDataValueMissing(chc2) - && !MissingValueTester.isDataValueMissing(chc3)) { - /* - * Compute ordered values for each cloud cover, with checks for - * out-of-bounds values. - */ - int[] list = { 1, 2, 4, 6, 8, 10, 3, 5, 7, 9 }; - int[] invert = { 0, 1, 6, 2, 7, 3, 8, 4, 9, 5 }; - int ilow = 1; - int imed = 1; - int ihi = 1; - int iclcl = Math.round(chc1) % 10; - if ((iclcl >= 0) && (iclcl < 10)) - ilow = list[iclcl]; - - int iclcm = Math.round(chc2) % 10; - if ((iclcm >= 0) && (iclcm < 10)) - imed = list[iclcm]; - - int iclch = Math.round(chc3) % 10; - if ((iclch >= 0) && (iclch < 10)) - ihi = list[iclch]; - - int[] tempArray = { ilow, imed, ihi }; - Arrays.sort(tempArray); - - /* Compute maximum value */ - if (tempArray != null && tempArray.length == 3) { - int maxVal = tempArray[2]; - if (maxVal == 9) { - maxVal = (imed > ihi ? imed : ihi); - if (maxVal < 3) - maxVal = 9; - } - /* Invert maximum value to get numeric cloud coverage */ - // prctcc = invert[maxVal]; - prctcc = invert[maxVal - 1]; - } - } - return prctcc; - } - - /*** - * Computes the CFRT from CLCT. CFRT is the WMO fractional cloud cover table - * - * @param clct - * - is the numberic total cloud cover - * @return the WMO fractional cloud cover - */ - public static float prCtcf(float clct) { - int[] itable = { 0, 3, 6, 8, 9, 2, 5, 7, 0 }; - if (MissingValueTester.isDataValueMissing(clct)) { - return GempakConstants.RMISSD; - } - - /* Get fractional cloud cover WMO code */ - if ((clct > 0) && (clct <= 9)) { - return itable[(int) (clct - 1.)]; - } - - return GempakConstants.RMISSD; - } - - /** - * Divides a floating point number by 100 - * - * @param hvalue - * the value to divide - * @return the input value divided by 100, if hvalue is not missing and - * RMISSD (-9999.0) otherwise - */ - public static float prD100(float hvalue) { - return (!MissingValueTester.isDataValueMissing(hvalue) ? hvalue / 100 - : GempakConstants.RMISSD); - } - - /** - * Computes the density of dry air given the pressure (in mb) and - * temperature (in Celsius) - * - * @param pres - * - Pressure in millibars - * @param tmpc - * - Temperature in Celsius - * @return Density of dry air in kg/(m**3) - */ - public static float prDden(float pres, float tmpc) { - - float prdden = GempakConstants.RMISSD; - /* Check for bad data */ - if (!MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(tmpc) - && tmpc >= -GempakConstants.TMCK) { - /* Convert temperature and compute */ - float tmpk = prTmck(tmpc); - prdden = 100 * pres / (GempakConstants.RDGAS * tmpk); - } - return prdden; - } - - /*** - * Computes the dewpoint depression, from tmpx and dwpx, both of which must - * be in the same units (one of Kelvin, Celsius or Farenheit) - * - * @param tmpx - * - Air temperature - * @param dwpx - * - Dewpoint temperature - * @return the dewpoint depresssion (in the same units are tmpx and dwpx) if - * both tmpx and dwpx are valid values and RMISSD ( - 9999.0) - * otherwise. - */ - public static float prDdep(float tmpx, float dwpx) { - return ((!MissingValueTester.isDataValueMissing(tmpx) - && !MissingValueTester.isDataValueMissing(dwpx) && dwpx <= tmpx) ? (tmpx - dwpx) - : GempakConstants.RMISSD); - } - - /** - * Computes DMAX, the maximum temperature obtained by comparing the 6-hour - * maximum at 00Z, the 6-hour maximum at 06Z and the local midnight maximum - * (reported at 00 LST) if either of the 6-hour values is missing, the - * maximum is set to missing. The inputs are in Celsius, the output in - * degrees Farenheit - * - * @param t00x - * - 6-hour maximum temperature at 00Z, Celsius - * @param t06x - * - 6-hour maximum temperature at 06Z, Celsius - * @param tdxc - * - Local midnight max temperature at 00 LST, Celsius - * @return The maximum of the 3 temperature values (in Farenheit) - */ - public static float prDmax(float t00x, float t06x, float tdxc) { - if (MissingValueTester.isDataValueMissing(t00x) - || MissingValueTester.isDataValueMissing(t06x)) { - return GempakConstants.RMISSD; - } else if (!MissingValueTester.isDataValueMissing(tdxc)) { - float[] tempArray = { t00x, t06x, tdxc }; - Arrays.sort(tempArray); - return prTmcf(tempArray[2]); - } else { - return (t00x > t06x ? prTmcf(t00x) : prTmcf(t06x)); - } - } - - /** - * Converts the temperature from Celsius to Farenheit - * - * @param tmpc - * - the temperature in Celsius - * @return the temperature in Farenheit - */ - public static float prTmcf(float tmpc) { - return (!MissingValueTester.isDataValueMissing(tmpc) ? (tmpc * GempakConstants.RPRM) + 32 - : GempakConstants.RMISSD); - } - - /** - * Converts the temperature from Farenheit to Celsius - * - * @param tmpc - * - the temperature in Farenheit - * @return the temperature in Celsius - */ - public static float prTmfc(float tmpf) { - return (!MissingValueTester.isDataValueMissing(tmpf) ? (tmpf - 32) - / GempakConstants.RPRM : GempakConstants.RMISSD); - } - - /** - * Converts the input temperature from Farenheit to Kelvin - * - * @param tmpf - * - The input temperature in Farenheit - * @return the equivalent temperature in Kelvin if tmpf is valid or RMISSD ( - * -9999.0) otherwise - */ - public static float prTmfk(float tmpf) { - if (!MissingValueTester.isDataValueMissing(tmpf)) { - float tmpc = prTmfc(tmpf); - return prTmck(tmpc); - } else { - return GempakConstants.RMISSD; - } - } - - /** - * Converts the input temperature from Kelvin to Farenheit - * - * @param tmpk - * - the input temperature in Kelvin - * @return the equivalent temperature in Farenheit if tmpk is valid or - * RMISSD ( -9999.0) otherwise - */ - public static float prTmkf(float tmpk) { - return (!MissingValueTester.isDataValueMissing(tmpk) ? (prTmkc(tmpk) * GempakConstants.RPRM) + 32 - : GempakConstants.RMISSD); - } - - /** - * Converts the input temperature from Celsius to Kelvin - * - * @param tmpc - * - temperature in Celsius - * @return the equivalent temperature in Kelvin if tmpc is valid and RMISSD - * (-9999.0) otherwise - */ - public static float prTmck(float tmpc) { - return (!MissingValueTester.isDataValueMissing(tmpc) ? (tmpc + GempakConstants.TMCK) - : GempakConstants.RMISSD); - } - - /** - * Converts the input temperature from Kelvin to Celsius - * - * @param tmpk - * - temperature in Kelvin - * @return the equivalent temperature in Celsius if tmpk is valid and RMISSD - * (-9999.0) otherwise - */ - - public static float prTmkc(float tmpk) { - return (!MissingValueTester.isDataValueMissing(tmpk) ? (tmpk - GempakConstants.TMCK) - : GempakConstants.RMISSD); - } - - /** - *
- * Computes the minimum temperature obtained by - * comparing the 6-hour minimum at 12Z and the 6-hour minimum at 18Z. - * if either of the 6-hour values is missing, the minimum is set to missing. - * The inputs are in degrees C, the output in degrees F. - *- * - * @param t12n - * - 6-hour minimum temperature at 12Z, deg Celsius - * @param t18n - * - 6-hour minimum temperature at 18Z, deg Celsius - * @return the minimum temperature (in Farenheit) after comparing the two - * input values, if they exist and RMISSD (-9999.0) otherwise. - */ - public static float prDmin(float t12n, float t18n) { - if (!MissingValueTester.isDataValueMissing(t12n) - && !MissingValueTester.isDataValueMissing(t18n)) { - float minValue = (t12n < t18n ? t12n : t18n); - return prTmcf(minValue); - } - return GempakConstants.RMISSD; - } - - /** - * Computes the wind direction in degrees from the input u and v components - * of velocity, both of which must be in the same units (either - * meters/second or knots) - * - * @param uX - * - U component of velocity - * @param vX - * - V component of velocity - * @return The wind direction in degrees - */ - public static float prDrct(float uX, float vX) { - if (!MissingValueTester.isDataValueMissing(uX) - && !MissingValueTester.isDataValueMissing(vX)) { - float prDrct = 0.0f; - // if ( ( uX != 0 ) && ( vX != 0 ) ){ - if ((uX != 0f) || (vX != 0f)) { - prDrct = (float) Math.atan2(-uX, -vX) * GempakConstants.RTD; - if (prDrct <= 0) - prDrct += 360; - } - return prDrct; - } - return GempakConstants.RMISSD; - } - - /** - * Computes the dewpoint as the difference between the input temperature and - * dewpoint depression - * - * @param tmpx - * - temperature (in Celsius or Farenheit or Kelvin) - * @param dpdx - * - the dewpoint depression ( in the same units as the - * temperature) - * @return the dewpoint in the same units as tmpx and dpdx if both input - * parameters are valid and RMISSD ( - 9999.0) otherwise - */ - public static float prDwdp(float tmpx, float dpdx) { - return ((!MissingValueTester.isDataValueMissing(tmpx) && !MissingValueTester - .isDataValueMissing(dpdx)) ? tmpx - dpdx - : GempakConstants.RMISSD); - } - - /** - * Computes the dewpoint ( in Celsius ) from the mixing ratio (in - * grams/kilogram) and the pressure (in mb) - * - * @param rmix - * - the mixing ratio (in grams/kilogram) - * @param pres - * - the pressure (in mb) - * @return the dewpoint (in Celsius), if both the input values are valid and - * RMISSD (-9999.0) otherwise - */ - public static float prDwpt(float rmix, float pres) { - float prDwpt = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(rmix) - && !MissingValueTester.isDataValueMissing(pres) && (rmix > 0) - && (pres > 0)) { - /* Convert gram/kilogram to gram/gram */ - float ratio = rmix / 1000; - - /* Calculate vapor pressure from mixing ratio and pressure */ - float vaporPressure = (pres * ratio) / (0.62197f + ratio); - - /* Correct vapor pressure */ - vaporPressure = vaporPressure - / (1.001f + ((pres - 100.0f) / 900.0f) * .0034f); - - /* Calculate dewpoint */ - prDwpt = (float) (Math.log(vaporPressure / 6.112) * 243.5 / (17.67 - Math - .log(vaporPressure / 6.112))); - } - return prDwpt; - } - - /*** - * Computes the Fosberg index from the temperature, relative humidity and - * wind speed at the surface. - * - * @param tmpc - * - Temperature in Celsius - * @param relh - * - Relative humidity in percent - * @param sped - * - Wind speed in meters/second - * @return the Fosberg index - */ - public static float prFosb(float tmpc, float relh, float sped) { - float prfosb = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(relh) - && !MissingValueTester.isDataValueMissing(sped)) { - /* Change temperature to degrees Fahrenheit */ - float tf = prTmcf(tmpc); - - /* Convert wind speed from meters/second to knots */ - float sknt = prMskn(sped); - - /* Convert wind speed from knots to miles/hour */ - float smph = prKnmh(sknt); - - float A = 0.03229f; - float B = 0.281073f; - float C = 0.000578f; - float D = 2.22749f; - float E = 0.160107f; - float F = 0.014784f; - float G = 21.0606f; - float H = 0.005565f; - float P = 0.00035f; - float Q = 0.483199f; - float R = 0.3002f; - // float T = 9.0f/5.0f; - // float U = 1.9425f; - // float V = 0.868976f; - float fw = GempakConstants.RMISSD; - if (relh <= 10) { - fw = A + B * relh - C * relh * tf; - } else if (relh <= 50) { + return GempakConstants.RMISSD; + } + + /** + * Computes the dewpoint as the difference between the input temperature and dewpoint depression + * @param tmpx - temperature (in Celsius or Farenheit or Kelvin) + * @param dpdx - the dewpoint depression ( in the same units as the temperature) + * @return the dewpoint in the same units as tmpx and dpdx if both input parameters are valid and RMISSD ( - 9999.0) + * otherwise + */ + public static float prDwdp( float tmpx, float dpdx ){ + return ( ( !MissingValueTester.isDataValueMissing(tmpx) + && !MissingValueTester.isDataValueMissing(dpdx)) ? tmpx - dpdx : GempakConstants.RMISSD ); + } + + /** + * Computes the dewpoint ( in Celsius ) from the mixing ratio (in grams/kilogram) + * and the pressure (in mb) + * @param rmix - the mixing ratio (in grams/kilogram) + * @param pres - the pressure (in mb) + * @return the dewpoint (in Celsius), if both the input values are valid and RMISSD (-9999.0) + * otherwise + */ + public static float prDwpt(float rmix, float pres){ + float prDwpt = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(rmix) + && !MissingValueTester.isDataValueMissing(pres) + && ( rmix > 0) + && ( pres > 0)){ + /*Convert gram/kilogram to gram/gram*/ + float ratio = rmix / 1000; + + /*Calculate vapor pressure from mixing ratio and pressure*/ + float vaporPressure = ( pres * ratio ) / ( 0.62197f + ratio ); + + /*Correct vapor pressure*/ + vaporPressure = vaporPressure / (1.001f + ((pres - 100.0f) / 900.0f) * .0034f); + + /*Calculate dewpoint*/ + prDwpt = ( float ) ( Math.log ( vaporPressure / 6.112 ) * 243.5 / ( 17.67 - Math.log( vaporPressure / 6.112 ))); + } + return prDwpt; + } + + /*** + * Computes the Fosberg index from the temperature, relative humidity and wind speed + * at the surface. + * @param tmpc - Temperature in Celsius + * @param relh - Relative humidity in percent + * @param sped - Wind speed in meters/second + * @return the Fosberg index + */ + public static float prFosb(float tmpc, float relh, float sped){ + float prfosb = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(relh) + && !MissingValueTester.isDataValueMissing(sped)){ + /*Change temperature to degrees Fahrenheit*/ + float tf = prTmcf ( tmpc ); + + /*Convert wind speed from meters/second to knots*/ + float sknt = prMskn ( sped ); + + /*Convert wind speed from knots to miles/hour*/ + float smph = prKnmh ( sknt ); + + float A = 0.03229f; + float B = 0.281073f; + float C = 0.000578f; + float D = 2.22749f; + float E = 0.160107f; + float F = 0.014784f; + float G = 21.0606f; + float H = 0.005565f; + float P = 0.00035f; + float Q = 0.483199f; + float R = 0.3002f; +// float T = 9.0f/5.0f; +// float U = 1.9425f; +// float V = 0.868976f; + float fw = GempakConstants.RMISSD; + if ( relh <= 10 ) { + fw = A + B * relh - C * relh * tf; + } + else if ( relh <= 50 ) { fw = D + E * relh - F * tf; - } else { - fw = G + H * relh * relh - P * relh * tf - Q * relh; - } + } + else{ + fw = G + H *relh*relh - P * relh * tf - Q * relh; + } - float sss = (float) (Math.sqrt(1. + (smph * smph))); - float fwd = fw / 30.0f; - float fwd2 = fwd * fwd; - float fwd3 = fwd2 * fwd; - float fire = 1 - 2 * fwd + 1.5f * fwd2 - 0.5f * fwd3; + float sss = ( float ) ( Math.sqrt ( 1. + ( smph * smph ) )); + float fwd = fw / 30.0f; + float fwd2 = fwd * fwd; + float fwd3 = fwd2 * fwd; + float fire = 1 - 2 * fwd + 1.5f * fwd2 - 0.5f * fwd3; + + /*Find the Fosberg Index*/ + + prfosb = ( fire * sss ) / R; + + } + return prfosb; + } + + /** + * Computes the equivalent speed in knots from the input speed in meters/second + * using the equation: SKNT = SPED * 1.9425 + * @param sped - speed in meters/second + * @return the speed in knots if sped is not missing and RMISSD (-9999.0) otherwise. + */ + public static float prMskn ( float sped ){ + return ( !MissingValueTester.isDataValueMissing(sped) + ? ( sped * GempakConstants.METERS_PER_SEC_TO_KNOTS) : GempakConstants.RMISSD ); + } - /* Find the Fosberg Index */ + /** + * Computes the equivalent speed in meters/second from the input speed in knots + * using the equation: SPED = SKNT / 1.9425 + * @param sknt - speed in knots + * @return the speed in knots if sknt is not missing and RMISSD (-9999.0) otherwise. + */ + public static float prKnms ( float sknt ){ + return ( !MissingValueTester.isDataValueMissing(sknt) + ? ( sknt * GempakConstants.KNOTS_TO_METERS_PER_SEC ) : GempakConstants.RMISSD ); + } + + + /** + * Computes the equivalent speed in miles/hour from the input speed in knots + * using the equation: SMPH = SKNT / 0.868976 + * @param sknt - speed in knots + * @return the speed in miles/hour if sknt is not missing and RMISSD (-9999.0) otherwise. + */ + public static float prKnmh ( float sknt ){ + return ( !MissingValueTester.isDataValueMissing(sknt) + ? ( sknt * GempakConstants.KNOTS_TO_MILES_PER_HOUR) : GempakConstants.RMISSD ); + } - prfosb = (fire * sss) / R; + /** + * Computes the equivalent speed in knots from the input speed in miles/hour + * using the equiation: SKNT = SMPH * 0.868976 + * @param smph - speed in miles/hour + * @return the speed in knots if smph is not missing and RMISSD (-9999.0) otherwise. + */ + public static float prMhkn ( float smph ){ + return ( !MissingValueTester.isDataValueMissing(smph) + ? ( smph * GempakConstants.MILES_PER_HOUR_TO_KNOTS) : GempakConstants.RMISSD ); + } + + /** + * Determines the height in meters which corresponds to a + * given code figure from WMO Code Table 1677. If the given code + * figure is found to be invalid, then RMISSD is returned. + * @param hhString - the code figure from WMO table 1677 + * @return the Height in meters if the input string is parsed correctly and + * if the integer code lies between the correct ranges. Otherwise it + * returns RMISSD (-9999.0) . + * + */ + public static float prHcdm( String hhString ){ + hhString.trim(); + float prhcdm = GempakConstants.RMISSD; + if (hhString.length() != 2) return prhcdm; + try{ + float hh = Float.parseFloat(hhString.substring(0, 2)); + int ihh = (int) hh; + if ( ( ihh >= 0 ) && ( ihh <= 50 ) ) + prhcdm = ihh * 30f; + else if ( (ihh >= 56) && (ihh <= 80) ) // what about numbers from 51-56? + prhcdm = ( ihh - 50f ) * 300f; + else if ( ( ihh >= 81 ) && ( ihh <= 89 ) ) + prhcdm = ( ( ihh - 80f ) * 1500f ) + 9000f ; + + /* (Non-Javadoc) Code figures 90 through 99 will also be mapped to + * RMISSD, since there is no clear way to set a single output + * value for the ranges represented by such code figures. + * */ - } - return prfosb; - } + }catch ( NumberFormatException e ){ + System.out.println(e.getMessage()); + } + return prhcdm; + } + + /** + *
+ * Computes the Southern Region/CPC Rothfusz heat index. + * + * The Rothfusz regression is optimal for TMPF > ~80 and RELH > ~40%. + * This code applies a simple heat index formula and then resorts to + * the Rothfusz regression only if the simple heat index exceeds 80, + * implying temperatures near, but slightly below 80. To make the + * simple calculation continuous with the values obtained from the + * Rothfusz regression, the simple result is averaged with TMPF in + * computing the simple heat index value. + * Source: NWS Southern Region SSD Technical Attachment SR 90-23 7/1/90. + * Heat Index was originally known as the apparent temperature index + * (Steadman, JAM, July, 1979). + * This code includes adjustments made by the CPC for low RELH at high + * TMPF and high RELH for TMPF in the mid 80's. + * + * + * @param tmpf - the input air temperature + * @param relh - the relative humidity + * @return the heat index (in deg Farenheit) if both + * the input air temperature and relative humidity + * are valid values and RMISSD (-9999.0) otherwise + *+ */ + public static float prHeat( float tmpf, float relh ){ + float prheat = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpf) + && !MissingValueTester.isDataValueMissing(relh) ){ + /*If the temperature is less than 40 degrees, set the heat index to the temperature*/ + if ( tmpf <= 40.0f ) + prheat = tmpf; + else{ + /* + * Compute a simple heat index. If the value is less than 80 deg F + * use it + */ + prheat = (float) (61 + ( tmpf - 68 ) * 1.2 + relh * 0.094); + prheat = (float) ( ( tmpf + prheat ) * 0.5); + /*Else compute the full regression value*/ + if ( prheat >= 80.0 ){ + float t2 = tmpf * tmpf; + float r2 = relh * relh; + prheat = ( float ) ( -42.379 + + 2.04901523 * tmpf + + 10.14333127 * relh + - 0.22475541 * tmpf * relh + - 0.00683783 * t2 + - 0.05481717 * r2 + + 0.00122874 * t2 * relh + + 0.00085282 * tmpf *r2 + - 0.00000199 * t2 * r2 ); + /* + * Adjust for high regression at low relative humidity for temperatures above 80 degrees F. + */ + if ( ( relh <= 13.0 ) && ( ( tmpf >= 80.0 ) &&( tmpf <= 112.0 ) ) ) { + float adj1 = ( float) ( ( 13. - relh ) / 4 ); + float adj2 = ( float ) ( Math.sqrt ( ( 17 - Math.abs (tmpf - 95) ) / 17 )); + float adj = adj1 * adj2; + prheat -= adj; + } + /* + * Adjust for low regression at high relative humidity and temperatures in the mid-80s + */ + else if (( relh > 85 ) && ( ( tmpf >= 80.0 ) &&( tmpf <= 87.0 ) )){ + float adj1 = ( float) ( ( relh - 85.0 ) / 10.0 ); + float adj2 = ( float ) ( ( 87.0 - tmpf ) / 5); + float adj = adj1 * adj2; + prheat += adj; + } + } + } + } + return prheat; + } + + /*** + * Computes the height (rounded off to the nearest foot) in feet for + * the input height in meters. The equation used is: + * HGFT = math.round ( HGHT * 3.28084 ) + * @param hght - the height in meters + * @return the height in feet + */ + public static float prHgmf(float hght){ + /*Sanity check*/ + if( MissingValueTester.isDataValueMissing(hght) ){ + return GempakConstants.RMISSD; + } +// return ( (int) ( hght * GempakConstants.METERS_TO_FEET ) ); + return ( Math.round ( hght * GempakConstants.METERS_TO_FEET ) ); + } + + /** + * Computes the height in meters from the input height in feet using + * the equation: HGHT = HGFT * .3048 + * @param hgft - the height in feet + * @return the equivalent height in meters if the input hgft is valid and RMISSD ( -9999.0 ) otherwise + */ + public static float prHgfm( float hgft ){ + return ( !MissingValueTester.isDataValueMissing(hgft) + ? ( hgft * GempakConstants.FEET_TO_METERS ) : GempakConstants.RMISSD ); + } - /** - * Computes the equivalent speed in knots from the input speed in - * meters/second using the equation: SKNT = SPED * 1.9425 - * - * @param sped - * - speed in meters/second - * @return the speed in knots if sped is not missing and RMISSD (-9999.0) - * otherwise. - */ - public static float prMskn(float sped) { - return (!MissingValueTester.isDataValueMissing(sped) ? (sped * GempakConstants.METERS_PER_SEC_TO_KNOTS) - : GempakConstants.RMISSD); - } + /** + * Computes the height in miles from the input height in feet using + * the equation: HGML = HGFT / 5280. + * @param hgft - the height in feet + * @return the equivalent height in miles if the input hgft is valid and RMISSD ( -9999.0 ) otherwise + */ + public static float prHgfs ( float hgft){ + return ( !MissingValueTester.isDataValueMissing(hgft) + ? ( hgft * GempakConstants.FEET_TO_MILES ) : GempakConstants.RMISSD ); + } - /** - * Computes the equivalent speed in meters/second from the input speed in - * knots using the equation: SPED = SKNT / 1.9425 - * - * @param sknt - * - speed in knots - * @return the speed in knots if sknt is not missing and RMISSD (-9999.0) - * otherwise. - */ - public static float prKnms(float sknt) { - return (!MissingValueTester.isDataValueMissing(sknt) ? (sknt * GempakConstants.KNOTS_TO_METERS_PER_SEC) - : GempakConstants.RMISSD); - } + /** + * Computes the height in feet from the input height in miles using the + * equation: HGFT = HGML * 5280 + * @param hgml - the height in miles + * @return the equivalent height in miles if the input hgml is valid and RMISSD ( -9999.0 ) otherwise + */ + public static float prHgsf ( float hgml){ + return ( !MissingValueTester.isDataValueMissing(hgml) + ? ( hgml * GempakConstants.MILES_TO_FEET ) : GempakConstants.RMISSD ); + } + + /** + * Computes the height in kilometers, from the input height in meters + * @param value - height in meters + * @return the equivalent height in kilometers if the input value is valid and RMISSD ( - 9999.0) + * otherwise. + */ + public static float prHgmk(float value){ + return ( ( value != GempakConstants.RMISSD ) + ? ( value * GempakConstants.METERS_TO_KILOMETERS ) + : GempakConstants.RMISSD ); + } + + + /** + * Computes the height in meters, from the input height in kilometers + * @param value - height in kilometers + * @return the equivalent height in meters if the input value is valid and RMISSD ( - 9999.0) + * otherwise. + */ + public static float prHgkm(float value){ + return ( ( value != GempakConstants.RMISSD ) + ? ( value * GempakConstants.KILOMETERS_TO_METERS ) + : GempakConstants.RMISSD ); + } + + /** + * Computes the height in decameters, from the input height in meters + * @param hght - height in meters + * @return the equivalent height in decameters if the input value is valid and RMISSD ( - 9999.0) + * otherwise. + */ + public static float prHgmd(float hght){ + return ( ( hght != GempakConstants.RMISSD ) + ? ( hght * GempakConstants.METERS_TO_DECAMETERS ) + : GempakConstants.RMISSD ); + } + + + /** + * Computes the height in meters, from the input height in nautical miles using + * the equation: HGTM = 1852. * HGTN + * @param hgtn - height in nautical miles + * @return the equivalent height in meters if the input value is valid and RMISSD ( - 9999.0) + * otherwise. + */ + public static float prHgnm(float hgtn){ + return ( ( hgtn != GempakConstants.RMISSD ) + ? ( hgtn * GempakConstants.NAUTICAL_MILES_TO_METERS ) + : GempakConstants.RMISSD ); + } + + /** + * Computes the humiture index from the air temperature and the dew point + * temperature using the equation: PR_HMTR = TMPF + ( PR_VAPR ( DWPC ) - 21 ) + * @param tmpf - the air temperature (in Farenheit) + * @param dwpf - the dew point (in Farenheit) + * @return the humiture index if both the air temperature and the dewpoint temperature are + * valid values and RMISSD ( -9999.0) otherwise + */ + public static float prHmtr( float tmpf, float dwpf){ + float prhmtr = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpf) + && ( !MissingValueTester.isDataValueMissing(dwpf))){ + float dwpc = prTmfc(dwpf); + prhmtr = tmpf + ( prVapr( dwpc ) - 21 ); + } + return prhmtr; + } + + /** + * Computes the vapor pressure ( in mb) from the input + * dewpoint temperature in Celsius using the equation: + * VAPR = 6.112 * EXP [ (17.67 * DWPC) / (DWPC + 243.5) ] + * @param dwpc - the dewpoint temperature ( in Celsius ) + * @return the vapor pressure ( in mb) from the dewpoint temperature if it is valid + * and RMISSD ( - 9999.0) otherwise + */ + public static float prVapr ( float dwpc){ + if ( !MissingValueTester.isDataValueMissing(dwpc) + && ( dwpc >= -240.0f) ){ + return ( (float) ( 6.112 * ( Math.exp ( ( 17.67 * dwpc ) / ( dwpc + 243.5) ) ) ) ); + } + return GempakConstants.RMISSD; + } + + /** + * Computes the rate of ice accretion/growth of ice + * on a vessel in salt water, in units of inches per 3 hours (the WMO standard) + * The formula used is + * IGRO = ( A*pr + B*pr*pr + C*pr*pr*pr ) * CVFAC + * where + * A = 2.73 * 10e-2 + * B = 2.91 * 10e-4 + * C = 1.84 * 10e-6 + * pr = ( sped * ( -1.7 - tmpc ) ) / ( 1 + 0.4 * ( sstc + 1.7 ) ) + * (priesendorfer regression) + * and + * CVFAC = 1.1811, to convert cm/hr to in/3hr. + * + * @param tmpc - the observed surface air temperature in Celsius + * @param sstc - the observed surface sea temperature in Celsius + * @param sped - the observed wind speed + * @return the rate of ice growth if all the input values are valid and lie between specific limits + * and if the rate of ice growth that is computed is greater than or equal to 0, + * or RMISSD (-9999.0) + */ + public static float prIgro ( float tmpc, float sstc, float sped){ + float prigro = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(sstc) + && !MissingValueTester.isDataValueMissing(sped)){ + + /* Check that these values are within the valid range */ + if ( ( sped >= 0 && sped <= 50) + && ( tmpc >= -20 && tmpc <= 0 ) + && ( sstc >= -1.7f && sstc <= 12 )){ + + float A = 0.0273f; + float B = 0.000291f; + float C = 0.00000184f; + float cvfac = 1.1811f; // to convert cm/hr to in per 3 hours + float pr = (float) (( sped * ( -1.7 - tmpc ) ) / ( 1 + 0.4 * ( sstc + 1.7 ) )); // Compute the Priesendorfer regression + float pr2 = pr * pr; + prigro = (float) ( A * pr + B * pr2 + C * pr * pr2 ) * cvfac; + if(prigro < 0) + prigro = GempakConstants.RMISSD; + } + } + return prigro; + } + + /** + * Converts the input value (in inches) to millimeters using the equation: + * INMM = XINCH * 25.4 + * @param xinch - input value in inches + * @return the equivalent value in millimeters if the input value is not missing + * and RMISSD otherwise. + */ + public static float prInmm( float xinch){ + return ( !MissingValueTester.isDataValueMissing(xinch) + ? ( xinch * GempakConstants.INCHES_TO_MILLIMETERS) : GempakConstants.RMISSD ); + } + + /** + * Converts the input height in millimeters to inches using the equation: + * MMIN = .0393701 * XMILM + * @param xmilm - the input height in millimeters + * @return the equivalent height in inches if the input height is valid or + * RMISSD otherwise. + */ + public static float prMmin( float xmilm){ + return ( !MissingValueTester.isDataValueMissing(xmilm) + ? ( xmilm * GempakConstants.MILLIMETERS_TO_INCHES) : GempakConstants.RMISSD ); + } + + /** + * Computes the mountain obscuration threshold met indicator + * @param cmsl - Ceiling converted to MSL in 100's of ft + * @param otval - Mountain obscuration threshold in 100's of ft + * @return The mountain obscuration threshold met indicator if + * the input values are valid or RMISSD (-9999) otherwise + */ + public static float prMobs ( float cmsl, float otval){ + if ( !MissingValueTester.isDataValueMissing(cmsl) + && !MissingValueTester.isDataValueMissing(otval)){ + return ( (cmsl < otval) ? 1.0f : 0.0f ); + } + return GempakConstants.RMISSD; + } + + /** + * Computes the actual latitude given the range, azimuth and station latitude, longitude and elevation. + * Equations developed for use in the AOIPS radar package are used. + * @param slat - the station latitude + * @param slon - the station longitude + * @param range - the range in kilometers + * @param azim - the geographic azimuth in radians + * @param selv - the station elevation + * @return the actual latitude if all the input parameters are valid and RMISSD ( -9999.0) + * otherwise + */ + public static float prLati ( float slat, float slon, float range, float azim, float selv ){ + getRZLLInstance().prRzll ( slat, slon, range, azim, selv); + return getRZLLInstance().getXlat(); + } - /** - * Computes the equivalent speed in miles/hour from the input speed in knots - * using the equation: SMPH = SKNT / 0.868976 - * - * @param sknt - * - speed in knots - * @return the speed in miles/hour if sknt is not missing and RMISSD - * (-9999.0) otherwise. - */ - public static float prKnmh(float sknt) { - return (!MissingValueTester.isDataValueMissing(sknt) ? (sknt * GempakConstants.KNOTS_TO_MILES_PER_HOUR) - : GempakConstants.RMISSD); - } + /** + * Computes the actual longitude given the range, azimuth and station latitude, longitude and elevation. + * Equations developed for use in the AOIPS radar package are used. + * @param slat - the station latitude + * @param slon - the station longitude + * @param range - the range in kilometers + * @param azim - the geographic azimuth in radians + * @param selv - the station elevation + * @return the actual longitude if all the input parameters are valid and RMISSD ( -9999.0) + * otherwise + */ + public static float prLoni ( float slat, float slon, float range, float azim, float selv ){ + getRZLLInstance().prRzll ( slat, slon, range, azim, selv); + return getRZLLInstance().getXlon(); + } + + /** + * Computes the latent heat of vaporization at constant pressure + * from the input temperature (in Celsius) using the equation: + * LHVP = ( 2.500 - .00237 * TMPC ) * 10E6 + * LHVP is in J/kg. + * @param tmpc - the input temperature (in Celsius) + * @return the latent heat of vaporization at constant pressure if + * the input temperature is valid and RMISSD ( -9999.0) + * otherwise + */ + public static float prLhvp( float tmpc){ + return ( !MissingValueTester.isDataValueMissing(tmpc) + ? ( float) ( (2.500 - 0.00237 * tmpc) * 1000000) + : GempakConstants.RMISSD); + } + + /** + * Computes the temperature of a parcel lifted (or sunk) + * adiabatically to a given pressure. + * @param thta - Potential temperature in Kelvin + * @param thte - Equivalent potential temp in Kelvin + * @param pres - Lifted pressure + * @return the lifted temperature in Celsius, if all the input parameters are valid or + * RMISSD (-9999.0) otherwise + */ + public static float prLtmp ( float thta, float thte, float pres ){ + float prltmp = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(thta) + && !MissingValueTester.isDataValueMissing(thte) + && !MissingValueTester.isDataValueMissing(pres)){ + + /*Compute parcel temperatures on moist and dry adiabats*/ + float tmpe = prTmst ( thte, pres, 0.0f); + float tmpd = prTmpk ( pres, thta); + if ( !MissingValueTester.isDataValueMissing( tmpe ) + && !MissingValueTester.isDataValueMissing( tmpd ) ){ + + /* + * ( Non-Javadoc ) + * The correct parcel temperature is the warmer of the + * temperature on the dry adiabat and the temperature on the + * moist adiabat. + */ + prltmp = ( tmpe > tmpd ? prTmkc ( tmpe ) : prTmkc ( tmpd ) ); + } + } + return prltmp; + } - /** - * Computes the equivalent speed in knots from the input speed in miles/hour - * using the equiation: SKNT = SMPH * 0.868976 - * - * @param smph - * - speed in miles/hour - * @return the speed in knots if smph is not missing and RMISSD (-9999.0) - * otherwise. - */ - public static float prMhkn(float smph) { - return (!MissingValueTester.isDataValueMissing(smph) ? (smph * GempakConstants.MILES_PER_HOUR_TO_KNOTS) - : GempakConstants.RMISSD); - } - - /** - * Determines the height in meters which corresponds to a given code figure - * from WMO Code Table 1677. If the given code figure is found to be - * invalid, then RMISSD is returned. - * - * @param hhString - * - the code figure from WMO table 1677 - * @return the Height in meters if the input string is parsed correctly and - * if the integer code lies between the correct ranges. Otherwise it - * returns RMISSD (-9999.0) . - * - */ - public static float prHcdm(String hhString) { - hhString.trim(); - float prhcdm = GempakConstants.RMISSD; - if (hhString.length() != 2) - return prhcdm; - try { - float hh = Float.parseFloat(hhString.substring(0, 2)); - int ihh = (int) hh; - if ((ihh >= 0) && (ihh <= 50)) - prhcdm = ihh * 30f; - else if ((ihh >= 56) && (ihh <= 80)) // what about numbers from - // 51-56? - prhcdm = (ihh - 50f) * 300f; - else if ((ihh >= 81) && (ihh <= 89)) - prhcdm = ((ihh - 80f) * 1500f) + 9000f; - - /* - * (Non-Javadoc) Code figures 90 through 99 will also be mapped to - * RMISSD, since there is no clear way to set a single output value - * for the ranges represented by such code figures. - */ - - } catch (NumberFormatException e) { - System.out.println(e.getMessage()); - } - return prhcdm; - } - - /** - *
- * Computes the Southern Region/CPC Rothfusz heat index. - * - * The Rothfusz regression is optimal for TMPF > ~80 and RELH > ~40%. - * This code applies a simple heat index formula and then resorts to - * the Rothfusz regression only if the simple heat index exceeds 80, - * implying temperatures near, but slightly below 80. To make the - * simple calculation continuous with the values obtained from the - * Rothfusz regression, the simple result is averaged with TMPF in - * computing the simple heat index value. - * Source: NWS Southern Region SSD Technical Attachment SR 90-23 7/1/90. - * Heat Index was originally known as the apparent temperature index - * (Steadman, JAM, July, 1979). - * This code includes adjustments made by the CPC for low RELH at high - * TMPF and high RELH for TMPF in the mid 80's. - * - * - * @param tmpf - the input air temperature - * @param relh - the relative humidity - * @return the heat index (in deg Farenheit) if both - * the input air temperature and relative humidity - * are valid values and RMISSD (-9999.0) otherwise - *- */ - public static float prHeat(float tmpf, float relh) { - float prheat = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpf) - && !MissingValueTester.isDataValueMissing(relh)) { - /* - * If the temperature is less than 40 degrees, set the heat index to - * the temperature - */ - if (tmpf <= 40.0f) - prheat = tmpf; - else { - /* - * Compute a simple heat index. If the value is less than 80 deg - * F use it - */ - prheat = (float) (61 + (tmpf - 68) * 1.2 + relh * 0.094); - prheat = (float) ((tmpf + prheat) * 0.5); - /* Else compute the full regression value */ - if (prheat >= 80.0) { - float t2 = tmpf * tmpf; - float r2 = relh * relh; - prheat = (float) (-42.379 + 2.04901523 * tmpf + 10.14333127 - * relh - 0.22475541 * tmpf * relh - 0.00683783 * t2 - - 0.05481717 * r2 + 0.00122874 * t2 * relh - + 0.00085282 * tmpf * r2 - 0.00000199 * t2 * r2); + /** + * Multiplies the input value by 100 + * @param value - the value to be multiplied + * @return the value multiplied by 100 if it is not missing or RMISSD ( -9999.0) otherwise + */ + public static float prM100 ( float value ){ + return ( !MissingValueTester.isDataValueMissing(value) ? ( value * 100.0f) : GempakConstants.RMISSD ); + } + + /** + *
+ * Computes the moist hydrostatic height at pressure pt from a lower + * height and pressure, and the scale height in the layer. + * The moist hydrostatic height is computed as an integrated quantity. + * Thus, the lower height should have been integrated from the surface. + * The equation used is: PR_MHGT = HB + SCALE * ALOG ( PB / PT ) + * @param hb - Bottom height + * @param pb - Bottom pressure + * @param pt - Top pressure + * @param scale - Scale height + * @return The moist hydrostatic height if all the input values are valid and if the + * pressure and temperature are greater than 0. Or RMISSD (-9999.0) otherwise. + *+ */ + public static float prMhgt ( float hb, float pb, float pt, float scale){ + if ( !MissingValueTester.isDataValueMissing(hb) + && !MissingValueTester.isDataValueMissing(pb) + && !MissingValueTester.isDataValueMissing(pt) + && !MissingValueTester.isDataValueMissing(scale) + && ( pt > 0) && ( pb > 0) ){ + return ( ( float ) ( hb + scale * Math.log ( pb / pt ) ) ); + } + + return GempakConstants.RMISSD; + } + + /** + * Extracts the pressure change ( in millibars ) from + * the pressure tendency information + * @param p03d - Pressure tendency information + * @return the pressure change ( in mb ) + */ + public static float prP03c( float p03d){ + float prp03c = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(p03d)){ + float[] psign = {1, 1, 1, 1, 0, -1, -1, -1, -1}; + int itendc = ( int ) ( p03d / 1000); +// float ptend = ( float ) ( ( ( ( int ) p03d ) % 1000 ) / 10 ); + float ptend = ( float ) ( ( ( int ) p03d ) % 1000 ) / 10f; + // TODO: compare tests with legacy + if ( itendc < psign.length ) + prp03c = psign[itendc] * ptend; + } + return prp03c; + } + + /** + * Translates a WMO pressure tendency string into the pressure tendency + * code * 1000 + the magnitude of the change in tenths of millibars. + * @param ctend - the WMO pressure tendency string + * @return the pressure change information + */ + public static float prP03d( String ctend ){ + if (ctend != null && !ctend.isEmpty()) { +// String cc = ctend.substring(0, 4); + /* 88888888888888888888888888888888 */ + String cc = ctend.substring(0); + if (cc.length() >= 4) { + cc = ctend.substring(0, 4); + } + /* 888 */ +// if ( cc.charAt( 0 ) > '0' && cc.charAt( 0 ) > '8' && ( cc.compareTo( "999" ) != 0 ) ) { + if ( cc.charAt( 0 ) >= '0' && cc.charAt( 0 ) <='8' && ( cc.compareTo( "999" ) != 0 ) ) { +// return Float.parseFloat( cc ); + /* 8888888888888888888888888888888888 */ + float p03d = GempakConstants.RMISSD; + try { + p03d =Float.parseFloat( cc ); + } catch (Exception e) { + p03d = GempakConstants.RMISSD; + } + return p03d; + /* 888 */ + } + } + return GempakConstants.RMISSD; + } + + /** + * Computes station pressure from altimeter and station elevation using + * the equation + * PALT = ALTM * ( 1 - ( SELK * GAMUSD / To ) ) ** expo + * where + * SELK = SELV / 1000 + * To = US Std. Atmos. sea level temp in Kelvin + * = TMCK + 15 + * expo = GRAVTY / ( GAMUSD * RDGAS ) * 1000 + * Wallace and Hobbs. + * + * @param altm - Altimeter in millibars + * @param selv - Station elevation in meters + * @return the pressure in millibars if nont of the input values are missing and + * RMISSD ( otherwise ) + */ + public static float prPalt ( float altm, float selv){ + + float prpalt = GempakConstants.RMISSD; + + if ( !MissingValueTester.isDataValueMissing(altm) + && !MissingValueTester.isDataValueMissing(selv)){ + + float hgtk = prHgmk ( selv ); + + /*Calculate the exponent*/ + float expo = ( GempakConstants.GRAVTY / ( GempakConstants.GAMUSD * GempakConstants.RDGAS ) * 1000.0f); + + /*Calculate pressure*/ + prpalt = ( float ) ( altm * Math.pow( ( 1 - ( hgtk * GempakConstants.GAMUSD/ ( GempakConstants.TMCK + 15 ) ) ) , expo ) ); + } + return prpalt; + } + + /** + * Computes the equivalent potential temperature ( in Kelvin ) from + * the pressure ( in mb ), the temperature ( in Celsius ) and the dewpoint ( in Celsius ) + * using the equation: + * THTE = THTAM * EXP [ ( 3.376/TLCL - .00254 ) * + * ( MIXR * ( 1 + .81*.001*MIXR ) ) ] + * where + * THTAM = potential temperature of moist air + * = TMPK * (1000 / PRES) ** E + * E = RKAPPA * ( 1 - ( .28 * .001 * MIXR ) ) + * Bolton. + * + * @param pres - the pressure ( in mb ) + * @param tmpc - the temperature ( in Celsius ) + * @param dwpc - the dewpoint ( in Celsius ) + * @return the the equivalent potential temperature ( in Kelvin ), if all the input values + * are valid or RMISSD (-9999.0) otherwise + */ + public static float prThte ( float pres, float tmpc, float dwpc ){ + float prthte = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(pres) + && !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(dwpc) + && ( pres > 0) ){ + + /*Find mixing ratio*/ + float rmix = prMixr ( dwpc, pres); + + if ( !MissingValueTester.isDataValueMissing(rmix)){ + /*Change degrees Celsius to Kelvin*/ + float tmpk = prTmck ( tmpc ); + + /*Calculate theta for moist air (thtam) */ + float e = ( float) ( GempakConstants.RKAPPA * (1 - (0.28 * 0.001 * rmix) )); + float thtam = ( float ) ( tmpk * Math.pow(1000 / pres, e)); + + /*Find the temperature at the lifted condensation level */ + float tlcl = prTlcl ( tmpc, dwpc ); +// e = ( float ) ( ( ( 3.376 / tlcl ) - 0.00254 ) * ( rmix * ( 1 + 0.81 * 0.001 * rmix ) ) ); + e = ( ( 3.376f / tlcl ) - 0.00254f ) * ( rmix * ( 1 + 0.81f * 0.001f * rmix )); + prthte = ( float ) ( thtam * Math.exp(e)); + } + } + return prthte; + } + + /** + * Computes the temperature at the lifted condensation level for a parcel of air + * given the temperature ( in Celsius ) and the dewpoint (in Celsius) using the + * equation: + * TLCL = [ 1 / ( 1 / (DWPK-56) + ALOG (TMPK/DWPK) / 800 ) ] + 56 + * Boton. + * @param tmpc - the temperature ( in Celsius ) + * @param dwpc - the dewpoint ( in Celsius ) + * @return the lifted condensation level temperature In Kelvin, if both input values are valid + * and RMISSD ( -9999.0) otherwise + */ + public static float prTlcl ( float tmpc, float dwpc ){ + float prtlcl = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(dwpc) + && tmpc >= -GempakConstants.TMCK + && dwpc >= -GempakConstants.TMCK){ + float tmpk = prTmck ( tmpc ); + float dwpk = prTmck ( dwpc ); + prtlcl = ( float ) ( ( 800 * ( dwpk - 56 ) / ( 800 + ( dwpk - 56 ) * Math.log ( tmpk / dwpk ) ) ) + 56 ); + + } + return prtlcl; + } + + + /** + * Computes the temperature ( in Kelvin ) from the pressure ( in mb ) and + * the potential temperature ( in Kelvin ) using the Poisson equation: + * TMPK = THTA * ( PRES / 1000 ) ** RKAPPA + * + * @param pres - the pressure ( in mb ) + * @param thta - the potential temperature ( in Kelvin ) + * @return the temperature ( in Kelvin ) + */ + public static float prTmpk ( float pres, float thta ){ + float prtmpk = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(pres) + && !MissingValueTester.isDataValueMissing(thta) + && ( pres >= 0 ) ){ + prtmpk = ( float ) ( thta * ( Math.pow( pres / 1000f, GempakConstants.RKAPPA ) ) ); + } + + return prtmpk; + } + + /** + *
+ * Computes the parcel temperature ( in Kelvin ) from the equivalent potential temp ( in Kelvin ),
+ * pressure ( in millibars ) and the first guess temperature ( in Kelvin ).
+ * The parcel temperature at level pres on a specified moist adiabat ( thte ).
+ * The computation is an iterative Newton-Raphson technique of the form:
+ *
+ * x = x(guess) + [ f( x ) - f( x(guess) ) ] / f'( x(guess) )
+ * f' is approximated with finite differences
+ * f' = [ f( x(guess) + 1 ) - f( x(guess) ) ] / 1
+ *
+ * If tguess is 0, a reasonable first guess will be made.
+ * Convergence is not guaranteed for extreme input values. If the
+ * computation does not converge after 100 iterations, the missing
+ * data value will be returned.
+ * @param thte - Equivalent potential temp ( in Kelvin )
+ * @param pres - Pressure ( in millibars )
+ * @param tguess - First guess temperature ( in Kelvin )
+ * @return the Parcel temperature in Kelvin if all the input values are valid
+ * (without being extreme) and if a convergence is obtained within 100 iterations
+ * or RMISSD (-9999.0) otherwise.
+ *
+ */
+ public static float prTmst ( float thte, float pres, float tguess){
+ float prtmst = GempakConstants.RMISSD;
+
+ if ( !MissingValueTester.isDataValueMissing(thte)
+ && !MissingValueTester.isDataValueMissing(pres)
+ && !MissingValueTester.isDataValueMissing(tguess)
+ && ( thte > 0 )
+ && ( pres > 0 )
+ && ( tguess >= 0 ) ){
+
+ float tg = tguess;
+ /*
+ * If tguess is passed as 0. it is computed from an MIT scheme
+ */
+ if ( tg == 0 ){
+ float diffVar = thte - 270;
+ float mathFormula1 = (float) ( diffVar > 0 ? diffVar : 0.0 );
+ tg = (float) ( ( thte - 5.0f * ( Math.pow ( mathFormula1, 1.05f) ) ) * ( Math.pow ( pres / 1000.0f, 0.2f ) ) );
+ }
+
+ /*Set convergence and initial guess in degrees Celsius*/
+ float epsi = 0.01f;
+ float tgnu = prTmkc ( tg);
+
+ /*
+ * Set a limit of 100 iterations. Compute tenu,tenup, the
+ * thte's at one degree above the guess temperature.
+ */
+ int index = 0;
+ while( index < 100 ){
+ float tgnup = tgnu + 1;
+ float tenu = prThte ( pres, tgnu, tgnu );
+ float tenup = prThte ( pres, tgnup, tgnup);
+ /*Check that the THTE's exist.*/
+ if ( !MissingValueTester.isDataValueMissing(tenup)
+ && !MissingValueTester.isDataValueMissing(tenu)){
+
+ /*Compute the correction*/
+ float cor = ( thte - tenu ) / ( tenup - tenu );
+ tgnu += cor;
+
+ if ( ( cor < epsi ) && (-cor < epsi) ){
+
+ /*return on convergence*/
+ prtmst = prTmck ( tgnu);
+ break;
+ }
+ }
+ index++;
+ }
+ }
+ return prtmst;
+ }
+ /**
+ * Computes the mixing ratio in grams/kilograms from the dewpoint ( in Celsius )
+ * and the pressure ( in mb) using the equation:
+ * MIXR = .62197 * ( e / ( PRES - e ) ) * 1000.
+ * where
+ * e = VAPR * corr
+ * corr = (1.001 + ( ( PRES - 100. ) / 900. ) * .0034)
+ * ( University of Wisconsin green sheet ).
+ * This method can also be used for the folloiwng computations:
+ * MIXS from TMPC and PRES
+ * SMXR from DWPC and PALT
+ * SMXS from TMPC and PALT
+ *
+ * @param dwpc - the dewpoint ( in Celsius )
+ * @param pres - the pressure ( in mb)
+ * @return the mising ratio ( in grams / kilograms ) if both the input
+ * parameters are valid and RMISSD (-9999.0) otherwise.
+ */
+ public static float prMixr ( float dwpc, float pres ){
+ float prmixr = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(dwpc)
+ && !MissingValueTester.isDataValueMissing(pres)){
+ /*Calculate vapor pressure*/
+ float vapr = prVapr ( dwpc );
+ if ( !MissingValueTester.isDataValueMissing(vapr)){
+ /*
+ * (Non-Javadoc)
+ * corr is a correction to the vapor pressure since the atmosphere is not an ideal gas.
+ */
+ float corr = ( float ) (1.001 + ( ( pres - 100 ) / 900 ) * 0.0034 );
+ float e = corr * vapr;
+
/*
- * Adjust for high regression at low relative humidity for
- * temperatures above 80 degrees F.
+ * Test for unphysical case of large E at low PRES
*/
- if ((relh <= 13.0) && ((tmpf >= 80.0) && (tmpf <= 112.0))) {
- float adj1 = (float) ((13. - relh) / 4);
- float adj2 = (float) (Math.sqrt((17 - Math
- .abs(tmpf - 95)) / 17));
- float adj = adj1 * adj2;
- prheat -= adj;
+ if ( e <= ( 0.5 * pres ) ){
+ /*Calculate mixing ratio */
+ prmixr = ( float ) ( 0.62197 * ( e / ( pres - e ) ) * 1000 );
}
- /*
- * Adjust for low regression at high relative humidity and
- * temperatures in the mid-80s
- */
- else if ((relh > 85) && ((tmpf >= 80.0) && (tmpf <= 87.0))) {
- float adj1 = (float) ((relh - 85.0) / 10.0);
- float adj2 = (float) ((87.0 - tmpf) / 5);
- float adj = adj1 * adj2;
- prheat += adj;
- }
- }
- }
- }
- return prheat;
- }
-
- /***
- * Computes the height (rounded off to the nearest foot) in feet for the
- * input height in meters. The equation used is: HGFT = math.round ( HGHT *
- * 3.28084 )
- *
- * @param hght
- * - the height in meters
- * @return the height in feet
- */
- public static float prHgmf(float hght) {
- /* Sanity check */
- if (MissingValueTester.isDataValueMissing(hght)) {
- return GempakConstants.RMISSD;
- }
- // return ( (int) ( hght * GempakConstants.METERS_TO_FEET ) );
- return (Math.round(hght * GempakConstants.METERS_TO_FEET));
- }
-
- /**
- * Computes the height in meters from the input height in feet using the
- * equation: HGHT = HGFT * .3048
- *
- * @param hgft
- * - the height in feet
- * @return the equivalent height in meters if the input hgft is valid and
- * RMISSD ( -9999.0 ) otherwise
- */
- public static float prHgfm(float hgft) {
- return (!MissingValueTester.isDataValueMissing(hgft) ? (hgft * GempakConstants.FEET_TO_METERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in miles from the input height in feet using the
- * equation: HGML = HGFT / 5280.
- *
- * @param hgft
- * - the height in feet
- * @return the equivalent height in miles if the input hgft is valid and
- * RMISSD ( -9999.0 ) otherwise
- */
- public static float prHgfs(float hgft) {
- return (!MissingValueTester.isDataValueMissing(hgft) ? (hgft * GempakConstants.FEET_TO_MILES)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in feet from the input height in miles using the
- * equation: HGFT = HGML * 5280
- *
- * @param hgml
- * - the height in miles
- * @return the equivalent height in miles if the input hgml is valid and
- * RMISSD ( -9999.0 ) otherwise
- */
- public static float prHgsf(float hgml) {
- return (!MissingValueTester.isDataValueMissing(hgml) ? (hgml * GempakConstants.MILES_TO_FEET)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in kilometers, from the input height in meters
- *
- * @param value
- * - height in meters
- * @return the equivalent height in kilometers if the input value is valid
- * and RMISSD ( - 9999.0) otherwise.
- */
- public static float prHgmk(float value) {
- return ((value != GempakConstants.RMISSD) ? (value * GempakConstants.METERS_TO_KILOMETERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in meters, from the input height in kilometers
- *
- * @param value
- * - height in kilometers
- * @return the equivalent height in meters if the input value is valid and
- * RMISSD ( - 9999.0) otherwise.
- */
- public static float prHgkm(float value) {
- return ((value != GempakConstants.RMISSD) ? (value * GempakConstants.KILOMETERS_TO_METERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in decameters, from the input height in meters
- *
- * @param hght
- * - height in meters
- * @return the equivalent height in decameters if the input value is valid
- * and RMISSD ( - 9999.0) otherwise.
- */
- public static float prHgmd(float hght) {
- return ((hght != GempakConstants.RMISSD) ? (hght * GempakConstants.METERS_TO_DECAMETERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the height in meters, from the input height in nautical miles
- * using the equation: HGTM = 1852. * HGTN
- *
- * @param hgtn
- * - height in nautical miles
- * @return the equivalent height in meters if the input value is valid and
- * RMISSD ( - 9999.0) otherwise.
- */
- public static float prHgnm(float hgtn) {
- return ((hgtn != GempakConstants.RMISSD) ? (hgtn * GempakConstants.NAUTICAL_MILES_TO_METERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the humiture index from the air temperature and the dew point
- * temperature using the equation: PR_HMTR = TMPF + ( PR_VAPR ( DWPC ) - 21
- * )
- *
- * @param tmpf
- * - the air temperature (in Farenheit)
- * @param dwpf
- * - the dew point (in Farenheit)
- * @return the humiture index if both the air temperature and the dewpoint
- * temperature are valid values and RMISSD ( -9999.0) otherwise
- */
- public static float prHmtr(float tmpf, float dwpf) {
- float prhmtr = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(tmpf)
- && (!MissingValueTester.isDataValueMissing(dwpf))) {
- float dwpc = prTmfc(dwpf);
- prhmtr = tmpf + (prVapr(dwpc) - 21);
- }
- return prhmtr;
- }
-
- /**
- * Computes the vapor pressure ( in mb) from the input dewpoint temperature
- * in Celsius using the equation: VAPR = 6.112 * EXP [ (17.67 * DWPC) /
- * (DWPC + 243.5) ]
- *
- * @param dwpc
- * - the dewpoint temperature ( in Celsius )
- * @return the vapor pressure ( in mb) from the dewpoint temperature if it
- * is valid and RMISSD ( - 9999.0) otherwise
- */
- public static float prVapr(float dwpc) {
- if (!MissingValueTester.isDataValueMissing(dwpc) && (dwpc >= -240.0f)) {
- return ((float) (6.112 * (Math.exp((17.67 * dwpc) / (dwpc + 243.5)))));
- }
- return GempakConstants.RMISSD;
- }
-
- /**
- * Computes the rate of ice accretion/growth of ice on a vessel in salt
- * water, in units of inches per 3 hours (the WMO standard) The formula used
- * is IGRO = ( A*pr + B*pr*pr + C*pr*pr*pr ) * CVFAC where A = 2.73 * 10e-2
- * B = 2.91 * 10e-4 C = 1.84 * 10e-6 pr = ( sped * ( -1.7 - tmpc ) ) / ( 1 +
- * 0.4 * ( sstc + 1.7 ) ) (priesendorfer regression) and CVFAC = 1.1811, to
- * convert cm/hr to in/3hr.
- *
- * @param tmpc
- * - the observed surface air temperature in Celsius
- * @param sstc
- * - the observed surface sea temperature in Celsius
- * @param sped
- * - the observed wind speed
- * @return the rate of ice growth if all the input values are valid and lie
- * between specific limits and if the rate of ice growth that is
- * computed is greater than or equal to 0, or RMISSD (-9999.0)
- */
- public static float prIgro(float tmpc, float sstc, float sped) {
- float prigro = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(tmpc)
- && !MissingValueTester.isDataValueMissing(sstc)
- && !MissingValueTester.isDataValueMissing(sped)) {
-
- /* Check that these values are within the valid range */
- if ((sped >= 0 && sped <= 50) && (tmpc >= -20 && tmpc <= 0)
- && (sstc >= -1.7f && sstc <= 12)) {
-
- float A = 0.0273f;
- float B = 0.000291f;
- float C = 0.00000184f;
- float cvfac = 1.1811f; // to convert cm/hr to in per 3 hours
- float pr = (float) ((sped * (-1.7 - tmpc)) / (1 + 0.4 * (sstc + 1.7))); // Compute
- // the
- // Priesendorfer
- // regression
- float pr2 = pr * pr;
- prigro = (A * pr + B * pr2 + C * pr * pr2) * cvfac;
- if (prigro < 0)
- prigro = GempakConstants.RMISSD;
- }
- }
- return prigro;
- }
-
- /**
- * Converts the input value (in inches) to millimeters using the equation:
- * INMM = XINCH * 25.4
- *
- * @param xinch
- * - input value in inches
- * @return the equivalent value in millimeters if the input value is not
- * missing and RMISSD otherwise.
- */
- public static float prInmm(float xinch) {
- return (!MissingValueTester.isDataValueMissing(xinch) ? (xinch * GempakConstants.INCHES_TO_MILLIMETERS)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Converts the input height in millimeters to inches using the equation:
- * MMIN = .0393701 * XMILM
- *
- * @param xmilm
- * - the input height in millimeters
- * @return the equivalent height in inches if the input height is valid or
- * RMISSD otherwise.
- */
- public static float prMmin(float xmilm) {
- return (!MissingValueTester.isDataValueMissing(xmilm) ? (xmilm * GempakConstants.MILLIMETERS_TO_INCHES)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the mountain obscuration threshold met indicator
- *
- * @param cmsl
- * - Ceiling converted to MSL in 100's of ft
- * @param otval
- * - Mountain obscuration threshold in 100's of ft
- * @return The mountain obscuration threshold met indicator if the input
- * values are valid or RMISSD (-9999) otherwise
- */
- public static float prMobs(float cmsl, float otval) {
- if (!MissingValueTester.isDataValueMissing(cmsl)
- && !MissingValueTester.isDataValueMissing(otval)) {
- return ((cmsl < otval) ? 1.0f : 0.0f);
- }
- return GempakConstants.RMISSD;
- }
-
- /**
- * Computes the actual latitude given the range, azimuth and station
- * latitude, longitude and elevation. Equations developed for use in the
- * AOIPS radar package are used.
- *
- * @param slat
- * - the station latitude
- * @param slon
- * - the station longitude
- * @param range
- * - the range in kilometers
- * @param azim
- * - the geographic azimuth in radians
- * @param selv
- * - the station elevation
- * @return the actual latitude if all the input parameters are valid and
- * RMISSD ( -9999.0) otherwise
- */
- public static float prLati(float slat, float slon, float range, float azim,
- float selv) {
- getRZLLInstance().prRzll(slat, slon, range, azim, selv);
- return getRZLLInstance().getXlat();
- }
-
- /**
- * Computes the actual longitude given the range, azimuth and station
- * latitude, longitude and elevation. Equations developed for use in the
- * AOIPS radar package are used.
- *
- * @param slat
- * - the station latitude
- * @param slon
- * - the station longitude
- * @param range
- * - the range in kilometers
- * @param azim
- * - the geographic azimuth in radians
- * @param selv
- * - the station elevation
- * @return the actual longitude if all the input parameters are valid and
- * RMISSD ( -9999.0) otherwise
- */
- public static float prLoni(float slat, float slon, float range, float azim,
- float selv) {
- getRZLLInstance().prRzll(slat, slon, range, azim, selv);
- return getRZLLInstance().getXlon();
- }
-
- /**
- * Computes the latent heat of vaporization at constant pressure from the
- * input temperature (in Celsius) using the equation: LHVP = ( 2.500 -
- * .00237 * TMPC ) * 10E6 LHVP is in J/kg.
- *
- * @param tmpc
- * - the input temperature (in Celsius)
- * @return the latent heat of vaporization at constant pressure if the input
- * temperature is valid and RMISSD ( -9999.0) otherwise
- */
- public static float prLhvp(float tmpc) {
- return (!MissingValueTester.isDataValueMissing(tmpc) ? (float) ((2.500 - 0.00237 * tmpc) * 1000000)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Computes the temperature of a parcel lifted (or sunk) adiabatically to a
- * given pressure.
- *
- * @param thta
- * - Potential temperature in Kelvin
- * @param thte
- * - Equivalent potential temp in Kelvin
- * @param pres
- * - Lifted pressure
- * @return the lifted temperature in Celsius, if all the input parameters
- * are valid or RMISSD (-9999.0) otherwise
- */
- public static float prLtmp(float thta, float thte, float pres) {
- float prltmp = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(thta)
- && !MissingValueTester.isDataValueMissing(thte)
- && !MissingValueTester.isDataValueMissing(pres)) {
-
- /* Compute parcel temperatures on moist and dry adiabats */
- float tmpe = prTmst(thte, pres, 0.0f);
- float tmpd = prTmpk(pres, thta);
- if (!MissingValueTester.isDataValueMissing(tmpe)
- && !MissingValueTester.isDataValueMissing(tmpd)) {
-
- /*
- * ( Non-Javadoc ) The correct parcel temperature is the warmer
- * of the temperature on the dry adiabat and the temperature on
- * the moist adiabat.
+ }
+ }
+ return prmixr;
+ }
+
+ /**
+ * Returns PMSL if available, otherwise will return ALTM if available.
+ * The purpose of this method is to provide greater station availability
+ * for surface analysis.
+ * @param altm - Altimeter ( in mb )
+ * @param pmsl - Sea-level pressure ( in mb )
+ * @return Returns pmsl if available, otherwise returns altm.
+ * If neither are available it returns RMISSD ( - 9999.0)
+ */
+ public static float prPany ( float altm, float pmsl){
+ if ( !MissingValueTester.isDataValueMissing ( pmsl ) )
+ return pmsl;
+ else if ( !MissingValueTester.isDataValueMissing ( altm ) )
+ return altm;
+ else
+ return GempakConstants.RMISSD;
+ }
+
+ /**
+ * Computes the wind direction in degrees from packed speed and direction
+ * given as input using the equation:
+ * DRCT = 5. * INT ( PSPD / 500. )
+ *
+ * @param pspd - packed speed and direction. It is in the form DDFFF
+ * where DD is the wind direction in tens of degrees, and FFF is
+ * either the wind speed or wind speed plus 500, depending on the
+ * units digit of direction rounded to the nearest 5 degrees
+ * @return Wind direction in degrees
+ */
+ public static float prPkdd ( float pspd){
+ float prpkdd = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(pspd) ){
+ /*
+ * ( Non-Javadoc )
+ * The factor of 5 accounts for encoding the units digit of
+ * direction (to the nearest 5 degrees) in the hundreds digit of
+ * speed.
*/
- prltmp = (tmpe > tmpd ? prTmkc(tmpe) : prTmkc(tmpd));
- }
- }
- return prltmp;
- }
-
- /**
- * Multiplies the input value by 100
- *
- * @param value
- * - the value to be multiplied
- * @return the value multiplied by 100 if it is not missing or RMISSD (
- * -9999.0) otherwise
- */
- public static float prM100(float value) {
- return (!MissingValueTester.isDataValueMissing(value) ? (value * 100.0f)
- : GempakConstants.RMISSD);
- }
-
- /**
- * - * Computes the moist hydrostatic height at pressure pt from a lower - * height and pressure, and the scale height in the layer. - * The moist hydrostatic height is computed as an integrated quantity. - * Thus, the lower height should have been integrated from the surface. - * The equation used is: PR_MHGT = HB + SCALE * ALOG ( PB / PT ) - * @param hb - Bottom height - * @param pb - Bottom pressure - * @param pt - Top pressure - * @param scale - Scale height - * @return The moist hydrostatic height if all the input values are valid and if the - * pressure and temperature are greater than 0. Or RMISSD (-9999.0) otherwise. - *- */ - public static float prMhgt(float hb, float pb, float pt, float scale) { - if (!MissingValueTester.isDataValueMissing(hb) - && !MissingValueTester.isDataValueMissing(pb) - && !MissingValueTester.isDataValueMissing(pt) - && !MissingValueTester.isDataValueMissing(scale) && (pt > 0) - && (pb > 0)) { - return ((float) (hb + scale * Math.log(pb / pt))); - } - - return GempakConstants.RMISSD; - } - - /** - * Extracts the pressure change ( in millibars ) from the pressure tendency - * information - * - * @param p03d - * - Pressure tendency information - * @return the pressure change ( in mb ) - */ - public static float prP03c(float p03d) { - float prp03c = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(p03d)) { - float[] psign = { 1, 1, 1, 1, 0, -1, -1, -1, -1 }; - int itendc = (int) (p03d / 1000); - // float ptend = ( float ) ( ( ( ( int ) p03d ) % 1000 ) / 10 ); - float ptend = (((int) p03d) % 1000) / 10f; - // TODO: compare tests with legacy - if (itendc < psign.length) - prp03c = psign[itendc] * ptend; - } - return prp03c; - } - - /** - * Translates a WMO pressure tendency string into the pressure tendency code - * * 1000 + the magnitude of the change in tenths of millibars. - * - * @param ctend - * - the WMO pressure tendency string - * @return the pressure change information - */ - public static float prP03d(String ctend) { - if (ctend != null && !ctend.isEmpty()) { - // String cc = ctend.substring(0, 4); - /* 88888888888888888888888888888888 */ - String cc = ctend.substring(0); - if (cc.length() >= 4) { - cc = ctend.substring(0, 4); - } - /* 888 */ - // if ( cc.charAt( 0 ) > '0' && cc.charAt( 0 ) > '8' && ( - // cc.compareTo( "999" ) != 0 ) ) { - if (cc.charAt(0) >= '0' && cc.charAt(0) <= '8' - && (cc.compareTo("999") != 0)) { - // return Float.parseFloat( cc ); - /* 8888888888888888888888888888888888 */ - float p03d = GempakConstants.RMISSD; - try { - p03d = Float.parseFloat(cc); - } catch (Exception e) { - p03d = GempakConstants.RMISSD; - } - return p03d; - /* 888 */ - } - } - return GempakConstants.RMISSD; - } - - /** - * Computes station pressure from altimeter and station elevation using the - * equation PALT = ALTM * ( 1 - ( SELK * GAMUSD / To ) ) ** expo where SELK - * = SELV / 1000 To = US Std. Atmos. sea level temp in Kelvin = TMCK + 15 - * expo = GRAVTY / ( GAMUSD * RDGAS ) * 1000 Wallace and Hobbs. - * - * @param altm - * - Altimeter in millibars - * @param selv - * - Station elevation in meters - * @return the pressure in millibars if nont of the input values are missing - * and RMISSD ( otherwise ) - */ - public static float prPalt(float altm, float selv) { - - float prpalt = GempakConstants.RMISSD; - - if (!MissingValueTester.isDataValueMissing(altm) - && !MissingValueTester.isDataValueMissing(selv)) { - - float hgtk = prHgmk(selv); - - /* Calculate the exponent */ - float expo = (GempakConstants.GRAVTY - / (GempakConstants.GAMUSD * GempakConstants.RDGAS) * 1000.0f); - - /* Calculate pressure */ - prpalt = (float) (altm * Math.pow((1 - (hgtk - * GempakConstants.GAMUSD / (GempakConstants.TMCK + 15))), - expo)); - } - return prpalt; - } - - /** - * Computes the equivalent potential temperature ( in Kelvin ) from the - * pressure ( in mb ), the temperature ( in Celsius ) and the dewpoint ( in - * Celsius ) using the equation: THTE = THTAM * EXP [ ( 3.376/TLCL - .00254 - * ) * ( MIXR * ( 1 + .81*.001*MIXR ) ) ] where THTAM = potential - * temperature of moist air = TMPK * (1000 / PRES) ** E E = RKAPPA * ( 1 - ( - * .28 * .001 * MIXR ) ) Bolton. - * - * @param pres - * - the pressure ( in mb ) - * @param tmpc - * - the temperature ( in Celsius ) - * @param dwpc - * - the dewpoint ( in Celsius ) - * @return the the equivalent potential temperature ( in Kelvin ), if all - * the input values are valid or RMISSD (-9999.0) otherwise - */ - public static float prThte(float pres, float tmpc, float dwpc) { - float prthte = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(dwpc) && (pres > 0)) { - - /* Find mixing ratio */ - float rmix = prMixr(dwpc, pres); - - if (!MissingValueTester.isDataValueMissing(rmix)) { - /* Change degrees Celsius to Kelvin */ - float tmpk = prTmck(tmpc); - - /* Calculate theta for moist air (thtam) */ - float e = (float) (GempakConstants.RKAPPA * (1 - (0.28 * 0.001 * rmix))); - float thtam = (float) (tmpk * Math.pow(1000 / pres, e)); - - /* Find the temperature at the lifted condensation level */ - float tlcl = prTlcl(tmpc, dwpc); - // e = ( float ) ( ( ( 3.376 / tlcl ) - 0.00254 ) * ( rmix * ( 1 - // + 0.81 * 0.001 * rmix ) ) ); - e = ((3.376f / tlcl) - 0.00254f) - * (rmix * (1 + 0.81f * 0.001f * rmix)); - prthte = (float) (thtam * Math.exp(e)); - } - } - return prthte; - } - - /** - * Computes the temperature at the lifted condensation level for a parcel of - * air given the temperature ( in Celsius ) and the dewpoint (in Celsius) - * using the equation: TLCL = [ 1 / ( 1 / (DWPK-56) + ALOG (TMPK/DWPK) / 800 - * ) ] + 56 Boton. - * - * @param tmpc - * - the temperature ( in Celsius ) - * @param dwpc - * - the dewpoint ( in Celsius ) - * @return the lifted condensation level temperature In Kelvin, if both - * input values are valid and RMISSD ( -9999.0) otherwise - */ - public static float prTlcl(float tmpc, float dwpc) { - float prtlcl = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(dwpc) - && tmpc >= -GempakConstants.TMCK - && dwpc >= -GempakConstants.TMCK) { - float tmpk = prTmck(tmpc); - float dwpk = prTmck(dwpc); - prtlcl = (float) ((800 * (dwpk - 56) / (800 + (dwpk - 56) - * Math.log(tmpk / dwpk))) + 56); - - } - return prtlcl; - } - - /** - * Computes the temperature ( in Kelvin ) from the pressure ( in mb ) and - * the potential temperature ( in Kelvin ) using the Poisson equation: TMPK - * = THTA * ( PRES / 1000 ) ** RKAPPA - * - * @param pres - * - the pressure ( in mb ) - * @param thta - * - the potential temperature ( in Kelvin ) - * @return the temperature ( in Kelvin ) - */ - public static float prTmpk(float pres, float thta) { - float prtmpk = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(thta) && (pres >= 0)) { - prtmpk = (float) (thta * (Math.pow(pres / 1000f, - GempakConstants.RKAPPA))); - } - - return prtmpk; - } - - /** - *
- * Computes the parcel temperature ( in Kelvin ) from the equivalent potential temp ( in Kelvin ),
- * pressure ( in millibars ) and the first guess temperature ( in Kelvin ).
- * The parcel temperature at level pres on a specified moist adiabat ( thte ).
- * The computation is an iterative Newton-Raphson technique of the form:
- *
- * x = x(guess) + [ f( x ) - f( x(guess) ) ] / f'( x(guess) )
- * f' is approximated with finite differences
- * f' = [ f( x(guess) + 1 ) - f( x(guess) ) ] / 1
- *
- * If tguess is 0, a reasonable first guess will be made.
- * Convergence is not guaranteed for extreme input values. If the
- * computation does not converge after 100 iterations, the missing
- * data value will be returned.
- * @param thte - Equivalent potential temp ( in Kelvin )
- * @param pres - Pressure ( in millibars )
- * @param tguess - First guess temperature ( in Kelvin )
- * @return the Parcel temperature in Kelvin if all the input values are valid
- * (without being extreme) and if a convergence is obtained within 100 iterations
- * or RMISSD (-9999.0) otherwise.
- *
- */
- public static float prTmst(float thte, float pres, float tguess) {
- float prtmst = GempakConstants.RMISSD;
-
- if (!MissingValueTester.isDataValueMissing(thte)
- && !MissingValueTester.isDataValueMissing(pres)
- && !MissingValueTester.isDataValueMissing(tguess) && (thte > 0)
- && (pres > 0) && (tguess >= 0)) {
-
- float tg = tguess;
- /*
- * If tguess is passed as 0. it is computed from an MIT scheme
- */
- if (tg == 0) {
- float diffVar = thte - 270;
- float mathFormula1 = (float) (diffVar > 0 ? diffVar : 0.0);
- tg = (float) ((thte - 5.0f * (Math.pow(mathFormula1, 1.05f))) * (Math
- .pow(pres / 1000.0f, 0.2f)));
- }
-
- /* Set convergence and initial guess in degrees Celsius */
- float epsi = 0.01f;
- float tgnu = prTmkc(tg);
-
- /*
- * Set a limit of 100 iterations. Compute tenu,tenup, the thte's at
- * one degree above the guess temperature.
- */
- int index = 0;
- while (index < 100) {
- float tgnup = tgnu + 1;
- float tenu = prThte(pres, tgnu, tgnu);
- float tenup = prThte(pres, tgnup, tgnup);
- /* Check that the THTE's exist. */
- if (!MissingValueTester.isDataValueMissing(tenup)
- && !MissingValueTester.isDataValueMissing(tenu)) {
-
- /* Compute the correction */
- float cor = (thte - tenu) / (tenup - tenu);
- tgnu += cor;
-
- if ((cor < epsi) && (-cor < epsi)) {
-
- /* return on convergence */
- prtmst = prTmck(tgnu);
- break;
- }
- }
- index++;
- }
- }
- return prtmst;
- }
-
- /**
- * Computes the mixing ratio in grams/kilograms from the dewpoint ( in
- * Celsius ) and the pressure ( in mb) using the equation: MIXR = .62197 * (
- * e / ( PRES - e ) ) * 1000. where e = VAPR * corr corr = (1.001 + ( ( PRES
- * - 100. ) / 900. ) * .0034) ( University of Wisconsin green sheet ). This
- * method can also be used for the folloiwng computations: MIXS from TMPC
- * and PRES SMXR from DWPC and PALT SMXS from TMPC and PALT
- *
- * @param dwpc
- * - the dewpoint ( in Celsius )
- * @param pres
- * - the pressure ( in mb)
- * @return the mising ratio ( in grams / kilograms ) if both the input
- * parameters are valid and RMISSD (-9999.0) otherwise.
- */
- public static float prMixr(float dwpc, float pres) {
- float prmixr = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(dwpc)
- && !MissingValueTester.isDataValueMissing(pres)) {
- /* Calculate vapor pressure */
- float vapr = prVapr(dwpc);
- if (!MissingValueTester.isDataValueMissing(vapr)) {
- /*
- * (Non-Javadoc) corr is a correction to the vapor pressure
- * since the atmosphere is not an ideal gas.
- */
- float corr = (float) (1.001 + ((pres - 100) / 900) * 0.0034);
- float e = corr * vapr;
-
- /*
- * Test for unphysical case of large E at low PRES
- */
- if (e <= (0.5 * pres)) {
- /* Calculate mixing ratio */
- prmixr = (float) (0.62197 * (e / (pres - e)) * 1000);
- }
- }
- }
- return prmixr;
- }
-
- /**
- * Returns PMSL if available, otherwise will return ALTM if available. The
- * purpose of this method is to provide greater station availability for
- * surface analysis.
- *
- * @param altm
- * - Altimeter ( in mb )
- * @param pmsl
- * - Sea-level pressure ( in mb )
- * @return Returns pmsl if available, otherwise returns altm. If neither are
- * available it returns RMISSD ( - 9999.0)
- */
- public static float prPany(float altm, float pmsl) {
- if (!MissingValueTester.isDataValueMissing(pmsl))
- return pmsl;
- else if (!MissingValueTester.isDataValueMissing(altm))
- return altm;
- else
- return GempakConstants.RMISSD;
- }
-
- /**
- * Computes the wind direction in degrees from packed speed and direction
- * given as input using the equation: DRCT = 5. * INT ( PSPD / 500. )
- *
- * @param pspd
- * - packed speed and direction. It is in the form DDFFF where DD
- * is the wind direction in tens of degrees, and FFF is either
- * the wind speed or wind speed plus 500, depending on the units
- * digit of direction rounded to the nearest 5 degrees
- * @return Wind direction in degrees
- */
- public static float prPkdd(float pspd) {
- float prpkdd = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(pspd)) {
- /*
- * ( Non-Javadoc ) The factor of 5 accounts for encoding the units
- * digit of direction (to the nearest 5 degrees) in the hundreds
- * digit of speed.
- */
- prpkdd = (5 * (int) (pspd / 500));
- if (prpkdd >= 360)
- prpkdd -= 360;
- }
- return prpkdd;
- }
-
- /**
- * Computes the wind speed ( in knots ) given the packed speed and direction
- * using the equation: SPED = MOD ( INT (PSPD) , 500 )
- *
- * @param pspd
- * - The packed speed and direction. It is in the form DDFFF
- * where DD is the wind direction in tens of degrees, and FFF is
- * either the wind speed or wind speed plus 500, depending on the
- * units digit of direction rounded to the nearest 5 degrees
- * @return The wind speed ( in knots )
- */
- public static float prPkss(float pspd) {
- float prpkss = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(pspd)) {
- // Formally, SPED is MOD ( PSPD, 1000 ), with 500 subtracted off if
- // needed, but 1000 is a multiple of 500, so it is done in 1 step.
- prpkss = ((int) pspd) % 500;
- }
- return prpkss;
- }
-
- /**
- * Computes the lifted condensation level pressure ( in mb ) for a parcel of
- * air from TMPC, PRES, adn TLCL. TLCL may be computed using PR_TLCL. The
- * equation used is a modified Poisson equation: PLCL = PRES * ( TLCL / TMPK
- * ) ** ( 1 / RKAPPA )
- *
- * @param tmpc
- * - Temperature ( in Celsius ) before lifting the air parcel
- * @param pres
- * - Pressure ( in mb ) before lifting the air parcel
- * @param tlcl
- * - Temperature ( in Kelvin ) at the lifted condensation level
- * @return the pressure at the lifted condensation level, if all the inputs
- * are valid and RMISSD ( -9999) otherwise
- */
- public static float prPlcl(float tmpc, float pres, float tlcl) {
- float prplcl = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(tmpc)
- && !MissingValueTester.isDataValueMissing(pres)
- // && !MissingValueTester.isDataValueMissing( tmpc ) ){
- && !MissingValueTester.isDataValueMissing(tlcl)) {
- float tmpk = prTmck(tmpc);
- prplcl = (float) (pres * Math.pow((tlcl / tmpk),
- (1 / GempakConstants.RKAPPA)));
- }
- return prplcl;
- }
-
- /**
- * - * Computes the mean sea level pressure ( in mb ) from the station pressure ( in mb ), - * the temperature ( in deg Celsius), the dewpoint ( in deg Celsius ) and - * the station elevation ( in meters ) using the equation: - * PMSL = PRES * EXP ( ( GRAVTY * SELV ) / ( RDGAS * TVAVE ) ) - * where - * TVAVE = avg virtual temp between station and sea level - * = TVRK + ( DELTV / 2 ) - * DELTV = GAMUSD * SELV / 1000 - * Wallace and Hobbs. - * @param pres - the station pressure ( in mb ) - * @param tmpc - the temperature ( in deg Celsius) - * @param dwpc - the dewpoint ( in deg Celsius ) - * @param selv - the station elevation ( in meters ) - * @return the mean sea level pressure ( in mb ) if all the inputs are valid and RMISSD ( -9999) otherwise - * - * - *- */ - public static float prPmsl(float pres, float tmpc, float dwpc, float selv) { - float prpmsl = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(dwpc) - && !MissingValueTester.isDataValueMissing(selv)) { - /* Calculate virtual temperature */ - float tv = prTvrk(tmpc, dwpc, pres); - /* 8888888888888 */ - System.out.println(" tv=" + tv); - /* 888 */ - - /* deltaV and tVave */ - float deltaV = selv * GempakConstants.GAMUSD / 1000; - // float tVave = tv + ( deltaV + 2); - float tVave = tv + (deltaV / 2); - float mathFormula = (GempakConstants.GRAVTY * selv) - / (GempakConstants.RDGAS * tVave); - /* 8888888888888 */ - System.out.println(" selv=" + selv + " tVave=" + tVave - + " mathForm=" + mathFormula); - /* 888 */ - // prpmsl = ( float) ( Math.exp(mathFormula) ); - prpmsl = (float) (pres * Math.exp(mathFormula)); - } - return prpmsl; - } - - /** - * Computes the parcel pressure from THTE the equivalent potential - * temperature ( in Kelvin ) and and TMPC the parcel temperature at PRES on - * a specified moist adiabat (THTE). The computation is an iterative - * Newton-Raphson technique of the form: x = x(guess) + [ f( x ) - f( - * x(guess) ) ] / f'( x(guess) ) - * - * f' is approximated with finite differences f' = [ f( x(guess) + 1 ) - f( - * x(guess) ) ] / 1 Convergence is not guaranteed for extreme input values. - * If the computation does not converge after 100 iterations, the missing - * data value will be returned. - * - * @param thte - * - Equivalent potential temperature ( in Kelvin ) - * @param tmpk - * - Parcel temperature ( in Kelvin ) - * @return the pressure ( in mb ) - */ - public static float prPmst(float thte, float tmpk) { - float prpmst = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(thte) - && !MissingValueTester.isDataValueMissing(tmpk) && (thte > 0)) { - /* Set convergence and initial guess of pressure */ - float epsi = 0.01f; - float tmpc = prTmkc(tmpk); - float pgdn = (float) (1000 * Math.pow((tmpk / thte), - GempakConstants.AKAPPA)); - /* - * (Non-Javadoc) Set a limit of 100 iterations. Compute tedn and - * teup, the thte's at one degree above the guess temperature - */ - for (int index = 0; index < 100; index++) { - float pgup = pgdn + 1; - float tedn = prThte(pgdn, tmpc, tmpc); - float teup = prThte(pgup, tmpc, tmpc); - - /* Check thte */ - if (MissingValueTester.isDataValueMissing(tedn) - || MissingValueTester.isDataValueMissing(teup)) - break; - else { - /* Compute the correction; return on convergence */ - float cor = (thte - tedn) / (teup - tedn); - pgdn = pgdn + cor; - if (Math.abs(cor) < epsi) { - prpmst = pgdn; - break; - } - } - } - } - return prpmst; - } - - /** - * Computes PR24, the 24-hour precipitation calculated by summing four - * 6-hour precipitation values - * - * @param p01 - * - First 6-hour precipitation amount - * @param p02 - * - Second 6-hour precipitation amount - * @param p03 - * - Third 6-hour precipitation amount - * @param p04 - * - Fourth 6-hour precipitation amount - * @return the total 24-hour precipitation amount - */ - public static float prPr24(float p01, float p02, float p03, float p04) { - // float p24 = GempakConstants.RMISSD; - float[] tempArray = { p01, p02, p03, p04 }; - Arrays.sort(tempArray); - // p24 = tempArray[3]; - float p24 = tempArray[3]; - if (p24 > 0) { - p24 = 0; - if (p01 > 0) - p24 = p24 + p01; - - if (p02 > 0) - p24 = p24 + p02; - - if (p03 > 0) - p24 = p24 + p03; - - if (p04 > 0) - p24 = p24 + p04; - - } else if (p24 < 0f) { - p24 = GempakConstants.RMISSD; - } - return p24; - } - - /** - * Computes the maximum precipitation amount for upto 4 preciptiation values - * in inches - * - * @param p01 - * - First precipitation amount - * @param p02 - * - Second precipitation amount - * @param p03 - * - Third precipitation amount - * @param p04 - * - Fourth precipitation amount - * @return the maximum precipitation - */ - public static float prPr6x(float p01, float p02, float p03, float p04) { - float[] tempArray = { p01, p02, p03, p04 }; - Arrays.sort(tempArray); - return tempArray[3]; - } - - /** - * Computes the station pressure ( in mb ) from the temperature ( in deg - * Celsius ) and the potential temperature ( in Kelvin ) using Poisson's - * equation: PRES = 1000. * ( PR_TMCK (TMPC) / THTA ) ** (1 / RKAPPA) - * - * @param tmpc - * - temperature (in deg Celsius) - * @param thta - * - potential temperature ( in Kelvin ) - * @return the station pressure ( in mb ) if both the inputs are valid and - * RMISSD (-9999) otherwise - */ - public static float prPres(float tmpc, float thta) { - float prpres = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(thta) - && (tmpc > -GempakConstants.TMCK) && (thta > 0)) { - float tmpk = prTmck(tmpc); - prpres = (float) (1000 * Math.pow(tmpk / thta, - 1 / GempakConstants.RKAPPA)); - } - return prpres; - } - - /** - * Computes the packed wind speed and direction from DRCT and SPED using the - * equation: PSPD = JDRCT * 500 + JSPED where JDRCT = NINT ( DRCT / 5 ) - * JSPED = NINT ( SPED ) - * - * @param drct - * - Wind direction in degrees - * @param sped - * - Wind speed - * @return the packed wind speed and direction if both inputs are valid and - * RMISSD ( -9999 ) otherwise. It is in the form DDFFF, where DD is - * the wind direction in tens of degrees, and FFF is either the wind - * speed or wind speed plus 500, depending on the unit digit of - * direction rounded to the nearest 5 degrees. - * - */ - public static float prPspd(float drct, float sped) { - float prpspd = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(drct) - && !MissingValueTester.isDataValueMissing(sped)) { - float jdrct = Math.round(drct / 5); - // float jsped = Math.round ( sped / 5); - float jsped = Math.round(sped); - prpspd = jdrct * 500 + jsped; - } - return prpspd; - } - - /** - * Extracts the symbol code from the pressure tendency information. The code - * number is returned follow by 999 so that the output is a 4-digit number. - * - * @param p03d - * - the pressure tendency information - * @return the pressure tendency symbol code if the input is valid or RMISSD - * ( -9999.0 ) otherwise. - */ - public static float prPtsy(float p03d) { - // return ( !MissingValueTester.isDataValueMissing(p03d) ? ( ( int ) ( - // p03d / 1000 ) ) * 1000 + 999 : GempakConstants.RMISSD ); - return (!MissingValueTester.isDataValueMissing(p03d) & !(p03d < 0) - & !(p03d >= 9000) ? ((int) (p03d / 1000)) * 1000 + 999 - : GempakConstants.RMISSD); - } - - /** - * Converts the numeric WMO weather code for past weather reported from an - * automatic station (WMO code table 4531) to the corresponding numeric WMO - * weather code for past weather reported from a manned station (WMO code - * table 4561). - * - * @param pwwa - * - the auto station past weather code - * @return the manned station past code if the input is valid and RMISSD ( - * -9999 ) otherwise. - */ - public static float prPwao(float pwwa) { - float prpwao = GempakConstants.RMISSD; - int[] man = { -1, -1, 3, 4, -1, 5, 6, 7, 8, 9 }; - int iwx = Math.round(pwwa); - if (iwx >= 0 && iwx <= 9) { - if (man[iwx] >= 0) - prpwao = man[iwx]; - } - return prpwao; - } - - /** - * Computes the quotient for parameter ratios using the equation: PR_QUOT = - * X / Y (For computing QPF/Watch Threshold) - * - * @param x - * - Numerator - * @param y - * - Denominator - * @return the quotient if both inputs are valid and the denominator is non - * zero. Returns RMISSD ( -9999 ) otherwise - */ - public static float prQuot(float x, float y) { - if (!MissingValueTester.isDataValueMissing(x) - && !MissingValueTester.isDataValueMissing(y) && (y != 0)) { - return (x / y); - } - return GempakConstants.RMISSD; - } - - /** - * Computes the relative humidity ( in percent ) from the input temperature - * and dewpoint using the equation: RELH = VAPR / VAPS * 100 where VAPR = - * vapor pressure = PR_VAPR ( DWPC ) VAPS = saturation vapor pressure = - * PR_VAPR ( TMPC ) - * - * @param tmpc - * - temperature ( in Celsius ) - * @param dwpc - * - dewpoint ( in Celsius) - * @return the relative humidity ( in percent ) if both inputs are valid and - * RMISSD ( -9999.0 ) otherwise - */ - public static float prRelh(float tmpc, float dwpc) { - float prrelh = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(dwpc)) { - /* Find the vapor pressure */ - float e = prVapr(dwpc); - - /* Find the saturated vapor pressure */ - float es = prVapr(tmpc); - - /* Calculate humidity */ - prrelh = (e / es) * 100; - } - return prrelh; - } - - /** - * Computes the dewpoint (in Celsius) from the temperature ( in Celsius ) - * and the relative humidity ( in percent ). - * - * @param tmpc - * - the temperature ( in deg Celsius ) - * @param relh - * - the relative humidity ( in percent ) - * @return the dewpoint in ( deg Celsius), if both inputs are valid and the - * value of the vapor pressure computed is > ( 1* e^(-30)), or - * RMISSD (-9999) otherwise - */ - public static float prRhdp(float tmpc, float relh) { - float prrhdp = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(relh)) { - - /* Calculate saturation vapor pressure; test for existence */ - float vaps = prVapr(tmpc); - if (!MissingValueTester.isDataValueMissing(vaps)) { - - /* Calculate vapor pressure */ - float vapr = relh * vaps / 100; - - /* Calculate dewpoint. The VAPR test prevents LOG blowups */ - // if ( vapr > ( Math.pow(Math.E, -30) ) ){//legacy checks for - // 1.E-30 - if (vapr >= (Math.pow(Math.E, -30))) {// legacy checks for - // 1.E-30 - prrhdp = (float) (243.5 * (Math.log(6.112) - Math.log(vapr)) / (Math - .log(vapr) - Math.log(6.112) - 17.67)); - - /* - * If the dew-point is less than -190 degrees C, it is - * treated as missing data Note: Legacy documents it but - * does not implement it. However, in CAVE, it was decided - * to implement it. - */ - - if (prrhdp < -190) - prrhdp = GempakConstants.RMISSD; - } - } - } - return prrhdp; - } - - /** - * Computes the abbreviated standard altimeter code SALI from the altimeter - * setting in inches ALTI. SALI is an abbreviated altimeter code in inches - * which contains the unit digit and the first two digits after the decimal - * points. ALTI is multiplied by 100 truncated, and the original tens digit - * dropped. The following equation is used: SALI = NINT ( MOD ( ALTI, 10 ) * - * 100 ) - * - * @param alti - * - the altimeter code in inches - * @return the abbreviated standard altimeter code from the input altimeter - * code (if it exists) and RMISSD (-9999) otherwise. - */ - public static float prSali(float alti) { - float prsali = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(alti)) { - - /* Drop the leading tens digits */ - float aalt = alti % 10; - - /* - * Include the tenths and hundredths digit: Multiply by 100 and - * round it off to the nearest integer - */ - aalt *= 100; - prsali = Math.round(aalt); - } - - return prsali; - } - - /** - * Computes the standard abreviated altimeter code from the altimeter - * setting in inches, after converting it to millibars ALTM. Then ALTM is - * multiplied by 10, truncated, and the original thousand and hundred digits - * are dropped. The following equation is used: SALT = NINT ( MOD ( ALTM, - * 100 ) * 10 ) - * - * @param alti - * - the altimeter setting in inches - * @return the abbreviated standard altimeter code from the input altimeter - * setting (if it exists) and RMISSD (-9999) otherwise. - */ - public static float prSalt(float alti) { - float prsalt = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(alti)) { - - /* Convert the altimeter to millibars */ - float altm = prAltm(alti); - - /* Drop the leading thousand and/or hundreds digits */ - float aalt = altm % 100; - - /* Include the tenths digit */ - aalt *= 10; - // prsalt = Math.round(aalt); - prsalt = (int) aalt; - } - return prsalt; - } - - /** - * Computes the scale height in a layer which can then be used to compute - * the moist hydrostatic height. The folloiwng equation is used: SCLH = ( - * RDGAS / GRAVTY ) * TAV TAV = average virtual temperature in layer = ( - * TVIRTB + TVIRTT ) / 2 TVIRTB = virtual temperature at bottom TVIRTT = - * virtual temperature at top - * - * @param tb - * - Bottom temperature ( in Celsius ) - * @param tt - * - Top temperature ( in Celsius ) - * @param tdb - * - Bottom dewpoint ( in Celsius ) - * @param tdt - * - Top dewpoint ( in Celsius ) - * @param pb - * - Bottom pressure ( in millibars ) - * @param pt - * - Top pressure ( in millibars ) - * @return the scale height ( in meters ) if all the input data exist and - * RMISSD (-9999) otherwise. - */ - public static float prSclh(float tb, float tt, float tdb, float tdt, - float pb, float pt) { - float prsclh = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tb) - && !MissingValueTester.isDataValueMissing(tt) - && !MissingValueTester.isDataValueMissing(pb) - && !MissingValueTester.isDataValueMissing(pt)) { - - float tvb = prTvrk(tb, tdb, pb); - float tvt = prTvrk(tt, tdt, pt); - - if (!MissingValueTester.isDataValueMissing(tvt) - && !MissingValueTester.isDataValueMissing(tvb)) { - float tav = (tvb + tvt) / 2; - prsclh = tav * GempakConstants.RKAP; - } - } - return prsclh; - } - - /** - * Combines the sky coverage symbol number with the wind speed and direction - * - * @param skyc - * - Sky coverage - * @param drct - * - Wind direction in degrees - * @param sped - * - Wind speed (m/s or knots) - * @return The packed speed and direction if none of the input values are - * missing and RMISSD (-9999) otherwise. - */ - public static float prSkyx(float skyc, float drct, float sped) { - float prskyx = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(skyc) - && !MissingValueTester.isDataValueMissing(drct) - && !MissingValueTester.isDataValueMissing(sped)) { - int jdrct = Math.round(drct); - int jsped = Math.round(sped); - int jskyc = Math.round(skyc); - prskyx = jdrct * 10 + jsped * 10000 + jskyc; - } - return prskyx; - } - - /** - * Computes the wind speed from the 'U' and 'V' components of the wind - * velocity. The formula is the square root of ( u^2 + v^2 ) - * - * @param uWnd - * - U component of velocity - * @param vWnd - * - V component of velocity - * @return the computed windspeed if both inputs are valid and RMISSD ( - * -9999) otherwise - */ - public static float prSped(float uWnd, float vWnd) { - float prsped = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(uWnd) - && !MissingValueTester.isDataValueMissing(vWnd)) { - prsped = (float) (Math - .sqrt((Math.pow(uWnd, 2) + Math.pow(vWnd, 2)))); - } - return prsped; - } - - /** - * Computes a standard height used on upper-air charts. For data below 500 - * mb, the standard height is the last three digits of the height. For data - * at and above 500 mb, the height is the last three digits of the height in - * decameters. - * - * @param pres - * - Pressure in millibars - * @param hght - * - Height in meters - * @return the abbreviated height, if both inputs are valid and RMISSD ( - * -9999) otherwise. - */ - public static float prStdz(float pres, float hght) { - float prstdz = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(hght)) { - /* - * ( Non-Javadoc ) This computation matches the method's - * description, as provided in the Javadoc. The method's description - * needs to be interpreted from a meteorologist's point of view as - * opposed to plain English. - */ - int ihhh = ((pres > 500) ? Math.round(hght) : Math.round(hght / 10)); - prstdz = ihhh % 1000; - } - return prstdz; - } - - /** - * Computes the potential temperature ( in Kelvin ) from the temperature (in - * Celsius ) and the pressure ( in mb ). - * - * @param tmpc - * - The temperature ( in Celsius ) - * @param pres - * - The pressure ( in mb ) - * @return the potential temperature ( in Kelvin ), if both inputs are valid - * and RMISSD ( -9999) otherwise. - */ - public static float prThta(float tmpc, float pres) { - float prthta = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(pres) && (pres > 0)) { - - /* Change temperature in degrees Celsius to Kelvin. */ - float tmpk = prTmck(tmpc); - - /* Calculate theta using Poisson's equation */ - prthta = (float) (tmpk * Math.pow((1000 / pres), - GempakConstants.RKAPPA)); - } - return prthta; - } - - /** - * Computes wet bulb potential temperature ( in Celsius ) from the pressure, - * temperature and dewpoint. The result is obtained by first computing the - * equivalent potential temperature (thte) of the the air parcel at level - * pres. Then the air parcel is brought to 1000 mb moist adiabatically to - * get the wet bulb potential temperature. - * - * @param pres - * - Pressure ( in millibars ) - * @param tmpc - * - Temperature ( in Celsius ) - * @param dwpc - * - Dewpoint ( in Celsius ) - * @return The wet bulb potential temperature ( in Celsius ) if all inputs - * are valid and RMISSD ( -9999) otherwise. - */ - public static float prThwc(float pres, float tmpc, float dwpc) { - float prthwc = GempakConstants.RMISSD; - - /* Check for missing and invalid data */ - if (!MissingValueTester.isDataValueMissing(tmpc) - && !MissingValueTester.isDataValueMissing(pres) - && !MissingValueTester.isDataValueMissing(dwpc) && (pres > 0)) { - - /* Compute the thte */ - float thte = prThte(pres, tmpc, dwpc); - - /* Check for missing 'thte' and compute wet bulb temperature. */ - if (!MissingValueTester.isDataValueMissing(thte)) { - float tg = 0; - float p1000 = 1000; - - /* Compute the parcel temperature (in Kelvin) */ - prthwc = prTmst(thte, p1000, tg); - - if (!MissingValueTester.isDataValueMissing(prthwc)) - - /* Convert the parcel temperature to Celsius */ - prthwc = prTmkc(prthwc); - } - } - return prthwc; - } - - /** - *
- * Computes wet bulb temperature from the temperature, mixing ratio, and pressure.
- * The result is obtained by solving for the temperature at which saturation occurs,
- * when the latent heat required to vaporize the water is provided by a cooling of the air.
- * The equation representing the process is:
- * ( tmpk - tmwb ) * cp - ( Rsat (tmwb) - rmix ) * lvap = 0
- * This implicit equation is solved by Newton's method, since the
- * saturation mixing ratio Rsat is a transcendental function of tmwb.
- * The expressions for the heat of vaporization (LVAP) and saturation
- * vapor pressure are equations (2) and (10) from Bolton (MWR, 1980).
- *
- *
- * @param tmpk
- * - Temperature (K)
- * @param rmix
- * - Mixing ratio (g/kg)
- * @param pres
- * - Pressure (mb)
- * @return Wet bulb temperature (K) if all inputs are valid and RMISSD (
- * -9999) otherwise.
- */
- public static float prTmwb(float tmpk, float rmix, float pres) {
- float prtmwb = GempakConstants.RMISSD;
- /* Check for missing and invalid data */
- if (!MissingValueTester.isDataValueMissing(tmpk)
- && !MissingValueTester.isDataValueMissing(rmix)
- && !MissingValueTester.isDataValueMissing(pres) && (pres > 0)) {
-
- /* Change temperature to degrees Celsius. */
- float tmp = prTmkc(tmpk);
-
- /* Compute the latent heat of vaporization. */
- float lvap = prLhvp(tmp);
-
- /* Compute the specific heat of moist air */
- rmix /= 1000;
- float cp = (float) (1005.7 * (1.0 + 0.887 * rmix));
-
- float rlocp = lvap / cp;
-
- /* Do Newton iteration */
- int iter = 0;
- float twb = tmp;
- boolean isConvrg = false;
-
- float A = 6.112f;
- float B = 17.67f;
- float C = 243.5f;
- float EPSI = 0.622f;
- float G = B * C;
- float ERRMAX = 0.001f;
-
- while (iter <= 50 && !isConvrg) {
- iter++;
- float bt = B * twb;
- float tpc = twb + C;
- float d = (float) ((pres / A) * Math.exp((-bt) / tpc));
- float dm1 = d - 1;
- float f = (tmp - twb) - rlocp * (EPSI / dm1 - rmix);
- float df = (-G) / (tpc * tpc);
- df = d * df * rlocp * EPSI / (dm1 * dm1) - 1;
- float cor = f / df;
- twb = twb - cor;
- if (Math.abs(cor) <= ERRMAX)
- isConvrg = true;
- }
-
- if (isConvrg) {
- float twk = prTmck(twb);
- if (twk > tmpk)
- twk = tmpk;
- prtmwb = twk;
- }
- }
- return prtmwb;
- }
-
- /**
- * Compute the coded value for the minimum temperature /maximum temperature/
- * probability of precipitation
- *
- * @param tmin
- * - Minimum temperature
- * @param tmax
- * - Maximum temperature
- * @param pp24
- * - Probability of precipitation
- * @return the coded value PPPYYYNNN ( Where PPP is the Probability of
- * precipitation, YYY is the maximum temperature and NNN is the
- * minimum temperature ), if atleast one input is valid or RMISSD
- * otherwise
- */
- public static float prTpfr(float tmin, float tmax, float pp24) {
- float prtpfr = GempakConstants.RMISSD;
- /*
- * ( Non- Javadoc) Construct the coded integer. The value is 9 digits as
- * in PPPYYYNNN. Where PPP is the Probability of precipitation, YYY is
- * the maximum temperature and NNN is the minimum temperature All values
- * are adjusted by 200 to account for negative and missing values.
- */
- int ival = 0;
- if (!MissingValueTester.isDataValueMissing(tmin))
- ival = ival + (Math.round(tmin) + 200);
-
- if (!MissingValueTester.isDataValueMissing(tmax))
- ival = ival + (Math.round(tmax) + 200) * 1000;
-
- if (!MissingValueTester.isDataValueMissing(pp24))
- ival = ival + (Math.round(pp24) + 200) * 1000000;
- /*
- * If all three values are missing (ival is still 0), then the answer is
- * missing.
- */
- if (ival != 0)
- prtpfr = ival;
-
- return prtpfr;
- }
-
- /**
- * Computes the virtual temperature ( in Kelvin ) from the temperature ( in
- * Celsius ), dewpoint ( in Celsius ) and pressure ( in mb ) where DWPC and
- * PRES are used to compute MIXR. The following equation is used: TVRK =
- * TMPK * (1 + .001 * MIXR / .62197) / (1 + .001 * MIXR) If DWPC is missing,
- * dry air is assumed and TMPK is returned.
- *
- * @param tmpc
- * - Temperature ( in Celsius )
- * @param dwpc
- * - Dewpoint ( in Celsius )
- * @param pres
- * - Pressure ( in mb )
- * @return the virtual temperature ( in Kelvin ) or RMISSD ( -9999.0 ) if
- * there are inputs missing for the computations.
- */
- public static float prTvrk(float tmpc, float dwpc, float pres) {
- float prtvrk = GempakConstants.RMISSD;
- if (MissingValueTester.isDataValueMissing(tmpc)
- || MissingValueTester.isDataValueMissing(pres)) {
- return prtvrk;
- }
-
- /* If dewpoint is missing, return temperature */
- // else if ( !MissingValueTester.isDataValueMissing( dwpc ) ) {
- else if (MissingValueTester.isDataValueMissing(dwpc)) {
- prtvrk = prTmck(tmpc);
- }
-
- else {
- /* Change temperature to Kelvin. */
- float tmpk = prTmck(tmpc);
-
- /* Find mixing ratio in g/kg; if missing, return temperature */
- float rmix = prMixr(dwpc, pres);
-
- if (MissingValueTester.isDataValueMissing(rmix)) {
- prtvrk = prTmck(tmpc);
- } else {
- prtvrk = (float) (tmpk * (1 + 0.001 * rmix / 0.62197) / (1 + 0.001 * rmix));
- }
-
- }
- return prtvrk;
- }
-
- /**
- * Computes the 'U' component of the wind from its speed and direction
- *
- * @param sped
- * - wind speed
- * @param drct
- * - wind direction
- * @return The 'U' component of the wind if both inputs are valid and RMISSD
- * ( -9999) otherwise.
- */
- public static float prUwnd(float sped, float drct) {
- float pruwnd = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(drct)
- && !MissingValueTester.isDataValueMissing(sped)) {
- pruwnd = (float) ((-Math.sin(drct * GempakConstants.DTR)) * sped);
- }
- return pruwnd;
- }
-
- /**
- * Computes the 'V' component of the wind from its speed and direction
- *
- * @param sped
- * - wind speed
- * @param drct
- * - wind direction
- * @return The 'V' component of the wind if both inputs are valid and RMISSD
- * ( -9999) otherwise.
- */
- public static float prVwnd(float sped, float drct) {
- float pruwnd = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(drct)
- && !MissingValueTester.isDataValueMissing(sped)) {
- pruwnd = (float) ((-Math.cos(drct * GempakConstants.DTR)) * sped);
- }
- return pruwnd;
- }
-
- /**
- * Computes the visibility ( in nautical miles ) from the input visibility (
- * in kilometers )
- *
- * @param vsbk
- * - visibility ( in kilometers )
- * @return visibility ( in nautical miles ) if the input is valid and RMISSD
- * (-9999) otherwise
- */
- public static float prVskn(float vsbk) {
- return (!MissingValueTester.isDataValueMissing(vsbk) ? (float) (vsbk * 0.54)
- : GempakConstants.RMISSD);
- }
-
- /**
- * Converts the WMO cloud cover fraction code to the decimal cloud cover
- * fraction
- *
- * @param wmoccv
- * - WMO cloud cover code
- * @return Decimal cloud cover fraction if the input is valid and RMISSD
- * (-9999) otherwise
- */
- public static float prWccv(float wmoccv) {
- float prwccv = GempakConstants.RMISSD;
- float[] cover = { 0, 0.1f, 0.2f, 0.4f, 0.5f, 0.6f, 0.7f, 0.9f, 1, 1 };
- if (!MissingValueTester.isDataValueMissing(wmoccv) && (wmoccv >= 0)
- && (wmoccv <= 9)) {
- int iccv = Math.round(wmoccv) + 1;
- if (iccv > 9) {
- iccv = 9;
- }
- prwccv = cover[iccv];
- }
- return prwccv;
- }
-
- /**
- * Computes the wind chill equivalent temperature ( the temperature with
- * calm winds that produces the same cooling effect as the given temperature
- * with the given wind speed)
- *
- * @param tmpf
- * - Air temperature ( in Farenheit )
- * @param sknt
- * - Wind speed ( in knots )
- * @return the wind chill equivalent temperature ( in Farenheit ), if the
- * inputs are valid and RMISSD (-9999) otherwise
- */
- public static float prWceq(float tmpf, float sknt) {
- float prwceq = GempakConstants.RMISSD;
- /* Convert input variables to Celsius and meters/second. */
- float tmpc = prTmfc(tmpf);
- float sped = prKnms(sknt);
- if (!MissingValueTester.isDataValueMissing(tmpc)
- && !MissingValueTester.isDataValueMissing(sped)) {
-
- if (sped <= 1.34)
- /*
- * If the wind speed does not exceed 1.34 m/s ( not much wind to
- * contribute to the wind chill), return the input temperature
- * as the wind chill temperature
- */
- prwceq = prTmcf(tmpc);
- else {
- /*
- * Compute the wind chill temp if the inputs are not missing and
- * and the wind speed is greater than 1.34 m/s. Equations for
- * wind chill computation from R. Falconer,
- * "Windchill, A Useful Wintertime Weather Variable",
- * Weatherwise, Dec 1968.
- */
- float windChill = (float) (33.0 - ((33.0 - tmpc) * wci(sped) / wci(1.34f)));
- prwceq = prTmcf(windChill);
- }
- }
-
- return prwceq;
- }
-
- /**
- * Computes the wind chill temperature from the air temperature and the wind
- * speed
- *
- * @param tmpf
- * - Air temperature ( in degree Farenheit )
- * @param sknt
- * - Wind speed ( in knots )
- * @return the wind chill temperature ( in Farenheit ) if none of the inputs
- * are missing and RMISSD (-9999) otherwise
- */
- public static float prWcht(float tmpf, float sknt) {
- float prwrcht = GempakConstants.RMISSD;
-
- /* Convert the speed to miles per hour */
- float smph = prKnmh(sknt);
-
- if (!MissingValueTester.isDataValueMissing(tmpf)
- && !MissingValueTester.isDataValueMissing(smph)) {
- /*
- * If the inputs are not missing , check if the wind speed is <= 3
- * miles per hour
- */
- if (smph <= 3)
- prwrcht = tmpf;
- else {
- /*
- * Compute the wind-chill temperature for wind speeds that
- * exceed 3 miles per hour
- */
- float wcht = (float) (35.74 + 0.6215 * tmpf - 35.75
- * Math.pow(smph, 0.16) + 0.4275 * tmpf
- * Math.pow(smph, 0.16));
- prwrcht = (wcht > tmpf ? tmpf : wcht);
-
- }
- }
- return prwrcht;
- }
-
- /**
- * Computes the wind component towards a specific direction from the wind
- * direction, wind speed and direction of desired component.
- *
- * @param drct
- * - the wind direction in degrees
- * @param sped
- * - the wind speed in m/s
- * @param dcmp
- * - the direction of the desired component
- * @return the component of the wind (in m/s) if none of the input
- * parameters are missing and RMISSD (-9999) otherwise
- */
- public static float prWcmp(float drct, float sped, float dcmp) {
- float prwcmp = GempakConstants.RMISSD;
- /* Check for missing input parameters */
- if (!MissingValueTester.isDataValueMissing(drct)
- && !MissingValueTester.isDataValueMissing(sped)
- && !MissingValueTester.isDataValueMissing(dcmp)) {
- /* Calculate wind speed toward specified direction */
- prwcmp = (float) (sped * (-Math.cos((drct - dcmp)
- * GempakConstants.DTR)));
- }
- return prwcmp;
- }
-
- /**
- * Computes the hierarchical value of the ceiling converted to MSL (mean sea
- * level) in hundreds of feet, with a temporary/probability value taking
- * precedence over a prevailing one.
- *
- * @param cmsl
- * - Prevailing ceiling (MSL) ( in 100's of ft )
- * @param tcms
- * - Temporary /probability ceiling (MSL) ( in 100's of ft )
- * @return Hierarchical ceiling (MSL) ( in 100's of ft )
- */
- public static float prWcms(float cmsl, float tcms) {
- return (!MissingValueTester.isDataValueMissing(tcms) ? tcms : cmsl);
- }
-
- /**
- * Computes the packed wind speed and direction from the input wind speed
- * and wind direction
- *
- * @param drct
- * - wind direction ( in degrees )
- * @param sped
- * - wind speed ( in knots or m/s )
- * @return the packed speed and direction
- */
- public static float prWind(float drct, float sped) {
- float prwind = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(drct)
- && !MissingValueTester.isDataValueMissing(sped)) {
- /*
- * (Non-Javadoc) The packed wind speed and direction are of the
- * form: SSSDDD, where SSS - wind speed ( in knots or m/s ) and DDD
- * - wind direction in degrees
- */
- int jdrct = Math.round(drct);
- int jsped = Math.round(sped);
- prwind = jdrct + jsped * 1000;
- }
- return prwind;
- }
-
- /**
- * Converts the numeric WMO weather code for present weather, reported from
- * an automatic station ( WMO code table 4680 ) to the corresponding numeric
- * WMO weather code for present weather reported from a manned station (WMO
- * code table 4677).
- *
- * @param wwma
- * - Automatic station weather code
- * @return the manned station weather code if the input weather code ( after
- * being rounded to the nearest integer ) lies between 0 and 99
- * (both inclusive) and the value returned from the array, by
- * indexing this number is > 0. Otherwise, it returns RMISSD ( -9999
- * ).
- */
- public static float prWmao(float wwma) {
- float prwmao = GempakConstants.RMISSD;
- int[] man = { -1, 1, 2, 3, 5, 5, -1, -1, -1, -1, 10, 76, 13, -1, -1,
- -1, -1, -1, 18, -1, 28, 21, 20, 21, 22, 24, 29, -1, -1, -1, 42,
- 41, 42, 44, 46, 47, -1, -1, -1, -1, 203, 203, 203, 63, 65, 73,
- 75, 67, 67, -1, 53, 51, 53, 55, 56, 57, 57, 58, 59, -1, 63, 61,
- 63, 65, 66, 67, 67, 68, 69, -1, 73, 71, 73, 75, 79, 79, 79, 77,
- 78, -1, 81, 80, 81, 81, 82, 85, 86, 86, -1, 90, 95, 17, 95, 96,
- 17, 97, 99, -1, -1, 19 };
- /*
- * (Non-Javadoc) Convert automatic station weather number to manual
- * station weather number. Reserved locations in table 4680 and those
- * values not having an analogue in table 4677 are mapped to RMISSD.
- */
- int iwx = Math.round(wwma);
- if (iwx >= 0 && iwx <= 99) {
- if (man[iwx] >= 0)
- prwmao = man[iwx];
- }
- return prwmao;
- }
-
- /**
- * Computes the wind component toward a direction 90 degrees
- * counterclockwise of a specified direction. If no direction is specified,
- * the component toward north is returned.
- *
- * @param drct
- * - wind direction ( in degrees )
- * @param sped
- * - wind speed ( in knots or m/s )
- * @param dcmp
- * - specified wind direction ( in degrees )
- * @return a component of the wind in m/s if the input wind speed and
- * direction are valid and if the specified wind direction is
- * between 0 degrees and 360 degrees. Otherwise, it returns RMISSD (
- * -9999 ).
- *
- */
- public static float prWnml(float drct, float sped, float dcmp) {
- float prwnml = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(sped)
- && !MissingValueTester.isDataValueMissing(drct) && (dcmp >= 0)
- && (dcmp <= 360)) {
- /*
- * Calculate wind speed 90 degrees to left of given direction.
- */
- prwnml = (float) (sped * (-Math.cos((drct - dcmp - 90)
- * GempakConstants.DTR)));
- }
- return prwnml;
- }
-
- /**
- * Computes the combined wave period and height from the combined wave
- * period and wave height. The group number distinguishes the different wind
- * waves.
- *
- * @param powv
- * - Wave period ( in seconds )
- * @param howv
- * - Wave height ( in meters )
- * @param group
- * - Wave group number 0 = no group 1 = instrument waves 2 = wind
- * waves 4 = predominant swell waves 5 = secondary swell waves
- * @return the combined wave period and height if none of the input
- * parameters are missing and RMISSD ( -9999 ) otherwise.
- */
- public static float prWphf(float powv, float howv, float group) {
- float prwphf = GempakConstants.RMISSD;
-
- if (!MissingValueTester.isDataValueMissing(powv)
- && !MissingValueTester.isDataValueMissing(howv)
- && !MissingValueTester.isDataValueMissing(group)) {
- float prhgmf = prHgmf(howv);
- prwphf = prWvph(powv, prhgmf, group);
- }
-
- return prwphf;
- }
-
- /**
- * Computes the combined wave period and height from the combined wave
- * period and wave height. The group number distinguishes the different wind
- * waves.
- *
- * @param powv
- * - Wave period ( in seconds )
- * @param howv
- * - Wave height ( in the same units as the calling method )
- * @param group
- * - Wave group number 0 = no group 1 = instrument waves 2 = wind
- * waves 4 = predominant swell waves 5 = secondary swell waves
- * @return The combined wave period and height if none of the inputs are
- * missing and RMISSD (-9999) otherwise.
- */
- public static float prWvph(float powv, float howv, float group) {
- float prwvph = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(powv)
- && !MissingValueTester.isDataValueMissing(howv)
- && !MissingValueTester.isDataValueMissing(group)) {
- int ipowv = Math.round(powv);
- int ihowv = Math.round(howv);
- int igroup = Math.round(group);
- if ((ipowv >= 0) && (ipowv <= 99)
- && ((ihowv >= 0) && (ihowv <= 99))
- && ((igroup >= 0) && (igroup <= 9))) {
- prwvph = igroup * 10000 + ipowv * 100 + ihowv;
- }
- }
- return prwvph;
- }
-
- /**
- * Computes the combined wave period and wave height ( in half meters ) from
- * either wper and whgt ( instrument wave data) or poww and howw (wind wave
- * data), since either instrument wave data or wind wave data, but not both,
- * can be reported. A group number is prefixed to the combined value to
- * distinguish between instrument waves and wind waves.
- *
- * @param wper
- * - Instrument wave period (seconds)
- * @param whgt
- * - Instrument wave height (meters)
- * @param poww
- * - Wind wave period (seconds)
- * @param howw
- * - Wind wave height (meters)
- * @return The combined wave period and wave height ( in half meters ) if
- * either the instrument wave data or the wind wave data are valid
- * and RMISSD (-9999) otherwise.
- */
- public static float prWphm(float wper, float whgt, float poww, float howw) {
-
- float prwphm = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(wper)
- && !MissingValueTester.isDataValueMissing(whgt)) {
- prwphm = prWvph(wper, 2 * whgt, 1);
- } else if (!MissingValueTester.isDataValueMissing(poww)
- && !MissingValueTester.isDataValueMissing(howw)) {
- prwphm = prWvph(poww, 2 * howw, 2);
- }
- return prwphm;
- }
-
- /**
- * Translates a WMO pressure tendency code into a pressure change ( in mb )
- *
- * @param ctend
- * - WMO pressure tendency code
- * @return A pressure change ( in mb ) if the input is valid and RMISSD
- * (-9999) otherwise.
- */
- public static float prWtnd(String ctend) {
- float prwtnd = GempakConstants.RMISSD;
- float[] psign = { 1, 1, 1, 1, 0, -1, -1, -1, -1 };
- if (ctend != null && !ctend.isEmpty()) {
- Character firstChar = ctend.charAt(0);
- if (firstChar >= '0' && firstChar <= '8') {
- int itendc = Integer.parseInt(firstChar.toString());
- String substr = ctend.substring(1, 4);
- if (substr.compareTo("999") != 0) {
- float ptend = Float.parseFloat(substr);
- prwtnd = psign[itendc] * ptend / 10;
- }
- }
- }
- return prwtnd;
- }
-
- /**
- * Computes the combined predominant swell wave direction and secondary
- * swell wave direction from the input parameters. A group number 3 is
- * prefixed to the combined value.
- *
- * @param dosw
- * - Predominant swell wave direction ( in degrees) .
- * @param dos2
- * - Secondary swell wave direction ( in degrees).
- * @return The combined swell wave directions ( in tens of degrees ) if the
- * input parameters are not missing and RMISSD (-9999) otherwise.
- */
- public static float prWvdd(float dosw, float dos2) {
- float prwvdd = GempakConstants.RMISSD;
-
- /* If the secondary direction is missing, a value of 99 is used */
- int idos2 = (!MissingValueTester.isDataValueMissing(dos2) ? Math
- .round(dos2 / 10) : 99);
- if (!MissingValueTester.isDataValueMissing(dosw)) {
- int idosw = Math.round(dosw / 10);
- if ((idosw >= 0 && idosw <= 99) && (idos2 >= 0 && idos2 <= 99)) {
- prwvdd = 30000 + idosw * 100 + idos2;
- }
- }
- return prwvdd;
- }
-
- /**
- * Translates a WMO visibility code into visibility in kilometers.
- *
- * @param wmovis
- * - WMO visibility code
- * @return the visibility ( in km )
- */
- public static float prWvis(float wmovis) {
- float prwvis = GempakConstants.RMISSD;
- float[] vis90 = { 0, 0.1f, 0.2f, 0.5f, 1, 2, 4, 10, 20, 50 };
- if (!MissingValueTester.isDataValueMissing(wmovis)) {
-
- /* Values between 0 - 50 translate into tenths of kilometers. */
- if (wmovis >= 0 && wmovis <= 50)
- prwvis = wmovis / 10;
-
- /* Values between 56 and 80 are 50 + whole kilometers. */
- else if (wmovis >= 56 && wmovis <= 80)
- prwvis = wmovis - 50;
-
- /* Values from 81 - 89 are in increments of 5. */
- else if (wmovis >= 81 && wmovis <= 89)
- prwvis = (wmovis - 80) * 5 + 30;
-
- /* The values from 90 - 99 are in the array vis90 */
- else if (wmovis >= 90 && wmovis <= 99) {
- int iknt = (int) (wmovis - 89);
- if (vis90 != null && vis90.length > 0) {
- if (iknt >= vis90.length)
- iknt = vis90.length - 1;
- prwvis = vis90[iknt];
- }
- }
- }
- return prwvis;
- }
-
- /**
- * Computes the combined direction, period and height of the swell waves
- * from the swell wave direction ( in tens of degrees ), the swell wave
- * period ( in seconds ) and the swell wave height ( in half meters )
- *
- * @param dosw
- * - Swell wave direction in degrees
- * @param posw
- * - Swell wave period in seconds
- * @param hosw
- * - Swell wave height in meters
- * @return The combined direction, period and height of the swell waves if
- * none of the inputs are missing and RMISSD ( -9999) otherwise.
- */
- public static float prWvsw(float dosw, float posw, float hosw) {
- float prwvsw = GempakConstants.RMISSD;
- if (!MissingValueTester.isDataValueMissing(dosw)
- && !MissingValueTester.isDataValueMissing(posw)
- && !MissingValueTester.isDataValueMissing(hosw)) {
- float pphh = prWvph(posw, 2 * hosw, 0);
- if (!MissingValueTester.isDataValueMissing(pphh))
- prwvsw = Math.round(dosw / 10) * 10000 + Math.round(pphh);
- }
- return prwvsw;
- }
-
- /**
- * Computes the worst case categorical identification of flight rules for
- * prevailing and temporary / probability conditions.
- *
- * @param xvfr
- * - Prevailing categorical id of flight rules
- * @param txvf
- * - Temporary / probability categorical id of flight rules
- * @return The worst case categorical id of flight rules
- */
- public static float prWxvf(float xvfr, float txvf) {
- float prwxvf = GempakConstants.RMISSD;
-
- if (!MissingValueTester.isDataValueMissing(txvf)
- && !MissingValueTester.isDataValueMissing(xvfr)) {
- prwxvf = (xvfr < txvf ? xvfr : txvf);
- } else if (MissingValueTester.isDataValueMissing(txvf))
- prwxvf = xvfr;
- else if (MissingValueTester.isDataValueMissing(xvfr))
- prwxvf = txvf;
-
- return prwxvf;
- }
-
- /**
- * Computes the numeric total cloud cover for the worst case aviation flight
- * condition, based on the categorical identification of flight rules for
- * prevailing and temporary / probability conditions.
- *
- * @param xvfr
- * - Prevailing categorical id of flight rules
- * @param txvf
- * - Temporary / Probability categorical id of flight rules
- * @param cfrt
- * - Prevailing numeric total cloud cover
- * @param tcfr
- * - Temporary / Probability numeric total cloud cover
- * @return Worst case numeric total cloud cover or RMISSD (-9999) if the
- * computation does not fall through
- */
- public static float prWcfr(float xvfr, float txvf, float cfrt, float tcfr) {
- float prwcfr = GempakConstants.RMISSD;
- if (MissingValueTester.isDataValueMissing(xvfr)
- || MissingValueTester.isDataValueMissing(txvf)) {
- prwcfr = (cfrt > tcfr ? cfrt : tcfr);
- } else if (txvf < xvfr)
- prwcfr = tcfr;
- else if (txvf == xvfr)
- prwcfr = (cfrt > tcfr ? cfrt : tcfr);
- else
- prwcfr = cfrt;
- return prwcfr;
- }
-
- /**
- * Computes the windchill from the wind velocity ( part of the Falconer
- * equation - refer method prWceq)
- *
- * @param velocity
- * - wind velocity ( in meters per second )
- * @return the windchill temperature
- */
- private static float wci(float velocity) {
- if (!MissingValueTester.isDataValueMissing(velocity)) {
- /*
- * from R. Falconer,
- * "Windchill, A Useful Wintertime Weather Variable", Weatherwise,
- * Dec 1968.
- */
- return ((float) (10 * Math.sqrt(velocity) + 10.45 - velocity));
- }
- return GempakConstants.RMISSD;
- }
-
- /**
- * - * Computes LIFR/IFR/MVFR/VFR flight conditions based on ceiling and visibility. - * @param ceil - Ceiling in hundreds of feet - * @param vsby - Visibility in statute miles - * @return Flight conditions index value: - * 0 - LIFR - * 1 - IFR - * 2 - MVFR - * 3 - VFR - * or RMISSD (-9999), if both ceiling and visibility are missing - *- */ - public static float prXvfr(float ceil, float vsby) { - float prxvfr = GempakConstants.RMISSD; - float vc = GempakConstants.RMISSD; - float vs = GempakConstants.RMISSD; - - if (MissingValueTester.isDataValueMissing(ceil) - && MissingValueTester.isDataValueMissing(vsby)) - return prxvfr; - - /* Compute categorical flight rules */ - // Check the ceiling value - if (!MissingValueTester.isDataValueMissing(ceil)) { - if (ceil < 0) { - // no-op. So vc retains its RMISSD value - } else if (ceil < 5) - vc = 0; - else if (ceil < 10) - vc = 1; - else if (ceil <= 30) - vc = 2; - else if ((vsby > 5) || (vsby < 0) - || MissingValueTester.isDataValueMissing(vsby)) { - prxvfr = 3; - } - } - - /* Check the visibility value. */ - if (!MissingValueTester.isDataValueMissing(vsby)) { - if (vsby < 0) { - // no-op. So vs retains it RMISSD value - } else if (vsby < 1) - vs = 0; - else if (vsby < 3) - vs = 1; - else if (vsby <= 5) - vs = 2; - else - vs = 3; - } - - /* Determine the more restrictive of the two values. */ - if (MissingValueTester.isDataValueMissing(vc)) - prxvfr = vs; - else if (MissingValueTester.isDataValueMissing(vs)) - prxvfr = vc; - else - prxvfr = (vc < vs ? vc : vs); - - return prxvfr; - - } - - /** - * Computes station elevation from altimeter and station pressure. It is - * also used to estimate height at various pressure levels from the - * altimeter in millibars. The PC library computes zmsl, Z000, Z950, Z850, - * Z800 by calling this function with pres equal to PMSL, 1000, 950, 850 and - * 800 respectively. - * - * @param altm - * - Altimeter in millibars - * @param pres - * - Pressure in millibars - * @return the height ( in meters ) if neither input value is missing and - * both input values are greater than zero. Otherwise, it returns - * RMISSD ( -9999 ). - */ - public static float prZalt(float altm, float pres) { - float przalt = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(altm) - && !MissingValueTester.isDataValueMissing(pres) && (altm > 0) - && (pres > 0)) { - - float to = GempakConstants.TMCK + 15; - float gamma = GempakConstants.GAMUSD / 1000; - - /* Calculate the exponent and pressure ratio. */ - float expo = (gamma * GempakConstants.RDGAS) - / GempakConstants.GRAVTY; - float prat = pres / altm; - przalt = (float) ((to * (1 - Math.pow(prat, expo))) / gamma); - } - return przalt; - } - - /** - * Converts the GEMPAK weather code to the WMO weather code, which is used - * to plot weather symbols. - * - * @param wnum - * - GEMPAK weather code - * @return the weather symbol number - */ - public static float prNsym(float wnum) { - - float prnsym = GempakConstants.RMISSD; - // TODO : uncomment these 2 lines, once the PT library is implemented - // float wcod = ptWcod ( wnum ); /*Convert weather number to character - // weather code*/ - // prnsym = ptWsym ( wcod ); /*Convert weather character code to weather - // symbol number*/ - return prnsym; - } - - public static class RZLL { - private static RZLL rzll; - - /** Station latitude in degrees */ - float stltdg = GempakConstants.RMISSD; - - /** Station longitude in degrees */ - float stlndg = GempakConstants.RMISSD; - - /** Range in kilometers */ - float range = GempakConstants.RMISSD; - - /** Geographic azimuth in radians */ - float azim = GempakConstants.RMISSD; - - /** Height above the ground in kilometers */ - float hght = GempakConstants.RMISSD; - - /** Latitude in degrees */ - float xlat = GempakConstants.RMISSD; - - /** Longitude in degrees */ - float xlon = GempakConstants.RMISSD; - - /** - * @return the xlat - */ - public float getXlat() { - return xlat; - } - - /** - * @return the xlon - */ - public float getXlon() { - return xlon; - } - - private static RZLL getInstance() { - if (rzll == null) { - rzll = new RZLL(); - } - return rzll; - } - - /** - * Computes the actual latitude/longitude given the station - * latitude/longitude, elevation and azimuth. It uses equations - * developed for use in the AOIPS radar. + prpkdd = ( float) ( 5 * (int) ( pspd / 500 ) ); + if ( prpkdd >= 360) + prpkdd -= 360; + } + return prpkdd; + } + + /** + * Computes the wind speed ( in knots ) given the packed speed and direction + * using the equation: + * SPED = MOD ( INT (PSPD) , 500 ) + * @param pspd - The packed speed and direction. It is in the form DDFFF + * where DD is the wind direction in tens of degrees, and FFF is + * either the wind speed or wind speed plus 500, depending on the + * units digit of direction rounded to the nearest 5 degrees + * @return The wind speed ( in knots ) + */ + public static float prPkss ( float pspd){ + float prpkss = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(pspd) ){ + // Formally, SPED is MOD ( PSPD, 1000 ), with 500 subtracted off if + // needed, but 1000 is a multiple of 500, so it is done in 1 step. + prpkss = ( ( int ) pspd ) % 500 ; + } + return prpkss; + } + + /** + * Computes the lifted condensation level pressure ( in mb ) for a parcel of air + * from TMPC, PRES, adn TLCL. TLCL may be computed using PR_TLCL. The equation + * used is a modified Poisson equation: + * PLCL = PRES * ( TLCL / TMPK ) ** ( 1 / RKAPPA ) + * @param tmpc - Temperature ( in Celsius ) before lifting the air parcel + * @param pres - Pressure ( in mb ) before lifting the air parcel + * @param tlcl - Temperature ( in Kelvin ) at the lifted condensation level + * @return the pressure at the lifted condensation level, if all the inputs are valid and RMISSD ( -9999) otherwise + */ + public static float prPlcl ( float tmpc, float pres, float tlcl){ + float prplcl = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( tmpc ) + && !MissingValueTester.isDataValueMissing( pres ) +// && !MissingValueTester.isDataValueMissing( tmpc ) ){ + && !MissingValueTester.isDataValueMissing( tlcl ) ){ + float tmpk = prTmck ( tmpc); + prplcl = ( float ) ( pres * Math.pow( ( tlcl / tmpk ) , ( 1 / GempakConstants.RKAPPA ) ) ); + } + return prplcl; + } + + /** + *
+ * Computes the mean sea level pressure ( in mb ) from the station pressure ( in mb ), + * the temperature ( in deg Celsius), the dewpoint ( in deg Celsius ) and + * the station elevation ( in meters ) using the equation: + * PMSL = PRES * EXP ( ( GRAVTY * SELV ) / ( RDGAS * TVAVE ) ) + * where + * TVAVE = avg virtual temp between station and sea level + * = TVRK + ( DELTV / 2 ) + * DELTV = GAMUSD * SELV / 1000 + * Wallace and Hobbs. + * @param pres - the station pressure ( in mb ) + * @param tmpc - the temperature ( in deg Celsius) + * @param dwpc - the dewpoint ( in deg Celsius ) + * @param selv - the station elevation ( in meters ) + * @return the mean sea level pressure ( in mb ) if all the inputs are valid and RMISSD ( -9999) otherwise + * + * + *+ */ + public static float prPmsl ( float pres, float tmpc, float dwpc, float selv ){ + float prpmsl = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( pres ) + && !MissingValueTester.isDataValueMissing( tmpc ) + && !MissingValueTester.isDataValueMissing( dwpc ) + && !MissingValueTester.isDataValueMissing( selv ) ){ + /*Calculate virtual temperature*/ + float tv = prTvrk ( tmpc, dwpc, pres); + /* 8888888888888 */ + System.out.println(" tv=" + tv); + /* 888 */ + + /*deltaV and tVave*/ + float deltaV = selv * GempakConstants.GAMUSD / 1000; +// float tVave = tv + ( deltaV + 2); + float tVave = tv + ( deltaV / 2); + float mathFormula = ( GempakConstants.GRAVTY * selv ) / ( GempakConstants.RDGAS * tVave ); + /* 8888888888888 */ + System.out.println(" selv=" + selv + " tVave=" + tVave + " mathForm=" + mathFormula); + /* 888 */ +// prpmsl = ( float) ( Math.exp(mathFormula) ); + prpmsl = (float) ( pres * Math.exp(mathFormula)); + } + return prpmsl; + } + + /** + * Computes the parcel pressure from THTE the equivalent potential temperature ( in Kelvin ) and + * and TMPC the parcel temperature at PRES on a specified moist adiabat (THTE). The computation is an iterative Newton-Raphson + * technique of the form: + * x = x(guess) + [ f( x ) - f( x(guess) ) ] / f'( x(guess) ) + * + * f' is approximated with finite differences + * f' = [ f( x(guess) + 1 ) - f( x(guess) ) ] / 1 + * Convergence is not guaranteed for extreme input values. If the + * computation does not converge after 100 iterations, the missing + * data value will be returned. + * + * @param thte - Equivalent potential temperature ( in Kelvin ) + * @param tmpk - Parcel temperature ( in Kelvin ) + * @return the pressure ( in mb ) + */ + public static float prPmst ( float thte, float tmpk ){ + float prpmst = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( thte ) + && !MissingValueTester.isDataValueMissing( tmpk ) + && ( thte > 0 ) ){ + /*Set convergence and initial guess of pressure*/ + float epsi = 0.01f; + float tmpc = prTmkc ( tmpk ); + float pgdn = ( float ) ( 1000 * Math.pow ( ( tmpk / thte ), GempakConstants.AKAPPA ) ); + /* + * (Non-Javadoc) + * Set a limit of 100 iterations. Compute tedn and teup, the + * thte's at one degree above the guess temperature + */ + for ( int index = 0; index < 100 ; index++){ + float pgup = pgdn + 1; + float tedn = prThte ( pgdn, tmpc, tmpc ); + float teup = prThte ( pgup, tmpc, tmpc ); + + /*Check thte*/ + if ( MissingValueTester.isDataValueMissing(tedn) || MissingValueTester.isDataValueMissing(teup)) + break; + else { + /*Compute the correction; return on convergence*/ + float cor = ( thte - tedn ) / ( teup - tedn ); + pgdn = pgdn + cor; + if ( Math.abs(cor) < epsi ){ + prpmst = pgdn; + break; + } + } + } + } + return prpmst; + } + + /** + * Computes PR24, the 24-hour precipitation calculated by + * summing four 6-hour precipitation values + * @param p01 - First 6-hour precipitation amount + * @param p02 - Second 6-hour precipitation amount + * @param p03 - Third 6-hour precipitation amount + * @param p04 - Fourth 6-hour precipitation amount + * @return the total 24-hour precipitation amount + */ + public static float prPr24 ( float p01, float p02, float p03, float p04 ){ +// float p24 = GempakConstants.RMISSD; + float[] tempArray = {p01, p02, p03, p04 }; + Arrays.sort(tempArray); +// p24 = tempArray[3]; + float p24 = tempArray[3]; + if ( p24 > 0 ){ + p24 = 0; + if ( p01 > 0 ) + p24 = p24 + p01; + + if ( p02 > 0 ) + p24 = p24 + p02; + + if ( p03 > 0 ) + p24 = p24 + p03; + + if ( p04 > 0 ) + p24 = p24 + p04; + + } else if (p24 < 0f){ + p24 = GempakConstants.RMISSD; + } + return p24; + } + + /** + * Computes the maximum precipitation amount for upto 4 preciptiation values in inches + * @param p01 - First precipitation amount + * @param p02 - Second precipitation amount + * @param p03 - Third precipitation amount + * @param p04 - Fourth precipitation amount + * @return the maximum precipitation + */ + public static float prPr6x ( float p01, float p02, float p03, float p04 ){ + float[] tempArray = {p01, p02, p03, p04 }; + Arrays.sort(tempArray); + return tempArray[3]; + } + + /** + * Computes the station pressure ( in mb ) from the temperature ( in deg Celsius ) + * and the potential temperature ( in Kelvin ) using Poisson's equation: + * PRES = 1000. * ( PR_TMCK (TMPC) / THTA ) ** (1 / RKAPPA) + * @param tmpc - temperature (in deg Celsius) + * @param thta - potential temperature ( in Kelvin ) + * @return the station pressure ( in mb ) if both the inputs are valid and RMISSD (-9999) otherwise + */ + public static float prPres ( float tmpc, float thta ){ + float prpres = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(thta) + && ( tmpc > -GempakConstants.TMCK ) + && ( thta > 0 ) ){ + float tmpk = prTmck ( tmpc ); + prpres = ( float ) ( 1000 * Math.pow(tmpk / thta, 1 / GempakConstants.RKAPPA ) ); + } + return prpres; + } + + /** + * Computes the packed wind speed and direction from DRCT and SPED using + * the equation: PSPD = JDRCT * 500 + JSPED + * where + * JDRCT = NINT ( DRCT / 5 ) + * JSPED = NINT ( SPED ) + * + * @param drct - Wind direction in degrees + * @param sped - Wind speed + * @return the packed wind speed and direction if both inputs are valid and RMISSD ( -9999 ) otherwise. + * It is in the form DDFFF, where DD is the wind direction in tens of degrees, + * and FFF is either the wind speed or wind speed plus 500, + * depending on the unit digit of direction rounded to the nearest + * 5 degrees. * - * @param instltdg - * - Station latitude in degrees - * @param instlndg - * - Station longitude in degrees - * @param inrange - * - Range in kilometers - * @param inazim - * - Geographic azimuth in radians - * @param inhght - * - Height above ground in km - */ - public void prRzll(float instltdg, float instlndg, float inrange, - float inazim, float inhght) { - if (!MissingValueTester.isDataValueMissing(instltdg) - && !MissingValueTester.isDataValueMissing(instlndg) - && !MissingValueTester.isDataValueMissing(inrange) - && !MissingValueTester.isDataValueMissing(inazim) - && !MissingValueTester.isDataValueMissing(inhght)) { + */ + public static float prPspd ( float drct, float sped ) { + float prpspd = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( drct ) + && !MissingValueTester.isDataValueMissing(sped)){ + float jdrct = Math.round ( drct / 5); +// float jsped = Math.round ( sped / 5); + float jsped = Math.round ( sped ); + prpspd = jdrct * 500 + jsped; + } + return prpspd; + } + + /** + * Extracts the symbol code from the pressure tendency information. + * The code number is returned follow by 999 so that the output is a 4-digit number. + * @param p03d - the pressure tendency information + * @return the pressure tendency symbol code if the input is valid or RMISSD ( -9999.0 ) otherwise. + */ + public static float prPtsy ( float p03d ){ +// return ( !MissingValueTester.isDataValueMissing(p03d) ? ( ( int ) ( p03d / 1000 ) ) * 1000 + 999 : GempakConstants.RMISSD ); + return ( !MissingValueTester.isDataValueMissing(p03d) & !(p03d<0) & !(p03d>=9000) ? ( ( int ) ( p03d / 1000 ) ) * 1000 + 999 : GempakConstants.RMISSD ); + } + + /** + * Converts the numeric WMO weather code for past weather reported from + * an automatic station (WMO code table 4531) to the corresponding numeric WMO weather code + * for past weather reported from a manned station (WMO code table 4561). + * @param pwwa - the auto station past weather code + * @return the manned station past code if the input is valid and RMISSD ( -9999 ) otherwise. + */ + public static float prPwao ( float pwwa ){ + float prpwao = GempakConstants.RMISSD; + int[] man = { -1, -1, 3, 4, -1, 5, 6, 7, 8, 9 }; + int iwx = Math.round(pwwa); + if ( iwx >= 0 && iwx <= 9){ + if ( man[ iwx ] >= 0 ) + prpwao = man[ iwx ]; + } + return prpwao; + } + + /** + * Computes the quotient for parameter ratios using the equation: PR_QUOT = X / Y + * (For computing QPF/Watch Threshold) + * @param x - Numerator + * @param y - Denominator + * @return the quotient if both inputs are valid and the denominator is non zero. Returns RMISSD ( -9999 ) + * otherwise + */ + public static float prQuot ( float x, float y){ + if ( !MissingValueTester.isDataValueMissing( x ) + && !MissingValueTester.isDataValueMissing( y ) + && ( y != 0) ){ + return ( x / y ); + } + return GempakConstants.RMISSD; + } + + /** + * Computes the relative humidity ( in percent ) from the input temperature and dewpoint using + * the equation: + * RELH = VAPR / VAPS * 100 + * where + * VAPR = vapor pressure + * = PR_VAPR ( DWPC ) + * VAPS = saturation vapor pressure + * = PR_VAPR ( TMPC ) + * + * @param tmpc - temperature ( in Celsius ) + * @param dwpc - dewpoint ( in Celsius) + * @return the relative humidity ( in percent ) if both inputs are valid and RMISSD ( -9999.0 ) otherwise + */ + public static float prRelh ( float tmpc, float dwpc ){ + float prrelh = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( tmpc ) + && !MissingValueTester.isDataValueMissing( dwpc )){ + /* Find the vapor pressure */ + float e = prVapr ( dwpc ); + + /*Find the saturated vapor pressure*/ + float es = prVapr ( tmpc ); + + /*Calculate humidity*/ + prrelh = ( e/es) * 100; + } + return prrelh; + } + + /** + * Computes the dewpoint (in Celsius) from the temperature ( in Celsius ) + * and the relative humidity ( in percent ). + * @param tmpc - the temperature ( in deg Celsius ) + * @param relh - the relative humidity ( in percent ) + * @return the dewpoint in ( deg Celsius), if both inputs are valid and the value of the vapor + * pressure computed is > ( 1* e^(-30)), or RMISSD (-9999) otherwise + */ + public static float prRhdp ( float tmpc, float relh){ + float prrhdp = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( tmpc ) + && !MissingValueTester.isDataValueMissing( relh ) ){ + + /*Calculate saturation vapor pressure; test for existence*/ + float vaps = prVapr ( tmpc); + if( !MissingValueTester.isDataValueMissing(vaps)){ + + /*Calculate vapor pressure*/ + float vapr = relh * vaps / 100; + + /*Calculate dewpoint. The VAPR test prevents LOG blowups*/ +// if ( vapr > ( Math.pow(Math.E, -30) ) ){//legacy checks for 1.E-30 + if ( vapr >= ( Math.pow(Math.E, -30) ) ){//legacy checks for 1.E-30 + prrhdp = ( float) ( 243.5 * ( Math.log(6.112) - Math.log(vapr) ) / ( Math.log(vapr) - Math.log(6.112) - 17.67 ) ); + + /* If the dew-point is less than -190 degrees C, it is treated as missing data + * Note: Legacy documents it but does not implement it. + * However, in CAVE, it was decided to implement it. + * */ - this.stltdg = instltdg; - this.stlndg = instlndg; - this.range = inrange; - this.azim = inazim; - this.hght = inhght; + if ( prrhdp < -190 ) + prrhdp = GempakConstants.RMISSD; + } + } + } + return prrhdp; + } + + /** + * Computes the abbreviated standard altimeter code SALI from the altimeter setting in + * inches ALTI. SALI is an abbreviated altimeter code in inches which contains + * the unit digit and the first two digits after the decimal points. ALTI is + * multiplied by 100 truncated, and the original tens digit dropped. The following + * equation is used: SALI = NINT ( MOD ( ALTI, 10 ) * 100 ) + * + * @param alti - the altimeter code in inches + * @return the abbreviated standard altimeter code from the input altimeter code + * (if it exists) and RMISSD (-9999) otherwise. + */ + public static float prSali ( float alti){ + float prsali = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(alti) ){ + + /*Drop the leading tens digits*/ + float aalt = alti % 10; + + /* + * Include the tenths and hundredths digit: + * Multiply by 100 and round it off to the nearest integer + */ + aalt *= 100; + prsali = ( float ) Math.round(aalt); + } + + return prsali; + } + + /** + * Computes the standard abreviated altimeter code from the altimeter setting in inches, + * after converting it to millibars ALTM. Then ALTM is multiplied by 10, truncated, and + * the original thousand and hundred digits are dropped. The following equation + * is used: SALT = NINT ( MOD ( ALTM, 100 ) * 10 ) + * @param alti - the altimeter setting in inches + * @return the abbreviated standard altimeter code from the input altimeter setting + * (if it exists) and RMISSD (-9999) otherwise. + */ + public static float prSalt ( float alti ){ + float prsalt = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(alti)){ + + /*Convert the altimeter to millibars*/ + float altm = prAltm(alti); + + /*Drop the leading thousand and/or hundreds digits*/ + float aalt = altm % 100; + + /* Include the tenths digit*/ + aalt *= 10; +// prsalt = Math.round(aalt); + prsalt = (int)aalt; + } + return prsalt; + } + + /** + * Computes the scale height in a layer which can then be used to compute the + * moist hydrostatic height. The folloiwng equation is used: + * SCLH = ( RDGAS / GRAVTY ) * TAV + * TAV = average virtual temperature in layer + * = ( TVIRTB + TVIRTT ) / 2 + * TVIRTB = virtual temperature at bottom + * TVIRTT = virtual temperature at top + * @param tb - Bottom temperature ( in Celsius ) + * @param tt - Top temperature ( in Celsius ) + * @param tdb - Bottom dewpoint ( in Celsius ) + * @param tdt - Top dewpoint ( in Celsius ) + * @param pb - Bottom pressure ( in millibars ) + * @param pt - Top pressure ( in millibars ) + * @return the scale height ( in meters ) if all the input data exist and RMISSD (-9999) otherwise. + */ + public static float prSclh ( float tb, float tt, float tdb, float tdt, float pb, float pt ){ + float prsclh = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tb) + && !MissingValueTester.isDataValueMissing(tt) + && !MissingValueTester.isDataValueMissing(pb) + && !MissingValueTester.isDataValueMissing(pt)){ + + float tvb = prTvrk(tb, tdb, pb); + float tvt = prTvrk(tt, tdt, pt); + + if ( !MissingValueTester.isDataValueMissing(tvt) + && !MissingValueTester.isDataValueMissing(tvb)){ + float tav = ( tvb + tvt ) / 2; + prsclh = tav * GempakConstants.RKAP; + } + } + return prsclh; + } + + /** + * Combines the sky coverage symbol number with + * the wind speed and direction + * @param skyc - Sky coverage + * @param drct - Wind direction in degrees + * @param sped - Wind speed (m/s or knots) + * @return The packed speed and direction + * if none of the input values are missing and RMISSD (-9999) otherwise. + */ + public static float prSkyx ( float skyc, float drct, float sped ){ + float prskyx = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(skyc) + && !MissingValueTester.isDataValueMissing(drct) + && !MissingValueTester.isDataValueMissing(sped)){ + int jdrct = Math.round(drct); + int jsped = Math.round(sped); + int jskyc = Math.round(skyc); + prskyx = jdrct * 10 + jsped * 10000 + jskyc; + } + return prskyx; + } + + + /** + * Computes the wind speed from the 'U' and 'V' components of + * the wind velocity. The formula is the square root of ( u^2 + v^2 ) + * + * @param uWnd - U component of velocity + * @param vWnd - V component of velocity + * @return the computed windspeed if both inputs are valid and RMISSD ( -9999) otherwise + */ + public static float prSped ( float uWnd, float vWnd){ + float prsped = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(uWnd) + && !MissingValueTester.isDataValueMissing(vWnd)){ + prsped = ( float ) ( Math.sqrt( ( Math.pow(uWnd, 2) + Math.pow(vWnd, 2) ) ) ); + } + return prsped; + } + + /** + * Computes a standard height used on upper-air charts. + * For data below 500 mb, the standard height is the last three digits of the height. + * For data at and above 500 mb, the height is the last three digits of the height in decameters. + * @param pres - Pressure in millibars + * @param hght - Height in meters + * @return the abbreviated height, if both inputs are valid and RMISSD ( -9999) otherwise. + */ + public static float prStdz ( float pres, float hght){ + float prstdz = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(pres) + && !MissingValueTester.isDataValueMissing(hght)){ + /* + * ( Non-Javadoc ) + * This computation matches the method's description, as provided in the Javadoc. + * The method's description needs to be interpreted from a meteorologist's point of view + * as opposed to plain English. + * + */ + int ihhh = ( ( pres > 500 ) ? Math.round( hght ) : Math.round( hght / 10 )); + prstdz = ihhh % 1000; + } + return prstdz; + } + + /** + * Computes the potential temperature ( in Kelvin ) from the + * temperature (in Celsius ) and the pressure ( in mb ). + * @param tmpc - The temperature ( in Celsius ) + * @param pres - The pressure ( in mb ) + * @return the potential temperature ( in Kelvin ), if both inputs are valid + * and RMISSD ( -9999) otherwise. + */ + public static float prThta ( float tmpc, float pres){ + float prthta = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( tmpc ) + && !MissingValueTester.isDataValueMissing( pres ) + && ( pres > 0 )){ + + /*Change temperature in degrees Celsius to Kelvin.*/ + float tmpk = prTmck ( tmpc ); + + /*Calculate theta using Poisson's equation*/ + prthta = ( float ) ( tmpk * Math.pow( ( 1000 / pres) , GempakConstants.RKAPPA) ); + } + return prthta; + } + + /** + * Computes wet bulb potential temperature ( in Celsius ) from the + * pressure, temperature and dewpoint. The result is obtained by first + * computing the equivalent potential temperature (thte) of the the air parcel at level + * pres. Then the air parcel is brought to 1000 mb moist adiabatically to get the + * wet bulb potential temperature. + * @param pres - Pressure ( in millibars ) + * @param tmpc - Temperature ( in Celsius ) + * @param dwpc - Dewpoint ( in Celsius ) + * @return The wet bulb potential temperature ( in Celsius ) if all inputs are valid + * and RMISSD ( -9999) otherwise. + */ + public static float prThwc ( float pres, float tmpc, float dwpc) { + float prthwc = GempakConstants.RMISSD; + + /*Check for missing and invalid data*/ + if ( !MissingValueTester.isDataValueMissing(tmpc) + && !MissingValueTester.isDataValueMissing(pres) + && !MissingValueTester.isDataValueMissing(dwpc) + && ( pres > 0 )){ + + /*Compute the thte*/ + float thte = prThte(pres, tmpc, dwpc); - float hdr = GempakConstants.RMISSD; - float elev = GempakConstants.RMISSD; - float rad = GempakConstants.RMISSD; - float radp = GempakConstants.RMISSD; + /*Check for missing 'thte' and compute wet bulb temperature.*/ + if (!MissingValueTester.isDataValueMissing(thte) ){ + float tg = 0; + float p1000 = 1000; + + /*Compute the parcel temperature (in Kelvin)*/ + prthwc = prTmst ( thte, p1000, tg); + + if ( !MissingValueTester.isDataValueMissing(prthwc)) + + /*Convert the parcel temperature to Celsius*/ + prthwc = prTmkc( prthwc ); + } + } + return prthwc; + } + + /** + *
+ * Computes wet bulb temperature from the temperature, mixing ratio, and pressure.
+ * The result is obtained by solving for the temperature at which saturation occurs,
+ * when the latent heat required to vaporize the water is provided by a cooling of the air.
+ * The equation representing the process is:
+ * ( tmpk - tmwb ) * cp - ( Rsat (tmwb) - rmix ) * lvap = 0
+ * This implicit equation is solved by Newton's method, since the
+ * saturation mixing ratio Rsat is a transcendental function of tmwb.
+ * The expressions for the heat of vaporization (LVAP) and saturation
+ * vapor pressure are equations (2) and (10) from Bolton (MWR, 1980).
+ *
+ * @param tmpk - Temperature (K)
+ * @param rmix - Mixing ratio (g/kg)
+ * @param pres - Pressure (mb)
+ * @return Wet bulb temperature (K) if all inputs are valid
+ * and RMISSD ( -9999) otherwise.
+ */
+ public static float prTmwb ( float tmpk, float rmix, float pres){
+ float prtmwb = GempakConstants.RMISSD;
+ /*Check for missing and invalid data*/
+ if ( !MissingValueTester.isDataValueMissing(tmpk)
+ && !MissingValueTester.isDataValueMissing(rmix)
+ && !MissingValueTester.isDataValueMissing(pres)
+ && ( pres > 0 )){
+
+ /*Change temperature to degrees Celsius.*/
+ float tmp = prTmkc ( tmpk );
+
+ /*Compute the latent heat of vaporization.*/
+ float lvap = prLhvp ( tmp );
+
+ /*Compute the specific heat of moist air*/
+ rmix /= 1000;
+ float cp = ( float ) ( 1005.7 * ( 1.0 + 0.887 * rmix ) );
+
+ float rlocp = lvap / cp;
+
+ /*Do Newton iteration*/
+ int iter = 0;
+ float twb = tmp;
+ boolean isConvrg = false;
+
+ float A = 6.112f;
+ float B = 17.67f;
+ float C = 243.5f;
+ float EPSI = 0.622f;
+ float G = B * C;
+ float ERRMAX = 0.001f;
+
+ while ( iter <= 50 && !isConvrg ){
+ iter++;
+ float bt = B * twb;
+ float tpc = twb + C;
+ float d = ( float ) ( ( pres / A ) * Math.exp( (-bt) / tpc ) );
+ float dm1 = d - 1;
+ float f = ( tmp - twb ) - rlocp * ( EPSI / dm1 - rmix );
+ float df = (-G) / ( tpc * tpc );
+ df = d * df * rlocp * EPSI / ( dm1 * dm1 ) - 1;
+ float cor = f / df;
+ twb = twb - cor;
+ if ( Math.abs(cor) <= ERRMAX )
+ isConvrg = true;
+ }
+
+ if ( isConvrg ){
+ float twk = prTmck ( twb );
+ if ( twk > tmpk )
+ twk = tmpk;
+ prtmwb = twk;
+ }
+ }
+ return prtmwb;
+ }
- /* Convert the station lat/lon to radians */
- float stlat = stltdg * GempakConstants.DTR;
- float stlon = stlndg * GempakConstants.DTR;
+ /**
+ * Compute the coded value for the minimum temperature /maximum temperature/ probability of precipitation
+ * @param tmin - Minimum temperature
+ * @param tmax - Maximum temperature
+ * @param pp24 - Probability of precipitation
+ * @return the coded value PPPYYYNNN
+ * ( Where PPP is the Probability of precipitation, YYY is the maximum temperature and
+ * NNN is the minimum temperature ),
+ * if atleast one input is valid or RMISSD otherwise
+ */
+ public static float prTpfr ( float tmin, float tmax, float pp24){
+ float prtpfr = GempakConstants.RMISSD;
+ /*
+ * ( Non- Javadoc)
+ * Construct the coded integer. The value is 9 digits as in
+ * PPPYYYNNN.
+ * Where PPP is the Probability of precipitation, YYY is the maximum temperature and
+ * NNN is the minimum temperature
+ * All values are adjusted by 200 to
+ * account for negative and missing values.
+ */
+ int ival = 0;
+ if ( !MissingValueTester.isDataValueMissing(tmin))
+ ival = ival + ( Math.round(tmin) + 200 ) ;
- /* Get the elevation angle */
- hdr = (range == 0.0f ? 0.0f : hght / range);
- // elev = (float) ( Math.abs(hdr) < 1.0f ? Math.asin(hdr) : 0.0f
- // );
- elev = (float) (Math.abs(hdr) <= 1.0f ? Math.asin(hdr) : 0.0f);
+ if ( !MissingValueTester.isDataValueMissing(tmax))
+ ival = ival + ( Math.round(tmax) + 200 ) * 1000 ;
+
+ if ( !MissingValueTester.isDataValueMissing(pp24))
+ ival = ival + ( Math.round(pp24) + 200 ) * 1000000 ;
+ /*
+ * If all three values are missing (ival is still 0), then the answer is missing.
+ */
+ if ( ival != 0)
+ prtpfr = ival;
+
+ return prtpfr;
+ }
+
+ /**
+ * Computes the virtual temperature ( in Kelvin ) from the temperature ( in Celsius ),
+ * dewpoint ( in Celsius ) and pressure ( in mb ) where DWPC and PRES are used to compute
+ * MIXR. The following equation is used:
+ * TVRK = TMPK * (1 + .001 * MIXR / .62197) / (1 + .001 * MIXR)
+ * If DWPC is missing, dry air is assumed and TMPK is returned.
+ *
+ * @param tmpc - Temperature ( in Celsius )
+ * @param dwpc - Dewpoint ( in Celsius )
+ * @param pres - Pressure ( in mb )
+ * @return the virtual temperature ( in Kelvin ) or RMISSD ( -9999.0 ) if there
+ * are inputs missing for the computations.
+ */
+ public static float prTvrk( float tmpc, float dwpc, float pres ){
+ float prtvrk = GempakConstants.RMISSD;
+ if ( MissingValueTester.isDataValueMissing( tmpc )
+ || MissingValueTester.isDataValueMissing( pres ) ){
+ return prtvrk;
+ }
+
+ /*If dewpoint is missing, return temperature*/
+// else if ( !MissingValueTester.isDataValueMissing( dwpc ) ) {
+ else if (MissingValueTester.isDataValueMissing( dwpc ) ) {
+ prtvrk = prTmck ( tmpc );
+ }
+
+ else {
+ /*Change temperature to Kelvin.*/
+ float tmpk = prTmck ( tmpc ) ;
+
+ /* Find mixing ratio in g/kg; if missing, return temperature */
+ float rmix = prMixr ( dwpc, pres );
+
+ if ( MissingValueTester.isDataValueMissing(rmix) ){
+ prtvrk = prTmck ( tmpc );
+ }else {
+ prtvrk = ( float ) ( tmpk * ( 1 + 0.001 * rmix / 0.62197 ) / ( 1 + 0.001 * rmix ) );
+ }
+
+ }
+ return prtvrk;
+ }
+
+ /**
+ * Computes the 'U' component of the wind from its speed and direction
+ * @param sped - wind speed
+ * @param drct - wind direction
+ * @return The 'U' component of the wind if both inputs are valid and RMISSD ( -9999)
+ * otherwise.
+ */
+ public static float prUwnd ( float sped, float drct) {
+ float pruwnd = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(drct)
+ && !MissingValueTester.isDataValueMissing(sped)){
+ pruwnd = ( float ) ( (-Math.sin( drct * GempakConstants.DTR ) ) * sped);
+ }
+ return pruwnd;
+ }
+
+ /**
+ * Computes the 'V' component of the wind from its speed and direction
+ * @param sped - wind speed
+ * @param drct - wind direction
+ * @return The 'V' component of the wind if both inputs are valid and RMISSD ( -9999)
+ * otherwise.
+ */
+ public static float prVwnd ( float sped, float drct) {
+ float pruwnd = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(drct)
+ && !MissingValueTester.isDataValueMissing(sped)){
+ pruwnd = ( float ) ( (-Math.cos( drct * GempakConstants.DTR) ) * sped );
+ }
+ return pruwnd;
+ }
+
+ /**
+ * Computes the visibility ( in nautical miles ) from the input visibility ( in kilometers )
+ * @param vsbk - visibility ( in kilometers )
+ * @return visibility ( in nautical miles ) if the input is valid and RMISSD (-9999) otherwise
+ */
+ public static float prVskn ( float vsbk) {
+ return ( !MissingValueTester.isDataValueMissing(vsbk) ? (float) (vsbk * 0.54 ) : GempakConstants.RMISSD ) ;
+ }
+
+ /**
+ * Converts the WMO cloud cover fraction code to the decimal cloud cover fraction
+ * @param wmoccv - WMO cloud cover code
+ * @return Decimal cloud cover fraction if the input is valid and RMISSD (-9999) otherwise
+ */
+ public static float prWccv ( float wmoccv) {
+ float prwccv = GempakConstants.RMISSD;
+ float[] cover = {0, 0.1f, 0.2f, 0.4f, 0.5f, 0.6f, 0.7f, 0.9f, 1, 1};
+ if (!MissingValueTester.isDataValueMissing(wmoccv)
+ && ( wmoccv >= 0) && ( wmoccv <= 9)){
+ int iccv = Math.round(wmoccv) + 1;
+ if (iccv > 9){
+ iccv = 9;
+ }
+ prwccv = cover[iccv];
+ }
+ return prwccv;
+ }
+
+ /**
+ * Computes the wind chill equivalent temperature ( the temperature with calm winds that produces the same
+ * cooling effect as the given temperature with the given wind speed)
+ * @param tmpf - Air temperature ( in Farenheit )
+ * @param sknt - Wind speed ( in knots )
+ * @return the wind chill equivalent temperature ( in Farenheit ),
+ * if the inputs are valid and RMISSD (-9999) otherwise
+ */
+ public static float prWceq ( float tmpf, float sknt ){
+ float prwceq = GempakConstants.RMISSD;
+ /*Convert input variables to Celsius and meters/second.*/
+ float tmpc = prTmfc ( tmpf );
+ float sped = prKnms ( sknt );
+ if ( !MissingValueTester.isDataValueMissing(tmpc)
+ && !MissingValueTester.isDataValueMissing(sped)){
+
+ if ( sped <= 1.34)
+ /*If the wind speed does not exceed 1.34 m/s ( not much wind to contribute to the wind chill),
+ * return the input temperature as the wind chill temperature*/
+ prwceq = prTmcf(tmpc);
+ else{
+ /*
+ * Compute the wind chill temp if the inputs are not missing and
+ * and the wind speed is greater than 1.34 m/s.
+ * Equations for wind chill computation
+ * from R. Falconer, "Windchill, A Useful Wintertime Weather Variable", Weatherwise, Dec 1968.
+ */
+ float windChill = ( float ) ( 33.0 - ( ( 33.0 - tmpc ) * wci( sped ) / wci( 1.34f ) ) );
+ prwceq = prTmcf(windChill);
+ }
+ }
+
+ return prwceq;
+ }
+
+ /**
+ * Computes the wind chill temperature from the air temperature and the wind speed
+ * @param tmpf - Air temperature ( in degree Farenheit )
+ * @param sknt - Wind speed ( in knots )
+ * @return the wind chill temperature ( in Farenheit ) if none of the inputs are missing and
+ * RMISSD (-9999) otherwise
+ */
+ public static float prWcht ( float tmpf, float sknt){
+ float prwrcht = GempakConstants.RMISSD;
+
+ /*Convert the speed to miles per hour*/
+ float smph = prKnmh ( sknt );
+
+ if ( !MissingValueTester.isDataValueMissing(tmpf)
+ && !MissingValueTester.isDataValueMissing(smph)){
+ /*If the inputs are not missing , check if the wind speed is <= 3 miles per hour*/
+ if( smph <= 3 )
+ prwrcht = tmpf;
+ else{
+ /*Compute the wind-chill temperature for wind speeds that exceed 3 miles per hour*/
+ float wcht = ( float ) ( 35.74 + 0.6215 * tmpf -35.75 * Math.pow(smph, 0.16)
+ + 0.4275 * tmpf * Math.pow(smph, 0.16) );
+ prwrcht = ( wcht > tmpf ? tmpf : wcht);
+
+ }
+ }
+ return prwrcht;
+ }
+
+ /**
+ * Computes the wind component towards a specific direction from the
+ * wind direction, wind speed and direction of desired component.
+ * @param drct - the wind direction in degrees
+ * @param sped - the wind speed in m/s
+ * @param dcmp - the direction of the desired component
+ * @return the component of the wind (in m/s) if none of the input parameters are missing and
+ * RMISSD (-9999) otherwise
+ */
+ public static float prWcmp ( float drct, float sped, float dcmp ){
+ float prwcmp = GempakConstants.RMISSD;
+ /*Check for missing input parameters*/
+ if ( !MissingValueTester.isDataValueMissing(drct)
+ && !MissingValueTester.isDataValueMissing(sped)
+ && !MissingValueTester.isDataValueMissing(dcmp)){
+ /*Calculate wind speed toward specified direction*/
+ prwcmp = (float) ( sped * ( -Math.cos( ( drct - dcmp) *GempakConstants.DTR ) ) );
+ }
+ return prwcmp;
+ }
+
+ /**
+ * Computes the hierarchical value of the ceiling converted to MSL (mean sea level) in hundreds of feet,
+ * with a temporary/probability value taking precedence over a prevailing one.
+ * @param cmsl - Prevailing ceiling (MSL) ( in 100's of ft )
+ * @param tcms - Temporary /probability ceiling (MSL) ( in 100's of ft )
+ * @return Hierarchical ceiling (MSL) ( in 100's of ft )
+ */
+ public static float prWcms ( float cmsl, float tcms ){
+ return ( !MissingValueTester.isDataValueMissing(tcms) ? tcms : cmsl );
+ }
+
+ /**
+ * Computes the packed wind speed and direction from the input wind speed and wind direction
+ * @param drct - wind direction ( in degrees )
+ * @param sped - wind speed ( in knots or m/s )
+ * @return the packed speed and direction
+ */
+ public static float prWind ( float drct, float sped ){
+ float prwind = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(drct)
+ && !MissingValueTester.isDataValueMissing(sped)){
+ /*
+ * (Non-Javadoc)
+ * The packed wind speed and direction are of the form:
+ * SSSDDD, where SSS - wind speed ( in knots or m/s ) and
+ * DDD - wind direction in degrees
+ *
+ */
+ int jdrct = Math.round(drct);
+ int jsped = Math.round(sped);
+ prwind = jdrct + jsped * 1000;
+ }
+ return prwind;
+ }
+
+ /**
+ * Converts the numeric WMO weather code for present weather,
+ * reported from an automatic station ( WMO code table 4680 ) to
+ * the corresponding numeric WMO weather code for present weather
+ * reported from a manned station (WMO code table 4677).
+ * @param wwma - Automatic station weather code
+ * @return the manned station weather code if the input weather code ( after being rounded to the nearest integer )
+ * lies between 0 and 99 (both inclusive) and the value returned from the array, by indexing this number is > 0.
+ * Otherwise, it returns RMISSD ( -9999 ).
+ */
+ public static float prWmao ( float wwma ){
+ float prwmao = GempakConstants.RMISSD;
+ int[] man = { -1, 1, 2, 3, 5, 5, -1, -1, -1,
+ -1, 10, 76, 13, -1, -1, -1, -1, -1,
+ 18, -1, 28, 21, 20, 21, 22, 24, 29,
+ -1, -1, -1, 42, 41, 42, 44, 46, 47,
+ -1, -1, -1, -1, 203, 203, 203, 63, 65,
+ 73, 75, 67, 67, -1, 53, 51, 53, 55,
+ 56, 57, 57, 58, 59, -1, 63, 61, 63,
+ 65, 66, 67, 67, 68, 69, -1, 73, 71,
+ 73, 75, 79, 79, 79, 77, 78, -1, 81,
+ 80, 81, 81, 82, 85, 86, 86, -1, 90,
+ 95, 17, 95, 96, 17, 97, 99, -1, -1,
+ 19 };
+ /*
+ * (Non-Javadoc)
+ * Convert automatic station weather number to manual station
+ * weather number. Reserved locations in table 4680 and those
+ * values not having an analogue in table 4677 are mapped to
+ * RMISSD.
+ *
+ */
+ int iwx = Math.round(wwma);
+ if ( iwx >= 0 && iwx <= 99){
+ if ( man[iwx] >= 0)
+ prwmao = man[iwx];
+ }
+ return prwmao;
+ }
+
+ /**
+ * Computes the wind component toward a direction 90 degrees counterclockwise of a specified direction.
+ * If no direction is specified, the component toward north is returned.
+ * @param drct - wind direction ( in degrees )
+ * @param sped - wind speed ( in knots or m/s )
+ * @param dcmp - specified wind direction ( in degrees )
+ * @return a component of the wind in m/s if the input wind speed and direction are valid and if
+ * the specified wind direction is between 0 degrees and 360 degrees. Otherwise, it returns RMISSD ( -9999 ).
+ *
+ */
+ public static float prWnml ( float drct, float sped, float dcmp){
+ float prwnml = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(sped)
+ && !MissingValueTester.isDataValueMissing(drct)
+ && ( dcmp >= 0 ) && ( dcmp <= 360 ) ){
+ /*
+ * Calculate wind speed 90 degrees to left of given direction.
+ */
+ prwnml = ( float ) ( sped * ( -Math.cos( ( drct - dcmp - 90 ) * GempakConstants.DTR ) ) );
+ }
+ return prwnml;
+ }
+
+ /**
+ * Computes the combined wave period and height from the combined wave period and
+ * wave height. The group number distinguishes the different wind waves.
+ * @param powv - Wave period ( in seconds )
+ * @param howv - Wave height ( in meters )
+ * @param group - Wave group number
+ * 0 = no group
+ * 1 = instrument waves
+ * 2 = wind waves
+ * 4 = predominant swell waves
+ * 5 = secondary swell waves
+ * @return the combined wave period and height if none of the input parameters are missing and
+ * RMISSD ( -9999 ) otherwise.
+ */
+ public static float prWphf( float powv, float howv, float group){
+ float prwphf = GempakConstants.RMISSD;
+
+ if ( !MissingValueTester.isDataValueMissing(powv)
+ && !MissingValueTester.isDataValueMissing(howv)
+ && !MissingValueTester.isDataValueMissing(group)){
+ float prhgmf = prHgmf(howv);
+ prwphf = prWvph ( powv, prhgmf, group);
+ }
+
+ return prwphf;
+ }
+
+ /**
+ * Computes the combined wave period and height from the combined wave period and
+ * wave height. The group number distinguishes the different wind waves.
+ * @param powv - Wave period ( in seconds )
+ * @param howv - Wave height ( in the same units as the calling method )
+ * @param group - Wave group number
+ * 0 = no group
+ * 1 = instrument waves
+ * 2 = wind waves
+ * 4 = predominant swell waves
+ * 5 = secondary swell waves
+ * @return The combined wave period and height if none of the inputs are missing
+ * and RMISSD (-9999) otherwise.
+ */
+ public static float prWvph ( float powv, float howv, float group ){
+ float prwvph = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(powv)
+ && !MissingValueTester.isDataValueMissing(howv)
+ && !MissingValueTester.isDataValueMissing(group)){
+ int ipowv = Math.round(powv);
+ int ihowv = Math.round(howv);
+ int igroup = Math.round(group);
+ if ( (ipowv >= 0) && (ipowv <= 99)
+ && ( (ihowv >= 0) && (ihowv <= 99) )
+ && ( (igroup >= 0) && (igroup <= 9) ) ){
+ prwvph = igroup * 10000 + ipowv * 100 + ihowv;
+ }
+ }
+ return prwvph;
+ }
+
+ /**
+ * Computes the combined wave period and wave height ( in half meters ) from
+ * either wper and whgt ( instrument wave data) or poww and howw (wind wave data),
+ * since either instrument wave data or wind wave data, but not both, can be reported.
+ * A group number is prefixed to the combined value to distinguish between
+ * instrument waves and wind waves.
+ * @param wper - Instrument wave period (seconds)
+ * @param whgt - Instrument wave height (meters)
+ * @param poww - Wind wave period (seconds)
+ * @param howw - Wind wave height (meters)
+ * @return The combined wave period and wave height ( in half meters ) if either the
+ * instrument wave data or the wind wave data are valid and RMISSD (-9999) otherwise.
+ */
+ public static float prWphm ( float wper, float whgt, float poww, float howw ){
+
+ float prwphm = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(wper)
+ && !MissingValueTester.isDataValueMissing(whgt)){
+ prwphm = prWvph ( wper, 2 * whgt, 1);
+ }
+ else if ( !MissingValueTester.isDataValueMissing(poww)
+ && !MissingValueTester.isDataValueMissing(howw)){
+ prwphm = prWvph ( poww, 2 * howw, 2);
+ }
+ return prwphm;
+ }
+
+ /**
+ * Translates a WMO pressure tendency code into a pressure change ( in mb )
+ * @param ctend - WMO pressure tendency code
+ * @return A pressure change ( in mb ) if the input is valid and RMISSD (-9999)
+ * otherwise.
+ */
+ public static float prWtnd ( String ctend ){
+ float prwtnd = GempakConstants.RMISSD;
+ float[] psign = {1,1,1,1,0,-1,-1,-1,-1 };
+ if ( ctend != null && !ctend.isEmpty() ){
+ Character firstChar = ctend.charAt( 0 );
+ if ( firstChar >= '0' && firstChar <= '8' ){
+ int itendc = Integer.parseInt( firstChar.toString() );
+ String substr = ctend.substring(1, 4);
+ if (substr.compareTo("999") != 0){
+ float ptend = Float.parseFloat(substr);
+ prwtnd = psign[ itendc ] * ptend / 10 ;
+ }
+ }
+ }
+ return prwtnd;
+ }
+
+ /**
+ * Computes the combined predominant swell wave direction and secondary
+ * swell wave direction from the input parameters.
+ * A group number 3 is prefixed to the combined value.
+ *
+ * @param dosw - Predominant swell wave direction ( in degrees) .
+ * @param dos2 - Secondary swell wave direction ( in degrees).
+ * @return The combined swell wave directions ( in tens of degrees ) if the input parameters
+ * are not missing and RMISSD (-9999) otherwise.
+ */
+ public static float prWvdd ( float dosw, float dos2){
+ float prwvdd = GempakConstants.RMISSD;
+
+ /* If the secondary direction is missing, a value of 99 is used */
+ int idos2 = ( !MissingValueTester.isDataValueMissing(dos2) ? Math.round( dos2 / 10 ) : 99 );
+ if ( !MissingValueTester.isDataValueMissing(dosw)){
+ int idosw = Math.round(dosw / 10);
+ if ( ( idosw >= 0 && idosw <= 99 )
+ && ( idos2 >= 0 && idos2 <= 99 ) ){
+ prwvdd = 30000 + idosw *100 + idos2;
+ }
+ }
+ return prwvdd;
+ }
+
+ /**
+ * Translates a WMO visibility code into visibility in kilometers.
+ * @param wmovis - WMO visibility code
+ * @return the visibility ( in km )
+ */
+ public static float prWvis ( float wmovis ){
+ float prwvis = GempakConstants.RMISSD;
+ float[] vis90 = { 0, 0.1f, 0.2f, 0.5f, 1, 2, 4, 10, 20, 50 };
+ if ( !MissingValueTester.isDataValueMissing(wmovis)){
+
+ /*Values between 0 - 50 translate into tenths of kilometers.*/
+ if ( wmovis >= 0 && wmovis <= 50 )
+ prwvis = wmovis / 10;
+
+ /*Values between 56 and 80 are 50 + whole kilometers.*/
+ else if ( wmovis >= 56 && wmovis <= 80 )
+ prwvis = wmovis - 50;
+
+ /*Values from 81 - 89 are in increments of 5.*/
+ else if ( wmovis >= 81 && wmovis <= 89 )
+ prwvis = ( wmovis - 80 ) * 5 + 30 ;
+
+ /*The values from 90 - 99 are in the array vis90*/
+ else if ( wmovis >= 90 && wmovis <= 99 ){
+ int iknt = (int) (wmovis - 89);
+ if ( vis90 != null && vis90.length > 0 ){
+ if ( iknt >= vis90.length )
+ iknt = vis90.length - 1;
+ prwvis = vis90[iknt];
+ }
+ }
+ }
+ return prwvis;
+ }
+
+ /**
+ * Computes the combined direction, period and height of the swell waves from the
+ * swell wave direction ( in tens of degrees ), the swell wave period ( in seconds )
+ * and the swell wave height ( in half meters )
+ * @param dosw - Swell wave direction in degrees
+ * @param posw - Swell wave period in seconds
+ * @param hosw - Swell wave height in meters
+ * @return The combined direction, period and height of the swell waves if none of the inputs are missing
+ * and RMISSD ( -9999) otherwise.
+ */
+ public static float prWvsw ( float dosw, float posw, float hosw){
+ float prwvsw = GempakConstants.RMISSD;
+ if ( !MissingValueTester.isDataValueMissing(dosw)
+ && !MissingValueTester.isDataValueMissing(posw)
+ && !MissingValueTester.isDataValueMissing(hosw)){
+ float pphh = prWvph ( posw, 2 * hosw, 0 );
+ if ( !MissingValueTester.isDataValueMissing(pphh))
+ prwvsw = Math.round( dosw / 10 ) * 10000 + Math.round(pphh) ;
+ }
+ return prwvsw;
+ }
+
+ /**
+ * Computes the worst case categorical identification of flight rules for prevailing
+ * and temporary / probability conditions.
+ * @param xvfr - Prevailing categorical id of flight rules
+ * @param txvf - Temporary / probability categorical id of flight rules
+ * @return The worst case categorical id of flight rules
+ */
+ public static float prWxvf ( float xvfr, float txvf ){
+ float prwxvf = GempakConstants.RMISSD;
+
+ if ( !MissingValueTester.isDataValueMissing(txvf)
+ && !MissingValueTester.isDataValueMissing(xvfr)){
+ prwxvf = ( xvfr < txvf ? xvfr : txvf );
+ }
+ else if ( MissingValueTester.isDataValueMissing( txvf ) )
+ prwxvf = xvfr;
+ else if ( MissingValueTester.isDataValueMissing( xvfr ) )
+ prwxvf = txvf;
+
+ return prwxvf;
+ }
+
+
+
+ /**
+ * Computes the numeric total cloud cover for the worst case aviation flight condition,
+ * based on the categorical identification of flight rules for prevailing and temporary / probability conditions.
+ * @param xvfr - Prevailing categorical id of flight rules
+ * @param txvf - Temporary / Probability categorical id of flight rules
+ * @param cfrt - Prevailing numeric total cloud cover
+ * @param tcfr - Temporary / Probability numeric total cloud cover
+ * @return Worst case numeric total cloud cover or RMISSD (-9999) if the computation does not fall through
+ */
+ public static float prWcfr ( float xvfr, float txvf, float cfrt, float tcfr) {
+ float prwcfr = GempakConstants.RMISSD;
+ if ( MissingValueTester.isDataValueMissing(xvfr)
+ || MissingValueTester.isDataValueMissing(txvf)){
+ prwcfr = ( cfrt > tcfr ? cfrt : tcfr );
+ }
+ else if ( txvf < xvfr )
+ prwcfr = tcfr;
+ else if ( txvf == xvfr)
+ prwcfr = ( cfrt > tcfr ? cfrt : tcfr );
+ else
+ prwcfr = cfrt;
+ return prwcfr;
+ }
+
+
+ /**
+ * Computes the windchill from the wind velocity ( part of the Falconer equation - refer method prWceq)
+ * @param velocity - wind velocity ( in meters per second )
+ * @return the windchill temperature
+ */
+ private static float wci ( float velocity){
+ if ( !MissingValueTester.isDataValueMissing(velocity) ){
+ /* from R. Falconer, "Windchill, A Useful Wintertime Weather Variable", Weatherwise, Dec 1968.*/
+ return ( ( float ) (10 * Math.sqrt(velocity) + 10.45 - velocity ));
+ }
+ return GempakConstants.RMISSD;
+ }
+
+ /**
+ * + * Computes LIFR/IFR/MVFR/VFR flight conditions based on ceiling and visibility. + * @param ceil - Ceiling in hundreds of feet + * @param vsby - Visibility in statute miles + * @return Flight conditions index value: + * 0 - LIFR + * 1 - IFR + * 2 - MVFR + * 3 - VFR + * or RMISSD (-9999), if both ceiling and visibility are missing + *+ */ + public static float prXvfr ( float ceil, float vsby ){ + float prxvfr = GempakConstants.RMISSD; + float vc = GempakConstants.RMISSD; + float vs = GempakConstants.RMISSD; + + if ( MissingValueTester.isDataValueMissing(ceil) && MissingValueTester.isDataValueMissing(vsby)) + return prxvfr; + + /*Compute categorical flight rules*/ + //Check the ceiling value + if ( !MissingValueTester.isDataValueMissing(ceil)){ + if ( ceil < 0){ + //no-op. So vc retains its RMISSD value + } + else if ( ceil < 5 ) + vc = 0; + else if ( ceil < 10 ) + vc = 1; + else if ( ceil <= 30 ) + vc = 2; + else if ( ( vsby > 5 ) + || ( vsby < 0 ) + || MissingValueTester.isDataValueMissing(vsby) ){ + prxvfr = 3; + } + } - float temp = (float) (Math.pow(Math.sin(stlat), 2)); + /*Check the visibility value.*/ + if ( !MissingValueTester.isDataValueMissing(vsby) ){ + if ( vsby < 0 ){ + //no-op. So vs retains it RMISSD value + } + else if ( vsby < 1 ) + vs = 0; + else if ( vsby < 3) + vs = 1; + else if ( vsby <= 5) + vs = 2; + else + vs = 3; + } + + /*Determine the more restrictive of the two values.*/ + if ( MissingValueTester.isDataValueMissing ( vc ) ) + prxvfr = vs; + else if ( MissingValueTester.isDataValueMissing( vs ) ) + prxvfr = vc; + else + prxvfr = ( vc < vs ? vc : vs ); + + return prxvfr; + + } + + /** + * Computes station elevation from altimeter and station pressure. + * It is also used to estimate height at various pressure levels from the altimeter in millibars. + * The PC library computes zmsl, Z000, Z950, Z850, Z800 by calling this function with pres + * equal to PMSL, 1000, 950, 850 and 800 respectively. + * @param altm - Altimeter in millibars + * @param pres - Pressure in millibars + * @return the height ( in meters ) if neither input value is missing and both input values + * are greater than zero. Otherwise, it returns RMISSD ( -9999 ). + */ + public static float prZalt ( float altm, float pres ){ + float przalt = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( altm ) + && !MissingValueTester.isDataValueMissing(pres) + && ( altm > 0 ) + &&( pres > 0 ) ) { + + float to = GempakConstants.TMCK + 15; + float gamma = GempakConstants.GAMUSD / 1000 ; + + /*Calculate the exponent and pressure ratio.*/ + float expo = ( gamma * GempakConstants.RDGAS ) / GempakConstants.GRAVTY; + float prat = pres / altm ; + przalt = ( float ) ( ( to * ( 1 - Math.pow ( prat, expo) ) ) / gamma ); + } + return przalt; + } + + /** + * Converts the GEMPAK weather code to the WMO weather code, + * which is used to plot weather symbols. + * @param wnum - GEMPAK weather code + * @return the weather symbol number + */ + public static float prNsym ( float wnum){ + + float prnsym = GempakConstants.RMISSD; +//TODO : uncomment these 2 lines, once the PT library is implemented +// float wcod = ptWcod ( wnum ); /*Convert weather number to character weather code*/ +// prnsym = ptWsym ( wcod ); /*Convert weather character code to weather symbol number*/ + return prnsym; + } + + public static class RZLL{ + private static RZLL rzll; + + /**Station latitude in degrees*/ + float stltdg = GempakConstants.RMISSD; + + /**Station longitude in degrees*/ + float stlndg = GempakConstants.RMISSD; + + /**Range in kilometers*/ + float range = GempakConstants.RMISSD; + + /**Geographic azimuth in radians*/ + float azim = GempakConstants.RMISSD; + + /**Height above the ground in kilometers*/ + float hght = GempakConstants.RMISSD; - /* Get the earth's corrected radius */ - rad = (float) (6378.4 / Math.sqrt(1 + (0.00677 * temp))); - radp = 4 * (rad / 3); + /**Latitude in degrees*/ + float xlat = GempakConstants.RMISSD; + + /**Longitude in degrees*/ + float xlon = GempakConstants.RMISSD; + + /** + * @return the xlat + */ + public float getXlat() { + return xlat; + } + /** + * @return the xlon + */ + public float getXlon() { + return xlon; + } + - float dist = GempakConstants.RMISSD; - float cx = GempakConstants.RMISSD; - float cy = GempakConstants.RMISSD; - float mathFormula1 = GempakConstants.RMISSD; - float mathFormula2 = GempakConstants.RMISSD; - - /* Calculate the distance */ - - if (elev > 0.2618f) - dist = (float) (range * Math.cos(elev)); - else { - mathFormula1 = (float) ((1 - (Math.pow(elev, 2) / 2)) - range - * elev / radp); - dist = range * mathFormula1; - } - - /* Calculate the latitude and longitude */ - cx = (float) (dist * Math.sin(azim)); - cy = (float) (dist * Math.cos(azim)); - - // mathFormula2 = ( float ) ( ( ( 2 * Math.pow( rad, 2 ) ) * - // Math.tan( stlat ) )); - // xlat = ( float ) ( stlat + ( cy / rad ) - ( Math.pow(cx, 2) / - // mathFormula2 ) ); - mathFormula2 = (float) ((Math.pow(cx, 2) - / (2 * Math.pow(rad, 2)) * Math.tan(stlat))); - xlat = (stlat + (cy / rad) - mathFormula2); - xlon = (float) (stlon + (cx / (rad * Math.cos(xlat)))); - - /* Change lat/lon to degrees */ - xlat *= GempakConstants.RTD; - xlon *= GempakConstants.RTD; - } else { - xlat = GempakConstants.RMISSD; - xlon = GempakConstants.RMISSD; - } - - } - } + + private static RZLL getInstance(){ + if (rzll == null) + {rzll = new RZLL();} + return rzll; + } + + /** + * Computes the actual latitude/longitude given the station latitude/longitude, elevation + * and azimuth. + * It uses equations developed for use in the AOIPS radar. + * @param instltdg - Station latitude in degrees + * @param instlndg - Station longitude in degrees + * @param inrange - Range in kilometers + * @param inazim - Geographic azimuth in radians + * @param inhght - Height above ground in km + */ + public void prRzll ( float instltdg,float instlndg,float inrange,float inazim,float inhght){ + if ( !MissingValueTester.isDataValueMissing(instltdg) + && !MissingValueTester.isDataValueMissing(instlndg) + && !MissingValueTester.isDataValueMissing(inrange) + && !MissingValueTester.isDataValueMissing(inazim) + && !MissingValueTester.isDataValueMissing(inhght)){ + + this.stltdg = instltdg; + this.stlndg = instlndg; + this.range = inrange; + this.azim = inazim; + this.hght = inhght; + + float hdr = GempakConstants.RMISSD; + float elev = GempakConstants.RMISSD; + float rad = GempakConstants.RMISSD; + float radp= GempakConstants.RMISSD; + + /*Convert the station lat/lon to radians*/ + float stlat = stltdg * GempakConstants.DTR; + float stlon = stlndg * GempakConstants.DTR; + + + /*Get the elevation angle*/ + hdr = ( range == 0.0f ? 0.0f : hght / range ); +// elev = (float) ( Math.abs(hdr) < 1.0f ? Math.asin(hdr) : 0.0f ); + elev = (float) ( Math.abs(hdr) <= 1.0f ? Math.asin(hdr) : 0.0f ); + + float temp = (float) (Math.pow( Math.sin(stlat), 2 ) ) ; + + /*Get the earth's corrected radius*/ + rad = (float) (6378.4 / Math.sqrt( 1 + ( 0.00677 * temp ) )); + radp = 4* (rad/3); + + float dist = GempakConstants.RMISSD; + float cx = GempakConstants.RMISSD; + float cy = GempakConstants.RMISSD; + float mathFormula1 = GempakConstants.RMISSD; + float mathFormula2 = GempakConstants.RMISSD; + + /*Calculate the distance*/ + + if ( elev > 0.2618f ) + dist = ( float ) ( range * Math.cos( elev )); + else{ + mathFormula1 = ( float ) ( (1 - ( Math.pow( elev, 2 ) / 2 ) ) - range * elev / radp); + dist = range * mathFormula1; + } + + /*Calculate the latitude and longitude*/ + cx = ( float ) ( dist * Math.sin( azim ) ); + cy = ( float ) ( dist * Math.cos( azim ) ); + +// mathFormula2 = ( float ) ( ( ( 2 * Math.pow( rad, 2 ) ) * Math.tan( stlat ) )); +// xlat = ( float ) ( stlat + ( cy / rad ) - ( Math.pow(cx, 2) / mathFormula2 ) ); + mathFormula2 = (float) ( ( Math.pow(cx, 2) / ( 2 * Math.pow( rad, 2 ) ) * Math.tan( stlat ) )); + xlat = ( float ) ( stlat + ( cy / rad ) - mathFormula2 ); + xlon = ( float ) ( stlon + ( cx / ( rad * Math.cos( xlat ) ) ) ) ; + + /*Change lat/lon to degrees*/ + xlat *= GempakConstants.RTD; + xlon *= GempakConstants.RTD; + } else { + xlat = GempakConstants.RMISSD; + xlon = GempakConstants.RMISSD; + } + + } + } } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ncep/gov.noaa.nws.ncep.gempak.parameterConversionLibrary/src/gov/noaa/nws/ncep/gempak/parameterconversionlibrary/PSLibrary.java b/ncep/gov.noaa.nws.ncep.gempak.parameterConversionLibrary/src/gov/noaa/nws/ncep/gempak/parameterconversionlibrary/PSLibrary.java index a8ac6a605c..6292086543 100644 --- a/ncep/gov.noaa.nws.ncep.gempak.parameterConversionLibrary/src/gov/noaa/nws/ncep/gempak/parameterconversionlibrary/PSLibrary.java +++ b/ncep/gov.noaa.nws.ncep.gempak.parameterConversionLibrary/src/gov/noaa/nws/ncep/gempak/parameterconversionlibrary/PSLibrary.java @@ -2,385 +2,351 @@ * */ package gov.noaa.nws.ncep.gempak.parameterconversionlibrary; - -import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer; - -import java.util.Collections; import java.util.Comparator; import java.util.List; +import java.util.Collections; +import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer; /** * @author archana - * + * */ public class PSLibrary { - /** - * Computes the cross totals index - * - * @param td850 - * - dewpoint at 850 mb ( in Celsius ) - * @param t500 - * - temperature at 500 mb ( in Celsius ) - * @return the difference between the dewpoint and the temperature if - * neither of them are missing and RMISSD ( -9999 ) otherwise. - */ - public static float psCtot(float td850, float t500) { + /** + * Computes the cross totals index + * @param td850 - dewpoint at 850 mb ( in Celsius ) + * @param t500 - temperature at 500 mb ( in Celsius ) + * @return the difference between the dewpoint and the temperature if neither of them are missing + * and RMISSD ( -9999 ) otherwise. + */ + public static float psCtot ( float td850,float t500) { - /* - * Compute the cross totals index by subtracting 500 mb temperature from - * the 850 mb dewpoint. - */ - return ((!MissingValueTester.isDataValueMissing(td850) && !MissingValueTester - .isDataValueMissing(t500)) ? (td850 - t500) - : GempakConstants.RMISSD); - } + /* + * Compute the cross totals index by subtracting 500 mb + * temperature from the 850 mb dewpoint. + */ + return ( ( !MissingValueTester.isDataValueMissing(td850) + && !MissingValueTester.isDataValueMissing(t500) ) + ? ( td850 - t500 ) : GempakConstants.RMISSD ) ; + } + + /** + * Computes low, middle, and high elevation Haines indices + * from the temperature and the dewpoint. + * @param tc1 - temperature ( in Celsius ) + * @param tc2 - temperature ( in Celsius ) + * @param dwpc - dewpoint ( in Celsius ) + * @param itype - Haines index: + * 1- Low + * 2 - Middle + * 3 - High + * + * @return + */ + public static float psHans ( float tc1, float tc2, float dwpc, float itype) { + float pshans = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(tc1) + && !MissingValueTester.isDataValueMissing(tc2) + && !MissingValueTester.isDataValueMissing(dwpc)){ + float a = GempakConstants.RMISSD; + float b = GempakConstants.RMISSD; + + /* Compute the Haines index*/ + if ( itype == 1 ) { + a = ( ( tc2 - tc1 ) - 3 ) * ( 2 / 5 ) + 1; + b = ( ( tc1 - dwpc ) - 5 ) * ( 2 / 5 ) + 1; + } + else if ( itype == 2 ) { + a = ( ( tc1 - tc2 ) - 5 ) * ( 2 / 6 ) + 1; + b = ( ( tc1 - dwpc ) - 5 ) * ( 2 / 8 ) + 1; + } + else if ( itype == 3 ) { + a = ( ( tc1 - tc2 ) - 17 ) * ( 2 / 5 ) + 1; + b = ( ( tc1 - dwpc ) - 14 ) * ( 2 / 7 ) + 1; + } + + a = ( a > 0.9f ? a : 0.9f ); + a = ( a < 3.1f ? a : 3.1f ); + b = ( b > 0.9f ? b : 0.9f ); + b = ( b < 3.1f ? b : 3.1f ); + pshans = a+ b; + } + return pshans; + } - /** - * Computes low, middle, and high elevation Haines indices from the - * temperature and the dewpoint. - * - * @param tc1 - * - temperature ( in Celsius ) - * @param tc2 - * - temperature ( in Celsius ) - * @param dwpc - * - dewpoint ( in Celsius ) - * @param itype - * - Haines index: 1- Low 2 - Middle 3 - High - * - * @return - */ - public static float psHans(float tc1, float tc2, float dwpc, float itype) { - float pshans = GempakConstants.RMISSD; - if (!MissingValueTester.isDataValueMissing(tc1) - && !MissingValueTester.isDataValueMissing(tc2) - && !MissingValueTester.isDataValueMissing(dwpc)) { - float a = GempakConstants.RMISSD; - float b = GempakConstants.RMISSD; + /** + * + * Computes the 'K' index + * @param t850 - 850 mb temperature ( in Celsius ) + * @param t700 - 700 mb temperature ( in Celsius ) + * @param t500 - 500 mb temperature ( in Celsius ) + * @param td850 - 850 mb dewpoint ( in Celsius ) + * @param td700 - 700 mb dewpoint ( in Celsius ) + * @return returns the 'K' index if all the input values are valid and + * RMISSD ( -9999 ) otherwise + */ + public static float pskinx ( float t850, float t700, float t500, float td850, float td700) { + float pskinx = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(td700) + && !MissingValueTester.isDataValueMissing(td850) + && !MissingValueTester.isDataValueMissing(t500) + && !MissingValueTester.isDataValueMissing(t700) + && !MissingValueTester.isDataValueMissing(t850)){ + pskinx = ( t850 - t500 ) + td850 - ( t700 - td700 ) ; + } + return pskinx; + } + + + /** + * Computes the Showalter index + * @param t850 - 850 mb temperature ( in Celsius ) + * @param td850 - 850 mb dewpoint ( in Celsius ) + * @param t500 - 500 mb temperature ( in Celsius ) + * @return the Showalter index if all the three input parameters are valid and the parcel temperature is computed correctly. + * Otherwise, it returns RMISSD (-9999). + */ + public static float psShow ( float t850, float td850, float t500 ){ + float psshow = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(t500) + && !MissingValueTester.isDataValueMissing(td850) + && !MissingValueTester.isDataValueMissing(t850)){ + float p850 = 850; + float p500 = 500; + float guess = 0; + /* + * Find equivalent potential temperature at the LCL using 850 mb + * temperature and dewpoint. + */ + float thtlcl = PRLibrary.prThte ( p850, t850, td850 ); + + /*Find parcel temperature along pseudoadiabat at 500 mb. + * The parcel temperature tp is the temperature in Celsius at 500 mb of a parcel, + * which lies on the moist adiabat determined by the sounding at 850 mb + */ + float tp = PRLibrary.prTmst ( thtlcl, p500, guess ); + + /*Subtract the parcel temperature from the temperature at 500 mb, is the parcel temperature is valid*/ + if ( !MissingValueTester.isDataValueMissing( tp ) ){ + psshow = PRLibrary.prTmck ( t500 ) - tp ; + } + } + return psshow; + } + + /** + * Computes the vertical totals index + * @param t850 - 850 mb temperature ( in Celsius ) + * @param t500 - 500 mb temperature ( in Celsius ) + * @return the verticl totals index as a difference of the temperature at 850 mb and the temperature at 500 mb, if neither value is missing. + * Else it returns RMISSD (-9999) + */ + public static float psVtot ( float t850, float t500 ) { + return ( ( !MissingValueTester.isDataValueMissing( t500 ) && !MissingValueTester.isDataValueMissing( t850 ) ) + ? t850 - t500 : GempakConstants.RMISSD ); + } + + /** + * Computes the total Totals index from the temperature and dewpoint at 850 mb and the temperature at 500 mb + * + * @param t850 - 850 mb temperature ( in Celsius ) + * @param td850 - 850 mb dewpoint ( in Celsius ) + * @param t500 - 500 mb temperature ( in Celsius ) + * @return the total totals index if none of the input parameters are missing and + * RMISSD (-9999) otherwise + */ + public static float psTotl ( float t850, float td850, float t500 ){ + float pstotl = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing(t500) + && !MissingValueTester.isDataValueMissing(td850) + && !MissingValueTester.isDataValueMissing(t850)){ + + /*Compute the vertical totals*/ + float vtot = psVtot ( t850, t500 ); + + /*Compute the cross totals*/ + float ctot = psCtot ( td850, t500 ); + + if ( !MissingValueTester.isDataValueMissing( ctot ) + && !MissingValueTester.isDataValueMissing( vtot ) ) { + pstotl = ctot + vtot; + } + } + return pstotl; + } + + /** + * Computes the SWEAT index. Winds must be input in m/sec + * @param t850 - 850 mb temperature + * @param td850 - 850 mb dewpoint + * @param t500 - 500 mb temperature + * @param spd850 - 850 mb windspeed ( in m/sec ) + * @param spd500 - 500 mb windspeed ( in m/sec ) + * @param dir850 - 850 mb wind direction + * @param dir500 - 500 mb wind direction + * @return the SWEAT index if none of the inputs are missing and RMISSD ( -9999 ) otherwise + */ + public static float psSwet ( float t850, float td850, float t500, float spd850, float spd500, float dir850, float dir500 ){ + float pssweat = GempakConstants.RMISSD; + if ( !MissingValueTester.isDataValueMissing( dir500 ) + && !MissingValueTester.isDataValueMissing(dir850) + && !MissingValueTester.isDataValueMissing(spd500) + && !MissingValueTester.isDataValueMissing(spd850) + && !MissingValueTester.isDataValueMissing(t500) + && !MissingValueTester.isDataValueMissing(td850) + && !MissingValueTester.isDataValueMissing(t850)){ + /* + * (Non-Javadoc): + * All computations are from + * Miller, R.C., 1972: Notes on Severe Storm Forecasting Procedures of + * the Air Force Global Weather Central, AWS Tech. Report 200 + */ + /*Convert meters per second to knots*/ + float skt850 = PRLibrary.prMskn ( spd850 ); + float skt500 = PRLibrary.prMskn( spd500 ); + + /* Compute the total totals index. If < 49, set term to zero.*/ + float total = psTotl ( t850, td850, t500 ); + float term2 = total - 49; + if ( total < 49 ) + term2 = 0; + + /* Compute shear term.*/ + + float dif = dir500 - dir850; + float s = ( float ) ( Math.sin ( dif * GempakConstants.DTR ) ); + float shear = 125 * ( s + 0.2f ); + + /*Make various wind checks.*/ + if ((dir850 < 130.) || (dir850 > 250.)) + shear = 0; + if ((dir500 < 210.) || (dir500 > 310.)) + shear = 0; + if ((skt500 < 15.) || (skt850 < 15. )) + shear = 0; + if (dif <= 0) + shear = 0; + + /*Check for sub-zero dewpoint*/ + float dwp850 = td850; + if ( dwp850 < 0 ) + dwp850 = 0; + + /*Calculate SWEAT index*/ + pssweat = 12 * dwp850 + 20 * term2 + 2 * skt850 + skt500 + shear; + } + return pssweat; + } + + /** + * Finds the most unstable level of a sounding from the surface to the input pressure level. + * @param listOfNcSoundingLayer - the list of NcSoundingLayer to search + * @param plev - input pressure level + * @return the most unstable level of a sounding from the surface to the input pressure level (plev), + * if plev is not -1 and all computations fall through correctly.Else it returns an empty NcSoundingLayer object + */ + public static NcSoundingLayer psUstb(List
* contourInterval/minimumContourValue/maximumContourValue/numPaddingDigits** contourVal1;contourVal2;...;contourValn @@ -26,8 +32,7 @@ import java.util.Set; * advised that the user checks the result of the method isCINTStringParsed(). *
- * - *
+ ** @@ -59,6 +60,12 @@ public class PgenPreferences extends FieldEditorPreferencePage implements public final static String P_WORKING_DIR = "PGEN_WORKING_DIR"; public final static String V_WORKING_DIR = System.getProperty("user.home"); + //Preference for the operational directory to store PGEN product file. + public final static String P_OPR_DIR = "PGEN_BASE_DIR"; + public final static String V_OPR_DIR = ( System.getenv( "PGEN_OPR" ) != null ) ? + System.getenv( "PGEN_OPR" ) : + System.getProperty("user.home"); + //Preference for PGEN computational coordinates public final static String P_COMP_COORD = "PGEN_COMP_COORD"; public final static String CED_COMP_COORD = "ced/0;0;0|18.00;-137.00;58.00;-54.00"; @@ -76,6 +83,9 @@ public class PgenPreferences extends FieldEditorPreferencePage implements @Override public void createFieldEditors() { + this.addField(new DirectoryFieldEditor(P_OPR_DIR, + "&PGEN Base Directory:", getFieldEditorParent())); + this.addField(new DirectoryFieldEditor(P_WORKING_DIR, "&PGEN Working Directory:", getFieldEditorParent())); @@ -132,14 +142,13 @@ public class PgenPreferences extends FieldEditorPreferencePage implements } } else if (event.getSource() instanceof DirectoryFieldEditor) { String ovalue = event.getOldValue().toString(); - String opref = Activator.getDefault().getPreferenceStore() - .getString(P_WORKING_DIR); - if (ovalue.equals(opref)) { + String prefname = ((DirectoryFieldEditor)event.getSource()).getPreferenceName(); + String opref = Activator.getDefault().getPreferenceStore().getString( prefname ); + if ( ovalue.equals(opref) ) { String nvalue = event.getNewValue().toString(); - File nfile = new File(nvalue); - if (nfile.exists() && nfile.isDirectory() && nfile.canWrite()) { - Activator.getDefault().getPreferenceStore() - .setValue(P_WORKING_DIR, nvalue); + File nfile = new File( nvalue ); + if ( nfile.exists() && nfile.isDirectory() && nfile.canWrite() ) { + Activator.getDefault().getPreferenceStore().setValue( prefname, nvalue); } } } diff --git a/ncep/gov.noaa.nws.ncep.ui.pgen/src/gov/noaa/nws/ncep/ui/pgen/PgenUtil.java b/ncep/gov.noaa.nws.ncep.ui.pgen/src/gov/noaa/nws/ncep/ui/pgen/PgenUtil.java index 68d136de15..be47897ae7 100644 --- a/ncep/gov.noaa.nws.ncep.ui.pgen/src/gov/noaa/nws/ncep/ui/pgen/PgenUtil.java +++ b/ncep/gov.noaa.nws.ncep.ui.pgen/src/gov/noaa/nws/ncep/ui/pgen/PgenUtil.java @@ -89,6 +89,8 @@ import com.vividsolutions.jts.geom.Polygon; * 03/11 J. Wu Added getSphPolyArea() && getPolyArea() * 05/11 J. Wu Added methods to setup/covert between lat/lon * and a custom coordinate. + * 08/11 J. Wu Added getPgenOprDirectory() + * * * * @author @@ -467,7 +469,33 @@ public class PgenUtil { } } } - + /** + * Load the LabeledLine modifying tool. + * @param ll - LabeledLine to edit when the tool is loaded + */ + public static final void loadTcmTool( DrawableElement elem ) { + IEditorPart part = EditorUtil.getActiveEditor(); + ICommandService service = (ICommandService) part.getSite().getService( ICommandService.class ); + Command cmd = service.getCommand("gov.noaa.nws.ncep.ui.pgen.rsc.PgenTCMtool"); + + if (cmd != null ) { + + try { + HashMap* SOFTWARE HISTORY * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- @@ -44,584 +49,498 @@ import java.util.Set; * access the list of contour values, the contour interval, * min and max contour values separately from each zoom level. * Implemented each zoom level as a CNT object in a list of CINT objects. - * 17-May-2011 M. Li Created a parseCINT to simplify CINT parsing. - * - * + * 17-May-2011 M. Li Created a parseCINT to simplify CINT parsing. + * + * *- * * @author Archana.S * @version 1 - * @see $GEMPAK/help/hlx/cint.hl2 + * @see $GEMPAK/help/hlx/cint.hl2 */ public class CINT { + + /**The object responsible for parsing the CINT string*/ + private ContourStringParser cintParser; + + /** The input CINT string*/ + private String contourIntervalString; + + /** A real number that represents the contour interval*/ + private Double contourInterval; + + /** A real number that represents the minimum contour level*/ + private Double minContourValue; + + /** A real number that represents the maximum contour level*/ + private Double maxContourValue; + + /** Boolean flag to validate that the CINT string was parsed correctly*/ + private boolean isCINTStringParsed; + + /**An integer that decides the minimum number of digits in an integer contour label*/ + private Integer numPaddingDigits; - /** The object responsible for parsing the CINT string */ - private ContourStringParser cintParser; + /**The un-parsed CINT string entered by the user */ + String userInputString; + + + public String getUserInputString() { + return userInputString; + } - /** The input CINT string */ - private String contourIntervalString; + private void setUserInputString(String userInputString) { + this.userInputString = new String(userInputString); + } - /** A real number that represents the contour interval */ - private Double contourInterval; + /**A list of CINT objects where each CINT object represents one zoom level*/ + private ListlistOfCINTObjects = new ArrayList (0); - /** A real number that represents the minimum contour level */ - private Double minContourValue; + /**The list of contour values*/ + private List contourValuesList; + + /**The list of contour values represented as String objects*/ + private List contourValuesListAsString; + + /**The list of extracted contour labels. For CINT strings without labels, it is the contour value stored as its String equivalent*/ + private List contourLabelList; + + private List getContourLabelList() { + return contourLabelList; + } - /** A real number that represents the maximum contour level */ - private Double maxContourValue; + private void setContourLabelList(List contourLabelList) { + this.contourLabelList = contourLabelList; + } - /** Boolean flag to validate that the CINT string was parsed correctly */ - private boolean isCINTStringParsed; + /**A HashMap of the contour values and their labels*/ + private Map cintHashMap; + + /**@return a list of CINT objects, each of which represents one zoom level*/ + public List getListOfCINTObjects() { + return (new ArrayList (listOfCINTObjects)); + } - /** - * An integer that decides the minimum number of digits in an integer - * contour label - */ - private Integer numPaddingDigits; + /** + * Gets the {@code HashMap } of the contour values and labels for a specific zoom level + * @param The zoom level + * @return The {@code HashMap } of the contour values and labels for the input zoom level + * if the CINT object for that zoom level exists or an empty map otherwise. + * */ + public Map getCintHashMap(ZoomLevel zLevel) { + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + Map thisMap = new HashMap (this.listOfCINTObjects.get( zLevel.zoomLevel - 1).cintHashMap); + if(thisMap.size() > 0){ + return (thisMap); + } + } + return Collections.EMPTY_MAP; + } - /** The un-parsed CINT string entered by the user */ - String userInputString; +/*** + * + * @param cintHashMap + */ + private void setCintHashMap(Map cintHashMap) { + this.cintHashMap = cintHashMap; + } - public String getUserInputString() { - return userInputString; - } + + /** + * Gets the {@code List } of the contour values for a specific zoom level + * @param the zoom level + * @return The {@code List } of the contour values for the input zoom level + * if the CINT object for that zoom level exists or an empty list otherwise. + * */ + public List getContourValuesListAsDouble(ZoomLevel zLevel) { + int listSize = this.listOfCINTObjects.size(); + + if(listSize >= zLevel.zoomLevel){ + List cList = new ArrayList (this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourValuesList); + if( cList.size() > 0){ + return (new ArrayList (cList)); + } + } + return Collections.EMPTY_LIST; + } - private void setUserInputString(String userInputString) { - this.userInputString = new String(userInputString); - } + /*** + * + * @param contourValuesList + */ + private void setContourValuesList(List contourValuesList) { + this.contourValuesList = new ArrayList (contourValuesList); + } - /** A list of CINT objects where each CINT object represents one zoom level */ - private List listOfCINTObjects = new ArrayList (0); + /**An enumeration to define the 5 zoom levels allowed in CINT*/ + public static enum ZoomLevel { + FIRST(1), SECOND(2), THIRD(3), FOURTH(4), FIFTH(5); + private int zoomLevel; + private ZoomLevel(int index){ + this.zoomLevel = index; + } + public int getZoomLevelAsInt(){ + return zoomLevel; + } + } + + /**Zoom constant representing the first zoom level*/ + public static final ZoomLevel FIRST_ZOOM_LEVEL = ZoomLevel.FIRST; + + /**Zoom constant representing the second zoom level*/ + public static final ZoomLevel SECOND_ZOOM_LEVEL = ZoomLevel.SECOND; + + /**Zoom constant representing the third zoom level*/ + public static final ZoomLevel THIRD_ZOOM_LEVEL = ZoomLevel.THIRD; + + /**Zoom constant representing the fourth zoom level*/ + public static final ZoomLevel FOURTH_ZOOM_LEVEL = ZoomLevel.FOURTH; + + /**Zoom constant representing the fifth zoom level*/ + public static final ZoomLevel FIFTH_ZOOM_LEVEL = ZoomLevel.FIFTH; + + /**Zoom constant representing the first zoom level as the minimum level of zoom*/ + public static final ZoomLevel MIN_ZOOM_LEVEL = ZoomLevel.FIRST; + + /**Zoom constant representing the fifth zoom levelas the maximum level of zooom*/ + public static final ZoomLevel MAX_ZOOM_LEVEL = ZoomLevel.FIFTH; + + /** + * Gets the {@code List } of the contour values for a specific zoom level + * @param the zoom level + * @return The {@code List } of the contour values for the input zoom level + * if the CINT object for that zoom level exists or an empty list otherwise. + * */ + public List getContourValuesListAsString(ZoomLevel zLevel) { + List cvList = Collections.EMPTY_LIST; + int listSize = this.listOfCINTObjects.size(); + if( listSize > 0 && listSize >= zLevel.zoomLevel){ + cvList = new ArrayList (this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourValuesListAsString); + } + return cvList; + } - /** The list of contour values */ - private List contourValuesList; + /** + * Gets the {@code List } of the contour labels for a specific zoom level + * @param the zoom level + * @return The {@code List } of the contour labels for the input zoom level + * if the CINT object for that zoom level exists or an empty list otherwise. + * */ + public List getContourLabelsForZoomLevel(ZoomLevel zLevel){ + List cintLabelList = new ArrayList (0); + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + cintLabelList = new ArrayList (this.listOfCINTObjects.get( zLevel.zoomLevel-1).getContourLabelList()); + } + return cintLabelList; +} + + /** + *The default constructor initializes the instance variables to their defaults + **/ + public CINT(){ + setContourInterval(Double.NaN); + setMinContourValue(Double.NaN); + setMaxContourValue(Double.NaN); + isCINTStringParsed = false; + cintParser = new ContourStringParser(); + cintHashMap = new HashMap (0); + contourValuesList = new ArrayList (0); + contourValuesListAsString = new ArrayList (0); + contourLabelList = new ArrayList (0); + } + +// +// /** +// *The overloaded constructor accepts the CINT string as an input and calls the parse method of the +// *ContourStringParser on it. +// *If the parsing is successful, the contour interval, minimum contour level, maximum +// *contour level and the list of contour values will be populated by the corresponding parsed +// *data from the ContourStringParser object. +// * +// **/ + public CINT(String contourIntervalString){ + + /*Initialize instance variables*/ + setContourInterval(Double.NaN); + setMinContourValue(Double.NaN); + setMaxContourValue(Double.NaN); + contourValuesList = new ArrayList (0); + contourValuesListAsString = new ArrayList (0); + contourLabelList = new ArrayList (0); - /** The list of contour values represented as String objects */ - private List contourValuesListAsString; + setUserInputString(contourIntervalString); + cintParser = new ContourStringParser(); + parseAndSetAttributes(contourIntervalString); - /** - * The list of extracted contour labels. For CINT strings without labels, it - * is the contour value stored as its String equivalent - */ - private List contourLabelList; + } + + public static List parseCINT(String cint, int zoomLevelIndex, float minValue, float maxValue) { + + /* + * Convert zoomLevel index + */ + ZoomLevel zoomLevel = CINT.FIRST_ZOOM_LEVEL; + + switch (zoomLevelIndex) { + case 1: + zoomLevel = CINT.FIRST_ZOOM_LEVEL; + break; + case 2: + zoomLevel = CINT.SECOND_ZOOM_LEVEL; + break; + case 3: + zoomLevel = CINT.THIRD_ZOOM_LEVEL; + break; + case 4: + zoomLevel = CINT.FOURTH_ZOOM_LEVEL; + break; + case 5: + zoomLevel = CINT.FIFTH_ZOOM_LEVEL; + break; + } + + + /* + * Get contour values from CINT + */ + List cvalues = null; + Double cmin = new Double( minValue ); + Double cmax = new Double( maxValue ); + Double interval = null; - private List getContourLabelList() { - return contourLabelList; - } + if (cint == null || cint.trim().length() < 1) { + interval = (cmax - cmin) / 10.0; + CINT contourInfo = new CINT(interval.toString()+"/"+cmin.toString()+"/"+cmax.toString()); + cvalues = contourInfo.getUniqueSortedContourValuesFromAllZoomLevels(); + } + else { + CINT contourInfo = new CINT(cint); + cvalues = contourInfo.getContourValuesListAsDouble(zoomLevel); - private void setContourLabelList(List contourLabelList) { - this.contourLabelList = contourLabelList; - } + if (cvalues == null || cvalues.size() < 1 /*|| contourInfo.getContourInterval(zoomLevel) == 0.0*/) { - /** A HashMap of the contour values and their labels */ - private Map cintHashMap; + cmin = contourInfo.getMinContourValue(zoomLevel); + if (cmin == null || cmin.isNaN()) cmin = new Double( minValue ); - /** @return a list of CINT objects, each of which represents one zoom level */ - public List getListOfCINTObjects() { - return (new ArrayList (listOfCINTObjects)); - } + cmax = contourInfo.getMaxContourValue(zoomLevel); + if (cmax == null || cmax.isNaN()) cmax = new Double( maxValue ); - /** - * Gets the {@code HashMap } of the contour values and labels - * for a specific zoom level - * - * @param The - * zoom level - * @return The {@code HashMap } of the contour values and - * labels for the input zoom level if the CINT object for that zoom - * level exists or an empty map otherwise. - * */ - public Map getCintHashMap(ZoomLevel zLevel) { - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - Map thisMap = new HashMap ( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).cintHashMap); - if (thisMap.size() > 0) { - return (thisMap); - } - } - return Collections.EMPTY_MAP; - } + interval = contourInfo.getContourInterval(zoomLevel); + if (interval == null || interval.isNaN()) { + interval = (cmax - cmin) / 10.0; + } - /*** - * - * @param cintHashMap - */ - private void setCintHashMap(Map cintHashMap) { - this.cintHashMap = cintHashMap; - } + //Only allow less than 50 contour levels + if ((cmax - cmin)/interval > 50) interval = (cmax - cmin)/50; - /** - * Gets the {@code List } of the contour values for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the contour values for the input zoom - * level if the CINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getContourValuesListAsDouble(ZoomLevel zLevel) { - int listSize = this.listOfCINTObjects.size(); + // System.out.println(" cmax=="+cmax); + contourInfo = new CINT(interval.toString()+"/"+cmin.toString()+"/"+cmax.toString()); + cvalues = contourInfo.getUniqueSortedContourValuesFromAllZoomLevels(); + } + } - if (listSize >= zLevel.zoomLevel) { - List cList = new ArrayList ( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourValuesList); - if (cList.size() > 0) { - return (new ArrayList (cList)); - } - } - return Collections.EMPTY_LIST; - } + return cvalues; + } - /*** - * - * @param contourValuesList - */ - private void setContourValuesList(List contourValuesList) { - this.contourValuesList = new ArrayList (contourValuesList); - } + /**@return boolean isCINTStringParsed*/ + public boolean isCINTStringParsed() { + return isCINTStringParsed; + } - /** An enumeration to define the 5 zoom levels allowed in CINT */ - public static enum ZoomLevel { - FIRST(1), SECOND(2), THIRD(3), FOURTH(4), FIFTH(5); - private int zoomLevel; + /** + * @return The portion of the parsed CINT string specific to a zoom level + * if the CINT object for that zoom level exists or an empty String otherwise. + * */ + public String getCINTString(ZoomLevel zLevel){ + String currentCINTString=""; + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentCINTString = new String ( this.listOfCINTObjects.get(zLevel.zoomLevel-1).contourIntervalString); + } + return currentCINTString; + } - private ZoomLevel(int index) { - this.zoomLevel = index; - } + /** + * @return The contour interval specific to a zoom level + * if the CINT object for that zoom level exists or NaN otherwise. + * */ + public Double getContourInterval(ZoomLevel zLevel) { + Double currentContourInterval = Double.NaN; + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentContourInterval = new Double ( this.listOfCINTObjects.get(zLevel.zoomLevel-1).contourInterval); + } + return currentContourInterval; + } + - public int getZoomLevelAsInt() { - return zoomLevel; - } - } + /** + * @return The minimum contour value specific to a zoom level + * if the CINT object for that zoom level exists or NaN otherwise. + * */ + public Double getMinContourValue(ZoomLevel zLevel) { + Double currentMinContourValue = Double.NaN; + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentMinContourValue = new Double ( this.listOfCINTObjects.get(zLevel.zoomLevel-1).minContourValue); + } + return currentMinContourValue; + } + + /** + * @return The maximum contour value specific to a zoom level + * if the CINT object for that zoom level exists or NaN otherwise. + * */ + public Double getMaxContourValue(ZoomLevel zLevel) { + Double currentMaxContourValue = Double.NaN; + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentMaxContourValue = new Double ( this.listOfCINTObjects.get(zLevel.zoomLevel-1).maxContourValue); + } + return currentMaxContourValue; + } - /** Zoom constant representing the first zoom level */ - public static final ZoomLevel FIRST_ZOOM_LEVEL = ZoomLevel.FIRST; - - /** Zoom constant representing the second zoom level */ - public static final ZoomLevel SECOND_ZOOM_LEVEL = ZoomLevel.SECOND; - - /** Zoom constant representing the third zoom level */ - public static final ZoomLevel THIRD_ZOOM_LEVEL = ZoomLevel.THIRD; - - /** Zoom constant representing the fourth zoom level */ - public static final ZoomLevel FOURTH_ZOOM_LEVEL = ZoomLevel.FOURTH; - - /** Zoom constant representing the fifth zoom level */ - public static final ZoomLevel FIFTH_ZOOM_LEVEL = ZoomLevel.FIFTH; - - /** - * Zoom constant representing the first zoom level as the minimum level of - * zoom - */ - public static final ZoomLevel MIN_ZOOM_LEVEL = ZoomLevel.FIRST; - - /** - * Zoom constant representing the fifth zoom levelas the maximum level of - * zooom - */ - public static final ZoomLevel MAX_ZOOM_LEVEL = ZoomLevel.FIFTH; - - /** - * Gets the {@code List } of the contour values for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the contour values for the input zoom - * level if the CINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getContourValuesListAsString(ZoomLevel zLevel) { - List cvList = Collections.EMPTY_LIST; - int listSize = this.listOfCINTObjects.size(); - if (listSize > 0 && listSize >= zLevel.zoomLevel) { - cvList = new ArrayList ( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourValuesListAsString); - } - return cvList; - } - - /** - * Gets the {@code List } of the contour labels for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the contour labels for the input zoom - * level if the CINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getContourLabelsForZoomLevel(ZoomLevel zLevel) { - List cintLabelList = new ArrayList (0); - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - cintLabelList = new ArrayList (this.listOfCINTObjects.get( - zLevel.zoomLevel - 1).getContourLabelList()); - } - return cintLabelList; - } - - /** - * The default constructor initializes the instance variables to their - * defaults - **/ - public CINT() { - setContourInterval(Double.NaN); - setMinContourValue(Double.NaN); - setMaxContourValue(Double.NaN); - isCINTStringParsed = false; - cintParser = new ContourStringParser(); - cintHashMap = new HashMap (0); - contourValuesList = new ArrayList (0); - contourValuesListAsString = new ArrayList (0); - contourLabelList = new ArrayList (0); - } - - // - // /** - // *The overloaded constructor accepts the CINT string as an input and calls - // the parse method of the - // *ContourStringParser on it. - // *If the parsing is successful, the contour interval, minimum contour - // level, maximum - // *contour level and the list of contour values will be populated by the - // corresponding parsed - // *data from the ContourStringParser object. - // * - // **/ - public CINT(String contourIntervalString) { - - /* Initialize instance variables */ - setContourInterval(Double.NaN); - setMinContourValue(Double.NaN); - setMaxContourValue(Double.NaN); - contourValuesList = new ArrayList (0); - contourValuesListAsString = new ArrayList (0); - contourLabelList = new ArrayList (0); - - setUserInputString(contourIntervalString); - cintParser = new ContourStringParser(); - parseAndSetAttributes(contourIntervalString); - - } - - public static List parseCINT(String cint, int zoomLevelIndex, - float minValue, float maxValue) { - - /* - * Convert zoomLevel index - */ - ZoomLevel zoomLevel = CINT.FIRST_ZOOM_LEVEL; - - switch (zoomLevelIndex) { - case 1: - zoomLevel = CINT.FIRST_ZOOM_LEVEL; - break; - case 2: - zoomLevel = CINT.SECOND_ZOOM_LEVEL; - break; - case 3: - zoomLevel = CINT.THIRD_ZOOM_LEVEL; - break; - case 4: - zoomLevel = CINT.FOURTH_ZOOM_LEVEL; - break; - case 5: - zoomLevel = CINT.FIFTH_ZOOM_LEVEL; - break; - } - - /* - * Get contour values from CINT - */ - List cvalues = null; - Double cmin = new Double(minValue); - Double cmax = new Double(maxValue); - Double interval = null; - - if (cint == null || cint.trim().length() < 1) { - interval = (cmax - cmin) / 10.0; - CINT contourInfo = new CINT(interval.toString() + "/" - + cmin.toString() + "/" + cmax.toString()); - cvalues = contourInfo - .getUniqueSortedContourValuesFromAllZoomLevels(); - } else { - CINT contourInfo = new CINT(cint); - cvalues = contourInfo.getContourValuesListAsDouble(zoomLevel); - - if (cvalues == null || cvalues.size() < 1 /* - * || contourInfo. - * getContourInterval - * (zoomLevel) == 0.0 - */) { - - cmin = contourInfo.getMinContourValue(zoomLevel); - if (cmin == null || cmin.isNaN()) - cmin = new Double(minValue); - - cmax = contourInfo.getMaxContourValue(zoomLevel); - if (cmax == null || cmax.isNaN()) - cmax = new Double(maxValue); - - interval = contourInfo.getContourInterval(zoomLevel); - if (interval == null || interval.isNaN()) { - interval = (cmax - cmin) / 10.0; - } - - // Only allow less than 50 contour levels - if ((cmax - cmin) / interval > 50) - interval = (cmax - cmin) / 50; - - // System.out.println(" cmax=="+cmax); - contourInfo = new CINT(interval.toString() + "/" - + cmin.toString() + "/" + cmax.toString()); - cvalues = contourInfo - .getUniqueSortedContourValuesFromAllZoomLevels(); - } - } - - return cvalues; - } - - /** @return boolean isCINTStringParsed */ - public boolean isCINTStringParsed() { - return isCINTStringParsed; - } - - /** - * @return The portion of the parsed CINT string specific to a zoom level if - * the CINT object for that zoom level exists or an empty String - * otherwise. - * */ - public String getCINTString(ZoomLevel zLevel) { - String currentCINTString = ""; - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentCINTString = new String( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourIntervalString); - } - return currentCINTString; - } - - /** - * @return The contour interval specific to a zoom level if the CINT object - * for that zoom level exists or NaN otherwise. - * */ - public Double getContourInterval(ZoomLevel zLevel) { - Double currentContourInterval = Double.NaN; - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentContourInterval = new Double( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).contourInterval); - } - return currentContourInterval; - } - - /** - * @return The minimum contour value specific to a zoom level if the CINT - * object for that zoom level exists or NaN otherwise. - * */ - public Double getMinContourValue(ZoomLevel zLevel) { - Double currentMinContourValue = Double.NaN; - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentMinContourValue = new Double( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).minContourValue); - } - return currentMinContourValue; - } - - /** - * @return The maximum contour value specific to a zoom level if the CINT - * object for that zoom level exists or NaN otherwise. - * */ - public Double getMaxContourValue(ZoomLevel zLevel) { - Double currentMaxContourValue = Double.NaN; - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentMaxContourValue = new Double( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).maxContourValue); - } - return currentMaxContourValue; - } - - /** - * @return The minimum digits in the label for contour values specific to a - * zoom level if the CINT object for that zoom level exists or 0 - * otherwise. - * */ - public Integer getNumPaddingDigits(ZoomLevel zLevel) { - Integer currentNumPaddingDigits = new Integer(0); - int listSize = this.listOfCINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentNumPaddingDigits = new Integer( - this.listOfCINTObjects.get(zLevel.zoomLevel - 1).numPaddingDigits); - } - return currentNumPaddingDigits; - } - - /*** - * - * @return a list String objects representing the unique contour values from - * all zoom levels - */ - public List getUniqueSortedContourValuesFromAllZoomLevelsAsString() { - List sortedKeySet = getUniqueSortedContourValuesFromAllZoomLevels(); - List contourValList = new ArrayList (0); - if (sortedKeySet.size() > 0) { - for (Double contourValue : sortedKeySet) { - contourValList.add(contourValue.toString()); - } - } - return contourValList; - } - - /*** - * - * @return a list of Double objects representing the unique contour values - * from all zoom levels - */ - public List getUniqueSortedContourValuesFromAllZoomLevels() { - Set setOfUnqiueContourValues = new HashSet (0); - List sortedList = new ArrayList (0); - - int length = this.listOfCINTObjects.size(); - for (int index = 0; index < length; index++) { - CINT currentCINTObj = this.listOfCINTObjects.get(index); - setOfUnqiueContourValues.addAll(currentCINTObj.contourValuesList); + /** + * @return The minimum digits in the label for contour values specific to a zoom level + * if the CINT object for that zoom level exists or 0 otherwise. + * */ + public Integer getNumPaddingDigits(ZoomLevel zLevel) { + Integer currentNumPaddingDigits = new Integer(0); + int listSize = this.listOfCINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentNumPaddingDigits = new Integer ( this.listOfCINTObjects.get(zLevel.zoomLevel-1).numPaddingDigits); + } + return currentNumPaddingDigits; + } + + /*** + * + * @return a list String objects representing the unique contour values from all zoom levels + */ + public List getUniqueSortedContourValuesFromAllZoomLevelsAsString(){ + List sortedKeySet = getUniqueSortedContourValuesFromAllZoomLevels(); + List contourValList = new ArrayList (0); + if(sortedKeySet.size() > 0){ + for(Double contourValue : sortedKeySet){ + contourValList.add(contourValue.toString()); + } + } + return contourValList; + } + +/*** + * + * @return a list of Double objects representing the unique contour values from all zoom levels + */ + public List getUniqueSortedContourValuesFromAllZoomLevels(){ + Set setOfUnqiueContourValues = new HashSet (0); + List sortedList = new ArrayList (0); + + int length = this.listOfCINTObjects.size(); + for (int index = 0; index < length; index++) { + CINT currentCINTObj = this.listOfCINTObjects.get(index); + setOfUnqiueContourValues.addAll(currentCINTObj.contourValuesList); sortedList = new ArrayList (setOfUnqiueContourValues); - Collections.sort(sortedList); - } - return sortedList; - } + Collections.sort(sortedList); + } + return sortedList; + } - private void setContourValuesListAsString( - List contourValuesListAsString) { - this.contourValuesListAsString = contourValuesListAsString; - } + private void setContourValuesListAsString(List contourValuesListAsString) { + this.contourValuesListAsString = contourValuesListAsString; + } + + /**@param boolean isCINTStringParsed*/ + private void setCINTStringParsed(boolean isCINTStringParsed) { + this.isCINTStringParsed = isCINTStringParsed; + } + + /**@param String cintString*/ + private void setCINTString(String cintString){ + contourIntervalString = new String(cintString); + } - /** @param boolean isCINTStringParsed */ - private void setCINTStringParsed(boolean isCINTStringParsed) { - this.isCINTStringParsed = isCINTStringParsed; - } + /**@param Double contourInterval*/ + private void setContourInterval(Double contourInterval) { + this.contourInterval = new Double(contourInterval); + } - /** - * @param String - * cintString - */ - private void setCINTString(String cintString) { - contourIntervalString = new String(cintString); - } + /**@param Double minContourValue*/ + private void setMinContourValue(Double minContourValue) { + this.minContourValue = new Double(minContourValue); + } + + /**@param Double maxContourValue */ + private void setMaxContourValue(Double maxContourValue) { + this.maxContourValue = new Double (maxContourValue); + } - /** - * @param Double - * contourInterval - */ - private void setContourInterval(Double contourInterval) { - this.contourInterval = new Double(contourInterval); - } + /** + *@param Integer numPaddingDigits + **/ + private void setNumPaddingDigits(Integer numPaddingDigits) { + this.numPaddingDigits = new Integer(numPaddingDigits); + } - /** - * @param Double - * minContourValue - */ - private void setMinContourValue(Double minContourValue) { - this.minContourValue = new Double(minContourValue); - } + /*** + * + * @param inputStr + */ + private void parseAndSetAttributes(String inputStr){ + boolean isParsed = false; + if (inputStr != null) { + String contourLevelStringsArray[] = inputStr.split(">"); + int lengthOfContourLevelStringsArray = contourLevelStringsArray.length; + if(lengthOfContourLevelStringsArray > CINT.MAX_ZOOM_LEVEL.zoomLevel){ + lengthOfContourLevelStringsArray = CINT.MAX_ZOOM_LEVEL.zoomLevel; + } + + listOfCINTObjects = new ArrayList (lengthOfContourLevelStringsArray); + + for (int index = 0; index < lengthOfContourLevelStringsArray; index++) { - /** - * @param Double - * maxContourValue - */ - private void setMaxContourValue(Double maxContourValue) { - this.maxContourValue = new Double(maxContourValue); - } +// /*Invoke the parse method of ContourStringParser*/ + cintParser.parse(contourLevelStringsArray[index]); + + //create the CINT object for the current zoom level + CINT currentCINTObj = new CINT(); + currentCINTObj.setCINTStringParsed(cintParser.isContourStringParsed()); - /** - * @param Integer - * numPaddingDigits - **/ - private void setNumPaddingDigits(Integer numPaddingDigits) { - this.numPaddingDigits = new Integer(numPaddingDigits); - } + /*If the parse operation was successful, extract the numeric + *data and set the corresponding instance variables of currentCINTObj*/ - /*** - * - * @param inputStr - */ - private void parseAndSetAttributes(String inputStr) { - boolean isParsed = false; - if (inputStr != null) { - String contourLevelStringsArray[] = inputStr.split(">"); - int lengthOfContourLevelStringsArray = contourLevelStringsArray.length; - if (lengthOfContourLevelStringsArray > CINT.MAX_ZOOM_LEVEL.zoomLevel) { - lengthOfContourLevelStringsArray = CINT.MAX_ZOOM_LEVEL.zoomLevel; - } - - listOfCINTObjects = new ArrayList ( - lengthOfContourLevelStringsArray); - - for (int index = 0; index < lengthOfContourLevelStringsArray; index++) { - - // /*Invoke the parse method of ContourStringParser*/ - cintParser.parse(contourLevelStringsArray[index]); - - // create the CINT object for the current zoom level - CINT currentCINTObj = new CINT(); - currentCINTObj.setCINTStringParsed(cintParser - .isContourStringParsed()); - - /* - * If the parse operation was successful, extract the numeric - * data and set the corresponding instance variables of - * currentCINTObj - */ - - if (currentCINTObj.isCINTStringParsed()) { - currentCINTObj - .setCINTString(contourLevelStringsArray[index]); - currentCINTObj.setContourInterval(cintParser - .getContourInterval()); - currentCINTObj.setMinContourValue(cintParser - .getMinContourLevel()); - currentCINTObj.setMaxContourValue(cintParser - .getMaxContourLevel()); - currentCINTObj.setNumPaddingDigits(cintParser - .getNumPaddingDigits()); - currentCINTObj.setContourValuesList(cintParser - .getContourValuesList()); - currentCINTObj.setCintHashMap(cintParser - .getLabeledContourValuesHashMap()); - Set tempKeySet = new LinkedHashSet ( - currentCINTObj.cintHashMap.keySet()); - currentCINTObj.setContourValuesList(new ArrayList ( - tempKeySet)); - for (Double contourValue : tempKeySet) { - currentCINTObj.contourValuesListAsString - .add(contourValue.toString()); - } - currentCINTObj.contourLabelList = new ArrayList ( - new LinkedHashSet ( - currentCINTObj.cintHashMap.values())); - } - - if (index == 0) { - isParsed = currentCINTObj.isCINTStringParsed(); - } else { - isParsed = isParsed & currentCINTObj.isCINTStringParsed(); - } - - // Sets the status of the parse operations across all zoom - // levels (i.e. for all CINT objects in the list) - this.setCINTStringParsed(isParsed); - - // finally add currentCINTObj to the list of CINT objects - listOfCINTObjects.add(currentCINTObj); - } - } - } + if (currentCINTObj.isCINTStringParsed()) { + currentCINTObj.setCINTString(contourLevelStringsArray[index]); + currentCINTObj.setContourInterval(cintParser.getContourInterval()); + currentCINTObj.setMinContourValue(cintParser.getMinContourLevel()); + currentCINTObj.setMaxContourValue(cintParser.getMaxContourLevel()); + currentCINTObj.setNumPaddingDigits(cintParser.getNumPaddingDigits()); + currentCINTObj.setContourValuesList(cintParser.getContourValuesList()); + currentCINTObj.setCintHashMap(cintParser.getLabeledContourValuesHashMap()); + Set tempKeySet = new LinkedHashSet (currentCINTObj.cintHashMap.keySet()); + currentCINTObj.setContourValuesList( new ArrayList (tempKeySet)); + for(Double contourValue : tempKeySet){ + currentCINTObj.contourValuesListAsString.add(contourValue.toString()); + } + currentCINTObj.contourLabelList = new ArrayList ( new LinkedHashSet (currentCINTObj.cintHashMap.values())); + } + + if(index == 0){ + isParsed = currentCINTObj.isCINTStringParsed(); + }else{ + isParsed = isParsed & currentCINTObj.isCINTStringParsed(); + } + + //Sets the status of the parse operations across all zoom levels (i.e. for all CINT objects in the list) + this.setCINTStringParsed(isParsed); + //finally add currentCINTObj to the list of CINT objects + listOfCINTObjects.add(currentCINTObj); + } + } + } + } + diff --git a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/infill/FINT.java b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/infill/FINT.java index 2b7012f61d..6d926f167e 100644 --- a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/infill/FINT.java +++ b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/infill/FINT.java @@ -1,7 +1,5 @@ package gov.noaa.nws.ncep.gempak.parameters.infill; -import gov.noaa.nws.ncep.gempak.parameters.contourinterval.ContourStringParser; - import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -11,22 +9,23 @@ import java.util.List; import java.util.Map; import java.util.Set; +import gov.noaa.nws.ncep.gempak.parameters.infill.FINT; +import gov.noaa.nws.ncep.gempak.parameters.contourinterval.ContourStringParser; +//import gov.noaa.nws.ncep.gempak.parameters.fillinterval.FINT.ZoomLevel; + /** - * FINT accepts strings (in its overloaded constructor) matching one of the two - * formats below: + * FINT accepts strings (in its overloaded constructor) matching one of the two formats below: * * fillInterval/minimumFillValue/maximumValue
* fillVal1;fillVal2;...;fillValn * *
* FINT returns a list of fill fill levels (and/or fill interval, - * minimum and maximum fill levels) only if the method - * isFINTStringParsed() returns true. Hence before attempting to use a - * numeric value returned by any method in FINT, it is strongly advised - * that the user checks the result of the method isFINTStringParsed(). + * minimum and maximum fill levels) only if the method isFINTStringParsed() returns true. + * Hence before attempting to use a numeric value returned by any method in FINT, it is strongly + * advised that the user checks the result of the method isFINTStringParsed(). *
- * - *
+ ** @author Archana * @version 1 */ public class GraphicsAreaCoordinates { - protected double lowerLeftLat, lowerLeftLon, upperRightLat, upperRightLon; - - protected double centerLat, centerLon, deltaLat, deltaLon; - - private double defaultAndle1, defaultAngle2; - - protected String geogAreaCode; - - protected String station_code; - - protected String mapProjectionStr; - - protected String errorMessage; - - protected boolean isGraphicsAreaStrValid; - - public boolean isGraphicsAreaStrValid() { - return isGraphicsAreaStrValid; - } - - public void setGraphicsAreaStrValid(boolean isGraphicsAreaStrValid) { - this.isGraphicsAreaStrValid = isGraphicsAreaStrValid; - } - - protected boolean errorMsgSet; - - private String graphicsAreaString; - - private String geogFileName = "res/geog.xml"; - - private String stationFileName = "res/sfstns.xml"; - - /* - * All getters go below - */ - public String getGraphicsAreaString() { - return graphicsAreaString; - } - - public double getLowerLeftLat() { - return lowerLeftLat; - } - - public double getLowerLeftLon() { - return lowerLeftLon; - } - - public double getUpperRightLat() { - return upperRightLat; - } - - public double getUpperRightLon() { - return upperRightLon; - } - - public double getCenterLat() { - return centerLat; - } - - public double getCenterLon() { - return centerLon; - } - - public double getDefaultAngle1UsingGempakProjectionName( - String gempakProjectionName) { - if ("CED".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 0.0; - else if ("MCD".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 0.0; - else if ("MER".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 0.0; - else if ("NPS".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 90.0; - else if ("LCC".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 30.0; - else if ("SCC".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = -30.0; - else if ("SPS".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = -90.0; - else if ("UTM".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = getDefaultAngle2UsingGempakProjectionName(gempakProjectionName); - else if ("NOR".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 90.0; - else if ("SOR".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = -90.0; - else if ("ORT".equalsIgnoreCase(gempakProjectionName)) - defaultAndle1 = 0.0; - return defaultAndle1; - } - - public double getDefaultAngle2UsingGempakProjectionName( - String gempakProjectionName) { - if ("UTM".equalsIgnoreCase(gempakProjectionName)) { - defaultAngle2 = 0.0; - } else { - defaultAngle2 = calculateAverageLongitude(lowerLeftLon, - upperRightLon); - } - return defaultAngle2; - } - - public double getDefaultAngle1UsingGeotoolsProjectionName( - String geotoolsProjectionName) { - if ("Equidistant_Cylindrical".equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Polar_Stereographic".equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Mercator_1SP".equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Orthographic".equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Transverse_Mercator".equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Lambert_Azimuthal_Equal_Area" - .equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 0.0; - else if ("Lambert_Conformal_Conic_2SP" - .equalsIgnoreCase(geotoolsProjectionName)) - defaultAndle1 = 30.0; - - return defaultAndle1; - } - - public double getDefaultAngle2UsingGeotoolsProjectionName() { - defaultAngle2 = calculateAverageLongitude(lowerLeftLon, upperRightLon); - return defaultAngle2; - } - - public void setGeogFileName(String geogFileName) { - this.geogFileName = geogFileName; - } - - public void setStationFileName(String stationFileName) { - this.stationFileName = stationFileName; - } - - // ********************************************************************************************************* - /* - * These variables retain the name of their Fortran counterparts in the file - * lcabnd.f They are used in the calculations of the zoom factor to update - * the Latitude/Longitude values, when a zoom-in/zoom-out option is - * specified along with either the area code from the geog table or the - * station code from the station table. - */ - - protected double zoomul = 0; - - protected int izoom = 0, iartyp = -1; - - protected float zmofst = 0; - - // ********************************************************************************************************* - protected final String VALID_NUMBER = "-?\\d{0,3}\\.?\\d*"; - - protected final String EXTRA_ARGS = "Too many arguments entered"; - - protected final String LESS_NUM_ARGS = "Too few arguments entered"; - - protected final String INVALID_LAT_LON_VALUES = "Invalid lat/lon values entered"; - - protected final String INVALID_CENTER_DELTA_LON_VALUES = "center_lon - delta_lon should be >= -180.0 and center_lon + delta_lon should be <=360.0"; - - protected final String NEGATIVE_DELTA_LON = "Delta Longitude values cannot be negative"; - - protected final String INVALID_CENTER_DELTA_LAT_VALUES = "center_lat - delta_lat should be >= -90.0 and center_lat + delta_lat should be <=90.0"; - - protected final String NEGATIVE_DELTA_LAT = "Delta Latitude values cannot be negative"; - - protected final String INVALID_CENTER_LON = "Center Longtude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; - - protected final String INVALID_CENTER_LAT = "Center Latitude can only take values between -90.00 and 90.00"; - - protected final String LL_LAT_GREATER_THAN_UR_LAT = "Lower left latitude must be less than or equal to upper right latitude"; - - protected final String LL_LON_GREATER_THAN_UR_LON = "Lower left longitude must be less than or equal to upper right longitude"; - - protected final String INVALID_UR_LON = "Upper Right Longitude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; - - protected final String INVALID_UR_LAT = "Upper Right Latitude can only take values between -90.00 and 90.00"; - - protected final String INVALID_LL_LON = "Lower Left Longitude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; - - protected final String INVALID_LL_LAT = "Lower Left Latitude can only take values between -90.00 and 90.00"; - - protected final String INVALID_STR = "Invalid String Format"; - - /** - * Overloaded constructor takes the GAREA string as input. - * - * @param s - */ - public GraphicsAreaCoordinates(String str) { - graphicsAreaString = str; - - lowerLeftLat = -1000.0f; - lowerLeftLon = -1000.0f; - upperRightLat = -1000.0f; - upperRightLon = -1000.0f; - centerLat = -1000.0f; - centerLon = -1000.0f; - deltaLat = -1000.0f; - deltaLon = -1000.0f; - errorMsgSet = false; - // isGraphicsAreaStrValid = parseGraphicsAreaString(str); - } - - /** - * a helper method to indicate if the graphic area string starts with a - * valid Geog name in Geog Table - */ - public boolean isValidGeogName() { - boolean isValid = false; - if (iartyp == 3 && isGraphicsAreaStrValid) - isValid = true; - return isValid; - } - - /** - * a helper method to indicate if the graphic area string starts with a - * valid station name in the Station table - */ - public boolean isValidStationName() { - boolean isValid = false; - if (iartyp == 4 && isGraphicsAreaStrValid) - isValid = true; - return isValid; - } - - /** - * a helper method to indicate if the graphic area string contains valid - * center and delta lat/lon values - */ - public boolean isValidCenterDeltaLatLonValues() { - boolean isValid = false; - if (isGraphicsAreaStrValid && !isStringEmpty(graphicsAreaString) - && graphicsAreaString.startsWith("#")) - isValid = true; - return isValid; - } - - /** - * a helper method to indicate if the graphic area string contains valid - * lower left and upper right lat/lon values - */ - public boolean isValidLowerLeftAndUpperRightLatLonValues() { - boolean isValid = false; - if (isGraphicsAreaStrValid && !isStringEmpty(graphicsAreaString) - && !isValidCenterDeltaLatLonValues() && !isValidStationName() - && !isValidGeogName()) - isValid = true; - return isValid; - } - - /** - * @param s - * The method parseGraphicsAreaString() accepts as input a single - * string that denotes the graphics area coordinates in one of - * the formats listed below: #clta;clon;dlat;dlon - center - * latitude/longitude and the delta latitude/longitude values. - * lat1;lon1;lat2;lon2 - lower left latitude/longitude and upper - * right latitude/longitude values. GEOG - a geographical area - * code in the file geog.xml STN - a station code in the file - * station.xml For the ';' separated strings, after checking the - * validity of the input string, the function parses it into - * tokens to extract the latitude/longitude values. For the - * GEOG/STN codes, if it finds the corresponding record in the - * geog table or the station table, it retrieves the - * corresponding latitude/longitude values. Additionally, for the - * GEOG code, it also retrieves the map projection string. - * @return graphics_area_str_valid - */ - - public boolean parseGraphicsAreaString(String gAreaString) { - - int i = 0; - String geogCodeStr; - - // boolean isGAreaStringValid = true; - - if (isStringEmpty(gAreaString)) - return false; - - // if(gAreaString.length()!=0){ - if (gAreaString.charAt(0) == '#') { - iartyp = 1; - geogCodeStr = gAreaString.substring(1); - isGraphicsAreaStrValid = validateLatLonInputString(geogCodeStr); - - if (isGraphicsAreaStrValid) { - - setCenterDeltaLatLonValues(geogCodeStr); - isGraphicsAreaStrValid = validateCenterDeltaLatLonValues( - centerLat, centerLon, deltaLat, deltaLon); - - if (isGraphicsAreaStrValid) { - - calculateLLURLatLonFromCDLatLon(centerLat, centerLon, - deltaLat, deltaLon); - - // The latitude/longitude values of the lower left and upper - // right coordinates are checked to ensure that - // they lie within the valid range and that the lower left - // latitude/longitude values - // are less than the upper right latitude/longitude values. - - isGraphicsAreaStrValid = validateLowerUpperLatLonValues( - lowerLeftLat, lowerLeftLon, upperRightLat, - upperRightLon); - if (isGraphicsAreaStrValid) { - errorMessage = "Valid String"; - errorMsgSet = true; - } - - } - } - // else{ - // isGraphicsAreaStrValid = false; - // if(!errorMsgSet){ - // errorMessage = INVALID_STR; - // errorMsgSet = true; - // } - // } - - } else { - - isGraphicsAreaStrValid = validateLatLonInputString(gAreaString); - if (isGraphicsAreaStrValid) { - iartyp = 2; - setLowerUpperLatLonValues(gAreaString); - isGraphicsAreaStrValid = validateLowerUpperLatLonValues( - lowerLeftLat, lowerLeftLon, upperRightLat, - upperRightLon); - - // The calculations for center_lat and center_lon are derived - // from lcabnd.f - if (isGraphicsAreaStrValid) { - centerLat = (lowerLeftLat + upperRightLat) / 2; - centerLon = (lowerLeftLon + upperRightLon) / 2; - isGraphicsAreaStrValid = validateCenterDeltaLatLonValues( - centerLat, centerLon, 0.0f, 0.0f); - if (isGraphicsAreaStrValid) { - errorMessage = "Valid String"; - errorMsgSet = true; - } - } - } - - else { - - /* - * A suffix such as '+' or '*' character, when appended to the - * GEOG code or the STN code increases the extent of the area. - * On the other hand, appending a '-' character to the GEOG/STN - * code decreases the extent of the area. This suffix character - * is ignored and only the substring containing just the GEOG or - * STN code alone is considered for comparison with the data in - * the XML files. - */ - - for (i = 0; i < gAreaString.length(); i++) { - if (gAreaString.charAt(i) == '+' - || gAreaString.charAt(i) == '*') { - izoom++; - gAreaString = gAreaString.replace( - gAreaString.charAt(i), ' '); - } - - if (gAreaString.charAt(i) == '-') { - izoom--; - gAreaString = gAreaString.replace( - gAreaString.charAt(i), ' '); - } - } - - if (izoom != 0) { - zoomul = computeZoomMultiplier(izoom); - - } - - geogCodeStr = gAreaString.trim().toUpperCase(Locale.ENGLISH); - - try { - iartyp = searchGeogTable(geogCodeStr); - // GeographicalData geographicalData = - // searchGeogTable(geogCodeStr); - if (iartyp != 3) { - // if(geographicalData == null) { - iartyp = searchStationTable(geogCodeStr); - if (iartyp == 0) { - isGraphicsAreaStrValid = false; - } else { - if (izoom != 0) { - deltaLat = (float) (4.0); - deltaLon = (float) (7.0); - lowerLeftLat = (float) (centerLat - zoomul - * deltaLat); - upperRightLat = (float) (centerLat + zoomul - * deltaLon); - lowerLeftLon = (float) (centerLon - zoomul - * deltaLon); - upperRightLon = (float) (centerLon + zoomul - * deltaLon); - } - isGraphicsAreaStrValid = true; - } - } else { - if (izoom != 0) { - zmofst = (float) ((1.0 - zoomul) / 2); - lowerLeftLat = lowerLeftLat - + (upperRightLat - lowerLeftLat) * zmofst; - upperRightLat = upperRightLat - - (upperRightLat - lowerLeftLat) * zmofst; - lowerLeftLon = lowerLeftLon - + (upperRightLon - lowerLeftLon) * zmofst; - upperRightLon = upperRightLon - - (upperRightLon - lowerLeftLon) * zmofst; - } - isGraphicsAreaStrValid = true; - } - } catch (Exception e) { - e.printStackTrace(); - } - - if (!isGraphicsAreaStrValid && !errorMsgSet) { - errorMessage = INVALID_STR; - } - - } - - } - - // } - // else{ - // errorMessage = "Empty String"; - // errorMsgSet = true; - // isGraphicsAreaStrValid = false; - // } - - return isGraphicsAreaStrValid; - } - - /** - * The logic of this method is taken from Fortran function PRNLON.f This - * method converts a longitude in degrees into degrees which fall within the - * range 180 to -180. - */ - private double convertLongitudeValue(double longitudeValue) { - double convertedLonValue = longitudeValue; - if (longitudeValue < -180.0) - convertedLonValue = longitudeValue + 360.0; - else if (longitudeValue > 180.0) - convertedLonValue = longitudeValue - 360.0; - return convertedLonValue; - } - - /** - * This method calculate the average longitude for setting up projection. - * The logic is taken from Fortran function gammap.f - * - * @param lowerLeftLon - * , lower left longitude - * @param upperRightLon - * , upper right longitude - * @return average longitude for setting up projection - */ - private double calculateAverageLongitude(double lowerLeftLon, - double upperRightLon) { - double averageLongitude = 0.0; - if (lowerLeftLon == upperRightLon) - averageLongitude = lowerLeftLon + 180.0; - else if (lowerLeftLon > upperRightLon) - averageLongitude = (360.0 + lowerLeftLon + upperRightLon) / 2; - else - averageLongitude = (lowerLeftLon + upperRightLon) / 2; - - /* - * truncate the double number with maximumly 3 digits after the DOT - */ - averageLongitude = truncateDoubleValue(averageLongitude); - return convertLongitudeValue(averageLongitude); - } - - private double truncateDoubleValue(double d) { - double truncatedNumber = d > 0 ? Math.floor(d * 1000) / 1000.0 : Math - .ceil(d * 1000) / 1000.0; - return truncatedNumber; - } - - /** - * The function searchGeogTable accepts as input a string 'code_str' that - * represents a code in the geog table and if the input string matches a - * code for the geographical area in the file geog.xml, the corresponding - * Latitude/Longitude values and the projection string are retrieved from - * the file. - * - * @param code_str - * @return found - * @throws Exception - */ - - public int searchGeogTable(String geogCode) throws Exception { - // public GeographicalData searchGeogTable(String geogCode) throws - // Exception{ - // GeographicalData geogData = null; - GeographicalDataReader geogDataReader = new GeographicalDataReader( - geogFileName); - List* SOFTWARE HISTORY * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- @@ -37,553 +36,479 @@ import java.util.Set; * Implemented each zoom level as a separate FINT object in a list of * FINT objects. * 17-May-2011 M. Li add parseFINT - * + * *- * * @author Archana.S * @version 1 - * @see $GEMPAK/help/hlx/fint.hl2 + * @see $GEMPAK/help/hlx/fint.hl2 */ public class FINT { + + /**The object responsible for parsing the FINT string*/ + private ContourStringParser fintParser; + + /** The input FINT string*/ + private String fillIntervalString; + + /** A real number that represents the fill interval*/ + private Double fillInterval; + + /** A real number that represents the minimum fill level*/ + private Double minFillValue; + + /** A real number that represents the maximum fill level*/ + private Double maxFillValue; + + /** Boolean flag to validate that the FINT string was parsed correctly*/ + private boolean isFINTStringParsed; + + /**The un-parsed FINT string entered by the user */ + String userInputString; + + + public String getUserInputString() { + return userInputString; + } - /** The object responsible for parsing the FINT string */ - private ContourStringParser fintParser; + private void setUserInputString(String userInputString) { + this.userInputString = userInputString; + } - /** The input FINT string */ - private String fillIntervalString; + /**A list of FINT objects where each FINT object represents one zoom level*/ + private ListlistOfFINTObjects = new ArrayList (0); - /** A real number that represents the fill interval */ - private Double fillInterval; + /**The list of fill values*/ + private List fillValuesList; + + /**The list of fill values represented as String objects*/ + private List fillValuesListAsString; + + /**The list of extracted fill labels. For FINT strings without labels, it is the fill value stored as its String equivalent*/ + private List fillLabelList; + + private List getFillLabelList() { + return fillLabelList; + } - /** A real number that represents the minimum fill level */ - private Double minFillValue; + private void setFillLabelList(List fillLabelList) { + this.fillLabelList = fillLabelList; + } - /** A real number that represents the maximum fill level */ - private Double maxFillValue; + /**A HashMap of the fill values and their labels*/ + private Map fintHashMap; + + /**@return a list of FINT objects, each of which represents one zoom level*/ + public List getListOfFINTObjects() { + return (new ArrayList (listOfFINTObjects)); + } - /** Boolean flag to validate that the FINT string was parsed correctly */ - private boolean isFINTStringParsed; + /** + * Gets the {@code HashMap } of the fill values and labels for a specific zoom level + * @param The zoom level + * @return The {@code HashMap } of the fill values and labels for the input zoom level + * if the FINT object for that zoom level exists or an empty map otherwise. + * */ + public Map getFintHashMap(ZoomLevel zLevel) { + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + Map thisMap = new HashMap (this.listOfFINTObjects.get( zLevel.zoomLevel - 1).fintHashMap); + if(thisMap.size() > 0){ + return (thisMap); + } + } + return Collections.EMPTY_MAP; + } - /** The un-parsed FINT string entered by the user */ - String userInputString; +/*** + * + * @param fintHashMap + */ + private void setFintHashMap(Map fintHashMap) { + this.fintHashMap = fintHashMap; + } - public String getUserInputString() { - return userInputString; - } + + /** + * Gets the {@code List } of the fill values for a specific zoom level + * @param the zoom level + * @return The {@code List } of the fill values for the input zoom level + * if the FINT object for that zoom level exists or an empty list otherwise. + * */ + public List getFillValuesListAsDouble(ZoomLevel zLevel) { + int listSize = this.listOfFINTObjects.size(); + + if(listSize >= zLevel.zoomLevel){ + List cList = new ArrayList (this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillValuesList); + if( cList.size() > 0){ + return (new ArrayList (cList)); + } + } + return Collections.EMPTY_LIST; + } - private void setUserInputString(String userInputString) { - this.userInputString = userInputString; - } + /*** + * + * @param fillValuesList + */ + private void setFillValuesList(List fillValuesList) { + this.fillValuesList = new ArrayList (fillValuesList); + } - /** A list of FINT objects where each FINT object represents one zoom level */ - private List listOfFINTObjects = new ArrayList (0); + /**An enumeration to define the 5 zoom levels allowed in FINT*/ + public static enum ZoomLevel { + FIRST(1), SECOND(2), THIRD(3), FOURTH(4), FIFTH(5); + private int zoomLevel; + private ZoomLevel(int index){ + this.zoomLevel = index; + } + public int getZoomLevelAsInt(){ + return zoomLevel; + } + } + + /**Zoom constant representing the first zoom level*/ + public static final ZoomLevel FIRST_ZOOM_LEVEL = ZoomLevel.FIRST; + + /**Zoom constant representing the second zoom level*/ + public static final ZoomLevel SECOND_ZOOM_LEVEL = ZoomLevel.SECOND; + + /**Zoom constant representing the third zoom level*/ + public static final ZoomLevel THIRD_ZOOM_LEVEL = ZoomLevel.THIRD; + + /**Zoom constant representing the fourth zoom level*/ + public static final ZoomLevel FOURTH_ZOOM_LEVEL = ZoomLevel.FOURTH; + + /**Zoom constant representing the fifth zoom level*/ + public static final ZoomLevel FIFTH_ZOOM_LEVEL = ZoomLevel.FIFTH; + + /**Zoom constant representing the first zoom level as the minimum level of zoom*/ + public static final ZoomLevel MIN_ZOOM_LEVEL = ZoomLevel.FIRST; + + /**Zoom constant representing the fifth zoom levelas the maximum level of zooom*/ + public static final ZoomLevel MAX_ZOOM_LEVEL = ZoomLevel.FIFTH; + + /** + * Gets the {@code List } of the fill values for a specific zoom level + * @param the zoom level + * @return The {@code List } of the fill values for the input zoom level + * if the FINT object for that zoom level exists or an empty list otherwise. + * */ + public List getFillValuesListAsString(ZoomLevel zLevel) { + List cvList = Collections.EMPTY_LIST; + int listSize = this.listOfFINTObjects.size(); + if( listSize > 0 && listSize >= zLevel.zoomLevel){ + cvList = new ArrayList (this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillValuesListAsString); + } + return cvList; + } - /** The list of fill values */ - private List fillValuesList; + /** + * Gets the {@code List } of the fill labels for a specific zoom level + * @param the zoom level + * @return The {@code List } of the fill labels for the input zoom level + * if the FINT object for that zoom level exists or an empty list otherwise. + * */ + public List getFillLabelsForZoomLevel(ZoomLevel zLevel){ + List fintLabelList = new ArrayList (0); + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + fintLabelList = new ArrayList (this.listOfFINTObjects.get( zLevel.zoomLevel-1).getFillLabelList()); + } + return fintLabelList; +} + + /** + *The default constructor initializes the instance variables to their defaults + **/ + public FINT(){ + setFillInterval(Double.NaN); + setMinFillValue(Double.NaN); + setMaxFillValue(Double.NaN); + isFINTStringParsed = false; + fintParser = new ContourStringParser(); + fintHashMap = new HashMap (0); + fillValuesList = new ArrayList (0); + fillValuesListAsString = new ArrayList (0); + fillLabelList = new ArrayList (0); + } + +// +// /** +// *The overloaded constructor accepts the FINT string as an input and calls the parse method of the +// *ContourStringParser on it. +// *If the parsing is successful, the fill interval, minimum fill level, maximum +// *fill level and the list of fill values will be populated by the corresponding parsed +// *data from the ContourStringParser object. +// * +// **/ + public FINT(String fillIntervalString){ + + /*Initialize instance variables*/ + setFillInterval(Double.NaN); + setMinFillValue(Double.NaN); + setMaxFillValue(Double.NaN); + fillValuesList = new ArrayList (0); + fillValuesListAsString = new ArrayList (0); + fillLabelList = new ArrayList (0); - /** The list of fill values represented as String objects */ - private List fillValuesListAsString; + setUserInputString(fillIntervalString); + fintParser = new ContourStringParser(); + parseAndSetAttributes(fillIntervalString); - /** - * The list of extracted fill labels. For FINT strings without labels, it is - * the fill value stored as its String equivalent - */ - private List fillLabelList; + } - private List getFillLabelList() { - return fillLabelList; - } + public static List parseFINT(String fint, int zoomLevelIndex, float minValue, float maxValue) { - private void setFillLabelList(List fillLabelList) { - this.fillLabelList = fillLabelList; - } + List fvalues = null; + Double fmin = new Double(minValue); + Double fmax = new Double(maxValue); + Double finterval = null; - /** A HashMap of the fill values and their labels */ - private Map fintHashMap; + if (fint == null || fint.trim().length() < 1) { + finterval = (fmax - fmin) / 10.0; + FINT fintInfo = new FINT(finterval.toString()+"/"+fmin.toString()+"/"+fmax.toString()); + fvalues = fintInfo.getUniqueSortedFillValuesFromAllZoomLevels(); + } + else { + // Should be done inside FINT.java + gov.noaa.nws.ncep.gempak.parameters.infill.FINT.ZoomLevel fzoomLevel = FINT.FIRST_ZOOM_LEVEL; + switch (zoomLevelIndex) { + case 1: + fzoomLevel = FINT.FIRST_ZOOM_LEVEL; + break; + case 2: + fzoomLevel = FINT.SECOND_ZOOM_LEVEL; + break; + case 3: + fzoomLevel = FINT.THIRD_ZOOM_LEVEL; + break; + case 4: + fzoomLevel = FINT.FOURTH_ZOOM_LEVEL; + break; + case 5: + fzoomLevel = FINT.FIFTH_ZOOM_LEVEL; + break; + } - /** @return a list of FINT objects, each of which represents one zoom level */ - public List getListOfFINTObjects() { - return (new ArrayList (listOfFINTObjects)); - } + FINT fintInfo = null; + + /* + * FINT sometimes does not work for fint sep by ';' + */ + if (fint.contains(";")) { + String[] strarray = fint.trim().split(";"); + fvalues = new ArrayList (strarray.length); + for (String s : strarray) { + Double d = new Double(Double.valueOf(s.trim())); + fvalues.add(d); + } + } + else { + fintInfo = new FINT(fint); + fvalues = fintInfo.getFillValuesListAsDouble(fzoomLevel); + } - /** - * Gets the {@code HashMap } of the fill values and labels - * for a specific zoom level - * - * @param The - * zoom level - * @return The {@code HashMap } of the fill values and labels - * for the input zoom level if the FINT object for that zoom level - * exists or an empty map otherwise. - * */ - public Map getFintHashMap(ZoomLevel zLevel) { - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - Map thisMap = new HashMap ( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fintHashMap); - if (thisMap.size() > 0) { - return (thisMap); - } - } - return Collections.EMPTY_MAP; - } +// System.out.println("getFillValuesListAsDouble=="+fvalues); - /*** - * - * @param fintHashMap - */ - private void setFintHashMap(Map fintHashMap) { - this.fintHashMap = fintHashMap; - } + if (fvalues == null || fvalues.size() < 1 /*|| fintInfo.getFillInterval(fzoomLevel) == 0.0*/) { + fmin = fintInfo.getMinFillValue(fzoomLevel); + if (fmin == null || fmin.isNaN()) fmin = new Double(minValue); - /** - * Gets the {@code List } of the fill values for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the fill values for the input zoom - * level if the FINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getFillValuesListAsDouble(ZoomLevel zLevel) { - int listSize = this.listOfFINTObjects.size(); + fmax = fintInfo.getMaxFillValue(fzoomLevel); + if (fmax == null || fmax.isNaN()) fmax = new Double(maxValue); + + finterval = fintInfo.getFillInterval(fzoomLevel); + if (finterval == null || finterval.isNaN()) { + finterval = (fmax - fmin) / 10.0; + } - if (listSize >= zLevel.zoomLevel) { - List cList = new ArrayList ( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillValuesList); - if (cList.size() > 0) { - return (new ArrayList (cList)); - } - } - return Collections.EMPTY_LIST; - } + fintInfo = new FINT(finterval.toString()+"/"+fmin.toString()+"/"+fmax.toString()); + fvalues = fintInfo.getUniqueSortedFillValuesFromAllZoomLevels(); + } - /*** - * - * @param fillValuesList - */ - private void setFillValuesList(List fillValuesList) { - this.fillValuesList = new ArrayList (fillValuesList); - } + } + + return fvalues; + + } + /**@return boolean isFINTStringParsed*/ + public boolean isFINTStringParsed() { + return isFINTStringParsed; + } - /** An enumeration to define the 5 zoom levels allowed in FINT */ - public static enum ZoomLevel { - FIRST(1), SECOND(2), THIRD(3), FOURTH(4), FIFTH(5); - private int zoomLevel; + /** + * @return The portion of the parsed FINT string specific to a zoom level + * if the FINT object for that zoom level exists or an empty String otherwise. + * */ + public String getFINTString(ZoomLevel zLevel){ + String currentFINTString=""; + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentFINTString = new String ( this.listOfFINTObjects.get(zLevel.zoomLevel-1).fillIntervalString); + } + return currentFINTString; + } - private ZoomLevel(int index) { - this.zoomLevel = index; - } + /** + * @return The fill interval specific to a zoom level + * if the FINT object for that zoom level exists or NaN otherwise. + * */ + public Double getFillInterval(ZoomLevel zLevel) { + Double currentFillInterval = Double.NaN; + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentFillInterval = new Double ( this.listOfFINTObjects.get(zLevel.zoomLevel-1).fillInterval); + } + return currentFillInterval; + } + - public int getZoomLevelAsInt() { - return zoomLevel; - } - } + /** + * @return The minimum fill value specific to a zoom level + * if the FINT object for that zoom level exists or NaN otherwise. + * */ + public Double getMinFillValue(ZoomLevel zLevel) { + Double currentMinFillValue = Double.NaN; + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentMinFillValue = new Double ( this.listOfFINTObjects.get(zLevel.zoomLevel-1).minFillValue); + } + return currentMinFillValue; + } + + /** + * @return The maximum fill value specific to a zoom level + * if the FINT object for that zoom level exists or NaN otherwise. + * */ + public Double getMaxFillValue(ZoomLevel zLevel) { + Double currentMaxFillValue = Double.NaN; + int listSize = this.listOfFINTObjects.size(); + if(listSize >= zLevel.zoomLevel){ + currentMaxFillValue = new Double ( this.listOfFINTObjects.get(zLevel.zoomLevel-1).maxFillValue); + } + return currentMaxFillValue; + } - /** Zoom constant representing the first zoom level */ - public static final ZoomLevel FIRST_ZOOM_LEVEL = ZoomLevel.FIRST; - - /** Zoom constant representing the second zoom level */ - public static final ZoomLevel SECOND_ZOOM_LEVEL = ZoomLevel.SECOND; - - /** Zoom constant representing the third zoom level */ - public static final ZoomLevel THIRD_ZOOM_LEVEL = ZoomLevel.THIRD; - - /** Zoom constant representing the fourth zoom level */ - public static final ZoomLevel FOURTH_ZOOM_LEVEL = ZoomLevel.FOURTH; - - /** Zoom constant representing the fifth zoom level */ - public static final ZoomLevel FIFTH_ZOOM_LEVEL = ZoomLevel.FIFTH; - - /** - * Zoom constant representing the first zoom level as the minimum level of - * zoom - */ - public static final ZoomLevel MIN_ZOOM_LEVEL = ZoomLevel.FIRST; - - /** - * Zoom constant representing the fifth zoom levelas the maximum level of - * zooom - */ - public static final ZoomLevel MAX_ZOOM_LEVEL = ZoomLevel.FIFTH; - - /** - * Gets the {@code List } of the fill values for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the fill values for the input zoom - * level if the FINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getFillValuesListAsString(ZoomLevel zLevel) { - List cvList = Collections.EMPTY_LIST; - int listSize = this.listOfFINTObjects.size(); - if (listSize > 0 && listSize >= zLevel.zoomLevel) { - cvList = new ArrayList ( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillValuesListAsString); - } - return cvList; - } - - /** - * Gets the {@code List } of the fill labels for a specific zoom - * level - * - * @param the - * zoom level - * @return The {@code List } of the fill labels for the input zoom - * level if the FINT object for that zoom level exists or an empty - * list otherwise. - * */ - public List getFillLabelsForZoomLevel(ZoomLevel zLevel) { - List fintLabelList = new ArrayList (0); - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - fintLabelList = new ArrayList (this.listOfFINTObjects.get( - zLevel.zoomLevel - 1).getFillLabelList()); - } - return fintLabelList; - } - - /** - * The default constructor initializes the instance variables to their - * defaults - **/ - public FINT() { - setFillInterval(Double.NaN); - setMinFillValue(Double.NaN); - setMaxFillValue(Double.NaN); - isFINTStringParsed = false; - fintParser = new ContourStringParser(); - fintHashMap = new HashMap (0); - fillValuesList = new ArrayList (0); - fillValuesListAsString = new ArrayList (0); - fillLabelList = new ArrayList (0); - } - - // - // /** - // *The overloaded constructor accepts the FINT string as an input and calls - // the parse method of the - // *ContourStringParser on it. - // *If the parsing is successful, the fill interval, minimum fill level, - // maximum - // *fill level and the list of fill values will be populated by the - // corresponding parsed - // *data from the ContourStringParser object. - // * - // **/ - public FINT(String fillIntervalString) { - - /* Initialize instance variables */ - setFillInterval(Double.NaN); - setMinFillValue(Double.NaN); - setMaxFillValue(Double.NaN); - fillValuesList = new ArrayList (0); - fillValuesListAsString = new ArrayList (0); - fillLabelList = new ArrayList (0); - - setUserInputString(fillIntervalString); - fintParser = new ContourStringParser(); - parseAndSetAttributes(fillIntervalString); - - } - - public static List parseFINT(String fint, int zoomLevelIndex, - float minValue, float maxValue) { - - List fvalues = null; - Double fmin = new Double(minValue); - Double fmax = new Double(maxValue); - Double finterval = null; - - if (fint == null || fint.trim().length() < 1) { - finterval = (fmax - fmin) / 10.0; - FINT fintInfo = new FINT(finterval.toString() + "/" - + fmin.toString() + "/" + fmax.toString()); - fvalues = fintInfo.getUniqueSortedFillValuesFromAllZoomLevels(); - } else { - // Should be done inside FINT.java - gov.noaa.nws.ncep.gempak.parameters.infill.FINT.ZoomLevel fzoomLevel = FINT.FIRST_ZOOM_LEVEL; - switch (zoomLevelIndex) { - case 1: - fzoomLevel = FINT.FIRST_ZOOM_LEVEL; - break; - case 2: - fzoomLevel = FINT.SECOND_ZOOM_LEVEL; - break; - case 3: - fzoomLevel = FINT.THIRD_ZOOM_LEVEL; - break; - case 4: - fzoomLevel = FINT.FOURTH_ZOOM_LEVEL; - break; - case 5: - fzoomLevel = FINT.FIFTH_ZOOM_LEVEL; - break; - } - - FINT fintInfo = null; - - /* - * FINT sometimes does not work for fint sep by ';' - */ - if (fint.contains(";")) { - String[] strarray = fint.trim().split(";"); - fvalues = new ArrayList (strarray.length); - for (String s : strarray) { - Double d = new Double(Double.valueOf(s.trim())); - fvalues.add(d); - } - } else { - fintInfo = new FINT(fint); - fvalues = fintInfo.getFillValuesListAsDouble(fzoomLevel); - } - - // System.out.println("getFillValuesListAsDouble=="+fvalues); - - if (fvalues == null || fvalues.size() < 1 /* - * || - * fintInfo.getFillInterval - * (fzoomLevel) == 0.0 - */) { - fmin = fintInfo.getMinFillValue(fzoomLevel); - if (fmin == null || fmin.isNaN()) - fmin = new Double(minValue); - - fmax = fintInfo.getMaxFillValue(fzoomLevel); - if (fmax == null || fmax.isNaN()) - fmax = new Double(maxValue); - - finterval = fintInfo.getFillInterval(fzoomLevel); - if (finterval == null || finterval.isNaN()) { - finterval = (fmax - fmin) / 10.0; - } - - fintInfo = new FINT(finterval.toString() + "/" - + fmin.toString() + "/" + fmax.toString()); - fvalues = fintInfo.getUniqueSortedFillValuesFromAllZoomLevels(); - } - - } - - return fvalues; - - } - - /** @return boolean isFINTStringParsed */ - public boolean isFINTStringParsed() { - return isFINTStringParsed; - } - - /** - * @return The portion of the parsed FINT string specific to a zoom level if - * the FINT object for that zoom level exists or an empty String - * otherwise. - * */ - public String getFINTString(ZoomLevel zLevel) { - String currentFINTString = ""; - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentFINTString = new String( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillIntervalString); - } - return currentFINTString; - } - - /** - * @return The fill interval specific to a zoom level if the FINT object for - * that zoom level exists or NaN otherwise. - * */ - public Double getFillInterval(ZoomLevel zLevel) { - Double currentFillInterval = Double.NaN; - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentFillInterval = new Double( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).fillInterval); - } - return currentFillInterval; - } - - /** - * @return The minimum fill value specific to a zoom level if the FINT - * object for that zoom level exists or NaN otherwise. - * */ - public Double getMinFillValue(ZoomLevel zLevel) { - Double currentMinFillValue = Double.NaN; - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentMinFillValue = new Double( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).minFillValue); - } - return currentMinFillValue; - } - - /** - * @return The maximum fill value specific to a zoom level if the FINT - * object for that zoom level exists or NaN otherwise. - * */ - public Double getMaxFillValue(ZoomLevel zLevel) { - Double currentMaxFillValue = Double.NaN; - int listSize = this.listOfFINTObjects.size(); - if (listSize >= zLevel.zoomLevel) { - currentMaxFillValue = new Double( - this.listOfFINTObjects.get(zLevel.zoomLevel - 1).maxFillValue); - } - return currentMaxFillValue; - } - - /*** - * - * @return a list String objects representing the unique fill values from - * all zoom levels - */ - public List getUniqueSortedFillValuesFromAllZoomLevelsAsString() { - List sortedKeySet = getUniqueSortedFillValuesFromAllZoomLevels(); - List fillValList = new ArrayList (0); - if (sortedKeySet.size() > 0) { - for (Double fillValue : sortedKeySet) { - fillValList.add(fillValue.toString()); - } - } - return fillValList; - } - - /*** - * - * @return a list of Double objects representing the unique fill values from - * all zoom levels - */ - public List getUniqueSortedFillValuesFromAllZoomLevels() { - Set setOfUnqiueFillValues = new HashSet (0); - List sortedList = new ArrayList (0); - - int length = this.listOfFINTObjects.size(); - for (int index = 0; index < length; index++) { - FINT currentFINTObj = this.listOfFINTObjects.get(index); - setOfUnqiueFillValues.addAll(currentFINTObj.fillValuesList); + /*** + * + * @return a list String objects representing the unique fill values from all zoom levels + */ + public List getUniqueSortedFillValuesFromAllZoomLevelsAsString(){ + List sortedKeySet = getUniqueSortedFillValuesFromAllZoomLevels(); + List fillValList = new ArrayList (0); + if(sortedKeySet.size() > 0){ + for(Double fillValue : sortedKeySet){ + fillValList.add(fillValue.toString()); + } + } + return fillValList; + } + +/*** + * + * @return a list of Double objects representing the unique fill values from all zoom levels + */ + public List getUniqueSortedFillValuesFromAllZoomLevels(){ + Set setOfUnqiueFillValues = new HashSet (0); + List sortedList = new ArrayList (0); + + int length = this.listOfFINTObjects.size(); + for (int index = 0; index < length; index++) { + FINT currentFINTObj = this.listOfFINTObjects.get(index); + setOfUnqiueFillValues.addAll(currentFINTObj.fillValuesList); sortedList = new ArrayList (setOfUnqiueFillValues); - Collections.sort(sortedList); - } - return sortedList; - } + Collections.sort(sortedList); + } + return sortedList; + } - private void setFillValuesListAsString(List fillValuesListAsString) { - this.fillValuesListAsString = fillValuesListAsString; - } + private void setFillValuesListAsString(List fillValuesListAsString) { + this.fillValuesListAsString = fillValuesListAsString; + } + + /**@param boolean isFINTStringParsed*/ + private void setFINTStringParsed(boolean isFINTStringParsed) { + this.isFINTStringParsed = isFINTStringParsed; + } + + /**@param String fintString*/ + private void setFINTString(String fintString){ + fillIntervalString = new String(fintString); + } - /** @param boolean isFINTStringParsed */ - private void setFINTStringParsed(boolean isFINTStringParsed) { - this.isFINTStringParsed = isFINTStringParsed; - } + /**@param Double fillInterval*/ + private void setFillInterval(Double fillInterval) { + this.fillInterval = new Double(fillInterval); + } - /** - * @param String - * fintString - */ - private void setFINTString(String fintString) { - fillIntervalString = new String(fintString); - } + /**@param Double minFillValue*/ + private void setMinFillValue(Double minFillValue) { + this.minFillValue = new Double(minFillValue); + } + + /**@param Double maxFillValue */ + private void setMaxFillValue(Double maxFillValue) { + this.maxFillValue = new Double (maxFillValue); + } - /** - * @param Double - * fillInterval - */ - private void setFillInterval(Double fillInterval) { - this.fillInterval = new Double(fillInterval); - } + /*** + * + * @param inputStr + */ + private void parseAndSetAttributes(String inputStr){ + boolean isParsed = false; + if (inputStr != null) { + String fillLevelStringsArray[] = inputStr.split(">"); + int lengthOfFillLevelStringsArray = fillLevelStringsArray.length; + if(lengthOfFillLevelStringsArray > FINT.MAX_ZOOM_LEVEL.zoomLevel){ + lengthOfFillLevelStringsArray = FINT.MAX_ZOOM_LEVEL.zoomLevel; + } + + listOfFINTObjects = new ArrayList (lengthOfFillLevelStringsArray); + + for (int index = 0; index < lengthOfFillLevelStringsArray; index++) { - /** - * @param Double - * minFillValue - */ - private void setMinFillValue(Double minFillValue) { - this.minFillValue = new Double(minFillValue); - } +// /*Invoke the parse method of ContourStringParser*/ + fintParser.parse(fillLevelStringsArray[index]); + + //create the FINT object for the current zoom level + FINT currentFINTObj = new FINT(); + currentFINTObj.setFINTStringParsed(fintParser.isContourStringParsed()); - /** - * @param Double - * maxFillValue - */ - private void setMaxFillValue(Double maxFillValue) { - this.maxFillValue = new Double(maxFillValue); - } + /*If the parse operation was successful, extract the numeric + *data and set the corresponding instance variables of currentFINTObj*/ - /*** - * - * @param inputStr - */ - private void parseAndSetAttributes(String inputStr) { - boolean isParsed = false; - if (inputStr != null) { - String fillLevelStringsArray[] = inputStr.split(">"); - int lengthOfFillLevelStringsArray = fillLevelStringsArray.length; - if (lengthOfFillLevelStringsArray > FINT.MAX_ZOOM_LEVEL.zoomLevel) { - lengthOfFillLevelStringsArray = FINT.MAX_ZOOM_LEVEL.zoomLevel; - } - - listOfFINTObjects = new ArrayList ( - lengthOfFillLevelStringsArray); - - for (int index = 0; index < lengthOfFillLevelStringsArray; index++) { - - // /*Invoke the parse method of ContourStringParser*/ - fintParser.parse(fillLevelStringsArray[index]); - - // create the FINT object for the current zoom level - FINT currentFINTObj = new FINT(); - currentFINTObj.setFINTStringParsed(fintParser - .isContourStringParsed()); - - /* - * If the parse operation was successful, extract the numeric - * data and set the corresponding instance variables of - * currentFINTObj - */ - - if (currentFINTObj.isFINTStringParsed()) { - currentFINTObj.setFINTString(fillLevelStringsArray[index]); - currentFINTObj.setFillInterval(fintParser - .getContourInterval()); - currentFINTObj.setMinFillValue(fintParser - .getMinContourLevel()); - currentFINTObj.setMaxFillValue(fintParser - .getMaxContourLevel()); - currentFINTObj.setFillValuesList(fintParser - .getContourValuesList()); - currentFINTObj.setFintHashMap(fintParser - .getLabeledContourValuesHashMap()); - Set tempKeySet = new LinkedHashSet ( - currentFINTObj.fintHashMap.keySet()); - currentFINTObj.setFillValuesList(new ArrayList ( - tempKeySet)); - for (Double fillValue : tempKeySet) { - currentFINTObj.fillValuesListAsString.add(fillValue - .toString()); - } - currentFINTObj.fillLabelList = new ArrayList ( - new LinkedHashSet ( - currentFINTObj.fintHashMap.values())); - } - - if (index == 0) { - isParsed = currentFINTObj.isFINTStringParsed(); - } else { - isParsed = isParsed & currentFINTObj.isFINTStringParsed(); - } - - // Sets the status of the parse operations across all zoom - // levels (i.e. for all FINT objects in the list) - this.setFINTStringParsed(isParsed); - - // finally add currentFINTObj to the list of FINT objects - listOfFINTObjects.add(currentFINTObj); - } - } - } + if (currentFINTObj.isFINTStringParsed()) { + currentFINTObj.setFINTString(fillLevelStringsArray[index]); + currentFINTObj.setFillInterval(fintParser.getContourInterval()); + currentFINTObj.setMinFillValue(fintParser.getMinContourLevel()); + currentFINTObj.setMaxFillValue(fintParser.getMaxContourLevel()); + currentFINTObj.setFillValuesList(fintParser.getContourValuesList()); + currentFINTObj.setFintHashMap(fintParser.getLabeledContourValuesHashMap()); + Set tempKeySet = new LinkedHashSet (currentFINTObj.fintHashMap.keySet()); + currentFINTObj.setFillValuesList( new ArrayList (tempKeySet)); + for(Double fillValue : tempKeySet){ + currentFINTObj.fillValuesListAsString.add(fillValue.toString()); + } + currentFINTObj.fillLabelList = new ArrayList ( new LinkedHashSet (currentFINTObj.fintHashMap.values())); + } + + if(index == 0){ + isParsed = currentFINTObj.isFINTStringParsed(); + }else{ + isParsed = isParsed & currentFINTObj.isFINTStringParsed(); + } + + //Sets the status of the parse operations across all zoom levels (i.e. for all FINT objects in the list) + this.setFINTStringParsed(isParsed); + //finally add currentFINTObj to the list of FINT objects + listOfFINTObjects.add(currentFINTObj); + } + } + } + + + } diff --git a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marker/MARKER.java b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marker/MARKER.java index 0735472176..913d2d96ce 100644 --- a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marker/MARKER.java +++ b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marker/MARKER.java @@ -1,9 +1,11 @@ package gov.noaa.nws.ncep.gempak.parameters.marker; -import gov.noaa.nws.ncep.viz.localization.impl.LocalizationManager; +import gov.noaa.nws.ncep.viz.localization.NcPathManager; +import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; import gov.noaa.nws.ncep.viz.common.ui.color.GempakColor; import gov.noaa.nws.ncep.viz.common.ui.GempakMarkerType; +import java.io.File; import java.io.IOException; import java.util.LinkedHashMap; @@ -74,10 +76,12 @@ public class MARKER { if (markerAttributeString == null || markerAttributeString.trim().length() <= 0) return; LinkedHashMap markerTypeMaps = null; - String markerTypeTable = LocalizationManager.getInstance().getFilename("gempakMarkerType"); + File markerTypeTable = + NcPathManager.getInstance().getStaticFile( + NcPathConstants.GEMPAK_MARKER_TYPE ); try { - markerTypeMaps = GempakMarkerType.loadMarkerTypes(markerTypeTable); + markerTypeMaps = GempakMarkerType.loadMarkerTypes(markerTypeTable.getAbsolutePath() ); } catch (IOException e1) { // TODO Auto-generated catch block e1.printStackTrace(); diff --git a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marshaller/garea/GraphicsAreaCoordinates.java b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marshaller/garea/GraphicsAreaCoordinates.java index e57c84182f..13d26a91a6 100644 --- a/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marshaller/garea/GraphicsAreaCoordinates.java +++ b/ncep/gov.noaa.nws.ncep.gempak.parameters/src/gov/noaa/nws/ncep/gempak/parameters/marshaller/garea/GraphicsAreaCoordinates.java @@ -1,12 +1,10 @@ package gov.noaa.nws.ncep.gempak.parameters.marshaller.garea; -import gov.noaa.nws.ncep.gempak.parameters.marshaller.garea.station.Station; -import gov.noaa.nws.ncep.gempak.parameters.marshaller.garea.station.StationDataReader; - import java.util.List; import java.util.Locale; import java.util.regex.Pattern; +import gov.noaa.nws.ncep.gempak.parameters.marshaller.garea.station.*; /** * * @@ -16,1122 +14,1035 @@ import java.util.regex.Pattern; * ------------ ---------- ----------- -------------------------- * 25-Sep-2009 171 Archana Initial Version * - *- * + *geographicalDataList = geogDataReader - .getGeographicalData(); - int found = 0; - for (GeographicalData currentGeogData : geographicalDataList) { - - if (currentGeogData.getGeogCode().equals(geogCode)) { - geogAreaCode = currentGeogData.getGeogCode(); - centerLat = currentGeogData.getCenterLat(); - centerLon = currentGeogData.getCenterLon(); - lowerLeftLat = currentGeogData.getLowerLeftLat(); - lowerLeftLon = currentGeogData.getLowerLeftLon(); - upperRightLat = currentGeogData.getUpperRightLat(); - upperRightLon = currentGeogData.getUpperRightLon(); - mapProjectionStr = currentGeogData.getMapProjectionString(); - found = 3; - - // geogData = currentGeogData; - break; - } - } - return found; - } - - /** - * The function searchStationTable accepts as input a string 'code_str'that - * represents a code in the station table and if the input string matches a - * code for the geographical area in the file sfstns.xml, the corresponding - * Latitude/Longitude values of the station are retrieved from the file. - * - * @param code_str - * @return found - * @throws Exception - */ - - public int searchStationTable(String geogCodeStr) throws Exception { - // public Station searchStationTable(String geogCodeStr) throws - // Exception{ - int found = 0; - // Station station = null; - StationDataReader stnDataReader = new StationDataReader(stationFileName); - List stationList = stnDataReader.getStationData(); - for (Station currentStation : stationList) { - - if (currentStation.getStid().equals(geogCodeStr)) { - station_code = currentStation.getStid(); - - // The center_lat and center_lon denote the Latitude/Longitude - // values of a point location - the station. - centerLat = currentStation.getLatitude(); - centerLon = currentStation.getLongitude(); - - /* - * At this time, we use a hard coded value deltaLat = 4.0 and - * deltaLon = 7.0 temporarily to calculate lower left and upper - * right lat/lon values. The two hard coded values taken from - * lcabnd.f. I am not clear if the values are used correctly. M. - * Gao comments - */ - calculateLLURLatLonFromCDLatLon(centerLat, centerLon, - (float) 4.0, (float) 7.0); - found = 4; - // station = currentStation; - } - } - - return found; - // return station; - } - - /** - * The function computeZoomMultiplier() is a private function to compute the - * zoom multiplier. - * - * @param zoom_flag - * @return zm - */ - - private double computeZoomMultiplier(int zoomFlag) { - double zm = 0.0; - if (zoomFlag > 0) { - zm = (1 / Math.pow(2, zoomFlag)); - } else { - zm = Math.pow(2, zoomFlag * (-1)); - } - return zm; - } - - /** - * This function validateInputString() parses the input string 's' using the - * ';' as a delimiter and extracts 4 latitude/longitude values It then - * proceeds to check that each extracted token contains only a valid numeric - * value for the latitude(s) and the longitude(s). - * - * @param s - * @return flag - */ - private boolean validateLatLonInputString(String latLonStr) { - boolean isValid = false; - int i = 0; - - if (isStringEmpty(latLonStr)) - return isValid; - - String latLonTokens[] = latLonStr.split(";"); - - /* - * In the case users type in more values, e.g. latLonTokens.length > 4 - * We just simply ignore the rest values instead of getting an error - * This way our code is more use friendly - */ - if (latLonTokens.length < 4) { - errorMessage = LESS_NUM_ARGS; - errorMsgSet = true; - return isValid; - } - - for (i = 0; i < 4; i++) { - isValid = Pattern.matches(VALID_NUMBER, latLonTokens[i]); - if (!isValid) { - errorMessage = INVALID_LAT_LON_VALUES; - errorMsgSet = true; - break; - } - } - - return isValid; - } - - /** - * a helper method to check if a string is empty - */ - private boolean isStringEmpty(String str) { - boolean isValid = false; - if (str == null || str.trim().length() == 0) - isValid = true; - return isValid; - } - - /** - * The function validateLatLonValues() checks the accepted range of values - * for the input latitude/longitude coordinates. In case there is any - * discrepancy, the function sets an error message string to indicate the - * nature of the problem. Latitudes can range only from -90.00 to 90.00 - * Longitude values can range only from -180.00 to 360.00 Delta - * latitude/longitude values cannot be negative. - * - * @param g_area_typ - * @param lat1 - * @param lon1 - * @param lat2 - * @param lon2 - * @return flag - */ - - // private boolean validateLatLonValues(int g_area_typ, Float lat1, Float - // lon1, Float lat2, Float lon2){ - // boolean flag = false; - // - // if (g_area_typ == 1) { - // if(lat1 >= -90.0f && lat1 <= 90.0){ - // if(lon1 >= -180.0f && lon1 <= 360.0f){ - // - // if(lat2 >= 0){ - // if(((lat1 - lat2 >= -90) && (lat1 + lat2) <=90)){ - // if(lon2 >= 0) { - // if ((lon1 - lon2 >= -180) && (lon1 + lon2) <=360){ - // flag = true; - // errorMessage = "Valid String"; - // errorMsgSet = true; - // } - // else{ - // flag = false; - // errorMessage = INVALID_CENTER_DELTA_LON_VALUES; - // errorMsgSet = true; - // centerLat = -1000.0f; - // centerLon = -1000.0f; - // deltaLat = -1000.0f; - // deltaLon = -1000.0f; - // } - // } - // else{ - // errorMessage = NEGATIVE_DELTA_LON; - // errorMsgSet = true; - // deltaLon = -1000.0f; - // flag = false; - // } - // } - // else{ - // flag = false; - // errorMessage = INVALID_CENTER_DELTA_LAT_VALUES; - // errorMsgSet = true; - // centerLat = -1000.0f; - // centerLon = -1000.0f; - // deltaLat = -1000.0f; - // deltaLon = -1000.0f; - // } - // } - // else{ - // errorMessage = NEGATIVE_DELTA_LAT; - // errorMsgSet = true; - // deltaLat = -1000.0f; - // flag = false; - // } - // - // } - // else{ - // errorMessage = INVALID_CENTER_LON; - // errorMsgSet = true; - // centerLon = -1000.0f; - // flag = false; - // } - // } - // else{ - // errorMessage = INVALID_CENTER_LAT; - // errorMsgSet = true; - // centerLat = -1000.0f; - // flag = false; - // } - // } - // - // if (g_area_typ == 2) { - // if(lat1 >= -90.0f && lat1 <= 90.0){ - // if(lon1 >= -180.0f && lon1 <= 360.0f){ - // if(lat2 >= -90.0f && lat2 <= 90.0){ - // if(lon2 >= -180.0f && lon2 <= 360.0f){ - // - // if(lat1 > lat2){ - // this.errorMessage = LL_LAT_GREATER_THAN_UR_LAT; - // errorMsgSet = true; - // this.lowerLeftLat = -1000.0f; - // this.upperRightLat = -1000.0f; - // flag = false; - // } - // - // else if(lon1 > lon2){ - // - // this.errorMessage = LL_LON_GREATER_THAN_UR_LON; - // errorMsgSet = true; - // this.lowerLeftLon = -1000.0f; - // this.upperRightLon = -1000.0f; - // flag = false; - // } - // - // else{ - // flag = true; - // errorMessage = "Valid String"; - // errorMsgSet = true; - // } - // - // } - // else{ - // this.errorMessage = INVALID_UR_LON; - // errorMsgSet = true; - // this.upperRightLon = -1000.0f; - // flag = false; - // } - // } - // else{ - // this.errorMessage = INVALID_UR_LAT; - // errorMsgSet = true; - // this.upperRightLat = -1000.0f; - // flag = false; - // } - // } - // else{ - // this.errorMessage = INVALID_LL_LON; - // errorMsgSet = true; - // this.lowerLeftLon = -1000.0f; - // flag = false; - // } - // } - // else{ - // this.errorMessage = INVALID_LL_LAT; - // errorMsgSet = true; - // this.lowerLeftLat = -1000.0f; - // flag = false; - // - // } - // - // } - // - // return flag; - // } - private boolean validateCenterDeltaLatLonValues(double _centerLat, - double _centerLon, double _deltalat, double _deltaLon) { - boolean flag = false; - - if (_centerLat >= -90.0f && _centerLat <= 90.0) { - if (_centerLon >= -180.0f && _centerLon <= 360.0f) { - - if (_deltalat >= 0) { - if (((_centerLat - _deltalat >= -90) && (_centerLat + _deltalat) <= 90)) { - if (_deltaLon >= 0) { - if ((_centerLon - _deltaLon >= -180) - && (_centerLon + _deltaLon) <= 360) { - flag = true; - errorMessage = "Valid String"; - errorMsgSet = true; - } else { - flag = false; - errorMessage = INVALID_CENTER_DELTA_LON_VALUES; - errorMsgSet = true; - centerLat = -1000.0f; - centerLon = -1000.0f; - deltaLat = -1000.0f; - deltaLon = -1000.0f; - } - } else { - errorMessage = NEGATIVE_DELTA_LON; - errorMsgSet = true; - deltaLon = -1000.0f; - flag = false; - } - } else { - flag = false; - errorMessage = INVALID_CENTER_DELTA_LAT_VALUES; - errorMsgSet = true; - centerLat = -1000.0f; - centerLon = -1000.0f; - deltaLat = -1000.0f; - deltaLon = -1000.0f; - } - } else { - errorMessage = NEGATIVE_DELTA_LAT; - errorMsgSet = true; - deltaLat = -1000.0f; - flag = false; - } - - } else { - errorMessage = INVALID_CENTER_LON; - errorMsgSet = true; - centerLon = -1000.0f; - flag = false; - } - } else { - errorMessage = INVALID_CENTER_LAT; - errorMsgSet = true; - centerLat = -1000.0f; - flag = false; - } - - return flag; - } - - private boolean validateLowerUpperLatLonValues(double _lowerLat, - double _lowerLon, double _upperLat, double _upperLon) { - boolean flag = false; - - if (_lowerLat >= -90.0f && _lowerLat <= 90.0) { - if (_lowerLon >= -180.0f && _lowerLon <= 360.0f) { - if (_upperLat >= -90.0f && _upperLat <= 90.0) { - if (_upperLon >= -180.0f && _upperLon <= 360.0f) { - - if (_lowerLat > _upperLat) { - this.errorMessage = LL_LAT_GREATER_THAN_UR_LAT; - errorMsgSet = true; - this.lowerLeftLat = -1000.0f; - this.upperRightLat = -1000.0f; - flag = false; - } - - else if (((_lowerLon <= 0 && _upperLon <= 0) || (_lowerLon >= 0 && _upperLon >= 0)) - && _lowerLon > _upperLon) { - - this.errorMessage = LL_LON_GREATER_THAN_UR_LON; - errorMsgSet = true; - this.lowerLeftLon = -1000.0f; - this.upperRightLon = -1000.0f; - flag = false; - } else if ((_lowerLon > 0 && _upperLon < 0) - && _lowerLon < _upperLon) { - this.errorMessage = LL_LON_GREATER_THAN_UR_LON; - errorMsgSet = true; - this.lowerLeftLon = -1000.0f; - this.upperRightLon = -1000.0f; - flag = false; - } else if (isLowerLeftPointSameAsUpperRightPoint( - _lowerLat, _lowerLon, _upperLat, _upperLon)) { - this.errorMessage = "The lower left coordinate point is the same as the upper right coordinate point"; - errorMsgSet = true; - this.lowerLeftLon = -1000.0f; - this.upperRightLon = -1000.0f; - flag = false; - } else { - flag = true; - errorMessage = "Valid String"; - errorMsgSet = true; - } - - } else { - this.errorMessage = INVALID_UR_LON; - errorMsgSet = true; - this.upperRightLon = -1000.0f; - flag = false; - } - } else { - this.errorMessage = INVALID_UR_LAT; - errorMsgSet = true; - this.upperRightLat = -1000.0f; - flag = false; - } - } else { - this.errorMessage = INVALID_LL_LON; - errorMsgSet = true; - this.lowerLeftLon = -1000.0f; - flag = false; - } - } else { - this.errorMessage = INVALID_LL_LAT; - errorMsgSet = true; - this.lowerLeftLat = -1000.0f; - flag = false; - - } - - return flag; - } - - private boolean isLowerLeftPointSameAsUpperRightPoint(double _lowerLat, - double _lowerLon, double _upperLat, double _upperLon) { - boolean result = false; - if (_lowerLat == _upperLat && _lowerLon == _upperLon) - result = true; - else if (isPole(_lowerLat, _upperLat)) { - if ((_lowerLon == 180 && _upperLon == -180) - || (_lowerLon == 1180 && _upperLon == 180)) - result = true; - } - - return result; - } - - private boolean isPole(double _lowerLat, double _upperLat) { - boolean result = false; - if (_lowerLat == 90 && _upperLat == 90) - result = true; - return result; - } - - /** - * The function getGeogAreaCode() returns the value of the geographical area - * code, which is retrieved only if the boolean flag graphics_area_str_valid - * is true and if the flag 'iartyp' is set to 3 (indicating that a geog code - * was entered) - * - * @return geog_area_code - */ - - public String getGeogAreaCode() { - if (this.iartyp == 3 && this.isGraphicsAreaStrValid == true) { - return this.geogAreaCode; - } - return null; - // else{ - // return this.errorMessage; - // } - - } - - /** - * The function getMapProjectionString() retrieves the map projection - * string, only if the boolean flag graphics_area_str_valid is true and if - * the flag 'iartyp' is set to 3 (indicating that a geog code was entered) - * - * @return map_proj_str - */ - - public String getMapProjectionString() { - if (this.iartyp == 3 && this.isGraphicsAreaStrValid == true) { - return this.mapProjectionStr.trim(); - } - return null; - // else{ - // return this.errorMessage; - // } - } - - /** - * The function getStationCode() returns the value of the station code, - * which is retrieved only if the boolean flag graphics_area_str_valid is - * true and if the flag 'iartyp' is set to 4 (indicating that a station code - * was entered) - * - * @return station_code - */ - - public String getStationCode() { - if (this.iartyp == 4 && this.isGraphicsAreaStrValid == true) { - return this.station_code; - } - - else { - return this.errorMessage; - } - - } - - /** - * The function isGraphicsAreaStringValid() returns the boolean data - * 'graphics_area_str_valid'. - * - * @return graphics_area_str_valid - */ - - public boolean isGraphicsAreaStringValid() { - return this.isGraphicsAreaStrValid; - } - - /** - * The function getErrorCode() returns the string 'error_message' that - * contains the error message. - * - * @return error_message - */ - - public String getErrorCode() { - return this.errorMessage; - } - - /** - * The function getGAREACoordinates() retrieves the Lower left/ Upper Right - * latitude/longitude values and the Center/Delta latitude/longitude values - * in a Float[] data called lat_lon_data. - * - * @return lat_lon_data - */ - - public double[] getGAREACoordinates() { - - double[] lat_lon_data = new double[6]; - lat_lon_data[0] = lowerLeftLat; - lat_lon_data[1] = lowerLeftLon; - lat_lon_data[2] = upperRightLat; - lat_lon_data[3] = upperRightLon; - lat_lon_data[4] = centerLat; - lat_lon_data[5] = centerLon; - - return lat_lon_data; - } - - /** - * The private function setLatLonValues() accepts as input a string - * containing the latitude/longitude values and a number that indicates - * whether the latitude/longitude values represent the Lower left/ Upper - * Right latitude/longitude values or the Center/Delta latitude/longitude - * values. Depending on the value of this number, it the splits the input - * string into 4 component string, extracts the floating point value and - * stores each value correspondingly. - * - * @param s - * @param i - */ - - // private void setLatLonValues(String s, int i){ - // String lat_lon_tokens[] = s.split(";"); - // if(i == 1){ - // centerLat = Float.valueOf(lat_lon_tokens[0]).floatValue(); - // centerLon = Float.valueOf(lat_lon_tokens[1]).floatValue(); - // deltaLat = Float.valueOf(lat_lon_tokens[2]).floatValue(); - // deltaLon = Float.valueOf(lat_lon_tokens[3]).floatValue(); - // } - // if(i==2){ - // lowerLeftLat = Float.valueOf(lat_lon_tokens[0]).floatValue(); - // lowerLeftLon = Float.valueOf(lat_lon_tokens[1]).floatValue(); - // upperRightLat = Float.valueOf(lat_lon_tokens[2]).floatValue(); - // upperRightLon = Float.valueOf(lat_lon_tokens[3]).floatValue(); - // } - // } - private void setCenterDeltaLatLonValues(String latLonString) { - String latLonTokens[] = latLonString.split(";"); - centerLat = Double.valueOf(latLonTokens[0]).doubleValue(); - centerLon = convertLongitudeValue(Double.valueOf(latLonTokens[1]) - .doubleValue()); - deltaLat = Double.valueOf(latLonTokens[2]).doubleValue(); - deltaLon = convertLongitudeValue(Double.valueOf(latLonTokens[3]) - .doubleValue()); - } - - private void setLowerUpperLatLonValues(String latLonString) { - String latLonTokens[] = latLonString.split(";"); - lowerLeftLat = Double.valueOf(latLonTokens[0]).doubleValue(); - lowerLeftLon = convertLongitudeValue(Double.valueOf(latLonTokens[1]) - .doubleValue()); - upperRightLat = Double.valueOf(latLonTokens[2]).doubleValue(); - upperRightLon = convertLongitudeValue(Double.valueOf(latLonTokens[3]) - .doubleValue()); - } - - /** - * The private function computeLLURLatLonFromCDLatLon() calculates the Lower - * left/ Upper Right latitude/longitude values from the given Center/Delta - * latitude/longitude values - */ - - private void calculateLLURLatLonFromCDLatLon(double centerLat, - double centerLon, double deltaLat, double deltaLon) { - lowerLeftLat = centerLat - deltaLat; - lowerLeftLon = centerLon - deltaLon; - upperRightLat = centerLat + deltaLat; - upperRightLon = centerLon + deltaLon; - } + protected double lowerLeftLat, lowerLeftLon, upperRightLat, upperRightLon; + protected double centerLat, centerLon, deltaLat, deltaLon; + + private double defaultAndle1, defaultAngle2; + + protected String geogAreaCode; + protected String station_code; + protected String mapProjectionStr; + protected String errorMessage; + protected boolean isGraphicsAreaStrValid; + public boolean isGraphicsAreaStrValid() { + return isGraphicsAreaStrValid; + } + + public void setGraphicsAreaStrValid(boolean isGraphicsAreaStrValid) { + this.isGraphicsAreaStrValid = isGraphicsAreaStrValid; + } + + protected boolean errorMsgSet; + + private String graphicsAreaString; + private String geogFileName = "res/geog.xml"; + private String stationFileName = "res/sfstns.xml"; + + /* + * All getters go below + */ + public String getGraphicsAreaString() { + return graphicsAreaString; + } + + public double getLowerLeftLat() { + return lowerLeftLat; + } + + public double getLowerLeftLon() { + return lowerLeftLon; + } + + public double getUpperRightLat() { + return upperRightLat; + } + + public double getUpperRightLon() { + return upperRightLon; + } + + public double getCenterLat() { + return centerLat; + } + + public double getCenterLon() { + return centerLon; + } + + public double getDefaultAngle1UsingGempakProjectionName(String gempakProjectionName) { + if("CED".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 0.0; + else if("MCD".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 0.0; + else if("MER".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 0.0; + else if("NPS".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 90.0; + else if("LCC".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 30.0; + else if("SCC".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = -30.0; + else if("SPS".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = -90.0; + else if("UTM".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = getDefaultAngle2UsingGempakProjectionName(gempakProjectionName); + else if("NOR".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 90.0; + else if("SOR".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = -90.0; + else if("ORT".equalsIgnoreCase(gempakProjectionName)) + defaultAndle1 = 0.0; + + + return defaultAndle1; + } + + public double getDefaultAngle2UsingGempakProjectionName(String gempakProjectionName) { + if("UTM".equalsIgnoreCase(gempakProjectionName)) { + defaultAngle2 = 0.0; + } else { + defaultAngle2 = calculateAverageLongitude(lowerLeftLon, upperRightLon); + } + return defaultAngle2; + } + + public double getDefaultAngle1UsingGeotoolsProjectionName(String geotoolsProjectionName) { + if("Equidistant_Cylindrical".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Polar_Stereographic".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Mercator_1SP".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Orthographic".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Transverse_Mercator".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Lambert_Azimuthal_Equal_Area".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 0.0; + else if("Lambert_Conformal_Conic_2SP".equalsIgnoreCase(geotoolsProjectionName)) + defaultAndle1 = 30.0; + + return defaultAndle1; + } + + public double getDefaultAngle2UsingGeotoolsProjectionName() { + defaultAngle2 = calculateAverageLongitude(lowerLeftLon, upperRightLon); + return defaultAngle2; + } + + public void setGeogFileName(String geogFileName) { + this.geogFileName = geogFileName; + } + + public void setStationFileName(String stationFileName) { + this.stationFileName = stationFileName; + } + + //********************************************************************************************************* + /* These variables retain the name of their Fortran counterparts in the file lcabnd.f + They are used in the calculations of the zoom factor to update the Latitude/Longitude values, + when a zoom-in/zoom-out option is specified along with either the area code from the geog table or the + station code from the station table.*/ + + protected double zoomul=0; + protected int izoom=0, iartyp=-1; + protected float zmofst=0; + + //********************************************************************************************************* + protected final String VALID_NUMBER = "-?\\d{0,3}\\.?\\d*"; + protected final String EXTRA_ARGS = "Too many arguments entered"; + protected final String LESS_NUM_ARGS = "Too few arguments entered"; + protected final String INVALID_LAT_LON_VALUES = "Invalid lat/lon values entered"; + protected final String INVALID_CENTER_DELTA_LON_VALUES = "center_lon - delta_lon should be >= -180.0 and center_lon + delta_lon should be <=360.0"; + protected final String NEGATIVE_DELTA_LON = "Delta Longitude values cannot be negative"; + protected final String INVALID_CENTER_DELTA_LAT_VALUES = "center_lat - delta_lat should be >= -90.0 and center_lat + delta_lat should be <=90.0"; + protected final String NEGATIVE_DELTA_LAT = "Delta Latitude values cannot be negative"; + protected final String INVALID_CENTER_LON = "Center Longtude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; + protected final String INVALID_CENTER_LAT ="Center Latitude can only take values between -90.00 and 90.00"; + protected final String LL_LAT_GREATER_THAN_UR_LAT ="Lower left latitude must be less than or equal to upper right latitude"; + protected final String LL_LON_GREATER_THAN_UR_LON = "Lower left longitude must be less than or equal to upper right longitude"; + protected final String INVALID_UR_LON = "Upper Right Longitude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; + protected final String INVALID_UR_LAT = "Upper Right Latitude can only take values between -90.00 and 90.00"; + protected final String INVALID_LL_LON = "Lower Left Longitude can only take values between -180.00 to 180.00 or 0.00 to 360.00"; + protected final String INVALID_LL_LAT = "Lower Left Latitude can only take values between -90.00 and 90.00"; + protected final String INVALID_STR = "Invalid String Format"; + + /** + * Overloaded constructor takes the GAREA string as input. + * @param s + */ + public GraphicsAreaCoordinates(String str) { + graphicsAreaString = str; + + lowerLeftLat = -1000.0f; + lowerLeftLon = -1000.0f; + upperRightLat = -1000.0f; + upperRightLon = -1000.0f; + centerLat = -1000.0f; + centerLon = -1000.0f; + deltaLat = -1000.0f; + deltaLon = -1000.0f; + errorMsgSet = false; +// isGraphicsAreaStrValid = parseGraphicsAreaString(str); + } + + /** + * a helper method to indicate if the graphic area string starts + * with a valid Geog name in Geog Table + */ + public boolean isValidGeogName() { + boolean isValid = false; + if(iartyp == 3 && isGraphicsAreaStrValid) + isValid = true; + return isValid; + } + + /** + * a helper method to indicate if the graphic area string starts + * with a valid station name in the Station table + */ + public boolean isValidStationName() { + boolean isValid = false; + if(iartyp == 4 && isGraphicsAreaStrValid) + isValid = true; + return isValid; + } + + /** + * a helper method to indicate if the graphic area string contains + * valid center and delta lat/lon values + */ + public boolean isValidCenterDeltaLatLonValues() { + boolean isValid = false; + if(isGraphicsAreaStrValid && + !isStringEmpty(graphicsAreaString) && + graphicsAreaString.startsWith("#")) + isValid = true; + return isValid; + } + + /** + * a helper method to indicate if the graphic area string contains + * valid lower left and upper right lat/lon values + */ + public boolean isValidLowerLeftAndUpperRightLatLonValues() { + boolean isValid = false; + if(isGraphicsAreaStrValid && + !isStringEmpty(graphicsAreaString) && + !isValidCenterDeltaLatLonValues() && + !isValidStationName() && + !isValidGeogName()) + isValid = true; + return isValid; + } + + /** + * @param s + * The method parseGraphicsAreaString() accepts as input a single string that denotes the graphics area coordinates + * in one of the formats listed below: + * #clta;clon;dlat;dlon - center latitude/longitude and the delta latitude/longitude values. + * lat1;lon1;lat2;lon2 - lower left latitude/longitude and upper right latitude/longitude values. + * GEOG - a geographical area code in the file geog.xml + * STN - a station code in the file station.xml + * For the ';' separated strings, after checking the validity of the input string, the function parses it + * into tokens to extract the latitude/longitude values. + * For the GEOG/STN codes, if it finds the corresponding record in the geog table or the station table, + * it retrieves the corresponding latitude/longitude values. Additionally, for the GEOG code, + * it also retrieves the map projection string. + * @return graphics_area_str_valid + */ + + public boolean parseGraphicsAreaString(String gAreaString) { + + int i = 0; + String geogCodeStr; + +// boolean isGAreaStringValid = true; + + if(isStringEmpty(gAreaString)) + return false; + +// if(gAreaString.length()!=0){ + if(gAreaString.charAt(0)=='#'){ + iartyp = 1; + geogCodeStr = gAreaString.substring(1); + isGraphicsAreaStrValid = validateLatLonInputString(geogCodeStr); + + if(isGraphicsAreaStrValid){ + + setCenterDeltaLatLonValues(geogCodeStr); + isGraphicsAreaStrValid = validateCenterDeltaLatLonValues(centerLat,centerLon,deltaLat,deltaLon); + + if(isGraphicsAreaStrValid){ + + calculateLLURLatLonFromCDLatLon(centerLat, centerLon, deltaLat, deltaLon); + + // The latitude/longitude values of the lower left and upper right coordinates are checked to ensure that + //they lie within the valid range and that the lower left latitude/longitude values + //are less than the upper right latitude/longitude values. + + isGraphicsAreaStrValid = validateLowerUpperLatLonValues(lowerLeftLat,lowerLeftLon,upperRightLat,upperRightLon); + if(isGraphicsAreaStrValid){ + errorMessage = "Valid String"; + errorMsgSet = true; + } + + } + } +// else{ +// isGraphicsAreaStrValid = false; +// if(!errorMsgSet){ +// errorMessage = INVALID_STR; +// errorMsgSet = true; +// } +// } + + } + else{ + + isGraphicsAreaStrValid = validateLatLonInputString(gAreaString); + if(isGraphicsAreaStrValid){ + iartyp = 2; + setLowerUpperLatLonValues(gAreaString); + isGraphicsAreaStrValid = validateLowerUpperLatLonValues(lowerLeftLat, lowerLeftLon, upperRightLat, upperRightLon); + + //The calculations for center_lat and center_lon are derived from lcabnd.f + if(isGraphicsAreaStrValid){ + centerLat = (lowerLeftLat+upperRightLat)/2; + centerLon = (lowerLeftLon+upperRightLon)/2; + isGraphicsAreaStrValid = validateCenterDeltaLatLonValues(centerLat, centerLon, 0.0f, 0.0f); + if(isGraphicsAreaStrValid){ + errorMessage = "Valid String"; + errorMsgSet = true; + } + } + } + + else{ + + + /* A suffix such as '+' or '*' character, when appended to the GEOG code or the STN code + increases the extent of the area. On the other hand, appending a '-' character to the GEOG/STN + code decreases the extent of the area. This suffix character is ignored and only the substring + containing just the GEOG or STN code alone is considered for comparison with the data in the XML files.*/ + + for(i=0;i 180.0) + convertedLonValue = longitudeValue - 360.0; + return convertedLonValue; + } + + /** + * This method calculate the average longitude for setting up projection. + * The logic is taken from Fortran function gammap.f + * @param lowerLeftLon, lower left longitude + * @param upperRightLon, upper right longitude + * @return average longitude for setting up projection + */ + private double calculateAverageLongitude(double lowerLeftLon, double upperRightLon) { + double averageLongitude = 0.0; + if(lowerLeftLon == upperRightLon) + averageLongitude = lowerLeftLon + 180.0; + else if(lowerLeftLon > upperRightLon) + averageLongitude = (360.0 + lowerLeftLon + upperRightLon) / 2; + else + averageLongitude = (lowerLeftLon + upperRightLon) / 2; + + /* + * truncate the double number with maximumly 3 digits after the DOT + */ + averageLongitude = truncateDoubleValue(averageLongitude); + return convertLongitudeValue(averageLongitude); + } + + private double truncateDoubleValue(double d) { + double truncatedNumber = d > 0 ? Math.floor(d*1000)/1000.0 : + Math.ceil(d*1000) / 1000.0; + return truncatedNumber; + } + + /** + * The function searchGeogTable accepts as input a string 'code_str' that represents a code in the geog table + * and if the input string matches a code for the geographical area in the file geog.xml, + * the corresponding Latitude/Longitude values and the projection string are retrieved from the file. + * @param code_str + * @return found + * @throws Exception + */ + + + public int searchGeogTable(String geogCode) throws Exception{ +// public GeographicalData searchGeogTable(String geogCode) throws Exception{ +// GeographicalData geogData = null; + GeographicalDataReader geogDataReader = new GeographicalDataReader(geogFileName); + List geographicalDataList = geogDataReader.getGeographicalData(); + int found = 0; + for(GeographicalData currentGeogData : geographicalDataList){ + + if(currentGeogData.getGeogCode().equals(geogCode)){ + geogAreaCode = currentGeogData.getGeogCode(); + centerLat = currentGeogData.getCenterLat(); + centerLon = currentGeogData.getCenterLon(); + lowerLeftLat = currentGeogData.getLowerLeftLat(); + lowerLeftLon = currentGeogData.getLowerLeftLon(); + upperRightLat = currentGeogData.getUpperRightLat(); + upperRightLon = currentGeogData.getUpperRightLon(); + mapProjectionStr = currentGeogData.getMapProjectionString(); + found = 3; + +// geogData = currentGeogData; + break; + } + } + return found; + } + + /** + * The function searchStationTable accepts as input a string 'code_str'that represents a code in the station table + * and if the input string matches a code for the geographical area in the file sfstns.xml, + * the corresponding Latitude/Longitude values of the station are retrieved from the file. + * @param code_str + * @return found + * @throws Exception + */ + + + public int searchStationTable(String geogCodeStr) throws Exception{ +// public Station searchStationTable(String geogCodeStr) throws Exception{ + int found = 0; +// Station station = null; + StationDataReader stnDataReader = new StationDataReader(stationFileName); + List stationList = stnDataReader.getStationData(); + for(Station currentStation : stationList){ + + if(currentStation.getStid().equals(geogCodeStr)){ + station_code = currentStation.getStid(); + + // The center_lat and center_lon denote the Latitude/Longitude values of a point location - the station. + centerLat = currentStation.getLatitude(); + centerLon = currentStation.getLongitude(); + + /* + * At this time, we use a hard coded value deltaLat = 4.0 and + * deltaLon = 7.0 temporarily to calculate lower left and upper + * right lat/lon values. The two hard coded values taken from + * lcabnd.f. I am not clear if the values are used correctly. + * M. Gao comments + */ + calculateLLURLatLonFromCDLatLon(centerLat, centerLon, + (float)4.0, (float)7.0); + found = 4; +// station = currentStation; + } + } + + return found; +// return station; + } + + /** + * The function computeZoomMultiplier() is a private function to compute the zoom multiplier. + * @param zoom_flag + * @return zm + */ + + private double computeZoomMultiplier(int zoomFlag){ + double zm = 0.0; + if(zoomFlag>0){ + zm = (1/Math.pow(2, zoomFlag)); + } else { + zm = Math.pow(2, zoomFlag * (-1)); + } + return zm; + } + + /** + * This function validateInputString() parses the input string 's' using the ';' as a delimiter and extracts 4 latitude/longitude values + * It then proceeds to check that each extracted token contains only a valid numeric value for the + * latitude(s) and the longitude(s). + * @param s + * @return flag + */ + private boolean validateLatLonInputString(String latLonStr){ + boolean isValid = false; + int i=0; + + if(isStringEmpty(latLonStr)) + return isValid; + + String latLonTokens[] = latLonStr.split(";"); + + /* + * In the case users type in more values, e.g. latLonTokens.length > 4 + * We just simply ignore the rest values instead of getting an error + * This way our code is more use friendly + */ + if(latLonTokens.length < 4) { + errorMessage = LESS_NUM_ARGS; + errorMsgSet = true; + return isValid; + } + + for(i=0;i<4;i++) { + isValid = Pattern.matches(VALID_NUMBER, latLonTokens[i]); + if(!isValid){ + errorMessage = INVALID_LAT_LON_VALUES; + errorMsgSet = true; + break; + } + } + + return isValid; + } + + /** + * a helper method to check if a string is empty + */ + private boolean isStringEmpty(String str) { + boolean isValid = false; + if(str == null || str.trim().length() == 0) + isValid = true; + return isValid; + } + + + /** + * The function validateLatLonValues() checks the accepted range of values for the input latitude/longitude coordinates. + * In case there is any discrepancy, the function sets an error message string to indicate the nature of the problem. + * Latitudes can range only from -90.00 to 90.00 + * Longitude values can range only from -180.00 to 360.00 + * Delta latitude/longitude values cannot be negative. + * @param g_area_typ + * @param lat1 + * @param lon1 + * @param lat2 + * @param lon2 + * @return flag + */ + +// private boolean validateLatLonValues(int g_area_typ, Float lat1, Float lon1, Float lat2, Float lon2){ +// boolean flag = false; +// +// if (g_area_typ == 1) { +// if(lat1 >= -90.0f && lat1 <= 90.0){ +// if(lon1 >= -180.0f && lon1 <= 360.0f){ +// +// if(lat2 >= 0){ +// if(((lat1 - lat2 >= -90) && (lat1 + lat2) <=90)){ +// if(lon2 >= 0) { +// if ((lon1 - lon2 >= -180) && (lon1 + lon2) <=360){ +// flag = true; +// errorMessage = "Valid String"; +// errorMsgSet = true; +// } +// else{ +// flag = false; +// errorMessage = INVALID_CENTER_DELTA_LON_VALUES; +// errorMsgSet = true; +// centerLat = -1000.0f; +// centerLon = -1000.0f; +// deltaLat = -1000.0f; +// deltaLon = -1000.0f; +// } +// } +// else{ +// errorMessage = NEGATIVE_DELTA_LON; +// errorMsgSet = true; +// deltaLon = -1000.0f; +// flag = false; +// } +// } +// else{ +// flag = false; +// errorMessage = INVALID_CENTER_DELTA_LAT_VALUES; +// errorMsgSet = true; +// centerLat = -1000.0f; +// centerLon = -1000.0f; +// deltaLat = -1000.0f; +// deltaLon = -1000.0f; +// } +// } +// else{ +// errorMessage = NEGATIVE_DELTA_LAT; +// errorMsgSet = true; +// deltaLat = -1000.0f; +// flag = false; +// } +// +// } +// else{ +// errorMessage = INVALID_CENTER_LON; +// errorMsgSet = true; +// centerLon = -1000.0f; +// flag = false; +// } +// } +// else{ +// errorMessage = INVALID_CENTER_LAT; +// errorMsgSet = true; +// centerLat = -1000.0f; +// flag = false; +// } +// } +// +// if (g_area_typ == 2) { +// if(lat1 >= -90.0f && lat1 <= 90.0){ +// if(lon1 >= -180.0f && lon1 <= 360.0f){ +// if(lat2 >= -90.0f && lat2 <= 90.0){ +// if(lon2 >= -180.0f && lon2 <= 360.0f){ +// +// if(lat1 > lat2){ +// this.errorMessage = LL_LAT_GREATER_THAN_UR_LAT; +// errorMsgSet = true; +// this.lowerLeftLat = -1000.0f; +// this.upperRightLat = -1000.0f; +// flag = false; +// } +// +// else if(lon1 > lon2){ +// +// this.errorMessage = LL_LON_GREATER_THAN_UR_LON; +// errorMsgSet = true; +// this.lowerLeftLon = -1000.0f; +// this.upperRightLon = -1000.0f; +// flag = false; +// } +// +// else{ +// flag = true; +// errorMessage = "Valid String"; +// errorMsgSet = true; +// } +// +// } +// else{ +// this.errorMessage = INVALID_UR_LON; +// errorMsgSet = true; +// this.upperRightLon = -1000.0f; +// flag = false; +// } +// } +// else{ +// this.errorMessage = INVALID_UR_LAT; +// errorMsgSet = true; +// this.upperRightLat = -1000.0f; +// flag = false; +// } +// } +// else{ +// this.errorMessage = INVALID_LL_LON; +// errorMsgSet = true; +// this.lowerLeftLon = -1000.0f; +// flag = false; +// } +// } +// else{ +// this.errorMessage = INVALID_LL_LAT; +// errorMsgSet = true; +// this.lowerLeftLat = -1000.0f; +// flag = false; +// +// } +// +// } +// +// return flag; +// } + private boolean validateCenterDeltaLatLonValues(double _centerLat, double _centerLon, double _deltalat, double _deltaLon){ + boolean flag = false; + + if(_centerLat >= -90.0f && _centerLat <= 90.0){ + if(_centerLon >= -180.0f && _centerLon <= 360.0f){ + + if(_deltalat >= 0){ + if(((_centerLat - _deltalat >= -90) && (_centerLat + _deltalat) <=90)){ + if(_deltaLon >= 0) { + if ((_centerLon - _deltaLon >= -180) && (_centerLon + _deltaLon) <=360){ + flag = true; + errorMessage = "Valid String"; + errorMsgSet = true; + } + else{ + flag = false; + errorMessage = INVALID_CENTER_DELTA_LON_VALUES; + errorMsgSet = true; + centerLat = -1000.0f; + centerLon = -1000.0f; + deltaLat = -1000.0f; + deltaLon = -1000.0f; + } + } + else{ + errorMessage = NEGATIVE_DELTA_LON; + errorMsgSet = true; + deltaLon = -1000.0f; + flag = false; + } + } + else{ + flag = false; + errorMessage = INVALID_CENTER_DELTA_LAT_VALUES; + errorMsgSet = true; + centerLat = -1000.0f; + centerLon = -1000.0f; + deltaLat = -1000.0f; + deltaLon = -1000.0f; + } + } + else{ + errorMessage = NEGATIVE_DELTA_LAT; + errorMsgSet = true; + deltaLat = -1000.0f; + flag = false; + } + + } + else{ + errorMessage = INVALID_CENTER_LON; + errorMsgSet = true; + centerLon = -1000.0f; + flag = false; + } + } + else{ + errorMessage = INVALID_CENTER_LAT; + errorMsgSet = true; + centerLat = -1000.0f; + flag = false; + } + + return flag; + } + + private boolean validateLowerUpperLatLonValues(double _lowerLat, double _lowerLon, double _upperLat, double _upperLon){ + boolean flag = false; + + if(_lowerLat >= -90.0f && _lowerLat <= 90.0){ + if(_lowerLon >= -180.0f && _lowerLon <= 360.0f){ + if(_upperLat >= -90.0f && _upperLat <= 90.0){ + if(_upperLon >= -180.0f && _upperLon <= 360.0f){ + + if(_lowerLat > _upperLat){ + this.errorMessage = LL_LAT_GREATER_THAN_UR_LAT; + errorMsgSet = true; + this.lowerLeftLat = -1000.0f; + this.upperRightLat = -1000.0f; + flag = false; + } + + else if(((_lowerLon<=0 && _upperLon<=0) || (_lowerLon>=0 && _upperLon>=0)) && _lowerLon > _upperLon){ + + this.errorMessage = LL_LON_GREATER_THAN_UR_LON; + errorMsgSet = true; + this.lowerLeftLon = -1000.0f; + this.upperRightLon = -1000.0f; + flag = false; + } else if((_lowerLon>0 && _upperLon<0) && _lowerLon < _upperLon) { + this.errorMessage = LL_LON_GREATER_THAN_UR_LON; + errorMsgSet = true; + this.lowerLeftLon = -1000.0f; + this.upperRightLon = -1000.0f; + flag = false; + } else if(isLowerLeftPointSameAsUpperRightPoint(_lowerLat, _lowerLon, _upperLat, _upperLon)) { + this.errorMessage = "The lower left coordinate point is the same as the upper right coordinate point"; + errorMsgSet = true; + this.lowerLeftLon = -1000.0f; + this.upperRightLon = -1000.0f; + flag = false; + } else{ + flag = true; + errorMessage = "Valid String"; + errorMsgSet = true; + } + + } + else{ + this.errorMessage = INVALID_UR_LON; + errorMsgSet = true; + this.upperRightLon = -1000.0f; + flag = false; + } + } + else{ + this.errorMessage = INVALID_UR_LAT; + errorMsgSet = true; + this.upperRightLat = -1000.0f; + flag = false; + } + } + else{ + this.errorMessage = INVALID_LL_LON; + errorMsgSet = true; + this.lowerLeftLon = -1000.0f; + flag = false; + } + } + else{ + this.errorMessage = INVALID_LL_LAT; + errorMsgSet = true; + this.lowerLeftLat = -1000.0f; + flag = false; + + } + + return flag; + } + + private boolean isLowerLeftPointSameAsUpperRightPoint(double _lowerLat, double _lowerLon, double _upperLat, double _upperLon) { + boolean result = false; + if(_lowerLat == _upperLat && _lowerLon ==_upperLon) + result = true; + else if(isPole(_lowerLat, _upperLat)) { + if((_lowerLon == 180 && _upperLon == -180) || (_lowerLon == 1180 && _upperLon == 180)) + result = true; + } + + return result; + } + + private boolean isPole(double _lowerLat, double _upperLat) { + boolean result = false; + if(_lowerLat == 90 && _upperLat == 90) + result = true; + return result; + } + + /** + * The function getGeogAreaCode() returns the value of the geographical area code, which is retrieved + * only if the boolean flag graphics_area_str_valid is true and if the flag 'iartyp' is set to 3 + * (indicating that a geog code was entered) + * @return geog_area_code + */ + + public String getGeogAreaCode(){ + if(this.iartyp == 3 && this.isGraphicsAreaStrValid == true){ + return this.geogAreaCode; + } + return null; +// else{ +// return this.errorMessage; +// } + + } + + + /** + * The function getMapProjectionString() retrieves the map projection string, + * only if the boolean flag graphics_area_str_valid is true and if the flag 'iartyp' is set to 3 + * (indicating that a geog code was entered) + * @return map_proj_str + */ + + public String getMapProjectionString(){ + if(this.iartyp == 3 && this.isGraphicsAreaStrValid == true){ + return this.mapProjectionStr.trim(); + } + return null; +// else{ +// return this.errorMessage; +// } + } + + /** + * The function getStationCode() returns the value of the station code, which is retrieved + * only if the boolean flag graphics_area_str_valid is true and if the flag 'iartyp' is set to 4 + * (indicating that a station code was entered) + * @return station_code + */ + + public String getStationCode(){ + if(this.iartyp == 4 && this.isGraphicsAreaStrValid == true){ + return this.station_code; + } + + else{ + return this.errorMessage; + } + + } + /** + * The function isGraphicsAreaStringValid() returns the boolean data 'graphics_area_str_valid'. + * @return graphics_area_str_valid + */ + + public boolean isGraphicsAreaStringValid(){ + return this.isGraphicsAreaStrValid; + } + + /** + * The function getErrorCode() returns the string 'error_message' that contains the error message. + * @return error_message + */ + + public String getErrorCode(){ + return this.errorMessage; + } + + /** + * The function getGAREACoordinates() retrieves the Lower left/ Upper Right + * latitude/longitude values and the Center/Delta latitude/longitude values in a Float[] + * data called lat_lon_data. + * @return lat_lon_data + */ + + + public double[] getGAREACoordinates(){ + + double[] lat_lon_data = new double[6]; + lat_lon_data[0] = lowerLeftLat; + lat_lon_data[1] = lowerLeftLon; + lat_lon_data[2] = upperRightLat; + lat_lon_data[3] = upperRightLon; + lat_lon_data[4] = centerLat; + lat_lon_data[5] = centerLon; + + return lat_lon_data; + } + + /** + * The private function setLatLonValues() accepts as input a string containing the latitude/longitude values + * and a number that indicates whether the latitude/longitude values represent the Lower left/ Upper Right + * latitude/longitude values or the Center/Delta latitude/longitude values. Depending on the value of + * this number, it the splits the input string into 4 component string, extracts the floating point value + * and stores each value correspondingly. + * @param s + * @param i + */ + +// private void setLatLonValues(String s, int i){ +// String lat_lon_tokens[] = s.split(";"); +// if(i == 1){ +// centerLat = Float.valueOf(lat_lon_tokens[0]).floatValue(); +// centerLon = Float.valueOf(lat_lon_tokens[1]).floatValue(); +// deltaLat = Float.valueOf(lat_lon_tokens[2]).floatValue(); +// deltaLon = Float.valueOf(lat_lon_tokens[3]).floatValue(); +// } +// if(i==2){ +// lowerLeftLat = Float.valueOf(lat_lon_tokens[0]).floatValue(); +// lowerLeftLon = Float.valueOf(lat_lon_tokens[1]).floatValue(); +// upperRightLat = Float.valueOf(lat_lon_tokens[2]).floatValue(); +// upperRightLon = Float.valueOf(lat_lon_tokens[3]).floatValue(); +// } +// } + private void setCenterDeltaLatLonValues(String latLonString){ + String latLonTokens[] = latLonString.split(";"); + centerLat = Double.valueOf(latLonTokens[0]).doubleValue(); + centerLon = convertLongitudeValue(Double.valueOf(latLonTokens[1]).doubleValue()); + deltaLat = Double.valueOf(latLonTokens[2]).doubleValue(); + deltaLon = convertLongitudeValue(Double.valueOf(latLonTokens[3]).doubleValue()); + } + + private void setLowerUpperLatLonValues(String latLonString){ + String latLonTokens[] = latLonString.split(";"); + lowerLeftLat = Double.valueOf(latLonTokens[0]).doubleValue(); + lowerLeftLon = convertLongitudeValue(Double.valueOf(latLonTokens[1]).doubleValue()); + upperRightLat = Double.valueOf(latLonTokens[2]).doubleValue(); + upperRightLon = convertLongitudeValue(Double.valueOf(latLonTokens[3]).doubleValue()); + } + + /** + * The private function computeLLURLatLonFromCDLatLon() calculates the Lower left/ Upper Right + * latitude/longitude values from the given Center/Delta latitude/longitude values + */ + + private void calculateLLURLatLonFromCDLatLon(double centerLat, double centerLon, + double deltaLat, double deltaLon){ + lowerLeftLat = centerLat - deltaLat; + lowerLeftLon = centerLon - deltaLon; + upperRightLat = centerLat + deltaLat; + upperRightLon = centerLon + deltaLon; + } } + + diff --git a/ncep/gov.noaa.nws.ncep.ui.nctextui/META-INF/MANIFEST.MF b/ncep/gov.noaa.nws.ncep.ui.nctextui/META-INF/MANIFEST.MF index 9efcf71805..99bf87e5ef 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nctextui/META-INF/MANIFEST.MF +++ b/ncep/gov.noaa.nws.ncep.ui.nctextui/META-INF/MANIFEST.MF @@ -23,9 +23,8 @@ Import-Package: com.raytheon.uf.common.dataplugin, com.raytheon.uf.viz.core.rsc, com.raytheon.viz.ui.jobs, com.vividsolutions.jts.geom, - gov.noaa.nws.ncep.ui.pgen, gov.noaa.nws.ncep.viz.common.ui, - gov.noaa.nws.ncep.viz.localization.impl, + gov.noaa.nws.ncep.viz.localization, gov.noaa.nws.ncep.viz.overlays, gov.noaa.nws.ncep.viz.resources.manager, gov.noaa.nws.ncep.viz.ui.display, diff --git a/ncep/gov.noaa.nws.ncep.ui.nctextui/plugin.xml b/ncep/gov.noaa.nws.ncep.ui.nctextui/plugin.xml index b7561c97b9..58cf7de478 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nctextui/plugin.xml +++ b/ncep/gov.noaa.nws.ncep.ui.nctextui/plugin.xml @@ -9,7 +9,6 @@ name="Nctext"> diff --git a/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/palette/NctextuiPaletteWindow.java b/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/palette/NctextuiPaletteWindow.java index b64c08cc75..2733ff4113 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/palette/NctextuiPaletteWindow.java +++ b/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/palette/NctextuiPaletteWindow.java @@ -30,6 +30,8 @@ import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.SelectionListener; +import org.eclipse.swt.graphics.Font; +import org.eclipse.swt.graphics.FontData; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; @@ -633,6 +635,14 @@ public class NctextuiPaletteWindow extends ViewPart implements SelectionListener GridData data = new GridData (SWT.FILL,SWT.FILL, true, true); text.setLayoutData (data); + Font font = text.getFont(); + FontData[] fontData = font.getFontData(); + for (int i = 0; i < fontData.length; i++) { + //fontData[i].setHeight(12); + fontData[i].setName("courier"); + } + Font newFont = new Font(font.getDevice(), fontData); + text.setFont(newFont); } diff --git a/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/rsc/NctextuiResource.java b/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/rsc/NctextuiResource.java index c60935eb3d..1ec96120e7 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/rsc/NctextuiResource.java +++ b/ncep/gov.noaa.nws.ncep.ui.nctextui/src/gov/noaa/nws/ncep/ui/nctextui/rsc/NctextuiResource.java @@ -14,481 +14,455 @@ */ package gov.noaa.nws.ncep.ui.nctextui.rsc; -import gov.noaa.nws.ncep.ui.nctextui.dbutil.NctextStationInfo; -import gov.noaa.nws.ncep.ui.nctextui.palette.NctextuiPaletteWindow; -import gov.noaa.nws.ncep.ui.pgen.display.DisplayElementFactory; -import gov.noaa.nws.ncep.ui.pgen.display.IDisplayable; -import gov.noaa.nws.ncep.ui.pgen.elements.SymbolLocationSet; -import gov.noaa.nws.ncep.viz.localization.impl.LocalizationManager; -import gov.noaa.nws.ncep.viz.resources.manager.RbdBundle; -import gov.noaa.nws.ncep.viz.resources.manager.ResourceBndlLoader; -import gov.noaa.nws.ncep.viz.ui.display.NCMapEditor; -import gov.noaa.nws.ncep.viz.ui.display.NmapUiUtils; import java.awt.Color; import java.io.File; -import java.util.ArrayList; import java.util.List; +import java.util.ArrayList; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IViewPart; +import org.eclipse.ui.IPerspectiveDescriptor; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.PlatformUI; import org.opengis.referencing.crs.CoordinateReferenceSystem; +import com.vividsolutions.jts.geom.Coordinate; import com.raytheon.uf.viz.core.IGraphicsTarget; import com.raytheon.uf.viz.core.PixelExtent; import com.raytheon.uf.viz.core.VizApp; import com.raytheon.uf.viz.core.drawables.IFont; import com.raytheon.uf.viz.core.drawables.PaintProperties; -import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.uf.viz.core.map.IMapDescriptor; import com.raytheon.uf.viz.core.map.MapDescriptor; import com.raytheon.uf.viz.core.rsc.AbstractVizResource; +import com.raytheon.uf.viz.core.rsc.IInputHandler; import com.raytheon.uf.viz.core.rsc.LoadProperties; import com.raytheon.uf.viz.core.rsc.ResourceProperties; +import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.viz.ui.EditorUtil; -import com.vividsolutions.jts.geom.Coordinate; -public class NctextuiResource extends - AbstractVizResource { +import gov.noaa.nws.ncep.ui.nctextui.dbutil.NctextStationInfo; +import gov.noaa.nws.ncep.ui.pgen.display.DisplayElementFactory; +import gov.noaa.nws.ncep.ui.pgen.display.IDisplayable; +import gov.noaa.nws.ncep.ui.pgen.elements.SymbolLocationSet; +import gov.noaa.nws.ncep.viz.localization.NcPathManager; +import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; +import gov.noaa.nws.ncep.viz.resources.manager.RbdBundle; +import gov.noaa.nws.ncep.viz.resources.manager.ResourceBndlLoader; +import gov.noaa.nws.ncep.viz.ui.display.NCMapEditor; +import gov.noaa.nws.ncep.viz.ui.display.NmapUiUtils; +import gov.noaa.nws.ncep.ui.nctextui.palette.NctextuiPaletteWindow; - private NctextuiResourceData nctextuiResourceData; +public class NctextuiResource extends AbstractVizResource { - private static NctextuiResource nctextuiResource = null; - - /** The set of symbols with similar attributes across many locations */ + private NctextuiResourceData nctextuiResourceData; + private static NctextuiResource nctextuiResource=null; + /** The set of symbols with similar attributes across many locations */ private SymbolLocationSet symbolSet = null; - private SymbolLocationSet pickedSymbolSet = null; - - private static NCMapEditor mapEditor = null; - - // private static int mapEditorNum=0; - private static NctextuiMouseHandler mouseHandler; - - /* - * public static NCMapEditor getOrCreateMapEditor() { if(mapEditor== null) - * createMapEditor(); return mapEditor; } - */ + private static NCMapEditor mapEditor=null; +// private static int mapEditorNum=0; + private static NctextuiMouseHandler mouseHandler; + + /*public static NCMapEditor getOrCreateMapEditor() { + if(mapEditor== null) + createMapEditor(); + return mapEditor; + }*/ public static NCMapEditor getMapEditor() { - - return mapEditor; - } - + + return mapEditor; + } + private List points = new ArrayList (); - private List pickedStnPt = new ArrayList (); + + public List getPickedStnPt() { + return pickedStnPt; + } - public List getPickedStnPt() { - return pickedStnPt; - } + public void setPickedStnPt(List pickedStnPt) { + if (pickedStnPt == null) + this.pickedStnPt.clear(); + else + this.pickedStnPt = pickedStnPt; + } - public void setPickedStnPt(List pickedStnPt) { - if (pickedStnPt == null) - this.pickedStnPt.clear(); - else - this.pickedStnPt = pickedStnPt; - } + public List getPoints() { + return points; + } - public List getPoints() { - return points; - } - - public void setPoints(List points) { - if (points == null) - this.points.clear(); - else - this.points = points; - } - - private static void createMapEditor() { - // create an editor MapEditor - if (mapEditor != null) - return; - File rbdFile = LocalizationManager.getInstance().getLocalizationFile( - "defaultRBDFile"); - try { - IEditorPart ep = EditorUtil.getActiveEditor(); - if (ep instanceof NCMapEditor) { - mapEditor = (NCMapEditor) ep; - } else { - mapEditor = NmapUiUtils.createNatlCntrsEditor("BasicWX-US", - "NCTEXT"); - } - - RbdBundle rbd = RbdBundle.unmarshalRBD(rbdFile, null); - rbd.setNcEditor(mapEditor); - ResourceBndlLoader rbdLoader = new ResourceBndlLoader("DefaultMap"); - rbdLoader.addRBD(rbd); - VizApp.runSync(rbdLoader); - // mapEditorNum = mapEditor.getEditorNum(); - // register mouse handler - mouseHandler = getMouseHandler(); - mapEditor.registerMouseHandler(mouseHandler); - // System.out.println("NctextuiPaletteWindow create editor "+ - // mapEditor.toString()); - } catch (Exception ve) { - System.out.println("Could not load initial editor: " - + ve.getMessage()); - ve.printStackTrace(); - } - } - - /** + public void setPoints(List points) { + if (points == null) + this.points.clear(); + else + this.points = points; + } + + private static void createMapEditor(){ + // create an editor MapEditor + if(mapEditor != null) + return; + File rbdFile = NcPathManager.getInstance().getStaticFile( + NcPathConstants.DFLT_RBD ); + try { + IEditorPart ep = EditorUtil.getActiveEditor(); + if ( ep instanceof NCMapEditor ) { + mapEditor= (NCMapEditor) ep; + } + else { + mapEditor = NmapUiUtils.createNatlCntrsEditor("BasicWX-US","NCTEXT" ); + } + + RbdBundle rbd = RbdBundle.unmarshalRBD( rbdFile, null ); + rbd.setNcEditor( (NCMapEditor)mapEditor ); + ResourceBndlLoader rbdLoader = new ResourceBndlLoader("DefaultMap"); + rbdLoader.addRBD( rbd ); + VizApp.runSync( rbdLoader ); +// mapEditorNum = mapEditor.getEditorNum(); + //register mouse handler + mouseHandler = getMouseHandler(); + mapEditor.registerMouseHandler((IInputHandler) mouseHandler ); + //System.out.println("NctextuiPaletteWindow create editor "+ mapEditor.toString()); + } + catch ( Exception ve ) { + System.out.println("Could not load initial editor: " + ve.getMessage()); + ve.printStackTrace(); + } + } + /** * Create a new resource and add it to the current editor. - * * @return the Resource */ private static NctextuiResource createNewResource(NCMapEditor mapEditor) { - if (mapEditor != null) { - IMapDescriptor desc = (IMapDescriptor) mapEditor - .getActiveDisplayPane().getRenderableDisplay() - .getDescriptor(); - nctextuiResource = new NctextuiResource(new NctextuiResourceData(), - new LoadProperties()); - desc.getResourceList().add(nctextuiResource); - try { - nctextuiResource.init(mapEditor.getActiveDisplayPane() - .getTarget()); - } catch (VizException e) { + if(mapEditor != null){ + IMapDescriptor desc = (IMapDescriptor) mapEditor.getActiveDisplayPane().getRenderableDisplay().getDescriptor(); + nctextuiResource = new NctextuiResource(new NctextuiResourceData(),new LoadProperties()); + desc.getResourceList().add( nctextuiResource ); + try { + nctextuiResource.init( mapEditor.getActiveDisplayPane().getTarget()); + } catch (VizException e) { - e.printStackTrace(); - } - // System.out.println("NctextuiPaletteWindow createNewResource"); - - } + e.printStackTrace(); + } + //System.out.println("NctextuiPaletteWindow createNewResource"); + + } return nctextuiResource; } + - public static NctextuiResource getNctextuiResource() { - if (nctextuiResource == null) { - if (mapEditor == null) - createMapEditor(); - // nctextuiResource = createNewResource(mapEditor); - if (mapEditor != null) { - IMapDescriptor desc = (IMapDescriptor) mapEditor - .getActiveDisplayPane().getRenderableDisplay() - .getDescriptor(); - try { - nctextuiResource = new NctextuiResource( - new NctextuiResourceData(), new LoadProperties()); - desc.getResourceList().add(nctextuiResource); - nctextuiResource.init(mapEditor.getActiveDisplayPane() - .getTarget()); + public static NctextuiResource getNctextuiResource() { + if(nctextuiResource == null){ + if(mapEditor == null ) + createMapEditor(); + //nctextuiResource = createNewResource(mapEditor); + if ( mapEditor != null) { + IMapDescriptor desc = (IMapDescriptor) mapEditor.getActiveDisplayPane().getRenderableDisplay().getDescriptor(); + try { + nctextuiResource = new NctextuiResource(new NctextuiResourceData(),new LoadProperties()); + desc.getResourceList().add( nctextuiResource ); + nctextuiResource.init( mapEditor.getActiveDisplayPane().getTarget()); + + } catch (Exception e) { + e.printStackTrace(); + } + } + } + return nctextuiResource; + } + + /** + * Default constructor + */ + protected NctextuiResource(NctextuiResourceData resourceData, + LoadProperties loadProperties) { + super(resourceData, loadProperties); + this.nctextuiResourceData = resourceData; + } - } catch (Exception e) { - e.printStackTrace(); - } - } + /** + * Called when resource is disposed + * @see com.raytheon.viz.core.rsc.IVizResource#dispose() + */ + @Override + public void disposeInternal() { + //System.out.println("NctextuiResource:disposeInternal"); + if(mapEditor != null ){ + mapEditor.unregisterMouseHandler( mouseHandler ); + mouseHandler = null; + //close editor +// if((PlatformUI.getWorkbench()!= null)&&(PlatformUI.getWorkbench().getActiveWorkbenchWindow()!= null) +// && (PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()!=null)){ + + //System.out.println("NctextuiResource:disposeInternal close map editor"); +// PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().closeEditor(mapEditor, false); +// } + mapEditor = null; +// mapEditorNum=0; } - return nctextuiResource; + closeTextView (); + nctextuiResource = null; + } + + @Override + public void propertiesChanged(ResourceProperties updatedProps) { + if ( updatedProps.isVisible() ) { + reopenTextView (); + } + else { + hideTextView (); + } } - - /** - * Default constructor - */ - protected NctextuiResource(NctextuiResourceData resourceData, - LoadProperties loadProperties) { - super(resourceData, loadProperties); - this.nctextuiResourceData = resourceData; - } - - /** - * Called when resource is disposed - * - * @see com.raytheon.viz.core.rsc.IVizResource#dispose() - */ - @Override - public void disposeInternal() { - // System.out.println("NctextuiResource:disposeInternal"); - if (mapEditor != null) { - mapEditor.unregisterMouseHandler(mouseHandler); - mouseHandler = null; - // close editor - // if((PlatformUI.getWorkbench()!= - // null)&&(PlatformUI.getWorkbench().getActiveWorkbenchWindow()!= - // null) - // && - // (PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()!=null)){ - - // System.out.println("NctextuiResource:disposeInternal close map editor"); - // PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().closeEditor(mapEditor, - // false); - // } - mapEditor = null; - // mapEditorNum=0; + + private void hideTextView () { + IWorkbenchPage wpage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); + + IViewPart vpart = wpage.findView( "gov.noaa.nws.ncep.ui.NCTEXTUI" ); + if ( wpage.isPartVisible(vpart) ) { + NctextuiPaletteWindow paletteWin = NctextuiPaletteWindow.getAccess(); + paletteWin.setEditorVisible(false); + wpage.hideView(vpart); } - closeTextView(); - nctextuiResource = null; - } - - @Override - public void propertiesChanged(ResourceProperties updatedProps) { - if (updatedProps.isVisible()) { - reopenTextView(); - } else { - hideTextView(); - } - } - - private void hideTextView() { - IWorkbenchPage wpage = PlatformUI.getWorkbench() - .getActiveWorkbenchWindow().getActivePage(); - - IViewPart vpart = wpage.findView("gov.noaa.nws.ncep.ui.NCTEXTUI"); - if (wpage.isPartVisible(vpart)) { - NctextuiPaletteWindow paletteWin = NctextuiPaletteWindow - .getAccess(); - paletteWin.setEditorVisible(false); - wpage.hideView(vpart); - } - } - - private void closeTextView() { - IWorkbenchPage wpage = PlatformUI.getWorkbench() - .getActiveWorkbenchWindow().getActivePage(); - - IViewPart vpart = wpage.findView("gov.noaa.nws.ncep.ui.NCTEXTUI"); - wpage.hideView(vpart); - + } + private void closeTextView () { + IWorkbenchPage wpage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); + if(wpage!= null){ + IViewPart vpart = wpage.findView( "gov.noaa.nws.ncep.ui.NCTEXTUI" ); + wpage.hideView(vpart); + } + NmapUiUtils.setPanningMode(); - } - - private void reopenTextView() { - IWorkbenchPage wpage = PlatformUI.getWorkbench() - .getActiveWorkbenchWindow().getActivePage(); - - IViewPart vpart = wpage.findView("gov.noaa.nws.ncep.ui.NCTEXTUI"); - if (!wpage.isPartVisible(vpart)) { - NctextuiPaletteWindow paletteWin = NctextuiPaletteWindow - .getAccess(); - paletteWin.setEditorVisible(true); - try { - vpart = wpage.showView("gov.noaa.nws.ncep.ui.NCTEXTUI"); - } catch (Exception e) { - e.printStackTrace(); - } + } + + private void reopenTextView () { + IWorkbenchPage wpage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); + + IViewPart vpart = wpage.findView( "gov.noaa.nws.ncep.ui.NCTEXTUI" ); + if ( !wpage.isPartVisible(vpart) ) { + NctextuiPaletteWindow paletteWin = NctextuiPaletteWindow.getAccess(); + paletteWin.setEditorVisible(true); + try { + vpart = wpage.showView( "gov.noaa.nws.ncep.ui.NCTEXTUI" ); + } catch (Exception e) { + e.printStackTrace(); + } } - } + } + + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.IVizResource#getCoordinateReferenceSystem() + */ + public CoordinateReferenceSystem getCoordinateReferenceSystem() { - /* - * (non-Javadoc) - * - * @see - * com.raytheon.viz.core.rsc.IVizResource#getCoordinateReferenceSystem() - */ - public CoordinateReferenceSystem getCoordinateReferenceSystem() { + if (descriptor == null) + return null; - if (descriptor == null) - return null; + return descriptor.getCRS(); - return descriptor.getCRS(); + } - } + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.IVizResource#getName() + */ + @Override + public String getName() { - /* - * (non-Javadoc) - * - * @see com.raytheon.viz.core.rsc.IVizResource#getName() - */ - @Override - public String getName() { + return "NCText"; - return "NCText"; + } - } - /* - * (non-Javadoc) - * - * @see com.raytheon.viz.core.rsc.IVizResource#getShortName() - */ - public String getShortName() { + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.IVizResource#getShortName() + */ + public String getShortName() { - return null; + return null; - } + } - /* - * (non-Javadoc) - * - * @see com.raytheon.viz.core.rsc.IVizResource#init(com.raytheon.viz.core. - * IGraphicsTarget) - */ - @Override - public void initInternal(IGraphicsTarget target) throws VizException { - // System.out.println("NctextuiResource:initInternal"); - } + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.IVizResource#init(com.raytheon.viz.core.IGraphicsTarget) + */ + @Override + public void initInternal(IGraphicsTarget target) throws VizException { + //System.out.println("NctextuiResource:initInternal"); + } - /* - * (non-Javadoc) - * - * @see - * com.raytheon.viz.core.rsc.IVizResource#isApplicable(com.raytheon.viz. - * core.PixelExtent) - */ - public boolean isApplicable(PixelExtent extent) { + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.IVizResource#isApplicable(com.raytheon.viz.core.PixelExtent) + */ + public boolean isApplicable(PixelExtent extent) { - return true; + return true; - } + } + + private void generateSymbolForDrawing() + { + String type; + float lineWidth = nctextuiResourceData.getMarkerWidth(); + Boolean clear= false;; + String category = new String("Marker"); + double sizeScale = nctextuiResourceData.getMarkerSize(); + //NctextuiPaletteWindow nctextuiPaletteWindow = NctextuiPaletteWindow.getAccess(); + if (points.isEmpty() == true) { + symbolSet = null; + } + else { + // SymbolLocationSet constructor requires a positive-length array of Coordinate + Coordinate[] locations = new Coordinate[points.size()]; + + //System.out.println( "generateSymbolSet: size ="+ points.size()); + int i = 0; + for (NctextStationInfo p : points) { + double lon, lat; + lon = p.getLongitude(); + lat = p.getLatitude(); + locations[i++] = new Coordinate(lon,lat); + + + } - private void generateSymbolForDrawing() { - String type; - float lineWidth = nctextuiResourceData.getMarkerWidth(); - Boolean clear = false; - ; - String category = new String("Marker"); - double sizeScale = nctextuiResourceData.getMarkerSize(); - // NctextuiPaletteWindow nctextuiPaletteWindow = - // NctextuiPaletteWindow.getAccess(); - if (points.isEmpty() == true) { - symbolSet = null; - } else { - // SymbolLocationSet constructor requires a positive-length array of - // Coordinate - Coordinate[] locations = new Coordinate[points.size()]; + Color[] colors = new Color[] {new Color(nctextuiResourceData.getColor().red, + nctextuiResourceData.getColor().green, + nctextuiResourceData.getColor().blue)}; + type = nctextuiResourceData.getMarkerType().toString(); + //System.out.println( "generateSymbolSet done size ="+ i); + symbolSet = new SymbolLocationSet ( + null, + colors, + lineWidth, + sizeScale, + clear, + locations, + category, + type); + + + } + if (pickedStnPt.isEmpty() == true) { + pickedSymbolSet = null; + } + else { + // SymbolLocationSet constructor requires a positive-length array of Coordinate + Coordinate[] locations = new Coordinate[pickedStnPt.size()]; + + //System.out.println( "generatePickedSymbolSet: size ="+ pickedStnPt.size()); + int i = 0; + for (NctextStationInfo p : pickedStnPt) { + double lon, lat; + lon = p.getLongitude(); + lat = p.getLatitude(); + locations[i++] = new Coordinate(lon,lat); + } - // System.out.println( "generateSymbolSet: size ="+ points.size()); - int i = 0; - for (NctextStationInfo p : points) { - double lon, lat; - lon = p.getLongitude(); - lat = p.getLatitude(); - locations[i++] = new Coordinate(lon, lat); + Color[] colors = new Color[] {new Color(nctextuiResourceData.getPkStncolor().red, + nctextuiResourceData.getPkStncolor().green, + nctextuiResourceData.getPkStncolor().blue)}; + type = nctextuiResourceData.getPkStnmarkerType().toString(); + + pickedSymbolSet = new SymbolLocationSet ( + null, + colors, + lineWidth, + sizeScale, + clear, + locations, + category, + type); + + + } + + + } - } + /* (non-Javadoc) + * @see com.raytheon.viz.core.drawables.IRenderable#paint(com.raytheon.viz.core.IGraphicsTarget, com.raytheon.viz.core.drawables.PaintProperties) + */ + @Override + public void paintInternal(IGraphicsTarget target, PaintProperties paintProps) + throws VizException { + //System.out.println("paintInternal called!"); + IFont font = target.initializeFont("Monospace", + (float) (12 * nctextuiResourceData.getMarkerTextSize().getSoftwareSize()), null); - Color[] colors = new Color[] { new Color( - nctextuiResourceData.getColor().red, - nctextuiResourceData.getColor().green, - nctextuiResourceData.getColor().blue) }; - type = nctextuiResourceData.getMarkerType().toString(); - // System.out.println( "generateSymbolSet done size ="+ i); - symbolSet = new SymbolLocationSet(null, colors, lineWidth, - sizeScale, clear, locations, category, type); + generateSymbolForDrawing(); + + if (symbolSet != null) + { + + + DisplayElementFactory df = new DisplayElementFactory (target, this.descriptor); + ArrayList elements = df.createDisplayElements(symbolSet, paintProps); + for (IDisplayable each : elements) + { + try { + each.draw(target); + each.dispose(); + } + catch (Exception e) { + + //e.printStackTrace(); + //System.out.println("paintInternal caught draw exception!"); + } + } + } + if (pickedSymbolSet != null) + { + + + DisplayElementFactory df = new DisplayElementFactory (target, this.descriptor); + ArrayList elements = df.createDisplayElements(pickedSymbolSet, paintProps); + for (IDisplayable each : elements) + { + try { + each.draw(target); + each.dispose(); + } + catch (Exception e) { + + //e.printStackTrace(); + //System.out.println("paintInternal caught draw exception on pickedSymbolSet!"); + } + } + } + font.dispose(); + } - } - if (pickedStnPt.isEmpty() == true) { - pickedSymbolSet = null; - } else { - // SymbolLocationSet constructor requires a positive-length array of - // Coordinate - Coordinate[] locations = new Coordinate[pickedStnPt.size()]; - // System.out.println( "generatePickedSymbolSet: size ="+ - // pickedStnPt.size()); - int i = 0; - for (NctextStationInfo p : pickedStnPt) { - double lon, lat; - lon = p.getLongitude(); - lat = p.getLatitude(); - locations[i++] = new Coordinate(lon, lat); - } + - Color[] colors = new Color[] { new Color( - nctextuiResourceData.getPkStncolor().red, - nctextuiResourceData.getPkStncolor().green, - nctextuiResourceData.getPkStncolor().blue) }; - type = nctextuiResourceData.getPkStnmarkerType().toString(); + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.capabilities.IProjectableResource#isProjectable(org.opengis.referencing.crs.CoordinateReferenceSystem) + */ + public boolean isProjectable(CoordinateReferenceSystem mapData) { - pickedSymbolSet = new SymbolLocationSet(null, colors, lineWidth, - sizeScale, clear, locations, category, type); + return true; - } - - } - - /* - * (non-Javadoc) - * - * @see - * com.raytheon.viz.core.drawables.IRenderable#paint(com.raytheon.viz.core - * .IGraphicsTarget, com.raytheon.viz.core.drawables.PaintProperties) - */ - @Override - public void paintInternal(IGraphicsTarget target, PaintProperties paintProps) - throws VizException { - // System.out.println("paintInternal called!"); - IFont font = target.initializeFont("Monospace", - (12 * nctextuiResourceData.getMarkerTextSize() - .getSoftwareSize()), null); - - generateSymbolForDrawing(); - - if (symbolSet != null) { - - DisplayElementFactory df = new DisplayElementFactory(target, - this.descriptor); - ArrayList elements = df.createDisplayElements( - symbolSet, paintProps); - for (IDisplayable each : elements) { - try { - each.draw(target); - each.dispose(); - } catch (Exception e) { - - // e.printStackTrace(); - // System.out.println("paintInternal caught draw exception!"); - } - } - } - if (pickedSymbolSet != null) { - - DisplayElementFactory df = new DisplayElementFactory(target, - this.descriptor); - ArrayList elements = df.createDisplayElements( - pickedSymbolSet, paintProps); - for (IDisplayable each : elements) { - try { - each.draw(target); - each.dispose(); - } catch (Exception e) { - - // e.printStackTrace(); - // System.out.println("paintInternal caught draw exception on pickedSymbolSet!"); - } - } - } - font.dispose(); - } - - /* - * (non-Javadoc) - * - * @see - * com.raytheon.viz.core.rsc.capabilities.IProjectableResource#isProjectable - * (org.opengis.referencing.crs.CoordinateReferenceSystem) - */ - public boolean isProjectable(CoordinateReferenceSystem mapData) { - - return true; - - } - - /* - * (non-Javadoc) - * - * @see - * com.raytheon.viz.core.rsc.capabilities.IProjectableResource#project(org - * .opengis.referencing.crs.CoordinateReferenceSystem) - */ - @Override - public void project(CoordinateReferenceSystem mapData) throws VizException { - // System.out.println("NctextuiResource: project "); - } - - private static NctextuiMouseHandler getMouseHandler() { - - if (mouseHandler == null) { - - mouseHandler = new NctextuiMouseHandler(); + } + /* (non-Javadoc) + * @see com.raytheon.viz.core.rsc.capabilities.IProjectableResource#project(org.opengis.referencing.crs.CoordinateReferenceSystem) + */ + @Override + public void project(CoordinateReferenceSystem mapData) throws VizException { + //System.out.println("NctextuiResource: project "); + } + private static NctextuiMouseHandler getMouseHandler() { + + if ( mouseHandler == null ) { + + mouseHandler = new NctextuiMouseHandler(); + } return mouseHandler; - + } } + diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux32/.classpath b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux32/.classpath index bc74aabe31..ad32c83a78 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux32/.classpath +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux32/.classpath @@ -2,5 +2,6 @@ diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/.classpath b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/.classpath index bc74aabe31..ad32c83a78 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/.classpath +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/.classpath @@ -2,5 +2,6 @@ + diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/libbignsharp.so b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/libbignsharp.so index f3608f6675..65f4e5699c 100755 Binary files a/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/libbignsharp.so and b/ncep/gov.noaa.nws.ncep.ui.nsharp.linux64/libbignsharp.so differ diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp.win32/.classpath b/ncep/gov.noaa.nws.ncep.ui.nsharp.win32/.classpath index bc74aabe31..ad32c83a78 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp.win32/.classpath +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp.win32/.classpath @@ -2,5 +2,6 @@ + diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/INSTALL b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/INSTALL old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.64 b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.64 old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.f90 b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.f90 old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.linux b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile.linux old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile_backup_081124 b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Makefile_backup_081124 old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/SNDG b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/SNDG old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Sharp95 b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/Sharp95 old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/backup_nlist.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/backup_nlist.txt old mode 100644 new mode 100755 index b3d8a9d144..909eabf147 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/backup_nlist.txt +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/backup_nlist.txt @@ -1,938 +1,938 @@ - DATE / RAOB REPORT MUMR MUCAPE 500TEMP 7-5LR 0-6SHR 0-9SHR 0-3SHR SHIP MODEL SRH -95052300.DDC 6.00 15.3 4181 -9.6 7.5 19.4 26.8 23.4 2.0 3.00 325 -91051100.MAF 6.00 14.9 4692 -10.8 8.8 13.2 18.1 14.2 2.0 2.70 -37 -97061700.OUN 5.50 18.8 5751 -9.5 7.4 23.6 45.9 14.5 4.1 3.50 116 -99012200.LZK 5.00 12.3 2240 -17.3 7.6 26.3 32.1 23.0 2.2 3.00 294 -96061200.DDC 5.00 13.7 2820 -8.3 7.6 20.3 15.8 12.9 1.1 2.50 142 -92072600.DDC 5.00 17.4 4794 -4.6 6.8 17.4 14.6 18.2 1.0 0.80 176 -91052900.HON 5.00 15.2 3668 -12.3 8.0 40.7 36.0 25.0 5.1 3.50 269 -90070800.BIS 5.00 16.6 3717 -9.8 7.7 29.8 42.2 12.5 3.1 2.40 202 -57070300.RAP 5.00 15.8 4359 -6.7 7.7 22.9 39.3 13.9 1.8 3.40 130 -99060100.DDC 4.75 15.9 4387 -11.3 8.0 27.7 38.0 15.3 4.0 3.50 209 -99072600.LBF 4.50 16.4 4375 -6.7 7.9 12.9 16.1 9.5 1.1 2.60 60 -99050400.OUN 4.50 15.6 5195 -14.9 8.4 21.3 22.0 16.5 4.9 4.70 343 -99030600.LZK 4.50 11.7 1922 -18.5 8.2 22.8 39.2 21.4 1.8 2.10 360 -98052200.SGF 4.50 17.1 4642 -9.9 7.8 22.4 23.1 13.8 3.1 2.30 232 -98040800.ILX 4.50 10.2 1354 -19.7 7.2 21.2 25.1 20.1 0.9 2.60 180 -96102100.OUN 4.50 12.7 2995 -12.9 7.5 20.3 28.4 15.6 1.7 3.00 71 -96081100.LBF 4.50 13.3 2360 -8.4 6.2 26.1 22.0 26.5 1.0 2.60 326 -96062700.TFX 4.50 13.9 3835 -10.9 8.3 37.1 44.3 21.8 4.1 1.60 297 -96051000.TOP 4.50 15.6 3884 -11.1 8.8 18.3 22.3 22.1 2.4 3.30 234 -96050500.IAD 4.50 12.1 1906 -15.2 7.2 25.0 25.5 15.9 1.4 1.90 36 -96030700.JAN 4.50 14.0 2362 -12.5 6.8 34.9 36.9 16.8 2.2 0.60 196 -95060900.MAF 4.50 17.8 5653 -8.1 8.1 18.7 33.5 12.8 2.8 2.90 83 -95060500.MAF 4.50 14.9 4358 -8.6 7.6 23.2 32.0 16.0 2.2 2.90 181 -95051900.BMX 4.50 16.5 3340 -9.9 6.6 20.6 25.5 16.9 1.7 -999.00 247 -95051700.DDC 4.50 15.6 4878 -10.8 8.5 26.6 40.7 8.9 4.2 2.60 43 -94060800.LBF 4.50 13.0 3400 -9.5 7.8 18.7 18.4 8.1 1.4 2.40 109 -94042600.SEP 4.50 16.3 4409 -11.5 7.4 26.7 26.2 21.2 3.7 3.30 138 -94040300.OUN 4.50 10.1 2075 -17.0 7.6 31.2 39.3 18.7 1.9 2.10 163 -93101800.SEP 4.50 15.7 3958 -10.6 7.0 31.7 30.5 23.2 3.3 2.20 441 -93101300.SEP 4.50 14.2 3151 -13.1 8.0 22.3 31.8 15.0 2.4 2.90 307 -93092200.TOP 4.50 16.8 3665 -8.1 6.5 33.9 37.9 21.3 1.6 -999.00 460 -93092200.OVN 4.50 15.4 3685 -11.1 8.1 23.0 33.2 23.5 3.7 -999.00 216 -93072400.BIS 4.50 15.3 3597 -9.8 5.8 21.0 33.2 14.9 1.5 2.30 263 -93062700.OVN 4.50 15.0 3720 -10.0 6.3 22.3 28.9 9.4 1.8 3.10 140 -93060800.OUN 4.50 17.0 4917 -9.1 7.1 30.6 26.7 9.7 3.8 2.60 195 -93050100.DDC 4.50 11.1 3206 -16.5 8.0 24.0 29.9 15.4 2.6 3.70 194 -92073000.TOP 4.50 16.6 4074 -10.0 7.5 22.5 22.1 11.8 2.6 2.40 164 -92073000.OVN 4.50 16.6 4366 -11.4 7.4 22.3 23.7 13.9 3.1 3.20 216 -92062900.SEP 4.50 17.4 3761 -9.6 7.8 21.8 15.6 13.7 2.4 2.80 248 -92062800.DDC 4.50 13.8 2750 -11.3 7.8 20.6 41.3 15.2 1.6 2.90 315 -92062800.AMA 4.50 16.0 3950 -10.3 7.9 22.8 26.5 16.9 2.7 3.20 149 -91081400.GTF 4.50 11.5 2524 -13.2 8.5 25.8 28.9 15.3 1.9 2.00 213 -91072100.HON 4.50 20.1 5826 -6.1 6.8 22.8 33.9 14.3 2.5 1.90 180 -91042912.BRO 4.50 19.5 4180 -9.8 7.7 23.1 24.2 13.7 3.2 -999.00 254 -91032800.FNT 4.50 11.3 1681 -17.3 7.6 47.0 45.4 26.8 2.7 2.90 431 -90051600.OUN 4.50 16.7 4398 -9.0 7.6 25.5 44.9 23.2 2.9 3.60 180 -89080400.INL 4.50 17.4 3953 -11.5 8.3 18.6 29.2 7.3 2.8 1.00 36 -89070300.SEP 4.50 18.5 5261 -7.6 8.4 22.6 5.0 12.9 3.2 2.90 222 -89062700.GSO 4.50 17.6 4349 -7.3 6.3 14.2 6.4 7.8 1.1 0.90 52 -89060700.SEP 4.50 15.6 3272 -7.9 7.0 24.8 47.4 9.0 1.6 2.40 130 -89060400.MAF 4.50 14.0 3901 -10.0 8.5 20.6 33.6 6.6 2.2 2.20 58 -03062300.OAX 4.50 18.7 6203 -9.3 8.6 13.6 22.9 12.3 2.9 4.20 237 -03040400.OUN 4.50 11.9 2640 -15.1 7.3 24.0 23.9 13.4 1.9 2.30 187 -02091900.OUN 4.50 15.7 4268 -6.1 6.7 20.8 23.4 17.8 1.3 3.00 308 -02062400.ABR 4.50 17.2 5093 -10.5 8.2 26.3 30.9 16.9 4.5 3.50 187 -02060500.RNK 4.50 17.9 5399 -9.7 6.9 5.0 7.3 8.7 0.7 3.20 54 -02051200.TOP 4.50 15.8 4489 -11.9 8.1 26.0 26.5 13.7 4.1 3.30 224 -02051100.MAF 4.50 14.5 4658 -9.3 8.4 23.1 40.3 14.8 2.8 2.20 132 -01072100.GGW 4.50 13.5 3114 -10.7 7.7 28.3 30.5 15.8 2.2 2.80 354 -01071800.ABR 4.50 17.5 5177 -9.9 8.4 19.5 28.2 9.6 3.3 3.90 136 -01062100.DDC 4.50 15.2 4428 -10.7 7.8 19.0 25.2 13.4 2.4 3.20 400 -01061400.DDC 4.50 15.7 5244 -8.9 8.0 28.1 28.2 19.8 3.7 2.50 384 -01052500.JAN 4.50 13.5 3446 -15.1 7.5 21.8 31.4 17.4 2.6 2.70 240 -01051800.AMA 4.50 13.9 4695 -10.5 8.6 13.2 22.8 16.1 1.8 2.10 86 -01050700.SHV 4.50 15.7 2774 -12.5 6.5 15.7 22.1 9.0 1.3 1.70 110 -01050700.LZK 4.50 14.7 3512 -12.9 5.9 18.7 26.3 7.3 1.7 3.40 77 -01041500.DDC 4.50 13.1 3892 -18.3 9.0 43.1 54.7 24.4 8.2 2.50 233 -01040400.SGF 4.50 12.8 3277 -15.1 8.3 22.4 28.9 17.2 2.7 3.10 310 -04081000.DNR 4.25 12.9 3415 -9.1 8.0 15.0 15.4 16.2 1.1 3.20 270 -04071318.ILX 4.25 22.1 6811 -10.9 7.9 18.7 21.9 15.5 5.5 2.60 131 -04071300.LBF 4.25 19.5 7183 -7.3 8.6 14.7 20.5 10.3 2.9 3.70 68 -04071200.GGW 4.25 11.0 2390 -13.7 8.6 22.3 32.0 17.1 1.6 1.90 99 -04062200.AMA 4.25 13.8 3828 -8.9 8.0 26.2 40.5 17.8 2.2 2.30 141 -04053000.OUN 4.25 16.8 4526 -7.5 7.8 24.4 40.4 15.8 2.5 -999.00 224 -04052200.AMA 4.25 13.7 4265 -8.7 7.9 21.5 23.9 13.6 2.0 2.10 176 -04040400.MAF 4.25 12.0 2746 -14.7 7.0 19.5 31.1 14.4 1.5 2.70 262 -03051000.MHX 4.25 17.1 4373 -10.5 7.3 22.7 23.2 14.1 3.0 2.10 146 -03050518.BNA 4.25 16.1 2705 -12.9 7.1 37.0 37.2 18.3 3.4 -999.00 239 -03050500.SGF 4.25 15.7 5169 -13.5 7.6 38.4 50.7 30.0 7.3 2.90 348 -03040600.FWD 4.25 12.4 2487 -14.3 7.3 31.5 51.8 17.1 2.3 2.90 341 -01070300.LBF 4.25 16.7 5584 -8.7 8.5 18.0 24.7 14.2 2.8 4.20 154 -98063000.TOP 4.00 21.8 6490 -5.3 7.2 24.4 32.6 18.1 3.0 1.70 230 -98050800.FFC 4.00 17.3 4120 -12.3 7.7 31.0 51.6 17.1 4.7 2.20 172 -97082200.LBF 4.00 15.7 3974 -9.7 7.4 26.4 37.5 17.4 2.7 3.30 321 -96052300.LBF 4.00 13.5 2801 -11.1 8.0 27.8 43.7 18.5 2.1 2.90 303 -95102700.SGF 4.00 12.5 1922 -13.8 6.9 21.9 29.4 25.7 1.1 1.60 266 -95072600.DDC 4.00 18.3 5696 -10.1 8.8 21.3 19.2 17.1 4.5 3.30 238 -95072500.FTD 4.00 15.4 2897 -10.0 9.2 19.1 19.8 12.8 1.8 -999.00 168 -95051600.JAN 4.00 17.9 4861 -10.9 7.8 14.9 18.5 8.6 2.5 2.50 -35 -95050600.FTD 4.00 15.1 2036 -11.1 7.1 21.2 37.5 20.8 1.2 0.60 304 -93072300.HON 4.00 15.7 3720 -8.1 6.0 19.1 22.5 15.4 1.2 1.50 130 -93071600.RAP 4.00 14.1 3230 -7.5 7.7 25.0 35.8 18.6 1.5 3.20 97 -91041300.SEP 4.00 16.9 5008 -10.6 6.8 21.8 27.4 12.2 3.0 3.40 137 -90090200.RAP 4.00 11.3 1733 -7.4 7.5 23.6 32.7 14.1 0.6 2.10 181 -90070100.DAY 4.00 16.6 3541 -9.4 7.1 19.9 24.5 8.6 1.8 1.80 154 -90060900.TOP 4.00 18.5 5571 -10.1 7.3 22.6 16.4 14.8 3.9 2.70 252 -90051900.AMA 4.00 11.5 2732 -9.3 7.7 26.1 30.4 18.5 1.3 0.90 301 -90051500.AMA 4.00 14.8 4543 -9.9 8.2 24.7 33.8 19.2 3.0 2.60 473 -89071800.LBF 4.00 15.4 3622 -9.4 8.1 38.9 37.6 22.9 3.7 2.90 361 -89062700.DDC 4.00 14.3 2840 -8.4 7.6 19.4 19.2 12.7 1.1 2.20 167 -89061100.AMA 4.00 15.8 3666 -8.7 7.6 11.0 19.2 11.1 1.0 -999.00 87 -04071318.DVN 4.00 20.8 6090 -11.1 8.4 25.9 22.3 22.5 6.9 2.80 191 -03050300.BMX 4.00 15.2 4593 -15.7 7.9 32.4 30.5 8.1 6.4 2.90 72 -02061300.DDC 4.00 19.5 6234 -6.9 7.6 19.8 32.7 17.2 2.9 3.70 126 -98062000.OUN 3.50 19.0 6048 -7.1 7.8 15.4 11.2 13.7 2.2 3.90 209 -98052500.OUN 3.50 18.0 5688 -10.7 8.1 21.9 28.7 9.9 4.4 4.20 172 -98052100.TOP 3.50 17.2 4700 -12.5 8.4 10.5 23.7 9.8 2.0 3.80 100 -97062100.LBF 3.50 17.3 6058 -9.3 8.8 23.1 25.1 13.9 4.5 3.70 129 -96062000.OAX 3.50 16.3 4081 -9.8 8.6 19.0 24.4 18.9 2.4 -999.00 271 -90061900.BIS 3.50 11.1 1968 -13.5 8.2 28.4 38.0 17.4 1.6 2.90 257 -90060900.IAD 3.50 17.2 3994 -10.9 7.1 23.7 20.0 18.3 2.9 0.80 203 -90040600.SEP 3.50 12.4 3764 -14.9 7.8 25.2 36.8 15.4 3.1 2.60 305 -90031400.OUN 3.50 14.6 3950 -16.1 7.2 20.2 49.4 12.3 3.1 2.80 170 -89070300.STC 3.50 15.6 3556 -8.2 7.0 15.8 21.4 8.5 1.1 1.40 128 -02081200.DDC 3.50 14.6 3415 -8.7 8.0 15.7 27.7 10.7 1.2 3.10 157 -01061500.FWD 3.50 17.3 4260 -9.7 7.9 15.1 9.7 11.1 1.9 2.20 74 -01041000.SGF 3.50 13.0 3476 -14.5 7.9 21.6 30.3 12.5 2.5 2.60 141 -91060500.DDC 3.25 16.9 4631 -7.9 6.5 15.3 15.4 11.0 1.4 3.50 74 -99060200.FWD 3.00 17.3 4928 -11.5 8.8 15.0 30.3 15.3 2.9 4.50 171 -98062900.TOP 3.00 22.0 6870 -7.7 7.0 20.6 27.3 19.3 3.8 2.40 335 -98062500.BIS 3.00 15.5 4591 -13.3 8.1 15.9 15.4 15.5 2.8 3.00 89 -98062500.ABR 3.00 21.0 4446 -13.7 8.8 17.4 28.7 11.2 4.4 3.70 42 -98061400.OAX 3.00 13.3 2830 -10.5 7.7 24.4 45.4 15.3 1.7 3.40 219 -98052400.DDC 3.00 11.6 2630 -12.9 6.7 22.0 27.7 9.8 1.3 2.30 101 -97061000.FWD 3.00 15.6 2699 -9.9 7.0 18.7 24.1 10.9 1.2 1.30 98 -97052600.OUN 3.00 17.2 5143 -7.7 5.9 30.4 32.4 15.0 2.8 2.60 148 -96070800.LBF 3.00 15.3 3341 -6.4 7.0 30.0 41.5 20.6 1.6 2.20 390 -96062012.LBF 3.00 15.0 3262 -8.6 7.9 18.5 25.0 16.9 1.7 -999.00 195 -96061400.UNR 3.00 13.1 3614 -11.0 8.4 18.0 14.8 12.4 1.8 2.00 63 -96052700.OUN 3.00 15.2 3034 -9.4 6.9 29.8 33.6 22.5 2.0 2.00 330 -96042000.ILX 3.00 12.9 2394 -14.6 7.1 27.0 39.5 16.4 2.0 -999.00 249 -96033100.SHV 3.00 12.7 2841 -17.1 7.6 27.4 35.5 20.1 2.9 3.10 163 -95082700.GGW 3.00 11.7 2973 -12.6 8.3 26.8 41.0 13.6 2.2 1.70 162 -95082300.INL 3.00 15.4 2824 -11.6 8.0 30.9 26.5 25.4 2.8 2.10 695 -95072400.DDC 3.00 15.9 3645 -9.9 8.2 18.2 32.6 11.8 1.9 3.60 31 -95071500.LBF 3.00 14.4 3052 -7.0 6.5 15.9 24.7 13.9 0.7 2.10 159 -95062300.LBF 3.00 12.9 2776 -11.1 7.9 21.0 19.8 15.3 1.5 2.80 221 -95043000.FTD 3.00 15.0 4416 -13.3 8.1 21.9 31.7 15.6 3.5 3.40 166 -95021400.PBI 3.00 16.5 2393 -11.0 5.9 27.1 33.4 13.8 1.6 0.60 117 -94060600.DDC 3.00 14.8 4698 -8.8 8.7 15.6 18.6 13.1 1.9 2.10 248 -94052600.FNT 3.00 10.8 2240 -16.3 6.1 17.8 25.8 12.8 1.0 2.40 113 -94032800.CKL 3.00 15.3 2066 -9.6 6.3 38.6 36.3 30.5 1.7 0.60 429 -93091900.DDC 3.00 12.4 1941 -10.4 7.2 29.5 46.6 16.8 1.2 2.80 233 -93091900.AMA 3.00 12.4 1912 -9.0 7.7 32.7 35.4 16.5 1.2 2.40 264 -93082300.DDC 3.00 13.3 2608 -7.8 7.7 19.5 27.0 13.1 0.9 2.00 83 -93070900.OVN 3.00 19.7 5546 -6.8 6.9 29.4 24.3 16.9 3.4 0.60 345 -93070200.DDC 3.00 17.1 4895 -5.2 7.2 16.4 21.4 13.3 1.2 2.80 237 -93060600.HAT 3.00 16.0 4948 -13.5 8.3 15.5 17.2 12.6 3.1 3.90 70 -93050600.MAF 3.00 13.9 3784 -9.6 7.2 27.0 25.4 18.6 2.2 2.50 149 -92070500.OVN 3.00 17.3 5051 -9.3 7.4 21.8 33.3 16.1 3.0 3.50 243 -92062700.MAF 3.00 13.9 3224 -8.2 7.7 23.7 38.8 13.0 1.5 2.50 253 -92032600.TBW 3.00 12.6 1934 -14.0 6.5 31.1 37.0 18.6 1.6 1.10 196 -91052700.DDC 3.00 17.0 5256 -10.5 8.4 21.7 29.3 13.3 3.8 2.90 81 -91040912.1M1 3.00 14.2 3345 -15.2 8.0 19.7 20.8 11.5 2.6 -999.00 134 -91032700.TOP 3.00 12.7 2491 -12.3 6.8 27.7 31.7 21.6 1.6 2.50 282 -90052700.OUN 3.00 17.5 4621 -8.8 7.6 23.8 25.1 20.4 2.9 4.00 255 -90051500.OUN 3.00 16.8 4798 -10.7 7.8 19.8 29.7 12.5 3.0 4.20 186 -89060700.AMA 3.00 15.4 4752 -9.5 8.5 30.5 55.6 21.7 4.1 2.40 303 -89060500.OUN 3.00 12.5 1640 -11.6 7.0 15.7 23.9 8.8 0.6 0.70 53 -04081000.DDC 3.00 14.6 3147 -9.7 7.7 21.0 22.0 13.0 1.6 3.00 222 -04070200.AMA 3.00 16.9 5137 -8.1 7.4 14.0 16.6 18.0 1.7 3.00 80 -04052300.OAX 3.00 14.7 4320 -12.3 7.6 32.9 29.4 20.0 4.4 3.00 289 -04051700.DDC 3.00 10.0 2200 -11.9 8.4 31.7 30.2 20.5 1.6 1.50 390 -04042200.OUN 3.00 12.2 2363 -13.5 7.0 24.3 33.8 16.9 1.5 2.70 385 -04041900.OAX 3.00 11.9 3136 -15.1 8.2 33.8 44.9 20.5 3.6 1.90 394 -03062800.DDC 3.00 11.4 2329 -9.3 6.7 16.9 26.8 10.8 0.6 2.20 138 -03062400.LBF 3.00 18.6 6189 -8.7 8.1 30.8 31.6 21.7 5.7 4.80 381 -03050420.SGF 3.00 15.8 4524 -11.9 7.1 35.4 47.9 25.2 4.8 3.20 480 -03042100.SHV 3.00 15.5 2947 -13.5 7.5 24.0 38.0 14.3 2.5 0.90 110 -01090900.FWD 3.00 19.0 4304 -8.9 8.2 14.1 12.0 7.7 1.9 2.70 97 -01053000.AMA 3.00 16.4 5827 -9.7 8.2 26.1 29.7 25.0 4.5 2.80 268 -01051900.LZK 3.00 16.6 4269 -12.5 8.1 18.5 25.8 9.9 3.0 2.70 98 -00080600.OAX 3.00 19.0 5525 -7.1 7.5 15.0 22.8 9.4 1.9 3.10 56 -00062900.MAF 3.00 14.8 3565 -6.3 6.3 10.5 16.7 9.6 0.5 1.80 29 -00050400.FWD 3.00 13.2 2690 -14.3 6.3 21.9 28.5 19.0 1.6 3.00 327 -99081800.LBF 2.75 18.3 5554 -8.9 7.8 23.7 25.1 10.7 3.8 3.40 143 -99070100.MAF 2.75 14.3 3989 -2.5 7.5 14.9 13.7 10.5 0.4 2.00 146 -99061900.DDC 2.75 13.9 4137 -11.3 7.3 22.5 28.8 13.4 2.4 2.40 346 -99061200.AMA 2.75 14.7 4400 -10.3 7.7 26.2 36.6 18.8 3.1 2.40 210 -99060300.AMA 2.75 15.6 5087 -10.3 8.7 18.6 49.2 15.5 3.0 2.50 289 -98061400.OUN 2.75 20.5 6689 -6.5 7.7 32.8 42.7 17.9 5.1 4.00 262 -98052500.DDC 2.75 12.5 2643 -12.1 7.2 27.5 32.0 13.7 1.8 2.70 180 -98040900.BMX 2.75 15.8 3341 -13.9 7.9 40.1 51.5 25.9 5.3 2.00 296 -97061600.DDC 2.75 13.5 3187 -10.9 7.7 23.3 39.3 11.9 1.9 2.70 26 -97061200.TOP 2.75 12.6 1552 -11.7 7.1 23.5 30.2 11.6 0.9 0.90 141 -97052700.SGF 2.75 16.3 4440 -9.9 7.0 22.6 25.0 16.3 2.6 2.60 276 -97052700.OUN 2.75 18.0 5907 -8.7 6.4 17.5 23.9 17.6 2.4 3.70 271 -97042100.SGF 2.75 9.4 1773 -16.5 7.4 25.4 23.9 23.3 1.2 2.00 405 -97041100.MAF 2.75 11.9 4076 -15.0 8.2 23.7 30.7 20.8 3.2 2.10 260 -97032900.BNA 2.75 11.3 1569 -15.6 7.4 25.2 15.3 18.1 1.2 3.00 389 -97012500.SIL 2.75 13.0 2563 -16.5 7.5 18.3 25.8 18.3 1.7 2.80 145 -96092100.FTD 2.75 16.4 2870 -9.4 6.5 26.4 32.6 15.7 1.7 -999.00 136 -96083000.DEN 2.75 11.7 2478 -9.1 7.8 26.2 28.9 17.6 1.2 2.30 86 -96080100.DEN 2.75 13.5 3920 -7.8 8.5 22.6 26.3 15.0 1.8 2.10 276 -96072400.DDC 2.75 14.3 3068 -11.1 8.6 27.6 36.6 16.8 2.6 2.70 203 -96062500.AMA 2.75 13.9 3684 -9.4 8.5 22.9 28.2 7.0 2.1 1.90 123 -96061400.LBF 2.75 12.4 2384 -8.6 6.5 15.4 25.0 12.0 0.6 2.20 102 -96061300.FFC 2.75 13.7 2726 -9.1 5.7 12.9 13.1 12.9 0.6 1.00 152 -96061200.AMA 2.75 11.9 3029 -8.8 8.0 24.3 30.2 18.3 1.4 1.90 373 -96060300.SGF 2.75 11.7 2739 -15.9 7.1 26.4 35.9 14.8 2.2 2.10 90 -96060200.JAN 2.75 16.1 1789 -7.5 5.5 12.7 20.3 11.3 0.3 0.60 168 -96060100.ABR 2.75 12.6 2276 -13.4 6.2 22.4 27.2 24.6 1.2 2.20 370 -96053000.MAF 2.75 14.9 3675 -7.0 7.7 35.1 40.6 19.0 2.3 2.50 321 -96052600.MAF 2.75 14.1 3464 -6.2 7.7 28.7 42.1 22.5 1.5 2.90 240 -96052500.AMA 2.75 13.5 3927 -11.3 9.1 20.3 5.0 16.4 2.5 1.90 101 -96051800.OAX 2.75 15.3 4523 -11.1 8.8 16.0 21.2 12.9 2.5 -999.00 68 -96051700.UNR 2.75 14.8 4365 -8.1 8.0 25.5 28.7 15.0 2.4 2.50 219 -96042200.TOP 2.75 10.9 1522 -16.6 7.3 45.6 54.3 14.6 2.1 2.30 145 -96042200.OUN 2.75 12.7 2100 -10.9 5.9 38.3 48.8 18.5 1.5 2.30 500 -96031600.FFC 2.75 9.6 890 -19.2 7.8 28.8 55.2 20.5 0.8 2.20 353 -95081800.BIS 2.75 18.4 5584 -7.0 7.7 10.6 17.3 10.6 1.3 3.30 142 -95072400.AMA 2.75 13.3 2225 -7.8 8.5 21.6 25.1 13.1 1.0 2.90 124 -95071500.GRB 2.75 19.0 5409 -8.5 8.1 12.1 9.0 8.0 1.9 3.00 69 -95071200.OKX 2.75 13.9 2900 -15.6 6.9 12.7 13.6 8.1 1.2 2.40 48 -95070300.DDC 2.75 14.2 2905 -9.6 6.8 18.2 21.4 12.3 1.1 2.30 111 -95070300.AMA 2.75 14.7 3838 -11.5 8.8 22.8 29.0 8.2 2.9 2.50 115 -95062800.LBF 2.75 12.4 2880 -10.1 7.7 22.0 19.7 13.9 1.4 2.50 208 -95062100.OKX 2.75 17.1 3918 -9.8 7.1 18.4 25.8 11.4 2.0 1.00 18 -95060300.AMA 2.75 12.4 3024 -9.6 8.2 22.4 37.2 15.7 1.5 2.00 346 -95052200.LBF 2.75 10.4 2027 -14.9 7.4 28.3 33.3 18.7 1.5 2.10 221 -95051400.UMN 2.75 16.5 5245 -10.3 6.9 28.0 26.2 22.3 3.9 3.20 211 -95042000.FTD 2.75 14.6 2621 -13.3 7.7 31.2 59.2 25.8 3.2 -999.00 242 -95040900.TOP 2.75 10.7 2836 -17.5 9.2 21.4 31.9 16.5 2.4 1.90 120 -94070700.HON 2.75 16.5 2845 -8.8 7.2 20.5 18.6 10.2 1.4 0.60 159 -94070200.OAX 2.75 18.5 5257 -10.1 8.0 26.5 25.4 15.5 4.7 3.20 416 -94070100.STC 2.75 14.1 3635 -11.4 7.2 27.2 25.1 19.0 2.6 2.70 399 -94062600.JAN 2.75 16.1 2842 -9.5 6.4 24.0 32.8 12.4 1.5 0.90 130 -94062500.HON 2.75 11.8 1904 -10.8 6.4 27.8 33.5 15.4 1.0 2.20 211 -94061800.AMA 2.75 11.9 2676 -7.0 8.2 11.0 11.3 10.7 0.5 1.60 171 -94061200.TOP 2.75 13.9 2239 -9.5 6.6 23.9 24.4 15.8 1.1 0.90 117 -94061200.AMA 2.75 14.7 4015 -8.0 7.8 26.7 19.9 18.4 2.2 2.70 302 -94061100.AMA 2.75 12.3 2164 -8.3 7.3 19.5 20.3 16.6 0.7 2.80 229 -94060600.TOP 2.75 16.5 3953 -9.3 8.1 16.1 27.7 15.4 1.8 2.50 394 -94060500.HON 2.75 14.2 3749 -11.6 8.5 21.4 19.2 12.0 2.5 2.40 202 -94053000.SEP 2.75 17.5 5032 -10.6 8.2 27.0 23.8 16.1 4.7 3.90 291 -94052500.OUN 2.75 15.0 3912 -11.5 7.4 22.0 36.2 13.2 2.5 3.00 122 -94041100.UMN 2.75 12.6 2036 -16.5 7.6 46.3 45.4 19.9 2.8 -999.00 125 -94012700.GGG 2.75 12.7 1841 -15.9 6.8 31.0 32.3 17.5 1.8 0.70 288 -93102000.DRT 2.75 15.5 3433 -8.9 6.4 25.4 34.0 13.4 1.8 1.60 35 -93101900.GGG 2.75 15.7 3105 -9.8 6.9 23.5 33.9 10.3 1.8 0.70 105 -93101300.CRP 2.75 17.3 4367 -8.6 6.3 20.2 29.8 14.8 1.9 1.50 227 -93090400.IAD 2.75 15.6 2779 -5.9 5.7 15.2 15.6 12.4 0.5 0.60 149 -93070700.DDC 2.75 17.0 5334 -6.0 7.2 27.9 28.2 16.5 2.5 3.10 154 -93070700.AMA 2.75 17.0 5327 -4.7 7.8 21.3 20.0 11.4 1.6 3.80 127 -93070500.DDC 2.75 17.1 4186 -5.4 6.7 30.6 34.9 16.6 1.8 1.20 146 -93062400.LBF 2.75 16.0 3944 -8.6 8.1 21.9 33.8 18.1 2.2 2.80 178 -93062400.DEN 2.75 11.7 3442 -9.6 8.8 32.0 42.3 15.8 2.5 1.80 211 -93061900.AMA 2.75 12.8 2140 -7.8 7.0 22.7 23.3 14.4 0.8 1.90 146 -93051600.DDC 2.75 12.8 3614 -9.8 6.6 19.4 23.7 12.6 1.3 2.50 161 -93050600.AMA 2.75 13.2 4478 -13.6 8.6 34.6 38.4 16.6 5.5 2.00 340 -93050100.AMA 2.75 11.6 4085 -14.5 8.1 25.7 15.8 15.3 3.2 1.90 234 -93042900.MAF 2.75 11.7 2435 -10.9 7.1 29.3 37.4 20.8 1.5 2.20 551 -93042800.MAF 2.75 10.4 1494 -10.6 6.9 19.6 25.8 12.9 0.5 1.80 150 -93042500.UMN 2.75 11.4 2317 -14.6 6.9 25.2 33.1 18.2 1.5 2.40 198 -93042000.GGG 2.75 12.4 2342 -13.3 8.0 26.7 28.4 17.5 1.9 2.70 156 -93040200.WAL 2.75 10.9 1625 -18.5 7.3 30.7 48.4 26.8 1.7 2.40 200 -93033100.UMN 2.75 11.1 2598 -16.5 6.4 29.7 28.9 19.7 2.1 2.10 117 -93033100.1M1 2.75 11.9 2471 -15.1 7.2 30.2 27.1 17.8 2.2 2.80 54 -92101600.SEP 2.75 14.6 3654 -12.1 7.7 16.4 22.7 12.6 1.8 2.90 227 -92073000.LBF 2.75 15.0 3544 -10.3 7.9 25.7 33.8 22.0 2.5 3.00 335 -92062700.AMA 2.75 14.1 3165 -10.0 7.7 16.6 29.9 12.4 1.3 2.90 191 -92061900.DDC 2.75 12.8 2598 -8.3 7.9 25.1 40.5 15.7 1.2 2.70 114 -92061900.BIS 2.75 11.0 1791 -14.4 6.9 27.4 24.4 13.0 1.2 2.50 106 -92061300.AMA 2.75 14.7 2821 -8.8 7.2 19.1 36.4 12.0 1.1 2.70 165 -92061200.MAF 2.75 13.8 2387 -8.2 7.4 26.7 34.6 13.3 1.2 2.00 178 -92060500.AMA 2.75 13.4 2870 -9.4 7.5 17.5 25.9 12.2 1.1 2.60 249 -92030600.1M1 2.75 11.5 2572 -21.1 7.2 22.5 26.7 17.3 2.3 2.30 194 -92021500.UMN 2.75 10.2 1724 -16.9 6.4 33.2 28.2 24.2 1.4 2.20 289 -91072200.HON 2.75 19.3 4474 -6.8 7.2 17.3 24.1 11.1 1.7 -999.00 198 -91070500.GGW 2.75 11.4 2277 -9.9 7.0 17.5 23.9 6.7 0.7 2.20 144 -91070500.BIS 2.75 13.3 2851 -9.3 6.4 21.4 26.6 19.3 1.1 2.40 206 -91062000.HON 2.75 13.9 2691 -10.5 7.0 22.1 20.0 16.1 1.4 1.20 282 -91061900.LBF 2.75 13.0 3592 -12.0 8.6 15.2 20.9 13.5 1.7 2.60 219 -91061500.GRB 2.75 17.6 3430 -8.7 6.7 13.9 17.0 21.7 1.1 0.60 161 -91061500.BIS 2.75 13.0 2343 -11.9 6.6 22.5 25.2 13.2 1.2 2.60 152 -91060500.OVN 2.75 14.6 2813 -10.1 6.5 17.1 19.6 8.4 1.0 3.10 177 -91053000.RAP 2.75 16.8 4287 -10.2 6.8 18.2 19.0 13.0 2.1 2.00 159 -91053000.OVN 2.75 10.9 2814 -15.7 8.1 14.5 28.4 14.3 1.3 2.70 31 -91052500.AMA 2.75 13.7 3416 -10.5 7.0 17.4 13.8 17.0 1.3 2.50 124 -91051800.UMN 2.75 15.1 3444 -11.0 7.4 11.9 21.0 9.4 1.1 1.20 59 -91051700.UMN 2.75 15.9 3299 -10.6 7.6 16.1 11.8 14.4 1.5 1.90 174 -91051200.RAP 2.75 14.1 4430 -11.0 7.9 23.5 33.5 26.6 2.9 2.50 437 -91051100.AMA 2.75 15.6 5629 -10.7 9.0 16.5 21.5 14.5 3.2 2.50 314 -91042800.GGG 2.75 18.9 4554 -10.5 7.2 29.5 19.6 15.4 4.4 2.20 140 -91042700.OUN 2.75 16.6 4248 -11.5 7.0 23.6 26.4 20.6 3.0 3.70 376 -91042700.GGG 2.75 18.9 5164 -10.7 8.2 18.9 27.6 12.4 3.7 2.70 209 -91041300.OUN 2.75 14.1 4063 -13.7 8.0 22.0 25.1 17.1 3.1 2.90 205 -91040300.OUN 2.75 10.1 1560 -19.8 7.3 22.6 41.7 15.1 1.2 1.50 275 -91032700.DDC 2.75 12.4 3132 -14.2 8.2 40.7 44.0 18.9 4.2 2.10 160 -91032200.UMN 2.75 11.5 2599 -15.3 7.0 33.0 35.3 18.8 2.4 2.50 371 -90090600.STC 2.75 19.5 4798 -6.8 6.2 21.0 17.1 14.7 1.9 1.00 294 -90082800.SSM 2.75 18.2 4669 -8.5 6.2 31.6 29.9 20.5 3.2 1.10 335 -90081100.LBF 2.75 14.8 3971 -9.0 7.5 25.6 21.5 14.3 2.3 2.90 282 -90070700.BIS 2.75 14.9 3274 -7.5 6.9 19.0 25.7 12.9 1.1 2.20 316 -90070300.BIS 2.75 21.3 6982 -6.3 8.2 23.0 29.6 14.9 4.0 4.60 172 -90061900.LBF 2.75 19.2 7070 -6.1 8.4 30.2 38.1 18.5 4.8 1.30 266 -90060200.STC 2.75 13.4 2697 -13.3 8.5 18.6 17.2 10.4 1.7 2.60 132 -90060200.LBF 2.75 13.6 3719 -10.8 7.9 15.6 29.4 16.4 1.5 2.80 89 -90053100.GGG 2.75 19.3 4700 -5.7 6.1 27.2 25.7 21.5 1.9 2.50 317 -90052000.OUN 2.75 15.3 4565 -10.8 7.1 13.7 14.7 12.1 1.7 3.90 94 -90051900.LBF 2.75 12.1 3954 -13.9 8.6 25.1 24.6 16.2 3.2 2.70 398 -90051700.GGG 2.75 17.5 3234 -8.3 7.2 24.7 35.1 17.6 1.9 0.60 304 -90050100.AHN 2.75 14.9 4557 -12.6 7.7 14.7 9.3 19.7 2.2 2.70 92 -90042800.GGG 2.75 12.9 2263 -14.9 6.6 14.1 25.3 12.8 0.9 3.70 84 -90041700.OUN 2.75 13.6 3717 -15.0 8.3 11.5 20.5 17.2 1.6 4.70 152 -90031400.PIA 2.75 12.4 2115 -14.4 6.9 18.1 24.1 15.3 1.1 3.70 206 -90021600.JAN 2.75 15.2 2047 -10.9 6.6 20.9 34.6 18.9 1.1 -999.00 124 -89090400.LBF 2.75 17.3 4400 -8.6 8.3 29.6 38.8 8.6 3.7 3.30 223 -89082900.STC 2.75 14.6 1959 -10.0 6.8 26.3 44.7 18.0 1.2 1.10 147 -89082200.STC 2.75 16.2 3346 -11.1 6.9 20.6 30.6 11.9 1.9 1.20 173 -89082200.OMA 2.75 17.9 3959 -8.3 7.0 22.2 45.4 15.0 2.1 0.90 138 -89082200.HON 2.75 15.6 4160 -9.4 6.9 22.9 28.9 14.8 2.2 3.30 107 -89081600.AMA 2.75 12.8 2669 -7.1 6.9 17.0 24.9 10.5 0.6 2.50 158 -89062600.RAP 2.75 11.5 2246 -13.8 7.8 31.3 30.4 20.0 2.0 2.60 301 -89061300.AMA 2.75 14.4 3611 -10.8 8.1 15.8 22.1 9.9 1.6 3.00 79 -89060300.TOP 2.75 13.7 2586 -12.6 7.0 19.5 39.7 12.4 1.4 2.00 118 -89060300.MAF 2.75 11.9 2291 -8.4 7.6 19.3 32.2 13.3 0.8 2.20 147 -89060200.MAF 2.75 14.1 2971 -10.4 7.9 24.5 27.4 8.5 1.9 2.80 104 -58042200.FWH 2.75 13.3 3338 -16.1 7.8 37.0 49.4 25.5 4.7 2.40 276 -04070500.DDC 2.75 14.3 3819 -10.3 8.3 18.6 30.5 14.4 2.0 2.50 161 -04060300.FWD 2.75 16.9 4767 -11.1 8.7 19.1 24.1 14.1 3.4 -999.00 157 -04051300.OUN 2.75 16.8 5740 -11.5 8.2 15.2 20.9 12.4 3.1 3.60 131 -04051100.DNR 2.75 10.6 3995 -12.9 9.2 28.3 16.6 18.2 3.2 1.50 379 -04050600.WAL 2.75 9.3 1861 -21.3 7.2 20.2 28.3 21.3 1.2 1.40 239 -04040500.CRP 2.75 14.9 2478 -12.1 6.7 22.4 20.6 7.0 1.5 0.60 184 -04032800.OUN 2.75 12.6 2904 -15.9 7.8 23.3 31.1 16.4 2.4 2.80 315 -04032718.DDC 2.75 13.2 4133 -17.3 8.0 24.6 26.6 14.4 4.2 2.30 143 -03100600.AMA 2.75 12.2 2542 -10.3 6.4 24.1 30.2 12.9 1.1 2.50 50 -03091100.MAF 2.75 13.3 2808 -6.5 6.8 10.3 9.0 7.4 0.4 1.40 80 -03091000.DDC 2.75 14.8 3620 -7.7 7.5 12.1 15.8 11.3 0.9 3.00 233 -03061400.AMA 2.75 12.3 3153 -13.3 8.3 21.7 24.7 13.7 2.1 2.10 35 -03060500.AMA 2.75 11.9 2647 -11.9 7.6 23.0 28.5 13.1 1.5 2.10 167 -03051700.SHV 2.75 16.3 3995 -10.9 7.4 23.2 13.9 19.6 2.8 2.70 242 -03051600.AMA 2.75 14.1 3706 -10.3 8.9 42.9 37.7 34.9 4.7 -999.00 632 -03051400.SHV 2.75 16.7 3920 -9.5 7.2 27.2 37.0 19.3 2.8 0.80 389 -03051000.OUN 2.75 16.8 5328 -11.1 8.3 27.5 34.8 16.8 5.1 3.60 182 -03050700.FWD 2.75 17.8 5303 -9.7 7.1 30.4 36.2 8.4 4.5 3.50 126 -03050618.SGF 2.75 15.6 5492 -14.7 7.7 32.0 40.6 17.8 7.1 2.80 313 -03050100.TOP 2.75 13.1 3776 -14.1 7.8 17.2 19.6 13.9 2.1 2.70 117 -03042900.SGF 2.75 13.1 3399 -16.7 8.5 5.0 19.6 4.8 0.7 2.80 53 -03042600.BMX 2.75 14.2 3921 -13.3 6.2 35.8 33.5 26.6 3.8 2.70 89 -03042500.LZK 2.75 13.8 3423 -15.7 7.6 20.9 31.0 20.0 2.7 3.30 212 -03031300.SHV 2.75 13.5 2901 -15.3 7.1 17.1 24.1 11.0 1.6 2.00 162 -02081200.LBF 2.75 13.3 3735 -9.9 8.7 13.1 11.8 10.5 1.3 2.10 222 -02072700.TOP 2.75 19.3 6406 -5.3 6.9 18.2 19.3 9.1 1.9 2.60 131 -02072000.TOP 2.75 17.5 4986 -7.5 7.3 10.0 12.7 8.5 1.1 2.70 197 -02062500.ABR 2.75 15.1 4208 -7.1 6.8 19.1 19.3 11.1 1.3 3.10 20 -02062400.BIS 2.75 16.0 3559 -9.7 6.8 28.0 24.8 25.2 2.4 2.40 298 -02061300.AMA 2.75 13.7 3027 -8.5 8.4 29.6 33.0 18.7 2.0 2.50 65 -02060500.AMA 2.75 13.2 2947 -11.5 7.6 32.1 45.0 17.9 2.5 2.70 309 -02052400.AMA 2.75 13.8 4729 -13.3 8.3 28.8 21.8 18.5 4.7 2.30 258 -02051800.DRT 2.75 16.0 5077 -10.5 8.1 8.8 6.3 5.2 1.4 2.60 15 -01112418.BMX 2.75 15.1 2902 -11.3 6.1 26.9 31.9 22.2 1.9 0.80 328 -01072500.GGW 2.75 11.5 1714 -11.3 6.9 26.7 32.1 18.2 0.9 2.20 350 -01071900.BIS 2.75 17.8 5738 -9.9 8.6 21.8 28.8 14.1 4.3 2.90 183 -01071900.ABR 2.75 17.5 5356 -10.5 8.8 18.1 22.7 3.4 3.6 2.70 35 -01071800.INL 2.75 17.0 4580 -12.9 7.8 11.9 12.8 11.8 2.1 0.80 154 -01070100.RAP 2.75 14.3 3235 -10.7 7.7 30.8 40.7 12.9 2.7 2.60 114 -01061900.MPX 2.75 15.6 5114 -11.9 9.2 33.1 31.9 19.0 6.6 3.40 154 -01061700.TOP 2.75 15.7 4594 -13.7 8.5 22.1 26.6 15.7 4.2 3.40 214 -01061700.LMN 2.75 14.1 4093 -10.7 8.0 19.4 26.9 9.3 2.2 3.50 195 -01061400.OAX 2.75 17.2 4956 -11.3 9.0 20.4 25.5 18.5 4.0 3.80 153 -01061000.ABR 2.75 13.8 3452 -12.1 7.8 24.6 32.3 16.6 2.5 3.60 158 -01060800.DNR 2.75 13.9 3440 -8.7 7.2 25.3 21.9 7.4 1.7 3.10 -26 -01060600.AMA 2.75 14.9 4665 -8.9 7.2 15.8 15.6 11.9 1.6 2.30 191 -01052500.FFC 2.75 11.7 2338 -14.5 6.4 18.1 21.4 19.6 1.0 2.50 240 -01050620.LMN 2.75 15.4 4496 -16.1 7.3 11.5 20.9 7.3 2.1 3.10 60 -01042100.OAX 2.75 12.4 3283 -15.3 7.7 28.1 32.7 23.5 3.0 2.40 282 -01040400.LZK 2.75 15.2 4223 -15.1 8.5 18.1 24.8 11.9 3.4 3.10 105 -00121618.BMX 2.75 13.2 2219 -14.1 6.7 32.9 45.8 25.0 2.1 0.90 266 -00072700.OAX 2.75 18.5 5048 -9.7 8.0 21.8 23.2 16.7 3.6 2.60 215 -00072500.LBF 2.75 17.1 5901 -8.9 8.5 24.5 29.4 22.2 4.2 2.90 162 -00072100.LBF 2.75 15.3 3073 -11.3 7.8 26.5 39.4 16.9 2.5 2.00 223 -00071700.MHX 2.75 15.1 2929 -12.3 7.2 18.2 29.9 7.9 1.6 2.30 81 -00071000.LBF 2.75 18.1 5871 -5.5 7.8 14.3 19.9 10.7 1.5 3.50 146 -00071000.GGW 2.75 15.6 2962 -10.9 7.0 18.4 13.5 23.2 1.5 2.60 248 -00062000.LBF 2.75 14.9 4028 -8.5 6.8 18.8 23.9 11.9 1.5 3.00 96 -00061400.AMA 2.75 16.5 5758 -4.9 7.6 23.8 32.0 19.9 1.9 2.50 244 -00061200.BIS 2.75 11.3 2000 -13.1 7.5 22.0 28.0 10.2 1.1 2.50 306 -00052700.OUN 2.75 18.3 5870 -10.1 8.4 21.5 32.8 12.8 4.4 4.00 117 -00051300.DTX 2.75 16.9 4524 -8.5 7.7 24.1 18.5 20.2 2.8 2.40 328 -00022500.AMA 2.75 10.3 3614 -18.5 8.5 26.8 48.5 13.1 3.6 1.70 107 -98071100.DDC 2.50 18.9 4096 -4.3 6.2 12.7 15.2 16.0 0.6 0.60 230 -96072200.LBF 2.50 18.4 4756 -6.5 7.2 20.0 29.4 19.0 1.8 2.10 94 -96071900.GRB 2.50 20.7 4525 -7.5 6.4 26.3 26.2 20.0 2.7 0.70 162 -96062100.DEN 2.50 15.2 5603 -8.1 9.6 27.5 33.4 8.8 4.2 2.20 155 -96061200.LBF 2.50 12.2 2268 -9.9 7.5 16.7 22.2 12.7 0.8 2.40 122 -96060300.AMA 2.50 11.0 2356 -10.5 6.9 27.6 31.6 18.0 1.2 2.00 256 -96060100.DDC 2.50 13.3 2888 -10.9 8.3 13.3 19.3 13.9 1.0 2.50 111 -96051800.MPX 2.50 16.3 4406 -8.9 8.2 13.0 23.4 20.7 1.6 3.40 259 -96042200.FTD 2.50 12.0 1872 -12.6 8.2 27.1 34.0 18.3 1.4 -999.00 298 -96030700.TLH 2.50 15.4 2429 -10.4 6.0 20.9 23.7 20.7 1.1 0.60 320 -95081212.MPX 2.50 19.1 3357 -6.3 7.2 33.4 36.8 23.0 1.4 -999.00 147 -95061600.TFX 2.50 13.0 3142 -12.0 8.4 27.7 35.6 23.8 2.6 2.30 277 -95060700.DEN 2.50 12.3 3126 -10.8 9.2 37.2 35.9 20.7 3.2 2.00 284 -95052912.MAF 2.50 13.0 1618 -11.3 7.5 26.6 22.0 13.7 1.1 -999.00 179 -95051900.GSO 2.50 13.4 1758 -11.8 7.9 25.3 27.1 23.6 1.3 -999.00 83 -95051600.MAF 2.50 13.6 3261 -7.8 8.4 21.7 28.8 10.3 1.4 1.80 134 -95050900.TOP 2.50 10.0 1495 -19.3 6.9 19.3 22.8 21.2 0.9 1.20 126 -95050800.LCH 2.50 17.9 2493 -9.9 7.1 16.7 31.1 10.2 1.2 0.60 120 -95050800.FTD 2.50 16.5 2700 -10.4 7.7 30.8 30.8 24.5 2.5 0.80 407 -94062600.TOP 2.50 16.4 4265 -8.6 8.4 25.2 45.9 21.6 2.9 2.90 418 -94032800.AHN 2.50 14.4 2627 -10.5 6.2 34.5 24.7 30.4 1.9 0.70 518 -93070300.TOP 2.50 18.5 4019 -7.2 7.1 15.8 16.4 15.2 1.4 0.70 202 -93070200.HON 2.50 14.6 2619 -11.3 7.0 28.3 40.3 12.6 1.9 0.80 143 -93061400.TOP 2.50 16.5 4195 -8.5 7.7 12.5 17.8 10.7 1.3 2.80 65 -93033000.DRT 2.50 12.7 2680 -13.4 8.2 39.6 44.0 26.0 3.3 2.80 411 -92070200.DEN 2.50 11.7 2313 -11.2 8.0 27.6 29.9 20.0 1.5 2.50 362 -92041600.AMA 2.50 11.1 3350 -13.4 7.6 16.0 17.8 12.0 1.4 1.70 127 -92030400.SEP 2.50 12.7 2676 -15.3 7.7 20.1 27.2 9.2 1.8 2.30 133 -91080200.CAR 2.50 12.3 1891 -13.7 6.3 19.6 33.3 11.9 0.9 1.50 223 -91071800.STC 2.50 18.2 4876 -8.7 7.3 18.7 20.1 21.9 2.4 2.50 104 -91053100.DEN 2.50 12.0 3551 -12.1 9.5 27.3 45.8 10.7 3.0 1.90 149 -91052700.LBF 2.50 11.9 2669 -13.4 7.9 13.9 32.3 13.0 1.1 2.10 35 -91051200.AMA 2.50 14.3 4521 -10.8 8.5 12.4 14.9 16.7 1.7 2.30 208 -91050800.MAF 2.50 11.2 3415 -14.8 8.4 31.1 36.7 25.4 3.4 1.60 280 -91042100.AYS 2.50 11.8 2563 -16.9 7.4 13.4 30.0 10.3 1.1 1.70 76 -91041900.SEP 2.50 17.6 5996 -13.2 7.4 13.5 44.8 13.0 3.2 3.10 24 -90083100.CHS 2.50 16.0 2477 -8.5 6.5 17.0 17.7 8.3 0.9 0.60 67 -90070200.GSO 2.50 14.8 3964 -10.0 7.2 26.0 16.3 10.7 2.5 2.20 100 -90062200.ALB 2.50 12.6 1833 -14.1 6.7 32.5 29.1 20.6 1.6 1.60 203 -90061500.DDC 2.50 16.0 4667 -6.5 7.9 28.4 30.1 15.7 2.5 2.70 305 -90060700.DEN 2.50 10.9 2850 -8.2 9.0 26.3 23.9 19.6 1.4 1.50 170 -90060300.PAH 2.50 17.8 3663 -7.6 7.0 24.0 25.9 29.8 1.9 0.60 367 -04102400.JAN 2.50 15.8 1938 -6.9 5.3 30.8 27.8 19.3 0.8 0.60 328 -04091500.LBF 2.50 12.8 1474 -10.7 8.0 31.4 39.8 20.5 1.3 -999.00 91 -04080700.ABR 2.50 13.1 2792 -9.3 6.7 21.0 25.9 12.1 1.1 2.50 240 -04040400.EPZ 2.50 12.1 4482 -17.9 8.2 29.1 25.4 11.6 5.2 2.10 203 -04032718.OUN 2.50 12.6 2825 -14.9 7.3 21.1 32.3 11.5 1.9 2.10 199 -03062200.RAP 2.50 10.6 3380 -13.7 8.0 27.5 42.2 18.7 2.5 1.50 189 -03051500.SHV 2.50 16.8 4260 -9.9 6.8 33.7 42.9 16.3 3.7 0.80 246 -02072500.ABR 2.50 15.0 4004 -11.5 7.9 28.7 28.6 13.8 3.5 3.00 207 -02051700.AMA 2.50 13.8 5036 -12.7 8.7 21.9 26.5 17.4 3.8 2.20 216 -01101000.DDC 2.50 12.9 3299 -9.7 6.4 18.8 18.3 16.4 1.1 2.50 275 -01082400.AMA 2.50 15.4 4318 -6.7 7.4 24.0 28.1 21.0 1.8 2.80 158 -01070500.LBF 2.50 14.5 3571 -7.7 7.7 26.0 27.0 17.1 1.8 2.90 313 -01070400.RAP 2.50 14.5 3145 -11.1 8.3 25.2 26.1 12.9 2.4 2.60 144 -01052620.LMN 2.50 14.1 4355 -13.5 6.4 27.3 33.2 20.2 3.3 2.90 233 -01052500.BMX 2.50 11.9 2388 -14.9 6.7 29.2 27.4 23.5 1.9 2.70 436 -01050400.MAF 2.50 13.7 3866 -11.3 7.2 12.8 33.8 11.4 1.2 2.70 101 -01050100.OAX 2.50 10.4 2265 -16.9 7.7 17.4 17.0 19.2 1.2 2.20 226 -01042200.DDC 2.50 13.3 3749 -12.1 7.3 33.4 45.3 24.2 3.3 2.70 510 -01041700.MAF 2.50 13.9 4552 -12.1 7.5 16.2 30.6 8.0 2.1 2.20 100 -00091100.MPX 2.50 16.6 4560 -10.3 7.0 21.6 23.2 18.4 2.7 3.20 271 -00080500.BIS 2.50 17.0 4830 -8.7 6.9 17.2 22.9 4.0 1.9 3.30 86 -00070600.LBF 2.50 18.2 5506 -7.1 8.3 25.3 35.5 11.8 3.4 3.50 155 -00070200.ABR 2.50 17.8 5952 -10.3 8.4 12.2 23.4 8.1 2.5 3.90 147 -00062400.OAX 2.50 17.5 4783 -8.7 7.2 18.7 28.2 14.9 2.2 2.30 195 -00061000.RAP 2.50 13.2 3610 -8.1 7.8 14.3 21.1 11.9 1.0 2.10 70 -00052300.MHX 2.50 15.1 3613 -13.5 6.5 15.3 26.5 10.5 1.7 2.40 79 -00051200.DVN 2.50 15.6 4865 -8.1 7.4 24.8 24.9 19.3 2.6 3.40 225 -00050100.FWD 2.50 14.3 3593 -13.1 7.2 17.3 18.5 19.0 1.9 1.70 401 -00032700.SGF 2.50 9.8 1766 -18.3 7.5 34.3 43.9 21.4 1.9 2.20 350 -00021400.LZK 2.50 10.7 2091 -20.3 6.4 21.1 24.5 22.2 1.4 2.10 245 -00061300.OAX 2.25 17.7 5453 -11.5 8.5 15.8 19.3 12.9 3.4 4.00 206 -99053100.TOP 2.00 13.1 2215 -10.9 6.8 18.6 12.2 14.7 0.9 1.40 189 -99050400.DRT 2.00 17.4 5609 -10.1 7.5 40.5 38.9 21.2 6.8 4.56 342 -98063000.BUF 2.00 14.5 2615 -10.5 6.1 23.6 28.2 8.5 1.3 1.70 86 -98062500.APX 2.00 15.8 3453 -11.3 7.3 28.9 35.4 21.9 2.9 3.30 348 -98033100.FWD 2.00 13.3 2607 -14.3 7.2 29.6 57.5 17.6 2.4 2.90 93 -90091400.STC 2.00 13.1 2104 -10.9 7.4 27.8 39.0 23.2 1.4 -999.00 564 -90072600.TBW 2.00 18.4 4330 -6.3 5.7 5.0 8.5 6.3 0.3 0.60 7 -90061400.PIA 2.00 18.1 3571 -7.0 7.0 16.5 23.4 9.5 1.2 0.60 134 -90060900.PIT 2.00 16.7 4095 -9.5 6.7 18.1 13.6 18.8 1.8 1.00 236 -89103000.OUN 2.00 12.5 2163 -14.7 6.6 18.0 18.1 13.1 1.1 1.60 195 -89082100.LBF 2.00 14.8 3307 -9.1 7.1 28.0 44.7 8.0 2.0 3.00 83 -89071100.HON 2.00 15.7 3126 -7.0 6.9 14.6 18.6 12.3 0.8 1.20 151 -89052800.ELP 2.00 11.2 2569 -6.8 8.0 11.3 17.1 14.9 0.4 1.40 232 -04091200.GRB 2.00 12.3 2256 -14.9 7.2 14.7 24.8 11.6 1.0 0.90 64 -04082400.BIS 2.00 13.4 2596 -11.1 7.6 21.3 22.3 16.4 1.4 2.20 208 -04072300.TOP 2.00 16.0 3276 -7.7 6.4 15.8 19.6 11.4 0.9 0.70 158 -04062400.GRB 2.00 10.4 1604 -16.9 6.3 25.3 36.9 16.4 1.0 2.40 128 -04052200.DDC 2.00 13.5 3809 -9.7 8.1 21.0 27.0 20.3 1.9 2.20 297 -04043000.JAN 2.00 13.6 1469 -12.7 6.5 27.4 22.8 18.1 1.0 0.60 184 -03051900.TBW 2.00 17.1 3797 -10.9 6.8 5.9 5.0 4.0 0.6 1.00 -4 -02062600.MPX 2.00 19.6 5230 -9.7 7.1 18.6 21.8 9.2 3.0 3.20 120 -02061300.DVN 2.00 17.3 3501 -11.9 7.4 26.3 38.7 10.0 3.2 1.10 100 -02052800.LZK 2.00 15.1 3284 -12.3 6.5 5.0 12.3 2.6 0.4 0.60 13 -01101000.OUN 2.00 15.6 3485 -12.9 7.9 24.4 28.2 23.9 3.1 2.50 447 -01090800.TOP 2.00 17.8 4174 -11.3 8.1 26.2 26.7 24.5 4.0 1.70 274 -01090800.OUN 2.00 17.6 4351 -8.7 7.8 26.1 21.2 21.8 3.1 2.30 151 -01082400.DDC 2.00 16.4 4283 -7.5 7.7 14.7 16.3 11.9 1.3 3.10 77 -01082300.TOP 2.00 16.7 4361 -9.7 7.6 9.9 23.0 13.6 1.2 2.30 192 -01072000.RAP 2.00 15.1 4486 -8.7 8.4 15.4 26.3 10.9 1.7 2.40 71 -01071300.GGW 2.00 14.5 3042 -10.1 8.1 16.5 34.2 7.9 1.4 3.50 19 -01063000.FWD 2.00 16.8 4122 -9.7 6.9 11.2 19.2 9.2 1.2 1.60 133 -01062100.DNR 2.00 10.8 2544 -11.5 7.5 21.4 23.2 20.5 1.2 2.10 192 -01053100.LCH 2.00 17.4 3988 -8.3 7.0 8.3 13.9 0.8 0.8 2.40 8 -01053100.FWD 2.00 15.8 4571 -12.3 8.7 12.4 20.6 13.7 2.2 3.90 106 -01053000.DDC 2.00 15.2 2892 -12.1 8.0 23.2 25.5 14.8 2.3 1.80 388 -01052700.DDC 2.00 11.3 2853 -12.1 6.7 30.6 37.1 19.3 1.8 1.80 184 -01051200.OUN 2.00 13.2 3098 -13.9 7.1 10.0 10.8 8.7 0.9 2.10 132 -01050702.LZK 2.00 14.2 2759 -12.9 5.9 18.7 26.3 7.3 1.3 2.00 77 -01050700.SGF 2.00 14.5 4025 -13.7 6.1 8.8 17.0 10.5 1.0 3.10 202 -01050600.FWD 2.00 15.4 3092 -12.7 6.8 32.7 34.4 19.4 3.0 2.10 170 -01042200.MAF 2.00 13.7 4543 -12.3 8.4 27.4 36.2 12.3 4.0 2.20 164 -01042200.AMA 2.00 14.1 6059 -15.3 9.2 35.7 38.3 16.6 9.7 3.30 320 -00072300.LBF 2.00 13.2 2926 -11.5 7.1 25.2 27.3 13.6 1.8 2.80 91 -00071500.BIS 2.00 16.5 5132 -9.5 8.1 27.6 34.1 14.6 4.1 2.70 152 -00071100.GGW 2.00 14.2 3230 -11.3 6.9 30.1 48.1 16.9 2.5 3.00 88 -00061500.JAX 2.00 17.9 4801 -8.7 6.4 6.2 13.3 3.6 0.7 1.10 55 -00061300.LBF 2.00 13.9 4790 -9.9 8.3 16.6 18.6 9.9 2.1 2.00 159 -00061200.AMA 2.00 16.8 5720 -10.3 8.3 16.1 28.7 15.7 3.0 2.70 88 -00032800.JAX 2.00 12.5 2135 -14.5 6.3 29.1 24.7 25.7 1.6 0.90 268 -00031600.LMN 2.00 9.5 1478 -17.3 7.1 22.1 10.9 12.9 0.9 2.20 164 -00030300.FWD 2.00 12.3 2589 -14.3 6.2 33.4 29.1 20.2 2.1 2.70 239 -98062500.FFC 1.75 17.0 3224 -8.9 7.3 5.0 9.9 5.6 0.4 0.60 54 -97100900.OUN 1.75 16.5 3628 -7.5 6.0 20.0 29.9 16.6 1.2 0.80 205 -94071700.HAT 1.75 16.5 2831 -6.0 5.7 5.9 5.0 4.4 0.2 0.60 33 -94071700.1M1 1.75 17.7 3194 -6.4 5.8 12.5 11.3 19.1 0.6 0.60 164 -94070100.1M1 1.75 18.6 4791 -8.1 6.1 20.0 18.5 12.6 2.0 1.00 343 -94062600.PBI 1.75 17.7 4199 -9.1 6.6 5.0 6.6 5.2 0.5 1.80 10 -92051500.1M1 1.75 13.3 2877 -11.3 6.4 11.4 16.3 7.9 0.7 1.50 54 -91060600.RAP 1.75 13.1 2001 -11.5 7.1 13.2 19.7 11.9 0.6 1.40 170 -91060600.JAN 1.75 16.3 3344 -9.1 6.8 9.5 9.6 3.1 0.7 0.60 12 -91053100.AHN 1.75 16.3 3505 -6.9 5.9 5.0 5.0 3.2 0.3 0.60 15 -91051700.GGG 1.75 18.4 5081 -10.4 7.5 7.9 11.2 10.5 1.3 0.90 157 -91051300.HON 1.75 14.7 3615 -9.5 7.2 14.2 22.7 13.0 1.2 2.80 97 -91051300.BIS 1.75 13.8 1867 -11.5 6.8 26.9 19.8 15.8 1.2 0.70 -79 -91032700.DAY 1.75 10.7 1281 -13.1 6.3 23.7 30.6 24.3 0.8 -999.00 149 -90091100.AHN 1.75 15.1 2857 -8.6 5.9 7.9 7.6 6.3 0.4 0.60 80 -90090200.MAF 1.75 14.9 3597 -6.2 6.8 17.2 18.3 7.5 0.9 2.50 58 -90082600.HON 1.75 17.9 5206 -11.5 9.1 14.7 28.6 9.9 3.2 -999.00 156 -90082600.BIS 1.75 13.7 3187 -13.2 8.6 22.2 23.1 13.2 2.5 2.50 190 -90082400.OVN 1.75 18.7 4768 -7.4 6.8 7.4 14.7 9.4 0.8 0.70 100 -90082100.AMA 1.75 14.6 2833 -5.7 6.6 11.7 11.3 10.6 0.4 1.20 75 -90081500.DDC 1.75 15.1 3012 -6.6 5.6 9.0 15.8 9.9 0.3 0.60 59 -90081000.AHN 1.75 14.9 2234 -9.4 6.2 13.3 26.7 6.4 0.6 0.80 33 -90080200.LCH 1.75 18.4 3223 -7.3 6.4 6.5 5.0 3.1 0.4 0.60 14 -90073100.GGG 1.75 16.1 3254 -7.5 6.4 7.9 5.4 1.2 0.5 0.60 3 -90072700.AMA 1.75 14.3 3104 -5.8 7.3 7.7 7.9 11.1 0.3 2.20 117 -90072600.OUN 1.75 16.6 3546 -6.8 6.2 10.8 14.7 11.1 0.6 0.70 206 -90072100.ABQ 1.75 10.9 1327 -5.9 8.3 7.9 14.5 9.8 0.1 1.30 145 -90071800.LBF 1.75 12.3 3138 -7.7 8.2 17.7 16.6 10.0 1.0 1.60 115 -90071700.FNT 1.75 11.9 1393 -12.5 6.5 15.5 25.3 13.2 0.5 0.60 176 -90071400.ABQ 1.75 10.4 1587 -9.4 8.7 18.9 32.6 4.4 0.6 1.20 70 -90071300.CRP 1.75 13.3 1658 -6.5 6.5 12.8 9.3 14.6 0.3 0.60 121 -90071100.CKL 1.75 15.4 2544 -8.1 6.4 5.1 5.0 2.1 0.2 0.60 9 -90070900.GRB 1.75 16.9 2962 -6.5 6.5 18.2 22.7 12.1 0.9 0.60 82 -90070500.LCH 1.75 17.6 3315 -8.5 6.6 15.3 5.0 11.6 1.1 0.60 58 -90061800.PIA 1.75 19.5 4567 -8.1 7.4 17.0 25.7 14.1 2.1 1.00 94 -90061300.STC 1.75 16.2 2789 -10.4 7.2 36.6 42.0 14.2 2.8 0.70 139 -90061100.CHS 1.75 17.7 4050 -8.1 6.6 8.1 19.1 6.4 0.7 0.60 102 -90061000.OUN 1.75 15.1 3242 -8.5 7.8 10.1 5.0 10.9 0.7 2.50 21 -90061000.IAD 1.75 14.9 2818 -9.2 6.5 16.4 19.3 18.0 0.9 0.60 175 -90052800.SIL 1.75 18.0 3916 -10.0 6.8 19.3 10.6 10.4 2.1 2.80 48 -90052300.HON 1.75 10.9 1984 -14.0 7.2 22.3 33.6 15.0 1.1 2.90 107 -90052100.UMN 1.75 14.8 3661 -13.1 7.6 15.4 23.7 15.3 1.9 4.30 181 -90052100.HAT 1.75 15.8 2891 -9.7 5.6 13.8 19.5 12.4 0.8 0.60 182 -90051900.SEP 1.75 17.0 3250 -9.1 6.6 20.9 27.2 15.6 1.6 2.20 385 -90051600.IAD 1.75 13.4 2004 -14.0 7.0 16.7 27.7 12.7 1.0 -999.00 102 -90051200.SEP 1.75 13.6 2282 -9.2 6.9 34.8 47.4 14.5 1.6 -999.00 133 -90050600.OUN 1.75 7.6 881 -20.1 7.2 18.3 48.8 5.8 0.4 2.30 30 -90042900.AYS 1.75 13.0 2333 -12.2 6.2 30.6 23.2 19.1 1.6 2.60 243 -90042600.DRT 1.75 14.6 3699 -13.8 8.1 25.7 33.2 11.1 3.5 4.60 101 -90042200.OUN 1.75 11.1 2748 -13.3 6.6 12.2 14.9 7.3 0.7 2.90 48 -90040200.BRO 1.75 16.2 3494 -9.3 7.1 25.7 37.2 15.2 2.2 2.60 65 -90031300.OUN 1.75 12.7 3211 -13.6 7.8 24.2 18.1 19.4 2.4 3.40 286 -90031000.AMA 1.75 11.1 2468 -16.0 8.6 13.1 18.2 9.9 1.1 2.10 106 -90022800.MAF 1.75 9.7 607 -16.2 6.6 16.4 23.8 5.1 0.2 1.90 55 -89090800.DEN 1.75 10.1 1350 -6.8 8.3 24.1 24.0 15.4 0.4 2.00 366 -89090200.1M1 1.75 18.3 3691 -4.8 6.1 16.2 14.1 8.2 0.7 0.60 64 -89083100.DDC 1.75 16.5 2952 -5.7 6.6 13.6 22.5 13.3 0.6 0.80 346 -89083000.OUN 1.75 17.3 3864 -5.6 6.0 13.1 24.2 11.8 0.7 0.60 112 -89082900.TOP 1.75 19.8 4794 -6.3 6.6 15.4 21.1 13.2 1.4 0.60 156 -89082800.UMN 1.75 17.3 3603 -6.1 6.5 7.8 5.6 2.6 0.4 0.60 28 -89082700.OMA 1.75 17.8 3452 -6.6 6.1 19.5 33.1 15.2 1.1 0.60 142 -89082500.RAP 1.75 10.6 1899 -7.1 7.6 7.7 7.6 2.7 0.2 1.00 55 -89081300.TBW 1.75 16.4 2617 -8.6 6.0 18.1 18.2 10.1 0.9 0.60 65 -89080600.UMN 1.75 19.0 5227 -6.9 7.0 11.7 11.3 8.8 1.3 0.80 99 -89073000.JAN 1.75 18.0 3940 -7.7 6.7 5.0 5.0 2.1 0.4 0.60 9 -89072900.HON 1.75 14.0 2092 -5.9 6.0 12.0 17.9 6.4 0.3 0.80 105 -89071500.LBF 1.75 14.3 2675 -6.9 6.1 6.1 8.4 5.5 0.2 0.60 27 -89071300.OUN 1.75 19.0 4127 -5.4 6.9 13.8 19.1 13.0 0.9 -999.00 196 -89071300.DDC 1.75 15.1 3239 -4.9 6.9 5.1 7.2 7.9 0.2 1.20 81 -89070800.PIT 1.75 15.4 2732 -9.1 6.8 17.5 15.7 12.8 1.0 1.50 81 -89062800.BUF 1.75 15.2 2385 -8.2 5.3 20.1 22.3 9.8 0.7 0.60 82 -89062700.PIA 1.75 15.7 2460 -7.9 6.6 13.2 12.4 5.3 0.6 0.70 87 -89062600.IAD 1.75 16.2 3138 -8.6 6.1 14.3 23.0 12.1 0.9 0.70 108 -89062200.AHN 1.75 15.5 1517 -7.6 5.8 12.6 15.8 14.9 0.3 0.60 112 -89061900.BNA 1.75 13.9 1714 -10.2 6.3 9.7 7.8 6.8 0.3 0.60 86 -89061400.GGG 1.75 17.2 3674 -11.0 6.9 15.4 23.3 4.3 1.7 -999.00 61 -89060600.JAN 1.75 16.3 3336 -11.3 6.7 20.8 25.3 10.4 1.9 0.80 103 -89060600.GSO 1.75 14.8 2078 -9.1 5.9 8.1 6.7 10.0 0.3 0.60 93 -89060100.TOP 1.75 15.8 2588 -10.9 7.9 10.6 26.9 7.9 0.8 -999.00 90 -04092500.AMA 1.75 11.2 2465 -11.9 6.9 15.1 24.9 12.0 0.8 2.00 38 -04092300.AMA 1.75 12.8 1887 -10.1 6.7 23.5 21.8 19.6 0.9 1.30 374 -04082600.BIS 1.75 12.5 3083 -13.1 7.1 16.6 18.9 13.9 1.4 2.40 101 -04081900.ILX 1.75 15.1 3685 -9.1 5.9 19.9 28.2 19.7 1.4 1.30 371 -04071200.TOP 1.75 17.7 3644 -7.3 6.8 13.6 9.1 11.9 1.0 0.60 204 -04051600.EPZ 1.75 10.4 2888 -11.5 8.7 12.2 7.0 4.1 0.8 1.60 93 -04051000.LBF 1.75 11.6 4026 -13.9 9.0 13.9 17.5 3.0 1.8 1.60 38 -04042900.DRT 1.75 12.4 1834 -12.9 6.4 20.0 31.6 16.1 0.9 1.30 217 -04040700.FWD 1.75 10.4 835 -16.3 6.7 28.3 27.2 11.8 0.6 1.00 87 -04032100.MAF 1.75 10.2 2042 -12.9 7.9 9.6 21.3 5.5 0.5 1.50 39 -04032100.FFC 1.75 7.9 942 -17.3 7.5 12.0 13.4 11.3 0.3 1.10 154 -04030100.TOP 1.75 6.3 487 -28.7 8.7 32.0 35.0 20.1 0.6 1.60 171 -03092100.DDC 1.75 10.2 1784 -10.9 7.3 20.1 23.8 21.8 0.7 2.00 257 -03091100.DDC 1.75 14.8 3112 -7.5 6.9 22.3 30.8 15.7 1.2 2.20 259 -03091000.MAF 1.75 12.9 3038 -7.3 7.4 8.3 12.7 8.6 0.4 2.10 79 -03090500.DRA 1.75 11.3 1966 -8.3 8.1 5.0 9.2 5.0 0.2 1.20 33 -03062500.MAF 1.75 16.5 4621 -6.7 7.7 8.7 16.8 11.9 0.8 2.10 45 -03062100.MAF 1.75 10.7 1489 -7.7 7.0 14.5 29.4 6.5 0.3 1.90 74 -03061700.RAP 1.75 10.1 1501 -11.1 7.1 5.7 17.5 2.9 0.2 1.90 92 -03061700.FFC 1.75 16.3 2826 -8.5 6.2 7.0 13.0 5.5 0.4 0.60 32 -03061500.LBF 1.75 10.7 1717 -11.3 6.3 10.6 12.0 6.6 0.3 1.70 51 -03061500.FWD 1.75 14.3 2433 -11.3 6.9 12.1 5.0 5.3 0.7 1.70 32 -03061300.LBF 1.75 12.0 2759 -11.3 7.2 15.4 16.3 13.0 0.9 2.60 179 -03061100.OUN 1.75 14.5 3045 -9.3 7.2 17.8 13.1 12.1 1.2 2.00 135 -03060400.LCH 1.75 19.7 4988 -6.7 5.8 13.3 17.2 7.3 1.1 0.60 44 -03050700.BMX 1.75 17.4 4489 -10.5 7.0 26.5 28.4 12.2 3.5 2.10 101 -03050200.FFC 1.75 13.7 3289 -13.5 6.5 9.8 9.5 7.5 0.9 0.90 55 -03043000.BNA 1.75 12.9 3348 -15.3 7.2 5.0 5.5 4.1 0.5 1.30 30 -03042900.MAF 1.75 9.9 2371 -13.5 8.4 23.4 21.0 15.5 1.4 1.40 165 -03042900.AMA 1.75 9.6 2549 -14.5 8.3 25.3 33.7 16.5 1.7 1.60 237 -03032600.SHV 1.75 11.3 1723 -18.3 8.5 17.7 18.0 8.0 1.2 1.40 108 -03032600.LZK 1.75 11.3 2073 -18.5 6.7 14.3 15.4 9.5 0.9 2.20 67 -03031500.BMX 1.75 10.9 1555 -19.1 7.4 8.5 21.2 12.3 0.5 1.30 94 -02082300.LBF 1.75 17.8 6193 -10.1 8.0 12.9 28.1 3.8 2.6 3.10 10 -02072800.DDC 1.75 12.9 2480 -5.3 7.4 10.6 11.1 10.7 0.3 1.40 155 -02072518.TBW 1.75 18.9 4523 -8.5 6.7 7.8 6.3 2.0 0.9 0.60 7 -02070200.AMA 1.75 12.2 2393 -6.5 7.3 18.4 11.3 20.8 0.6 1.60 353 -02062600.DTX 1.75 14.5 3079 -8.9 6.1 5.0 7.2 1.4 0.3 0.70 -1 -02061200.TOP 1.75 19.6 5029 -8.9 7.6 21.1 24.7 15.6 3.2 0.70 224 -02060700.MPX 1.75 9.2 1952 -15.1 7.7 22.8 25.3 16.2 1.1 1.50 758 -02060402.CHS 1.75 13.7 2637 -10.1 7.6 9.7 10.8 11.7 0.6 0.80 33 -02052900.TOP 1.75 12.8 2661 -13.7 6.8 5.0 10.7 7.3 0.4 1.30 48 -02052800.MAF 1.75 12.7 3115 -11.1 8.0 20.6 24.7 16.4 1.7 2.10 103 -02052800.LBF 1.75 11.3 3387 -15.1 9.0 18.8 30.1 11.6 2.2 1.90 184 -01062000.DTX 1.75 14.9 3813 -12.5 6.9 8.4 17.6 15.0 0.9 2.80 -45 -01061800.TBW 1.75 15.9 3469 -9.7 5.9 5.0 6.6 1.5 0.4 0.80 23 -00090400.LBF 1.75 11.2 2441 -9.5 7.8 21.4 24.1 18.5 1.0 1.50 309 -00080800.OAX 1.75 18.7 4679 -8.1 7.8 16.4 25.1 10.8 2.1 3.00 185 -00080200.GGW 1.75 10.8 2057 -8.9 8.0 24.6 35.3 15.0 0.9 1.80 148 -00073100.JAX 1.75 17.6 3581 -8.9 6.0 6.6 5.5 4.7 0.5 0.60 27 -00072900.GSO 1.75 14.3 1962 -9.7 6.2 6.2 16.1 6.5 0.2 0.60 43 -00072700.LBF 1.75 18.1 5166 -8.9 8.7 17.5 26.1 12.2 2.9 2.20 351 -00072600.MPX 1.75 15.3 3240 -13.1 7.6 21.4 12.4 10.1 2.4 3.00 139 -00072600.MFL 1.75 18.3 4079 -8.5 6.6 5.2 5.6 2.4 0.5 0.60 18 -00072500.ABR 1.75 15.6 4195 -12.3 8.9 15.3 19.8 10.9 2.5 3.10 113 -00072200.LBF 1.75 12.8 3031 -11.5 7.6 27.5 23.7 14.5 2.1 2.60 247 -00072100.FFC 1.75 14.3 2149 -6.9 6.4 9.2 10.4 9.1 0.3 0.60 63 -00071800.AMA 1.75 14.4 3660 -4.7 6.9 9.1 7.7 5.9 0.4 1.50 79 -00071500.IAD 1.75 13.9 2186 -12.3 6.8 17.8 17.7 9.3 1.0 2.00 118 -00071300.ABR 1.75 13.6 2305 -8.7 6.7 29.3 44.3 21.7 1.2 2.00 278 -00070600.GGW 1.75 11.7 2743 -14.1 8.5 29.6 40.4 13.0 2.6 1.90 165 -00062400.LBF 1.75 14.8 4723 -9.7 8.6 17.4 29.6 9.8 2.3 2.00 126 -00062400.DDC 1.75 14.8 3499 -7.3 7.7 23.2 30.2 12.0 1.5 2.70 237 -00062200.DDC 1.75 14.3 3602 -8.7 7.0 15.4 23.4 16.2 1.1 2.90 157 -00061100.AMA 1.75 14.0 3932 -7.9 7.8 14.8 19.1 9.4 1.1 2.10 128 -00060300.ABQ 1.75 9.4 1267 -8.7 8.2 10.3 17.5 7.6 0.2 1.40 70 -00052900.GSO 1.75 14.3 1730 -11.1 6.2 28.7 35.1 17.6 1.1 1.20 139 -00051900.FWD 1.75 16.2 3610 -10.9 7.4 25.2 32.9 6.7 2.7 0.64 75 -00051200.TOP 1.75 16.7 5329 -7.3 6.5 25.1 29.2 21.0 2.4 3.70 216 -00033000.SHV 1.75 15.4 3548 -15.9 7.6 31.6 50.3 23.8 4.8 2.80 323 -94070100.GSO 1.50 13.8 2296 -10.3 5.4 8.1 14.3 6.6 0.3 0.60 40 -90082200.OUN 1.50 16.6 3350 -5.5 6.1 5.0 5.7 3.1 0.2 0.60 -7 -90082200.AHN 1.50 16.5 3247 -6.8 6.5 8.7 15.8 6.0 0.5 0.60 48 -90071000.DEN 1.50 13.5 3504 -8.2 8.0 25.4 20.1 16.7 1.8 2.50 41 -90041100.AHN 1.50 11.5 1096 -14.0 6.4 25.4 25.8 19.0 0.6 1.60 343 -90040200.GSO 1.50 8.7 984 -17.4 6.8 29.7 37.4 19.9 0.7 2.00 210 -89060200.AHN 1.50 13.2 1996 -7.3 6.1 5.0 5.0 3.2 0.1 -999.00 18 -03091800.INL 1.50 13.7 1863 -13.5 7.5 24.7 29.2 15.3 1.4 -999.00 384 -03031700.MHX 1.50 12.1 1241 -13.1 5.4 19.1 32.8 11.5 0.5 0.70 37 -02072500.LCH 1.50 20.2 5453 -7.3 5.9 8.5 11.3 5.5 0.9 0.60 66 -01062600.RNK 1.50 11.1 1653 -11.9 5.7 13.7 30.3 8.3 0.4 2.10 88 -01062600.GSO 1.50 11.9 929 -11.7 6.0 17.8 25.6 10.4 0.3 0.60 106 -00090200.SLC 1.50 9.1 1641 -14.7 8.4 16.1 24.8 20.1 0.7 1.70 101 -00051800.GSO 1.50 11.9 1767 -13.7 6.5 16.4 31.1 7.6 0.7 1.60 124 -94062500.GSO 1.25 15.9 2334 -5.4 5.6 9.9 5.2 12.9 0.3 0.60 103 -90041400.OUN 1.25 10.8 1408 -18.2 7.9 23.5 33.0 17.5 1.2 2.20 146 -04100400.AMA 1.25 10.5 1672 -13.5 7.6 23.5 31.9 10.7 1.0 2.40 28 -04032700.RAP 1.25 8.5 2052 -15.5 8.0 19.0 17.5 12.6 0.9 1.50 161 -03090800.PHX 1.25 12.1 2268 -6.7 6.7 10.7 16.8 8.2 0.3 1.20 90 -03090800.FGZ 1.25 8.3 663 -8.3 7.7 15.0 17.0 11.2 0.1 1.20 130 -03040500.ILN 1.25 10.4 1856 -15.7 6.5 20.8 25.6 17.7 0.9 2.20 233 -00072000.LZK 1.25 16.4 3973 -6.7 6.8 12.6 12.7 8.3 0.8 1.10 102 -00071100.DDC 1.25 16.4 4707 -4.1 6.8 5.0 8.7 6.0 0.2 2.60 136 -00030400.BMX 1.25 11.4 1311 -14.9 5.7 42.9 54.3 21.1 1.2 1.40 205 -99061200.ILN 1.00 14.7 3299 -8.3 5.8 5.0 5.0 8.2 0.3 1.10 32 -98052200.BNA 1.00 17.3 3709 -10.7 6.4 9.2 7.9 10.4 0.9 0.90 83 -97081800.FFC 1.00 18.4 3564 -6.1 6.1 5.0 5.0 4.4 0.3 0.60 37 -97081700.PIT 1.00 21.1 3951 -7.9 6.9 12.7 23.0 15.4 1.3 0.60 224 -97081700.DVN 1.00 22.3 5790 -8.3 7.5 14.3 11.8 12.3 2.6 1.00 137 -93092500.OUN 1.00 16.1 2895 -6.7 6.2 24.5 27.2 16.0 1.1 0.60 264 -91060500.CKL 1.00 16.9 3345 -7.5 6.3 5.0 5.0 9.2 0.3 0.60 52 -91060500.AHN 1.00 15.3 3036 -8.1 6.7 5.7 13.0 11.6 0.3 0.60 72 -90101800.GGG 1.00 14.2 1596 -10.6 6.4 20.0 27.9 12.5 0.7 0.60 114 -90100800.GGG 1.00 16.8 2689 -6.0 5.8 14.2 17.2 8.9 0.5 0.60 70 -90092900.MAF 1.00 12.2 1606 -8.0 6.0 15.0 28.7 11.3 0.3 0.80 35 -90083000.GSO 1.00 16.4 3552 -9.3 6.0 20.1 18.2 14.1 1.5 0.60 37 -90082300.HTS 1.00 15.2 707 -7.7 6.2 7.0 8.5 3.6 0.1 0.60 -4 -90082100.OUN 1.00 19.2 5290 -6.7 6.9 8.3 5.0 6.2 0.9 0.60 38 -90081900.AMA 1.00 13.6 2596 -7.9 7.0 5.1 5.1 3.8 0.2 0.80 45 -90080200.MAF 1.00 14.4 1702 -6.2 6.1 9.7 12.2 2.8 0.2 0.60 27 -90072600.GGW 1.00 10.2 1514 -10.6 7.0 15.6 16.6 7.9 0.4 1.80 55 -90072500.DDC 1.00 11.9 1703 -8.0 6.8 14.0 17.5 10.1 0.3 1.40 208 -90072200.TBW 1.00 17.8 3345 -5.7 6.0 5.0 7.8 3.6 0.2 0.60 34 -90072000.DEN 1.00 11.7 1698 -7.2 7.4 16.1 20.8 14.0 0.4 2.10 182 -90071800.AMA 1.00 11.4 1482 -6.5 6.7 14.8 26.1 8.4 0.2 1.10 98 -90071100.GSO 1.00 15.2 3487 -6.6 5.9 5.0 9.1 7.5 0.2 0.60 38 -90070900.GSO 1.00 17.6 4051 -5.3 5.6 10.2 10.5 6.1 0.5 0.80 73 -90062400.OUN 1.00 11.9 1572 -10.0 7.9 21.6 25.2 14.1 0.7 -999.00 80 -90062300.HTS 1.00 14.5 1346 -8.5 5.8 27.1 36.9 19.1 0.6 0.60 231 -90061000.GSO 1.00 15.3 2409 -8.8 6.1 9.7 14.5 11.1 0.4 0.60 145 -90050400.CKL 1.00 14.0 1534 -10.6 6.4 20.1 25.8 10.8 0.7 0.60 141 -89082700.DDC 1.00 16.9 4549 -7.4 7.6 11.3 24.3 1.4 1.1 2.10 11 -89082000.UMN 1.00 17.3 3524 -6.0 6.2 20.6 14.9 13.6 1.1 0.80 350 -89080600.OUN 1.00 16.3 3439 -5.4 6.8 10.2 12.1 9.7 0.5 0.80 101 -89073100.GTF 1.00 9.5 1858 -9.3 8.9 10.8 21.7 10.3 0.4 1.20 106 -89072800.DAY 1.00 16.4 2617 -7.8 5.7 13.5 11.3 7.5 0.6 0.60 83 -89072400.VCT 1.00 14.8 2953 -9.6 6.2 7.7 13.3 9.5 0.5 0.60 120 -89071200.TOP 1.00 16.6 3182 -8.1 7.6 12.6 8.2 13.2 0.9 1.60 157 -89070600.OUN 1.00 12.9 1373 -6.0 6.2 6.0 12.2 11.3 0.1 0.60 64 -89062900.AMA 1.00 12.6 2035 -8.2 8.6 14.8 26.0 13.0 0.6 2.30 165 -89062800.HTS 1.00 17.6 3659 -8.0 5.8 15.4 21.4 7.4 1.1 0.60 62 -89061900.CKL 1.00 16.7 3363 -9.6 6.4 14.5 12.2 12.2 1.1 0.60 103 -89061600.TBW 1.00 16.4 3463 -7.6 5.7 10.2 6.4 5.9 0.6 0.60 36 -89061400.JAN 1.00 16.0 3274 -11.5 7.1 11.3 8.2 9.4 1.1 1.00 57 -89061200.JAN 1.00 17.7 3616 -9.1 6.5 15.3 5.8 7.5 1.3 0.60 84 -89060500.1M1 1.00 15.8 2380 -8.2 6.0 14.7 13.0 10.3 0.6 0.60 19 -04082800.OUN 1.00 16.0 4225 -7.1 7.4 5.0 5.0 7.0 0.4 1.50 101 -04081700.TUS 1.00 13.1 2027 -8.9 7.1 13.2 13.3 8.8 0.5 1.00 96 -04080900.TOP 1.00 14.3 2676 -11.5 7.4 11.9 15.6 5.9 0.9 0.90 82 -04051200.AMA 1.00 9.7 1922 -11.5 8.0 15.0 8.4 19.1 0.6 1.60 282 -04051000.FFC 1.00 11.4 2006 -11.1 5.4 5.0 11.0 4.0 0.2 1.90 -15 -04032100.FWD 1.00 13.1 2648 -15.5 8.2 12.9 20.8 4.9 1.3 2.80 29 -04031500.DRT 1.00 11.6 1498 -15.5 7.0 16.8 24.5 6.6 0.7 1.40 123 -03090900.TUS 1.00 11.5 2363 -8.3 7.3 7.9 11.8 2.8 0.3 1.10 12 -03060900.RNK 1.00 15.0 2965 -9.1 6.2 24.1 29.2 18.9 1.4 1.20 134 -03060200.DDC 1.00 11.1 1960 -9.5 7.9 17.5 20.6 11.9 0.6 2.00 222 -03052700.ABQ 1.00 7.1 732 -9.9 8.5 14.7 20.6 3.1 0.1 0.60 12 -03052600.TFX 1.00 8.3 994 -10.9 8.0 16.0 15.9 9.1 0.3 1.30 59 -03051800.XMR 1.00 16.0 3602 -9.5 7.0 8.6 10.7 5.6 0.7 0.90 -7 -03051800.TBW 1.00 16.1 3839 -8.7 6.5 5.7 11.9 6.2 0.4 1.10 3 -03051200.JAX 1.00 15.9 3060 -7.9 6.9 13.2 20.0 10.1 0.8 -999.00 48 -03051100.MHX 1.00 16.0 3585 -9.3 7.3 16.2 15.0 11.9 1.4 0.90 104 -03050100.FFC 1.00 11.1 1429 -13.5 6.6 6.9 6.4 1.0 0.2 1.60 5 -03042800.MFL 1.00 16.7 2707 -10.7 6.4 11.7 25.5 12.3 0.8 0.60 83 -03042400.SHV 1.00 13.1 1455 -12.9 7.2 26.1 36.8 15.2 1.0 0.60 278 -03041800.DNR 1.00 5.3 1063 -18.1 8.6 11.0 43.9 5.9 0.2 0.60 41 -03040500.LZK 1.00 10.7 1751 -14.9 6.6 27.4 33.1 12.6 1.2 2.30 65 -03032100.DTX 1.00 8.7 1602 -21.3 6.6 13.3 27.1 7.7 0.6 1.10 80 -03032000.ILX 1.00 8.0 713 -21.9 6.9 5.0 11.4 5.4 0.1 1.40 -26 -03031500.TBW 1.00 15.9 3398 -13.7 7.0 18.6 27.3 3.9 2.2 0.90 32 -02080400.SGF 1.00 17.7 4328 -5.5 6.5 5.0 7.6 3.8 0.3 1.50 -11 -02080300.BMX 1.00 18.4 5098 -6.5 5.8 9.6 10.8 11.5 0.8 1.40 33 -02072900.AMA 1.00 13.6 3610 -6.5 7.8 12.5 12.2 13.6 0.7 2.00 164 -02072700.RAP 1.00 9.4 1688 -9.3 7.5 21.0 28.6 14.5 0.5 1.30 139 -02072600.TOP 1.00 15.6 3390 -5.9 7.5 16.9 16.9 11.9 0.9 2.20 168 -02072000.JAN 1.00 17.6 3501 -6.7 6.1 6.1 7.9 5.7 0.3 0.60 58 -02070300.LBF 1.00 14.1 3158 -5.9 7.5 14.0 6.2 11.5 0.6 1.20 158 -02070200.FFC 1.00 16.3 4268 -9.7 6.6 7.8 5.0 7.3 0.8 0.60 46 -02060700.ABR 1.00 9.0 2252 -14.7 8.1 12.4 18.1 8.2 0.7 1.20 118 -02060400.CHS 1.00 15.2 3170 -10.1 7.6 9.7 10.8 11.7 0.8 0.60 33 -02052700.AMA 1.00 9.7 2332 -11.1 7.2 14.5 11.8 13.0 0.6 1.40 198 -02051800.CRP 1.00 20.3 5902 -10.5 7.4 22.6 23.2 10.7 4.8 1.60 86 -01062600.LBF 1.00 12.7 3931 -8.1 8.1 9.3 8.1 8.1 0.7 1.50 119 -01062100.ABR 1.00 8.1 1118 -19.3 7.0 5.0 12.4 3.6 0.1 1.30 14 -01061900.JAX 1.00 17.2 2345 -9.5 6.1 5.0 8.3 5.0 0.3 0.60 13 -00080700.TOP 1.00 17.3 4476 -7.5 7.2 17.8 22.9 11.7 1.7 1.80 72 -00072900.ILN 1.00 14.3 2735 -11.5 6.7 13.4 21.0 8.0 0.9 0.60 68 -00072900.CHS 1.00 19.1 2462 -7.5 5.6 9.3 13.2 3.3 0.4 0.60 4 -00072800.TOP 1.00 15.3 3666 -10.3 7.6 22.0 26.4 9.1 2.2 2.60 115 -00072800.LBF 1.00 17.1 5581 -7.7 8.1 25.0 21.1 9.6 3.4 3.10 187 -00072700.JAN 1.00 12.5 2066 -10.7 6.4 8.0 8.4 4.2 0.3 1.00 -50 -00072300.OTX 1.00 9.0 2088 -12.3 8.2 17.2 21.1 7.8 0.7 1.20 43 -00071900.GYX 1.00 11.4 997 -13.3 6.0 27.0 36.1 18.8 0.6 1.00 107 -00071700.TOP 1.00 19.7 3927 -8.7 7.9 8.9 14.1 14.5 1.1 2.40 198 -00071500.SHV 1.00 17.2 4004 -5.9 6.0 5.0 8.6 6.2 0.3 0.60 46 -00071400.GRB 1.00 12.0 1743 -12.3 6.9 21.5 42.9 13.4 0.9 1.70 195 -00071200.DDC 1.00 14.4 2910 -5.5 7.2 11.3 11.7 10.8 0.4 1.40 196 -00070700.RAP 1.00 14.2 4065 -7.7 8.6 29.4 33.3 10.8 2.6 2.10 111 -00070400.DDC 1.00 18.1 5003 -7.1 7.6 9.7 19.2 11.4 1.1 2.40 114 -00070300.OAX 1.00 18.5 4633 -6.3 6.9 10.6 19.6 9.9 0.9 1.90 133 -00070300.DDC 1.00 17.2 4482 -5.9 7.5 13.6 22.7 11.7 1.0 2.40 66 -00070200.RAP 1.00 15.6 5621 -9.7 8.7 21.5 22.7 15.9 3.6 2.20 263 -00070200.DDC 1.00 16.8 3390 -5.7 6.6 14.2 21.9 5.5 0.7 1.30 38 -00063000.PIT 1.00 9.9 1086 -15.9 5.5 22.0 37.9 8.1 0.5 1.80 77 -00062600.TOP 1.00 17.8 4052 -8.9 7.6 5.0 23.9 2.4 0.6 2.30 26 -00062600.DDC 1.00 18.4 2618 -6.1 6.7 15.8 16.9 14.3 0.7 1.60 51 -00062300.MHX 1.00 18.6 4167 -8.7 6.1 6.0 6.1 9.7 0.6 0.60 89 -00062100.TBW 1.00 17.1 3180 -8.5 6.4 12.2 19.0 8.9 0.8 0.60 49 -00060200.TOP 1.00 16.1 3517 -9.3 6.9 10.4 16.3 4.9 0.9 0.80 39 -00060200.DVN 1.00 16.4 3451 -9.3 7.3 14.1 11.0 14.2 1.2 0.60 175 -00060100.ILX 1.00 16.1 3208 -9.1 7.0 17.9 15.6 20.7 1.3 1.80 163 -00053000.LBF 1.00 10.4 2258 -9.7 9.2 27.2 31.9 16.9 1.3 1.10 294 -00051400.TLH 1.00 18.3 3542 -9.9 6.9 5.0 5.0 5.4 0.5 1.00 -4 -98062500.DDC 0.88 11.9 2667 -7.3 8.7 25.1 34.7 12.4 1.2 1.40 224 -97010900.SIL 0.88 13.1 909 -13.6 6.7 31.9 37.0 33.7 1.0 -999.00 226 -90091900.OUN 0.88 18.0 3878 -6.7 6.2 11.9 20.5 12.1 0.8 0.60 119 -90073000.AMA 0.88 12.2 943 -7.5 6.3 12.7 18.1 8.4 0.2 0.60 14 -90071000.PIT 0.88 16.6 3362 -6.7 6.3 19.7 14.7 14.3 1.1 0.60 124 -89082900.GGG 0.88 18.5 3979 -4.6 6.0 5.0 5.0 1.6 0.2 0.60 3 -89082600.AHN 0.88 17.1 3463 -5.6 5.8 11.3 8.6 4.0 0.5 0.60 41 -89082500.AHN 0.88 16.9 3533 -5.1 6.1 5.0 8.1 2.7 0.2 0.60 5 -89072700.AHN 0.88 17.5 3996 -6.9 6.5 5.0 6.8 7.1 0.4 0.60 66 -89062700.DEN 0.88 8.6 931 -11.1 7.6 14.3 14.3 10.8 0.2 1.80 122 -89062600.UMN 0.88 16.2 3812 -6.9 6.3 5.0 10.8 2.0 0.3 0.60 -14 -89061200.AMA 0.88 13.2 3301 -11.7 8.7 12.9 25.2 9.2 1.3 2.30 167 -04100400.GSO 0.88 13.2 1385 -14.9 6.5 15.2 26.8 10.4 0.6 1.40 101 -04092000.OAK 0.88 7.3 242 -17.9 5.5 27.4 30.4 6.5 0.1 0.70 56 -04091900.LCH 0.88 15.9 2433 -6.9 5.8 5.0 15.6 7.7 0.2 0.60 6 -04082700.ABR 0.88 10.2 1433 -15.1 6.7 14.4 40.5 5.3 0.5 3.00 28 -04081800.PHX 0.88 10.5 1709 -9.1 7.3 5.0 9.2 6.0 0.1 0.80 15 -04040900.AMA 0.88 8.2 1515 -16.7 7.0 17.9 23.0 14.7 0.6 1.60 139 -03102600.CRP 0.88 17.9 3226 -9.9 6.3 15.2 34.5 9.8 1.2 0.60 17 -03062000.GGW 0.88 9.2 1032 -9.7 8.1 9.8 17.1 8.3 0.2 1.30 76 -03061600.TOP 0.88 12.4 1944 -11.9 6.4 5.0 5.0 5.8 0.2 1.00 3 -03060600.ABR 0.88 8.1 888 -19.9 6.8 17.3 14.2 9.2 0.4 1.50 47 -03060300.JAX 0.88 16.1 3513 -10.1 7.6 11.1 10.3 11.4 1.1 0.60 111 -03050400.BIS 0.88 8.2 1467 -18.7 7.4 15.4 16.1 8.8 0.6 1.60 86 -03031400.TLH 0.88 11.6 2141 -13.1 6.3 10.5 9.0 5.7 0.5 1.10 39 -02052900.OAX 0.88 13.0 2575 -13.3 7.1 7.5 7.0 10.0 0.5 2.60 127 -01062600.CRP 0.88 16.6 3837 -8.5 6.4 5.0 8.9 7.1 0.4 0.60 53 -01062200.DVN 0.88 10.3 1285 -18.1 6.5 10.8 11.8 8.7 0.4 1.00 66 -00090300.OAX 0.88 12.6 3099 -10.1 8.7 16.9 21.6 9.5 1.3 1.40 126 -00080700.DTX 0.88 19.4 4231 -7.3 6.0 16.6 31.6 10.6 1.4 0.60 78 -00080500.LZK 0.88 16.1 3872 -6.3 5.6 9.4 14.6 7.3 0.5 0.80 6 -00080400.BNA 0.88 16.3 3453 -9.9 6.8 10.9 16.0 9.1 0.9 0.60 83 -00080300.PIT 0.88 14.9 2780 -9.7 6.2 15.5 29.2 9.1 0.9 0.60 81 -00080200.DVN 0.88 16.6 4183 -9.7 6.6 11.2 16.4 13.3 1.1 1.10 169 -00072800.BMX 0.88 13.2 2147 -9.5 6.2 8.0 11.4 6.0 0.3 0.70 35 -00070600.DDC 0.88 12.3 2581 -7.5 8.5 9.4 10.0 10.7 0.4 1.80 97 -00061800.RAP 0.88 7.4 1396 -18.9 7.1 14.0 34.9 7.4 0.4 1.40 270 -00061100.DDC 0.88 14.3 3471 -7.9 6.9 11.0 20.2 14.0 0.7 2.40 53 -00021800.JAN 0.88 12.5 1866 -14.9 6.7 27.5 38.9 16.2 1.5 0.70 270 -90052100.SIL 0.85 16.6 3505 -10.6 6.7 8.4 13.0 10.9 0.8 0.60 70 -91051700.JAN 0.80 15.5 2683 -8.9 6.5 5.0 7.8 0.6 0.3 0.60 2 -03052100.TBW 0.80 15.8 2941 -9.5 6.2 5.0 5.4 7.1 0.3 0.60 27 -98081000.SHV 0.75 16.8 3464 -6.5 5.9 5.0 5.0 4.2 0.3 0.60 42 -98062500.JAN 0.75 19.0 3507 -6.1 6.0 5.0 8.6 7.1 0.3 0.70 -1 -97082200.ILN 0.75 9.6 520 -16.3 5.8 17.5 30.9 3.9 0.2 0.70 50 -97081800.SLC 0.75 8.3 931 -10.3 8.5 16.1 22.9 13.6 0.2 1.40 203 -97081700.TBW 0.75 18.5 3152 -7.3 6.2 5.0 5.0 1.8 0.3 0.60 8 -97062400.MAF 0.75 14.1 3277 -9.9 8.9 11.5 8.6 13.0 1.1 1.60 108 -97061700.BMX 0.75 18.2 3829 -6.9 5.9 12.4 13.0 6.9 0.8 0.60 48 -94070200.LCH 0.75 17.0 2754 -6.8 6.4 10.7 11.0 12.4 0.5 0.60 84 -94062400.HTS 0.75 16.5 2715 -5.5 5.3 8.5 15.0 4.7 0.3 0.60 39 -94062400.GGG 0.75 18.0 3599 -5.5 6.3 11.0 14.2 8.2 0.6 0.60 98 -91060600.CKL 0.75 16.3 2864 -8.6 6.4 8.9 11.4 6.2 0.5 0.60 21 -91051700.TBW 0.75 16.1 3306 -7.5 5.4 5.0 5.0 3.8 0.2 0.60 -5 -90101700.MAF 0.75 12.3 2870 -12.5 8.0 14.9 16.2 7.7 1.2 2.30 78 -90083000.ACY 0.75 15.2 2413 -9.3 5.8 13.9 22.7 9.0 0.6 0.60 62 -90082500.OVN 0.75 17.2 3413 -7.1 6.4 12.0 21.9 10.0 0.7 0.70 181 -90082500.OUN 0.75 15.7 2800 -6.4 6.6 5.0 11.9 5.3 0.2 0.60 63 -90082300.GGG 0.75 16.2 3016 -5.9 6.0 5.0 5.5 5.3 0.2 0.60 35 -90082200.BNA 0.75 15.5 2573 -6.1 6.1 9.1 12.7 8.7 0.3 0.60 -10 -90082000.PIA 0.75 19.3 4350 -6.5 6.2 12.0 9.9 9.4 0.9 0.60 67 -90081900.DEN 0.75 11.7 1982 -7.8 7.6 10.2 22.1 6.4 0.3 1.70 25 -90081700.CHS 0.75 19.5 3889 -6.9 5.7 14.2 20.9 11.2 1.0 0.60 100 -90081400.MAF 0.75 13.7 1599 -7.1 6.2 5.0 16.6 2.3 0.1 0.60 35 -90081400.ALB 0.75 14.6 1251 -7.6 5.7 31.1 21.6 20.7 0.6 0.60 261 -90080400.STC 0.75 13.1 2229 -12.5 7.3 5.3 20.0 8.7 0.3 1.40 45 -90073100.JAN 0.75 14.6 2834 -7.3 6.1 5.1 5.0 0.7 0.2 0.60 -3 -90072800.TOP 0.75 16.5 3218 -7.8 6.7 8.8 11.3 9.8 0.6 0.90 282 -90072700.DDC 0.75 14.7 3550 -7.0 7.6 7.6 7.2 6.0 0.5 2.20 84 -90072200.PAH 0.75 16.9 2541 -5.6 5.7 13.3 15.3 11.4 0.4 0.60 80 -90072200.CHS 0.75 18.4 3537 -7.5 6.2 8.3 10.2 7.1 0.6 0.60 88 -90070800.TBW 0.75 20.0 5452 -8.1 6.5 7.8 15.4 5.9 1.0 0.60 11 -90070300.SIL 0.75 18.4 3250 -5.7 5.8 11.8 14.5 7.5 0.5 0.60 79 -90061000.AHN 0.75 14.8 2847 -8.2 5.9 8.6 9.9 5.6 0.4 0.60 50 -90060700.TBW 0.75 17.0 3686 -8.6 6.0 5.0 7.3 4.1 0.4 1.80 8 -90060400.PIT 0.75 9.5 390 -12.5 5.6 26.0 37.7 14.6 0.2 0.60 57 -90052500.MAF 0.75 13.1 3262 -7.2 7.9 22.0 30.6 12.4 1.2 2.10 97 -90042400.1M1 0.75 12.8 2374 -12.6 6.7 14.0 8.3 6.6 0.8 1.50 56 -90042200.SEP 0.75 13.3 2775 -11.7 6.5 10.2 20.8 8.1 0.7 2.10 98 -90042100.OUN 0.75 12.4 1915 -14.1 6.5 25.3 31.9 13.1 1.2 2.30 138 -90033100.TBW 0.75 14.8 2515 -10.0 5.6 14.0 15.0 12.0 0.7 0.60 135 -89102800.OUN 0.75 12.0 1679 -12.7 6.8 10.1 27.1 8.3 0.4 1.00 115 -89081900.HON 0.75 13.1 984 -7.6 7.1 14.0 17.9 12.1 0.2 -999.00 244 -89081200.GRB 0.75 11.3 1782 -14.8 6.7 5.0 9.5 3.9 0.2 0.60 39 -89073100.TOP 0.75 14.5 2685 -6.4 6.7 9.8 13.0 12.0 0.4 0.60 117 -89073000.PAH 0.75 17.9 3630 -7.0 6.4 11.4 9.0 7.4 0.8 0.60 58 -89072900.SIL 0.75 18.8 4031 -6.8 6.3 5.0 5.0 3.9 0.4 0.60 37 -89071100.DDC 0.75 11.9 1858 -8.1 7.6 8.5 14.0 12.4 0.3 2.10 249 -89070800.AHN 0.75 16.8 2876 -6.5 5.8 5.0 5.0 4.3 0.2 0.60 33 -89062700.PIT 0.75 16.0 2924 -9.1 6.8 8.1 5.0 7.9 0.5 0.60 69 -89062300.OUN 0.75 16.0 3217 -7.1 5.9 12.8 14.9 6.9 0.6 0.60 113 -89062300.GRB 0.75 14.6 1729 -8.4 6.2 10.7 10.8 10.0 0.3 -999.00 139 -89062200.CKL 0.75 16.1 2986 -10.1 6.7 10.0 8.5 6.8 0.7 0.60 76 -89061600.ACY 0.75 16.5 2243 -7.6 5.9 18.8 19.1 19.5 0.7 0.60 217 -89061500.AHN 0.75 14.7 1717 -7.5 5.5 10.0 9.8 11.8 0.2 0.60 91 -89061300.CKL 0.75 16.1 2677 -8.6 6.1 15.9 7.3 11.5 0.8 0.60 102 -89060700.AHN 0.75 14.2 2402 -13.0 6.6 12.3 18.6 2.7 0.8 0.60 37 -89060400.PAH 0.75 16.4 3173 -9.7 5.8 14.2 14.7 15.5 0.9 0.60 90 -89052800.CKL 0.75 15.4 2098 -8.1 6.2 11.8 13.5 8.0 0.4 0.60 43 -04100400.CHS 0.75 15.3 1850 -10.7 6.0 22.1 32.7 13.4 0.9 0.60 81 -04092800.DNR 0.75 7.9 698 -13.9 7.1 17.7 21.0 12.4 0.2 1.00 112 -04082800.PIT 0.75 18.3 3258 -6.1 5.6 7.8 6.8 10.4 0.4 0.60 106 -04082800.JAN 0.75 18.0 3714 -7.5 6.4 5.0 5.0 1.0 0.4 0.60 12 -04081900.OTX 0.75 9.8 1929 -11.3 7.4 9.9 15.1 6.2 0.4 1.50 43 -04081900.DDC 0.75 11.7 2146 -6.3 6.2 5.0 11.0 10.2 0.1 0.70 15 -04081700.PHX 0.75 12.6 2729 -7.9 7.1 8.0 6.2 6.2 0.3 1.30 60 -04052300.BUF 0.75 13.8 1807 -10.6 5.8 22.4 24.0 18.8 0.8 0.60 239 -04051700.FFC 0.75 12.2 2077 -12.1 6.4 5.0 11.6 2.9 0.2 0.80 0 -04030500.LZK 0.75 12.4 745 -10.1 5.8 39.6 53.2 27.8 0.5 0.60 468 -03111300.BUF 0.75 8.1 418 -20.5 6.7 46.9 65.5 18.0 0.5 1.50 335 -03091000.JAN 0.75 15.0 1929 -9.5 6.0 10.8 22.1 8.1 0.4 0.60 83 -03090900.MAF 0.75 12.1 2389 -7.9 7.0 18.1 17.8 12.1 0.7 2.20 222 -03090900.GJT 0.75 6.8 996 -12.3 9.1 17.7 28.1 8.5 0.3 0.70 199 -03062200.IAD 0.75 10.5 1215 -17.1 5.8 15.1 9.7 9.3 0.4 1.10 79 -03062100.RAP 0.75 11.9 2338 -10.3 7.2 8.1 14.4 15.0 0.4 2.40 137 -03062000.BOI 0.75 7.0 491 -12.5 8.2 23.3 18.1 17.9 0.2 1.00 141 -03061900.TFX 0.75 8.6 1802 -9.3 8.2 10.8 13.4 13.1 0.3 1.00 178 -03061500.SHV 0.75 16.2 2511 -9.9 6.3 21.1 32.8 13.5 1.2 0.60 91 -03061222.XMR 0.75 17.1 2144 -7.9 6.1 5.0 6.1 5.2 0.2 0.60 65 -03061000.JAX 0.75 16.0 2482 -8.7 6.7 11.3 22.4 10.8 0.6 0.60 13 -03060700.MFL 0.75 18.2 3041 -6.7 5.6 5.0 9.3 0.9 0.2 0.60 5 -03052400.PIT 0.75 10.0 707 -16.7 6.5 26.5 23.6 12.1 0.5 1.00 65 -03050200.BMX 0.75 12.4 2216 -12.9 6.6 6.7 7.6 4.6 0.4 0.70 9 -03050100.DNR 0.75 6.7 1011 -20.1 8.0 33.5 27.3 12.5 0.8 1.20 108 -03042300.DNR 0.75 6.7 1183 -16.1 7.9 19.1 35.2 12.2 0.4 1.20 265 -03040922.XMR 0.75 15.5 2568 -10.3 5.6 31.0 38.3 12.7 1.6 0.60 34 -03032000.SGF 0.75 7.6 909 -22.1 6.7 10.5 8.6 18.2 0.2 1.40 205 -03031500.OTX 0.75 6.3 801 -26.3 7.5 24.9 28.7 18.3 0.6 1.50 240 -02072000.LZK 0.75 21.6 6551 -8.5 6.9 10.2 6.8 8.7 1.9 0.90 145 -02062500.LBF 0.75 11.7 3690 -10.3 9.2 7.2 9.1 5.0 0.7 1.30 45 -02060400.JAX 0.75 15.3 3128 -8.1 6.5 5.0 6.5 0.3 0.3 0.60 15 -02051500.PIT 0.75 5.9 521 -27.9 7.9 14.7 14.3 17.3 0.2 1.10 74 -01062400.BIS 0.75 13.7 4781 -10.9 9.0 18.7 27.1 15.0 2.7 1.70 249 -00090200.SHV 0.75 12.1 1896 -7.5 7.0 5.0 5.0 5.2 0.1 0.70 15 -00080400.LCH 0.75 15.7 3045 -7.5 5.6 5.0 12.8 4.7 0.2 0.60 28 -00072400.GGW 0.75 10.9 3240 -11.1 8.5 26.1 22.5 12.5 2.0 1.40 54 -00072300.GSO 0.75 16.5 2443 -9.1 5.7 20.6 22.2 6.6 1.0 0.60 88 -00072100.TBW 0.75 18.9 4845 -6.9 6.4 7.0 10.7 7.4 0.6 0.90 56 -00071900.JAN 0.75 19.7 3841 -6.1 6.1 7.5 6.9 5.7 0.5 0.60 32 -00071800.JAN 0.75 20.3 3305 -5.5 6.0 13.9 14.4 13.1 0.7 0.60 -56 -00071300.FWD 0.75 14.9 3103 -5.7 6.5 10.6 11.4 13.9 0.4 0.80 120 -00071300.DDC 0.75 15.1 3064 -3.7 6.1 6.2 10.6 9.2 0.1 0.60 0 -00062900.GRB 0.75 8.9 860 -18.9 6.4 17.0 24.4 14.1 0.4 1.10 108 -00062500.JAX 0.75 15.6 2442 -10.1 6.2 9.4 21.8 9.3 0.5 0.60 104 -00061900.WAL 0.75 17.4 2909 -7.9 6.3 11.3 9.5 11.6 0.7 0.60 134 -00061800.JAX 0.75 15.7 2677 -7.9 5.7 6.0 10.5 7.9 0.3 0.60 61 -00052200.LZK 0.75 12.1 2062 -13.5 6.2 22.6 32.5 17.7 1.1 1.40 162 -00050300.JAN 0.75 12.8 1438 -12.9 5.9 12.8 7.2 13.9 0.4 0.60 120 -00022400.LZK 0.75 10.6 1590 -18.1 7.0 25.0 34.2 17.2 1.2 2.50 270 + DATE / RAOB REPORT MUMR MUCAPE 500TEMP 7-5LR 0-6SHR 0-9SHR 0-3SHR SHIP MODEL SRH +95052300.DDC 6.00 15.3 4181 -9.6 7.5 19.4 26.8 23.4 2.0 3.00 325 +91051100.MAF 6.00 14.9 4692 -10.8 8.8 13.2 18.1 14.2 2.0 2.70 -37 +97061700.OUN 5.50 18.8 5751 -9.5 7.4 23.6 45.9 14.5 4.1 3.50 116 +99012200.LZK 5.00 12.3 2240 -17.3 7.6 26.3 32.1 23.0 2.2 3.00 294 +96061200.DDC 5.00 13.7 2820 -8.3 7.6 20.3 15.8 12.9 1.1 2.50 142 +92072600.DDC 5.00 17.4 4794 -4.6 6.8 17.4 14.6 18.2 1.0 0.80 176 +91052900.HON 5.00 15.2 3668 -12.3 8.0 40.7 36.0 25.0 5.1 3.50 269 +90070800.BIS 5.00 16.6 3717 -9.8 7.7 29.8 42.2 12.5 3.1 2.40 202 +57070300.RAP 5.00 15.8 4359 -6.7 7.7 22.9 39.3 13.9 1.8 3.40 130 +99060100.DDC 4.75 15.9 4387 -11.3 8.0 27.7 38.0 15.3 4.0 3.50 209 +99072600.LBF 4.50 16.4 4375 -6.7 7.9 12.9 16.1 9.5 1.1 2.60 60 +99050400.OUN 4.50 15.6 5195 -14.9 8.4 21.3 22.0 16.5 4.9 4.70 343 +99030600.LZK 4.50 11.7 1922 -18.5 8.2 22.8 39.2 21.4 1.8 2.10 360 +98052200.SGF 4.50 17.1 4642 -9.9 7.8 22.4 23.1 13.8 3.1 2.30 232 +98040800.ILX 4.50 10.2 1354 -19.7 7.2 21.2 25.1 20.1 0.9 2.60 180 +96102100.OUN 4.50 12.7 2995 -12.9 7.5 20.3 28.4 15.6 1.7 3.00 71 +96081100.LBF 4.50 13.3 2360 -8.4 6.2 26.1 22.0 26.5 1.0 2.60 326 +96062700.TFX 4.50 13.9 3835 -10.9 8.3 37.1 44.3 21.8 4.1 1.60 297 +96051000.TOP 4.50 15.6 3884 -11.1 8.8 18.3 22.3 22.1 2.4 3.30 234 +96050500.IAD 4.50 12.1 1906 -15.2 7.2 25.0 25.5 15.9 1.4 1.90 36 +96030700.JAN 4.50 14.0 2362 -12.5 6.8 34.9 36.9 16.8 2.2 0.60 196 +95060900.MAF 4.50 17.8 5653 -8.1 8.1 18.7 33.5 12.8 2.8 2.90 83 +95060500.MAF 4.50 14.9 4358 -8.6 7.6 23.2 32.0 16.0 2.2 2.90 181 +95051900.BMX 4.50 16.5 3340 -9.9 6.6 20.6 25.5 16.9 1.7 -999.00 247 +95051700.DDC 4.50 15.6 4878 -10.8 8.5 26.6 40.7 8.9 4.2 2.60 43 +94060800.LBF 4.50 13.0 3400 -9.5 7.8 18.7 18.4 8.1 1.4 2.40 109 +94042600.SEP 4.50 16.3 4409 -11.5 7.4 26.7 26.2 21.2 3.7 3.30 138 +94040300.OUN 4.50 10.1 2075 -17.0 7.6 31.2 39.3 18.7 1.9 2.10 163 +93101800.SEP 4.50 15.7 3958 -10.6 7.0 31.7 30.5 23.2 3.3 2.20 441 +93101300.SEP 4.50 14.2 3151 -13.1 8.0 22.3 31.8 15.0 2.4 2.90 307 +93092200.TOP 4.50 16.8 3665 -8.1 6.5 33.9 37.9 21.3 1.6 -999.00 460 +93092200.OVN 4.50 15.4 3685 -11.1 8.1 23.0 33.2 23.5 3.7 -999.00 216 +93072400.BIS 4.50 15.3 3597 -9.8 5.8 21.0 33.2 14.9 1.5 2.30 263 +93062700.OVN 4.50 15.0 3720 -10.0 6.3 22.3 28.9 9.4 1.8 3.10 140 +93060800.OUN 4.50 17.0 4917 -9.1 7.1 30.6 26.7 9.7 3.8 2.60 195 +93050100.DDC 4.50 11.1 3206 -16.5 8.0 24.0 29.9 15.4 2.6 3.70 194 +92073000.TOP 4.50 16.6 4074 -10.0 7.5 22.5 22.1 11.8 2.6 2.40 164 +92073000.OVN 4.50 16.6 4366 -11.4 7.4 22.3 23.7 13.9 3.1 3.20 216 +92062900.SEP 4.50 17.4 3761 -9.6 7.8 21.8 15.6 13.7 2.4 2.80 248 +92062800.DDC 4.50 13.8 2750 -11.3 7.8 20.6 41.3 15.2 1.6 2.90 315 +92062800.AMA 4.50 16.0 3950 -10.3 7.9 22.8 26.5 16.9 2.7 3.20 149 +91081400.GTF 4.50 11.5 2524 -13.2 8.5 25.8 28.9 15.3 1.9 2.00 213 +91072100.HON 4.50 20.1 5826 -6.1 6.8 22.8 33.9 14.3 2.5 1.90 180 +91042912.BRO 4.50 19.5 4180 -9.8 7.7 23.1 24.2 13.7 3.2 -999.00 254 +91032800.FNT 4.50 11.3 1681 -17.3 7.6 47.0 45.4 26.8 2.7 2.90 431 +90051600.OUN 4.50 16.7 4398 -9.0 7.6 25.5 44.9 23.2 2.9 3.60 180 +89080400.INL 4.50 17.4 3953 -11.5 8.3 18.6 29.2 7.3 2.8 1.00 36 +89070300.SEP 4.50 18.5 5261 -7.6 8.4 22.6 5.0 12.9 3.2 2.90 222 +89062700.GSO 4.50 17.6 4349 -7.3 6.3 14.2 6.4 7.8 1.1 0.90 52 +89060700.SEP 4.50 15.6 3272 -7.9 7.0 24.8 47.4 9.0 1.6 2.40 130 +89060400.MAF 4.50 14.0 3901 -10.0 8.5 20.6 33.6 6.6 2.2 2.20 58 +03062300.OAX 4.50 18.7 6203 -9.3 8.6 13.6 22.9 12.3 2.9 4.20 237 +03040400.OUN 4.50 11.9 2640 -15.1 7.3 24.0 23.9 13.4 1.9 2.30 187 +02091900.OUN 4.50 15.7 4268 -6.1 6.7 20.8 23.4 17.8 1.3 3.00 308 +02062400.ABR 4.50 17.2 5093 -10.5 8.2 26.3 30.9 16.9 4.5 3.50 187 +02060500.RNK 4.50 17.9 5399 -9.7 6.9 5.0 7.3 8.7 0.7 3.20 54 +02051200.TOP 4.50 15.8 4489 -11.9 8.1 26.0 26.5 13.7 4.1 3.30 224 +02051100.MAF 4.50 14.5 4658 -9.3 8.4 23.1 40.3 14.8 2.8 2.20 132 +01072100.GGW 4.50 13.5 3114 -10.7 7.7 28.3 30.5 15.8 2.2 2.80 354 +01071800.ABR 4.50 17.5 5177 -9.9 8.4 19.5 28.2 9.6 3.3 3.90 136 +01062100.DDC 4.50 15.2 4428 -10.7 7.8 19.0 25.2 13.4 2.4 3.20 400 +01061400.DDC 4.50 15.7 5244 -8.9 8.0 28.1 28.2 19.8 3.7 2.50 384 +01052500.JAN 4.50 13.5 3446 -15.1 7.5 21.8 31.4 17.4 2.6 2.70 240 +01051800.AMA 4.50 13.9 4695 -10.5 8.6 13.2 22.8 16.1 1.8 2.10 86 +01050700.SHV 4.50 15.7 2774 -12.5 6.5 15.7 22.1 9.0 1.3 1.70 110 +01050700.LZK 4.50 14.7 3512 -12.9 5.9 18.7 26.3 7.3 1.7 3.40 77 +01041500.DDC 4.50 13.1 3892 -18.3 9.0 43.1 54.7 24.4 8.2 2.50 233 +01040400.SGF 4.50 12.8 3277 -15.1 8.3 22.4 28.9 17.2 2.7 3.10 310 +04081000.DNR 4.25 12.9 3415 -9.1 8.0 15.0 15.4 16.2 1.1 3.20 270 +04071318.ILX 4.25 22.1 6811 -10.9 7.9 18.7 21.9 15.5 5.5 2.60 131 +04071300.LBF 4.25 19.5 7183 -7.3 8.6 14.7 20.5 10.3 2.9 3.70 68 +04071200.GGW 4.25 11.0 2390 -13.7 8.6 22.3 32.0 17.1 1.6 1.90 99 +04062200.AMA 4.25 13.8 3828 -8.9 8.0 26.2 40.5 17.8 2.2 2.30 141 +04053000.OUN 4.25 16.8 4526 -7.5 7.8 24.4 40.4 15.8 2.5 -999.00 224 +04052200.AMA 4.25 13.7 4265 -8.7 7.9 21.5 23.9 13.6 2.0 2.10 176 +04040400.MAF 4.25 12.0 2746 -14.7 7.0 19.5 31.1 14.4 1.5 2.70 262 +03051000.MHX 4.25 17.1 4373 -10.5 7.3 22.7 23.2 14.1 3.0 2.10 146 +03050518.BNA 4.25 16.1 2705 -12.9 7.1 37.0 37.2 18.3 3.4 -999.00 239 +03050500.SGF 4.25 15.7 5169 -13.5 7.6 38.4 50.7 30.0 7.3 2.90 348 +03040600.FWD 4.25 12.4 2487 -14.3 7.3 31.5 51.8 17.1 2.3 2.90 341 +01070300.LBF 4.25 16.7 5584 -8.7 8.5 18.0 24.7 14.2 2.8 4.20 154 +98063000.TOP 4.00 21.8 6490 -5.3 7.2 24.4 32.6 18.1 3.0 1.70 230 +98050800.FFC 4.00 17.3 4120 -12.3 7.7 31.0 51.6 17.1 4.7 2.20 172 +97082200.LBF 4.00 15.7 3974 -9.7 7.4 26.4 37.5 17.4 2.7 3.30 321 +96052300.LBF 4.00 13.5 2801 -11.1 8.0 27.8 43.7 18.5 2.1 2.90 303 +95102700.SGF 4.00 12.5 1922 -13.8 6.9 21.9 29.4 25.7 1.1 1.60 266 +95072600.DDC 4.00 18.3 5696 -10.1 8.8 21.3 19.2 17.1 4.5 3.30 238 +95072500.FTD 4.00 15.4 2897 -10.0 9.2 19.1 19.8 12.8 1.8 -999.00 168 +95051600.JAN 4.00 17.9 4861 -10.9 7.8 14.9 18.5 8.6 2.5 2.50 -35 +95050600.FTD 4.00 15.1 2036 -11.1 7.1 21.2 37.5 20.8 1.2 0.60 304 +93072300.HON 4.00 15.7 3720 -8.1 6.0 19.1 22.5 15.4 1.2 1.50 130 +93071600.RAP 4.00 14.1 3230 -7.5 7.7 25.0 35.8 18.6 1.5 3.20 97 +91041300.SEP 4.00 16.9 5008 -10.6 6.8 21.8 27.4 12.2 3.0 3.40 137 +90090200.RAP 4.00 11.3 1733 -7.4 7.5 23.6 32.7 14.1 0.6 2.10 181 +90070100.DAY 4.00 16.6 3541 -9.4 7.1 19.9 24.5 8.6 1.8 1.80 154 +90060900.TOP 4.00 18.5 5571 -10.1 7.3 22.6 16.4 14.8 3.9 2.70 252 +90051900.AMA 4.00 11.5 2732 -9.3 7.7 26.1 30.4 18.5 1.3 0.90 301 +90051500.AMA 4.00 14.8 4543 -9.9 8.2 24.7 33.8 19.2 3.0 2.60 473 +89071800.LBF 4.00 15.4 3622 -9.4 8.1 38.9 37.6 22.9 3.7 2.90 361 +89062700.DDC 4.00 14.3 2840 -8.4 7.6 19.4 19.2 12.7 1.1 2.20 167 +89061100.AMA 4.00 15.8 3666 -8.7 7.6 11.0 19.2 11.1 1.0 -999.00 87 +04071318.DVN 4.00 20.8 6090 -11.1 8.4 25.9 22.3 22.5 6.9 2.80 191 +03050300.BMX 4.00 15.2 4593 -15.7 7.9 32.4 30.5 8.1 6.4 2.90 72 +02061300.DDC 4.00 19.5 6234 -6.9 7.6 19.8 32.7 17.2 2.9 3.70 126 +98062000.OUN 3.50 19.0 6048 -7.1 7.8 15.4 11.2 13.7 2.2 3.90 209 +98052500.OUN 3.50 18.0 5688 -10.7 8.1 21.9 28.7 9.9 4.4 4.20 172 +98052100.TOP 3.50 17.2 4700 -12.5 8.4 10.5 23.7 9.8 2.0 3.80 100 +97062100.LBF 3.50 17.3 6058 -9.3 8.8 23.1 25.1 13.9 4.5 3.70 129 +96062000.OAX 3.50 16.3 4081 -9.8 8.6 19.0 24.4 18.9 2.4 -999.00 271 +90061900.BIS 3.50 11.1 1968 -13.5 8.2 28.4 38.0 17.4 1.6 2.90 257 +90060900.IAD 3.50 17.2 3994 -10.9 7.1 23.7 20.0 18.3 2.9 0.80 203 +90040600.SEP 3.50 12.4 3764 -14.9 7.8 25.2 36.8 15.4 3.1 2.60 305 +90031400.OUN 3.50 14.6 3950 -16.1 7.2 20.2 49.4 12.3 3.1 2.80 170 +89070300.STC 3.50 15.6 3556 -8.2 7.0 15.8 21.4 8.5 1.1 1.40 128 +02081200.DDC 3.50 14.6 3415 -8.7 8.0 15.7 27.7 10.7 1.2 3.10 157 +01061500.FWD 3.50 17.3 4260 -9.7 7.9 15.1 9.7 11.1 1.9 2.20 74 +01041000.SGF 3.50 13.0 3476 -14.5 7.9 21.6 30.3 12.5 2.5 2.60 141 +91060500.DDC 3.25 16.9 4631 -7.9 6.5 15.3 15.4 11.0 1.4 3.50 74 +99060200.FWD 3.00 17.3 4928 -11.5 8.8 15.0 30.3 15.3 2.9 4.50 171 +98062900.TOP 3.00 22.0 6870 -7.7 7.0 20.6 27.3 19.3 3.8 2.40 335 +98062500.BIS 3.00 15.5 4591 -13.3 8.1 15.9 15.4 15.5 2.8 3.00 89 +98062500.ABR 3.00 21.0 4446 -13.7 8.8 17.4 28.7 11.2 4.4 3.70 42 +98061400.OAX 3.00 13.3 2830 -10.5 7.7 24.4 45.4 15.3 1.7 3.40 219 +98052400.DDC 3.00 11.6 2630 -12.9 6.7 22.0 27.7 9.8 1.3 2.30 101 +97061000.FWD 3.00 15.6 2699 -9.9 7.0 18.7 24.1 10.9 1.2 1.30 98 +97052600.OUN 3.00 17.2 5143 -7.7 5.9 30.4 32.4 15.0 2.8 2.60 148 +96070800.LBF 3.00 15.3 3341 -6.4 7.0 30.0 41.5 20.6 1.6 2.20 390 +96062012.LBF 3.00 15.0 3262 -8.6 7.9 18.5 25.0 16.9 1.7 -999.00 195 +96061400.UNR 3.00 13.1 3614 -11.0 8.4 18.0 14.8 12.4 1.8 2.00 63 +96052700.OUN 3.00 15.2 3034 -9.4 6.9 29.8 33.6 22.5 2.0 2.00 330 +96042000.ILX 3.00 12.9 2394 -14.6 7.1 27.0 39.5 16.4 2.0 -999.00 249 +96033100.SHV 3.00 12.7 2841 -17.1 7.6 27.4 35.5 20.1 2.9 3.10 163 +95082700.GGW 3.00 11.7 2973 -12.6 8.3 26.8 41.0 13.6 2.2 1.70 162 +95082300.INL 3.00 15.4 2824 -11.6 8.0 30.9 26.5 25.4 2.8 2.10 695 +95072400.DDC 3.00 15.9 3645 -9.9 8.2 18.2 32.6 11.8 1.9 3.60 31 +95071500.LBF 3.00 14.4 3052 -7.0 6.5 15.9 24.7 13.9 0.7 2.10 159 +95062300.LBF 3.00 12.9 2776 -11.1 7.9 21.0 19.8 15.3 1.5 2.80 221 +95043000.FTD 3.00 15.0 4416 -13.3 8.1 21.9 31.7 15.6 3.5 3.40 166 +95021400.PBI 3.00 16.5 2393 -11.0 5.9 27.1 33.4 13.8 1.6 0.60 117 +94060600.DDC 3.00 14.8 4698 -8.8 8.7 15.6 18.6 13.1 1.9 2.10 248 +94052600.FNT 3.00 10.8 2240 -16.3 6.1 17.8 25.8 12.8 1.0 2.40 113 +94032800.CKL 3.00 15.3 2066 -9.6 6.3 38.6 36.3 30.5 1.7 0.60 429 +93091900.DDC 3.00 12.4 1941 -10.4 7.2 29.5 46.6 16.8 1.2 2.80 233 +93091900.AMA 3.00 12.4 1912 -9.0 7.7 32.7 35.4 16.5 1.2 2.40 264 +93082300.DDC 3.00 13.3 2608 -7.8 7.7 19.5 27.0 13.1 0.9 2.00 83 +93070900.OVN 3.00 19.7 5546 -6.8 6.9 29.4 24.3 16.9 3.4 0.60 345 +93070200.DDC 3.00 17.1 4895 -5.2 7.2 16.4 21.4 13.3 1.2 2.80 237 +93060600.HAT 3.00 16.0 4948 -13.5 8.3 15.5 17.2 12.6 3.1 3.90 70 +93050600.MAF 3.00 13.9 3784 -9.6 7.2 27.0 25.4 18.6 2.2 2.50 149 +92070500.OVN 3.00 17.3 5051 -9.3 7.4 21.8 33.3 16.1 3.0 3.50 243 +92062700.MAF 3.00 13.9 3224 -8.2 7.7 23.7 38.8 13.0 1.5 2.50 253 +92032600.TBW 3.00 12.6 1934 -14.0 6.5 31.1 37.0 18.6 1.6 1.10 196 +91052700.DDC 3.00 17.0 5256 -10.5 8.4 21.7 29.3 13.3 3.8 2.90 81 +91040912.1M1 3.00 14.2 3345 -15.2 8.0 19.7 20.8 11.5 2.6 -999.00 134 +91032700.TOP 3.00 12.7 2491 -12.3 6.8 27.7 31.7 21.6 1.6 2.50 282 +90052700.OUN 3.00 17.5 4621 -8.8 7.6 23.8 25.1 20.4 2.9 4.00 255 +90051500.OUN 3.00 16.8 4798 -10.7 7.8 19.8 29.7 12.5 3.0 4.20 186 +89060700.AMA 3.00 15.4 4752 -9.5 8.5 30.5 55.6 21.7 4.1 2.40 303 +89060500.OUN 3.00 12.5 1640 -11.6 7.0 15.7 23.9 8.8 0.6 0.70 53 +04081000.DDC 3.00 14.6 3147 -9.7 7.7 21.0 22.0 13.0 1.6 3.00 222 +04070200.AMA 3.00 16.9 5137 -8.1 7.4 14.0 16.6 18.0 1.7 3.00 80 +04052300.OAX 3.00 14.7 4320 -12.3 7.6 32.9 29.4 20.0 4.4 3.00 289 +04051700.DDC 3.00 10.0 2200 -11.9 8.4 31.7 30.2 20.5 1.6 1.50 390 +04042200.OUN 3.00 12.2 2363 -13.5 7.0 24.3 33.8 16.9 1.5 2.70 385 +04041900.OAX 3.00 11.9 3136 -15.1 8.2 33.8 44.9 20.5 3.6 1.90 394 +03062800.DDC 3.00 11.4 2329 -9.3 6.7 16.9 26.8 10.8 0.6 2.20 138 +03062400.LBF 3.00 18.6 6189 -8.7 8.1 30.8 31.6 21.7 5.7 4.80 381 +03050420.SGF 3.00 15.8 4524 -11.9 7.1 35.4 47.9 25.2 4.8 3.20 480 +03042100.SHV 3.00 15.5 2947 -13.5 7.5 24.0 38.0 14.3 2.5 0.90 110 +01090900.FWD 3.00 19.0 4304 -8.9 8.2 14.1 12.0 7.7 1.9 2.70 97 +01053000.AMA 3.00 16.4 5827 -9.7 8.2 26.1 29.7 25.0 4.5 2.80 268 +01051900.LZK 3.00 16.6 4269 -12.5 8.1 18.5 25.8 9.9 3.0 2.70 98 +00080600.OAX 3.00 19.0 5525 -7.1 7.5 15.0 22.8 9.4 1.9 3.10 56 +00062900.MAF 3.00 14.8 3565 -6.3 6.3 10.5 16.7 9.6 0.5 1.80 29 +00050400.FWD 3.00 13.2 2690 -14.3 6.3 21.9 28.5 19.0 1.6 3.00 327 +99081800.LBF 2.75 18.3 5554 -8.9 7.8 23.7 25.1 10.7 3.8 3.40 143 +99070100.MAF 2.75 14.3 3989 -2.5 7.5 14.9 13.7 10.5 0.4 2.00 146 +99061900.DDC 2.75 13.9 4137 -11.3 7.3 22.5 28.8 13.4 2.4 2.40 346 +99061200.AMA 2.75 14.7 4400 -10.3 7.7 26.2 36.6 18.8 3.1 2.40 210 +99060300.AMA 2.75 15.6 5087 -10.3 8.7 18.6 49.2 15.5 3.0 2.50 289 +98061400.OUN 2.75 20.5 6689 -6.5 7.7 32.8 42.7 17.9 5.1 4.00 262 +98052500.DDC 2.75 12.5 2643 -12.1 7.2 27.5 32.0 13.7 1.8 2.70 180 +98040900.BMX 2.75 15.8 3341 -13.9 7.9 40.1 51.5 25.9 5.3 2.00 296 +97061600.DDC 2.75 13.5 3187 -10.9 7.7 23.3 39.3 11.9 1.9 2.70 26 +97061200.TOP 2.75 12.6 1552 -11.7 7.1 23.5 30.2 11.6 0.9 0.90 141 +97052700.SGF 2.75 16.3 4440 -9.9 7.0 22.6 25.0 16.3 2.6 2.60 276 +97052700.OUN 2.75 18.0 5907 -8.7 6.4 17.5 23.9 17.6 2.4 3.70 271 +97042100.SGF 2.75 9.4 1773 -16.5 7.4 25.4 23.9 23.3 1.2 2.00 405 +97041100.MAF 2.75 11.9 4076 -15.0 8.2 23.7 30.7 20.8 3.2 2.10 260 +97032900.BNA 2.75 11.3 1569 -15.6 7.4 25.2 15.3 18.1 1.2 3.00 389 +97012500.SIL 2.75 13.0 2563 -16.5 7.5 18.3 25.8 18.3 1.7 2.80 145 +96092100.FTD 2.75 16.4 2870 -9.4 6.5 26.4 32.6 15.7 1.7 -999.00 136 +96083000.DEN 2.75 11.7 2478 -9.1 7.8 26.2 28.9 17.6 1.2 2.30 86 +96080100.DEN 2.75 13.5 3920 -7.8 8.5 22.6 26.3 15.0 1.8 2.10 276 +96072400.DDC 2.75 14.3 3068 -11.1 8.6 27.6 36.6 16.8 2.6 2.70 203 +96062500.AMA 2.75 13.9 3684 -9.4 8.5 22.9 28.2 7.0 2.1 1.90 123 +96061400.LBF 2.75 12.4 2384 -8.6 6.5 15.4 25.0 12.0 0.6 2.20 102 +96061300.FFC 2.75 13.7 2726 -9.1 5.7 12.9 13.1 12.9 0.6 1.00 152 +96061200.AMA 2.75 11.9 3029 -8.8 8.0 24.3 30.2 18.3 1.4 1.90 373 +96060300.SGF 2.75 11.7 2739 -15.9 7.1 26.4 35.9 14.8 2.2 2.10 90 +96060200.JAN 2.75 16.1 1789 -7.5 5.5 12.7 20.3 11.3 0.3 0.60 168 +96060100.ABR 2.75 12.6 2276 -13.4 6.2 22.4 27.2 24.6 1.2 2.20 370 +96053000.MAF 2.75 14.9 3675 -7.0 7.7 35.1 40.6 19.0 2.3 2.50 321 +96052600.MAF 2.75 14.1 3464 -6.2 7.7 28.7 42.1 22.5 1.5 2.90 240 +96052500.AMA 2.75 13.5 3927 -11.3 9.1 20.3 5.0 16.4 2.5 1.90 101 +96051800.OAX 2.75 15.3 4523 -11.1 8.8 16.0 21.2 12.9 2.5 -999.00 68 +96051700.UNR 2.75 14.8 4365 -8.1 8.0 25.5 28.7 15.0 2.4 2.50 219 +96042200.TOP 2.75 10.9 1522 -16.6 7.3 45.6 54.3 14.6 2.1 2.30 145 +96042200.OUN 2.75 12.7 2100 -10.9 5.9 38.3 48.8 18.5 1.5 2.30 500 +96031600.FFC 2.75 9.6 890 -19.2 7.8 28.8 55.2 20.5 0.8 2.20 353 +95081800.BIS 2.75 18.4 5584 -7.0 7.7 10.6 17.3 10.6 1.3 3.30 142 +95072400.AMA 2.75 13.3 2225 -7.8 8.5 21.6 25.1 13.1 1.0 2.90 124 +95071500.GRB 2.75 19.0 5409 -8.5 8.1 12.1 9.0 8.0 1.9 3.00 69 +95071200.OKX 2.75 13.9 2900 -15.6 6.9 12.7 13.6 8.1 1.2 2.40 48 +95070300.DDC 2.75 14.2 2905 -9.6 6.8 18.2 21.4 12.3 1.1 2.30 111 +95070300.AMA 2.75 14.7 3838 -11.5 8.8 22.8 29.0 8.2 2.9 2.50 115 +95062800.LBF 2.75 12.4 2880 -10.1 7.7 22.0 19.7 13.9 1.4 2.50 208 +95062100.OKX 2.75 17.1 3918 -9.8 7.1 18.4 25.8 11.4 2.0 1.00 18 +95060300.AMA 2.75 12.4 3024 -9.6 8.2 22.4 37.2 15.7 1.5 2.00 346 +95052200.LBF 2.75 10.4 2027 -14.9 7.4 28.3 33.3 18.7 1.5 2.10 221 +95051400.UMN 2.75 16.5 5245 -10.3 6.9 28.0 26.2 22.3 3.9 3.20 211 +95042000.FTD 2.75 14.6 2621 -13.3 7.7 31.2 59.2 25.8 3.2 -999.00 242 +95040900.TOP 2.75 10.7 2836 -17.5 9.2 21.4 31.9 16.5 2.4 1.90 120 +94070700.HON 2.75 16.5 2845 -8.8 7.2 20.5 18.6 10.2 1.4 0.60 159 +94070200.OAX 2.75 18.5 5257 -10.1 8.0 26.5 25.4 15.5 4.7 3.20 416 +94070100.STC 2.75 14.1 3635 -11.4 7.2 27.2 25.1 19.0 2.6 2.70 399 +94062600.JAN 2.75 16.1 2842 -9.5 6.4 24.0 32.8 12.4 1.5 0.90 130 +94062500.HON 2.75 11.8 1904 -10.8 6.4 27.8 33.5 15.4 1.0 2.20 211 +94061800.AMA 2.75 11.9 2676 -7.0 8.2 11.0 11.3 10.7 0.5 1.60 171 +94061200.TOP 2.75 13.9 2239 -9.5 6.6 23.9 24.4 15.8 1.1 0.90 117 +94061200.AMA 2.75 14.7 4015 -8.0 7.8 26.7 19.9 18.4 2.2 2.70 302 +94061100.AMA 2.75 12.3 2164 -8.3 7.3 19.5 20.3 16.6 0.7 2.80 229 +94060600.TOP 2.75 16.5 3953 -9.3 8.1 16.1 27.7 15.4 1.8 2.50 394 +94060500.HON 2.75 14.2 3749 -11.6 8.5 21.4 19.2 12.0 2.5 2.40 202 +94053000.SEP 2.75 17.5 5032 -10.6 8.2 27.0 23.8 16.1 4.7 3.90 291 +94052500.OUN 2.75 15.0 3912 -11.5 7.4 22.0 36.2 13.2 2.5 3.00 122 +94041100.UMN 2.75 12.6 2036 -16.5 7.6 46.3 45.4 19.9 2.8 -999.00 125 +94012700.GGG 2.75 12.7 1841 -15.9 6.8 31.0 32.3 17.5 1.8 0.70 288 +93102000.DRT 2.75 15.5 3433 -8.9 6.4 25.4 34.0 13.4 1.8 1.60 35 +93101900.GGG 2.75 15.7 3105 -9.8 6.9 23.5 33.9 10.3 1.8 0.70 105 +93101300.CRP 2.75 17.3 4367 -8.6 6.3 20.2 29.8 14.8 1.9 1.50 227 +93090400.IAD 2.75 15.6 2779 -5.9 5.7 15.2 15.6 12.4 0.5 0.60 149 +93070700.DDC 2.75 17.0 5334 -6.0 7.2 27.9 28.2 16.5 2.5 3.10 154 +93070700.AMA 2.75 17.0 5327 -4.7 7.8 21.3 20.0 11.4 1.6 3.80 127 +93070500.DDC 2.75 17.1 4186 -5.4 6.7 30.6 34.9 16.6 1.8 1.20 146 +93062400.LBF 2.75 16.0 3944 -8.6 8.1 21.9 33.8 18.1 2.2 2.80 178 +93062400.DEN 2.75 11.7 3442 -9.6 8.8 32.0 42.3 15.8 2.5 1.80 211 +93061900.AMA 2.75 12.8 2140 -7.8 7.0 22.7 23.3 14.4 0.8 1.90 146 +93051600.DDC 2.75 12.8 3614 -9.8 6.6 19.4 23.7 12.6 1.3 2.50 161 +93050600.AMA 2.75 13.2 4478 -13.6 8.6 34.6 38.4 16.6 5.5 2.00 340 +93050100.AMA 2.75 11.6 4085 -14.5 8.1 25.7 15.8 15.3 3.2 1.90 234 +93042900.MAF 2.75 11.7 2435 -10.9 7.1 29.3 37.4 20.8 1.5 2.20 551 +93042800.MAF 2.75 10.4 1494 -10.6 6.9 19.6 25.8 12.9 0.5 1.80 150 +93042500.UMN 2.75 11.4 2317 -14.6 6.9 25.2 33.1 18.2 1.5 2.40 198 +93042000.GGG 2.75 12.4 2342 -13.3 8.0 26.7 28.4 17.5 1.9 2.70 156 +93040200.WAL 2.75 10.9 1625 -18.5 7.3 30.7 48.4 26.8 1.7 2.40 200 +93033100.UMN 2.75 11.1 2598 -16.5 6.4 29.7 28.9 19.7 2.1 2.10 117 +93033100.1M1 2.75 11.9 2471 -15.1 7.2 30.2 27.1 17.8 2.2 2.80 54 +92101600.SEP 2.75 14.6 3654 -12.1 7.7 16.4 22.7 12.6 1.8 2.90 227 +92073000.LBF 2.75 15.0 3544 -10.3 7.9 25.7 33.8 22.0 2.5 3.00 335 +92062700.AMA 2.75 14.1 3165 -10.0 7.7 16.6 29.9 12.4 1.3 2.90 191 +92061900.DDC 2.75 12.8 2598 -8.3 7.9 25.1 40.5 15.7 1.2 2.70 114 +92061900.BIS 2.75 11.0 1791 -14.4 6.9 27.4 24.4 13.0 1.2 2.50 106 +92061300.AMA 2.75 14.7 2821 -8.8 7.2 19.1 36.4 12.0 1.1 2.70 165 +92061200.MAF 2.75 13.8 2387 -8.2 7.4 26.7 34.6 13.3 1.2 2.00 178 +92060500.AMA 2.75 13.4 2870 -9.4 7.5 17.5 25.9 12.2 1.1 2.60 249 +92030600.1M1 2.75 11.5 2572 -21.1 7.2 22.5 26.7 17.3 2.3 2.30 194 +92021500.UMN 2.75 10.2 1724 -16.9 6.4 33.2 28.2 24.2 1.4 2.20 289 +91072200.HON 2.75 19.3 4474 -6.8 7.2 17.3 24.1 11.1 1.7 -999.00 198 +91070500.GGW 2.75 11.4 2277 -9.9 7.0 17.5 23.9 6.7 0.7 2.20 144 +91070500.BIS 2.75 13.3 2851 -9.3 6.4 21.4 26.6 19.3 1.1 2.40 206 +91062000.HON 2.75 13.9 2691 -10.5 7.0 22.1 20.0 16.1 1.4 1.20 282 +91061900.LBF 2.75 13.0 3592 -12.0 8.6 15.2 20.9 13.5 1.7 2.60 219 +91061500.GRB 2.75 17.6 3430 -8.7 6.7 13.9 17.0 21.7 1.1 0.60 161 +91061500.BIS 2.75 13.0 2343 -11.9 6.6 22.5 25.2 13.2 1.2 2.60 152 +91060500.OVN 2.75 14.6 2813 -10.1 6.5 17.1 19.6 8.4 1.0 3.10 177 +91053000.RAP 2.75 16.8 4287 -10.2 6.8 18.2 19.0 13.0 2.1 2.00 159 +91053000.OVN 2.75 10.9 2814 -15.7 8.1 14.5 28.4 14.3 1.3 2.70 31 +91052500.AMA 2.75 13.7 3416 -10.5 7.0 17.4 13.8 17.0 1.3 2.50 124 +91051800.UMN 2.75 15.1 3444 -11.0 7.4 11.9 21.0 9.4 1.1 1.20 59 +91051700.UMN 2.75 15.9 3299 -10.6 7.6 16.1 11.8 14.4 1.5 1.90 174 +91051200.RAP 2.75 14.1 4430 -11.0 7.9 23.5 33.5 26.6 2.9 2.50 437 +91051100.AMA 2.75 15.6 5629 -10.7 9.0 16.5 21.5 14.5 3.2 2.50 314 +91042800.GGG 2.75 18.9 4554 -10.5 7.2 29.5 19.6 15.4 4.4 2.20 140 +91042700.OUN 2.75 16.6 4248 -11.5 7.0 23.6 26.4 20.6 3.0 3.70 376 +91042700.GGG 2.75 18.9 5164 -10.7 8.2 18.9 27.6 12.4 3.7 2.70 209 +91041300.OUN 2.75 14.1 4063 -13.7 8.0 22.0 25.1 17.1 3.1 2.90 205 +91040300.OUN 2.75 10.1 1560 -19.8 7.3 22.6 41.7 15.1 1.2 1.50 275 +91032700.DDC 2.75 12.4 3132 -14.2 8.2 40.7 44.0 18.9 4.2 2.10 160 +91032200.UMN 2.75 11.5 2599 -15.3 7.0 33.0 35.3 18.8 2.4 2.50 371 +90090600.STC 2.75 19.5 4798 -6.8 6.2 21.0 17.1 14.7 1.9 1.00 294 +90082800.SSM 2.75 18.2 4669 -8.5 6.2 31.6 29.9 20.5 3.2 1.10 335 +90081100.LBF 2.75 14.8 3971 -9.0 7.5 25.6 21.5 14.3 2.3 2.90 282 +90070700.BIS 2.75 14.9 3274 -7.5 6.9 19.0 25.7 12.9 1.1 2.20 316 +90070300.BIS 2.75 21.3 6982 -6.3 8.2 23.0 29.6 14.9 4.0 4.60 172 +90061900.LBF 2.75 19.2 7070 -6.1 8.4 30.2 38.1 18.5 4.8 1.30 266 +90060200.STC 2.75 13.4 2697 -13.3 8.5 18.6 17.2 10.4 1.7 2.60 132 +90060200.LBF 2.75 13.6 3719 -10.8 7.9 15.6 29.4 16.4 1.5 2.80 89 +90053100.GGG 2.75 19.3 4700 -5.7 6.1 27.2 25.7 21.5 1.9 2.50 317 +90052000.OUN 2.75 15.3 4565 -10.8 7.1 13.7 14.7 12.1 1.7 3.90 94 +90051900.LBF 2.75 12.1 3954 -13.9 8.6 25.1 24.6 16.2 3.2 2.70 398 +90051700.GGG 2.75 17.5 3234 -8.3 7.2 24.7 35.1 17.6 1.9 0.60 304 +90050100.AHN 2.75 14.9 4557 -12.6 7.7 14.7 9.3 19.7 2.2 2.70 92 +90042800.GGG 2.75 12.9 2263 -14.9 6.6 14.1 25.3 12.8 0.9 3.70 84 +90041700.OUN 2.75 13.6 3717 -15.0 8.3 11.5 20.5 17.2 1.6 4.70 152 +90031400.PIA 2.75 12.4 2115 -14.4 6.9 18.1 24.1 15.3 1.1 3.70 206 +90021600.JAN 2.75 15.2 2047 -10.9 6.6 20.9 34.6 18.9 1.1 -999.00 124 +89090400.LBF 2.75 17.3 4400 -8.6 8.3 29.6 38.8 8.6 3.7 3.30 223 +89082900.STC 2.75 14.6 1959 -10.0 6.8 26.3 44.7 18.0 1.2 1.10 147 +89082200.STC 2.75 16.2 3346 -11.1 6.9 20.6 30.6 11.9 1.9 1.20 173 +89082200.OMA 2.75 17.9 3959 -8.3 7.0 22.2 45.4 15.0 2.1 0.90 138 +89082200.HON 2.75 15.6 4160 -9.4 6.9 22.9 28.9 14.8 2.2 3.30 107 +89081600.AMA 2.75 12.8 2669 -7.1 6.9 17.0 24.9 10.5 0.6 2.50 158 +89062600.RAP 2.75 11.5 2246 -13.8 7.8 31.3 30.4 20.0 2.0 2.60 301 +89061300.AMA 2.75 14.4 3611 -10.8 8.1 15.8 22.1 9.9 1.6 3.00 79 +89060300.TOP 2.75 13.7 2586 -12.6 7.0 19.5 39.7 12.4 1.4 2.00 118 +89060300.MAF 2.75 11.9 2291 -8.4 7.6 19.3 32.2 13.3 0.8 2.20 147 +89060200.MAF 2.75 14.1 2971 -10.4 7.9 24.5 27.4 8.5 1.9 2.80 104 +58042200.FWH 2.75 13.3 3338 -16.1 7.8 37.0 49.4 25.5 4.7 2.40 276 +04070500.DDC 2.75 14.3 3819 -10.3 8.3 18.6 30.5 14.4 2.0 2.50 161 +04060300.FWD 2.75 16.9 4767 -11.1 8.7 19.1 24.1 14.1 3.4 -999.00 157 +04051300.OUN 2.75 16.8 5740 -11.5 8.2 15.2 20.9 12.4 3.1 3.60 131 +04051100.DNR 2.75 10.6 3995 -12.9 9.2 28.3 16.6 18.2 3.2 1.50 379 +04050600.WAL 2.75 9.3 1861 -21.3 7.2 20.2 28.3 21.3 1.2 1.40 239 +04040500.CRP 2.75 14.9 2478 -12.1 6.7 22.4 20.6 7.0 1.5 0.60 184 +04032800.OUN 2.75 12.6 2904 -15.9 7.8 23.3 31.1 16.4 2.4 2.80 315 +04032718.DDC 2.75 13.2 4133 -17.3 8.0 24.6 26.6 14.4 4.2 2.30 143 +03100600.AMA 2.75 12.2 2542 -10.3 6.4 24.1 30.2 12.9 1.1 2.50 50 +03091100.MAF 2.75 13.3 2808 -6.5 6.8 10.3 9.0 7.4 0.4 1.40 80 +03091000.DDC 2.75 14.8 3620 -7.7 7.5 12.1 15.8 11.3 0.9 3.00 233 +03061400.AMA 2.75 12.3 3153 -13.3 8.3 21.7 24.7 13.7 2.1 2.10 35 +03060500.AMA 2.75 11.9 2647 -11.9 7.6 23.0 28.5 13.1 1.5 2.10 167 +03051700.SHV 2.75 16.3 3995 -10.9 7.4 23.2 13.9 19.6 2.8 2.70 242 +03051600.AMA 2.75 14.1 3706 -10.3 8.9 42.9 37.7 34.9 4.7 -999.00 632 +03051400.SHV 2.75 16.7 3920 -9.5 7.2 27.2 37.0 19.3 2.8 0.80 389 +03051000.OUN 2.75 16.8 5328 -11.1 8.3 27.5 34.8 16.8 5.1 3.60 182 +03050700.FWD 2.75 17.8 5303 -9.7 7.1 30.4 36.2 8.4 4.5 3.50 126 +03050618.SGF 2.75 15.6 5492 -14.7 7.7 32.0 40.6 17.8 7.1 2.80 313 +03050100.TOP 2.75 13.1 3776 -14.1 7.8 17.2 19.6 13.9 2.1 2.70 117 +03042900.SGF 2.75 13.1 3399 -16.7 8.5 5.0 19.6 4.8 0.7 2.80 53 +03042600.BMX 2.75 14.2 3921 -13.3 6.2 35.8 33.5 26.6 3.8 2.70 89 +03042500.LZK 2.75 13.8 3423 -15.7 7.6 20.9 31.0 20.0 2.7 3.30 212 +03031300.SHV 2.75 13.5 2901 -15.3 7.1 17.1 24.1 11.0 1.6 2.00 162 +02081200.LBF 2.75 13.3 3735 -9.9 8.7 13.1 11.8 10.5 1.3 2.10 222 +02072700.TOP 2.75 19.3 6406 -5.3 6.9 18.2 19.3 9.1 1.9 2.60 131 +02072000.TOP 2.75 17.5 4986 -7.5 7.3 10.0 12.7 8.5 1.1 2.70 197 +02062500.ABR 2.75 15.1 4208 -7.1 6.8 19.1 19.3 11.1 1.3 3.10 20 +02062400.BIS 2.75 16.0 3559 -9.7 6.8 28.0 24.8 25.2 2.4 2.40 298 +02061300.AMA 2.75 13.7 3027 -8.5 8.4 29.6 33.0 18.7 2.0 2.50 65 +02060500.AMA 2.75 13.2 2947 -11.5 7.6 32.1 45.0 17.9 2.5 2.70 309 +02052400.AMA 2.75 13.8 4729 -13.3 8.3 28.8 21.8 18.5 4.7 2.30 258 +02051800.DRT 2.75 16.0 5077 -10.5 8.1 8.8 6.3 5.2 1.4 2.60 15 +01112418.BMX 2.75 15.1 2902 -11.3 6.1 26.9 31.9 22.2 1.9 0.80 328 +01072500.GGW 2.75 11.5 1714 -11.3 6.9 26.7 32.1 18.2 0.9 2.20 350 +01071900.BIS 2.75 17.8 5738 -9.9 8.6 21.8 28.8 14.1 4.3 2.90 183 +01071900.ABR 2.75 17.5 5356 -10.5 8.8 18.1 22.7 3.4 3.6 2.70 35 +01071800.INL 2.75 17.0 4580 -12.9 7.8 11.9 12.8 11.8 2.1 0.80 154 +01070100.RAP 2.75 14.3 3235 -10.7 7.7 30.8 40.7 12.9 2.7 2.60 114 +01061900.MPX 2.75 15.6 5114 -11.9 9.2 33.1 31.9 19.0 6.6 3.40 154 +01061700.TOP 2.75 15.7 4594 -13.7 8.5 22.1 26.6 15.7 4.2 3.40 214 +01061700.LMN 2.75 14.1 4093 -10.7 8.0 19.4 26.9 9.3 2.2 3.50 195 +01061400.OAX 2.75 17.2 4956 -11.3 9.0 20.4 25.5 18.5 4.0 3.80 153 +01061000.ABR 2.75 13.8 3452 -12.1 7.8 24.6 32.3 16.6 2.5 3.60 158 +01060800.DNR 2.75 13.9 3440 -8.7 7.2 25.3 21.9 7.4 1.7 3.10 -26 +01060600.AMA 2.75 14.9 4665 -8.9 7.2 15.8 15.6 11.9 1.6 2.30 191 +01052500.FFC 2.75 11.7 2338 -14.5 6.4 18.1 21.4 19.6 1.0 2.50 240 +01050620.LMN 2.75 15.4 4496 -16.1 7.3 11.5 20.9 7.3 2.1 3.10 60 +01042100.OAX 2.75 12.4 3283 -15.3 7.7 28.1 32.7 23.5 3.0 2.40 282 +01040400.LZK 2.75 15.2 4223 -15.1 8.5 18.1 24.8 11.9 3.4 3.10 105 +00121618.BMX 2.75 13.2 2219 -14.1 6.7 32.9 45.8 25.0 2.1 0.90 266 +00072700.OAX 2.75 18.5 5048 -9.7 8.0 21.8 23.2 16.7 3.6 2.60 215 +00072500.LBF 2.75 17.1 5901 -8.9 8.5 24.5 29.4 22.2 4.2 2.90 162 +00072100.LBF 2.75 15.3 3073 -11.3 7.8 26.5 39.4 16.9 2.5 2.00 223 +00071700.MHX 2.75 15.1 2929 -12.3 7.2 18.2 29.9 7.9 1.6 2.30 81 +00071000.LBF 2.75 18.1 5871 -5.5 7.8 14.3 19.9 10.7 1.5 3.50 146 +00071000.GGW 2.75 15.6 2962 -10.9 7.0 18.4 13.5 23.2 1.5 2.60 248 +00062000.LBF 2.75 14.9 4028 -8.5 6.8 18.8 23.9 11.9 1.5 3.00 96 +00061400.AMA 2.75 16.5 5758 -4.9 7.6 23.8 32.0 19.9 1.9 2.50 244 +00061200.BIS 2.75 11.3 2000 -13.1 7.5 22.0 28.0 10.2 1.1 2.50 306 +00052700.OUN 2.75 18.3 5870 -10.1 8.4 21.5 32.8 12.8 4.4 4.00 117 +00051300.DTX 2.75 16.9 4524 -8.5 7.7 24.1 18.5 20.2 2.8 2.40 328 +00022500.AMA 2.75 10.3 3614 -18.5 8.5 26.8 48.5 13.1 3.6 1.70 107 +98071100.DDC 2.50 18.9 4096 -4.3 6.2 12.7 15.2 16.0 0.6 0.60 230 +96072200.LBF 2.50 18.4 4756 -6.5 7.2 20.0 29.4 19.0 1.8 2.10 94 +96071900.GRB 2.50 20.7 4525 -7.5 6.4 26.3 26.2 20.0 2.7 0.70 162 +96062100.DEN 2.50 15.2 5603 -8.1 9.6 27.5 33.4 8.8 4.2 2.20 155 +96061200.LBF 2.50 12.2 2268 -9.9 7.5 16.7 22.2 12.7 0.8 2.40 122 +96060300.AMA 2.50 11.0 2356 -10.5 6.9 27.6 31.6 18.0 1.2 2.00 256 +96060100.DDC 2.50 13.3 2888 -10.9 8.3 13.3 19.3 13.9 1.0 2.50 111 +96051800.MPX 2.50 16.3 4406 -8.9 8.2 13.0 23.4 20.7 1.6 3.40 259 +96042200.FTD 2.50 12.0 1872 -12.6 8.2 27.1 34.0 18.3 1.4 -999.00 298 +96030700.TLH 2.50 15.4 2429 -10.4 6.0 20.9 23.7 20.7 1.1 0.60 320 +95081212.MPX 2.50 19.1 3357 -6.3 7.2 33.4 36.8 23.0 1.4 -999.00 147 +95061600.TFX 2.50 13.0 3142 -12.0 8.4 27.7 35.6 23.8 2.6 2.30 277 +95060700.DEN 2.50 12.3 3126 -10.8 9.2 37.2 35.9 20.7 3.2 2.00 284 +95052912.MAF 2.50 13.0 1618 -11.3 7.5 26.6 22.0 13.7 1.1 -999.00 179 +95051900.GSO 2.50 13.4 1758 -11.8 7.9 25.3 27.1 23.6 1.3 -999.00 83 +95051600.MAF 2.50 13.6 3261 -7.8 8.4 21.7 28.8 10.3 1.4 1.80 134 +95050900.TOP 2.50 10.0 1495 -19.3 6.9 19.3 22.8 21.2 0.9 1.20 126 +95050800.LCH 2.50 17.9 2493 -9.9 7.1 16.7 31.1 10.2 1.2 0.60 120 +95050800.FTD 2.50 16.5 2700 -10.4 7.7 30.8 30.8 24.5 2.5 0.80 407 +94062600.TOP 2.50 16.4 4265 -8.6 8.4 25.2 45.9 21.6 2.9 2.90 418 +94032800.AHN 2.50 14.4 2627 -10.5 6.2 34.5 24.7 30.4 1.9 0.70 518 +93070300.TOP 2.50 18.5 4019 -7.2 7.1 15.8 16.4 15.2 1.4 0.70 202 +93070200.HON 2.50 14.6 2619 -11.3 7.0 28.3 40.3 12.6 1.9 0.80 143 +93061400.TOP 2.50 16.5 4195 -8.5 7.7 12.5 17.8 10.7 1.3 2.80 65 +93033000.DRT 2.50 12.7 2680 -13.4 8.2 39.6 44.0 26.0 3.3 2.80 411 +92070200.DEN 2.50 11.7 2313 -11.2 8.0 27.6 29.9 20.0 1.5 2.50 362 +92041600.AMA 2.50 11.1 3350 -13.4 7.6 16.0 17.8 12.0 1.4 1.70 127 +92030400.SEP 2.50 12.7 2676 -15.3 7.7 20.1 27.2 9.2 1.8 2.30 133 +91080200.CAR 2.50 12.3 1891 -13.7 6.3 19.6 33.3 11.9 0.9 1.50 223 +91071800.STC 2.50 18.2 4876 -8.7 7.3 18.7 20.1 21.9 2.4 2.50 104 +91053100.DEN 2.50 12.0 3551 -12.1 9.5 27.3 45.8 10.7 3.0 1.90 149 +91052700.LBF 2.50 11.9 2669 -13.4 7.9 13.9 32.3 13.0 1.1 2.10 35 +91051200.AMA 2.50 14.3 4521 -10.8 8.5 12.4 14.9 16.7 1.7 2.30 208 +91050800.MAF 2.50 11.2 3415 -14.8 8.4 31.1 36.7 25.4 3.4 1.60 280 +91042100.AYS 2.50 11.8 2563 -16.9 7.4 13.4 30.0 10.3 1.1 1.70 76 +91041900.SEP 2.50 17.6 5996 -13.2 7.4 13.5 44.8 13.0 3.2 3.10 24 +90083100.CHS 2.50 16.0 2477 -8.5 6.5 17.0 17.7 8.3 0.9 0.60 67 +90070200.GSO 2.50 14.8 3964 -10.0 7.2 26.0 16.3 10.7 2.5 2.20 100 +90062200.ALB 2.50 12.6 1833 -14.1 6.7 32.5 29.1 20.6 1.6 1.60 203 +90061500.DDC 2.50 16.0 4667 -6.5 7.9 28.4 30.1 15.7 2.5 2.70 305 +90060700.DEN 2.50 10.9 2850 -8.2 9.0 26.3 23.9 19.6 1.4 1.50 170 +90060300.PAH 2.50 17.8 3663 -7.6 7.0 24.0 25.9 29.8 1.9 0.60 367 +04102400.JAN 2.50 15.8 1938 -6.9 5.3 30.8 27.8 19.3 0.8 0.60 328 +04091500.LBF 2.50 12.8 1474 -10.7 8.0 31.4 39.8 20.5 1.3 -999.00 91 +04080700.ABR 2.50 13.1 2792 -9.3 6.7 21.0 25.9 12.1 1.1 2.50 240 +04040400.EPZ 2.50 12.1 4482 -17.9 8.2 29.1 25.4 11.6 5.2 2.10 203 +04032718.OUN 2.50 12.6 2825 -14.9 7.3 21.1 32.3 11.5 1.9 2.10 199 +03062200.RAP 2.50 10.6 3380 -13.7 8.0 27.5 42.2 18.7 2.5 1.50 189 +03051500.SHV 2.50 16.8 4260 -9.9 6.8 33.7 42.9 16.3 3.7 0.80 246 +02072500.ABR 2.50 15.0 4004 -11.5 7.9 28.7 28.6 13.8 3.5 3.00 207 +02051700.AMA 2.50 13.8 5036 -12.7 8.7 21.9 26.5 17.4 3.8 2.20 216 +01101000.DDC 2.50 12.9 3299 -9.7 6.4 18.8 18.3 16.4 1.1 2.50 275 +01082400.AMA 2.50 15.4 4318 -6.7 7.4 24.0 28.1 21.0 1.8 2.80 158 +01070500.LBF 2.50 14.5 3571 -7.7 7.7 26.0 27.0 17.1 1.8 2.90 313 +01070400.RAP 2.50 14.5 3145 -11.1 8.3 25.2 26.1 12.9 2.4 2.60 144 +01052620.LMN 2.50 14.1 4355 -13.5 6.4 27.3 33.2 20.2 3.3 2.90 233 +01052500.BMX 2.50 11.9 2388 -14.9 6.7 29.2 27.4 23.5 1.9 2.70 436 +01050400.MAF 2.50 13.7 3866 -11.3 7.2 12.8 33.8 11.4 1.2 2.70 101 +01050100.OAX 2.50 10.4 2265 -16.9 7.7 17.4 17.0 19.2 1.2 2.20 226 +01042200.DDC 2.50 13.3 3749 -12.1 7.3 33.4 45.3 24.2 3.3 2.70 510 +01041700.MAF 2.50 13.9 4552 -12.1 7.5 16.2 30.6 8.0 2.1 2.20 100 +00091100.MPX 2.50 16.6 4560 -10.3 7.0 21.6 23.2 18.4 2.7 3.20 271 +00080500.BIS 2.50 17.0 4830 -8.7 6.9 17.2 22.9 4.0 1.9 3.30 86 +00070600.LBF 2.50 18.2 5506 -7.1 8.3 25.3 35.5 11.8 3.4 3.50 155 +00070200.ABR 2.50 17.8 5952 -10.3 8.4 12.2 23.4 8.1 2.5 3.90 147 +00062400.OAX 2.50 17.5 4783 -8.7 7.2 18.7 28.2 14.9 2.2 2.30 195 +00061000.RAP 2.50 13.2 3610 -8.1 7.8 14.3 21.1 11.9 1.0 2.10 70 +00052300.MHX 2.50 15.1 3613 -13.5 6.5 15.3 26.5 10.5 1.7 2.40 79 +00051200.DVN 2.50 15.6 4865 -8.1 7.4 24.8 24.9 19.3 2.6 3.40 225 +00050100.FWD 2.50 14.3 3593 -13.1 7.2 17.3 18.5 19.0 1.9 1.70 401 +00032700.SGF 2.50 9.8 1766 -18.3 7.5 34.3 43.9 21.4 1.9 2.20 350 +00021400.LZK 2.50 10.7 2091 -20.3 6.4 21.1 24.5 22.2 1.4 2.10 245 +00061300.OAX 2.25 17.7 5453 -11.5 8.5 15.8 19.3 12.9 3.4 4.00 206 +99053100.TOP 2.00 13.1 2215 -10.9 6.8 18.6 12.2 14.7 0.9 1.40 189 +99050400.DRT 2.00 17.4 5609 -10.1 7.5 40.5 38.9 21.2 6.8 4.56 342 +98063000.BUF 2.00 14.5 2615 -10.5 6.1 23.6 28.2 8.5 1.3 1.70 86 +98062500.APX 2.00 15.8 3453 -11.3 7.3 28.9 35.4 21.9 2.9 3.30 348 +98033100.FWD 2.00 13.3 2607 -14.3 7.2 29.6 57.5 17.6 2.4 2.90 93 +90091400.STC 2.00 13.1 2104 -10.9 7.4 27.8 39.0 23.2 1.4 -999.00 564 +90072600.TBW 2.00 18.4 4330 -6.3 5.7 5.0 8.5 6.3 0.3 0.60 7 +90061400.PIA 2.00 18.1 3571 -7.0 7.0 16.5 23.4 9.5 1.2 0.60 134 +90060900.PIT 2.00 16.7 4095 -9.5 6.7 18.1 13.6 18.8 1.8 1.00 236 +89103000.OUN 2.00 12.5 2163 -14.7 6.6 18.0 18.1 13.1 1.1 1.60 195 +89082100.LBF 2.00 14.8 3307 -9.1 7.1 28.0 44.7 8.0 2.0 3.00 83 +89071100.HON 2.00 15.7 3126 -7.0 6.9 14.6 18.6 12.3 0.8 1.20 151 +89052800.ELP 2.00 11.2 2569 -6.8 8.0 11.3 17.1 14.9 0.4 1.40 232 +04091200.GRB 2.00 12.3 2256 -14.9 7.2 14.7 24.8 11.6 1.0 0.90 64 +04082400.BIS 2.00 13.4 2596 -11.1 7.6 21.3 22.3 16.4 1.4 2.20 208 +04072300.TOP 2.00 16.0 3276 -7.7 6.4 15.8 19.6 11.4 0.9 0.70 158 +04062400.GRB 2.00 10.4 1604 -16.9 6.3 25.3 36.9 16.4 1.0 2.40 128 +04052200.DDC 2.00 13.5 3809 -9.7 8.1 21.0 27.0 20.3 1.9 2.20 297 +04043000.JAN 2.00 13.6 1469 -12.7 6.5 27.4 22.8 18.1 1.0 0.60 184 +03051900.TBW 2.00 17.1 3797 -10.9 6.8 5.9 5.0 4.0 0.6 1.00 -4 +02062600.MPX 2.00 19.6 5230 -9.7 7.1 18.6 21.8 9.2 3.0 3.20 120 +02061300.DVN 2.00 17.3 3501 -11.9 7.4 26.3 38.7 10.0 3.2 1.10 100 +02052800.LZK 2.00 15.1 3284 -12.3 6.5 5.0 12.3 2.6 0.4 0.60 13 +01101000.OUN 2.00 15.6 3485 -12.9 7.9 24.4 28.2 23.9 3.1 2.50 447 +01090800.TOP 2.00 17.8 4174 -11.3 8.1 26.2 26.7 24.5 4.0 1.70 274 +01090800.OUN 2.00 17.6 4351 -8.7 7.8 26.1 21.2 21.8 3.1 2.30 151 +01082400.DDC 2.00 16.4 4283 -7.5 7.7 14.7 16.3 11.9 1.3 3.10 77 +01082300.TOP 2.00 16.7 4361 -9.7 7.6 9.9 23.0 13.6 1.2 2.30 192 +01072000.RAP 2.00 15.1 4486 -8.7 8.4 15.4 26.3 10.9 1.7 2.40 71 +01071300.GGW 2.00 14.5 3042 -10.1 8.1 16.5 34.2 7.9 1.4 3.50 19 +01063000.FWD 2.00 16.8 4122 -9.7 6.9 11.2 19.2 9.2 1.2 1.60 133 +01062100.DNR 2.00 10.8 2544 -11.5 7.5 21.4 23.2 20.5 1.2 2.10 192 +01053100.LCH 2.00 17.4 3988 -8.3 7.0 8.3 13.9 0.8 0.8 2.40 8 +01053100.FWD 2.00 15.8 4571 -12.3 8.7 12.4 20.6 13.7 2.2 3.90 106 +01053000.DDC 2.00 15.2 2892 -12.1 8.0 23.2 25.5 14.8 2.3 1.80 388 +01052700.DDC 2.00 11.3 2853 -12.1 6.7 30.6 37.1 19.3 1.8 1.80 184 +01051200.OUN 2.00 13.2 3098 -13.9 7.1 10.0 10.8 8.7 0.9 2.10 132 +01050702.LZK 2.00 14.2 2759 -12.9 5.9 18.7 26.3 7.3 1.3 2.00 77 +01050700.SGF 2.00 14.5 4025 -13.7 6.1 8.8 17.0 10.5 1.0 3.10 202 +01050600.FWD 2.00 15.4 3092 -12.7 6.8 32.7 34.4 19.4 3.0 2.10 170 +01042200.MAF 2.00 13.7 4543 -12.3 8.4 27.4 36.2 12.3 4.0 2.20 164 +01042200.AMA 2.00 14.1 6059 -15.3 9.2 35.7 38.3 16.6 9.7 3.30 320 +00072300.LBF 2.00 13.2 2926 -11.5 7.1 25.2 27.3 13.6 1.8 2.80 91 +00071500.BIS 2.00 16.5 5132 -9.5 8.1 27.6 34.1 14.6 4.1 2.70 152 +00071100.GGW 2.00 14.2 3230 -11.3 6.9 30.1 48.1 16.9 2.5 3.00 88 +00061500.JAX 2.00 17.9 4801 -8.7 6.4 6.2 13.3 3.6 0.7 1.10 55 +00061300.LBF 2.00 13.9 4790 -9.9 8.3 16.6 18.6 9.9 2.1 2.00 159 +00061200.AMA 2.00 16.8 5720 -10.3 8.3 16.1 28.7 15.7 3.0 2.70 88 +00032800.JAX 2.00 12.5 2135 -14.5 6.3 29.1 24.7 25.7 1.6 0.90 268 +00031600.LMN 2.00 9.5 1478 -17.3 7.1 22.1 10.9 12.9 0.9 2.20 164 +00030300.FWD 2.00 12.3 2589 -14.3 6.2 33.4 29.1 20.2 2.1 2.70 239 +98062500.FFC 1.75 17.0 3224 -8.9 7.3 5.0 9.9 5.6 0.4 0.60 54 +97100900.OUN 1.75 16.5 3628 -7.5 6.0 20.0 29.9 16.6 1.2 0.80 205 +94071700.HAT 1.75 16.5 2831 -6.0 5.7 5.9 5.0 4.4 0.2 0.60 33 +94071700.1M1 1.75 17.7 3194 -6.4 5.8 12.5 11.3 19.1 0.6 0.60 164 +94070100.1M1 1.75 18.6 4791 -8.1 6.1 20.0 18.5 12.6 2.0 1.00 343 +94062600.PBI 1.75 17.7 4199 -9.1 6.6 5.0 6.6 5.2 0.5 1.80 10 +92051500.1M1 1.75 13.3 2877 -11.3 6.4 11.4 16.3 7.9 0.7 1.50 54 +91060600.RAP 1.75 13.1 2001 -11.5 7.1 13.2 19.7 11.9 0.6 1.40 170 +91060600.JAN 1.75 16.3 3344 -9.1 6.8 9.5 9.6 3.1 0.7 0.60 12 +91053100.AHN 1.75 16.3 3505 -6.9 5.9 5.0 5.0 3.2 0.3 0.60 15 +91051700.GGG 1.75 18.4 5081 -10.4 7.5 7.9 11.2 10.5 1.3 0.90 157 +91051300.HON 1.75 14.7 3615 -9.5 7.2 14.2 22.7 13.0 1.2 2.80 97 +91051300.BIS 1.75 13.8 1867 -11.5 6.8 26.9 19.8 15.8 1.2 0.70 -79 +91032700.DAY 1.75 10.7 1281 -13.1 6.3 23.7 30.6 24.3 0.8 -999.00 149 +90091100.AHN 1.75 15.1 2857 -8.6 5.9 7.9 7.6 6.3 0.4 0.60 80 +90090200.MAF 1.75 14.9 3597 -6.2 6.8 17.2 18.3 7.5 0.9 2.50 58 +90082600.HON 1.75 17.9 5206 -11.5 9.1 14.7 28.6 9.9 3.2 -999.00 156 +90082600.BIS 1.75 13.7 3187 -13.2 8.6 22.2 23.1 13.2 2.5 2.50 190 +90082400.OVN 1.75 18.7 4768 -7.4 6.8 7.4 14.7 9.4 0.8 0.70 100 +90082100.AMA 1.75 14.6 2833 -5.7 6.6 11.7 11.3 10.6 0.4 1.20 75 +90081500.DDC 1.75 15.1 3012 -6.6 5.6 9.0 15.8 9.9 0.3 0.60 59 +90081000.AHN 1.75 14.9 2234 -9.4 6.2 13.3 26.7 6.4 0.6 0.80 33 +90080200.LCH 1.75 18.4 3223 -7.3 6.4 6.5 5.0 3.1 0.4 0.60 14 +90073100.GGG 1.75 16.1 3254 -7.5 6.4 7.9 5.4 1.2 0.5 0.60 3 +90072700.AMA 1.75 14.3 3104 -5.8 7.3 7.7 7.9 11.1 0.3 2.20 117 +90072600.OUN 1.75 16.6 3546 -6.8 6.2 10.8 14.7 11.1 0.6 0.70 206 +90072100.ABQ 1.75 10.9 1327 -5.9 8.3 7.9 14.5 9.8 0.1 1.30 145 +90071800.LBF 1.75 12.3 3138 -7.7 8.2 17.7 16.6 10.0 1.0 1.60 115 +90071700.FNT 1.75 11.9 1393 -12.5 6.5 15.5 25.3 13.2 0.5 0.60 176 +90071400.ABQ 1.75 10.4 1587 -9.4 8.7 18.9 32.6 4.4 0.6 1.20 70 +90071300.CRP 1.75 13.3 1658 -6.5 6.5 12.8 9.3 14.6 0.3 0.60 121 +90071100.CKL 1.75 15.4 2544 -8.1 6.4 5.1 5.0 2.1 0.2 0.60 9 +90070900.GRB 1.75 16.9 2962 -6.5 6.5 18.2 22.7 12.1 0.9 0.60 82 +90070500.LCH 1.75 17.6 3315 -8.5 6.6 15.3 5.0 11.6 1.1 0.60 58 +90061800.PIA 1.75 19.5 4567 -8.1 7.4 17.0 25.7 14.1 2.1 1.00 94 +90061300.STC 1.75 16.2 2789 -10.4 7.2 36.6 42.0 14.2 2.8 0.70 139 +90061100.CHS 1.75 17.7 4050 -8.1 6.6 8.1 19.1 6.4 0.7 0.60 102 +90061000.OUN 1.75 15.1 3242 -8.5 7.8 10.1 5.0 10.9 0.7 2.50 21 +90061000.IAD 1.75 14.9 2818 -9.2 6.5 16.4 19.3 18.0 0.9 0.60 175 +90052800.SIL 1.75 18.0 3916 -10.0 6.8 19.3 10.6 10.4 2.1 2.80 48 +90052300.HON 1.75 10.9 1984 -14.0 7.2 22.3 33.6 15.0 1.1 2.90 107 +90052100.UMN 1.75 14.8 3661 -13.1 7.6 15.4 23.7 15.3 1.9 4.30 181 +90052100.HAT 1.75 15.8 2891 -9.7 5.6 13.8 19.5 12.4 0.8 0.60 182 +90051900.SEP 1.75 17.0 3250 -9.1 6.6 20.9 27.2 15.6 1.6 2.20 385 +90051600.IAD 1.75 13.4 2004 -14.0 7.0 16.7 27.7 12.7 1.0 -999.00 102 +90051200.SEP 1.75 13.6 2282 -9.2 6.9 34.8 47.4 14.5 1.6 -999.00 133 +90050600.OUN 1.75 7.6 881 -20.1 7.2 18.3 48.8 5.8 0.4 2.30 30 +90042900.AYS 1.75 13.0 2333 -12.2 6.2 30.6 23.2 19.1 1.6 2.60 243 +90042600.DRT 1.75 14.6 3699 -13.8 8.1 25.7 33.2 11.1 3.5 4.60 101 +90042200.OUN 1.75 11.1 2748 -13.3 6.6 12.2 14.9 7.3 0.7 2.90 48 +90040200.BRO 1.75 16.2 3494 -9.3 7.1 25.7 37.2 15.2 2.2 2.60 65 +90031300.OUN 1.75 12.7 3211 -13.6 7.8 24.2 18.1 19.4 2.4 3.40 286 +90031000.AMA 1.75 11.1 2468 -16.0 8.6 13.1 18.2 9.9 1.1 2.10 106 +90022800.MAF 1.75 9.7 607 -16.2 6.6 16.4 23.8 5.1 0.2 1.90 55 +89090800.DEN 1.75 10.1 1350 -6.8 8.3 24.1 24.0 15.4 0.4 2.00 366 +89090200.1M1 1.75 18.3 3691 -4.8 6.1 16.2 14.1 8.2 0.7 0.60 64 +89083100.DDC 1.75 16.5 2952 -5.7 6.6 13.6 22.5 13.3 0.6 0.80 346 +89083000.OUN 1.75 17.3 3864 -5.6 6.0 13.1 24.2 11.8 0.7 0.60 112 +89082900.TOP 1.75 19.8 4794 -6.3 6.6 15.4 21.1 13.2 1.4 0.60 156 +89082800.UMN 1.75 17.3 3603 -6.1 6.5 7.8 5.6 2.6 0.4 0.60 28 +89082700.OMA 1.75 17.8 3452 -6.6 6.1 19.5 33.1 15.2 1.1 0.60 142 +89082500.RAP 1.75 10.6 1899 -7.1 7.6 7.7 7.6 2.7 0.2 1.00 55 +89081300.TBW 1.75 16.4 2617 -8.6 6.0 18.1 18.2 10.1 0.9 0.60 65 +89080600.UMN 1.75 19.0 5227 -6.9 7.0 11.7 11.3 8.8 1.3 0.80 99 +89073000.JAN 1.75 18.0 3940 -7.7 6.7 5.0 5.0 2.1 0.4 0.60 9 +89072900.HON 1.75 14.0 2092 -5.9 6.0 12.0 17.9 6.4 0.3 0.80 105 +89071500.LBF 1.75 14.3 2675 -6.9 6.1 6.1 8.4 5.5 0.2 0.60 27 +89071300.OUN 1.75 19.0 4127 -5.4 6.9 13.8 19.1 13.0 0.9 -999.00 196 +89071300.DDC 1.75 15.1 3239 -4.9 6.9 5.1 7.2 7.9 0.2 1.20 81 +89070800.PIT 1.75 15.4 2732 -9.1 6.8 17.5 15.7 12.8 1.0 1.50 81 +89062800.BUF 1.75 15.2 2385 -8.2 5.3 20.1 22.3 9.8 0.7 0.60 82 +89062700.PIA 1.75 15.7 2460 -7.9 6.6 13.2 12.4 5.3 0.6 0.70 87 +89062600.IAD 1.75 16.2 3138 -8.6 6.1 14.3 23.0 12.1 0.9 0.70 108 +89062200.AHN 1.75 15.5 1517 -7.6 5.8 12.6 15.8 14.9 0.3 0.60 112 +89061900.BNA 1.75 13.9 1714 -10.2 6.3 9.7 7.8 6.8 0.3 0.60 86 +89061400.GGG 1.75 17.2 3674 -11.0 6.9 15.4 23.3 4.3 1.7 -999.00 61 +89060600.JAN 1.75 16.3 3336 -11.3 6.7 20.8 25.3 10.4 1.9 0.80 103 +89060600.GSO 1.75 14.8 2078 -9.1 5.9 8.1 6.7 10.0 0.3 0.60 93 +89060100.TOP 1.75 15.8 2588 -10.9 7.9 10.6 26.9 7.9 0.8 -999.00 90 +04092500.AMA 1.75 11.2 2465 -11.9 6.9 15.1 24.9 12.0 0.8 2.00 38 +04092300.AMA 1.75 12.8 1887 -10.1 6.7 23.5 21.8 19.6 0.9 1.30 374 +04082600.BIS 1.75 12.5 3083 -13.1 7.1 16.6 18.9 13.9 1.4 2.40 101 +04081900.ILX 1.75 15.1 3685 -9.1 5.9 19.9 28.2 19.7 1.4 1.30 371 +04071200.TOP 1.75 17.7 3644 -7.3 6.8 13.6 9.1 11.9 1.0 0.60 204 +04051600.EPZ 1.75 10.4 2888 -11.5 8.7 12.2 7.0 4.1 0.8 1.60 93 +04051000.LBF 1.75 11.6 4026 -13.9 9.0 13.9 17.5 3.0 1.8 1.60 38 +04042900.DRT 1.75 12.4 1834 -12.9 6.4 20.0 31.6 16.1 0.9 1.30 217 +04040700.FWD 1.75 10.4 835 -16.3 6.7 28.3 27.2 11.8 0.6 1.00 87 +04032100.MAF 1.75 10.2 2042 -12.9 7.9 9.6 21.3 5.5 0.5 1.50 39 +04032100.FFC 1.75 7.9 942 -17.3 7.5 12.0 13.4 11.3 0.3 1.10 154 +04030100.TOP 1.75 6.3 487 -28.7 8.7 32.0 35.0 20.1 0.6 1.60 171 +03092100.DDC 1.75 10.2 1784 -10.9 7.3 20.1 23.8 21.8 0.7 2.00 257 +03091100.DDC 1.75 14.8 3112 -7.5 6.9 22.3 30.8 15.7 1.2 2.20 259 +03091000.MAF 1.75 12.9 3038 -7.3 7.4 8.3 12.7 8.6 0.4 2.10 79 +03090500.DRA 1.75 11.3 1966 -8.3 8.1 5.0 9.2 5.0 0.2 1.20 33 +03062500.MAF 1.75 16.5 4621 -6.7 7.7 8.7 16.8 11.9 0.8 2.10 45 +03062100.MAF 1.75 10.7 1489 -7.7 7.0 14.5 29.4 6.5 0.3 1.90 74 +03061700.RAP 1.75 10.1 1501 -11.1 7.1 5.7 17.5 2.9 0.2 1.90 92 +03061700.FFC 1.75 16.3 2826 -8.5 6.2 7.0 13.0 5.5 0.4 0.60 32 +03061500.LBF 1.75 10.7 1717 -11.3 6.3 10.6 12.0 6.6 0.3 1.70 51 +03061500.FWD 1.75 14.3 2433 -11.3 6.9 12.1 5.0 5.3 0.7 1.70 32 +03061300.LBF 1.75 12.0 2759 -11.3 7.2 15.4 16.3 13.0 0.9 2.60 179 +03061100.OUN 1.75 14.5 3045 -9.3 7.2 17.8 13.1 12.1 1.2 2.00 135 +03060400.LCH 1.75 19.7 4988 -6.7 5.8 13.3 17.2 7.3 1.1 0.60 44 +03050700.BMX 1.75 17.4 4489 -10.5 7.0 26.5 28.4 12.2 3.5 2.10 101 +03050200.FFC 1.75 13.7 3289 -13.5 6.5 9.8 9.5 7.5 0.9 0.90 55 +03043000.BNA 1.75 12.9 3348 -15.3 7.2 5.0 5.5 4.1 0.5 1.30 30 +03042900.MAF 1.75 9.9 2371 -13.5 8.4 23.4 21.0 15.5 1.4 1.40 165 +03042900.AMA 1.75 9.6 2549 -14.5 8.3 25.3 33.7 16.5 1.7 1.60 237 +03032600.SHV 1.75 11.3 1723 -18.3 8.5 17.7 18.0 8.0 1.2 1.40 108 +03032600.LZK 1.75 11.3 2073 -18.5 6.7 14.3 15.4 9.5 0.9 2.20 67 +03031500.BMX 1.75 10.9 1555 -19.1 7.4 8.5 21.2 12.3 0.5 1.30 94 +02082300.LBF 1.75 17.8 6193 -10.1 8.0 12.9 28.1 3.8 2.6 3.10 10 +02072800.DDC 1.75 12.9 2480 -5.3 7.4 10.6 11.1 10.7 0.3 1.40 155 +02072518.TBW 1.75 18.9 4523 -8.5 6.7 7.8 6.3 2.0 0.9 0.60 7 +02070200.AMA 1.75 12.2 2393 -6.5 7.3 18.4 11.3 20.8 0.6 1.60 353 +02062600.DTX 1.75 14.5 3079 -8.9 6.1 5.0 7.2 1.4 0.3 0.70 -1 +02061200.TOP 1.75 19.6 5029 -8.9 7.6 21.1 24.7 15.6 3.2 0.70 224 +02060700.MPX 1.75 9.2 1952 -15.1 7.7 22.8 25.3 16.2 1.1 1.50 758 +02060402.CHS 1.75 13.7 2637 -10.1 7.6 9.7 10.8 11.7 0.6 0.80 33 +02052900.TOP 1.75 12.8 2661 -13.7 6.8 5.0 10.7 7.3 0.4 1.30 48 +02052800.MAF 1.75 12.7 3115 -11.1 8.0 20.6 24.7 16.4 1.7 2.10 103 +02052800.LBF 1.75 11.3 3387 -15.1 9.0 18.8 30.1 11.6 2.2 1.90 184 +01062000.DTX 1.75 14.9 3813 -12.5 6.9 8.4 17.6 15.0 0.9 2.80 -45 +01061800.TBW 1.75 15.9 3469 -9.7 5.9 5.0 6.6 1.5 0.4 0.80 23 +00090400.LBF 1.75 11.2 2441 -9.5 7.8 21.4 24.1 18.5 1.0 1.50 309 +00080800.OAX 1.75 18.7 4679 -8.1 7.8 16.4 25.1 10.8 2.1 3.00 185 +00080200.GGW 1.75 10.8 2057 -8.9 8.0 24.6 35.3 15.0 0.9 1.80 148 +00073100.JAX 1.75 17.6 3581 -8.9 6.0 6.6 5.5 4.7 0.5 0.60 27 +00072900.GSO 1.75 14.3 1962 -9.7 6.2 6.2 16.1 6.5 0.2 0.60 43 +00072700.LBF 1.75 18.1 5166 -8.9 8.7 17.5 26.1 12.2 2.9 2.20 351 +00072600.MPX 1.75 15.3 3240 -13.1 7.6 21.4 12.4 10.1 2.4 3.00 139 +00072600.MFL 1.75 18.3 4079 -8.5 6.6 5.2 5.6 2.4 0.5 0.60 18 +00072500.ABR 1.75 15.6 4195 -12.3 8.9 15.3 19.8 10.9 2.5 3.10 113 +00072200.LBF 1.75 12.8 3031 -11.5 7.6 27.5 23.7 14.5 2.1 2.60 247 +00072100.FFC 1.75 14.3 2149 -6.9 6.4 9.2 10.4 9.1 0.3 0.60 63 +00071800.AMA 1.75 14.4 3660 -4.7 6.9 9.1 7.7 5.9 0.4 1.50 79 +00071500.IAD 1.75 13.9 2186 -12.3 6.8 17.8 17.7 9.3 1.0 2.00 118 +00071300.ABR 1.75 13.6 2305 -8.7 6.7 29.3 44.3 21.7 1.2 2.00 278 +00070600.GGW 1.75 11.7 2743 -14.1 8.5 29.6 40.4 13.0 2.6 1.90 165 +00062400.LBF 1.75 14.8 4723 -9.7 8.6 17.4 29.6 9.8 2.3 2.00 126 +00062400.DDC 1.75 14.8 3499 -7.3 7.7 23.2 30.2 12.0 1.5 2.70 237 +00062200.DDC 1.75 14.3 3602 -8.7 7.0 15.4 23.4 16.2 1.1 2.90 157 +00061100.AMA 1.75 14.0 3932 -7.9 7.8 14.8 19.1 9.4 1.1 2.10 128 +00060300.ABQ 1.75 9.4 1267 -8.7 8.2 10.3 17.5 7.6 0.2 1.40 70 +00052900.GSO 1.75 14.3 1730 -11.1 6.2 28.7 35.1 17.6 1.1 1.20 139 +00051900.FWD 1.75 16.2 3610 -10.9 7.4 25.2 32.9 6.7 2.7 0.64 75 +00051200.TOP 1.75 16.7 5329 -7.3 6.5 25.1 29.2 21.0 2.4 3.70 216 +00033000.SHV 1.75 15.4 3548 -15.9 7.6 31.6 50.3 23.8 4.8 2.80 323 +94070100.GSO 1.50 13.8 2296 -10.3 5.4 8.1 14.3 6.6 0.3 0.60 40 +90082200.OUN 1.50 16.6 3350 -5.5 6.1 5.0 5.7 3.1 0.2 0.60 -7 +90082200.AHN 1.50 16.5 3247 -6.8 6.5 8.7 15.8 6.0 0.5 0.60 48 +90071000.DEN 1.50 13.5 3504 -8.2 8.0 25.4 20.1 16.7 1.8 2.50 41 +90041100.AHN 1.50 11.5 1096 -14.0 6.4 25.4 25.8 19.0 0.6 1.60 343 +90040200.GSO 1.50 8.7 984 -17.4 6.8 29.7 37.4 19.9 0.7 2.00 210 +89060200.AHN 1.50 13.2 1996 -7.3 6.1 5.0 5.0 3.2 0.1 -999.00 18 +03091800.INL 1.50 13.7 1863 -13.5 7.5 24.7 29.2 15.3 1.4 -999.00 384 +03031700.MHX 1.50 12.1 1241 -13.1 5.4 19.1 32.8 11.5 0.5 0.70 37 +02072500.LCH 1.50 20.2 5453 -7.3 5.9 8.5 11.3 5.5 0.9 0.60 66 +01062600.RNK 1.50 11.1 1653 -11.9 5.7 13.7 30.3 8.3 0.4 2.10 88 +01062600.GSO 1.50 11.9 929 -11.7 6.0 17.8 25.6 10.4 0.3 0.60 106 +00090200.SLC 1.50 9.1 1641 -14.7 8.4 16.1 24.8 20.1 0.7 1.70 101 +00051800.GSO 1.50 11.9 1767 -13.7 6.5 16.4 31.1 7.6 0.7 1.60 124 +94062500.GSO 1.25 15.9 2334 -5.4 5.6 9.9 5.2 12.9 0.3 0.60 103 +90041400.OUN 1.25 10.8 1408 -18.2 7.9 23.5 33.0 17.5 1.2 2.20 146 +04100400.AMA 1.25 10.5 1672 -13.5 7.6 23.5 31.9 10.7 1.0 2.40 28 +04032700.RAP 1.25 8.5 2052 -15.5 8.0 19.0 17.5 12.6 0.9 1.50 161 +03090800.PHX 1.25 12.1 2268 -6.7 6.7 10.7 16.8 8.2 0.3 1.20 90 +03090800.FGZ 1.25 8.3 663 -8.3 7.7 15.0 17.0 11.2 0.1 1.20 130 +03040500.ILN 1.25 10.4 1856 -15.7 6.5 20.8 25.6 17.7 0.9 2.20 233 +00072000.LZK 1.25 16.4 3973 -6.7 6.8 12.6 12.7 8.3 0.8 1.10 102 +00071100.DDC 1.25 16.4 4707 -4.1 6.8 5.0 8.7 6.0 0.2 2.60 136 +00030400.BMX 1.25 11.4 1311 -14.9 5.7 42.9 54.3 21.1 1.2 1.40 205 +99061200.ILN 1.00 14.7 3299 -8.3 5.8 5.0 5.0 8.2 0.3 1.10 32 +98052200.BNA 1.00 17.3 3709 -10.7 6.4 9.2 7.9 10.4 0.9 0.90 83 +97081800.FFC 1.00 18.4 3564 -6.1 6.1 5.0 5.0 4.4 0.3 0.60 37 +97081700.PIT 1.00 21.1 3951 -7.9 6.9 12.7 23.0 15.4 1.3 0.60 224 +97081700.DVN 1.00 22.3 5790 -8.3 7.5 14.3 11.8 12.3 2.6 1.00 137 +93092500.OUN 1.00 16.1 2895 -6.7 6.2 24.5 27.2 16.0 1.1 0.60 264 +91060500.CKL 1.00 16.9 3345 -7.5 6.3 5.0 5.0 9.2 0.3 0.60 52 +91060500.AHN 1.00 15.3 3036 -8.1 6.7 5.7 13.0 11.6 0.3 0.60 72 +90101800.GGG 1.00 14.2 1596 -10.6 6.4 20.0 27.9 12.5 0.7 0.60 114 +90100800.GGG 1.00 16.8 2689 -6.0 5.8 14.2 17.2 8.9 0.5 0.60 70 +90092900.MAF 1.00 12.2 1606 -8.0 6.0 15.0 28.7 11.3 0.3 0.80 35 +90083000.GSO 1.00 16.4 3552 -9.3 6.0 20.1 18.2 14.1 1.5 0.60 37 +90082300.HTS 1.00 15.2 707 -7.7 6.2 7.0 8.5 3.6 0.1 0.60 -4 +90082100.OUN 1.00 19.2 5290 -6.7 6.9 8.3 5.0 6.2 0.9 0.60 38 +90081900.AMA 1.00 13.6 2596 -7.9 7.0 5.1 5.1 3.8 0.2 0.80 45 +90080200.MAF 1.00 14.4 1702 -6.2 6.1 9.7 12.2 2.8 0.2 0.60 27 +90072600.GGW 1.00 10.2 1514 -10.6 7.0 15.6 16.6 7.9 0.4 1.80 55 +90072500.DDC 1.00 11.9 1703 -8.0 6.8 14.0 17.5 10.1 0.3 1.40 208 +90072200.TBW 1.00 17.8 3345 -5.7 6.0 5.0 7.8 3.6 0.2 0.60 34 +90072000.DEN 1.00 11.7 1698 -7.2 7.4 16.1 20.8 14.0 0.4 2.10 182 +90071800.AMA 1.00 11.4 1482 -6.5 6.7 14.8 26.1 8.4 0.2 1.10 98 +90071100.GSO 1.00 15.2 3487 -6.6 5.9 5.0 9.1 7.5 0.2 0.60 38 +90070900.GSO 1.00 17.6 4051 -5.3 5.6 10.2 10.5 6.1 0.5 0.80 73 +90062400.OUN 1.00 11.9 1572 -10.0 7.9 21.6 25.2 14.1 0.7 -999.00 80 +90062300.HTS 1.00 14.5 1346 -8.5 5.8 27.1 36.9 19.1 0.6 0.60 231 +90061000.GSO 1.00 15.3 2409 -8.8 6.1 9.7 14.5 11.1 0.4 0.60 145 +90050400.CKL 1.00 14.0 1534 -10.6 6.4 20.1 25.8 10.8 0.7 0.60 141 +89082700.DDC 1.00 16.9 4549 -7.4 7.6 11.3 24.3 1.4 1.1 2.10 11 +89082000.UMN 1.00 17.3 3524 -6.0 6.2 20.6 14.9 13.6 1.1 0.80 350 +89080600.OUN 1.00 16.3 3439 -5.4 6.8 10.2 12.1 9.7 0.5 0.80 101 +89073100.GTF 1.00 9.5 1858 -9.3 8.9 10.8 21.7 10.3 0.4 1.20 106 +89072800.DAY 1.00 16.4 2617 -7.8 5.7 13.5 11.3 7.5 0.6 0.60 83 +89072400.VCT 1.00 14.8 2953 -9.6 6.2 7.7 13.3 9.5 0.5 0.60 120 +89071200.TOP 1.00 16.6 3182 -8.1 7.6 12.6 8.2 13.2 0.9 1.60 157 +89070600.OUN 1.00 12.9 1373 -6.0 6.2 6.0 12.2 11.3 0.1 0.60 64 +89062900.AMA 1.00 12.6 2035 -8.2 8.6 14.8 26.0 13.0 0.6 2.30 165 +89062800.HTS 1.00 17.6 3659 -8.0 5.8 15.4 21.4 7.4 1.1 0.60 62 +89061900.CKL 1.00 16.7 3363 -9.6 6.4 14.5 12.2 12.2 1.1 0.60 103 +89061600.TBW 1.00 16.4 3463 -7.6 5.7 10.2 6.4 5.9 0.6 0.60 36 +89061400.JAN 1.00 16.0 3274 -11.5 7.1 11.3 8.2 9.4 1.1 1.00 57 +89061200.JAN 1.00 17.7 3616 -9.1 6.5 15.3 5.8 7.5 1.3 0.60 84 +89060500.1M1 1.00 15.8 2380 -8.2 6.0 14.7 13.0 10.3 0.6 0.60 19 +04082800.OUN 1.00 16.0 4225 -7.1 7.4 5.0 5.0 7.0 0.4 1.50 101 +04081700.TUS 1.00 13.1 2027 -8.9 7.1 13.2 13.3 8.8 0.5 1.00 96 +04080900.TOP 1.00 14.3 2676 -11.5 7.4 11.9 15.6 5.9 0.9 0.90 82 +04051200.AMA 1.00 9.7 1922 -11.5 8.0 15.0 8.4 19.1 0.6 1.60 282 +04051000.FFC 1.00 11.4 2006 -11.1 5.4 5.0 11.0 4.0 0.2 1.90 -15 +04032100.FWD 1.00 13.1 2648 -15.5 8.2 12.9 20.8 4.9 1.3 2.80 29 +04031500.DRT 1.00 11.6 1498 -15.5 7.0 16.8 24.5 6.6 0.7 1.40 123 +03090900.TUS 1.00 11.5 2363 -8.3 7.3 7.9 11.8 2.8 0.3 1.10 12 +03060900.RNK 1.00 15.0 2965 -9.1 6.2 24.1 29.2 18.9 1.4 1.20 134 +03060200.DDC 1.00 11.1 1960 -9.5 7.9 17.5 20.6 11.9 0.6 2.00 222 +03052700.ABQ 1.00 7.1 732 -9.9 8.5 14.7 20.6 3.1 0.1 0.60 12 +03052600.TFX 1.00 8.3 994 -10.9 8.0 16.0 15.9 9.1 0.3 1.30 59 +03051800.XMR 1.00 16.0 3602 -9.5 7.0 8.6 10.7 5.6 0.7 0.90 -7 +03051800.TBW 1.00 16.1 3839 -8.7 6.5 5.7 11.9 6.2 0.4 1.10 3 +03051200.JAX 1.00 15.9 3060 -7.9 6.9 13.2 20.0 10.1 0.8 -999.00 48 +03051100.MHX 1.00 16.0 3585 -9.3 7.3 16.2 15.0 11.9 1.4 0.90 104 +03050100.FFC 1.00 11.1 1429 -13.5 6.6 6.9 6.4 1.0 0.2 1.60 5 +03042800.MFL 1.00 16.7 2707 -10.7 6.4 11.7 25.5 12.3 0.8 0.60 83 +03042400.SHV 1.00 13.1 1455 -12.9 7.2 26.1 36.8 15.2 1.0 0.60 278 +03041800.DNR 1.00 5.3 1063 -18.1 8.6 11.0 43.9 5.9 0.2 0.60 41 +03040500.LZK 1.00 10.7 1751 -14.9 6.6 27.4 33.1 12.6 1.2 2.30 65 +03032100.DTX 1.00 8.7 1602 -21.3 6.6 13.3 27.1 7.7 0.6 1.10 80 +03032000.ILX 1.00 8.0 713 -21.9 6.9 5.0 11.4 5.4 0.1 1.40 -26 +03031500.TBW 1.00 15.9 3398 -13.7 7.0 18.6 27.3 3.9 2.2 0.90 32 +02080400.SGF 1.00 17.7 4328 -5.5 6.5 5.0 7.6 3.8 0.3 1.50 -11 +02080300.BMX 1.00 18.4 5098 -6.5 5.8 9.6 10.8 11.5 0.8 1.40 33 +02072900.AMA 1.00 13.6 3610 -6.5 7.8 12.5 12.2 13.6 0.7 2.00 164 +02072700.RAP 1.00 9.4 1688 -9.3 7.5 21.0 28.6 14.5 0.5 1.30 139 +02072600.TOP 1.00 15.6 3390 -5.9 7.5 16.9 16.9 11.9 0.9 2.20 168 +02072000.JAN 1.00 17.6 3501 -6.7 6.1 6.1 7.9 5.7 0.3 0.60 58 +02070300.LBF 1.00 14.1 3158 -5.9 7.5 14.0 6.2 11.5 0.6 1.20 158 +02070200.FFC 1.00 16.3 4268 -9.7 6.6 7.8 5.0 7.3 0.8 0.60 46 +02060700.ABR 1.00 9.0 2252 -14.7 8.1 12.4 18.1 8.2 0.7 1.20 118 +02060400.CHS 1.00 15.2 3170 -10.1 7.6 9.7 10.8 11.7 0.8 0.60 33 +02052700.AMA 1.00 9.7 2332 -11.1 7.2 14.5 11.8 13.0 0.6 1.40 198 +02051800.CRP 1.00 20.3 5902 -10.5 7.4 22.6 23.2 10.7 4.8 1.60 86 +01062600.LBF 1.00 12.7 3931 -8.1 8.1 9.3 8.1 8.1 0.7 1.50 119 +01062100.ABR 1.00 8.1 1118 -19.3 7.0 5.0 12.4 3.6 0.1 1.30 14 +01061900.JAX 1.00 17.2 2345 -9.5 6.1 5.0 8.3 5.0 0.3 0.60 13 +00080700.TOP 1.00 17.3 4476 -7.5 7.2 17.8 22.9 11.7 1.7 1.80 72 +00072900.ILN 1.00 14.3 2735 -11.5 6.7 13.4 21.0 8.0 0.9 0.60 68 +00072900.CHS 1.00 19.1 2462 -7.5 5.6 9.3 13.2 3.3 0.4 0.60 4 +00072800.TOP 1.00 15.3 3666 -10.3 7.6 22.0 26.4 9.1 2.2 2.60 115 +00072800.LBF 1.00 17.1 5581 -7.7 8.1 25.0 21.1 9.6 3.4 3.10 187 +00072700.JAN 1.00 12.5 2066 -10.7 6.4 8.0 8.4 4.2 0.3 1.00 -50 +00072300.OTX 1.00 9.0 2088 -12.3 8.2 17.2 21.1 7.8 0.7 1.20 43 +00071900.GYX 1.00 11.4 997 -13.3 6.0 27.0 36.1 18.8 0.6 1.00 107 +00071700.TOP 1.00 19.7 3927 -8.7 7.9 8.9 14.1 14.5 1.1 2.40 198 +00071500.SHV 1.00 17.2 4004 -5.9 6.0 5.0 8.6 6.2 0.3 0.60 46 +00071400.GRB 1.00 12.0 1743 -12.3 6.9 21.5 42.9 13.4 0.9 1.70 195 +00071200.DDC 1.00 14.4 2910 -5.5 7.2 11.3 11.7 10.8 0.4 1.40 196 +00070700.RAP 1.00 14.2 4065 -7.7 8.6 29.4 33.3 10.8 2.6 2.10 111 +00070400.DDC 1.00 18.1 5003 -7.1 7.6 9.7 19.2 11.4 1.1 2.40 114 +00070300.OAX 1.00 18.5 4633 -6.3 6.9 10.6 19.6 9.9 0.9 1.90 133 +00070300.DDC 1.00 17.2 4482 -5.9 7.5 13.6 22.7 11.7 1.0 2.40 66 +00070200.RAP 1.00 15.6 5621 -9.7 8.7 21.5 22.7 15.9 3.6 2.20 263 +00070200.DDC 1.00 16.8 3390 -5.7 6.6 14.2 21.9 5.5 0.7 1.30 38 +00063000.PIT 1.00 9.9 1086 -15.9 5.5 22.0 37.9 8.1 0.5 1.80 77 +00062600.TOP 1.00 17.8 4052 -8.9 7.6 5.0 23.9 2.4 0.6 2.30 26 +00062600.DDC 1.00 18.4 2618 -6.1 6.7 15.8 16.9 14.3 0.7 1.60 51 +00062300.MHX 1.00 18.6 4167 -8.7 6.1 6.0 6.1 9.7 0.6 0.60 89 +00062100.TBW 1.00 17.1 3180 -8.5 6.4 12.2 19.0 8.9 0.8 0.60 49 +00060200.TOP 1.00 16.1 3517 -9.3 6.9 10.4 16.3 4.9 0.9 0.80 39 +00060200.DVN 1.00 16.4 3451 -9.3 7.3 14.1 11.0 14.2 1.2 0.60 175 +00060100.ILX 1.00 16.1 3208 -9.1 7.0 17.9 15.6 20.7 1.3 1.80 163 +00053000.LBF 1.00 10.4 2258 -9.7 9.2 27.2 31.9 16.9 1.3 1.10 294 +00051400.TLH 1.00 18.3 3542 -9.9 6.9 5.0 5.0 5.4 0.5 1.00 -4 +98062500.DDC 0.88 11.9 2667 -7.3 8.7 25.1 34.7 12.4 1.2 1.40 224 +97010900.SIL 0.88 13.1 909 -13.6 6.7 31.9 37.0 33.7 1.0 -999.00 226 +90091900.OUN 0.88 18.0 3878 -6.7 6.2 11.9 20.5 12.1 0.8 0.60 119 +90073000.AMA 0.88 12.2 943 -7.5 6.3 12.7 18.1 8.4 0.2 0.60 14 +90071000.PIT 0.88 16.6 3362 -6.7 6.3 19.7 14.7 14.3 1.1 0.60 124 +89082900.GGG 0.88 18.5 3979 -4.6 6.0 5.0 5.0 1.6 0.2 0.60 3 +89082600.AHN 0.88 17.1 3463 -5.6 5.8 11.3 8.6 4.0 0.5 0.60 41 +89082500.AHN 0.88 16.9 3533 -5.1 6.1 5.0 8.1 2.7 0.2 0.60 5 +89072700.AHN 0.88 17.5 3996 -6.9 6.5 5.0 6.8 7.1 0.4 0.60 66 +89062700.DEN 0.88 8.6 931 -11.1 7.6 14.3 14.3 10.8 0.2 1.80 122 +89062600.UMN 0.88 16.2 3812 -6.9 6.3 5.0 10.8 2.0 0.3 0.60 -14 +89061200.AMA 0.88 13.2 3301 -11.7 8.7 12.9 25.2 9.2 1.3 2.30 167 +04100400.GSO 0.88 13.2 1385 -14.9 6.5 15.2 26.8 10.4 0.6 1.40 101 +04092000.OAK 0.88 7.3 242 -17.9 5.5 27.4 30.4 6.5 0.1 0.70 56 +04091900.LCH 0.88 15.9 2433 -6.9 5.8 5.0 15.6 7.7 0.2 0.60 6 +04082700.ABR 0.88 10.2 1433 -15.1 6.7 14.4 40.5 5.3 0.5 3.00 28 +04081800.PHX 0.88 10.5 1709 -9.1 7.3 5.0 9.2 6.0 0.1 0.80 15 +04040900.AMA 0.88 8.2 1515 -16.7 7.0 17.9 23.0 14.7 0.6 1.60 139 +03102600.CRP 0.88 17.9 3226 -9.9 6.3 15.2 34.5 9.8 1.2 0.60 17 +03062000.GGW 0.88 9.2 1032 -9.7 8.1 9.8 17.1 8.3 0.2 1.30 76 +03061600.TOP 0.88 12.4 1944 -11.9 6.4 5.0 5.0 5.8 0.2 1.00 3 +03060600.ABR 0.88 8.1 888 -19.9 6.8 17.3 14.2 9.2 0.4 1.50 47 +03060300.JAX 0.88 16.1 3513 -10.1 7.6 11.1 10.3 11.4 1.1 0.60 111 +03050400.BIS 0.88 8.2 1467 -18.7 7.4 15.4 16.1 8.8 0.6 1.60 86 +03031400.TLH 0.88 11.6 2141 -13.1 6.3 10.5 9.0 5.7 0.5 1.10 39 +02052900.OAX 0.88 13.0 2575 -13.3 7.1 7.5 7.0 10.0 0.5 2.60 127 +01062600.CRP 0.88 16.6 3837 -8.5 6.4 5.0 8.9 7.1 0.4 0.60 53 +01062200.DVN 0.88 10.3 1285 -18.1 6.5 10.8 11.8 8.7 0.4 1.00 66 +00090300.OAX 0.88 12.6 3099 -10.1 8.7 16.9 21.6 9.5 1.3 1.40 126 +00080700.DTX 0.88 19.4 4231 -7.3 6.0 16.6 31.6 10.6 1.4 0.60 78 +00080500.LZK 0.88 16.1 3872 -6.3 5.6 9.4 14.6 7.3 0.5 0.80 6 +00080400.BNA 0.88 16.3 3453 -9.9 6.8 10.9 16.0 9.1 0.9 0.60 83 +00080300.PIT 0.88 14.9 2780 -9.7 6.2 15.5 29.2 9.1 0.9 0.60 81 +00080200.DVN 0.88 16.6 4183 -9.7 6.6 11.2 16.4 13.3 1.1 1.10 169 +00072800.BMX 0.88 13.2 2147 -9.5 6.2 8.0 11.4 6.0 0.3 0.70 35 +00070600.DDC 0.88 12.3 2581 -7.5 8.5 9.4 10.0 10.7 0.4 1.80 97 +00061800.RAP 0.88 7.4 1396 -18.9 7.1 14.0 34.9 7.4 0.4 1.40 270 +00061100.DDC 0.88 14.3 3471 -7.9 6.9 11.0 20.2 14.0 0.7 2.40 53 +00021800.JAN 0.88 12.5 1866 -14.9 6.7 27.5 38.9 16.2 1.5 0.70 270 +90052100.SIL 0.85 16.6 3505 -10.6 6.7 8.4 13.0 10.9 0.8 0.60 70 +91051700.JAN 0.80 15.5 2683 -8.9 6.5 5.0 7.8 0.6 0.3 0.60 2 +03052100.TBW 0.80 15.8 2941 -9.5 6.2 5.0 5.4 7.1 0.3 0.60 27 +98081000.SHV 0.75 16.8 3464 -6.5 5.9 5.0 5.0 4.2 0.3 0.60 42 +98062500.JAN 0.75 19.0 3507 -6.1 6.0 5.0 8.6 7.1 0.3 0.70 -1 +97082200.ILN 0.75 9.6 520 -16.3 5.8 17.5 30.9 3.9 0.2 0.70 50 +97081800.SLC 0.75 8.3 931 -10.3 8.5 16.1 22.9 13.6 0.2 1.40 203 +97081700.TBW 0.75 18.5 3152 -7.3 6.2 5.0 5.0 1.8 0.3 0.60 8 +97062400.MAF 0.75 14.1 3277 -9.9 8.9 11.5 8.6 13.0 1.1 1.60 108 +97061700.BMX 0.75 18.2 3829 -6.9 5.9 12.4 13.0 6.9 0.8 0.60 48 +94070200.LCH 0.75 17.0 2754 -6.8 6.4 10.7 11.0 12.4 0.5 0.60 84 +94062400.HTS 0.75 16.5 2715 -5.5 5.3 8.5 15.0 4.7 0.3 0.60 39 +94062400.GGG 0.75 18.0 3599 -5.5 6.3 11.0 14.2 8.2 0.6 0.60 98 +91060600.CKL 0.75 16.3 2864 -8.6 6.4 8.9 11.4 6.2 0.5 0.60 21 +91051700.TBW 0.75 16.1 3306 -7.5 5.4 5.0 5.0 3.8 0.2 0.60 -5 +90101700.MAF 0.75 12.3 2870 -12.5 8.0 14.9 16.2 7.7 1.2 2.30 78 +90083000.ACY 0.75 15.2 2413 -9.3 5.8 13.9 22.7 9.0 0.6 0.60 62 +90082500.OVN 0.75 17.2 3413 -7.1 6.4 12.0 21.9 10.0 0.7 0.70 181 +90082500.OUN 0.75 15.7 2800 -6.4 6.6 5.0 11.9 5.3 0.2 0.60 63 +90082300.GGG 0.75 16.2 3016 -5.9 6.0 5.0 5.5 5.3 0.2 0.60 35 +90082200.BNA 0.75 15.5 2573 -6.1 6.1 9.1 12.7 8.7 0.3 0.60 -10 +90082000.PIA 0.75 19.3 4350 -6.5 6.2 12.0 9.9 9.4 0.9 0.60 67 +90081900.DEN 0.75 11.7 1982 -7.8 7.6 10.2 22.1 6.4 0.3 1.70 25 +90081700.CHS 0.75 19.5 3889 -6.9 5.7 14.2 20.9 11.2 1.0 0.60 100 +90081400.MAF 0.75 13.7 1599 -7.1 6.2 5.0 16.6 2.3 0.1 0.60 35 +90081400.ALB 0.75 14.6 1251 -7.6 5.7 31.1 21.6 20.7 0.6 0.60 261 +90080400.STC 0.75 13.1 2229 -12.5 7.3 5.3 20.0 8.7 0.3 1.40 45 +90073100.JAN 0.75 14.6 2834 -7.3 6.1 5.1 5.0 0.7 0.2 0.60 -3 +90072800.TOP 0.75 16.5 3218 -7.8 6.7 8.8 11.3 9.8 0.6 0.90 282 +90072700.DDC 0.75 14.7 3550 -7.0 7.6 7.6 7.2 6.0 0.5 2.20 84 +90072200.PAH 0.75 16.9 2541 -5.6 5.7 13.3 15.3 11.4 0.4 0.60 80 +90072200.CHS 0.75 18.4 3537 -7.5 6.2 8.3 10.2 7.1 0.6 0.60 88 +90070800.TBW 0.75 20.0 5452 -8.1 6.5 7.8 15.4 5.9 1.0 0.60 11 +90070300.SIL 0.75 18.4 3250 -5.7 5.8 11.8 14.5 7.5 0.5 0.60 79 +90061000.AHN 0.75 14.8 2847 -8.2 5.9 8.6 9.9 5.6 0.4 0.60 50 +90060700.TBW 0.75 17.0 3686 -8.6 6.0 5.0 7.3 4.1 0.4 1.80 8 +90060400.PIT 0.75 9.5 390 -12.5 5.6 26.0 37.7 14.6 0.2 0.60 57 +90052500.MAF 0.75 13.1 3262 -7.2 7.9 22.0 30.6 12.4 1.2 2.10 97 +90042400.1M1 0.75 12.8 2374 -12.6 6.7 14.0 8.3 6.6 0.8 1.50 56 +90042200.SEP 0.75 13.3 2775 -11.7 6.5 10.2 20.8 8.1 0.7 2.10 98 +90042100.OUN 0.75 12.4 1915 -14.1 6.5 25.3 31.9 13.1 1.2 2.30 138 +90033100.TBW 0.75 14.8 2515 -10.0 5.6 14.0 15.0 12.0 0.7 0.60 135 +89102800.OUN 0.75 12.0 1679 -12.7 6.8 10.1 27.1 8.3 0.4 1.00 115 +89081900.HON 0.75 13.1 984 -7.6 7.1 14.0 17.9 12.1 0.2 -999.00 244 +89081200.GRB 0.75 11.3 1782 -14.8 6.7 5.0 9.5 3.9 0.2 0.60 39 +89073100.TOP 0.75 14.5 2685 -6.4 6.7 9.8 13.0 12.0 0.4 0.60 117 +89073000.PAH 0.75 17.9 3630 -7.0 6.4 11.4 9.0 7.4 0.8 0.60 58 +89072900.SIL 0.75 18.8 4031 -6.8 6.3 5.0 5.0 3.9 0.4 0.60 37 +89071100.DDC 0.75 11.9 1858 -8.1 7.6 8.5 14.0 12.4 0.3 2.10 249 +89070800.AHN 0.75 16.8 2876 -6.5 5.8 5.0 5.0 4.3 0.2 0.60 33 +89062700.PIT 0.75 16.0 2924 -9.1 6.8 8.1 5.0 7.9 0.5 0.60 69 +89062300.OUN 0.75 16.0 3217 -7.1 5.9 12.8 14.9 6.9 0.6 0.60 113 +89062300.GRB 0.75 14.6 1729 -8.4 6.2 10.7 10.8 10.0 0.3 -999.00 139 +89062200.CKL 0.75 16.1 2986 -10.1 6.7 10.0 8.5 6.8 0.7 0.60 76 +89061600.ACY 0.75 16.5 2243 -7.6 5.9 18.8 19.1 19.5 0.7 0.60 217 +89061500.AHN 0.75 14.7 1717 -7.5 5.5 10.0 9.8 11.8 0.2 0.60 91 +89061300.CKL 0.75 16.1 2677 -8.6 6.1 15.9 7.3 11.5 0.8 0.60 102 +89060700.AHN 0.75 14.2 2402 -13.0 6.6 12.3 18.6 2.7 0.8 0.60 37 +89060400.PAH 0.75 16.4 3173 -9.7 5.8 14.2 14.7 15.5 0.9 0.60 90 +89052800.CKL 0.75 15.4 2098 -8.1 6.2 11.8 13.5 8.0 0.4 0.60 43 +04100400.CHS 0.75 15.3 1850 -10.7 6.0 22.1 32.7 13.4 0.9 0.60 81 +04092800.DNR 0.75 7.9 698 -13.9 7.1 17.7 21.0 12.4 0.2 1.00 112 +04082800.PIT 0.75 18.3 3258 -6.1 5.6 7.8 6.8 10.4 0.4 0.60 106 +04082800.JAN 0.75 18.0 3714 -7.5 6.4 5.0 5.0 1.0 0.4 0.60 12 +04081900.OTX 0.75 9.8 1929 -11.3 7.4 9.9 15.1 6.2 0.4 1.50 43 +04081900.DDC 0.75 11.7 2146 -6.3 6.2 5.0 11.0 10.2 0.1 0.70 15 +04081700.PHX 0.75 12.6 2729 -7.9 7.1 8.0 6.2 6.2 0.3 1.30 60 +04052300.BUF 0.75 13.8 1807 -10.6 5.8 22.4 24.0 18.8 0.8 0.60 239 +04051700.FFC 0.75 12.2 2077 -12.1 6.4 5.0 11.6 2.9 0.2 0.80 0 +04030500.LZK 0.75 12.4 745 -10.1 5.8 39.6 53.2 27.8 0.5 0.60 468 +03111300.BUF 0.75 8.1 418 -20.5 6.7 46.9 65.5 18.0 0.5 1.50 335 +03091000.JAN 0.75 15.0 1929 -9.5 6.0 10.8 22.1 8.1 0.4 0.60 83 +03090900.MAF 0.75 12.1 2389 -7.9 7.0 18.1 17.8 12.1 0.7 2.20 222 +03090900.GJT 0.75 6.8 996 -12.3 9.1 17.7 28.1 8.5 0.3 0.70 199 +03062200.IAD 0.75 10.5 1215 -17.1 5.8 15.1 9.7 9.3 0.4 1.10 79 +03062100.RAP 0.75 11.9 2338 -10.3 7.2 8.1 14.4 15.0 0.4 2.40 137 +03062000.BOI 0.75 7.0 491 -12.5 8.2 23.3 18.1 17.9 0.2 1.00 141 +03061900.TFX 0.75 8.6 1802 -9.3 8.2 10.8 13.4 13.1 0.3 1.00 178 +03061500.SHV 0.75 16.2 2511 -9.9 6.3 21.1 32.8 13.5 1.2 0.60 91 +03061222.XMR 0.75 17.1 2144 -7.9 6.1 5.0 6.1 5.2 0.2 0.60 65 +03061000.JAX 0.75 16.0 2482 -8.7 6.7 11.3 22.4 10.8 0.6 0.60 13 +03060700.MFL 0.75 18.2 3041 -6.7 5.6 5.0 9.3 0.9 0.2 0.60 5 +03052400.PIT 0.75 10.0 707 -16.7 6.5 26.5 23.6 12.1 0.5 1.00 65 +03050200.BMX 0.75 12.4 2216 -12.9 6.6 6.7 7.6 4.6 0.4 0.70 9 +03050100.DNR 0.75 6.7 1011 -20.1 8.0 33.5 27.3 12.5 0.8 1.20 108 +03042300.DNR 0.75 6.7 1183 -16.1 7.9 19.1 35.2 12.2 0.4 1.20 265 +03040922.XMR 0.75 15.5 2568 -10.3 5.6 31.0 38.3 12.7 1.6 0.60 34 +03032000.SGF 0.75 7.6 909 -22.1 6.7 10.5 8.6 18.2 0.2 1.40 205 +03031500.OTX 0.75 6.3 801 -26.3 7.5 24.9 28.7 18.3 0.6 1.50 240 +02072000.LZK 0.75 21.6 6551 -8.5 6.9 10.2 6.8 8.7 1.9 0.90 145 +02062500.LBF 0.75 11.7 3690 -10.3 9.2 7.2 9.1 5.0 0.7 1.30 45 +02060400.JAX 0.75 15.3 3128 -8.1 6.5 5.0 6.5 0.3 0.3 0.60 15 +02051500.PIT 0.75 5.9 521 -27.9 7.9 14.7 14.3 17.3 0.2 1.10 74 +01062400.BIS 0.75 13.7 4781 -10.9 9.0 18.7 27.1 15.0 2.7 1.70 249 +00090200.SHV 0.75 12.1 1896 -7.5 7.0 5.0 5.0 5.2 0.1 0.70 15 +00080400.LCH 0.75 15.7 3045 -7.5 5.6 5.0 12.8 4.7 0.2 0.60 28 +00072400.GGW 0.75 10.9 3240 -11.1 8.5 26.1 22.5 12.5 2.0 1.40 54 +00072300.GSO 0.75 16.5 2443 -9.1 5.7 20.6 22.2 6.6 1.0 0.60 88 +00072100.TBW 0.75 18.9 4845 -6.9 6.4 7.0 10.7 7.4 0.6 0.90 56 +00071900.JAN 0.75 19.7 3841 -6.1 6.1 7.5 6.9 5.7 0.5 0.60 32 +00071800.JAN 0.75 20.3 3305 -5.5 6.0 13.9 14.4 13.1 0.7 0.60 -56 +00071300.FWD 0.75 14.9 3103 -5.7 6.5 10.6 11.4 13.9 0.4 0.80 120 +00071300.DDC 0.75 15.1 3064 -3.7 6.1 6.2 10.6 9.2 0.1 0.60 0 +00062900.GRB 0.75 8.9 860 -18.9 6.4 17.0 24.4 14.1 0.4 1.10 108 +00062500.JAX 0.75 15.6 2442 -10.1 6.2 9.4 21.8 9.3 0.5 0.60 104 +00061900.WAL 0.75 17.4 2909 -7.9 6.3 11.3 9.5 11.6 0.7 0.60 134 +00061800.JAX 0.75 15.7 2677 -7.9 5.7 6.0 10.5 7.9 0.3 0.60 61 +00052200.LZK 0.75 12.1 2062 -13.5 6.2 22.6 32.5 17.7 1.1 1.40 162 +00050300.JAN 0.75 12.8 1438 -12.9 5.9 12.8 7.2 13.9 0.4 0.60 120 +00022400.LZK 0.75 10.6 1590 -18.1 7.0 25.0 34.2 17.2 1.2 2.50 270 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/freako b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/freako old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/gemglb.nts b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/gemglb.nts old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/last.nts b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/last.nts old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist.txt deleted file mode 100644 index 1eada9d84f..0000000000 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist.txt +++ /dev/null @@ -1,1149 +0,0 @@ -DATE / RAOB ELEV REPORT MUCAPE MUMR 500TEMP 300 T 7-5 LR 5-3 LR 0-3SH 0-6SH 0-9SH SRH3 SHIP MODELb -95052300.DDC 791 6.00 4181 15.3 -9.6 -36.2 7.5 7.1 23.4 19.4 26.8 325 1.9 3.0 -91051100.MAF 873 6.00 4692 14.9 -10.8 -37.3 8.8 7.2 14.2 13.2 18.1 -37 1.9 2.7 -97061700.OUN 357 5.50 5751 18.8 -9.5 -36.1 7.4 7.1 14.5 23.6 45.9 116 3.1 3.5 -99012200.LZK 165 5.00 2240 12.3 -17.3 -41.7 7.6 6.8 23.0 26.3 32.1 294 2.3 3.0 -96061200.DDC 791 5.00 2820 13.7 -8.3 -34.7 7.6 7.1 12.9 20.3 15.8 142 1.2 2.5 -92072600.DDC 791 5.00 4794 17.4 -4.6 -31.2 6.8 7.0 18.2 17.4 14.6 176 1.0 0.8 -91052900.HON 392 5.00 3892 15.2 -12.3 -38.0 8.0 7.0 25.0 40.7 36.0 269 3.4 3.5 -90070800.BIS 504 5.00 3717 16.6 -9.8 -33.6 7.7 6.4 12.5 29.8 42.2 202 2.4 2.4 -57070300.RAP 966 5.00 4359 15.8 -6.7 -36.0 7.7 7.8 13.9 22.9 39.3 130 1.7 3.4 -06040300.LZK 78 5.00 3819 13.7 -14.9 -44.7 8.0 8.2 20.9 26.6 32.6 251 3.9 3.4 -99060100.DDC 790 4.75 4387 15.9 -11.3 -38.7 8.0 7.4 15.3 27.7 38.0 209 3.5 3.5 -96102100.OUN 362 4.50 2995 12.7 -12.9 -42.6 7.5 8.1 15.6 20.3 28.4 71 1.8 3.0 -96081100.LBF 847 4.50 2360 13.3 -8.4 -34.4 6.2 7.0 26.5 26.1 22.0 326 1.0 2.6 -96062700.TFX 1130 4.50 3835 13.9 -10.9 -37.2 8.3 7.1 21.8 37.1 44.3 297 3.0 1.6 -96051000.TOP 268 4.50 3884 15.6 -11.1 -40.4 8.8 8.0 22.1 18.3 22.3 234 2.2 3.3 -96050500.IAD 85 4.50 2432 12.1 -15.2 -41.7 7.2 7.3 15.9 25.0 25.5 36 1.9 1.9 -96030700.JAN 91 4.50 2362 14.0 -12.5 -38.9 6.8 7.2 16.8 34.9 36.9 196 1.8 0.6 -95060900.MAF 873 4.50 5653 17.8 -8.1 -37.7 8.1 8.0 12.8 18.7 33.5 83 2.2 2.9 -95060500.MAF 873 4.50 4358 14.9 -8.6 -40.7 7.6 8.7 16.0 23.2 32.0 181 2.1 2.9 -95051700.DDC 791 4.50 4878 15.6 -10.8 -39.2 8.5 7.7 8.9 26.6 40.7 43 3.8 2.6 -94060800.LBF 847 4.50 3400 13.0 -9.5 -37.5 7.8 7.6 8.1 18.7 18.4 109 1.5 2.4 -94042600.SEP 399 4.50 4409 16.3 -11.5 -41.9 7.4 8.3 21.2 26.7 26.2 138 3.3 3.3 -94040300.OUN 362 4.50 2075 10.1 -17.0 -44.2 7.6 7.5 18.7 31.2 39.3 163 1.9 2.1 -93101800.SEP 428 4.50 3958 15.7 -10.6 -34.9 7.0 6.5 23.2 31.7 30.5 441 2.6 2.2 -93101300.SEP 428 4.50 3151 14.2 -13.1 -36.5 8.0 6.3 15.0 22.3 31.8 307 2.4 2.9 -93092200.TOP 270 4.50 3665 16.8 -8.1 -37.9 6.5 8.0 21.3 21.3 37.9 502 1.3 1.3 -93092200.OVN 486 4.50 3685 15.4 -11.1 -40.4 8.1 7.9 23.5 31.9 33.2 492 2.9 4.0 -93072400.BIS 505 4.50 3597 15.3 -9.8 -38.4 5.8 7.7 14.9 21.0 33.2 263 1.4 2.3 -93062700.OVN 400 4.50 3720 15.0 -10.0 -38.2 6.3 7.6 9.4 22.3 28.9 140 1.7 3.1 -93060800.OUN 431 4.50 4917 17.0 -9.1 -34.9 7.1 6.9 9.7 30.6 26.7 195 2.8 2.6 -93050100.DDC 790 4.50 3206 11.1 -16.5 -44.2 8.0 7.7 15.4 24.0 29.9 194 2.7 3.7 -92073000.TOP 268 4.50 4074 16.6 -10.0 -37.8 7.5 7.5 11.8 22.5 22.1 164 2.2 2.4 -92073000.OVN 400 4.50 4366 16.6 -11.4 -38.3 7.4 7.3 13.9 22.3 23.7 216 2.7 3.2 -92062900.SEP 399 4.50 3761 17.4 -9.6 -33.8 7.8 6.6 13.7 21.8 15.6 248 2.0 2.8 -92062800.DDC 791 4.50 2750 13.8 -11.3 -34.2 7.8 6.2 15.2 20.6 41.3 315 1.6 2.9 -92062800.AMA 1095 4.50 4069 16.0 -10.3 -36.1 7.9 6.9 16.9 22.8 27.5 150 2.4 3.2 -91081400.GTF 1118 4.50 2524 11.5 -13.2 -37.4 8.5 6.6 15.3 25.8 28.9 213 2.0 2.0 -91072100.HON 392 4.50 5826 20.1 -6.1 -32.2 6.8 6.9 14.3 22.8 33.9 180 1.8 1.9 -91042912.BRO 7 4.50 4471 19.5 -9.8 -38.2 7.7 7.6 13.7 23.1 24.2 254 2.5 -999.0 -91032800.FNT 236 4.50 1860 11.3 -17.3 -44.0 7.6 7.4 26.8 47.0 45.4 431 1.8 2.9 -90051600.OUN 357 4.50 4398 16.7 -9.0 -36.4 7.6 7.3 23.2 25.5 44.9 180 2.5 3.1 -89080400.INL 359 4.50 3953 17.4 -11.5 -30.6 8.3 5.1 7.3 18.6 29.2 36 2.3 1.0 -89070300.SEP 399 4.50 5261 18.5 -7.6 -28.8 8.4 5.6 12.9 22.6 1.2 222 2.5 2.9 -89062700.GSO 277 4.50 4349 17.6 -7.3 -33.8 6.3 7.1 7.8 14.2 6.4 52 0.9 0.9 -89060700.SEP 399 4.50 3510 15.6 -7.9 -33.9 7.0 7.0 9.0 24.8 47.4 130 1.6 2.4 -89060400.MAF 873 4.50 3939 14.0 -10.0 -36.2 8.5 7.1 6.6 20.6 33.6 58 2.2 2.2 -02043000.FWD 171 4.50 5853 19.4 -10.9 -33.7 8.0 6.1 14.6 29.7 37.1 151 4.4 3.1 -02042900.IAD 93 4.50 2553 13.6 -16.7 -41.9 7.3 6.9 24.9 21.1 33.9 373 2.1 2.9 -08020600.SHV 79 4.25 2312 13.5 -14.1 -42.1 7.3 7.7 25.8 32.4 43.7 212 2.1 1.8 -07080400.RAP 1029 4.25 2983 15.6 -4.1 -30.9 6.2 7.1 18.3 22.7 35.8 270 0.7 0.9 -05042200.SGF 387 4.25 2944 12.6 -13.3 -42.7 6.8 8.0 15.1 21.3 15.6 193 1.7 2.2 -05042000.LBF 849 4.25 2460 10.1 -15.7 -43.9 8.9 7.8 16.6 15.3 22.3 255 1.4 2.9 -05031400.JAN 101 4.25 1382 11.1 -15.7 -40.7 7.6 6.8 19.2 25.5 49.7 161 1.1 2.8 -04081000.DNR 1625 4.25 3415 12.9 -9.1 -38.9 8.0 8.1 16.2 15.0 15.4 270 1.2 3.2 -04071318.ILX 178 4.25 6811 22.1 -10.9 -36.3 7.9 6.8 15.5 18.7 21.9 131 3.6 2.6 -04071300.LBF 849 4.25 7183 19.5 -7.3 -35.7 8.6 7.5 10.3 14.7 20.5 68 2.1 3.7 -04071200.GGW 700 4.25 2390 11.0 -13.7 -41.1 8.6 7.5 17.1 22.3 32.0 99 1.7 1.9 -04062200.AMA 1099 4.25 3828 13.8 -8.9 -36.5 8.0 7.4 17.8 26.2 40.5 141 2.3 2.3 -04053000.OUN 357 4.25 4526 16.8 -7.5 -36.5 7.8 7.7 15.8 24.4 40.4 224 2.1 -999.0 -04052200.AMA 1099 4.25 4265 13.7 -8.7 -36.3 7.9 7.4 13.6 21.5 23.9 176 2.0 2.1 -04040400.MAF 872 4.25 2746 12.0 -14.7 -43.1 7.0 7.8 14.4 19.5 31.1 262 1.6 2.7 -03051000.MHX 11 4.25 4373 17.1 -10.5 -35.1 7.3 6.6 14.1 22.7 23.2 146 2.5 2.1 -03050518.BNA 210 4.25 2730 16.0 -12.9 -36.4 7.1 6.5 18.3 37.0 37.2 239 2.2 -999.0 -03050500.SGF 387 4.25 5169 15.7 -13.5 -40.7 7.6 7.4 30.0 38.4 50.7 348 4.6 2.9 -03040600.FWD 171 4.25 2487 12.4 -14.3 -41.7 7.3 7.5 17.1 31.5 51.8 341 2.1 2.9 -01070300.LBF 849 4.25 5584 16.7 -8.7 -37.3 8.5 7.8 14.2 18.0 24.7 154 2.4 4.2 -98063000.TOP 270 4.00 6490 21.8 -5.3 -30.5 7.2 6.6 18.1 24.4 32.6 230 2.0 1.7 -98050800.FFC 244 4.00 4120 17.3 -12.3 -36.1 7.7 6.4 17.1 31.0 51.6 172 3.4 2.2 -97082200.LBF 849 4.00 3974 15.7 -9.7 -35.9 7.4 7.1 17.4 26.4 37.5 321 2.4 3.3 -96052300.LBF 847 4.00 2915 13.5 -11.1 -38.2 8.0 7.3 18.5 27.8 43.7 303 2.3 2.9 -95102700.SGF 394 4.00 2166 12.5 -13.8 -41.6 6.9 7.6 25.7 21.9 29.4 267 1.3 1.6 -95072600.DDC 791 4.00 5696 18.3 -10.1 -32.2 8.8 5.9 17.1 21.3 19.2 238 3.5 3.3 -95072500.FTD 196 4.00 2897 15.4 -10.0 -30.5 9.2 5.5 12.8 19.1 19.8 168 1.7 -999.0 -95051600.JAN 91 4.00 4861 17.9 -10.9 -37.6 7.8 7.2 8.6 14.9 18.5 -35 2.0 2.5 -95050600.FTD 196 4.00 2036 15.1 -11.1 -34.7 7.1 6.4 20.8 21.2 37.5 304 1.1 0.6 -93072300.HON 443 4.00 3720 15.7 -8.1 -37.4 6.0 7.8 15.4 19.1 22.5 130 1.1 1.5 -93071600.RAP 966 4.00 3230 14.1 -7.5 -34.9 7.7 7.3 18.6 25.0 35.8 97 1.5 3.2 -91041300.SEP 399 4.00 5008 16.9 -10.6 -40.5 6.8 8.1 12.2 21.8 27.4 137 2.6 3.4 -90090200.RAP 966 4.00 1762 11.3 -7.4 -33.9 7.5 7.0 14.1 23.6 32.7 181 0.6 2.1 -90070100.DAY 298 4.00 3541 16.6 -9.4 -33.6 7.1 6.5 8.6 19.9 24.5 154 1.5 1.8 -90060900.TOP 268 4.00 5571 18.5 -10.1 -39.2 7.3 7.8 14.8 22.6 16.4 252 3.0 2.7 -90051900.AMA 1095 4.00 2732 11.5 -9.3 -38.2 7.7 7.8 18.5 26.1 30.4 301 1.4 2.1 -90051500.AMA 1095 4.00 4543 14.8 -9.9 -36.2 8.2 7.1 19.2 24.7 33.8 473 2.9 2.2 -89071800.LBF 847 4.00 3622 15.4 -9.4 -35.6 8.1 7.0 22.9 38.9 37.6 361 2.4 2.9 -89062700.DDC 791 4.00 2840 14.3 -8.4 -36.6 7.6 7.5 12.7 19.4 19.2 167 1.1 2.2 -89061100.AMA 1095 4.00 3666 15.8 -8.7 -35.4 7.6 7.2 11.1 11.0 19.2 87 0.9 -999.0 -06092221.SGF 387 4.00 5071 17.6 -6.7 -36.1 5.3 7.9 21.0 31.6 37.0 202 1.6 1.1 -06071700.INL 361 4.00 3719 14.1 -11.1 -38.3 8.4 7.4 19.9 26.3 29.8 328 3.0 2.4 -06050600.MAF 872 4.00 3533 12.4 -12.3 -40.1 8.2 7.5 19.3 33.6 48.0 174 2.8 2.0 -04071318.DVN 229 4.00 6090 20.8 -11.1 -37.3 8.4 7.1 22.5 25.9 22.3 191 4.7 2.8 -03050300.BMX 178 4.00 4593 15.2 -15.7 -40.1 7.9 6.7 8.1 32.4 30.5 51 5.0 2.9 -02061300.DDC 790 4.00 6234 19.5 -6.9 -31.9 7.6 6.6 17.2 19.8 32.7 126 2.1 3.7 -02042000.MAF 872 4.00 2974 12.9 -8.1 -36.7 6.9 7.6 19.0 24.3 41.7 133 1.2 2.5 -95051900.BMX 178 3.75 3370 16.5 -9.9 -35.7 6.6 7.0 16.9 20.6 25.5 246 1.5 0.6 -03040400.OUN 357 3.75 2640 11.9 -15.1 -42.7 7.3 7.6 13.4 24.0 23.9 187 2.0 2.3 -99072600.LBF 849 3.65 4375 16.4 -6.7 -30.5 7.9 6.4 9.5 12.9 16.1 60 1.0 2.6 -99050400.OUN 357 3.65 5195 15.6 -14.9 -44.1 8.4 8.0 16.5 21.3 22.0 343 4.5 4.7 -99030600.LZK 165 3.65 1922 11.7 -18.5 -46.3 8.2 7.7 21.4 22.8 39.2 360 1.9 2.1 -98052200.SGF 387 3.65 4719 17.1 -9.9 -36.5 7.8 7.2 13.8 22.4 23.1 232 2.6 2.3 -98040800.ILX 178 3.65 1354 10.2 -19.7 -46.5 7.2 7.5 20.1 21.2 25.1 180 1.1 2.6 -03062300.OAX 350 3.65 6203 18.7 -9.3 -36.9 8.6 7.5 12.3 13.6 22.9 237 2.2 4.2 -02091900.OUN 357 3.65 4268 15.7 -6.1 -36.9 6.7 8.2 17.8 20.8 23.4 308 1.2 3.0 -02062400.ABR 396 3.65 5093 17.2 -10.5 -35.7 8.2 6.8 16.9 26.3 30.9 187 3.7 3.5 -02060500.RNK 654 3.65 5399 17.9 -9.7 -34.9 6.9 6.7 8.7 4.0 7.3 54 0.8 3.2 -02051200.TOP 270 3.65 4489 15.8 -11.9 -38.9 8.1 7.3 13.7 26.0 26.5 224 3.6 3.3 -02051100.MAF 872 3.65 4658 14.5 -9.3 -35.9 8.4 7.2 14.8 23.1 40.3 132 2.7 2.2 -01072100.GGW 700 3.65 3114 13.5 -10.7 -38.5 7.7 7.5 15.8 28.3 30.5 354 2.2 2.8 -01071800.ABR 396 3.65 5177 17.5 -9.9 -36.7 8.4 7.2 9.6 19.5 28.2 136 2.7 3.9 -01062100.DDC 790 3.65 4428 15.2 -10.7 -37.5 7.8 7.3 13.4 19.0 25.2 400 2.3 3.2 -01061400.DDC 790 3.65 5244 15.7 -8.9 -36.7 8.0 7.5 19.8 28.1 28.2 384 3.2 2.5 -01052500.JAN 101 3.65 3446 13.5 -15.1 -42.5 7.5 7.5 17.4 21.8 31.4 240 2.7 2.7 -01051800.AMA 1099 3.65 4695 13.9 -10.5 -38.9 8.6 7.7 16.1 13.2 22.8 86 1.8 2.1 -01050700.SHV 79 3.65 2945 14.8 -12.5 -39.3 6.5 7.3 9.0 15.7 22.1 110 1.2 1.7 -01050700.LZK 78 3.65 3512 14.7 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.6 3.4 -01041500.DDC 790 3.65 3892 13.1 -18.3 -43.1 9.0 6.9 24.4 43.1 54.7 233 5.4 2.5 -01040400.SGF 387 3.65 3277 12.8 -15.1 -43.1 8.3 7.7 17.2 22.4 28.9 310 2.8 3.1 -98062000.OUN 357 3.50 6048 19.0 -7.1 -35.9 7.8 7.7 13.7 15.4 11.2 209 1.7 3.9 -98052500.OUN 357 3.50 5688 18.0 -10.7 -39.7 8.1 7.8 9.9 21.9 28.7 172 3.5 4.2 -98052100.TOP 270 3.50 4680 16.5 -12.5 -38.1 8.4 7.0 9.8 10.5 23.7 100 1.7 3.8 -97062100.LBF 849 3.50 6058 17.3 -9.3 -35.7 8.8 7.2 13.9 23.1 25.1 129 3.7 3.7 -96062000.OAX 350 3.50 4081 16.3 -9.8 -37.1 8.6 7.4 18.9 19.0 24.4 271 2.1 -999.0 -90061900.BIS 504 3.50 1968 11.1 -13.5 -40.9 8.2 7.5 17.4 28.4 38.0 257 1.5 2.9 -90060900.IAD 85 3.50 3994 17.2 -10.9 -35.5 7.1 6.7 18.3 23.7 20.0 203 2.4 0.9 -90040600.SEP 399 3.50 3764 12.4 -14.9 -45.3 7.8 8.4 15.4 25.2 36.8 305 3.3 2.3 -90031400.OUN 357 3.50 3950 14.6 -16.1 -39.5 7.2 6.4 12.3 20.2 49.4 169 3.0 2.9 -89070300.STC 315 3.50 3556 15.6 -8.2 -35.9 7.0 7.4 8.5 15.8 21.4 128 1.1 1.4 -02081200.DDC 790 3.50 3415 14.0 -8.7 -34.3 8.0 6.9 10.7 15.7 27.7 157 1.2 3.1 -01061500.FWD 171 3.50 4260 17.3 -9.7 -33.7 7.9 6.5 11.1 15.1 9.7 74 1.6 2.2 -01041000.SGF 387 3.50 3476 13.0 -14.5 -41.3 7.9 7.4 12.5 21.6 30.3 141 2.7 2.6 -91060500.DDC 791 3.25 4631 16.9 -7.9 -35.5 6.5 7.4 11.0 15.3 15.4 74 1.2 3.5 -06070200.GRB 214 3.25 3255 15.4 -9.3 -35.9 6.6 7.1 14.7 17.0 24.9 99 1.1 1.5 -99060200.FWD 196 3.00 4928 17.3 -11.5 -37.3 8.8 7.0 15.3 15.0 30.3 171 2.4 4.5 -98062900.TOP 270 3.00 6895 22.0 -7.7 -33.1 7.0 6.8 19.3 20.6 27.3 335 2.5 2.4 -98062500.BIS 506 3.00 4591 15.5 -13.3 -41.3 8.1 7.7 15.5 15.9 15.4 89 2.5 3.0 -98062500.ABR 396 3.00 4448 16.3 -13.7 -40.5 8.8 7.3 11.2 17.4 28.7 42 3.0 3.7 -98061400.OAX 350 3.00 2830 13.3 -10.5 -39.5 7.7 7.9 15.3 24.4 45.4 219 1.8 3.4 -98052400.DDC 790 3.00 2630 11.6 -12.9 -41.5 6.7 7.8 9.8 22.0 27.7 101 1.4 2.3 -97061000.FWD 196 3.00 2699 15.6 -9.9 -34.9 7.0 6.7 10.9 18.7 24.1 98 1.1 1.3 -97052600.OUN 357 3.00 5143 17.2 -7.7 -38.5 5.9 8.3 15.0 30.4 32.4 148 2.0 2.6 -96070800.LBF 847 3.00 3341 15.3 -6.4 -32.5 7.0 6.9 20.6 30.0 41.5 390 1.3 2.2 -96062012.LBF 847 3.00 3418 15.2 -8.6 -35.4 7.9 7.3 16.5 22.6 25.0 380 1.7 3.3 -96061400.UNR 1037 3.00 3801 13.1 -11.0 -37.6 8.4 7.2 12.4 18.0 14.8 63 2.0 2.0 -96052700.OUN 362 3.00 3034 15.2 -9.4 -36.2 6.9 7.2 22.5 29.8 33.6 330 1.7 2.0 -96042000.ILX 178 3.00 2394 12.9 -14.6 -41.1 7.1 7.3 16.4 27.0 39.5 249 2.1 -999.0 -96033100.SHV 84 3.00 2891 12.7 -17.1 -46.6 7.6 8.2 20.1 27.4 35.5 163 3.0 3.1 -95082700.GGW 696 3.00 3094 11.7 -12.6 -38.7 8.3 7.1 13.6 26.8 41.0 162 2.4 1.7 -95082300.INL 359 3.00 3023 15.4 -11.6 -36.2 8.0 6.7 25.4 30.9 26.5 694 2.5 2.1 -95072400.DDC 791 3.00 3645 15.9 -9.9 -33.5 8.2 6.3 11.8 18.2 32.6 31 1.7 3.6 -95071500.LBF 847 3.00 3052 14.4 -7.0 -32.9 6.5 6.9 13.9 15.9 24.7 159 0.7 2.1 -95062300.LBF 847 3.00 2962 12.9 -11.1 -36.7 7.9 7.0 15.3 21.0 19.8 220 1.7 2.8 -95043000.FTD 196 3.00 4416 15.0 -13.3 -43.2 8.1 8.2 15.6 21.9 31.7 166 3.4 3.4 -95021400.PBI 6 3.00 2433 16.5 -11.0 -41.1 5.9 8.1 13.8 27.1 33.4 117 1.4 0.6 -94060600.DDC 791 3.00 4882 14.8 -8.8 -37.2 8.7 7.6 13.1 15.6 18.6 248 1.9 2.1 -94052600.FNT 236 3.00 2240 10.8 -16.3 -46.6 6.1 8.4 12.8 17.8 25.8 113 1.0 2.4 -94032800.CKL 140 3.00 2066 15.3 -9.6 -33.7 6.3 6.4 30.5 38.6 36.3 429 1.1 0.6 -93091900.DDC 824 3.00 1954 12.4 -10.4 -35.2 7.2 6.7 16.8 29.5 46.6 233 1.2 2.8 -93091900.AMA 1094 3.00 1911 12.4 -9.0 -33.5 7.7 6.5 16.5 32.7 35.4 264 1.1 2.4 -93082300.DDC 790 3.00 2608 13.3 -7.8 -33.0 7.7 6.8 13.1 19.5 27.0 83 1.0 2.0 -93070900.OVN 487 3.00 5546 19.7 -6.8 -30.3 6.9 6.2 16.9 29.4 24.3 345 2.3 0.6 -93070200.DDC 816 3.00 4895 17.1 -5.2 -33.2 7.2 7.4 13.3 16.4 21.4 237 1.0 2.8 -93060600.HAT 4 3.00 4948 16.0 -13.5 -38.7 8.3 6.9 12.6 15.5 17.2 70 2.8 3.9 -93050600.MAF 873 3.00 3784 13.9 -9.6 -37.2 7.2 7.4 18.6 27.0 25.4 149 2.3 2.5 -92070500.OVN 400 3.00 5051 17.3 -9.3 -36.1 7.4 7.2 16.1 21.8 33.3 243 2.5 3.5 -92062700.MAF 873 3.00 3224 13.9 -8.2 -32.9 7.7 6.6 13.0 23.7 38.8 253 1.6 2.5 -92032600.TBW 13 3.00 2104 12.6 -14.0 -43.1 6.5 8.0 18.6 32.2 37.0 195 1.5 1.1 -91052700.DDC 791 3.00 5493 17.0 -10.5 -38.1 8.4 7.4 13.3 21.7 29.3 81 3.4 2.9 -91040912.1M1 172 3.00 3450 14.2 -15.2 -42.3 8.0 7.5 11.5 19.7 20.8 134 2.7 -999.0 -91032700.TOP 268 3.00 2763 12.7 -12.3 -39.3 6.8 7.4 21.6 27.7 31.7 279 1.9 2.5 -90052700.OUN 357 3.00 4621 17.5 -8.8 -37.3 7.6 7.7 20.4 23.8 25.1 255 2.4 3.2 -90051500.OUN 357 3.00 4798 16.8 -10.7 -38.4 7.8 7.5 12.5 19.8 29.7 186 2.6 4.2 -89060700.AMA 1095 3.00 4752 15.4 -9.5 -33.5 8.5 6.4 21.7 30.5 55.6 303 3.3 2.4 -89060500.OUN 357 3.00 1640 12.5 -11.6 -39.9 7.0 7.7 8.8 15.7 23.9 53 0.6 0.7 -72081200.YRM 988 3.00 1989 10.9 -14.2 -40.4 8.3 7.1 14.0 24.6 35.0 132 1.5 2.4 -06052800.BIS 506 3.00 3434 12.5 -11.1 -38.7 8.1 7.5 10.5 11.3 12.7 74 1.0 1.8 -06052700.BNA 210 3.00 3535 16.1 -8.3 -35.3 5.9 7.2 17.7 12.8 17.2 196 0.7 0.7 -06052500.SGF 387 3.00 3470 15.6 -11.1 -37.1 7.6 7.0 13.6 14.3 7.3 162 1.4 2.0 -06042500.OUN 357 3.00 4007 15.5 -12.3 -39.3 8.6 7.3 15.4 20.1 21.2 105 2.8 3.3 -06042412.LMN 317 3.00 3248 14.1 -12.9 -39.7 8.2 7.3 16.6 25.4 28.7 413 2.8 3.2 -04081000.DDC 790 3.00 3147 14.6 -9.7 -36.3 7.7 7.1 13.0 21.0 22.0 222 1.6 3.0 -04070200.AMA 1099 3.00 5137 16.9 -8.1 -37.7 7.4 7.9 18.0 14.0 16.6 80 1.4 3.0 -04052300.OAX 350 3.00 4333 15.6 -12.3 -40.7 7.6 7.8 19.6 32.4 28.9 289 3.6 3.0 -04051700.DDC 790 3.00 2200 10.0 -11.9 -41.3 8.4 8.0 20.5 31.7 30.2 390 1.6 1.5 -04042200.OUN 357 3.00 2363 12.2 -13.5 -39.5 7.0 7.1 16.9 24.3 33.8 385 1.6 2.7 -04041900.OAX 350 3.00 3136 11.9 -15.1 -40.5 8.2 7.0 20.5 33.8 44.9 394 3.0 1.9 -03062800.DDC 790 3.00 2329 11.4 -9.3 -38.9 6.7 8.0 10.8 16.9 26.8 138 0.7 2.2 -03062400.LBF 849 3.00 6189 18.6 -8.7 -38.9 8.1 8.1 21.7 30.8 31.6 381 3.8 4.8 -03050420.SGF 387 3.00 4524 15.8 -11.9 -40.7 7.1 7.8 25.2 35.4 47.9 480 3.3 3.2 -03042100.SHV 79 3.00 2947 15.5 -13.5 -38.7 7.5 6.8 14.3 24.0 38.0 110 2.3 0.9 -01090900.FWD 171 3.00 4304 17.1 -8.9 -35.7 8.2 7.1 7.7 14.1 12.0 97 1.4 2.7 -01053000.AMA 1099 3.00 5827 16.4 -9.7 -38.5 8.2 7.7 25.0 26.1 29.7 268 3.9 2.8 -01051900.LZK 78 3.00 4269 16.6 -12.5 -37.3 8.1 6.7 9.9 18.5 25.8 98 2.6 2.7 -00080600.OAX 350 3.00 5525 19.0 -7.1 -33.1 7.5 6.9 9.4 15.0 22.8 56 1.4 3.1 -00062900.MAF 872 3.00 3565 14.8 -6.3 -31.1 6.3 6.6 9.6 10.5 16.7 29 0.5 1.8 -00050400.FWD 196 3.00 2731 13.2 -14.3 -40.3 6.3 7.1 19.0 21.7 28.5 327 1.7 3.0 -99081800.LBF 849 2.75 5554 18.3 -8.9 -32.5 7.8 6.4 10.7 23.7 25.1 143 2.9 3.4 -99070100.MAF 872 2.75 3989 13.7 -2.5 -33.9 7.5 8.3 10.5 14.9 13.7 146 0.8 2.0 -99061900.DDC 790 2.75 4141 13.9 -11.3 -40.3 7.3 7.9 13.4 22.5 29.0 346 2.5 2.4 -99061200.AMA 1099 2.75 4400 14.7 -10.3 -36.3 7.7 7.0 18.8 26.2 36.6 210 3.0 2.4 -99060300.AMA 1099 2.75 5087 15.6 -10.3 -36.5 8.7 7.1 15.5 18.6 49.2 289 2.7 2.5 -98061400.OUN 357 2.75 6689 20.5 -6.5 -32.5 7.7 6.9 17.9 32.8 42.7 262 2.9 4.0 -98052500.DDC 790 2.75 2688 12.5 -12.1 -40.7 7.2 7.8 13.7 27.9 32.0 180 1.9 2.7 -98040900.BMX 178 2.75 3341 15.8 -13.9 -39.5 7.9 7.0 25.9 40.1 51.5 296 3.2 2.0 -97061600.DDC 790 2.75 3187 13.5 -10.9 -36.5 7.7 6.9 11.9 23.3 39.3 26 2.0 2.7 -97061200.TOP 270 2.75 1552 12.6 -11.7 -38.7 7.1 7.3 11.6 23.5 30.2 141 0.9 0.9 -97052700.SGF 387 2.75 4440 16.3 -9.9 -38.1 7.0 7.6 16.3 22.6 25.0 276 2.3 2.6 -97052700.OUN 357 2.75 5907 18.0 -8.7 -37.7 6.4 7.8 17.6 17.5 23.9 271 1.9 3.7 -97042100.SGF 387 2.75 1773 9.4 -16.5 -45.7 7.4 8.1 23.3 25.4 23.9 405 1.4 2.0 -97041100.MAF 873 2.75 4076 11.9 -15.0 -45.9 8.2 8.5 20.8 23.7 30.7 260 3.3 2.1 -97032900.BNA 180 2.75 1618 11.1 -15.6 -42.6 7.4 7.4 18.1 25.2 15.3 389 1.3 3.0 -97012500.SIL 8 2.75 2563 13.0 -16.5 -46.0 7.5 8.2 18.3 18.3 25.8 145 1.8 2.8 -96092100.FTD 196 2.75 2870 16.4 -9.4 -37.2 6.5 7.4 15.7 26.4 32.6 136 1.5 -999.0 -96083000.DEN 1611 2.75 2478 11.7 -9.1 -36.2 7.8 7.3 17.6 26.2 28.9 86 1.3 2.3 -96080100.DEN 1611 2.75 3920 13.5 -7.8 -34.9 8.5 7.3 15.0 22.6 26.3 276 1.9 2.1 -96072400.DDC 791 2.75 3068 14.3 -11.1 -36.0 8.6 6.7 16.8 27.6 36.6 203 2.6 2.7 -96062500.AMA 1095 2.75 3778 13.9 -9.4 -33.2 8.5 6.4 7.0 22.9 28.2 123 2.2 1.9 -96061400.LBF 847 2.75 2384 12.4 -8.6 -36.2 6.5 7.4 12.0 15.4 25.0 102 0.6 2.2 -96061300.FFC 246 2.75 2727 13.7 -9.1 -36.5 5.7 7.4 12.9 12.9 13.1 152 0.6 1.0 -96061200.AMA 1095 2.75 3079 11.9 -8.8 -38.1 8.0 7.9 18.3 24.3 30.2 373 1.5 1.9 -96060300.SGF 394 2.75 2739 11.7 -15.9 -42.2 7.1 7.2 14.8 26.4 35.9 90 2.3 2.1 -96060200.JAN 91 2.75 1863 16.1 -7.5 -32.6 5.5 6.8 11.3 12.7 20.3 168 0.3 0.6 -96060100.ABR 397 2.75 2276 12.6 -13.4 -40.4 6.2 7.4 24.6 22.4 27.2 370 1.3 2.2 -96053000.MAF 873 2.75 3675 14.9 -7.0 -32.9 7.7 6.9 19.0 35.1 40.6 321 1.7 2.5 -96052600.MAF 873 2.75 3464 14.1 -6.2 -36.5 7.7 8.1 22.5 28.7 42.1 240 1.4 2.9 -96052500.AMA 1095 2.75 3927 13.5 -11.3 -36.6 9.1 6.9 16.4 20.3 4.9 101 2.6 1.9 -96051800.OAX 350 2.75 4523 15.3 -11.1 -39.7 8.8 7.8 12.9 16.0 21.2 68 2.3 -999.0 -96051700.UNR 1037 2.75 4365 14.8 -8.1 -37.0 8.0 7.8 15.0 25.5 28.7 219 2.3 2.5 -96042200.TOP 268 2.75 1574 10.9 -16.6 -42.6 7.3 7.2 14.6 45.6 54.3 145 1.3 2.3 -96042200.OUN 362 2.75 2260 12.7 -10.9 -36.6 5.9 7.0 18.5 38.3 48.8 500 1.2 2.3 -96031600.FFC 246 2.75 890 9.6 -19.2 -39.7 7.8 5.7 20.5 28.8 55.2 353 0.9 2.2 -95081800.BIS 503 2.75 5585 18.4 -7.0 -34.2 7.7 7.3 10.6 10.6 17.3 142 1.0 3.3 -95072400.AMA 1095 2.75 2225 13.3 -7.8 -30.1 8.5 6.0 13.1 21.6 25.1 124 1.0 2.9 -95071500.GRB 210 2.75 5409 19.0 -8.5 -30.8 8.1 5.9 8.0 12.1 9.0 69 1.5 3.0 -95071200.OKX 20 2.75 2900 13.9 -15.6 -43.2 6.9 7.6 8.1 12.7 13.6 48 1.3 2.4 -95070300.DDC 791 2.75 2905 14.2 -9.6 -38.9 6.8 7.9 12.3 18.2 21.4 111 1.1 2.3 -95070300.AMA 1095 2.75 3838 14.7 -11.5 -36.5 8.8 6.8 8.2 22.8 29.0 115 2.9 2.5 -95062800.LBF 847 2.75 2880 12.4 -10.1 -37.2 7.7 7.3 13.9 22.0 19.7 208 1.5 2.5 -95062100.OKX 20 2.75 3918 17.1 -9.8 -34.9 7.1 6.7 11.4 18.4 25.8 18 1.6 1.0 -95060300.AMA 1095 2.75 3024 12.4 -9.6 -36.5 8.2 7.2 15.7 22.4 37.2 346 1.6 2.0 -95052200.LBF 847 2.75 2027 10.4 -14.9 -42.1 7.4 7.4 18.7 28.3 33.3 221 1.6 2.1 -95051400.UMN 438 2.75 5278 16.5 -10.3 -38.0 6.9 7.5 22.3 28.0 26.2 211 3.3 3.2 -95042000.FTD 196 2.75 2621 14.6 -13.3 -38.5 7.7 6.8 25.8 39.5 59.2 498 2.3 2.4 -95040900.TOP 268 2.75 2836 10.7 -17.5 -44.5 9.2 7.5 16.5 21.4 31.9 120 2.6 1.9 -94070700.HON 392 2.75 3051 16.5 -8.8 -35.7 7.2 7.2 10.2 20.5 18.6 159 1.3 0.6 -94070200.OAX 350 2.75 5257 18.5 -10.1 -33.0 8.0 6.2 15.5 26.5 25.4 416 3.6 3.2 -94070100.STC 315 2.75 3701 14.3 -11.6 -39.6 7.3 7.6 19.0 27.2 25.1 399 2.7 2.7 -94062600.JAN 106 2.75 2842 16.1 -9.5 -35.0 6.4 6.8 12.4 24.0 32.8 130 1.3 0.9 -94062500.HON 392 2.75 1962 11.8 -10.8 -39.7 6.4 7.8 15.4 27.8 33.5 211 1.0 2.2 -94061900.JAN 91 2.75 3177 16.8 -7.5 -32.7 5.9 6.7 3.8 11.5 12.4 42 0.5 0.6 -94061800.AMA 1095 2.75 2676 11.9 -7.0 -33.1 8.2 6.9 10.7 11.0 11.3 171 0.5 1.6 -94061200.TOP 268 2.75 2320 13.9 -9.5 -36.5 6.6 7.3 15.8 23.9 24.4 117 1.1 0.9 -94061200.AMA 1095 2.75 4015 14.7 -8.0 -33.7 7.8 6.9 18.4 26.7 19.9 302 2.2 2.7 -94061100.AMA 1095 2.75 2164 12.3 -8.3 -36.1 7.3 7.5 16.6 19.5 20.3 229 0.7 2.8 -94060600.TOP 268 2.75 3953 16.5 -9.3 -35.1 8.1 6.9 15.4 16.1 27.7 394 1.5 2.5 -94060500.HON 392 2.75 3871 14.2 -11.6 -38.7 8.5 7.4 12.0 21.4 19.2 202 2.6 2.4 -94053000.SEP 399 2.75 5032 17.5 -10.6 -36.6 8.2 7.0 16.1 27.0 23.8 291 3.8 3.9 -94052500.OUN 362 2.75 3912 15.0 -11.5 -38.1 7.4 7.2 13.2 22.0 36.2 122 2.4 3.0 -94041100.UMN 438 2.75 2040 12.6 -16.5 -41.0 7.6 6.7 19.9 37.8 45.4 486 2.1 2.5 -94012700.GGG 124 2.75 2167 13.2 -15.9 -42.4 6.8 7.3 17.5 31.0 32.3 306 2.0 0.7 -93102000.DRT 313 2.75 3433 15.5 -8.9 -36.3 6.4 7.4 13.4 25.4 34.0 35 1.6 1.6 -93101900.GGG 124 2.75 3105 15.7 -9.8 -36.9 6.9 7.3 10.3 23.5 33.9 105 1.6 0.7 -93101300.CRP 14 2.75 4367 17.3 -8.6 -37.2 6.3 7.7 14.8 20.2 29.8 227 1.5 1.5 -93090400.IAD 85 2.75 2779 15.6 -5.9 -32.6 5.7 7.1 12.4 15.2 15.6 149 0.5 0.6 -93070700.DDC 790 2.75 5334 17.0 -6.0 -36.1 7.2 8.0 16.5 27.9 28.2 154 2.0 3.1 -93070700.AMA 1094 2.75 5327 17.0 -4.7 -32.2 7.8 7.3 11.4 21.3 20.0 127 1.6 3.8 -93070500.DDC 790 2.75 4186 17.1 -5.4 -31.1 6.7 6.8 16.6 30.6 34.9 146 1.3 1.2 -93062400.LBF 849 2.75 3944 16.0 -8.6 -37.5 8.1 7.7 18.1 21.9 33.8 178 2.0 2.8 -93062400.DEN 1611 2.75 3442 11.7 -9.6 -38.0 8.8 7.8 15.8 32.0 42.3 211 2.2 1.8 -93061900.AMA 1094 2.75 2140 12.8 -7.8 -33.2 7.0 6.7 14.4 22.7 23.3 146 0.8 1.9 -93051600.DDC 790 2.75 3614 12.8 -9.8 -40.4 6.6 8.3 12.6 19.4 23.7 161 1.4 2.5 -93050600.AMA 1094 2.75 4478 13.2 -13.6 -38.2 8.6 6.7 16.6 34.6 38.4 340 4.5 2.0 -93050100.AMA 1095 2.75 4085 11.6 -14.5 -42.9 8.1 7.8 15.3 25.7 15.8 234 3.4 1.9 -93042900.MAF 873 2.75 2435 11.7 -10.9 -36.0 7.1 6.8 20.8 29.3 37.4 551 1.4 2.2 -93042800.MAF 873 2.75 1494 10.4 -10.6 -38.7 6.9 7.6 12.9 19.6 25.8 150 0.6 1.8 -93042500.UMN 438 2.75 2317 11.4 -14.6 -42.2 6.9 7.6 18.2 25.2 33.1 198 1.6 2.4 -93042000.GGG 168 2.75 2342 12.4 -13.3 -42.9 8.0 8.1 17.5 26.7 28.4 156 2.0 2.7 -93040200.WAL 13 2.75 1625 10.9 -18.5 -46.2 7.3 7.7 26.8 30.7 48.4 200 1.5 2.4 -93033100.UMN 440 2.75 2598 11.1 -16.5 -43.6 6.4 7.5 19.7 29.7 28.9 117 2.0 2.1 -93033100.1M1 204 2.75 2471 11.9 -15.1 -43.9 7.2 8.0 17.8 30.2 27.1 54 2.1 2.8 -92101600.SEP 399 2.75 3654 14.6 -12.1 -37.5 7.7 6.9 12.6 16.4 22.7 227 1.8 2.9 -92073000.LBF 847 2.75 3544 15.0 -10.3 -38.2 7.9 7.5 22.0 25.7 33.8 335 2.4 3.0 -92062700.AMA 1095 2.75 3165 14.1 -10.0 -34.2 7.7 6.5 12.4 16.6 29.9 191 1.3 2.9 -92061900.DDC 791 2.75 2598 12.8 -8.3 -34.7 7.9 7.1 15.7 25.1 40.5 114 1.3 2.7 -92061900.BIS 504 2.75 1791 11.0 -14.4 -39.4 6.9 6.9 13.0 27.4 24.4 106 1.3 2.5 -92061300.AMA 1095 2.75 2821 14.7 -8.8 -34.4 7.2 6.9 12.0 19.1 36.4 165 1.1 2.7 -92061200.MAF 873 2.75 2387 13.8 -8.2 -32.3 7.4 6.4 13.3 26.7 34.6 178 1.3 2.0 -92060500.AMA 1095 2.75 2870 13.4 -9.4 -37.0 7.5 7.4 12.2 17.5 25.9 249 1.1 2.6 -92030600.1M1 172 2.75 2572 11.5 -21.1 -44.4 7.2 6.5 17.3 22.5 26.7 194 2.4 2.3 -92021500.UMN 438 2.75 1724 10.2 -16.9 -44.0 6.4 7.5 24.2 33.2 28.2 289 1.3 2.2 -91072200.HON 392 2.75 4474 19.3 -6.8 -31.8 7.2 6.7 11.1 17.3 24.1 198 1.2 -999.0 -91070500.GGW 696 2.75 2308 11.4 -9.9 -38.5 7.0 7.7 6.7 17.5 23.9 144 0.8 2.2 -91070500.BIS 504 2.75 2941 13.3 -9.3 -37.6 6.4 7.6 19.3 21.4 26.6 206 1.2 2.4 -91062000.HON 392 2.75 2691 13.9 -10.5 -37.0 7.0 7.2 16.1 22.1 20.0 282 1.4 1.2 -91061900.LBF 847 2.75 3600 13.0 -12.0 -40.0 8.6 7.6 13.5 15.2 20.9 219 1.7 2.6 -91061500.GRB 210 2.75 3430 17.6 -8.7 -32.3 6.7 6.3 21.7 13.9 17.0 161 0.9 0.6 -91061500.BIS 504 2.75 2379 13.0 -11.9 -35.8 6.6 6.5 13.2 22.5 25.2 152 1.3 2.6 -91060500.OVN 400 2.75 2813 14.6 -10.1 -31.5 6.5 5.7 8.4 17.1 19.6 177 1.0 3.1 -91053000.RAP 966 2.75 2814 10.9 -15.7 -43.2 8.1 7.6 13.0 14.5 28.4 159 1.4 2.0 -91053000.OVN 400 2.75 4446 16.8 -10.2 -36.3 6.8 7.0 14.3 18.2 19.0 31 1.8 2.7 -91052500.AMA 1095 2.75 3416 13.7 -10.5 -37.1 7.0 7.2 17.0 17.4 13.8 124 1.4 2.5 -91051800.UMN 438 2.75 3444 15.1 -11.0 -34.2 7.4 6.2 9.4 11.9 21.0 59 1.1 1.2 -91051700.UMN 438 2.75 3299 15.9 -10.6 -35.6 7.6 6.7 14.4 16.1 11.8 174 1.4 1.9 -91051200.RAP 966 2.75 4430 14.1 -11.0 -39.1 7.9 7.6 26.6 23.5 33.5 437 2.9 2.5 -91051100.AMA 1095 2.75 5629 15.6 -10.7 -37.8 9.0 7.3 14.5 16.5 21.5 314 2.9 2.5 -91042800.GGG 124 2.75 4554 18.9 -10.5 -37.7 7.2 7.3 15.4 29.5 19.6 140 3.0 2.2 -91042700.OUN 357 2.75 4751 16.6 -11.5 -41.7 7.0 8.2 20.6 23.6 26.4 376 2.9 3.7 -91042700.GGG 124 2.75 5164 18.9 -10.7 -38.1 8.2 7.5 12.4 18.9 27.6 209 2.8 2.7 -91041300.OUN 357 2.75 4063 14.1 -13.7 -42.3 8.0 7.8 17.1 22.0 25.1 205 3.2 2.9 -91040300.OUN 357 2.75 1560 10.1 -19.8 -43.3 7.3 6.6 15.1 22.6 41.7 275 1.3 1.5 -91032700.DDC 791 2.75 3132 12.4 -14.2 -40.5 8.2 7.2 18.9 40.7 44.0 160 2.9 2.1 -91032200.UMN 438 2.75 2632 11.5 -15.3 -44.0 7.0 7.9 18.8 33.0 35.3 371 2.1 2.5 -90090600.STC 315 2.75 4899 19.5 -6.8 -33.9 6.2 7.2 14.7 21.0 17.1 294 1.4 1.0 -90082800.SSM 221 2.75 5115 18.2 -8.5 -36.7 6.2 7.5 20.5 31.6 29.9 334 2.4 1.1 -90081100.LBF 847 2.75 3971 14.8 -9.0 -36.8 7.5 7.5 14.3 25.6 21.5 282 2.2 2.9 -90070700.BIS 504 2.75 3274 14.9 -7.5 -34.7 6.9 7.3 12.9 19.0 25.7 316 1.0 2.2 -90070300.BIS 504 2.75 6982 21.3 -6.3 -31.9 8.2 6.8 14.9 23.0 29.6 172 2.7 4.6 -90061900.LBF 847 2.75 7070 19.2 -6.1 -35.5 8.4 7.9 18.5 30.2 38.1 266 3.2 3.6 -90060200.STC 315 2.75 2697 13.4 -13.3 -39.7 8.5 7.2 10.4 18.6 17.2 132 1.8 2.2 -90060200.LBF 847 2.75 3719 13.6 -10.8 -39.9 7.9 7.9 16.4 15.6 29.4 89 1.6 2.4 -90053100.GGG 124 2.75 4743 19.3 -5.7 -33.3 6.1 7.3 21.5 27.2 25.7 317 1.4 0.7 -90052000.OUN 357 2.75 4565 15.3 -10.8 -39.0 7.1 7.6 12.1 13.7 14.7 94 1.6 3.1 -90051900.LBF 847 2.75 3954 12.1 -13.9 -42.1 8.6 7.8 16.2 25.1 24.6 398 3.4 2.0 -90051700.GGG 124 2.75 3234 17.5 -8.3 -36.2 7.2 7.4 17.6 24.7 35.1 304 1.5 0.6 -90050100.AHN 246 2.75 4557 14.9 -12.6 -41.5 7.7 7.9 19.7 14.7 9.3 92 2.1 3.4 -90042800.GGG 124 2.75 2263 12.9 -14.9 -41.0 6.6 7.1 12.8 14.1 25.3 84 1.0 2.8 -90041700.OUN 357 2.75 3717 13.6 -15.0 -44.3 8.3 8.1 17.2 11.5 20.5 152 1.7 3.8 -90031400.PIA 200 2.75 2115 12.4 -14.4 -41.2 6.9 7.4 15.3 18.1 24.1 206 1.1 2.6 -90021600.JAN 91 2.75 2047 15.2 -10.9 -40.4 6.6 8.0 18.9 20.9 34.6 124 1.0 -999.0 -89090400.LBF 847 2.75 4599 17.3 -8.6 -36.0 8.3 7.3 8.6 29.6 38.8 223 2.9 3.3 -89082900.STC 315 2.75 1959 14.6 -10.0 -35.2 6.8 6.8 18.0 26.3 44.7 147 1.1 1.1 -89082200.STC 315 2.75 3346 16.2 -11.1 -35.6 6.9 6.7 11.9 20.6 30.6 173 1.7 1.2 -89082200.OMA 400 2.75 4223 17.9 -8.3 -30.9 7.0 6.0 15.0 22.2 45.4 138 1.8 0.9 -89082200.HON 392 2.75 4160 15.6 -9.4 -38.2 6.9 7.8 14.8 22.9 28.9 107 2.0 3.3 -89081600.AMA 1095 2.75 2669 12.8 -7.1 -34.8 6.9 7.4 10.5 17.0 24.9 158 0.7 2.5 -89062600.RAP 966 2.75 2246 11.5 -13.8 -40.7 7.8 7.4 20.0 31.3 30.4 301 1.8 2.6 -89061300.AMA 1095 2.75 3611 14.4 -10.8 -36.6 8.1 7.0 9.9 15.8 22.1 79 1.6 3.0 -89060300.TOP 268 2.75 2623 13.7 -12.6 -38.3 7.0 7.0 12.4 19.5 39.7 118 1.5 2.0 -89060300.MAF 873 2.75 2291 11.9 -8.4 -34.6 7.6 7.0 13.3 19.3 32.2 147 0.8 2.2 -89060200.MAF 873 2.75 3193 14.1 -10.4 -34.9 7.9 6.6 8.5 24.5 27.4 104 2.1 2.8 -58042200.FWH 180 2.75 3338 13.3 -16.1 -39.0 7.8 6.3 25.5 37.0 49.4 276 3.6 2.4 -07021400.BMX 178 2.75 1032 9.9 -19.1 -44.7 7.0 7.1 19.5 20.7 36.3 245 0.7 2.4 -06082600.DDC 790 2.75 3488 16.5 -5.5 -31.7 6.5 6.9 17.6 20.2 26.5 141 0.8 0.8 -06081000.BIS 506 2.75 2589 13.0 -8.9 -35.7 7.5 7.2 8.8 19.1 18.8 147 1.0 2.6 -06062200.DDC 790 2.75 2406 12.7 -8.7 -34.9 8.1 7.0 11.0 21.1 24.9 175 1.1 2.4 -06050800.MAF 872 2.75 2440 11.9 -12.5 -36.9 8.0 6.6 22.1 33.3 51.2 327 1.9 2.3 -06050718.CHS 15 2.75 2580 12.9 -12.5 -40.1 6.0 7.5 15.9 17.7 18.8 177 1.1 2.0 -06050500.MAF 872 2.75 3709 11.5 -12.1 -42.7 8.1 8.4 21.7 27.6 34.4 372 2.7 1.7 -06050300.DRT 313 2.75 3549 13.7 -12.1 -37.1 8.5 6.8 5.1 14.2 19.0 74 1.7 2.1 -06042000.BMX 178 2.75 2242 13.1 -11.9 -37.1 7.1 6.8 11.3 21.7 27.0 122 1.3 2.1 -06041400.DVN 229 2.75 1524 11.2 -15.7 -35.1 8.3 5.6 15.8 30.6 30.3 263 1.4 3.4 -06031218.TOP 270 2.75 2814 12.6 -17.9 -44.3 8.5 7.3 33.9 44.8 54.9 723 3.5 2.7 -05092300.ILX 178 2.75 1858 14.1 -8.1 -33.3 6.9 6.7 11.5 21.5 16.8 121 0.7 0.8 -05051000.FWD 171 2.75 4841 15.5 -11.5 -42.1 6.7 8.3 9.5 18.0 25.9 152 2.2 2.9 -05042300.JAN 101 2.75 2558 13.6 -14.7 -39.7 7.1 6.9 19.9 28.5 34.1 183 2.3 2.7 -05042100.DDC 790 2.75 4722 13.2 -15.3 -43.5 8.6 7.7 15.2 16.1 14.9 174 3.1 2.1 -05041800.AMA 1099 2.75 1767 9.4 -17.3 -43.3 8.7 7.2 15.5 19.6 22.9 211 1.4 1.9 -05022200.FFC 244 2.75 1389 11.4 -16.3 -43.1 7.0 7.4 20.7 28.5 35.4 225 1.2 1.7 -04070500.DDC 790 2.75 3819 14.3 -10.3 -37.7 8.3 7.4 14.4 18.6 30.5 161 2.0 2.5 -04060300.FWD 171 2.75 4767 16.9 -11.1 -36.5 8.7 6.9 14.1 19.1 24.1 157 2.9 -999.0 -04053000.TOP 270 2.75 3882 15.9 -12.9 -39.3 8.7 7.1 14.8 22.4 15.3 295 3.2 3.2 -04051300.OUN 357 2.75 5740 16.8 -11.5 -40.5 8.2 7.9 12.4 15.2 20.9 131 2.7 3.6 -04051223.LMN 317 2.75 4076 15.9 -10.5 -40.3 7.4 8.1 21.9 22.7 30.4 304 2.3 2.4 -04051100.DNR 1625 2.75 3995 10.6 -12.9 -41.1 9.2 7.8 18.2 28.3 16.6 379 3.4 1.5 -04050600.WAL 12 2.75 1861 9.3 -21.3 -47.5 7.2 7.4 21.3 20.2 28.3 239 1.5 1.4 -04040500.CRP 13 2.75 2478 14.9 -12.1 -39.1 6.7 7.3 7.0 22.4 20.6 184 1.5 0.6 -04032800.OUN 357 2.75 2904 12.6 -15.9 -44.3 7.8 7.8 16.4 23.3 31.1 315 2.5 2.8 -04032718.DDC 790 2.75 4133 13.2 -17.3 -42.1 8.0 6.9 14.4 24.6 26.6 143 4.4 2.3 -03100600.AMA 1099 2.75 2542 12.2 -10.3 -39.3 6.4 7.8 12.9 24.1 30.2 50 1.2 2.5 -03091100.MAF 872 2.75 2808 13.3 -6.5 -32.5 6.8 6.9 7.4 10.3 9.0 80 0.4 1.4 -03091000.DDC 790 2.75 3620 14.8 -7.7 -34.7 7.5 7.2 11.3 12.1 15.8 233 0.8 3.0 -03061400.AMA 1099 2.75 3153 12.3 -13.3 -39.3 8.3 7.1 13.7 21.7 24.7 35 2.2 2.1 -03060500.AMA 1099 2.75 2647 11.9 -11.9 -36.9 7.6 6.8 13.1 23.0 28.5 167 1.5 2.1 -03051700.SHV 79 2.75 3995 16.3 -10.9 -37.3 7.4 7.2 19.6 23.2 13.9 242 2.4 2.7 -03051600.AMA 1099 2.75 3706 14.1 -10.3 -37.5 8.9 7.4 34.9 42.9 37.7 632 3.0 -999.0 -03051400.SHV 79 2.75 3920 16.7 -9.5 -38.5 7.2 7.8 19.3 27.2 37.0 389 2.3 0.8 -03051000.OUN 357 2.75 5328 16.8 -11.1 -38.1 8.3 7.3 16.8 27.5 34.8 182 4.3 3.6 -03050700.FWD 171 2.75 5303 17.8 -9.7 -37.7 7.1 7.5 8.4 30.4 36.2 126 3.2 3.5 -03050618.SGF 387 2.75 5492 15.6 -14.7 -43.9 7.7 8.0 17.8 32.0 40.6 313 5.5 2.8 -03050100.TOP 270 2.75 3922 13.0 -14.1 -43.5 7.8 8.1 13.9 17.2 19.6 117 2.3 2.7 -03042900.SGF 387 2.75 3399 13.1 -16.7 -43.3 8.5 7.3 4.8 5.0 19.6 53 1.1 2.8 -03042600.BMX 178 2.75 3921 14.2 -13.3 -41.1 6.2 7.6 26.6 35.8 33.5 89 2.8 2.7 -03042500.LZK 78 2.75 3423 13.8 -15.7 -43.1 7.6 7.6 20.0 20.9 31.0 212 2.8 3.3 -03040618.LZK 78 2.75 2556 13.1 -15.9 -41.3 7.6 7.0 28.4 35.1 38.9 600 2.6 3.1 -03031300.SHV 79 2.75 2901 13.5 -15.3 -43.1 7.1 7.7 11.0 17.1 24.1 162 1.7 2.0 -02081200.LBF 849 2.75 3735 13.3 -9.9 -37.1 8.7 7.3 10.5 13.1 11.8 222 1.3 2.1 -02072700.TOP 270 2.75 6406 19.3 -5.3 -32.5 6.9 7.1 9.1 18.2 19.3 131 1.4 2.6 -02072000.TOP 270 2.75 4986 17.5 -7.5 -32.9 7.3 6.8 8.5 10.0 12.7 197 0.9 2.7 -02062500.ABR 396 2.75 4208 15.1 -7.1 -37.7 6.8 8.2 11.1 19.1 19.3 20 1.3 3.1 -02062400.BIS 506 2.75 3559 16.0 -9.7 -34.1 6.8 6.6 25.2 28.0 24.8 298 2.1 2.4 -02061300.AMA 1099 2.75 3027 13.7 -8.5 -31.9 8.4 6.3 18.7 29.6 33.0 65 1.9 2.5 -02060500.AMA 1099 2.75 2947 13.2 -11.5 -38.3 7.6 7.3 17.9 32.1 45.0 309 2.2 2.7 -02052400.AMA 1099 2.75 4729 13.8 -13.3 -39.9 8.3 7.2 18.5 28.8 21.8 258 4.5 2.3 -02051800.DRT 313 2.75 5077 16.0 -10.5 -37.1 8.1 7.2 5.2 8.8 6.3 15 1.2 2.6 -01112418.BMX 178 2.75 2902 15.1 -11.3 -39.7 6.1 7.7 22.2 26.9 31.9 328 1.7 0.8 -01072500.GGW 700 2.75 1714 11.5 -11.3 -36.3 6.9 6.8 18.2 26.7 32.1 350 1.0 2.2 -01071900.BIS 506 2.75 5738 17.8 -9.9 -36.1 8.6 7.1 14.1 21.8 28.8 183 3.4 2.9 -01071900.ABR 396 2.75 5356 17.5 -10.5 -35.1 8.8 6.6 3.4 18.1 22.7 35 2.9 2.7 -01071800.INL 361 2.75 4580 17.0 -12.9 -37.7 7.8 6.7 11.8 11.9 12.8 154 1.8 0.8 -01070100.RAP 1029 2.75 3235 14.3 -10.7 -35.7 7.7 6.8 12.9 30.8 40.7 114 2.3 2.6 -01061900.MPX 287 2.75 5114 15.6 -11.9 -39.3 9.2 7.5 19.0 33.1 31.9 154 4.9 3.4 -01061700.TOP 270 2.75 4594 15.7 -13.7 -41.9 8.5 7.8 15.7 22.1 26.6 214 3.8 3.4 -01061700.LMN 317 2.75 4093 14.1 -10.7 -37.9 8.0 7.3 9.3 19.4 26.9 195 2.2 3.5 -01061400.OAX 350 2.75 4956 17.2 -11.3 -38.5 9.0 7.4 18.5 20.4 25.5 153 3.3 3.8 -01061000.ABR 396 2.75 3453 13.8 -12.1 -39.9 7.8 7.5 16.6 24.6 32.3 158 2.6 3.6 -01060800.DNR 1625 2.75 3440 13.9 -8.7 -36.7 7.2 7.6 7.4 25.3 21.9 -26 1.8 3.1 -01060600.AMA 1099 2.75 4665 14.9 -8.9 -36.7 7.2 7.5 11.9 15.8 15.6 191 1.5 2.3 -01052500.FFC 244 2.75 2338 11.7 -14.5 -43.1 6.4 7.9 19.6 18.1 21.4 240 1.1 2.5 -01050620.LMN 317 2.75 4496 15.4 -16.1 -43.1 7.3 7.5 7.3 11.5 20.9 60 2.0 3.1 -01042100.OAX 350 2.75 3283 12.4 -15.3 -43.1 7.7 7.7 23.5 28.1 32.7 282 3.1 2.4 -01040400.LZK 78 2.75 4223 15.2 -15.1 -42.1 8.5 7.4 11.9 18.1 24.8 105 3.2 3.1 -00121618.BMX 178 2.75 2219 13.2 -14.1 -42.7 6.7 7.9 25.0 32.9 45.8 266 1.8 0.9 -00072700.OAX 350 2.75 5048 18.5 -9.7 -35.3 8.0 6.9 16.7 21.8 23.2 215 2.8 2.6 -00072500.LBF 849 2.75 5901 17.1 -8.9 -38.1 8.5 7.8 22.2 24.5 29.4 162 3.5 2.9 -00072100.LBF 849 2.75 3073 15.3 -11.3 -37.5 7.8 7.1 16.9 26.5 39.4 223 2.3 2.0 -00071700.MHX 11 2.75 2929 15.1 -12.3 -36.1 7.2 6.4 7.9 18.2 29.9 81 1.5 2.3 -00071000.LBF 849 2.75 5871 18.1 -5.5 -32.5 7.8 7.2 10.7 14.3 19.9 146 1.2 3.5 -00071000.GGW 700 2.75 3180 15.6 -10.9 -35.1 7.0 6.5 23.2 18.4 13.5 248 1.5 2.6 -00062000.LBF 849 2.75 4028 14.9 -8.5 -37.9 6.8 7.9 11.9 18.8 23.9 96 1.4 3.0 -00061400.AMA 1099 2.75 5758 16.5 -4.9 -34.9 7.6 7.9 19.9 23.8 32.0 244 1.8 2.5 -00061200.BIS 506 2.75 2000 11.3 -13.1 -39.9 7.5 7.4 10.2 22.0 28.0 306 1.2 2.5 -00052700.OUN 357 2.75 5870 18.3 -10.1 -37.9 8.4 7.5 12.8 21.5 32.8 117 3.5 4.0 -00051300.DTX 329 2.75 4524 16.9 -8.5 -37.3 7.7 7.7 20.2 24.1 18.5 328 2.3 2.4 -00022500.AMA 1099 2.75 3614 10.3 -18.5 -46.1 8.5 7.7 13.1 26.8 48.5 107 4.0 1.7 -98071100.DDC 790 2.50 4323 18.9 -4.3 -29.9 6.2 6.8 16.0 12.7 15.2 230 0.6 0.6 -96072200.LBF 847 2.50 4756 18.4 -6.5 -34.7 7.2 7.5 19.0 20.0 29.4 94 1.4 2.1 -96071900.GRB 210 2.50 4746 20.7 -7.5 -31.3 6.4 6.3 20.0 26.3 26.2 164 1.9 0.7 -96062100.DEN 1611 2.50 5603 15.2 -8.1 -36.1 9.6 7.6 8.8 27.5 33.4 155 3.8 2.2 -96061200.LBF 847 2.50 2310 11.7 -9.9 -37.5 7.5 7.4 12.7 16.7 22.2 122 0.8 2.4 -96060300.AMA 1095 2.50 2356 11.0 -10.5 -39.7 6.9 7.9 18.0 27.6 31.6 256 1.2 2.0 -96060100.DDC 791 2.50 2888 13.3 -10.9 -38.5 8.3 7.4 13.9 13.3 19.3 111 1.1 2.5 -96051800.MPX 287 2.50 4406 16.3 -8.9 -38.5 8.2 8.0 20.7 13.0 23.4 259 1.4 3.4 -96042200.FTD 196 2.50 1872 12.0 -12.6 -38.7 8.2 7.1 18.3 27.1 34.0 298 1.5 -999.0 -96030700.TLH 26 2.50 2615 15.4 -10.4 -39.0 6.0 7.7 20.7 20.9 23.7 320 1.1 0.6 -95081212.MPX 287 2.50 3361 19.1 -6.3 -31.3 7.2 6.7 23.0 20.6 36.8 164 1.0 -999.0 -95061600.TFX 1130 2.50 3142 13.0 -12.0 -37.7 8.4 7.0 23.8 27.7 35.6 277 2.7 2.3 -95060700.DEN 1611 2.50 3137 12.3 -10.8 -35.7 9.2 6.8 20.7 37.2 35.9 284 2.4 2.0 -95052912.MAF 873 2.50 1617 13.0 -11.3 -37.2 7.5 7.0 13.7 27.6 22.0 284 1.1 1.9 -95051900.GSO 277 2.50 1758 13.4 -11.8 -35.2 7.9 6.3 23.6 25.3 27.1 83 1.3 -999.0 -95051600.MAF 873 2.50 3261 13.6 -7.8 -34.0 8.4 7.1 10.3 21.7 28.8 134 1.5 1.8 -95050900.TOP 268 2.50 1495 10.0 -19.3 -39.2 6.9 5.6 21.2 19.3 22.8 126 1.0 1.2 -95050800.LCH 5 2.50 3259 17.9 -9.9 -35.6 7.1 6.9 10.2 16.7 31.1 119 1.2 0.6 -95050800.FTD 196 2.50 2700 16.5 -10.4 -38.9 7.7 7.7 24.5 30.8 30.8 407 1.9 0.8 -94062600.TOP 268 2.50 4265 16.4 -8.6 -35.2 8.4 7.1 21.6 25.2 45.9 418 2.5 2.9 -94032800.AHN 246 2.50 2627 14.4 -10.5 -35.7 6.2 6.8 30.4 34.5 24.7 518 1.5 0.7 -93070300.TOP 270 2.50 4019 18.5 -7.2 -31.5 7.1 6.5 15.2 15.8 16.4 202 1.0 0.7 -93070200.HON 392 2.50 2619 14.6 -11.3 -39.6 7.0 7.7 12.6 28.3 40.3 143 1.8 0.8 -93061400.TOP 270 2.50 4195 16.5 -8.5 -35.1 7.7 7.1 10.7 12.5 17.8 65 1.1 2.8 -93033000.DRT 314 2.50 2680 12.7 -13.4 -39.4 8.2 7.1 26.0 39.6 44.0 411 2.4 2.8 -92070200.DEN 1611 2.50 2313 11.7 -11.2 -35.2 8.0 6.5 20.0 27.6 29.9 362 1.6 2.5 -92041600.AMA 1095 2.50 3362 11.1 -13.4 -40.9 7.6 7.5 12.0 16.0 17.8 127 1.5 1.7 -92030400.SEP 399 2.50 2676 12.7 -15.3 -44.8 7.7 8.1 9.2 20.1 27.2 133 1.9 2.3 -91080200.CAR 191 2.50 1891 12.3 -13.7 -41.6 6.3 7.6 11.9 19.6 33.3 223 0.9 1.8 -91071800.STC 315 2.50 4956 18.2 -8.7 -32.0 7.3 6.3 21.9 18.7 20.1 104 1.9 2.5 -91053100.DEN 1611 2.50 3551 12.0 -12.1 -39.1 9.5 7.4 10.7 27.3 45.8 149 3.1 1.9 -91052700.LBF 847 2.50 2669 11.9 -13.4 -38.4 7.9 6.8 13.0 13.9 32.3 35 1.1 2.1 -91051200.AMA 1095 2.50 4539 14.3 -10.8 -37.8 8.5 7.3 16.7 12.4 14.9 208 1.7 2.3 -91050800.MAF 873 2.50 3415 11.2 -14.8 -41.4 8.4 7.3 25.4 31.1 36.7 280 3.1 1.6 -91042100.AYS 44 2.50 2563 11.8 -16.9 -41.9 7.4 6.9 10.3 13.4 30.0 76 1.2 1.7 -91041900.SEP 399 2.50 5996 17.6 -13.2 -38.3 7.4 6.8 13.0 13.5 44.8 24 2.6 3.1 -90083100.CHS 13 2.50 2477 16.0 -8.5 -33.3 6.5 6.6 8.3 17.0 17.7 67 0.8 0.6 -90070200.GSO 277 2.50 3963 14.8 -10.0 -35.9 7.2 7.0 10.7 26.0 16.3 100 2.4 2.2 -90062200.ALB 86 2.50 1833 12.6 -14.1 -41.8 6.7 7.6 20.6 32.5 29.1 203 1.4 1.6 -90061500.DDC 791 2.50 4667 16.0 -6.5 -35.9 7.9 7.8 15.7 28.4 30.1 306 2.1 2.7 -90060700.DEN 1611 2.50 2393 10.9 -8.2 -36.5 9.0 7.6 19.6 26.3 23.9 170 1.2 1.6 -90060300.PAH 126 2.50 3663 17.8 -7.6 -36.2 7.0 7.6 29.8 24.0 25.9 367 1.5 0.6 -08110600.OUN 357 2.50 1623 11.4 -12.5 -39.9 6.9 7.5 24.8 29.8 32.7 317 1.0 2.4 -06071123.LMN 317 2.50 2996 16.5 -5.9 -29.5 6.7 6.2 9.4 12.6 11.2 110 0.5 0.6 -06062500.DNR 1625 2.50 987 7.1 -11.5 -38.9 8.9 7.4 12.5 26.1 26.5 -172 0.7 0.9 -06061400.RAP 1029 2.50 2691 11.5 -7.7 -35.5 8.3 7.5 15.3 17.3 24.5 248 0.8 1.6 -06052600.SGF 387 2.50 3409 13.9 -9.5 -39.1 6.5 8.0 18.8 18.9 23.2 262 1.3 2.5 -06050900.JAN 101 2.50 3303 16.1 -13.3 -38.7 7.3 6.9 14.9 28.4 39.9 170 2.8 1.9 -05050700.MAF 872 2.50 3257 10.7 -12.3 -41.3 8.0 7.9 11.2 20.3 24.6 48 1.7 1.6 -05050322.XMR 3 2.50 2165 13.4 -13.9 -38.9 7.6 6.8 21.5 23.3 41.5 82 1.7 1.2 -04102400.JAN 101 2.50 1938 15.8 -6.9 -33.5 5.3 7.1 19.3 30.8 27.8 328 0.6 0.6 -04091500.LBF 849 2.50 1474 12.8 -10.7 -38.3 8.0 7.4 20.5 35.4 39.8 306 1.0 -999.0 -04080700.ABR 396 2.50 2792 13.1 -9.3 -36.7 6.7 7.4 12.1 21.0 25.9 240 1.1 2.5 -04040400.EPZ 1252 2.50 4482 12.1 -17.9 -46.3 8.2 7.9 11.6 29.1 25.4 203 5.1 2.1 -04032718.OUN 357 2.50 2825 12.6 -14.9 -42.3 7.3 7.6 11.5 21.1 32.3 199 2.0 2.1 -03062200.RAP 1029 2.50 3380 10.6 -13.7 -39.5 8.0 7.1 18.7 27.5 42.2 189 2.6 1.5 -03051500.SHV 79 2.50 4260 16.8 -9.9 -36.1 6.8 7.1 16.3 33.7 42.9 246 2.5 0.8 -02072500.ABR 396 2.50 3995 15.0 -11.5 -38.9 7.9 7.5 13.8 28.3 28.6 207 3.2 3.0 -02051700.AMA 1099 2.50 5036 13.8 -12.7 -40.5 8.7 7.6 17.4 21.9 26.5 216 3.9 2.2 -02041900.DVN 229 2.50 2861 12.3 -14.5 -39.9 8.2 7.0 15.9 14.1 20.0 213 1.4 2.5 -02041212.AMA 1099 2.50 2907 12.2 -13.7 -42.7 7.5 7.9 14.6 20.4 25.1 184 1.8 2.8 -02040300.JAX 9 2.50 3327 14.8 -14.3 -41.7 7.2 7.4 11.8 11.5 30.9 80 1.3 1.5 -01101000.DDC 790 2.50 3299 12.9 -9.7 -40.3 6.4 8.3 16.4 18.8 18.3 275 1.2 2.5 -01082400.AMA 1099 2.50 4318 15.4 -6.7 -34.3 7.4 7.4 21.0 24.0 28.1 158 1.7 2.8 -01070500.LBF 849 2.50 3571 14.5 -7.7 -36.3 7.7 7.6 17.1 26.0 27.0 313 1.8 2.9 -01070400.RAP 1029 2.50 3145 13.2 -11.1 -37.9 8.3 7.3 12.9 25.2 26.1 144 2.3 2.6 -01052620.LMN 317 2.50 4355 14.1 -13.5 -40.9 6.4 7.5 20.2 27.3 33.2 233 3.3 2.9 -01052500.BMX 178 2.50 2388 11.9 -14.9 -43.1 6.7 7.7 23.5 29.2 27.4 436 1.8 2.7 -01050400.MAF 872 2.50 3866 13.7 -11.3 -36.7 7.2 6.9 11.4 12.8 33.8 101 1.3 2.7 -01050100.OAX 350 2.50 2265 10.4 -16.9 -44.5 7.7 7.7 19.2 17.4 17.0 226 1.3 2.2 -01042200.DDC 790 2.50 3749 13.3 -12.1 -41.1 7.3 7.9 24.2 33.4 45.3 510 2.8 2.7 -01041700.MAF 872 2.50 4552 13.9 -12.1 -39.1 7.5 7.3 8.0 16.2 30.6 100 2.2 2.2 -00091100.MPX 287 2.50 4554 16.6 -10.3 -39.5 7.0 7.9 18.4 22.0 24.0 271 2.4 3.2 -00080500.BIS 506 2.50 4830 17.0 -8.7 -35.1 6.9 7.2 4.0 17.2 22.9 86 1.6 3.3 -00070600.LBF 849 2.50 5506 18.2 -7.1 -32.3 8.3 6.6 11.8 25.3 35.5 155 2.6 3.5 -00070200.ABR 396 2.50 5952 17.8 -10.3 -38.1 8.4 7.5 8.1 12.2 23.4 147 2.0 3.9 -00062400.OAX 350 2.50 4783 17.5 -8.7 -35.5 7.2 7.2 14.9 18.7 28.2 195 1.8 2.3 -00061000.RAP 966 2.50 3610 13.2 -8.1 -37.9 7.8 8.0 11.9 14.3 21.1 70 1.0 2.1 -00052300.MHX 11 2.50 3613 15.1 -13.5 -41.7 6.5 7.7 10.5 15.3 26.5 79 1.6 2.4 -00051200.DVN 229 2.50 4865 15.6 -8.1 -39.3 7.4 8.4 19.3 24.8 24.9 225 2.3 3.4 -00050100.FWD 196 2.50 3593 14.3 -13.1 -41.5 7.2 7.8 19.0 17.3 18.5 401 1.9 1.7 -00032700.SGF 387 2.50 1766 9.8 -18.3 -45.1 7.5 7.4 21.4 34.3 43.9 350 1.7 2.2 -00021400.LZK 165 2.50 2091 10.7 -20.3 -45.7 6.4 7.1 22.2 21.1 24.5 245 1.5 2.1 -00061300.OAX 350 2.25 5453 17.7 -11.5 -38.7 8.5 7.3 12.9 15.8 19.3 206 2.7 4.0 -99053100.TOP 270 2.00 2215 13.1 -10.9 -39.7 6.8 7.8 14.7 18.6 12.2 189 1.0 1.4 -99050400.DRT 307 2.00 5609 17.4 -10.1 -40.7 7.5 8.3 21.2 40.5 38.9 342 3.7 4.6 -98063000.BUF 215 2.00 2615 14.5 -10.5 -38.3 6.1 7.5 8.5 23.6 28.2 86 1.3 1.7 -98062500.APX 448 2.00 3453 15.8 -11.3 -34.3 7.3 6.2 21.9 28.9 35.4 348 2.5 3.3 -98033100.FWD 196 2.00 2873 13.3 -14.3 -40.7 7.2 7.2 17.6 29.6 57.5 93 2.5 2.9 -90091400.STC 315 2.00 2123 13.1 -10.9 -38.5 7.4 7.5 23.2 27.8 39.0 564 1.4 -999.0 -90072600.TBW 13 2.00 4330 18.4 -6.3 -31.8 5.7 6.8 6.3 3.5 8.5 7 0.4 0.6 -90061400.PIA 200 2.00 3570 18.1 -7.0 -32.9 7.0 6.9 9.5 16.5 23.4 134 0.9 0.6 -90060900.PIT 360 2.00 4095 16.7 -9.5 -35.8 6.7 7.0 18.8 18.1 13.6 236 1.5 1.0 -89103000.OUN 357 2.00 2163 12.5 -14.7 -42.6 6.6 7.6 13.1 18.0 18.1 195 1.1 1.6 -89082100.LBF 847 2.00 3307 14.8 -9.1 -35.7 7.1 7.1 8.0 28.0 44.7 83 1.9 3.0 -89071100.HON 392 2.00 3126 15.7 -7.0 -31.9 6.9 6.6 12.3 14.6 18.6 151 0.7 1.2 -89052800.ELP 1199 2.00 2569 11.2 -6.8 -34.2 8.0 7.3 14.9 11.3 17.1 232 0.4 1.4 -06090100.DDC 790 2.00 1972 12.2 -7.7 -34.9 7.1 7.2 13.9 15.6 27.4 363 0.5 1.6 -06062700.ILX 178 2.00 2025 12.2 -15.7 -43.1 6.4 7.6 5.2 3.5 11.7 15 0.4 1.2 -06061400.TFX 1131 2.00 2827 12.3 -9.7 -36.9 8.1 7.3 14.3 15.9 28.9 65 1.0 2.1 -06052400.DDC 790 2.00 1607 10.2 -8.7 -36.9 7.6 7.6 17.0 22.4 19.3 189 0.6 1.8 -06051600.MFL 5 2.00 2473 15.8 -11.1 -35.3 6.8 6.6 18.7 26.6 21.2 227 1.6 0.6 -06050800.DDC 790 2.00 1674 9.5 -17.1 -43.7 8.9 7.4 16.1 16.8 27.8 248 1.1 2.6 -06041600.TOP 270 2.00 2191 12.2 -12.9 -37.7 8.2 6.7 28.5 37.2 42.6 533 1.8 2.9 -06040700.TOP 270 2.00 2249 11.0 -15.1 -41.9 7.4 7.4 15.8 35.7 27.3 206 1.8 2.1 -05050900.LMN 317 2.00 2971 12.0 -16.1 -42.3 7.8 7.2 15.9 15.1 29.6 290 1.6 2.2 -05050700.LBF 849 2.00 3058 9.7 -14.3 -42.7 8.2 7.9 6.1 12.5 21.7 135 1.2 1.4 -05022100.SGF 387 2.00 1128 9.1 -18.9 -48.7 6.8 8.3 17.1 27.7 36.6 97 1.0 1.9 -04091200.GRB 214 2.00 2256 12.3 -14.9 -39.7 7.2 6.8 11.6 14.7 24.8 64 1.0 1.0 -04082400.BIS 506 2.00 2596 13.4 -11.1 -36.5 7.6 6.9 16.4 21.3 22.3 208 1.5 2.2 -04072300.TOP 270 2.00 3276 16.0 -7.7 -31.5 6.4 6.3 11.4 15.8 19.6 158 0.8 0.7 -04062400.GRB 214 2.00 1604 10.4 -16.9 -45.3 6.3 7.9 16.4 25.3 36.9 128 1.1 2.4 -04052200.DDC 790 2.00 3809 13.5 -9.7 -37.9 8.1 7.6 20.3 21.0 27.0 297 2.0 2.2 -04043000.JAN 101 2.00 1469 13.6 -12.7 -38.7 6.5 7.0 18.1 27.4 22.8 184 1.1 0.6 -03051900.TBW 13 2.00 3797 17.1 -10.9 -35.3 6.8 6.6 4.0 5.9 5.0 -4 0.6 1.0 -02062600.MPX 287 2.00 6228 19.6 -9.7 -37.1 7.1 7.4 9.2 18.6 21.8 120 2.6 3.2 -02061300.DVN 229 2.00 3501 17.3 -11.9 -35.7 7.4 6.5 10.0 26.3 38.7 100 2.6 1.1 -02052800.LZK 78 2.00 3284 15.1 -12.3 -37.7 6.5 6.9 2.6 4.4 12.3 13 0.6 0.6 -02041800.OAX 350 2.00 2113 11.4 -14.5 -43.5 7.6 8.0 24.0 33.9 35.5 376 1.7 2.2 -01101000.OUN 357 2.00 3485 15.6 -12.9 -39.9 7.9 7.3 23.9 24.4 28.2 447 2.8 2.5 -01090800.TOP 270 2.00 4174 17.8 -11.3 -34.9 8.1 6.4 24.5 26.2 26.7 274 3.2 1.7 -01090800.OUN 357 2.00 4351 17.6 -8.7 -33.7 7.8 6.7 21.8 26.1 21.2 151 2.5 2.3 -01082400.DDC 790 2.00 4283 16.4 -7.5 -33.9 7.7 7.0 11.9 14.7 16.3 77 1.2 3.1 -01082300.TOP 270 2.00 4361 16.7 -9.7 -33.7 7.6 6.5 13.6 9.9 23.0 192 1.0 2.3 -01072000.RAP 1029 2.00 4486 15.1 -8.7 -35.5 8.4 7.2 10.9 15.4 26.3 71 1.6 2.4 -01071300.GGW 700 2.00 3042 14.5 -10.1 -36.3 8.1 7.1 7.9 16.5 34.2 19 1.3 3.5 -01063000.FWD 171 2.00 4122 16.8 -9.7 -36.7 6.9 7.3 9.2 11.2 19.2 133 1.0 1.6 -01062100.DNR 1625 2.00 2544 10.8 -11.5 -39.3 7.5 7.5 20.5 21.4 23.2 192 1.2 2.1 -01053100.LCH 10 2.00 3988 17.4 -8.3 -37.7 7.0 7.9 0.8 8.3 13.9 8 0.6 2.4 -01053100.FWD 171 2.00 4571 15.8 -12.3 -40.5 8.7 7.7 13.7 12.4 20.6 106 2.0 3.9 -01053000.DDC 790 2.00 2892 15.2 -12.1 -35.1 8.0 6.2 14.8 19.5 26.6 388 1.8 1.8 -01052800.OUN 357 2.00 4910 16.5 -10.7 -40.3 7.6 8.0 16.9 29.7 38.8 113 3.5 3.1 -01052700.DDC 790 2.00 2853 11.3 -12.1 -40.1 6.7 7.6 19.3 30.6 37.1 184 1.7 1.8 -01051200.OUN 357 2.00 3098 13.2 -13.9 -40.5 7.1 7.3 8.7 10.0 10.8 132 1.0 2.1 -01050702.LZK 78 2.00 2759 14.2 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.3 2.0 -01050700.SGF 387 2.00 4025 14.5 -13.7 -42.3 6.1 7.9 10.5 8.8 17.0 202 1.0 3.1 -01050600.FWD 171 2.00 3092 15.4 -12.7 -38.7 6.8 7.1 19.4 32.7 34.4 170 2.3 2.1 -01042200.MAF 872 2.00 4543 13.7 -12.3 -39.7 8.4 7.5 12.3 27.4 36.2 164 4.1 2.2 -01042200.AMA 1099 2.00 6059 14.1 -15.3 -41.1 9.2 5.4 16.6 35.7 38.3 320 7.4 3.3 -00072300.LBF 849 2.00 2926 13.2 -11.5 -38.1 7.1 7.2 13.6 25.2 27.3 91 1.9 2.8 -00071500.BIS 506 2.00 5132 16.5 -9.5 -35.1 8.1 6.9 14.6 27.6 34.1 152 3.4 2.7 -00071100.GGW 700 2.00 3230 14.2 -11.3 -38.9 6.9 7.5 16.9 30.1 48.1 88 2.2 3.0 -00061500.JAX 9 2.00 4801 17.9 -8.7 -34.3 6.4 6.9 3.6 6.2 13.3 55 0.6 1.1 -00061300.LBF 849 2.00 4790 13.9 -9.9 -37.9 8.3 7.5 9.9 16.6 18.6 159 2.1 2.0 -00061200.AMA 1099 2.00 5720 16.8 -10.3 -34.7 8.3 6.6 15.7 16.1 28.7 88 2.6 2.7 -00032800.JAX 9 2.00 2135 12.5 -14.5 -43.3 6.3 7.9 25.7 29.1 24.7 268 1.6 0.9 -00031600.LMN 317 2.00 1478 9.5 -17.3 -45.5 7.1 7.8 12.9 22.1 10.9 164 1.0 2.2 -00030300.FWD 196 2.00 2589 12.3 -14.3 -41.7 6.2 7.5 20.2 33.4 29.1 239 1.8 2.7 -98062500.FFC 244 1.75 3224 15.8 -8.9 -34.3 7.3 6.8 5.6 4.2 9.9 54 0.5 0.6 -97100900.OUN 357 1.75 3628 16.5 -7.5 -35.9 6.0 7.5 16.6 20.0 29.9 205 1.1 0.8 -94071700.HAT 4 1.75 2973 16.5 -6.0 -31.3 5.7 6.7 4.4 5.9 3.1 33 0.2 0.6 -94071700.1M1 172 1.75 3339 17.7 -6.4 -31.8 5.8 6.7 19.1 12.5 11.3 164 0.5 0.6 -94070100.1M1 172 1.75 4820 18.6 -8.1 -33.0 6.1 6.7 12.6 20.0 18.5 342 1.5 1.0 -94062600.PBI 6 1.75 4199 17.7 -9.1 -34.2 6.6 6.7 5.2 4.9 6.6 10 0.6 1.8 -92051500.1M1 172 1.75 2877 13.3 -11.3 -39.9 6.4 7.8 7.9 11.4 16.3 54 0.7 1.5 -91060600.RAP 966 1.75 2001 13.1 -11.5 -36.7 7.1 6.8 11.9 13.2 19.7 170 0.7 1.4 -91060600.JAN 91 1.75 3344 16.3 -9.1 -33.5 6.8 6.5 3.1 9.5 9.6 12 0.6 0.6 -91053100.AHN 246 1.75 3505 16.3 -6.9 -32.1 5.9 6.7 3.2 3.9 4.1 15 0.3 0.6 -91051700.GGG 124 1.75 5081 18.4 -10.4 -36.4 7.5 7.0 10.5 7.9 11.2 157 1.0 0.9 -91051300.HON 392 1.75 3615 14.7 -9.5 -38.2 7.2 7.7 13.0 14.2 22.7 97 1.1 2.8 -91051300.BIS 504 1.75 1867 13.8 -11.5 -36.7 6.8 6.8 15.8 26.9 19.8 -79 1.3 0.7 -91032700.DAY 298 1.75 1310 10.7 -13.1 -42.1 6.4 7.9 24.3 30.2 30.6 531 0.8 1.8 -90091100.AHN 246 1.75 2857 15.1 -8.6 -34.0 5.9 6.8 6.3 7.9 7.6 80 0.4 0.6 -90090200.MAF 873 1.75 3597 14.9 -6.2 -32.1 6.8 6.8 7.5 17.2 18.3 58 0.8 2.5 -90082600.HON 392 1.75 5529 17.9 -11.5 -38.5 9.1 7.4 9.9 14.7 28.6 156 2.7 -999.0 -90082600.BIS 504 1.75 3187 13.7 -13.2 -42.0 8.6 7.9 13.2 22.2 23.1 190 2.6 2.5 -90082400.OVN 400 1.75 5016 18.7 -7.4 -31.7 6.8 6.5 9.4 7.4 14.7 100 0.6 0.7 -90082100.AMA 1095 1.75 2833 14.6 -5.7 -30.1 6.6 6.5 10.6 11.7 11.3 75 0.4 1.2 -90081500.DDC 791 1.75 3012 15.1 -6.6 -32.5 5.6 6.9 9.9 9.0 15.8 59 0.3 0.6 -90081000.AHN 246 1.75 2234 14.9 -9.4 -35.2 6.2 6.9 6.4 13.3 26.7 33 0.6 0.8 -90080200.LCH 5 1.75 3223 18.4 -7.3 -32.2 6.4 6.6 3.1 6.5 2.0 14 0.3 0.6 -90073100.GGG 124 1.75 3254 16.1 -7.5 -31.9 6.4 6.5 1.2 7.9 5.4 3 0.4 0.6 -90072700.AMA 1095 1.75 3104 14.3 -5.8 -31.4 7.3 6.8 11.1 7.7 7.9 117 0.3 2.2 -90072600.OUN 357 1.75 3546 16.6 -6.8 -32.6 6.2 6.8 11.1 10.8 14.7 206 0.5 0.7 -90072100.ABQ 1619 1.75 1327 10.9 -5.9 -28.5 8.3 6.1 9.8 7.9 14.5 145 0.1 1.3 -90071800.LBF 847 1.75 3138 12.3 -7.7 -36.8 8.2 7.8 10.0 17.7 16.6 115 1.0 1.6 -90071700.FNT 236 1.75 1393 11.9 -12.5 -40.9 6.5 7.7 13.2 15.5 25.3 176 0.5 0.6 -90071400.ABQ 1619 1.75 1588 10.4 -9.4 -32.2 8.7 6.2 4.4 18.9 32.6 70 0.6 1.2 -90071300.CRP 12 1.75 1658 13.3 -6.5 -31.6 6.5 6.7 14.6 12.8 9.3 121 0.3 0.6 -90071100.CKL 145 1.75 2544 15.4 -8.1 -32.3 6.4 6.4 2.1 5.1 4.6 9 0.3 0.6 -90070900.GRB 210 1.75 2962 16.9 -6.5 -31.5 6.5 6.6 12.1 18.2 22.7 82 0.7 0.6 -90070500.LCH 5 1.75 3315 17.6 -8.5 -32.0 6.6 6.3 11.6 15.3 2.5 58 0.9 0.6 -90061800.PIA 200 1.75 4567 19.5 -8.1 -33.4 7.4 6.7 14.1 17.0 25.7 94 1.5 1.0 -90061300.STC 315 1.75 2789 16.2 -10.4 -33.4 7.2 6.2 14.2 36.6 42.0 139 1.8 0.7 -90061100.CHS 13 1.75 4050 17.7 -8.1 -33.2 6.6 6.7 6.4 8.1 19.1 102 0.6 0.6 -90061000.OUN 357 1.75 3242 15.1 -8.5 -33.0 7.8 6.6 10.9 10.1 1.3 21 0.7 2.5 -90061000.IAD 85 1.75 2818 14.9 -9.2 -34.3 6.5 6.7 18.0 16.4 19.3 175 0.9 0.6 -90052800.SIL 8 1.75 3916 18.0 -10.0 -34.5 6.8 6.6 10.4 19.3 10.6 48 1.7 0.8 -90052300.HON 392 1.75 1984 10.9 -14.0 -42.8 7.2 7.9 15.0 22.3 33.6 107 1.2 2.4 -90052100.UMN 438 1.75 3661 14.8 -13.1 -43.5 7.6 8.3 15.3 15.4 23.7 181 1.8 3.4 -90052100.HAT 4 1.75 2891 15.8 -9.7 -37.4 5.6 7.5 12.4 13.8 19.5 182 0.7 0.6 -90051900.SEP 399 1.75 3246 17.0 -9.1 -34.7 6.6 6.8 15.6 20.9 27.2 387 1.3 0.6 -90051600.IAD 85 1.75 2004 13.4 -14.0 -39.9 7.0 7.1 12.7 16.7 27.7 102 1.0 -999.0 -90051200.SEP 399 1.75 2282 13.6 -9.2 -37.7 6.9 7.7 14.5 34.8 47.4 134 1.3 -999.0 -90050600.OUN 357 1.75 836 7.6 -20.1 -41.8 7.2 6.0 5.8 18.3 48.8 30 0.6 1.4 -90042900.AYS 44 1.75 2333 13.0 -12.2 -40.9 6.2 7.8 19.1 30.6 23.2 243 1.5 2.3 -90042600.DRT 314 1.75 3699 14.6 -13.8 -39.4 8.1 7.0 11.1 25.7 33.2 101 3.4 4.3 -90042200.OUN 357 1.75 2748 11.1 -13.3 -46.8 6.6 9.3 7.3 12.2 14.9 48 0.8 2.0 -90040200.BRO 7 1.75 3494 16.2 -9.3 -36.7 7.1 7.4 15.2 25.7 37.2 65 1.9 0.9 -90031300.OUN 357 1.75 3211 12.7 -13.6 -43.5 7.8 8.2 19.4 24.2 18.1 286 2.5 2.8 -90031000.AMA 1095 1.75 2468 11.1 -16.0 -40.7 8.6 6.8 9.9 13.1 18.2 106 1.2 1.9 -90022800.MAF 873 1.75 607 9.7 -16.2 -42.9 6.6 7.4 5.1 16.4 23.8 55 0.3 1.2 -89090800.DEN 1611 1.75 1350 10.1 -6.8 -33.1 8.3 7.1 15.4 24.1 24.0 366 0.5 2.0 -89090200.1M1 172 1.75 3818 18.3 -4.8 -29.4 6.1 6.5 8.2 16.2 14.1 64 0.7 0.6 -89083100.DDC 791 1.75 2956 16.5 -5.7 -31.4 6.6 6.9 13.3 13.6 22.5 346 0.5 0.8 -89083000.OUN 357 1.75 3864 17.3 -5.6 -30.2 6.0 6.5 11.8 13.1 24.2 112 0.6 0.6 -89082900.TOP 268 1.75 4842 19.8 -6.3 -32.1 6.6 6.8 13.2 15.4 21.1 156 1.0 0.6 -89082800.UMN 438 1.75 3603 17.3 -6.1 -30.3 6.5 6.4 2.6 7.8 5.6 28 0.4 0.6 -89082700.OMA 400 1.75 3452 17.8 -6.6 -33.4 6.1 7.1 15.2 19.5 33.1 142 0.9 0.6 -89082500.RAP 966 1.75 1899 10.6 -7.1 -34.2 7.6 7.2 2.7 7.7 7.6 55 0.2 1.0 -89081300.TBW 13 1.75 2617 16.4 -8.6 -33.3 6.0 6.6 10.1 18.1 18.2 65 0.8 0.6 -89080600.UMN 438 1.75 5563 19.0 -6.9 -31.4 7.0 6.5 8.8 11.7 11.3 99 1.0 0.8 -89073000.JAN 91 1.75 3940 18.0 -7.7 -34.5 6.7 7.2 2.1 1.9 3.1 9 0.5 0.6 -89072900.HON 392 1.75 2092 14.0 -5.9 -34.4 6.0 7.6 6.4 12.0 17.9 105 0.3 0.8 -89071500.LBF 847 1.75 2675 14.3 -6.9 -33.4 6.1 7.0 5.5 6.1 8.4 27 0.3 0.6 -89071300.OUN 357 1.75 4127 19.0 -5.4 -31.1 6.9 6.8 13.0 13.8 19.1 196 0.7 -999.0 -89071300.DDC 791 1.75 3239 15.1 -4.9 -31.6 6.9 7.1 7.9 5.1 7.2 81 0.3 1.2 -89070800.PIT 360 1.75 2732 15.4 -9.1 -36.1 6.8 7.3 12.8 17.5 15.7 81 1.0 1.5 -89062800.BUF 218 1.75 2385 15.2 -8.2 -33.3 5.3 6.8 9.8 20.1 22.3 82 0.7 0.6 -89062700.PIA 200 1.75 2460 15.7 -7.9 -33.9 6.6 6.9 5.3 13.2 12.4 87 0.5 0.7 -89062600.IAD 85 1.75 3138 16.2 -8.6 -36.4 6.1 7.4 12.1 14.3 23.0 108 0.8 0.7 -89062200.AHN 246 1.75 1517 15.5 -7.6 -33.7 5.8 6.9 14.9 12.6 15.8 112 0.3 0.6 -89061900.BNA 180 1.75 1755 13.9 -10.2 -36.1 6.3 6.9 6.8 9.7 7.8 86 0.4 0.6 -89061400.GGG 124 1.75 3674 17.2 -11.0 -35.3 6.9 6.6 4.3 15.4 23.3 61 1.4 -999.0 -89060600.JAN 91 1.75 3336 16.3 -11.3 -37.4 6.7 7.0 10.4 20.8 25.3 103 1.7 0.8 -89060600.GSO 277 1.75 2078 14.8 -9.1 -34.5 5.9 6.8 10.0 8.1 6.7 93 0.3 0.6 -89060100.TOP 268 1.75 2810 15.8 -10.9 -35.3 7.9 6.6 7.9 10.6 26.9 90 0.8 -999.0 -06100400.MPX 287 1.75 3011 13.7 -12.1 -41.5 7.4 8.1 23.9 34.0 30.2 514 2.4 2.9 -06091600.DDC 790 1.75 2738 14.4 -6.9 -34.5 6.6 7.4 21.6 29.7 39.0 378 1.1 2.2 -06091400.EPZ 1252 1.75 1589 11.7 -10.3 -32.9 7.6 6.1 13.1 17.4 23.7 167 0.6 2.0 -06091100.AMA 1099 1.75 1812 12.5 -8.9 -37.1 7.1 7.6 13.7 14.9 33.3 51 0.5 2.1 -06082300.RAP 1029 1.75 1757 8.3 -9.5 -39.1 9.1 8.0 12.7 21.3 28.7 108 0.8 0.8 -06082100.ABR 396 1.75 1851 12.5 -9.9 -36.9 6.8 7.3 15.5 21.9 39.5 257 0.8 2.1 -06080900.TUS 779 1.75 1640 11.9 -4.7 -30.5 6.6 6.8 6.6 5.1 8.2 25 0.1 0.6 -06080700.TOP 270 1.75 1693 12.5 -6.7 -31.1 7.0 6.4 3.2 7.6 6.8 35 0.2 0.6 -06072600.TUS 779 1.75 1725 11.2 -5.7 -31.7 7.4 7.0 8.5 15.0 18.3 36 0.3 0.9 -06072200.LZK 78 1.75 2480 14.1 -8.1 -31.3 7.3 6.2 7.7 6.9 5.8 67 0.3 0.6 -06071900.JAN 101 1.75 2280 15.2 -6.9 -33.5 6.5 7.1 9.0 11.1 11.1 88 0.4 0.6 -06071300.DDC 790 1.75 1575 12.8 -5.9 -30.5 6.9 6.5 7.4 12.7 13.7 99 0.2 0.8 -06071200.DDC 790 1.75 1068 11.8 -8.7 -29.3 8.0 5.5 11.8 15.4 21.8 12 0.3 1.0 -06070100.BNA 210 1.75 2750 13.5 -11.5 -39.1 6.7 7.5 11.5 10.8 7.8 41 0.7 1.5 -06062900.DDC 790 1.75 919 7.7 -10.1 -38.7 7.7 7.7 1.9 17.9 17.9 16 0.3 0.8 -06062400.LBF 849 1.75 1400 10.7 -12.1 -38.5 7.4 7.2 13.6 26.6 25.0 272 0.9 2.1 -06062400.BIS 506 1.75 942 8.3 -15.3 -41.9 7.0 7.3 16.7 22.7 27.2 167 0.6 1.6 -06062100.CHS 15 1.75 4007 17.0 -10.1 -35.5 6.4 6.9 7.1 12.9 19.3 66 1.1 0.7 -06061800.FWD 171 1.75 2286 14.3 -10.9 -34.3 8.2 6.2 11.6 13.9 24.6 134 0.9 2.3 -06052700.GSO 270 1.75 2136 12.7 -9.9 -37.3 5.8 7.4 17.1 17.4 21.2 217 0.6 1.5 -06052500.TLH 53 1.75 2619 14.8 -10.5 -36.5 6.4 7.0 9.2 7.3 7.5 56 0.4 0.6 -06052300.SGF 387 1.75 3032 14.4 -11.9 -37.7 7.1 7.0 8.3 9.0 15.5 91 0.7 1.6 -06051800.ILX 178 1.75 713 8.0 -17.5 -46.5 6.9 8.1 16.9 28.8 29.6 226 0.6 2.1 -06051412.SHV 79 1.75 2270 12.4 -14.9 -41.3 7.8 7.2 15.5 16.8 26.2 84 1.3 2.8 -06051100.LCH 10 1.75 4564 18.5 -12.3 -35.7 8.9 6.4 12.2 22.9 22.0 38 3.7 1.7 -06050912.SGF 387 1.75 2144 12.9 -12.9 -39.7 6.7 7.3 10.1 20.3 18.4 144 1.2 1.8 -06050900.DDC 790 1.75 1630 9.6 -13.3 -40.5 7.9 7.4 15.1 27.2 27.8 179 1.2 2.0 -06050600.LCH 10 1.75 2655 14.9 -10.3 -39.3 5.8 7.8 15.8 23.1 25.2 64 1.2 0.6 -06050400.SHV 79 1.75 3310 15.0 -12.1 -39.1 6.7 7.3 5.8 8.0 14.3 85 0.7 0.6 -06042300.DTX 329 1.75 609 6.7 -24.1 -43.7 7.4 5.5 14.0 17.7 27.4 50 0.5 1.8 -06041900.BMX 178 1.75 1805 12.0 -11.1 -39.9 6.3 7.7 5.4 14.2 22.0 62 0.5 0.7 -06041600.WAL 12 1.75 2234 10.9 -16.5 -44.7 7.2 7.8 17.2 17.7 48.2 81 1.2 2.3 -06041600.IAD 93 1.75 2181 10.2 -16.7 -43.9 7.0 7.5 16.6 27.7 43.3 48 1.8 1.8 -06041300.LZK 78 1.75 1294 11.0 -13.5 -41.1 7.2 7.6 6.0 12.6 20.8 34 0.4 -999.0 -06040900.JAX 9 1.75 2254 13.6 -13.7 -38.1 6.6 6.6 19.5 20.4 22.0 178 1.3 2.1 -06040400.CHS 15 1.75 2165 11.6 -16.9 -42.5 8.1 7.0 26.6 31.6 39.3 207 2.2 2.6 -05082700.AMA 1099 1.75 2765 13.6 -5.5 -32.3 7.4 7.1 10.0 11.5 11.5 31 0.4 2.0 -05082400.RAP 1029 1.75 2040 11.3 -11.3 -38.9 8.6 7.5 13.6 11.6 19.1 116 0.6 -999.0 -05031500.TLH 53 1.75 1338 12.4 -14.1 -38.5 7.1 6.6 12.7 28.4 53.2 41 1.1 1.1 -05030400.AMA 1099 1.75 697 4.3 -23.3 -51.5 8.7 8.0 13.1 22.7 36.0 142 0.8 1.3 -04092500.AMA 1099 1.75 2465 11.2 -11.9 -40.7 6.9 7.8 12.0 15.1 24.9 38 0.8 2.0 -04092300.AMA 1099 1.75 1887 12.8 -10.1 -35.5 6.7 6.9 19.6 23.5 21.8 374 0.9 1.3 -04082600.BIS 506 1.75 3083 12.5 -13.1 -41.7 7.1 7.8 13.9 16.6 18.9 101 1.4 2.4 -04081900.ILX 178 1.75 3685 15.1 -9.1 -36.3 5.9 7.3 19.7 19.9 28.2 371 1.3 1.3 -04071200.TOP 270 1.75 3709 17.7 -7.3 -32.5 6.8 6.7 11.9 13.6 9.1 204 0.8 0.6 -04051600.EPZ 1252 1.75 2888 10.4 -11.5 -39.9 8.7 7.8 4.1 12.2 7.0 93 0.9 1.6 -04051000.LBF 849 1.75 4026 11.6 -13.9 -41.1 9.0 7.5 3.0 13.9 17.5 38 1.9 1.6 -04042900.DRT 313 1.75 1834 12.4 -12.9 -40.9 6.4 7.7 16.1 20.0 31.6 217 0.9 1.3 -04040700.FWD 171 1.75 835 10.4 -16.3 -40.1 6.7 6.6 11.8 28.3 27.2 87 0.6 1.0 -04032100.MAF 872 1.75 2053 10.0 -12.9 -41.3 7.9 7.7 5.5 9.6 21.3 39 0.5 1.5 -04032100.FFC 244 1.75 942 7.9 -17.3 -44.1 7.5 7.4 11.3 12.0 13.4 154 0.4 1.1 -04030100.TOP 270 1.75 487 6.3 -28.7 -42.5 8.7 3.9 20.1 32.0 35.0 171 0.9 1.6 -04022512.LIX 8 1.75 837 10.3 -17.7 -40.5 6.7 6.3 25.2 31.9 48.7 340 0.7 2.4 -03092100.DDC 790 1.75 1784 10.2 -10.9 -38.5 7.3 7.5 21.8 20.1 23.8 257 0.7 2.0 -03091100.DDC 790 1.75 3112 14.8 -7.5 -31.9 6.9 6.6 15.7 22.3 30.8 259 1.2 2.2 -03091000.MAF 872 1.75 3038 12.9 -7.3 -34.1 7.4 7.1 8.6 8.3 12.7 79 0.4 2.1 -03090500.DRA 1009 1.75 1966 11.3 -8.3 -34.1 8.1 6.9 5.0 3.7 9.2 33 0.2 1.2 -03062500.MAF 872 1.75 4621 16.5 -6.7 -29.9 7.7 6.2 11.9 8.7 16.8 45 0.7 2.1 -03062100.MAF 872 1.75 1489 10.7 -7.7 -33.7 7.0 6.9 6.5 14.5 29.4 74 0.3 1.9 -03061700.RAP 1029 1.75 1501 10.1 -11.1 -38.5 7.1 7.4 2.9 5.7 17.5 92 0.2 1.9 -03061700.FFC 244 1.75 2826 16.3 -8.5 -33.7 6.2 6.8 5.5 7.0 13.0 32 0.3 0.6 -03061500.LBF 849 1.75 1717 10.7 -11.3 -39.3 6.3 7.6 6.6 10.6 12.0 51 0.3 1.7 -03061500.FWD 171 1.75 2433 14.3 -11.3 -37.9 6.9 7.2 5.3 12.1 2.8 32 0.7 1.7 -03061300.LBF 849 1.75 2759 12.0 -11.3 -40.9 7.2 8.0 13.0 15.4 16.3 179 1.0 2.6 -03061100.OUN 357 1.75 3045 14.5 -9.3 -35.7 7.2 7.1 12.1 17.8 13.1 135 1.2 2.0 -03060400.LCH 10 1.75 4988 19.7 -6.7 -34.5 5.8 7.4 7.3 13.3 17.2 44 0.8 0.6 -03051312.FWD 171 1.75 1814 12.6 -10.3 -36.9 7.3 7.1 16.8 17.7 24.7 205 0.7 1.2 -03050700.BMX 178 1.75 4489 17.4 -10.5 -36.9 7.0 7.1 12.2 26.5 28.4 101 2.8 2.1 -03050200.FFC 244 1.75 3289 13.7 -13.5 -41.1 6.5 7.5 7.5 9.8 9.5 55 0.9 0.9 -03043000.BNA 210 1.75 3359 12.4 -15.3 -42.5 7.2 7.5 4.1 4.3 5.5 30 0.8 1.3 -03042900.MAF 872 1.75 2325 9.8 -13.5 -39.1 8.4 7.0 15.5 23.4 21.0 165 1.6 1.4 -03042900.AMA 1099 1.75 2549 9.6 -14.5 -41.5 8.3 7.4 16.5 25.3 33.7 237 2.0 1.6 -03032600.SHV 79 1.75 1723 11.3 -18.3 -45.5 8.5 7.6 8.0 17.7 18.0 108 1.3 1.4 -03032600.LZK 78 1.75 2073 11.3 -18.5 -46.3 6.7 7.8 9.5 14.3 15.4 67 1.0 2.2 -03031500.BMX 178 1.75 1555 10.9 -19.1 -43.3 7.4 6.8 12.3 8.5 21.2 94 0.5 1.3 -02082300.LBF 849 1.75 6193 17.8 -10.1 -38.1 8.0 7.5 3.8 12.9 28.1 10 2.1 3.1 -02072800.DDC 790 1.75 2480 12.9 -5.3 -31.3 7.4 6.8 10.7 10.6 11.1 155 0.3 1.4 -02072518.TBW 13 1.75 4523 18.9 -8.5 -34.7 6.7 7.0 2.0 7.8 6.3 7 0.7 0.6 -02070200.AMA 1099 1.75 2393 12.2 -6.5 -35.3 7.3 7.6 20.8 18.4 11.3 353 0.6 1.6 -02062600.DTX 329 1.75 3079 14.5 -8.9 -34.7 6.1 7.0 1.4 1.9 7.2 -1 0.4 0.7 -02061200.TOP 270 1.75 5029 19.6 -8.9 -32.9 7.6 6.4 15.6 21.1 24.7 224 2.3 0.7 -02060700.MPX 287 1.75 1952 9.2 -15.1 -43.7 7.7 7.9 16.2 22.8 25.3 758 1.4 1.5 -02060402.CHS 15 1.75 2637 13.7 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.6 0.8 -02052900.TOP 270 1.75 2661 12.8 -13.7 -40.1 6.8 7.2 7.3 4.2 10.7 48 0.5 1.3 -02052800.MAF 872 1.75 3115 12.7 -11.1 -37.5 8.0 7.1 16.4 20.6 24.7 103 1.7 2.1 -02052800.LBF 849 1.75 3387 11.3 -15.1 -41.3 9.0 7.2 11.6 18.8 30.1 184 2.3 1.9 -02050400.CHS 15 1.75 3255 15.9 -10.7 -35.7 6.6 6.7 16.6 21.1 29.5 19 1.6 0.9 -02041800.FWD 171 1.75 3343 15.9 -9.9 -35.9 6.4 7.0 5.6 12.4 34.6 61 0.9 -999.0 -02041600.PIT 357 1.75 1856 11.5 -14.9 -41.7 7.3 7.4 15.8 17.9 18.1 245 1.0 1.6 -01062000.DTX 329 1.75 3813 14.9 -12.5 -37.3 6.9 6.7 15.0 8.4 17.6 -45 0.9 2.8 -01061800.TBW 13 1.75 3469 15.9 -9.7 -34.9 5.9 6.8 1.5 4.6 6.6 23 0.5 0.8 -00090400.LBF 849 1.75 2441 11.2 -9.5 -35.5 7.8 7.0 18.5 21.4 24.1 309 1.0 1.5 -00080800.OAX 350 1.75 4679 16.3 -8.1 -32.7 7.8 6.5 10.8 16.4 25.1 185 1.6 3.0 -00080200.GGW 700 1.75 2057 10.8 -8.9 -37.9 8.0 7.8 15.0 24.6 35.3 148 0.9 1.8 -00073100.JAX 9 1.75 3581 17.6 -8.9 -33.5 6.0 6.6 4.7 6.6 5.5 27 0.4 0.6 -00072900.GSO 270 1.75 2081 14.3 -9.7 -35.1 6.2 6.8 6.5 6.2 16.1 43 0.3 0.6 -00072700.LBF 849 1.75 5178 18.1 -8.9 -36.7 8.7 7.5 12.2 17.5 26.1 351 2.3 2.2 -00072600.MPX 287 1.75 3240 15.3 -13.1 -36.3 7.6 6.4 10.1 21.4 12.4 139 2.2 3.0 -00072600.MFL 5 1.75 4079 18.3 -8.5 -33.5 6.6 6.7 2.4 5.2 5.6 18 0.5 0.6 -00072500.ABR 396 1.75 4195 15.6 -12.3 -38.3 8.9 7.1 10.9 15.3 19.8 113 2.3 3.1 -00072200.LBF 849 1.75 3031 12.8 -11.5 -38.5 7.6 7.3 14.5 27.5 23.7 247 2.2 2.6 -00072100.FFC 244 1.75 2149 14.3 -6.9 -30.5 6.4 6.2 9.1 9.2 10.4 63 0.3 0.6 -00071800.AMA 1099 1.75 3660 14.4 -4.7 -32.7 6.9 7.4 5.9 9.1 7.7 79 0.4 1.5 -00071500.IAD 98 1.75 2186 13.9 -12.3 -36.3 6.8 6.5 9.3 17.8 17.7 118 1.1 2.0 -00071300.ABR 396 1.75 2305 13.6 -8.7 -36.1 6.7 7.3 21.7 29.3 44.3 278 1.2 2.0 -00070600.GGW 700 1.75 2743 11.7 -14.1 -40.7 8.5 7.3 13.0 29.6 40.4 165 2.4 1.9 -00062400.LBF 849 1.75 4723 14.8 -9.7 -37.3 8.6 7.4 9.8 17.4 29.6 126 2.2 2.0 -00062400.DDC 790 1.75 3499 14.8 -7.3 -33.9 7.7 7.2 12.0 23.2 30.2 237 1.5 2.7 -00062200.DDC 790 1.75 3602 14.3 -8.7 -37.5 7.0 7.7 16.2 15.4 23.4 157 1.1 2.9 -00061100.AMA 1099 1.75 3932 14.0 -7.9 -33.5 7.8 6.8 9.4 14.8 19.1 128 1.2 2.1 -00060300.ABQ 1620 1.75 1267 9.4 -8.7 -34.3 8.2 6.9 7.6 10.3 17.5 70 0.2 1.4 -00052900.GSO 270 1.75 1988 14.3 -11.1 -37.1 6.2 7.0 17.6 28.7 35.1 139 1.2 1.2 -00051900.FWD 196 1.75 3610 16.2 -10.9 -37.7 7.4 7.2 6.7 25.2 32.9 75 2.4 0.6 -00051200.TOP 270 1.75 5329 16.7 -7.3 -39.3 6.5 8.6 21.0 25.1 29.2 216 2.1 3.7 -00033000.SHV 79 1.75 3548 15.4 -15.9 -44.1 7.6 7.8 23.8 31.6 50.3 323 3.8 2.8 -94070100.GSO 277 1.50 2296 13.8 -10.3 -38.7 5.4 7.7 6.6 8.1 14.3 40 0.3 0.6 -90082200.OUN 357 1.50 3350 16.6 -5.5 -30.6 6.1 6.6 3.1 3.3 5.7 -7 0.3 0.6 -90082200.AHN 246 1.50 3275 16.5 -6.8 -30.8 6.5 6.3 6.0 8.7 15.8 48 0.4 0.6 -90071000.DEN 1611 1.50 3504 13.5 -8.2 -34.3 8.0 7.0 16.7 25.4 20.1 41 1.9 2.5 -90041100.AHN 246 1.50 1096 11.5 -14.0 -40.0 6.4 7.1 19.0 25.4 25.8 343 0.7 0.6 -90040200.GSO 277 1.50 984 8.7 -17.4 -45.5 6.8 7.8 19.9 29.7 37.4 210 0.8 2.0 -89060200.AHN 246 1.50 1996 13.2 -7.3 -34.8 6.1 7.3 3.2 2.6 1.6 18 0.2 -999.0 -06071100.DNR 1625 1.50 1192 10.1 -7.9 -33.7 7.6 6.9 12.2 16.2 27.0 79 0.3 1.7 -06053000.SGF 387 1.50 2988 15.0 -9.3 -34.7 6.5 6.9 4.0 2.7 12.8 27 0.4 0.6 -06052200.LBF 849 1.50 1420 8.2 -11.1 -41.1 7.7 8.1 14.8 15.2 22.6 199 0.5 1.3 -06042117.JAN 101 1.50 1486 13.4 -12.9 -37.5 6.5 6.7 6.4 17.4 11.7 58 0.7 0.6 -03091800.INL 361 1.50 1863 13.7 -13.5 -38.9 7.5 7.0 15.3 24.7 29.2 384 1.5 -999.0 -03031700.MHX 11 1.50 1241 12.1 -13.1 -39.9 5.4 7.3 11.5 19.1 32.8 37 0.5 0.7 -02072500.LCH 10 1.50 5453 20.2 -7.3 -31.7 5.9 6.4 5.5 8.5 11.3 66 0.6 0.6 -02042200.ILN 317 1.50 623 10.3 -13.3 -37.4 6.8 6.6 31.2 36.0 43.5 525 0.4 2.1 -01062600.RNK 654 1.50 1653 11.1 -11.9 -39.7 5.7 7.5 8.3 13.7 30.3 88 0.4 2.1 -01062600.GSO 270 1.50 929 11.9 -11.7 -40.1 6.0 7.7 10.4 17.8 25.6 106 0.3 0.6 -00090200.SLC 1288 1.50 1641 9.1 -14.7 -41.9 8.4 7.4 20.1 16.1 24.8 101 0.9 1.7 -00051800.GSO 270 1.50 1767 11.9 -13.7 -40.9 6.5 7.4 7.6 16.4 31.1 124 0.7 1.6 -94062500.GSO 277 1.25 2334 15.9 -5.4 -31.3 5.6 6.9 12.9 9.9 5.2 103 0.2 0.6 -90041400.OUN 357 1.25 1408 10.8 -18.2 -46.0 7.9 7.7 17.5 23.5 33.0 146 1.2 2.0 -06072800.FGZ 2192 1.25 3100 13.5 -5.3 -30.7 8.1 6.7 14.1 22.7 18.3 193 1.0 2.7 -06072700.ILX 178 1.25 4385 20.7 -4.3 -31.7 5.7 7.2 14.7 12.7 19.1 318 0.6 0.6 -06070400.GRB 214 1.25 1881 14.1 -10.1 -36.5 6.6 7.1 14.0 22.8 40.7 132 0.9 0.6 -06061200.DNR 1625 1.25 942 6.0 -9.9 -38.5 9.4 7.8 7.4 17.1 22.2 130 0.4 0.6 -06060312.LBF 849 1.25 988 7.7 -11.9 -40.5 9.0 7.9 10.8 19.5 17.8 699 0.5 1.0 -06060300.ILX 178 1.25 1218 10.0 -14.5 -42.9 5.9 7.8 14.1 20.0 22.7 87 0.5 1.5 -06052600.FFC 244 1.25 1711 12.1 -12.1 -36.7 7.1 6.6 4.1 8.7 3.3 46 0.4 1.1 -06052000.BOI 874 1.25 1070 7.4 -13.5 -39.9 8.4 7.2 9.2 15.9 25.9 95 0.5 0.8 -06051500.TLH 53 1.25 1279 10.8 -13.7 -41.5 7.1 7.6 18.5 24.7 23.2 104 0.8 1.7 -05100123.LMN 317 1.25 2672 15.9 -9.9 -36.7 7.0 7.2 14.1 21.4 26.0 276 1.3 -999.0 -05090600.LBF 849 1.25 2252 13.0 -9.1 -33.7 8.1 6.7 6.3 14.1 27.2 28 0.7 2.9 -05030700.MAF 872 1.25 547 8.0 -16.7 -46.3 6.9 8.2 16.9 34.3 40.4 177 0.4 1.9 -04100400.AMA 1099 1.25 1672 10.5 -13.5 -40.1 7.6 7.2 10.7 23.5 31.9 28 1.1 2.4 -04032700.RAP 1029 1.25 2052 8.5 -15.5 -43.5 8.0 7.7 12.6 19.0 17.5 161 1.3 1.5 -03090800.PHX 384 1.25 2268 12.1 -6.7 -35.1 6.7 7.5 8.2 10.7 16.8 90 0.3 1.2 -03090800.FGZ 2192 1.25 663 8.3 -8.3 -35.1 7.7 7.1 11.2 15.0 17.0 130 0.2 1.2 -03090300.NKX 128 1.25 940 10.8 -5.9 -32.3 6.6 7.0 4.2 7.0 5.9 9 0.1 0.7 -03040500.ILN 317 1.25 1856 10.4 -15.7 -44.1 6.5 7.8 17.7 20.8 25.6 233 1.0 2.2 -02041200.TOP 270 1.25 1084 9.8 -16.5 -44.3 7.1 7.7 16.2 9.4 27.2 99 0.3 1.6 -00072000.LZK 165 1.25 3973 16.4 -6.7 -30.7 6.8 6.3 8.3 12.6 12.7 102 0.7 1.1 -00071100.DDC 790 1.25 4707 16.4 -4.1 -31.5 6.8 7.2 6.0 4.6 8.7 136 0.4 2.6 -00030400.BMX 178 1.25 1311 11.4 -14.9 -42.9 5.7 7.7 21.1 42.9 54.3 205 0.8 1.4 -99061200.ILN 317 1.00 3299 14.7 -8.3 -35.5 5.8 7.3 8.2 4.6 4.0 32 0.4 1.1 -98052200.BNA 180 1.00 3709 15.2 -10.7 -36.9 6.4 7.0 10.4 9.2 7.9 83 0.8 0.9 -97081800.FFC 244 1.00 3564 18.4 -6.1 -31.1 6.1 6.6 4.4 2.5 2.0 37 0.3 0.6 -97081700.PIT 373 1.00 3951 18.3 -7.9 -31.9 6.9 6.4 15.4 12.7 23.0 224 0.9 0.6 -97081700.DVN 229 1.00 5790 20.8 -8.3 -34.9 7.5 7.1 12.3 14.3 11.8 137 1.7 1.0 -93092500.OUN 381 1.00 2895 16.1 -6.7 -32.0 6.2 6.8 16.0 24.5 27.2 264 1.0 0.6 -91060500.CKL 140 1.00 3345 16.9 -7.5 -32.0 6.3 6.5 9.2 5.0 4.8 52 0.4 0.6 -91060500.AHN 246 1.00 3036 15.3 -8.1 -31.7 6.7 6.3 11.6 5.7 13.0 72 0.4 0.6 -90101800.GGG 124 1.00 1619 14.2 -10.6 -37.1 6.4 7.1 12.5 20.0 27.9 114 0.7 0.6 -90100800.GGG 124 1.00 2689 16.8 -6.0 -32.5 5.8 7.0 8.9 14.2 17.2 70 0.4 0.6 -90092900.MAF 873 1.00 1606 12.2 -8.0 -36.1 6.0 7.5 11.3 15.0 28.7 35 0.3 0.8 -90083000.GSO 277 1.00 3552 16.4 -9.3 -33.8 6.0 6.6 14.1 20.1 18.2 37 1.3 0.6 -90082300.HTS 246 1.00 707 15.2 -7.7 -33.3 6.2 6.8 3.6 7.0 8.5 -4 0.1 0.6 -90082100.OUN 357 1.00 5290 19.2 -6.7 -31.0 6.9 6.4 6.2 8.3 3.4 38 0.7 0.6 -90081900.AMA 1095 1.00 2596 13.6 -7.9 -32.0 7.0 6.5 3.8 5.1 5.1 45 0.3 0.8 -90080200.MAF 873 1.00 1702 14.4 -6.2 -31.8 6.1 6.8 2.8 9.7 12.2 27 0.2 0.6 -90072600.GGW 696 1.00 1514 10.2 -10.6 -37.7 7.0 7.3 7.9 15.6 16.6 55 0.5 1.8 -90072500.DDC 791 1.00 1703 11.9 -8.0 -34.0 6.8 7.0 10.1 14.0 17.5 208 0.4 1.4 -90072200.TBW 13 1.00 3409 17.8 -5.7 -31.9 6.0 6.9 3.6 4.6 7.8 35 0.3 0.6 -90072000.DEN 1611 1.00 1698 11.7 -7.2 -32.2 7.4 6.7 14.0 16.1 20.8 182 0.4 2.1 -90071800.AMA 1095 1.00 1482 11.4 -6.5 -33.5 6.7 7.2 8.4 14.8 26.1 98 0.3 1.1 -90071100.GSO 277 1.00 3487 15.2 -6.6 -32.6 5.9 6.9 7.5 3.5 9.1 38 0.3 0.6 -90070900.GSO 277 1.00 4051 17.6 -5.3 -32.6 5.6 7.2 6.1 10.2 10.5 73 0.4 0.8 -90062400.OUN 357 1.00 1571 11.9 -10.8 -34.1 8.2 6.3 14.1 26.8 24.9 186 1.1 1.9 -90062300.HTS 246 1.00 1346 14.5 -8.5 -33.5 5.8 6.6 19.1 27.1 36.9 231 0.6 0.6 -90061000.GSO 277 1.00 2409 15.3 -8.8 -32.8 6.1 6.4 11.1 9.7 14.5 145 0.4 0.6 -90050400.CKL 140 1.00 1534 14.0 -10.6 -33.4 6.4 6.0 10.8 20.1 25.8 141 0.7 0.6 -89082700.DDC 791 1.00 4549 16.9 -7.4 -32.1 7.6 6.6 1.4 11.3 24.3 11 0.9 2.1 -89082000.UMN 438 1.00 3524 17.3 -6.0 -31.1 6.2 6.6 13.6 20.6 14.9 350 0.9 0.8 -89080600.OUN 357 1.00 3439 16.3 -5.4 -31.1 6.8 6.8 9.7 10.2 12.1 101 0.4 0.8 -89073100.GTF 1118 1.00 1858 9.5 -9.3 -36.7 8.9 7.4 10.3 10.8 21.7 106 0.4 1.2 -89072800.DAY 298 1.00 2617 16.4 -7.8 -34.6 5.7 7.2 7.5 13.5 11.3 83 0.5 0.6 -89072400.VCT 33 1.00 2953 14.8 -9.6 -37.2 6.2 7.4 9.5 7.7 13.3 120 0.4 0.6 -89071200.TOP 268 1.00 3182 16.6 -8.1 -30.9 7.6 6.1 13.2 12.6 8.2 157 0.8 1.6 -89070600.OUN 357 1.00 1373 12.9 -6.0 -34.0 6.2 7.4 11.3 6.0 12.2 64 0.1 0.6 -89062900.AMA 1095 1.00 2035 12.6 -8.2 -31.3 8.6 6.2 13.0 14.8 26.0 165 0.6 2.3 -89062800.HTS 246 1.00 3659 17.6 -8.0 -31.7 5.8 6.4 7.4 15.4 21.4 62 0.8 0.6 -89061900.CKL 140 1.00 3363 16.7 -9.6 -36.6 6.4 7.3 12.2 14.5 12.2 103 1.0 0.6 -89061600.TBW 13 1.00 3463 16.4 -7.6 -32.3 5.7 6.5 5.9 10.2 6.4 36 0.5 0.6 -89061400.JAN 91 1.00 3274 16.0 -11.5 -35.2 7.1 6.4 9.4 11.3 8.2 57 1.0 1.0 -89061200.JAN 91 1.00 3616 17.7 -9.1 -31.2 6.5 5.9 7.5 15.3 5.8 84 1.1 0.6 -89060500.1M1 172 1.00 2493 15.8 -8.2 -35.8 6.0 7.4 10.3 14.7 13.0 19 0.6 0.6 -06092900.FFC 244 1.00 705 10.8 -11.1 -40.1 4.6 7.9 18.9 19.1 33.4 85 0.2 0.6 -06091200.ILX 178 1.00 1642 13.6 -11.1 -38.9 6.4 7.5 8.6 12.9 23.9 56 0.5 0.6 -06090800.LBF 849 1.00 880 7.9 -14.1 -40.7 7.5 7.3 6.9 11.1 19.9 20 0.3 0.9 -06090800.ABR 396 1.00 1406 9.5 -14.3 -42.3 7.5 7.7 10.6 9.4 9.1 163 0.4 1.7 -06081000.TUS 779 1.00 1913 13.4 -6.3 -29.9 7.3 6.3 1.2 3.1 6.2 12 0.2 0.6 -06080100.PIT 357 1.00 3456 18.6 -4.5 -30.1 5.8 6.8 10.1 12.7 7.9 104 0.5 0.6 -06072800.OAX 350 1.00 2714 15.6 -5.3 -34.3 6.0 7.7 9.3 16.8 22.8 92 0.5 0.6 -06072800.ABR 396 1.00 1956 12.7 -6.1 -34.7 6.4 7.6 16.1 23.5 29.4 149 0.5 1.4 -06072700.RAP 1029 1.00 694 8.7 -8.7 -33.7 8.3 6.7 13.4 16.3 21.8 157 0.2 0.9 -06072300.ABQ 1620 1.00 1267 9.6 -4.9 -32.1 7.8 7.2 2.8 5.7 11.2 -9 0.1 1.0 -06072200.RNK 654 1.00 3249 16.5 -6.1 -31.1 6.0 6.6 7.2 7.0 9.1 100 0.3 0.6 -06072000.RNK 654 1.00 2160 14.2 -8.5 -31.1 5.9 6.1 11.1 9.1 3.0 113 0.3 1.0 -06071800.DNR 1625 1.00 1197 9.1 -6.9 -32.3 8.0 6.9 3.5 7.7 6.2 83 0.1 1.1 -06071300.BIS 506 1.00 966 9.0 -8.7 -35.3 8.1 7.1 5.9 7.7 14.5 108 0.1 0.7 -06070500.GSO 270 1.00 2335 15.2 -7.3 -33.1 6.1 6.8 7.6 9.6 6.1 96 0.3 0.6 -06070300.IAD 93 1.00 3195 14.8 -9.3 -36.5 5.9 7.3 10.7 10.7 13.6 60 0.6 0.9 -06070200.LBF 849 1.00 2554 12.2 -8.5 -35.5 8.0 7.3 17.1 20.5 17.9 223 1.0 2.0 -06070200.FWD 171 1.00 1806 12.8 -9.9 -36.5 7.2 7.2 1.6 6.1 11.2 20 0.3 0.6 -06070200.FFC 244 1.00 1552 11.2 -9.7 -38.3 6.3 7.7 1.2 6.5 9.5 4 0.2 0.9 -06062900.TOP 270 1.00 959 8.5 -12.3 -40.9 7.1 7.8 8.1 12.7 14.7 120 0.3 1.0 -06062900.PIT 357 1.00 925 10.9 -13.7 -38.3 6.4 6.7 7.1 21.3 35.7 17 0.5 1.6 -06062800.GRB 214 1.00 1049 9.4 -15.5 -44.5 6.1 8.0 8.1 13.8 20.6 34 0.4 1.6 -06062700.FFC 244 1.00 2376 15.4 -6.9 -33.5 5.6 7.0 9.3 12.6 21.6 23 0.4 0.6 -06062300.DDC 790 1.00 987 11.0 -11.1 -33.3 7.2 6.0 9.3 17.7 17.5 78 0.4 1.3 -06062300.BNA 210 1.00 3023 15.6 -10.1 -34.7 7.3 6.6 8.0 10.6 3.6 71 0.8 0.6 -06062300.BMX 178 1.00 1595 12.5 -7.1 -34.3 6.2 7.2 1.9 5.1 4.3 -10 0.1 0.6 -06062200.JAN 101 1.00 2595 15.3 -8.7 -34.7 7.0 7.0 4.6 3.0 2.5 -15 0.4 0.6 -06062100.BNA 210 1.00 2387 14.1 -9.3 -35.3 6.8 6.9 6.8 6.7 3.3 43 0.3 0.6 -06061900.GRB 214 1.00 2397 14.0 -11.7 -38.1 6.2 7.2 12.4 15.9 20.9 74 0.9 1.9 -06061200.BNA 210 1.00 1539 13.6 -6.7 -34.3 5.6 7.4 9.1 15.2 7.0 107 0.3 0.6 -06060800.LBF 849 1.00 2368 10.8 -6.9 -36.5 7.7 7.9 11.2 20.5 22.3 244 0.7 1.7 -06060712.RAP 1029 1.00 1110 7.9 -10.3 -38.1 8.7 7.6 9.9 12.3 19.2 131 0.3 1.3 -06060700.SHV 79 1.00 2252 14.6 -10.3 -34.3 7.4 6.4 15.1 25.4 14.5 164 1.4 0.6 -06060500.FFC 244 1.00 1475 11.0 -12.5 -39.5 5.9 7.4 5.7 11.7 22.4 18 0.3 2.1 -06060400.ILN 317 1.00 1032 8.3 -18.1 -46.9 6.5 8.0 6.7 8.5 11.1 35 0.3 1.2 -06060300.GRB 214 1.00 1314 8.8 -18.9 -45.5 7.1 7.4 12.0 16.3 19.5 77 0.7 1.6 -06060200.BNA 210 1.00 2055 14.2 -7.9 -34.3 5.4 7.1 8.6 5.5 12.6 -2 0.2 0.6 -06053100.GGW 700 1.00 570 5.6 -21.1 -50.3 7.4 8.3 2.8 5.0 8.1 30 0.2 0.9 -06052700.JAX 9 1.00 2879 15.0 -9.9 -36.5 6.1 7.2 11.0 13.7 13.1 117 0.8 0.8 -06052700.BIS 506 1.00 2274 9.4 -11.9 -40.3 8.5 7.7 20.2 22.0 21.3 198 1.3 1.3 -06052600.JAX 9 1.00 1856 13.3 -10.7 -37.3 6.6 7.2 10.5 15.3 20.8 70 0.6 0.6 -06052600.GSO 270 1.00 1743 11.9 -10.1 -36.3 6.1 7.0 8.4 14.4 11.4 82 0.4 0.8 -06052600.AMA 1099 1.00 1911 7.9 -11.3 -38.3 9.9 7.3 11.8 16.9 12.6 262 0.9 0.7 -06052300.RAP 1029 1.00 2536 9.6 -10.3 -39.5 8.5 7.9 5.6 9.7 18.1 43 0.6 1.3 -06051800.IAD 93 1.00 1009 8.4 -20.5 -45.9 6.7 7.2 11.9 16.0 20.3 66 0.6 1.3 -06051600.DTX 329 1.00 519 8.7 -20.5 -49.7 6.1 8.2 7.2 5.0 17.9 -7 0.1 0.7 -06041400.PIT 357 1.00 390 6.2 -20.1 -48.7 7.0 8.1 18.8 18.6 40.0 220 0.3 0.9 -06041400.BUF 215 1.00 383 6.2 -23.3 -49.9 7.6 7.6 21.6 26.8 55.7 237 0.5 1.4 -06011200.GSO 270 1.00 1374 9.5 -19.1 -46.5 7.5 7.7 21.9 15.6 28.9 253 0.8 2.5 -06010300.ILN 317 1.00 791 9.0 -19.3 -46.1 7.5 7.5 7.8 16.0 23.8 140 0.5 1.4 -05092900.FWD 171 1.00 1553 12.7 -5.9 -29.7 6.4 6.3 8.5 10.1 13.0 39 0.2 0.6 -05082700.EPZ 1252 1.00 2162 11.1 -6.5 -31.9 8.5 6.8 4.0 4.9 6.7 21 0.2 1.0 -05081800.LMN 317 1.00 3655 17.7 -4.1 -30.3 6.0 6.8 13.3 22.3 17.3 221 0.9 0.6 -05081700.GGW 700 1.00 1042 9.2 -11.1 -36.7 7.8 6.9 16.7 27.6 40.5 265 0.6 1.7 -05081100.GGW 700 1.00 805 10.1 -13.7 -37.9 7.4 6.5 15.6 30.5 38.9 170 0.6 2.1 -05050600.EPZ 1252 1.00 1672 8.0 -12.7 -40.3 8.6 7.5 15.0 27.7 28.8 178 1.3 1.2 -05050412.TBW 13 1.00 1839 14.1 -13.5 -39.3 7.3 7.0 10.0 15.8 33.3 187 0.9 1.0 -05030400.SGF 387 1.00 823 5.9 -25.9 -52.1 7.1 7.5 13.0 24.2 27.9 151 1.0 0.7 -04082800.OUN 357 1.00 4225 16.0 -7.1 -32.5 7.4 6.7 7.0 3.8 3.0 101 0.5 1.5 -04081700.TUS 779 1.00 2027 13.1 -8.9 -34.5 7.1 6.9 8.8 13.2 13.3 96 0.5 1.0 -04080900.TOP 270 1.00 2676 14.3 -11.5 -36.3 7.4 6.7 5.9 11.9 15.6 82 0.9 0.9 -04051200.AMA 1099 1.00 1922 9.7 -11.5 -38.7 8.0 7.4 19.1 15.0 8.4 282 0.7 1.6 -04051000.FFC 244 1.00 2006 11.4 -11.1 -38.3 5.4 7.4 4.0 4.7 11.0 -15 0.2 1.9 -04032100.FWD 171 1.00 2648 13.1 -15.5 -42.9 8.2 7.5 4.9 12.9 20.8 29 1.4 2.8 -04031500.DRT 313 1.00 1498 11.6 -15.5 -43.1 7.0 7.6 6.6 16.8 24.5 123 0.8 1.4 -03111712.TOP 270 1.00 1641 11.5 -17.3 -45.7 7.3 7.9 17.8 25.6 32.6 329 1.4 2.7 -03090900.TUS 779 1.00 2363 11.5 -8.3 -34.9 7.3 7.1 2.8 7.9 11.8 12 0.3 1.1 -03060900.RNK 654 1.00 2965 15.0 -9.1 -36.7 6.2 7.4 18.9 24.1 29.2 134 1.3 1.2 -03060200.DDC 790 1.00 1960 11.1 -9.5 -35.3 7.9 6.9 11.9 17.5 20.6 222 0.7 2.0 -03052700.ABQ 1620 1.00 713 7.1 -9.9 -37.1 8.3 7.3 3.1 14.7 20.6 12 0.2 0.6 -03052600.TFX 1131 1.00 994 8.3 -10.9 -37.7 8.0 7.3 9.1 16.0 15.9 59 0.4 1.3 -03051800.XMR 3 1.00 3602 16.0 -9.5 -35.9 7.0 7.1 5.6 8.6 10.7 -7 0.7 0.9 -03051800.TBW 13 1.00 3839 16.1 -8.7 -36.5 6.5 7.5 6.2 5.7 11.9 3 0.5 1.1 -03051200.JAX 9 1.00 3060 15.9 -7.9 -33.5 6.9 6.8 10.1 13.2 20.0 48 0.7 -999.0 -03051100.MHX 11 1.00 3585 16.0 -9.3 -37.7 7.3 7.6 11.9 16.2 15.0 104 1.3 0.9 -03050312.BMX 178 1.00 1402 9.7 -16.1 -41.9 7.5 7.1 7.9 13.8 38.5 72 0.6 1.8 -03050212.BNA 210 1.00 1865 10.3 -15.3 -44.9 7.0 8.2 12.1 13.0 18.0 55 0.7 2.2 -03050100.FFC 244 1.00 1429 11.1 -13.5 -40.1 6.6 7.2 1.0 6.9 6.4 5 0.2 1.6 -03043000.OAX 350 1.00 1064 8.9 -16.3 -44.3 7.4 7.8 18.4 29.1 32.0 353 0.9 1.9 -03042800.MFL 5 1.00 2735 16.7 -10.7 -35.7 6.4 6.7 12.3 11.7 25.5 83 0.7 0.6 -03042400.SHV 79 1.00 1456 13.1 -12.9 -38.9 7.2 7.1 15.2 26.1 36.8 278 1.1 0.6 -03041800.DNR 1625 1.00 1063 5.3 -18.1 -47.9 8.6 8.3 5.9 11.0 43.9 41 0.5 0.6 -03040500.LZK 78 1.00 1751 10.7 -14.9 -42.5 6.6 7.6 12.6 27.4 33.1 65 1.2 2.3 -03032100.DTX 329 1.00 1602 8.7 -21.3 -48.3 6.6 7.7 7.7 13.3 27.1 80 0.8 1.1 -03032000.ILX 178 1.00 713 8.0 -21.9 -36.7 6.9 4.2 5.4 3.5 11.4 -26 0.2 1.4 -03031500.TBW 13 1.00 3398 15.9 -13.7 -38.1 7.0 6.6 3.9 18.6 27.3 32 1.9 0.9 -02080400.SGF 387 1.00 4328 17.7 -5.5 -34.5 6.5 7.7 3.8 1.1 7.6 -11 0.3 1.5 -02080300.BMX 178 1.00 5098 18.4 -6.5 -35.1 5.8 7.6 11.5 9.6 10.8 33 0.6 1.4 -02072900.AMA 1099 1.00 3610 13.6 -6.5 -32.3 7.8 6.9 13.6 12.5 12.2 164 0.7 2.0 -02072700.RAP 1029 1.00 1688 9.4 -9.3 -37.5 7.5 7.6 14.5 21.0 28.6 139 0.7 1.3 -02072600.TOP 270 1.00 3390 13.8 -5.9 -33.9 7.5 7.4 11.9 16.9 16.9 168 0.8 2.2 -02072000.JAN 133 1.00 3501 17.6 -6.7 -31.9 6.1 6.7 5.7 6.1 7.9 58 0.3 0.6 -02070300.LBF 849 1.00 3367 14.1 -5.9 -35.3 7.5 7.8 11.5 14.0 6.2 158 0.7 1.2 -02070200.FFC 244 1.00 4268 16.3 -9.7 -36.1 6.6 7.1 7.3 7.8 4.3 46 0.7 0.6 -02060700.ABR 396 1.00 2252 9.0 -14.7 -43.9 8.1 8.1 8.2 12.4 18.1 118 0.9 1.2 -02060400.CHS 15 1.00 3170 15.2 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.8 0.6 -02052700.AMA 1099 1.00 2332 9.7 -11.1 -37.9 7.2 7.3 13.0 14.5 11.8 198 0.7 1.4 -02051800.CRP 13 1.00 5902 20.3 -10.5 -36.9 7.4 7.1 10.7 22.6 23.2 86 3.4 1.6 -02042300.OAX 350 1.00 614 6.4 -23.3 -46.3 7.9 6.5 15.2 26.3 36.6 133 0.8 1.4 -02012400.LZK 78 1.00 1343 13.1 -12.7 -41.1 6.6 7.8 20.2 32.5 40.7 290 0.9 0.6 -01062600.LBF 849 1.00 3931 12.7 -8.1 -35.3 8.1 7.3 8.1 9.3 8.1 119 0.7 1.5 -01062100.ABR 396 1.00 1118 8.1 -19.3 -47.7 7.0 7.9 3.6 4.2 12.4 14 0.3 1.3 -01061900.JAX 9 1.00 2584 17.2 -9.5 -35.5 6.1 7.0 5.0 4.8 8.3 13 0.3 0.6 -00080700.TOP 270 1.00 4476 17.3 -7.5 -33.1 7.2 6.7 11.7 17.8 22.9 72 1.4 1.8 -00072900.ILN 317 1.00 2735 14.3 -11.5 -37.7 6.7 7.1 8.0 13.4 21.0 68 0.9 0.6 -00072900.CHS 15 1.00 2462 16.1 -7.5 -34.9 5.6 7.3 3.3 9.3 13.2 4 0.3 0.6 -00072800.TOP 270 1.00 3666 15.3 -10.3 -35.3 7.6 6.8 9.1 22.0 26.4 115 2.1 2.6 -00072800.LBF 849 1.00 5581 17.1 -7.7 -35.5 8.1 7.5 9.6 25.0 21.1 187 2.8 3.1 -00072700.JAN 101 1.00 2066 12.5 -10.7 -35.7 6.4 6.7 4.2 8.0 8.4 -50 0.3 1.0 -00072300.OTX 728 1.00 2088 9.0 -12.3 -42.7 8.2 8.3 7.8 17.2 21.1 43 0.9 1.2 -00071900.GYX 125 1.00 997 11.4 -13.3 -37.7 6.0 6.6 18.8 27.0 36.1 107 0.6 1.0 -00071700.TOP 270 1.00 3927 15.9 -8.7 -31.7 7.9 6.1 14.5 8.9 14.1 198 0.8 2.4 -00071500.SHV 79 1.00 4004 17.2 -5.9 -31.1 6.0 6.7 6.2 4.6 8.6 46 0.3 0.6 -00071400.GRB 214 1.00 1743 12.0 -12.3 -37.9 6.9 6.9 13.4 21.5 42.9 195 0.9 1.7 -00071200.DDC 790 1.00 2941 14.4 -5.5 -30.7 7.2 6.7 10.8 11.3 11.7 196 0.4 1.4 -00070700.RAP 966 1.00 4065 14.2 -7.7 -35.3 8.6 7.3 10.8 29.4 33.3 111 2.3 2.1 -00070400.DDC 790 1.00 5142 18.1 -7.1 -30.7 7.6 6.4 11.4 9.7 19.2 114 0.9 2.4 -00070300.OAX 350 1.00 4633 18.5 -6.3 -32.3 6.9 6.9 9.9 10.6 19.6 133 0.7 1.9 -00070300.DDC 790 1.00 4558 17.2 -5.9 -30.9 7.5 6.7 11.7 13.6 22.7 66 0.9 2.4 -00070200.RAP 966 1.00 5621 15.6 -9.7 -36.3 8.7 7.3 15.9 21.5 22.7 263 3.3 2.2 -00070200.DDC 790 1.00 3566 16.2 -5.7 -34.7 6.6 7.7 5.5 14.2 21.9 38 0.6 1.3 -00063000.PIT 373 1.00 1086 9.9 -15.9 -40.5 5.5 6.8 8.1 22.0 37.9 77 0.5 1.8 -00062600.TOP 270 1.00 4052 17.8 -8.9 -32.7 7.6 6.4 2.4 1.3 23.9 26 0.6 2.3 -00062600.DDC 790 1.00 2618 13.5 -6.1 -32.3 6.7 6.9 14.3 15.8 16.9 51 0.5 1.6 -00062300.MHX 11 1.00 4167 18.6 -8.7 -34.1 6.1 6.8 9.7 6.0 6.1 89 0.5 0.6 -00062100.TBW 13 1.00 3180 17.1 -8.5 -32.1 6.4 6.4 8.9 12.2 19.0 49 0.7 0.6 -00060200.TOP 270 1.00 3517 16.1 -9.3 -34.5 6.9 6.7 4.9 10.4 16.3 39 0.8 0.8 -00060200.DVN 229 1.00 3451 16.4 -9.3 -35.5 7.3 7.0 14.2 14.1 11.0 175 1.1 0.6 -00060100.ILX 178 1.00 3208 16.1 -9.1 -37.7 7.0 7.7 20.7 17.9 15.6 163 1.2 1.8 -00053000.LBF 849 1.00 2258 9.9 -9.7 -37.9 9.2 7.6 16.9 27.2 31.9 294 1.4 1.1 -00051400.TLH 21 1.00 3542 15.9 -9.9 -37.7 6.9 7.5 5.4 4.2 4.2 -4 0.5 1.0 -00021800.JAN 101 0.88 1866 12.5 -14.9 -43.1 6.7 7.8 16.2 27.5 38.9 270 1.5 0.7 -00061100.DDC 790 0.88 3471 14.3 -7.9 -33.9 6.9 6.9 14.0 11.0 20.2 53 0.7 2.4 -00061800.RAP 966 0.88 1396 7.4 -18.9 -44.5 7.1 7.2 7.4 14.0 34.9 270 0.7 1.4 -00070600.DDC 790 0.88 2581 12.3 -7.5 -31.7 8.5 6.4 10.7 9.4 10.0 97 0.5 1.8 -00072800.BMX 178 0.88 2147 13.2 -9.5 -36.3 6.2 7.2 6.0 8.0 11.4 35 0.3 0.7 -00080200.DVN 229 0.88 4183 16.6 -9.7 -38.1 6.6 7.6 13.3 11.2 16.4 169 1.0 1.1 -00080300.PIT 373 0.88 2780 14.9 -9.7 -37.1 6.2 7.3 9.1 15.5 29.2 81 0.8 0.6 -00080400.BNA 180 0.88 3453 16.3 -9.9 -35.1 6.8 6.8 9.1 10.9 16.0 83 0.8 0.6 -00080500.LZK 165 0.88 3872 16.1 -6.3 -33.3 5.6 7.3 7.3 9.4 14.6 6 0.4 0.8 -00080700.DTX 329 0.88 4231 19.4 -7.3 -31.9 6.0 6.6 10.6 16.6 31.6 78 1.0 0.6 -00090300.OAX 350 0.88 3099 12.6 -10.1 -36.3 8.7 7.0 9.5 16.9 21.6 126 1.4 1.4 -01062200.DVN 229 0.88 1285 10.3 -18.1 -44.9 6.5 7.5 8.7 10.8 11.8 66 0.4 1.0 -01062600.CRP 13 0.88 3837 16.6 -8.5 -35.7 6.4 7.3 7.1 4.0 8.9 53 0.5 0.6 -02031000.GSO 270 0.88 819 11.0 -15.3 -41.3 5.8 7.2 19.8 24.6 29.7 236 0.5 1.2 -02052900.OAX 350 0.88 2754 13.0 -13.3 -40.9 7.1 7.5 10.0 7.5 7.0 127 0.6 2.6 -03031400.TLH 53 0.88 2141 11.6 -13.1 -43.3 6.3 8.3 5.7 10.5 9.0 39 0.5 1.1 -03042912.TOP 270 0.88 1617 10.6 -16.9 -43.9 7.8 7.5 11.0 16.7 22.5 238 0.9 2.8 -03050400.BIS 506 0.88 1467 8.2 -18.7 -47.3 7.4 8.0 8.8 15.4 16.1 86 0.8 1.6 -03060300.JAX 9 0.88 3513 16.1 -10.1 -36.5 7.6 7.1 11.4 11.1 10.3 111 1.0 0.6 -03060600.ABR 396 0.88 888 8.1 -19.9 -46.5 6.8 7.5 9.2 17.3 14.2 47 0.5 1.5 -03061600.TOP 270 0.88 1944 12.4 -11.9 -38.7 6.4 7.3 5.8 0.8 4.2 3 0.3 1.0 -03062000.GGW 700 0.88 1032 9.2 -9.7 -37.5 8.1 7.5 8.3 9.8 17.1 76 0.2 1.3 -03101712.JAN 101 0.88 1891 12.8 -11.5 -43.1 6.3 8.6 16.9 25.4 33.9 246 1.1 1.2 -03102600.CRP 13 0.88 3408 17.9 -9.9 -35.3 6.3 6.8 9.8 15.2 34.5 17 1.0 0.6 -03111800.OAX 350 0.88 957 10.0 -18.3 -43.3 6.8 6.9 20.0 41.2 58.6 88 0.8 2.5 -04040900.AMA 1099 0.88 1515 8.2 -16.7 -45.5 7.0 8.0 14.7 17.9 23.0 139 0.8 1.6 -04081800.PHX 384 0.88 1709 10.5 -9.1 -35.5 7.3 7.1 6.0 4.8 9.2 15 0.2 0.8 -04082700.ABR 396 0.88 1433 10.2 -15.1 -41.5 6.7 7.3 5.3 14.4 40.5 28 0.5 1.5 -04091900.LCH 10 0.88 2433 15.9 -6.9 -31.9 5.8 6.6 7.7 4.4 15.6 6 0.2 0.6 -04092000.OAK 3 0.88 242 7.3 -17.9 -36.7 5.5 5.2 6.5 27.4 30.4 56 0.2 0.7 -04100400.GSO 270 0.88 1385 13.2 -14.9 -40.1 6.5 6.9 10.4 15.2 26.8 101 0.6 1.4 -05081300.MAF 872 0.88 1568 12.8 -6.3 -31.7 6.5 6.8 6.9 11.8 13.7 82 0.2 0.6 -06013012.JAN 101 0.88 1058 10.0 -20.9 -45.9 7.1 7.0 18.9 38.7 46.0 71 1.1 2.6 -06032100.OUN 357 0.88 579 5.4 -25.5 -40.9 7.4 4.4 5.7 16.6 26.7 53 0.5 0.9 -06040700.FWD 171 0.88 2831 12.5 -12.5 -42.1 6.2 8.1 20.1 33.5 41.5 40 1.8 2.8 -06041200.TOP 270 0.88 726 8.4 -14.3 -42.9 7.0 7.9 23.1 33.2 37.2 232 0.5 2.0 -06043000.OTX 728 0.88 499 6.4 -17.9 -44.3 7.3 7.4 8.3 17.3 23.3 75 0.3 0.8 -89061200.AMA 1095 0.88 3301 13.2 -11.7 -39.3 8.7 7.5 9.2 12.9 25.2 167 1.4 2.3 -89062600.UMN 438 0.88 3812 16.2 -6.9 -33.3 6.3 7.0 2.0 0.7 10.8 -14 0.4 0.6 -89062700.DEN 1611 0.88 931 8.6 -11.1 -38.5 7.6 7.5 10.8 14.3 14.3 122 0.3 1.8 -89072700.AHN 246 0.88 3996 17.5 -6.9 -33.6 6.5 7.1 7.1 3.5 6.8 66 0.4 0.6 -89082500.AHN 246 0.88 3533 16.9 -5.1 -30.7 6.1 6.8 2.7 3.3 8.1 5 0.3 0.6 -89082600.AHN 246 0.88 3463 17.1 -5.6 -31.0 5.8 6.7 4.0 11.3 8.6 41 0.4 0.6 -89082900.GGG 124 0.88 3979 18.5 -4.6 -29.9 6.0 6.7 1.6 4.1 2.2 3 0.3 0.6 -90071000.PIT 360 0.88 3362 16.6 -6.7 -31.4 6.3 6.6 14.3 19.7 14.7 124 0.9 0.6 -90073000.AMA 1095 0.88 943 12.2 -7.5 -32.1 6.3 6.5 8.4 12.7 18.1 14 0.2 0.6 -90091900.OUN 357 0.88 3878 18.0 -6.7 -31.3 6.2 6.6 12.1 11.9 20.5 119 0.6 0.6 -97010900.SIL 8 0.88 909 13.1 -13.6 -37.2 6.7 6.4 33.7 39.7 37.0 511 0.7 -999.0 -98062500.DDC 790 0.88 2667 11.9 -7.3 -34.1 8.7 7.2 12.4 25.1 34.7 224 1.2 1.4 -90052100.SIL 8 0.85 3505 16.6 -10.6 -35.6 6.7 6.7 10.9 8.4 13.0 70 0.7 0.6 -03052100.TBW 13 0.80 2941 15.8 -9.5 -35.9 6.2 7.1 7.1 2.7 5.4 27 0.4 0.6 -91051700.JAN 91 0.80 2890 15.5 -8.9 -36.0 6.5 7.3 0.6 1.1 7.8 1 0.4 0.6 -00022400.LZK 165 0.75 1590 10.6 -18.1 -45.7 7.0 7.7 17.2 25.0 34.2 270 1.3 2.5 -00050300.JAN 101 0.75 1438 12.8 -12.9 -38.5 5.9 7.0 13.9 12.8 7.2 120 0.4 0.6 -00052200.LZK 165 0.75 2062 12.1 -13.5 -44.1 6.2 8.4 17.7 22.6 32.5 162 1.1 1.4 -00061800.JAX 9 0.75 2677 15.7 -7.9 -34.1 5.7 7.0 7.9 6.0 10.5 61 0.3 0.6 -00061900.WAL 41 0.75 2940 17.4 -7.9 -33.5 6.3 6.9 11.6 11.3 9.5 134 0.5 0.6 -00062500.JAX 9 0.75 2442 15.6 -10.1 -34.9 6.2 6.6 9.3 9.4 21.8 104 0.5 0.6 -00062900.GRB 214 0.75 860 8.9 -18.9 -47.9 6.4 8.1 14.1 17.0 24.4 108 0.5 1.1 -00071300.DDC 790 0.75 3064 15.1 -3.7 -31.1 6.1 7.2 9.2 6.2 10.6 0 0.2 0.6 -00071300.FWD 196 0.75 3103 14.9 -5.7 -31.9 6.5 6.9 13.9 10.6 11.4 120 0.4 0.8 -00071800.JAN 101 0.75 3305 15.8 -5.5 -29.7 6.0 6.3 13.1 13.9 14.4 -56 0.5 0.6 -00071900.JAN 101 0.75 3841 17.3 -6.1 -31.7 6.1 6.8 5.7 7.5 6.9 32 0.3 0.6 -00072100.TBW 13 0.75 4845 18.9 -6.9 -31.9 6.4 6.6 7.4 7.0 10.7 56 0.5 0.9 -00072300.GSO 270 0.75 2443 16.5 -9.1 -32.3 5.7 6.1 6.6 20.6 22.2 88 0.9 0.6 -00072400.GGW 700 0.75 3240 10.9 -11.1 -40.3 8.5 7.9 12.5 26.1 22.5 54 2.1 1.4 -00080400.LCH 10 0.75 3045 15.7 -7.5 -32.7 5.6 6.7 4.7 2.8 12.8 28 0.3 0.6 -00090200.SHV 79 0.75 1896 12.1 -7.5 -32.5 7.0 6.6 5.2 3.2 2.0 15 0.2 0.7 -01062400.BIS 506 0.75 4781 13.7 -10.9 -38.3 9.0 7.4 15.0 18.7 27.1 249 2.8 1.7 -02030812.ILX 178 0.75 533 7.2 -19.7 -48.7 6.9 8.2 16.1 31.5 49.1 599 0.5 1.3 -02051500.PIT 357 0.75 521 5.9 -27.9 -45.7 7.9 5.1 17.3 14.7 14.3 74 0.4 1.1 -02060400.JAX 9 0.75 3128 15.3 -8.1 -33.3 6.5 6.7 0.3 3.7 6.5 15 0.4 0.6 -02062500.LBF 849 0.75 3690 11.7 -10.3 -37.1 9.2 7.2 5.0 7.2 9.1 45 0.7 1.3 -02072000.LZK 78 0.75 6551 21.6 -8.5 -32.7 6.9 6.6 8.7 10.2 6.8 145 1.3 0.9 -03031500.OTX 728 0.75 801 6.3 -26.3 -49.9 7.5 6.8 18.3 24.9 28.7 240 1.0 1.5 -03032000.SGF 387 0.75 909 7.6 -22.1 -40.1 6.7 5.1 18.2 10.5 8.6 205 0.4 1.4 -03040922.XMR 3 0.75 2570 15.5 -10.3 -37.3 5.6 7.3 12.7 31.0 38.3 34 1.3 0.6 -03042300.DNR 1625 0.75 1183 6.7 -16.1 -46.5 7.9 8.5 12.2 19.1 35.2 265 0.7 1.2 -03050100.DNR 1625 0.75 1011 6.7 -20.1 -46.3 8.0 7.4 12.5 33.5 27.3 108 1.1 1.2 -03050200.BMX 178 0.75 2216 12.4 -12.9 -40.7 6.6 7.5 4.6 6.7 7.6 9 0.4 0.7 -03052400.PIT 357 0.75 707 10.0 -16.7 -44.5 6.5 7.7 12.1 26.5 23.6 65 0.5 1.0 -03060700.MFL 5 0.75 3041 18.2 -6.7 -31.3 5.6 6.5 0.9 2.8 9.3 5 0.3 0.6 -03061000.JAX 53 0.75 2482 16.0 -8.7 -33.9 6.7 6.7 10.8 11.3 22.4 13 0.5 0.6 -03061222.XMR 3 0.75 2144 17.1 -7.9 -32.5 6.1 6.5 5.2 4.6 6.1 65 0.2 0.6 -03061500.SHV 79 0.75 2511 16.2 -9.9 -33.9 6.3 6.4 13.5 21.1 32.8 91 1.1 0.6 -03061900.TFX 1131 0.75 1802 8.6 -9.3 -37.5 8.2 7.6 13.1 10.8 13.4 178 0.4 1.0 -03062000.BOI 874 0.75 491 7.0 -12.5 -39.7 8.2 7.4 17.9 23.3 18.1 141 0.3 1.0 -03062100.RAP 1029 0.75 2338 11.9 -10.3 -36.1 7.2 7.0 15.0 8.1 14.4 137 0.4 2.4 -03062200.IAD 93 0.75 1215 10.5 -17.1 -38.3 5.8 5.9 9.3 15.1 9.7 79 0.5 1.1 -03090900.GJT 1475 0.75 996 6.8 -12.3 -39.5 9.1 7.4 8.5 17.7 28.1 199 0.5 0.7 -03090900.MAF 872 0.75 2389 12.1 -7.9 -36.1 7.0 7.6 12.1 18.1 17.8 222 0.7 2.2 -03091000.JAN 101 0.75 1929 15.0 -9.5 -35.3 6.0 6.9 8.1 10.8 22.1 83 0.4 0.6 -03111300.BUF 215 0.75 418 8.1 -20.5 -44.7 6.7 6.8 18.0 46.9 65.5 335 0.4 1.5 -04030500.LZK 78 0.75 745 12.4 -10.1 -37.1 5.8 7.2 27.8 39.6 53.2 468 0.4 0.6 -04051300.OAX 350 0.75 1193 10.5 -13.7 -40.5 6.9 7.3 16.7 24.2 28.7 133 0.7 2.2 -04051700.FFC 244 0.75 2077 12.2 -12.1 -39.3 6.4 7.4 2.9 2.0 11.6 0 0.3 0.8 -04052300.BUF 215 0.75 1807 13.8 -10.6 -36.5 5.8 7.0 18.8 22.4 24.0 239 0.8 0.6 -04081700.PHX 384 0.75 2729 12.6 -7.9 -35.3 7.1 7.3 6.2 8.0 6.2 60 0.4 1.3 -04081900.DDC 790 0.75 2146 11.7 -6.3 -34.7 6.2 7.5 10.2 4.3 11.0 15 0.2 0.7 -04081900.OTX 728 0.75 1929 9.8 -11.3 -38.9 7.4 7.4 6.2 9.9 15.1 43 0.4 1.5 -04082800.JAN 101 0.75 3714 18.0 -7.5 -33.7 6.4 7.0 1.0 2.6 3.6 12 0.4 0.6 -04082800.PIT 357 0.75 3258 18.3 -6.1 -31.3 5.6 6.7 10.4 7.8 6.8 106 0.3 0.6 -04092800.DNR 1625 0.75 698 7.9 -13.9 -38.7 7.1 6.8 12.4 17.7 21.0 112 0.3 1.0 -04100400.CHS 15 0.75 1850 15.3 -10.7 -36.1 6.0 6.9 13.4 22.1 32.7 81 0.9 0.6 -05022200.BMX 178 0.75 1749 11.8 -15.9 -43.5 6.8 7.6 19.0 26.1 36.8 174 1.4 1.2 -05030700.OAX 350 0.75 324 5.7 -21.9 -50.1 7.4 7.9 13.6 14.9 9.6 156 0.2 0.9 -05042612.JAN 101 0.75 993 9.2 -17.3 -43.3 6.9 7.2 15.7 27.2 35.7 336 0.8 2.2 -05050500.OTX 728 0.75 1601 7.7 -19.1 -46.9 7.3 7.8 8.5 15.7 22.0 35 0.9 1.4 -05082100.OAX 350 0.75 2617 15.5 -6.9 -34.3 6.0 7.3 15.0 14.8 30.9 159 0.5 0.6 -05082400.SHV 79 0.75 3397 16.6 -5.3 -30.5 6.1 6.8 11.1 9.2 4.4 72 0.3 0.6 -06011400.JAX 9 0.75 1223 12.1 -15.1 -42.3 6.5 7.5 19.7 19.6 26.7 233 0.7 0.7 -89052800.CKL 140 0.75 2098 15.4 -8.1 -34.6 6.2 7.1 8.0 11.8 13.5 43 0.4 0.6 -89060400.PAH 126 0.75 3338 16.4 -9.7 -37.6 5.8 7.5 15.5 14.2 14.7 90 0.9 0.6 -89060700.AHN 246 0.75 2402 14.2 -13.0 -38.1 6.6 6.8 2.7 12.3 18.6 37 0.8 0.6 -89061300.CKL 140 0.75 2677 16.1 -8.6 -32.8 6.1 6.4 11.5 15.9 7.3 102 0.7 0.6 -89061500.AHN 246 0.75 1717 14.7 -7.5 -31.3 5.5 6.3 11.8 10.0 9.8 91 0.2 0.6 -89061600.ACY 23 0.75 2243 16.5 -7.6 -34.5 5.9 7.2 19.5 18.8 19.1 217 0.6 0.6 -89062200.CKL 140 0.75 2986 16.1 -10.1 -37.3 6.7 7.3 6.8 10.0 8.5 76 0.7 0.6 -89062300.GRB 210 0.75 1729 14.6 -8.4 -34.6 6.2 7.0 10.0 10.7 10.8 139 0.3 -999.0 -89062300.OUN 357 0.75 3217 16.0 -7.1 -34.1 5.9 7.2 6.9 12.8 14.9 113 0.6 0.6 -89062700.PIT 360 0.75 2924 16.0 -9.1 -33.7 6.8 6.6 7.9 8.1 4.9 69 0.5 0.6 -89070800.AHN 246 0.75 2876 16.8 -6.5 -32.3 5.8 6.8 4.3 4.1 4.8 33 0.2 0.6 -89071100.DDC 791 0.75 1858 11.9 -8.1 -35.3 7.6 7.3 12.4 8.5 14.0 249 0.3 2.1 -89072900.SIL 8 0.75 4031 18.8 -6.8 -31.8 6.3 6.6 3.9 4.1 4.4 37 0.4 0.6 -89073000.PAH 126 0.75 3630 17.9 -7.0 -33.2 6.4 7.0 7.4 11.4 9.0 58 0.6 0.6 -89073100.TOP 268 0.75 2685 14.5 -6.4 -31.4 6.7 6.7 12.0 9.8 13.0 117 0.4 0.6 -89081200.GRB 210 0.75 1782 11.3 -14.8 -41.6 6.7 7.3 3.9 4.1 9.5 39 0.3 0.6 -89081900.HON 392 0.75 984 13.1 -7.6 -33.3 7.1 6.8 12.1 14.0 17.9 244 0.2 -999.0 -89102800.OUN 357 0.75 1679 12.0 -12.7 -39.4 6.8 7.3 8.3 10.1 27.1 115 0.4 1.0 -90033100.TBW 13 0.75 2515 14.8 -10.0 -38.4 5.6 7.7 12.0 14.0 15.0 135 0.6 0.6 -90042100.OUN 362 0.75 1915 12.4 -14.1 -40.9 6.5 7.3 13.1 25.3 31.9 138 1.3 1.7 -90042200.SEP 399 0.75 2775 13.3 -11.7 -40.8 6.5 7.9 8.1 10.2 20.8 98 0.7 1.0 -90042400.1M1 172 0.75 2374 12.8 -12.6 -40.0 6.7 7.5 6.6 14.0 8.3 56 0.9 0.9 -90052500.MAF 873 0.75 3262 13.1 -7.2 -34.0 7.9 7.2 12.4 22.0 30.6 97 1.3 1.8 -90060400.PIT 360 0.75 390 9.5 -12.5 -36.7 5.6 6.5 14.6 26.0 37.7 57 0.2 0.6 -90060700.TBW 13 0.75 3262 17.0 -8.6 -34.5 6.0 6.9 4.1 1.6 7.3 8 0.4 0.6 -90061000.AHN 246 0.75 2847 14.8 -8.2 -33.4 5.9 6.7 5.6 8.6 9.9 50 0.4 0.6 -90070300.SLI 8 0.75 3250 18.4 -5.7 -32.8 5.8 7.2 7.5 11.8 14.5 79 0.4 0.6 -90070800.TBW 13 0.75 5452 20.0 -8.1 -31.6 6.5 6.2 5.9 7.8 15.4 11 0.7 0.6 -90072200.CHS 13 0.75 3537 18.4 -7.5 -32.4 6.2 6.7 7.1 8.3 10.2 88 0.4 0.6 -90072200.PAH 126 0.75 2541 16.9 -5.6 -30.4 5.7 6.6 11.4 13.3 15.3 80 0.4 0.6 -90072700.DDC 791 0.75 3550 14.7 -7.0 -32.7 7.6 6.8 6.0 7.6 7.2 84 0.5 2.2 -90072800.TOP 268 0.75 3231 16.5 -7.8 -32.8 6.7 6.6 9.8 8.8 11.3 281 0.5 0.9 -90073100.JAN 91 0.75 2834 14.6 -7.3 -33.8 6.1 7.0 0.7 5.1 4.3 -3 0.3 0.6 -90080400.STC 315 0.75 2284 13.1 -12.5 -34.8 7.3 6.0 8.7 5.3 20.0 45 0.5 1.4 -90081400.ALB 86 0.75 1251 14.6 -7.6 -33.8 5.7 7.0 20.7 31.1 21.6 261 0.5 0.6 -90081400.MAF 873 0.75 1598 13.7 -7.1 -32.0 6.2 6.6 2.3 4.4 16.6 35 0.2 0.6 -90081700.CHS 13 0.75 3949 19.5 -6.9 -32.2 5.7 6.7 11.2 14.2 20.9 101 0.7 0.6 -90081900.DEN 1611 0.75 1982 11.7 -7.8 -35.3 7.6 7.4 6.4 10.2 22.1 25 0.3 1.7 -90082000.PIA 200 0.75 4350 19.3 -6.5 -31.2 6.2 6.5 9.4 12.0 9.9 67 0.7 0.6 -90082200.BNA 180 0.75 2619 15.5 -6.1 -32.3 6.1 6.9 8.7 9.1 12.7 -10 0.3 0.6 -90082300.GGG 124 0.75 3016 16.2 -5.9 -30.3 6.0 6.4 5.3 1.3 5.5 35 0.2 0.6 -90082500.OUN 357 0.75 2800 15.7 -6.4 -31.1 6.6 6.6 5.3 5.0 11.9 63 0.3 0.6 -90082500.OVN 400 0.75 3418 17.2 -7.1 -33.6 6.4 7.0 10.0 12.0 21.9 181 0.6 0.7 -90083000.ACY 23 0.75 2413 15.2 -9.3 -34.4 5.8 6.8 9.0 13.9 22.7 62 0.6 0.6 -90101700.MAF 873 0.75 2870 12.3 -12.5 -40.6 8.0 7.7 7.7 14.9 16.2 78 1.3 2.3 -91051700.TBW 13 0.75 3306 16.1 -7.5 -34.7 5.4 7.2 3.8 4.0 0.9 -5 0.3 0.6 -91060600.CKL 140 0.75 2864 16.3 -8.6 -33.4 6.4 6.6 6.2 8.9 11.4 21 0.5 0.6 -94062400.GGG 124 0.75 3754 18.0 -5.5 -30.6 6.3 6.6 8.2 11.0 14.2 98 0.5 0.6 -94062400.HTS 246 0.75 2798 16.5 -5.5 -30.1 5.3 6.5 4.7 8.5 15.0 39 0.2 0.6 -94070200.LCH 5 0.75 2754 17.0 -6.8 -32.4 6.4 6.8 12.4 10.7 11.0 84 0.4 0.6 -97061700.BMX 178 0.75 3829 18.2 -6.9 -31.5 5.9 6.5 6.9 12.4 13.0 48 0.6 0.6 -97062400.MAF 872 0.75 3310 14.1 -9.9 -32.7 8.9 6.1 13.0 11.5 8.6 108 1.1 1.6 -97081700.TBW 13 0.75 3152 17.4 -7.3 -32.7 6.2 6.8 1.8 2.6 4.4 8 0.3 0.6 -97081800.SLC 1288 0.75 931 8.3 -10.3 -36.9 8.5 7.2 13.6 16.1 22.9 203 0.3 1.4 -97082200.ILN 317 0.75 520 9.6 -16.3 -41.3 5.8 6.9 3.9 17.5 30.9 50 0.2 0.7 -98062500.JAN 101 0.75 3507 17.3 -6.1 -32.3 6.0 7.0 7.1 2.3 8.6 -1 0.3 0.7 -98081000.SHV 79 0.75 3464 16.8 -6.5 -33.5 5.9 7.2 4.2 4.8 1.1 42 0.3 0.6 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist_backup.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist_backup.txt old mode 100644 new mode 100755 index 901d5a2afe..8a0ed8aa98 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist_backup.txt +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/nlist_backup.txt @@ -1,1149 +1,1149 @@ -DATE / RAOB REPORT MUMR MUCAPE 500TEMP 7-5 LR 0-6SH 0-9SH 0-3SH SHIP MODELb SRH -91051100.MAF 6.00 14.9 4692 -10.8 8.8 13.2 18.1 14.2 1.9 2.70 -37 -95052300.DDC 6.00 15.3 4181 -9.6 7.5 19.4 26.8 23.4 1.9 3.00 325 -97061700.OUN 5.50 18.8 5751 -9.5 7.4 23.6 45.9 14.5 4.3 3.50 116 -06040300.LZK 5.00 13.7 3819 -14.9 8.0 26.6 32.6 20.9 3.9 3.40 251 -57070300.RAP 5.00 15.8 4359 -6.7 7.7 22.9 39.3 13.9 1.9 3.40 130 -90070800.BIS 5.00 16.6 3717 -9.8 7.7 29.8 42.2 12.5 3.3 2.40 202 -91052900.HON 5.00 15.2 3892 -12.3 8.0 40.7 36.0 25.0 5.7 3.50 269 -92072600.DDC 5.00 17.4 4794 -4.6 6.8 17.4 14.6 18.2 1.1 0.80 176 -96061200.DDC 5.00 13.7 2820 -8.3 7.6 20.3 15.8 12.9 1.2 2.50 142 -99012200.LZK 5.00 12.3 2240 -17.3 7.6 26.3 32.1 23.0 2.3 3.00 294 -99060100.DDC 4.75 15.9 4387 -11.3 8.0 27.7 38.0 15.3 4.2 3.50 209 -02042900.IAD 4.50 13.6 2553 -16.7 7.3 21.1 33.9 24.9 2.1 2.90 373 -02043000.FWD 4.50 19.4 5853 -10.9 8.0 29.7 37.1 14.6 7.0 3.10 151 -89060400.MAF 4.50 14.0 3939 -10.0 8.5 20.6 33.6 6.6 2.3 2.20 58 -89060700.SEP 4.50 15.6 3510 -7.9 7.0 24.8 47.4 9.0 1.8 2.40 130 -89062700.GSO 4.50 17.6 4349 -7.3 6.3 14.2 6.4 7.8 1.2 0.90 52 -89070300.SEP 4.50 18.5 5261 -7.6 8.4 22.6 1.2 12.9 3.4 2.90 222 -89080400.INL 4.50 17.4 3953 -11.5 8.3 18.6 29.2 7.3 2.9 1.00 36 -90051600.OUN 4.50 16.7 4398 -9.0 7.6 25.5 44.9 23.2 3.1 3.10 180 -91032800.FNT 4.50 11.3 1860 -17.3 7.6 47.0 45.4 26.8 3.1 2.90 431 -91042912.BRO 4.50 19.5 4471 -9.8 7.7 23.1 24.2 13.7 3.6 -999.00 254 -91072100.HON 4.50 20.1 5826 -6.1 6.8 22.8 33.9 14.3 2.6 1.90 180 -91081400.GTF 4.50 11.5 2524 -13.2 8.5 25.8 28.9 15.3 2.0 2.00 213 -92062800.AMA 4.50 16.0 4069 -10.3 7.9 22.8 27.5 16.9 2.9 3.20 150 -92062800.DDC 4.50 13.8 2750 -11.3 7.8 20.6 41.3 15.2 1.6 2.90 315 -92062900.SEP 4.50 17.4 3761 -9.6 7.8 21.8 15.6 13.7 2.5 2.80 248 -92073000.OVN 4.50 16.6 4366 -11.4 7.4 22.3 23.7 13.9 3.3 3.20 216 -92073000.TOP 4.50 16.6 4074 -10.0 7.5 22.5 22.1 11.8 2.7 2.40 164 -93050100.DDC 4.50 11.1 3206 -16.5 8.0 24.0 29.9 15.4 2.7 3.70 194 -93060800.OUN 4.50 17.0 4917 -9.1 7.1 30.6 26.7 9.7 3.9 2.60 195 -93062700.OVN 4.50 15.0 3720 -10.0 6.3 22.3 28.9 9.4 1.9 3.10 140 -93072400.BIS 4.50 15.3 3597 -9.8 5.8 21.0 33.2 14.9 1.6 2.30 263 -93092200.OVN 4.50 15.4 3685 -11.1 8.1 31.9 33.2 23.5 3.9 4.00 492 -93092200.TOP 4.50 16.8 3665 -8.1 6.5 21.3 37.9 21.3 1.7 1.30 502 -93101300.SEP 4.50 14.2 3151 -13.1 8.0 22.3 31.8 15.0 2.5 2.90 307 -93101800.SEP 4.50 15.7 3958 -10.6 7.0 31.7 30.5 23.2 3.5 2.20 441 -94040300.OUN 4.50 10.1 2075 -17.0 7.6 31.2 39.3 18.7 2.0 2.10 163 -94042600.SEP 4.50 16.3 4409 -11.5 7.4 26.7 26.2 21.2 3.9 3.30 138 -94060800.LBF 4.50 13.0 3400 -9.5 7.8 18.7 18.4 8.1 1.5 2.40 109 -95051700.DDC 4.50 15.6 4878 -10.8 8.5 26.6 40.7 8.9 4.4 2.60 43 -95060500.MAF 4.50 14.9 4358 -8.6 7.6 23.2 32.0 16.0 2.3 2.90 181 -95060900.MAF 4.50 17.8 5653 -8.1 8.1 18.7 33.5 12.8 2.9 2.90 83 -96030700.JAN 4.50 14.0 2362 -12.5 6.8 34.9 36.9 16.8 2.3 0.60 196 -96050500.IAD 4.50 12.1 2432 -15.2 7.2 25.0 25.5 15.9 1.9 1.90 36 -96051000.TOP 4.50 15.6 3884 -11.1 8.8 18.3 22.3 22.1 2.6 3.30 234 -96062700.TFX 4.50 13.9 3835 -10.9 8.3 37.1 44.3 21.8 4.3 1.60 297 -96081100.LBF 4.50 13.3 2360 -8.4 6.2 26.1 22.0 26.5 1.0 2.60 326 -96102100.OUN 4.50 12.7 2995 -12.9 7.5 20.3 28.4 15.6 1.8 3.00 71 -01070300.LBF 4.25 16.7 5584 -8.7 8.5 18.0 24.7 14.2 3.0 4.20 154 -03040600.FWD 4.25 12.4 2487 -14.3 7.3 31.5 51.8 17.1 2.4 2.90 341 -03050500.SGF 4.25 15.7 5169 -13.5 7.6 38.4 50.7 30.0 7.6 2.90 348 -03050518.BNA 4.25 16.0 2730 -12.9 7.1 37.0 37.2 18.3 3.5 -999.00 239 -03051000.MHX 4.25 17.1 4373 -10.5 7.3 22.7 23.2 14.1 3.1 2.10 146 -04040400.MAF 4.25 12.0 2746 -14.7 7.0 19.5 31.1 14.4 1.6 2.70 262 -04052200.AMA 4.25 13.7 4265 -8.7 7.9 21.5 23.9 13.6 2.1 2.10 176 -04053000.OUN 4.25 16.8 4526 -7.5 7.8 24.4 40.4 15.8 2.6 -999.00 224 -04062200.AMA 4.25 13.8 3828 -8.9 8.0 26.2 40.5 17.8 2.3 2.30 141 -04071200.GGW 4.25 11.0 2390 -13.7 8.6 22.3 32.0 17.1 1.6 1.90 99 -04071300.LBF 4.25 19.5 7183 -7.3 8.6 14.7 20.5 10.3 3.1 3.70 68 -04071318.ILX 4.25 22.1 6811 -10.9 7.9 18.7 21.9 15.5 5.8 2.60 131 -04081000.DNR 4.25 12.9 3415 -9.1 8.0 15.0 15.4 16.2 1.2 3.20 270 -05031400.JAN 4.25 11.1 1382 -15.7 7.6 25.5 49.7 19.2 1.1 2.80 161 -05042000.LBF 4.25 10.1 2460 -15.7 8.9 15.3 22.3 16.6 1.3 2.90 255 -05042200.SGF 4.25 12.6 2944 -13.3 6.8 21.3 15.6 15.1 1.7 2.20 193 -07080400.RAP 4.25 15.6 2983 -4.1 6.2 22.7 35.8 18.3 0.6 0.90 270 -08020600.SHV 4.25 13.5 2312 -14.1 7.3 32.4 43.7 25.8 2.5 1.80 212 -02042000.MAF 4.00 12.9 2974 -8.1 6.9 24.3 41.7 19.0 1.2 2.50 133 -02061300.DDC 4.00 19.5 6234 -6.9 7.6 19.8 32.7 17.2 3.0 3.70 126 -03050300.BMX 4.00 15.2 4593 -15.7 7.9 32.4 30.5 8.1 6.7 2.90 51 -04071318.DVN 4.00 20.8 6090 -11.1 8.4 25.9 22.3 22.5 7.3 2.80 191 -06050600.MAF 4.00 12.4 3533 -12.3 8.2 33.6 48.0 19.3 3.5 2.00 174 -06071700.INL 4.00 14.1 3719 -11.1 8.4 26.3 29.8 19.9 3.1 2.40 328 -06092221.SGF 4.00 17.6 5071 -6.7 5.3 31.6 37.0 21.0 2.4 1.10 202 -89061100.AMA 4.00 15.8 3666 -8.7 7.6 11.0 19.2 11.1 1.0 -999.00 87 -89062700.DDC 4.00 14.3 2840 -8.4 7.6 19.4 19.2 12.7 1.2 2.20 167 -89071800.LBF 4.00 15.4 3622 -9.4 8.1 38.9 37.6 22.9 3.9 2.90 361 -90051500.AMA 4.00 14.8 4543 -9.9 8.2 24.7 33.8 19.2 3.2 2.20 473 -90051900.AMA 4.00 11.5 2732 -9.3 7.7 26.1 30.4 18.5 1.4 2.10 301 -90060900.TOP 4.00 18.5 5571 -10.1 7.3 22.6 16.4 14.8 4.1 2.70 252 -90070100.DAY 4.00 16.6 3541 -9.4 7.1 19.9 24.5 8.6 1.8 1.80 154 -90090200.RAP 4.00 11.3 1762 -7.4 7.5 23.6 32.7 14.1 0.6 2.10 181 -91041300.SEP 4.00 16.9 5008 -10.6 6.8 21.8 27.4 12.2 3.2 3.40 137 -93071600.RAP 4.00 14.1 3230 -7.5 7.7 25.0 35.8 18.6 1.6 3.20 97 -93072300.HON 4.00 15.7 3720 -8.1 6.0 19.1 22.5 15.4 1.3 1.50 130 -95050600.FTD 4.00 15.1 2036 -11.1 7.1 21.2 37.5 20.8 1.2 0.60 304 -95051600.JAN 4.00 17.9 4861 -10.9 7.8 14.9 18.5 8.6 2.6 2.50 -35 -95072500.FTD 4.00 15.4 2897 -10.0 9.2 19.1 19.8 12.8 1.9 -999.00 168 -95072600.DDC 4.00 18.3 5696 -10.1 8.8 21.3 19.2 17.1 4.7 3.30 238 -95102700.SGF 4.00 12.5 2166 -13.8 6.9 21.9 29.4 25.7 1.3 1.60 267 -96052300.LBF 4.00 13.5 2915 -11.1 8.0 27.8 43.7 18.5 2.3 2.90 303 -97082200.LBF 4.00 15.7 3974 -9.7 7.4 26.4 37.5 17.4 2.8 3.30 321 -98050800.FFC 4.00 17.3 4120 -12.3 7.7 31.0 51.6 17.1 5.0 2.20 172 -98063000.TOP 4.00 21.8 6490 -5.3 7.2 24.4 32.6 18.1 3.1 1.70 230 -03040400.OUN 3.75 11.9 2640 -15.1 7.3 24.0 23.9 13.4 2.0 2.30 187 -95051900.BMX 3.75 16.5 3370 -9.9 6.6 20.6 25.5 16.9 1.8 0.60 246 -01040400.SGF 3.65 12.8 3277 -15.1 8.3 22.4 28.9 17.2 2.8 3.10 310 -01041500.DDC 3.65 13.1 3892 -18.3 9.0 43.1 54.7 24.4 8.6 2.50 233 -01050700.LZK 3.65 14.7 3512 -12.9 5.9 18.7 26.3 7.3 1.8 3.40 77 -01050700.SHV 3.65 14.8 2945 -12.5 6.5 15.7 22.1 9.0 1.3 1.70 110 -01051800.AMA 3.65 13.9 4695 -10.5 8.6 13.2 22.8 16.1 1.8 2.10 86 -01052500.JAN 3.65 13.5 3446 -15.1 7.5 21.8 31.4 17.4 2.7 2.70 240 -01061400.DDC 3.65 15.7 5244 -8.9 8.0 28.1 28.2 19.8 3.9 2.50 384 -01062100.DDC 3.65 15.2 4428 -10.7 7.8 19.0 25.2 13.4 2.5 3.20 400 -01071800.ABR 3.65 17.5 5177 -9.9 8.4 19.5 28.2 9.6 3.5 3.90 136 -01072100.GGW 3.65 13.5 3114 -10.7 7.7 28.3 30.5 15.8 2.3 2.80 354 -02051100.MAF 3.65 14.5 4658 -9.3 8.4 23.1 40.3 14.8 2.9 2.20 132 -02051200.TOP 3.65 15.8 4489 -11.9 8.1 26.0 26.5 13.7 4.2 3.30 224 -02060500.RNK 3.65 17.9 5399 -9.7 6.9 4.0 7.3 8.7 0.6 3.20 54 -02062400.ABR 3.65 17.2 5093 -10.5 8.2 26.3 30.9 16.9 4.7 3.50 187 -02091900.OUN 3.65 15.7 4268 -6.1 6.7 20.8 23.4 17.8 1.4 3.00 308 -03062300.OAX 3.65 18.7 6203 -9.3 8.6 13.6 22.9 12.3 3.0 4.20 237 -98040800.ILX 3.65 10.2 1354 -19.7 7.2 21.2 25.1 20.1 1.0 2.60 180 -98052200.SGF 3.65 17.1 4719 -9.9 7.8 22.4 23.1 13.8 3.3 2.30 232 -99030600.LZK 3.65 11.7 1922 -18.5 8.2 22.8 39.2 21.4 1.9 2.10 360 -99050400.OUN 3.65 15.6 5195 -14.9 8.4 21.3 22.0 16.5 5.1 4.70 343 -99072600.LBF 3.65 16.4 4375 -6.7 7.9 12.9 16.1 9.5 1.2 2.60 60 -01041000.SGF 3.50 13.0 3476 -14.5 7.9 21.6 30.3 12.5 2.7 2.60 141 -01061500.FWD 3.50 17.3 4260 -9.7 7.9 15.1 9.7 11.1 2.0 2.20 74 -02081200.DDC 3.50 14.0 3415 -8.7 8.0 15.7 27.7 10.7 1.2 3.10 157 -89070300.STC 3.50 15.6 3556 -8.2 7.0 15.8 21.4 8.5 1.2 1.40 128 -90031400.OUN 3.50 14.6 3950 -16.1 7.2 20.2 49.4 12.3 3.2 2.90 169 -90040600.SEP 3.50 12.4 3764 -14.9 7.8 25.2 36.8 15.4 3.3 2.30 305 -90060900.IAD 3.50 17.2 3994 -10.9 7.1 23.7 20.0 18.3 3.0 0.90 203 -90061900.BIS 3.50 11.1 1968 -13.5 8.2 28.4 38.0 17.4 1.6 2.90 257 -96062000.OAX 3.50 16.3 4081 -9.8 8.6 19.0 24.4 18.9 2.5 -999.00 271 -97062100.LBF 3.50 17.3 6058 -9.3 8.8 23.1 25.1 13.9 4.7 3.70 129 -98052100.TOP 3.50 16.5 4680 -12.5 8.4 10.5 23.7 9.8 2.0 3.80 100 -98052500.OUN 3.50 18.0 5688 -10.7 8.1 21.9 28.7 9.9 4.6 4.20 172 -98062000.OUN 3.50 19.0 6048 -7.1 7.8 15.4 11.2 13.7 2.3 3.90 209 -06070200.GRB 3.25 15.4 3255 -9.3 6.6 17.0 24.9 14.7 1.2 1.50 99 -91060500.DDC 3.25 16.9 4631 -7.9 6.5 15.3 15.4 11.0 1.5 3.50 74 -00050400.FWD 3.00 13.2 2731 -14.3 6.3 21.7 28.5 19.0 1.7 3.00 327 -00062900.MAF 3.00 14.8 3565 -6.3 6.3 10.5 16.7 9.6 0.5 1.80 29 -00080600.OAX 3.00 19.0 5525 -7.1 7.5 15.0 22.8 9.4 2.0 3.10 56 -01051900.LZK 3.00 16.6 4269 -12.5 8.1 18.5 25.8 9.9 3.2 2.70 98 -01053000.AMA 3.00 16.4 5827 -9.7 8.2 26.1 29.7 25.0 4.7 2.80 268 -01090900.FWD 3.00 17.1 4304 -8.9 8.2 14.1 12.0 7.7 1.8 2.70 97 -03042100.SHV 3.00 15.5 2947 -13.5 7.5 24.0 38.0 14.3 2.6 0.90 110 -03050420.SGF 3.00 15.8 4524 -11.9 7.1 35.4 47.9 25.2 5.1 3.20 480 -03062400.LBF 3.00 18.6 6189 -8.7 8.1 30.8 31.6 21.7 5.9 4.80 381 -03062800.DDC 3.00 11.4 2329 -9.3 6.7 16.9 26.8 10.8 0.7 2.20 138 -04041900.OAX 3.00 11.9 3136 -15.1 8.2 33.8 44.9 20.5 3.7 1.90 394 -04042200.OUN 3.00 12.2 2363 -13.5 7.0 24.3 33.8 16.9 1.6 2.70 385 -04051700.DDC 3.00 10.0 2200 -11.9 8.4 31.7 30.2 20.5 1.6 1.50 390 -04052300.OAX 3.00 15.6 4333 -12.3 7.6 32.4 28.9 19.6 4.9 3.00 289 -04070200.AMA 3.00 16.9 5137 -8.1 7.4 14.0 16.6 18.0 1.7 3.00 80 -04081000.DDC 3.00 14.6 3147 -9.7 7.7 21.0 22.0 13.0 1.7 3.00 222 -06042412.LMN 3.00 14.1 3248 -12.9 8.2 25.4 28.7 16.6 2.9 3.20 413 -06042500.OUN 3.00 15.5 4007 -12.3 8.6 20.1 21.2 15.4 3.2 3.30 105 -06052500.SGF 3.00 15.6 3470 -11.1 7.6 14.3 7.3 13.6 1.5 2.00 162 -06052700.BNA 3.00 16.1 3535 -8.3 5.9 12.8 17.2 17.7 0.9 0.70 196 -06052800.BIS 3.00 12.5 3434 -11.1 8.1 11.3 12.7 10.5 1.0 1.80 74 -72081200.YRM 3.00 10.9 1989 -14.2 8.3 24.6 35.0 14.0 1.5 2.40 132 -89060500.OUN 3.00 12.5 1640 -11.6 7.0 15.7 23.9 8.8 0.6 0.70 53 -89060700.AMA 3.00 15.4 4752 -9.5 8.5 30.5 55.6 21.7 4.3 2.40 303 -90051500.OUN 3.00 16.8 4798 -10.7 7.8 19.8 29.7 12.5 3.2 4.20 186 -90052700.OUN 3.00 17.5 4621 -8.8 7.6 23.8 25.1 20.4 3.1 3.20 255 -91032700.TOP 3.00 12.7 2763 -12.3 6.8 27.7 31.7 21.6 1.9 2.50 279 -91040912.1M1 3.00 14.2 3450 -15.2 8.0 19.7 20.8 11.5 2.8 -999.00 134 -91052700.DDC 3.00 17.0 5493 -10.5 8.4 21.7 29.3 13.3 4.2 2.90 81 -92032600.TBW 3.00 12.6 2104 -14.0 6.5 32.2 37.0 18.6 1.8 1.10 195 -92062700.MAF 3.00 13.9 3224 -8.2 7.7 23.7 38.8 13.0 1.6 2.50 253 -92070500.OVN 3.00 17.3 5051 -9.3 7.4 21.8 33.3 16.1 3.1 3.50 243 -93050600.MAF 3.00 13.9 3784 -9.6 7.2 27.0 25.4 18.6 2.3 2.50 149 -93060600.HAT 3.00 16.0 4948 -13.5 8.3 15.5 17.2 12.6 3.2 3.90 70 -93070200.DDC 3.00 17.1 4895 -5.2 7.2 16.4 21.4 13.3 1.2 2.80 237 -93070900.OVN 3.00 19.7 5546 -6.8 6.9 29.4 24.3 16.9 3.6 0.60 345 -93082300.DDC 3.00 13.3 2608 -7.8 7.7 19.5 27.0 13.1 1.0 2.00 83 -93091900.AMA 3.00 12.4 1911 -9.0 7.7 32.7 35.4 16.5 1.3 2.40 264 -93091900.DDC 3.00 12.4 1954 -10.4 7.2 29.5 46.6 16.8 1.3 2.80 233 -94032800.CKL 3.00 15.3 2066 -9.6 6.3 38.6 36.3 30.5 1.8 0.60 429 -94052600.FNT 3.00 10.8 2240 -16.3 6.1 17.8 25.8 12.8 1.0 2.40 113 -94060600.DDC 3.00 14.8 4882 -8.8 8.7 15.6 18.6 13.1 2.0 2.10 248 -95021400.PBI 3.00 16.5 2433 -11.0 5.9 27.1 33.4 13.8 1.7 0.60 117 -95043000.FTD 3.00 15.0 4416 -13.3 8.1 21.9 31.7 15.6 3.7 3.40 166 -95062300.LBF 3.00 12.9 2962 -11.1 7.9 21.0 19.8 15.3 1.7 2.80 220 -95071500.LBF 3.00 14.4 3052 -7.0 6.5 15.9 24.7 13.9 0.8 2.10 159 -95072400.DDC 3.00 15.9 3645 -9.9 8.2 18.2 32.6 11.8 2.0 3.60 31 -95082300.INL 3.00 15.4 3023 -11.6 8.0 30.9 26.5 25.4 3.2 2.10 694 -95082700.GGW 3.00 11.7 3094 -12.6 8.3 26.8 41.0 13.6 2.4 1.70 162 -96033100.SHV 3.00 12.7 2891 -17.1 7.6 27.4 35.5 20.1 3.1 3.10 163 -96042000.ILX 3.00 12.9 2394 -14.6 7.1 27.0 39.5 16.4 2.1 -999.00 249 -96052700.OUN 3.00 15.2 3034 -9.4 6.9 29.8 33.6 22.5 2.1 2.00 330 -96061400.UNR 3.00 13.1 3801 -11.0 8.4 18.0 14.8 12.4 2.0 2.00 63 -96062012.LBF 3.00 15.2 3418 -8.6 7.9 22.6 25.0 16.5 1.9 3.30 380 -96070800.LBF 3.00 15.3 3341 -6.4 7.0 30.0 41.5 20.6 1.6 2.20 390 -97052600.OUN 3.00 17.2 5143 -7.7 5.9 30.4 32.4 15.0 2.9 2.60 148 -97061000.FWD 3.00 15.6 2699 -9.9 7.0 18.7 24.1 10.9 1.3 1.30 98 -98052400.DDC 3.00 11.6 2630 -12.9 6.7 22.0 27.7 9.8 1.4 2.30 101 -98061400.OAX 3.00 13.3 2830 -10.5 7.7 24.4 45.4 15.3 1.8 3.40 219 -98062500.ABR 3.00 16.3 4448 -13.7 8.8 17.4 28.7 11.2 3.6 3.70 42 -98062500.BIS 3.00 15.5 4591 -13.3 8.1 15.9 15.4 15.5 2.9 3.00 89 -98062900.TOP 3.00 22.0 6895 -7.7 7.0 20.6 27.3 19.3 4.0 2.40 335 -99060200.FWD 3.00 17.3 4928 -11.5 8.8 15.0 30.3 15.3 3.1 4.50 171 -00022500.AMA 2.75 10.3 3614 -18.5 8.5 26.8 48.5 13.1 3.8 1.70 107 -00051300.DTX 2.75 16.9 4524 -8.5 7.7 24.1 18.5 20.2 2.9 2.40 328 -00052700.OUN 2.75 18.3 5870 -10.1 8.4 21.5 32.8 12.8 4.6 4.00 117 -00061200.BIS 2.75 11.3 2000 -13.1 7.5 22.0 28.0 10.2 1.2 2.50 306 -00061400.AMA 2.75 16.5 5758 -4.9 7.6 23.8 32.0 19.9 2.0 2.50 244 -00062000.LBF 2.75 14.9 4028 -8.5 6.8 18.8 23.9 11.9 1.6 3.00 96 -00071000.GGW 2.75 15.6 3180 -10.9 7.0 18.4 13.5 23.2 1.7 2.60 248 -00071000.LBF 2.75 18.1 5871 -5.5 7.8 14.3 19.9 10.7 1.5 3.50 146 -00071700.MHX 2.75 15.1 2929 -12.3 7.2 18.2 29.9 7.9 1.7 2.30 81 -00072100.LBF 2.75 15.3 3073 -11.3 7.8 26.5 39.4 16.9 2.6 2.00 223 -00072500.LBF 2.75 17.1 5901 -8.9 8.5 24.5 29.4 22.2 4.4 2.90 162 -00072700.OAX 2.75 18.5 5048 -9.7 8.0 21.8 23.2 16.7 3.8 2.60 215 -00121618.BMX 2.75 13.2 2219 -14.1 6.7 32.9 45.8 25.0 2.2 0.90 266 -01040400.LZK 2.75 15.2 4223 -15.1 8.5 18.1 24.8 11.9 3.5 3.10 105 -01042100.OAX 2.75 12.4 3283 -15.3 7.7 28.1 32.7 23.5 3.2 2.40 282 -01050620.LMN 2.75 15.4 4496 -16.1 7.3 11.5 20.9 7.3 2.2 3.10 60 -01052500.FFC 2.75 11.7 2338 -14.5 6.4 18.1 21.4 19.6 1.1 2.50 240 -01060600.AMA 2.75 14.9 4665 -8.9 7.2 15.8 15.6 11.9 1.7 2.30 191 -01060800.DNR 2.75 13.9 3440 -8.7 7.2 25.3 21.9 7.4 1.8 3.10 -26 -01061000.ABR 2.75 13.8 3453 -12.1 7.8 24.6 32.3 16.6 2.6 3.60 158 -01061400.OAX 2.75 17.2 4956 -11.3 9.0 20.4 25.5 18.5 4.2 3.80 153 -01061700.LMN 2.75 14.1 4093 -10.7 8.0 19.4 26.9 9.3 2.3 3.50 195 -01061700.TOP 2.75 15.7 4594 -13.7 8.5 22.1 26.6 15.7 4.4 3.40 214 -01061900.MPX 2.75 15.6 5114 -11.9 9.2 33.1 31.9 19.0 6.9 3.40 154 -01070100.RAP 2.75 14.3 3235 -10.7 7.7 30.8 40.7 12.9 2.8 2.60 114 -01071800.INL 2.75 17.0 4580 -12.9 7.8 11.9 12.8 11.8 2.2 0.80 154 -01071900.ABR 2.75 17.5 5356 -10.5 8.8 18.1 22.7 3.4 3.7 2.70 35 -01071900.BIS 2.75 17.8 5738 -9.9 8.6 21.8 28.8 14.1 4.5 2.90 183 -01072500.GGW 2.75 11.5 1714 -11.3 6.9 26.7 32.1 18.2 1.0 2.20 350 -01112418.BMX 2.75 15.1 2902 -11.3 6.1 26.9 31.9 22.2 1.9 0.80 328 -02051800.DRT 2.75 16.0 5077 -10.5 8.1 8.8 6.3 5.2 1.5 2.60 15 -02052400.AMA 2.75 13.8 4729 -13.3 8.3 28.8 21.8 18.5 4.9 2.30 258 -02060500.AMA 2.75 13.2 2947 -11.5 7.6 32.1 45.0 17.9 2.6 2.70 309 -02061300.AMA 2.75 13.7 3027 -8.5 8.4 29.6 33.0 18.7 2.1 2.50 65 -02062400.BIS 2.75 16.0 3559 -9.7 6.8 28.0 24.8 25.2 2.5 2.40 298 -02062500.ABR 2.75 15.1 4208 -7.1 6.8 19.1 19.3 11.1 1.4 3.10 20 -02072000.TOP 2.75 17.5 4986 -7.5 7.3 10.0 12.7 8.5 1.1 2.70 197 -02072700.TOP 2.75 19.3 6406 -5.3 6.9 18.2 19.3 9.1 2.0 2.60 131 -02081200.LBF 2.75 13.3 3735 -9.9 8.7 13.1 11.8 10.5 1.3 2.10 222 -03031300.SHV 2.75 13.5 2901 -15.3 7.1 17.1 24.1 11.0 1.7 2.00 162 -03040618.LZK 2.75 13.1 2556 -15.9 7.6 35.1 38.9 28.4 3.4 3.10 600 -03042500.LZK 2.75 13.8 3423 -15.7 7.6 20.9 31.0 20.0 2.8 3.30 212 -03042600.BMX 2.75 14.2 3921 -13.3 6.2 35.8 33.5 26.6 3.9 2.70 89 -03042900.SGF 2.75 13.1 3399 -16.7 8.5 5.0 19.6 4.8 0.7 2.80 53 -03050100.TOP 2.75 13.0 3922 -14.1 7.8 17.2 19.6 13.9 2.3 2.70 117 -03050618.SGF 2.75 15.6 5492 -14.7 7.7 32.0 40.6 17.8 7.4 2.80 313 -03050700.FWD 2.75 17.8 5303 -9.7 7.1 30.4 36.2 8.4 4.7 3.50 126 -03051000.OUN 2.75 16.8 5328 -11.1 8.3 27.5 34.8 16.8 5.4 3.60 182 -03051400.SHV 2.75 16.7 3920 -9.5 7.2 27.2 37.0 19.3 2.9 0.80 389 -03051600.AMA 2.75 14.1 3706 -10.3 8.9 42.9 37.7 34.9 4.9 -999.00 632 -03051700.SHV 2.75 16.3 3995 -10.9 7.4 23.2 13.9 19.6 2.9 2.70 242 -03060500.AMA 2.75 11.9 2647 -11.9 7.6 23.0 28.5 13.1 1.5 2.10 167 -03061400.AMA 2.75 12.3 3153 -13.3 8.3 21.7 24.7 13.7 2.2 2.10 35 -03091000.DDC 2.75 14.8 3620 -7.7 7.5 12.1 15.8 11.3 0.9 3.00 233 -03091100.MAF 2.75 13.3 2808 -6.5 6.8 10.3 9.0 7.4 0.4 1.40 80 -03100600.AMA 2.75 12.2 2542 -10.3 6.4 24.1 30.2 12.9 1.2 2.50 50 -04032718.DDC 2.75 13.2 4133 -17.3 8.0 24.6 26.6 14.4 4.4 2.30 143 -04032800.OUN 2.75 12.6 2904 -15.9 7.8 23.3 31.1 16.4 2.5 2.80 315 -04040500.CRP 2.75 14.9 2478 -12.1 6.7 22.4 20.6 7.0 1.6 0.60 184 -04050600.WAL 2.75 9.3 1861 -21.3 7.2 20.2 28.3 21.3 1.3 1.40 239 -04051100.DNR 2.75 10.6 3995 -12.9 9.2 28.3 16.6 18.2 3.4 1.50 379 -04051223.LMN 2.75 15.9 4076 -10.5 7.4 22.7 30.4 21.9 2.7 2.40 304 -04051300.OUN 2.75 16.8 5740 -11.5 8.2 15.2 20.9 12.4 3.3 3.60 131 -04053000.TOP 2.75 15.9 3882 -12.9 8.7 22.4 15.3 14.8 3.7 3.20 295 -04060300.FWD 2.75 16.9 4767 -11.1 8.7 19.1 24.1 14.1 3.5 -999.00 157 -04070500.DDC 2.75 14.3 3819 -10.3 8.3 18.6 30.5 14.4 2.1 2.50 161 -05022200.FFC 2.75 11.4 1389 -16.3 7.0 28.5 35.4 20.7 1.2 1.70 225 -05041800.AMA 2.75 9.4 1767 -17.3 8.7 19.6 22.9 15.5 1.2 1.90 211 -05042100.DDC 2.75 13.2 4722 -15.3 8.6 16.1 14.9 15.2 3.1 2.10 174 -05042300.JAN 2.75 13.6 2558 -14.7 7.1 28.5 34.1 19.9 2.5 2.70 183 -05051000.FWD 2.75 15.5 4841 -11.5 6.7 18.0 25.9 9.5 2.5 2.90 152 -05092300.ILX 2.75 14.1 1858 -8.1 6.9 21.5 16.8 11.5 0.7 0.80 121 -06031218.TOP 2.75 12.6 2814 -17.9 8.5 44.8 54.9 33.9 5.7 2.70 723 -06041400.DVN 2.75 11.2 1524 -15.7 8.3 30.6 30.3 15.8 1.6 3.40 263 -06042000.BMX 2.75 13.1 2242 -11.9 7.1 21.7 27.0 11.3 1.3 2.10 122 -06050300.DRT 2.75 13.7 3549 -12.1 8.5 14.2 19.0 5.1 1.7 2.10 74 -06050500.MAF 2.75 11.5 3709 -12.1 8.1 27.6 34.4 21.7 2.7 1.70 372 -06050718.CHS 2.75 12.9 2580 -12.5 6.0 17.7 18.8 15.9 1.1 2.00 177 -06050800.MAF 2.75 11.9 2440 -12.5 8.0 33.3 51.2 22.1 2.3 2.30 327 -06062200.DDC 2.75 12.7 2406 -8.7 8.1 21.1 24.9 11.0 1.1 2.40 175 -06081000.BIS 2.75 13.0 2589 -8.9 7.5 19.1 18.8 8.8 1.0 2.60 147 -06082600.DDC 2.75 16.5 3488 -5.5 6.5 20.2 26.5 17.6 1.0 0.80 141 -07021400.BMX 2.75 9.9 1032 -19.1 7.0 20.7 36.3 19.5 0.7 2.40 245 -58042200.FWH 2.75 13.3 3338 -16.1 7.8 37.0 49.4 25.5 4.9 2.40 276 -89060200.MAF 2.75 14.1 3193 -10.4 7.9 24.5 27.4 8.5 2.2 2.80 104 -89060300.MAF 2.75 11.9 2291 -8.4 7.6 19.3 32.2 13.3 0.8 2.20 147 -89060300.TOP 2.75 13.7 2623 -12.6 7.0 19.5 39.7 12.4 1.5 2.00 118 -89061300.AMA 2.75 14.4 3611 -10.8 8.1 15.8 22.1 9.9 1.7 3.00 79 -89062600.RAP 2.75 11.5 2246 -13.8 7.8 31.3 30.4 20.0 2.1 2.60 301 -89081600.AMA 2.75 12.8 2669 -7.1 6.9 17.0 24.9 10.5 0.7 2.50 158 -89082200.HON 2.75 15.6 4160 -9.4 6.9 22.9 28.9 14.8 2.3 3.30 107 -89082200.OMA 2.75 17.9 4223 -8.3 7.0 22.2 45.4 15.0 2.3 0.90 138 -89082200.STC 2.75 16.2 3346 -11.1 6.9 20.6 30.6 11.9 2.0 1.20 173 -89082900.STC 2.75 14.6 1959 -10.0 6.8 26.3 44.7 18.0 1.2 1.10 147 -89090400.LBF 2.75 17.3 4599 -8.6 8.3 29.6 38.8 8.6 4.0 3.30 223 -90021600.JAN 2.75 15.2 2047 -10.9 6.6 20.9 34.6 18.9 1.1 -999.00 124 -90031400.PIA 2.75 12.4 2115 -14.4 6.9 18.1 24.1 15.3 1.1 2.60 206 -90041700.OUN 2.75 13.6 3717 -15.0 8.3 11.5 20.5 17.2 1.7 3.80 152 -90042800.GGG 2.75 12.9 2263 -14.9 6.6 14.1 25.3 12.8 1.0 2.80 84 -90050100.AHN 2.75 14.9 4557 -12.6 7.7 14.7 9.3 19.7 2.3 3.40 92 -90051700.GGG 2.75 17.5 3234 -8.3 7.2 24.7 35.1 17.6 2.0 0.60 304 -90051900.LBF 2.75 12.1 3954 -13.9 8.6 25.1 24.6 16.2 3.4 2.00 398 -90052000.OUN 2.75 15.3 4565 -10.8 7.1 13.7 14.7 12.1 1.8 3.10 94 -90053100.GGG 2.75 19.3 4743 -5.7 6.1 27.2 25.7 21.5 2.1 0.70 317 -90060200.LBF 2.75 13.6 3719 -10.8 7.9 15.6 29.4 16.4 1.6 2.40 89 -90060200.STC 2.75 13.4 2697 -13.3 8.5 18.6 17.2 10.4 1.8 2.20 132 -90061900.LBF 2.75 19.2 7070 -6.1 8.4 30.2 38.1 18.5 5.0 3.60 266 -90070300.BIS 2.75 21.3 6982 -6.3 8.2 23.0 29.6 14.9 4.2 4.60 172 -90070700.BIS 2.75 14.9 3274 -7.5 6.9 19.0 25.7 12.9 1.1 2.20 316 -90081100.LBF 2.75 14.8 3971 -9.0 7.5 25.6 21.5 14.3 2.4 2.90 282 -90082800.SSM 2.75 18.2 5115 -8.5 6.2 31.6 29.9 20.5 3.7 1.10 334 -90090600.STC 2.75 19.5 4899 -6.8 6.2 21.0 17.1 14.7 2.0 1.00 294 -91032200.UMN 2.75 11.5 2632 -15.3 7.0 33.0 35.3 18.8 2.5 2.50 371 -91032700.DDC 2.75 12.4 3132 -14.2 8.2 40.7 44.0 18.9 4.4 2.10 160 -91040300.OUN 2.75 10.1 1560 -19.8 7.3 22.6 41.7 15.1 1.2 1.50 275 -91041300.OUN 2.75 14.1 4063 -13.7 8.0 22.0 25.1 17.1 3.3 2.90 205 -91042700.GGG 2.75 18.9 5164 -10.7 8.2 18.9 27.6 12.4 3.8 2.70 209 -91042700.OUN 2.75 16.6 4751 -11.5 7.0 23.6 26.4 20.6 3.6 3.70 376 -91042800.GGG 2.75 18.9 4554 -10.5 7.2 29.5 19.6 15.4 4.6 2.20 140 -91051100.AMA 2.75 15.6 5629 -10.7 9.0 16.5 21.5 14.5 3.3 2.50 314 -91051200.RAP 2.75 14.1 4430 -11.0 7.9 23.5 33.5 26.6 3.0 2.50 437 -91051700.UMN 2.75 15.9 3299 -10.6 7.6 16.1 11.8 14.4 1.6 1.90 174 -91051800.UMN 2.75 15.1 3444 -11.0 7.4 11.9 21.0 9.4 1.2 1.20 59 -91052500.AMA 2.75 13.7 3416 -10.5 7.0 17.4 13.8 17.0 1.4 2.50 124 -91053000.OVN 2.75 16.8 4446 -10.2 6.8 18.2 19.0 14.3 2.2 2.70 31 -91053000.RAP 2.75 10.9 2814 -15.7 8.1 14.5 28.4 13.0 1.3 2.00 159 -91060500.OVN 2.75 14.6 2813 -10.1 6.5 17.1 19.6 8.4 1.1 3.10 177 -91061500.BIS 2.75 13.0 2379 -11.9 6.6 22.5 25.2 13.2 1.3 2.60 152 -91061500.GRB 2.75 17.6 3430 -8.7 6.7 13.9 17.0 21.7 1.2 0.60 161 -91061900.LBF 2.75 13.0 3600 -12.0 8.6 15.2 20.9 13.5 1.7 2.60 219 -91062000.HON 2.75 13.9 2691 -10.5 7.0 22.1 20.0 16.1 1.4 1.20 282 -91070500.BIS 2.75 13.3 2941 -9.3 6.4 21.4 26.6 19.3 1.2 2.40 206 -91070500.GGW 2.75 11.4 2308 -9.9 7.0 17.5 23.9 6.7 0.8 2.20 144 -91072200.HON 2.75 19.3 4474 -6.8 7.2 17.3 24.1 11.1 1.7 -999.00 198 -92021500.UMN 2.75 10.2 1724 -16.9 6.4 33.2 28.2 24.2 1.5 2.20 289 -92030600.1M1 2.75 11.5 2572 -21.1 7.2 22.5 26.7 17.3 2.4 2.30 194 -92060500.AMA 2.75 13.4 2870 -9.4 7.5 17.5 25.9 12.2 1.1 2.60 249 -92061200.MAF 2.75 13.8 2387 -8.2 7.4 26.7 34.6 13.3 1.3 2.00 178 -92061300.AMA 2.75 14.7 2821 -8.8 7.2 19.1 36.4 12.0 1.2 2.70 165 -92061900.BIS 2.75 11.0 1791 -14.4 6.9 27.4 24.4 13.0 1.3 2.50 106 -92061900.DDC 2.75 12.8 2598 -8.3 7.9 25.1 40.5 15.7 1.3 2.70 114 -92062700.AMA 2.75 14.1 3165 -10.0 7.7 16.6 29.9 12.4 1.4 2.90 191 -92073000.LBF 2.75 15.0 3544 -10.3 7.9 25.7 33.8 22.0 2.6 3.00 335 -92101600.SEP 2.75 14.6 3654 -12.1 7.7 16.4 22.7 12.6 1.9 2.90 227 -93033100.1M1 2.75 11.9 2471 -15.1 7.2 30.2 27.1 17.8 2.3 2.80 54 -93033100.UMN 2.75 11.1 2598 -16.5 6.4 29.7 28.9 19.7 2.2 2.10 117 -93040200.WAL 2.75 10.9 1625 -18.5 7.3 30.7 48.4 26.8 1.7 2.40 200 -93042000.GGG 2.75 12.4 2342 -13.3 8.0 26.7 28.4 17.5 2.0 2.70 156 -93042500.UMN 2.75 11.4 2317 -14.6 6.9 25.2 33.1 18.2 1.6 2.40 198 -93042800.MAF 2.75 10.4 1494 -10.6 6.9 19.6 25.8 12.9 0.5 1.80 150 -93042900.MAF 2.75 11.7 2435 -10.9 7.1 29.3 37.4 20.8 1.5 2.20 551 -93050100.AMA 2.75 11.6 4085 -14.5 8.1 25.7 15.8 15.3 3.4 1.90 234 -93050600.AMA 2.75 13.2 4478 -13.6 8.6 34.6 38.4 16.6 5.7 2.00 340 -93051600.DDC 2.75 12.8 3614 -9.8 6.6 19.4 23.7 12.6 1.4 2.50 161 -93061900.AMA 2.75 12.8 2140 -7.8 7.0 22.7 23.3 14.4 0.8 1.90 146 -93062400.DEN 2.75 11.7 3442 -9.6 8.8 32.0 42.3 15.8 2.6 1.80 211 -93062400.LBF 2.75 16.0 3944 -8.6 8.1 21.9 33.8 18.1 2.3 2.80 178 -93070500.DDC 2.75 17.1 4186 -5.4 6.7 30.6 34.9 16.6 1.9 1.20 146 -93070700.AMA 2.75 17.0 5327 -4.7 7.8 21.3 20.0 11.4 1.7 3.80 127 -93070700.DDC 2.75 17.0 5334 -6.0 7.2 27.9 28.2 16.5 2.6 3.10 154 -93090400.IAD 2.75 15.6 2779 -5.9 5.7 15.2 15.6 12.4 0.5 0.60 149 -93101300.CRP 2.75 17.3 4367 -8.6 6.3 20.2 29.8 14.8 2.0 1.50 227 -93101900.GGG 2.75 15.7 3105 -9.8 6.9 23.5 33.9 10.3 1.9 0.70 105 -93102000.DRT 2.75 15.5 3433 -8.9 6.4 25.4 34.0 13.4 1.8 1.60 35 -94012700.GGG 2.75 13.2 2167 -15.9 6.8 31.0 32.3 17.5 2.3 0.70 306 -94041100.UMN 2.75 12.6 2040 -16.5 7.6 37.8 45.4 19.9 2.9 2.50 486 -94052500.OUN 2.75 15.0 3912 -11.5 7.4 22.0 36.2 13.2 2.6 3.00 122 -94053000.SEP 2.75 17.5 5032 -10.6 8.2 27.0 23.8 16.1 4.9 3.90 291 -94060500.HON 2.75 14.2 3871 -11.6 8.5 21.4 19.2 12.0 2.8 2.40 202 -94060600.TOP 2.75 16.5 3953 -9.3 8.1 16.1 27.7 15.4 1.9 2.50 394 -94061100.AMA 2.75 12.3 2164 -8.3 7.3 19.5 20.3 16.6 0.7 2.80 229 -94061200.AMA 2.75 14.7 4015 -8.0 7.8 26.7 19.9 18.4 2.3 2.70 302 -94061200.TOP 2.75 13.9 2320 -9.5 6.6 23.9 24.4 15.8 1.2 0.90 117 -94061800.AMA 2.75 11.9 2676 -7.0 8.2 11.0 11.3 10.7 0.5 1.60 171 -94061900.JAN 2.75 16.8 3177 -7.5 5.9 11.5 12.4 3.8 0.6 0.60 42 -94062500.HON 2.75 11.8 1962 -10.8 6.4 27.8 33.5 15.4 1.1 2.20 211 -94062600.JAN 2.75 16.1 2842 -9.5 6.4 24.0 32.8 12.4 1.6 0.90 130 -94070100.STC 2.75 14.3 3701 -11.6 7.3 27.2 25.1 19.0 2.9 2.70 399 -94070200.OAX 2.75 18.5 5257 -10.1 8.0 26.5 25.4 15.5 4.9 3.20 416 -94070700.HON 2.75 16.5 3051 -8.8 7.2 20.5 18.6 10.2 1.5 0.60 159 -95040900.TOP 2.75 10.7 2836 -17.5 9.2 21.4 31.9 16.5 2.5 1.90 120 -95042000.FTD 2.75 14.6 2621 -13.3 7.7 39.5 59.2 25.8 3.7 2.40 498 -95051400.UMN 2.75 16.5 5278 -10.3 6.9 28.0 26.2 22.3 4.1 3.20 211 -95052200.LBF 2.75 10.4 2027 -14.9 7.4 28.3 33.3 18.7 1.6 2.10 221 -95060300.AMA 2.75 12.4 3024 -9.6 8.2 22.4 37.2 15.7 1.6 2.00 346 -95062100.OKX 2.75 17.1 3918 -9.8 7.1 18.4 25.8 11.4 2.1 1.00 18 -95062800.LBF 2.75 12.4 2880 -10.1 7.7 22.0 19.7 13.9 1.5 2.50 208 -95070300.AMA 2.75 14.7 3838 -11.5 8.8 22.8 29.0 8.2 3.1 2.50 115 -95070300.DDC 2.75 14.2 2905 -9.6 6.8 18.2 21.4 12.3 1.2 2.30 111 -95071200.OKX 2.75 13.9 2900 -15.6 6.9 12.7 13.6 8.1 1.3 2.40 48 -95071500.GRB 2.75 19.0 5409 -8.5 8.1 12.1 9.0 8.0 2.0 3.00 69 -95072400.AMA 2.75 13.3 2225 -7.8 8.5 21.6 25.1 13.1 1.0 2.90 124 -95081800.BIS 2.75 18.4 5585 -7.0 7.7 10.6 17.3 10.6 1.4 3.30 142 -96031600.FFC 2.75 9.6 890 -19.2 7.8 28.8 55.2 20.5 0.9 2.20 353 -96042200.OUN 2.75 12.7 2260 -10.9 5.9 38.3 48.8 18.5 1.7 2.30 500 -96042200.TOP 2.75 10.9 1574 -16.6 7.3 45.6 54.3 14.6 2.2 2.30 145 -96051700.UNR 2.75 14.8 4365 -8.1 8.0 25.5 28.7 15.0 2.5 2.50 219 -96051800.OAX 2.75 15.3 4523 -11.1 8.8 16.0 21.2 12.9 2.6 -999.00 68 -96052500.AMA 2.75 13.5 3927 -11.3 9.1 20.3 4.9 16.4 2.6 1.90 101 -96052600.MAF 2.75 14.1 3464 -6.2 7.7 28.7 42.1 22.5 1.6 2.90 240 -96053000.MAF 2.75 14.9 3675 -7.0 7.7 35.1 40.6 19.0 2.4 2.50 321 -96060100.ABR 2.75 12.6 2276 -13.4 6.2 22.4 27.2 24.6 1.3 2.20 370 -96060200.JAN 2.75 16.1 1863 -7.5 5.5 12.7 20.3 11.3 0.4 0.60 168 -96060300.SGF 2.75 11.7 2739 -15.9 7.1 26.4 35.9 14.8 2.3 2.10 90 -96061200.AMA 2.75 11.9 3079 -8.8 8.0 24.3 30.2 18.3 1.5 1.90 373 -96061300.FFC 2.75 13.7 2727 -9.1 5.7 12.9 13.1 12.9 0.6 1.00 152 -96061400.LBF 2.75 12.4 2384 -8.6 6.5 15.4 25.0 12.0 0.6 2.20 102 -96062500.AMA 2.75 13.9 3778 -9.4 8.5 22.9 28.2 7.0 2.3 1.90 123 -96072400.DDC 2.75 14.3 3068 -11.1 8.6 27.6 36.6 16.8 2.8 2.70 203 -96080100.DEN 2.75 13.5 3920 -7.8 8.5 22.6 26.3 15.0 1.9 2.10 276 -96083000.DEN 2.75 11.7 2478 -9.1 7.8 26.2 28.9 17.6 1.3 2.30 86 -96092100.FTD 2.75 16.4 2870 -9.4 6.5 26.4 32.6 15.7 1.8 -999.00 136 -97012500.SIL 2.75 13.0 2563 -16.5 7.5 18.3 25.8 18.3 1.8 2.80 145 -97032900.BNA 2.75 11.1 1618 -15.6 7.4 25.2 15.3 18.1 1.3 3.00 389 -97041100.MAF 2.75 11.9 4076 -15.0 8.2 23.7 30.7 20.8 3.3 2.10 260 -97042100.SGF 2.75 9.4 1773 -16.5 7.4 25.4 23.9 23.3 1.2 2.00 405 -97052700.OUN 2.75 18.0 5907 -8.7 6.4 17.5 23.9 17.6 2.5 3.70 271 -97052700.SGF 2.75 16.3 4440 -9.9 7.0 22.6 25.0 16.3 2.7 2.60 276 -97061200.TOP 2.75 12.6 1552 -11.7 7.1 23.5 30.2 11.6 0.9 0.90 141 -97061600.DDC 2.75 13.5 3187 -10.9 7.7 23.3 39.3 11.9 2.0 2.70 26 -98040900.BMX 2.75 15.8 3341 -13.9 7.9 40.1 51.5 25.9 5.5 2.00 296 -98052500.DDC 2.75 12.5 2688 -12.1 7.2 27.9 32.0 13.7 1.9 2.70 180 -98061400.OUN 2.75 20.5 6689 -6.5 7.7 32.8 42.7 17.9 5.4 4.00 262 -99060300.AMA 2.75 15.6 5087 -10.3 8.7 18.6 49.2 15.5 3.1 2.50 289 -99061200.AMA 2.75 14.7 4400 -10.3 7.7 26.2 36.6 18.8 3.2 2.40 210 -99061900.DDC 2.75 13.9 4141 -11.3 7.3 22.5 29.0 13.4 2.5 2.40 346 -99070100.MAF 2.75 13.7 3989 -2.5 7.5 14.9 13.7 10.5 0.4 2.00 146 -99081800.LBF 2.75 18.3 5554 -8.9 7.8 23.7 25.1 10.7 3.9 3.40 143 -00021400.LZK 2.50 10.7 2091 -20.3 6.4 21.1 24.5 22.2 1.5 2.10 245 -00032700.SGF 2.50 9.8 1766 -18.3 7.5 34.3 43.9 21.4 1.9 2.20 350 -00050100.FWD 2.50 14.3 3593 -13.1 7.2 17.3 18.5 19.0 2.0 1.70 401 -00051200.DVN 2.50 15.6 4865 -8.1 7.4 24.8 24.9 19.3 2.7 3.40 225 -00052300.MHX 2.50 15.1 3613 -13.5 6.5 15.3 26.5 10.5 1.7 2.40 79 -00061000.RAP 2.50 13.2 3610 -8.1 7.8 14.3 21.1 11.9 1.0 2.10 70 -00062400.OAX 2.50 17.5 4783 -8.7 7.2 18.7 28.2 14.9 2.3 2.30 195 -00070200.ABR 2.50 17.8 5952 -10.3 8.4 12.2 23.4 8.1 2.7 3.90 147 -00070600.LBF 2.50 18.2 5506 -7.1 8.3 25.3 35.5 11.8 3.5 3.50 155 -00080500.BIS 2.50 17.0 4830 -8.7 6.9 17.2 22.9 4.0 2.0 3.30 86 -00091100.MPX 2.50 16.6 4554 -10.3 7.0 22.0 24.0 18.4 2.9 3.20 271 -01041700.MAF 2.50 13.9 4552 -12.1 7.5 16.2 30.6 8.0 2.2 2.20 100 -01042200.DDC 2.50 13.3 3749 -12.1 7.3 33.4 45.3 24.2 3.5 2.70 510 -01050100.OAX 2.50 10.4 2265 -16.9 7.7 17.4 17.0 19.2 1.3 2.20 226 -01050400.MAF 2.50 13.7 3866 -11.3 7.2 12.8 33.8 11.4 1.3 2.70 101 -01052500.BMX 2.50 11.9 2388 -14.9 6.7 29.2 27.4 23.5 2.0 2.70 436 -01052620.LMN 2.50 14.1 4355 -13.5 6.4 27.3 33.2 20.2 3.5 2.90 233 -01070400.RAP 2.50 13.2 3145 -11.1 8.3 25.2 26.1 12.9 2.3 2.60 144 -01070500.LBF 2.50 14.5 3571 -7.7 7.7 26.0 27.0 17.1 1.9 2.90 313 -01082400.AMA 2.50 15.4 4318 -6.7 7.4 24.0 28.1 21.0 1.9 2.80 158 -01101000.DDC 2.50 12.9 3299 -9.7 6.4 18.8 18.3 16.4 1.2 2.50 275 -02040300.JAX 2.50 14.8 3327 -14.3 7.2 11.5 30.9 11.8 1.4 1.50 80 -02041212.AMA 2.50 12.2 2907 -13.7 7.5 20.4 25.1 14.6 1.8 2.80 184 -02041900.DVN 2.50 12.3 2861 -14.5 8.2 14.1 20.0 15.9 1.4 2.50 213 -02051700.AMA 2.50 13.8 5036 -12.7 8.7 21.9 26.5 17.4 4.0 2.20 216 -02072500.ABR 2.50 15.0 3995 -11.5 7.9 28.3 28.6 13.8 3.7 3.00 207 -03051500.SHV 2.50 16.8 4260 -9.9 6.8 33.7 42.9 16.3 3.9 0.80 246 -03062200.RAP 2.50 10.6 3380 -13.7 8.0 27.5 42.2 18.7 2.6 1.50 189 -04032718.OUN 2.50 12.6 2825 -14.9 7.3 21.1 32.3 11.5 2.0 2.10 199 -04040400.EPZ 2.50 12.1 4482 -17.9 8.2 29.1 25.4 11.6 5.5 2.10 203 -04080700.ABR 2.50 13.1 2792 -9.3 6.7 21.0 25.9 12.1 1.1 2.50 240 -04091500.LBF 2.50 12.8 1474 -10.7 8.0 35.4 39.8 20.5 1.4 -999.00 306 -04102400.JAN 2.50 15.8 1938 -6.9 5.3 30.8 27.8 19.3 0.8 0.60 328 -05050322.XMR 2.50 13.4 2165 -13.9 7.6 23.3 41.5 21.5 1.7 1.20 82 -05050700.MAF 2.50 10.7 3257 -12.3 8.0 20.3 24.6 11.2 1.7 1.60 48 -06050900.JAN 2.50 16.1 3303 -13.3 7.3 28.4 39.9 14.9 3.5 1.90 170 -06052600.SGF 2.50 13.9 3409 -9.5 6.5 18.9 23.2 18.8 1.3 2.50 262 -06061400.RAP 2.50 11.5 2691 -7.7 8.3 17.3 24.5 15.3 0.8 1.60 248 -06062500.DNR 2.50 7.1 987 -11.5 8.9 26.1 26.5 12.5 0.4 0.90 -172 -06071123.LMN 2.50 16.5 2996 -5.9 6.7 12.6 11.2 9.4 0.6 0.60 110 -08110600.OUN 2.50 11.4 1623 -12.5 6.9 29.8 32.7 24.8 1.1 2.40 317 -90060300.PAH 2.50 17.8 3663 -7.6 7.0 24.0 25.9 29.8 2.0 0.60 367 -90060700.DEN 2.50 10.9 2393 -8.2 9.0 26.3 23.9 19.6 1.2 1.60 170 -90061500.DDC 2.50 16.0 4667 -6.5 7.9 28.4 30.1 15.7 2.6 2.70 306 -90062200.ALB 2.50 12.6 1833 -14.1 6.7 32.5 29.1 20.6 1.7 1.60 203 -90070200.GSO 2.50 14.8 3963 -10.0 7.2 26.0 16.3 10.7 2.6 2.20 100 -90083100.CHS 2.50 16.0 2477 -8.5 6.5 17.0 17.7 8.3 0.9 0.60 67 -91041900.SEP 2.50 17.6 5996 -13.2 7.4 13.5 44.8 13.0 3.3 3.10 24 -91042100.AYS 2.50 11.8 2563 -16.9 7.4 13.4 30.0 10.3 1.2 1.70 76 -91050800.MAF 2.50 11.2 3415 -14.8 8.4 31.1 36.7 25.4 3.5 1.60 280 -91051200.AMA 2.50 14.3 4539 -10.8 8.5 12.4 14.9 16.7 1.7 2.30 208 -91052700.LBF 2.50 11.9 2669 -13.4 7.9 13.9 32.3 13.0 1.1 2.10 35 -91053100.DEN 2.50 12.0 3551 -12.1 9.5 27.3 45.8 10.7 3.2 1.90 149 -91071800.STC 2.50 18.2 4956 -8.7 7.3 18.7 20.1 21.9 2.5 2.50 104 -91080200.CAR 2.50 12.3 1891 -13.7 6.3 19.6 33.3 11.9 0.9 1.50 223 -92030400.SEP 2.50 12.7 2676 -15.3 7.7 20.1 27.2 9.2 1.9 2.30 133 -92041600.AMA 2.50 11.1 3362 -13.4 7.6 16.0 17.8 12.0 1.5 1.70 127 -92070200.DEN 2.50 11.7 2313 -11.2 8.0 27.6 29.9 20.0 1.6 2.50 362 -93033000.DRT 2.50 12.7 2680 -13.4 8.2 39.6 44.0 26.0 3.5 2.80 411 -93061400.TOP 2.50 16.5 4195 -8.5 7.7 12.5 17.8 10.7 1.3 2.80 65 -93070200.HON 2.50 14.6 2619 -11.3 7.0 28.3 40.3 12.6 2.0 0.80 143 -93070300.TOP 2.50 18.5 4019 -7.2 7.1 15.8 16.4 15.2 1.4 0.70 202 -94032800.AHN 2.50 14.4 2627 -10.5 6.2 34.5 24.7 30.4 2.0 0.70 518 -94062600.TOP 2.50 16.4 4265 -8.6 8.4 25.2 45.9 21.6 3.0 2.90 418 -95050800.FTD 2.50 16.5 2700 -10.4 7.7 30.8 30.8 24.5 2.6 0.80 407 -95050800.LCH 2.50 17.9 3259 -9.9 7.1 16.7 31.1 10.2 1.6 0.60 119 -95050900.TOP 2.50 10.0 1495 -19.3 6.9 19.3 22.8 21.2 0.9 1.20 126 -95051600.MAF 2.50 13.6 3261 -7.8 8.4 21.7 28.8 10.3 1.5 1.80 134 -95051900.GSO 2.50 13.4 1758 -11.8 7.9 25.3 27.1 23.6 1.3 -999.00 83 -95052912.MAF 2.50 13.0 1617 -11.3 7.5 27.6 22.0 13.7 1.2 1.90 284 -95060700.DEN 2.50 12.3 3137 -10.8 9.2 37.2 35.9 20.7 3.4 2.00 284 -95061600.TFX 2.50 13.0 3142 -12.0 8.4 27.7 35.6 23.8 2.7 2.30 277 -95081212.MPX 2.50 19.1 3361 -6.3 7.2 20.6 36.8 23.0 1.4 -999.00 164 -96030700.TLH 2.50 15.4 2615 -10.4 6.0 20.9 23.7 20.7 1.2 0.60 320 -96042200.FTD 2.50 12.0 1872 -12.6 8.2 27.1 34.0 18.3 1.5 -999.00 298 -96051800.MPX 2.50 16.3 4406 -8.9 8.2 13.0 23.4 20.7 1.6 3.40 259 -96060100.DDC 2.50 13.3 2888 -10.9 8.3 13.3 19.3 13.9 1.1 2.50 111 -96060300.AMA 2.50 11.0 2356 -10.5 6.9 27.6 31.6 18.0 1.2 2.00 256 -96061200.LBF 2.50 11.7 2310 -9.9 7.5 16.7 22.2 12.7 0.8 2.40 122 -96062100.DEN 2.50 15.2 5603 -8.1 9.6 27.5 33.4 8.8 4.4 2.20 155 -96071900.GRB 2.50 20.7 4746 -7.5 6.4 26.3 26.2 20.0 3.0 0.70 164 -96072200.LBF 2.50 18.4 4756 -6.5 7.2 20.0 29.4 19.0 1.9 2.10 94 -98071100.DDC 2.50 18.9 4323 -4.3 6.2 12.7 15.2 16.0 0.7 0.60 230 -00061300.OAX 2.25 17.7 5453 -11.5 8.5 15.8 19.3 12.9 3.5 4.00 206 -00030300.FWD 2.00 12.3 2589 -14.3 6.2 33.4 29.1 20.2 2.2 2.70 239 -00031600.LMN 2.00 9.5 1478 -17.3 7.1 22.1 10.9 12.9 0.9 2.20 164 -00032800.JAX 2.00 12.5 2135 -14.5 6.3 29.1 24.7 25.7 1.7 0.90 268 -00061200.AMA 2.00 16.8 5720 -10.3 8.3 16.1 28.7 15.7 3.2 2.70 88 -00061300.LBF 2.00 13.9 4790 -9.9 8.3 16.6 18.6 9.9 2.1 2.00 159 -00061500.JAX 2.00 17.9 4801 -8.7 6.4 6.2 13.3 3.6 0.7 1.10 55 -00071100.GGW 2.00 14.2 3230 -11.3 6.9 30.1 48.1 16.9 2.6 3.00 88 -00071500.BIS 2.00 16.5 5132 -9.5 8.1 27.6 34.1 14.6 4.3 2.70 152 -00072300.LBF 2.00 13.2 2926 -11.5 7.1 25.2 27.3 13.6 1.9 2.80 91 -01042200.AMA 2.00 14.1 6059 -15.3 9.2 35.7 38.3 16.6 10.2 3.30 320 -01042200.MAF 2.00 13.7 4543 -12.3 8.4 27.4 36.2 12.3 4.2 2.20 164 -01050600.FWD 2.00 15.4 3092 -12.7 6.8 32.7 34.4 19.4 3.2 2.10 170 -01050700.SGF 2.00 14.5 4025 -13.7 6.1 8.8 17.0 10.5 1.0 3.10 202 -01050702.LZK 2.00 14.2 2759 -12.9 5.9 18.7 26.3 7.3 1.3 2.00 77 -01051200.OUN 2.00 13.2 3098 -13.9 7.1 10.0 10.8 8.7 1.0 2.10 132 -01052700.DDC 2.00 11.3 2853 -12.1 6.7 30.6 37.1 19.3 1.9 1.80 184 -01052800.OUN 2.00 16.5 4910 -10.7 7.6 29.7 38.8 16.9 4.7 3.10 113 -01053000.DDC 2.00 15.2 2892 -12.1 8.0 19.5 26.6 14.8 2.0 1.80 388 -01053100.FWD 2.00 15.8 4571 -12.3 8.7 12.4 20.6 13.7 2.3 3.90 106 -01053100.LCH 2.00 17.4 3988 -8.3 7.0 8.3 13.9 0.8 0.8 2.40 8 -01062100.DNR 2.00 10.8 2544 -11.5 7.5 21.4 23.2 20.5 1.2 2.10 192 -01063000.FWD 2.00 16.8 4122 -9.7 6.9 11.2 19.2 9.2 1.2 1.60 133 -01071300.GGW 2.00 14.5 3042 -10.1 8.1 16.5 34.2 7.9 1.4 3.50 19 -01072000.RAP 2.00 15.1 4486 -8.7 8.4 15.4 26.3 10.9 1.8 2.40 71 -01082300.TOP 2.00 16.7 4361 -9.7 7.6 9.9 23.0 13.6 1.3 2.30 192 -01082400.DDC 2.00 16.4 4283 -7.5 7.7 14.7 16.3 11.9 1.4 3.10 77 -01090800.OUN 2.00 17.6 4351 -8.7 7.8 26.1 21.2 21.8 3.3 2.30 151 -01090800.TOP 2.00 17.8 4174 -11.3 8.1 26.2 26.7 24.5 4.2 1.70 274 -01101000.OUN 2.00 15.6 3485 -12.9 7.9 24.4 28.2 23.9 3.2 2.50 447 -02041800.OAX 2.00 11.4 2113 -14.5 7.6 33.9 35.5 24.0 2.1 2.20 376 -02052800.LZK 2.00 15.1 3284 -12.3 6.5 4.4 12.3 2.6 0.4 0.60 13 -02061300.DVN 2.00 17.3 3501 -11.9 7.4 26.3 38.7 10.0 3.3 1.10 100 -02062600.MPX 2.00 19.6 6228 -9.7 7.1 18.6 21.8 9.2 3.7 3.20 120 -03051900.TBW 2.00 17.1 3797 -10.9 6.8 5.9 5.0 4.0 0.7 1.00 -4 -04043000.JAN 2.00 13.6 1469 -12.7 6.5 27.4 22.8 18.1 1.1 0.60 184 -04052200.DDC 2.00 13.5 3809 -9.7 8.1 21.0 27.0 20.3 2.0 2.20 297 -04062400.GRB 2.00 10.4 1604 -16.9 6.3 25.3 36.9 16.4 1.1 2.40 128 -04072300.TOP 2.00 16.0 3276 -7.7 6.4 15.8 19.6 11.4 1.0 0.70 158 -04082400.BIS 2.00 13.4 2596 -11.1 7.6 21.3 22.3 16.4 1.5 2.20 208 -04091200.GRB 2.00 12.3 2256 -14.9 7.2 14.7 24.8 11.6 1.0 1.00 64 -05022100.SGF 2.00 9.1 1128 -18.9 6.8 27.7 36.6 17.1 0.9 1.90 97 -05050700.LBF 2.00 9.7 3058 -14.3 8.2 12.5 21.7 6.1 1.0 1.40 135 -05050900.LMN 2.00 12.0 2971 -16.1 7.8 15.1 29.6 15.9 1.6 2.20 290 -06040700.TOP 2.00 11.0 2249 -15.1 7.4 35.7 27.3 15.8 2.3 2.10 206 -06041600.TOP 2.00 12.2 2191 -12.9 8.2 37.2 42.6 28.5 2.5 2.90 533 -06050800.DDC 2.00 9.5 1674 -17.1 8.9 16.8 27.8 16.1 1.0 2.60 248 -06051600.MFL 2.00 15.8 2473 -11.1 6.8 26.6 21.2 18.7 1.9 0.60 227 -06052400.DDC 2.00 10.2 1607 -8.7 7.6 22.4 19.3 17.0 0.6 1.80 189 -06061400.TFX 2.00 12.3 2827 -9.7 8.1 15.9 28.9 14.3 1.0 2.10 65 -06062700.ILX 2.00 12.2 2025 -15.7 6.4 3.5 11.7 5.2 0.2 1.20 15 -06090100.DDC 2.00 12.2 1972 -7.7 7.1 15.6 27.4 13.9 0.5 1.60 363 -89052800.ELP 2.00 11.2 2569 -6.8 8.0 11.3 17.1 14.9 0.4 1.40 232 -89071100.HON 2.00 15.7 3126 -7.0 6.9 14.6 18.6 12.3 0.8 1.20 151 -89082100.LBF 2.00 14.8 3307 -9.1 7.1 28.0 44.7 8.0 2.1 3.00 83 -89103000.OUN 2.00 12.5 2163 -14.7 6.6 18.0 18.1 13.1 1.1 1.60 195 -90060900.PIT 2.00 16.7 4095 -9.5 6.7 18.1 13.6 18.8 1.9 1.00 236 -90061400.PIA 2.00 18.1 3570 -7.0 7.0 16.5 23.4 9.5 1.2 0.60 134 -90072600.TBW 2.00 18.4 4330 -6.3 5.7 3.5 8.5 6.3 0.2 0.60 7 -90091400.STC 2.00 13.1 2123 -10.9 7.4 27.8 39.0 23.2 1.5 -999.00 564 -98033100.FWD 2.00 13.3 2873 -14.3 7.2 29.6 57.5 17.6 2.7 2.90 93 -98062500.APX 2.00 15.8 3453 -11.3 7.3 28.9 35.4 21.9 3.1 3.30 348 -98063000.BUF 2.00 14.5 2615 -10.5 6.1 23.6 28.2 8.5 1.4 1.70 86 -99050400.DRT 2.00 17.4 5609 -10.1 7.5 40.5 38.9 21.2 7.1 4.56 342 -99053100.TOP 2.00 13.1 2215 -10.9 6.8 18.6 12.2 14.7 1.0 1.40 189 -00033000.SHV 1.75 15.4 3548 -15.9 7.6 31.6 50.3 23.8 5.0 2.80 323 -00051200.TOP 1.75 16.7 5329 -7.3 6.5 25.1 29.2 21.0 2.5 3.70 216 -00051900.FWD 1.75 16.2 3610 -10.9 7.4 25.2 32.9 6.7 2.8 0.64 75 -00052900.GSO 1.75 14.3 1988 -11.1 6.2 28.7 35.1 17.6 1.3 1.20 139 -00060300.ABQ 1.75 9.4 1267 -8.7 8.2 10.3 17.5 7.6 0.2 1.40 70 -00061100.AMA 1.75 14.0 3932 -7.9 7.8 14.8 19.1 9.4 1.2 2.10 128 -00062200.DDC 1.75 14.3 3602 -8.7 7.0 15.4 23.4 16.2 1.2 2.90 157 -00062400.DDC 1.75 14.8 3499 -7.3 7.7 23.2 30.2 12.0 1.6 2.70 237 -00062400.LBF 1.75 14.8 4723 -9.7 8.6 17.4 29.6 9.8 2.4 2.00 126 -00070600.GGW 1.75 11.7 2743 -14.1 8.5 29.6 40.4 13.0 2.7 1.90 165 -00071300.ABR 1.75 13.6 2305 -8.7 6.7 29.3 44.3 21.7 1.3 2.00 278 -00071500.IAD 1.75 13.9 2186 -12.3 6.8 17.8 17.7 9.3 1.1 2.00 118 -00071800.AMA 1.75 14.4 3660 -4.7 6.9 9.1 7.7 5.9 0.4 1.50 79 -00072100.FFC 1.75 14.3 2149 -6.9 6.4 9.2 10.4 9.1 0.3 0.60 63 -00072200.LBF 1.75 12.8 3031 -11.5 7.6 27.5 23.7 14.5 2.2 2.60 247 -00072500.ABR 1.75 15.6 4195 -12.3 8.9 15.3 19.8 10.9 2.6 3.10 113 -00072600.MFL 1.75 18.3 4079 -8.5 6.6 5.2 5.6 2.4 0.5 0.60 18 -00072600.MPX 1.75 15.3 3240 -13.1 7.6 21.4 12.4 10.1 2.5 3.00 139 -00072700.LBF 1.75 18.1 5178 -8.9 8.7 17.5 26.1 12.2 3.0 2.20 351 -00072900.GSO 1.75 14.3 2081 -9.7 6.2 6.2 16.1 6.5 0.3 0.60 43 -00073100.JAX 1.75 17.6 3581 -8.9 6.0 6.6 5.5 4.7 0.5 0.60 27 -00080200.GGW 1.75 10.8 2057 -8.9 8.0 24.6 35.3 15.0 0.9 1.80 148 -00080800.OAX 1.75 16.3 4679 -8.1 7.8 16.4 25.1 10.8 1.9 3.00 185 -00090400.LBF 1.75 11.2 2441 -9.5 7.8 21.4 24.1 18.5 1.0 1.50 309 -01061800.TBW 1.75 15.9 3469 -9.7 5.9 4.6 6.6 1.5 0.3 0.80 23 -01062000.DTX 1.75 14.9 3813 -12.5 6.9 8.4 17.6 15.0 1.0 2.80 -45 -02041600.PIT 1.75 11.5 1856 -14.9 7.3 17.9 18.1 15.8 1.0 1.60 245 -02041800.FWD 1.75 15.9 3343 -9.9 6.4 12.4 34.6 5.6 1.0 -999.00 61 -02050400.CHS 1.75 15.9 3255 -10.7 6.6 21.1 29.5 16.6 1.8 0.90 19 -02052800.LBF 1.75 11.3 3387 -15.1 9.0 18.8 30.1 11.6 2.3 1.90 184 -02052800.MAF 1.75 12.7 3115 -11.1 8.0 20.6 24.7 16.4 1.7 2.10 103 -02052900.TOP 1.75 12.8 2661 -13.7 6.8 4.2 10.7 7.3 0.3 1.30 48 -02060402.CHS 1.75 13.7 2637 -10.1 7.6 9.7 10.8 11.7 0.6 0.80 33 -02060700.MPX 1.75 9.2 1952 -15.1 7.7 22.8 25.3 16.2 1.1 1.50 758 -02061200.TOP 1.75 19.6 5029 -8.9 7.6 21.1 24.7 15.6 3.3 0.70 224 -02062600.DTX 1.75 14.5 3079 -8.9 6.1 1.9 7.2 1.4 0.1 0.70 -1 -02070200.AMA 1.75 12.2 2393 -6.5 7.3 18.4 11.3 20.8 0.6 1.60 353 -02072518.TBW 1.75 18.9 4523 -8.5 6.7 7.8 6.3 2.0 0.9 0.60 7 -02072800.DDC 1.75 12.9 2480 -5.3 7.4 10.6 11.1 10.7 0.3 1.40 155 -02082300.LBF 1.75 17.8 6193 -10.1 8.0 12.9 28.1 3.8 2.7 3.10 10 -03031500.BMX 1.75 10.9 1555 -19.1 7.4 8.5 21.2 12.3 0.5 1.30 94 -03032600.LZK 1.75 11.3 2073 -18.5 6.7 14.3 15.4 9.5 1.0 2.20 67 -03032600.SHV 1.75 11.3 1723 -18.3 8.5 17.7 18.0 8.0 1.3 1.40 108 -03042900.AMA 1.75 9.6 2549 -14.5 8.3 25.3 33.7 16.5 1.8 1.60 237 -03042900.MAF 1.75 9.8 2325 -13.5 8.4 23.4 21.0 15.5 1.4 1.40 165 -03043000.BNA 1.75 12.4 3359 -15.3 7.2 4.3 5.5 4.1 0.5 1.30 30 -03050200.FFC 1.75 13.7 3289 -13.5 6.5 9.8 9.5 7.5 0.9 0.90 55 -03050700.BMX 1.75 17.4 4489 -10.5 7.0 26.5 28.4 12.2 3.6 2.10 101 -03051312.FWD 1.75 12.6 1814 -10.3 7.3 17.7 24.7 16.8 0.7 1.20 205 -03060400.LCH 1.75 19.7 4988 -6.7 5.8 13.3 17.2 7.3 1.2 0.60 44 -03061100.OUN 1.75 14.5 3045 -9.3 7.2 17.8 13.1 12.1 1.3 2.00 135 -03061300.LBF 1.75 12.0 2759 -11.3 7.2 15.4 16.3 13.0 1.0 2.60 179 -03061500.FWD 1.75 14.3 2433 -11.3 6.9 12.1 2.8 5.3 0.8 1.70 32 -03061500.LBF 1.75 10.7 1717 -11.3 6.3 10.6 12.0 6.6 0.3 1.70 51 -03061700.FFC 1.75 16.3 2826 -8.5 6.2 7.0 13.0 5.5 0.4 0.60 32 -03061700.RAP 1.75 10.1 1501 -11.1 7.1 5.7 17.5 2.9 0.2 1.90 92 -03062100.MAF 1.75 10.7 1489 -7.7 7.0 14.5 29.4 6.5 0.3 1.90 74 -03062500.MAF 1.75 16.5 4621 -6.7 7.7 8.7 16.8 11.9 0.8 2.10 45 -03090500.DRA 1.75 11.3 1966 -8.3 8.1 3.7 9.2 5.0 0.1 1.20 33 -03091000.MAF 1.75 12.9 3038 -7.3 7.4 8.3 12.7 8.6 0.4 2.10 79 -03091100.DDC 1.75 14.8 3112 -7.5 6.9 22.3 30.8 15.7 1.3 2.20 259 -03092100.DDC 1.75 10.2 1784 -10.9 7.3 20.1 23.8 21.8 0.7 2.00 257 -04022512.LIX 1.75 10.3 837 -17.7 6.7 31.9 48.7 25.2 0.8 2.40 340 -04030100.TOP 1.75 6.3 487 -28.7 8.7 32.0 35.0 20.1 0.6 1.60 171 -04032100.FFC 1.75 7.9 942 -17.3 7.5 12.0 13.4 11.3 0.3 1.10 154 -04032100.MAF 1.75 10.0 2053 -12.9 7.9 9.6 21.3 5.5 0.5 1.50 39 -04040700.FWD 1.75 10.4 835 -16.3 6.7 28.3 27.2 11.8 0.6 1.00 87 -04042900.DRT 1.75 12.4 1834 -12.9 6.4 20.0 31.6 16.1 0.9 1.30 217 -04051000.LBF 1.75 11.6 4026 -13.9 9.0 13.9 17.5 3.0 1.9 1.60 38 -04051600.EPZ 1.75 10.4 2888 -11.5 8.7 12.2 7.0 4.1 0.9 1.60 93 -04071200.TOP 1.75 17.7 3709 -7.3 6.8 13.6 9.1 11.9 1.1 0.60 204 -04081900.ILX 1.75 15.1 3685 -9.1 5.9 19.9 28.2 19.7 1.4 1.30 371 -04082600.BIS 1.75 12.5 3083 -13.1 7.1 16.6 18.9 13.9 1.4 2.40 101 -04092300.AMA 1.75 12.8 1887 -10.1 6.7 23.5 21.8 19.6 0.9 1.30 374 -04092500.AMA 1.75 11.2 2465 -11.9 6.9 15.1 24.9 12.0 0.8 2.00 38 -05030400.AMA 1.75 4.3 697 -23.3 8.7 22.7 36.0 13.1 0.3 1.30 142 -05031500.TLH 1.75 12.4 1338 -14.1 7.1 28.4 53.2 12.7 1.1 1.10 41 -05082400.RAP 1.75 11.3 2040 -11.3 8.6 11.6 19.1 13.6 0.6 -999.00 116 -05082700.AMA 1.75 13.6 2765 -5.5 7.4 11.5 11.5 10.0 0.4 2.00 31 -06040400.CHS 1.75 11.6 2165 -16.9 8.1 31.6 39.3 26.6 2.6 2.60 207 -06040900.JAX 1.75 13.6 2254 -13.7 6.6 20.4 22.0 19.5 1.3 2.10 178 -06041300.LZK 1.75 11.0 1294 -13.5 7.2 12.6 20.8 6.0 0.4 -999.00 34 -06041600.IAD 1.75 10.2 2181 -16.7 7.0 27.7 43.3 16.6 1.7 1.80 48 -06041600.WAL 1.75 10.9 2234 -16.5 7.2 17.7 48.2 17.2 1.2 2.30 81 -06041900.BMX 1.75 12.0 1805 -11.1 6.3 14.2 22.0 5.4 0.5 0.70 62 -06042300.DTX 1.75 6.7 609 -24.1 7.4 17.7 27.4 14.0 0.3 1.80 50 -06050400.SHV 1.75 15.0 3310 -12.1 6.7 8.0 14.3 5.8 0.8 0.60 85 -06050600.LCH 1.75 14.9 2655 -10.3 5.8 23.1 25.2 15.8 1.3 0.60 64 -06050900.DDC 1.75 9.6 1630 -13.3 7.9 27.2 27.8 15.1 1.1 2.00 179 -06050912.SGF 1.75 12.9 2144 -12.9 6.7 20.3 18.4 10.1 1.2 1.80 144 -06051100.LCH 1.75 18.5 4564 -12.3 8.9 22.9 22.0 12.2 5.1 1.70 38 -06051412.SHV 1.75 12.4 2270 -14.9 7.8 16.8 26.2 15.5 1.3 2.80 84 -06051800.ILX 1.75 8.0 713 -17.5 6.9 28.8 29.6 16.9 0.5 2.10 226 -06052300.SGF 1.75 14.4 3032 -11.9 7.1 9.0 15.5 8.3 0.8 1.60 91 -06052500.TLH 1.75 14.8 2619 -10.5 6.4 7.3 7.5 9.2 0.5 0.60 56 -06052700.GSO 1.75 12.7 2136 -9.9 5.8 17.4 21.2 17.1 0.6 1.50 217 -06061800.FWD 1.75 14.3 2286 -10.9 8.2 13.9 24.6 11.6 1.0 2.30 134 -06062100.CHS 1.75 17.0 4007 -10.1 6.4 12.9 19.3 7.1 1.3 0.70 66 -06062400.BIS 1.75 8.3 942 -15.3 7.0 22.7 27.2 16.7 0.5 1.60 167 -06062400.LBF 1.75 10.7 1400 -12.1 7.4 26.6 25.0 13.6 0.8 2.10 272 -06062900.DDC 1.75 7.7 919 -10.1 7.7 17.9 17.9 1.9 0.2 0.80 16 -06070100.BNA 1.75 13.5 2750 -11.5 6.7 10.8 7.8 11.5 0.7 1.50 41 -06071200.DDC 1.75 11.8 1068 -8.7 8.0 15.4 21.8 11.8 0.3 1.00 12 -06071300.DDC 1.75 12.8 1575 -5.9 6.9 12.7 13.7 7.4 0.2 0.80 99 -06071900.JAN 1.75 15.2 2280 -6.9 6.5 11.1 11.1 9.0 0.4 0.60 88 -06072200.LZK 1.75 14.1 2480 -8.1 7.3 6.9 5.8 7.7 0.3 0.60 67 -06072600.TUS 1.75 11.2 1725 -5.7 7.4 15.0 18.3 8.5 0.3 0.90 36 -06080700.TOP 1.75 12.5 1693 -6.7 7.0 7.6 6.8 3.2 0.2 0.60 35 -06080900.TUS 1.75 11.9 1640 -4.7 6.6 5.1 8.2 6.6 0.1 0.60 25 -06082100.ABR 1.75 12.5 1851 -9.9 6.8 21.9 39.5 15.5 0.8 2.10 257 -06082300.RAP 1.75 8.3 1757 -9.5 9.1 21.3 28.7 12.7 0.6 0.80 108 -06091100.AMA 1.75 12.5 1812 -8.9 7.1 14.9 33.3 13.7 0.5 2.10 51 -06091400.EPZ 1.75 11.7 1589 -10.3 7.6 17.4 23.7 13.1 0.6 2.00 167 -06091600.DDC 1.75 14.4 2738 -6.9 6.6 29.7 39.0 21.6 1.3 2.20 378 -06100400.MPX 1.75 13.7 3011 -12.1 7.4 34.0 30.2 23.9 3.0 2.90 514 -89060100.TOP 1.75 15.8 2810 -10.9 7.9 10.6 26.9 7.9 1.0 -999.00 90 -89060600.GSO 1.75 14.8 2078 -9.1 5.9 8.1 6.7 10.0 0.3 0.60 93 -89060600.JAN 1.75 16.3 3336 -11.3 6.7 20.8 25.3 10.4 2.0 0.80 103 -89061400.GGG 1.75 17.2 3674 -11.0 6.9 15.4 23.3 4.3 1.7 -999.00 61 -89061900.BNA 1.75 13.9 1755 -10.2 6.3 9.7 7.8 6.8 0.4 0.60 86 -89062200.AHN 1.75 15.5 1517 -7.6 5.8 12.6 15.8 14.9 0.3 0.60 112 -89062600.IAD 1.75 16.2 3138 -8.6 6.1 14.3 23.0 12.1 0.9 0.70 108 -89062700.PIA 1.75 15.7 2460 -7.9 6.6 13.2 12.4 5.3 0.6 0.70 87 -89062800.BUF 1.75 15.2 2385 -8.2 5.3 20.1 22.3 9.8 0.7 0.60 82 -89070800.PIT 1.75 15.4 2732 -9.1 6.8 17.5 15.7 12.8 1.1 1.50 81 -89071300.DDC 1.75 15.1 3239 -4.9 6.9 5.1 7.2 7.9 0.2 1.20 81 -89071300.OUN 1.75 19.0 4127 -5.4 6.9 13.8 19.1 13.0 1.0 -999.00 196 -89071500.LBF 1.75 14.3 2675 -6.9 6.1 6.1 8.4 5.5 0.2 0.60 27 -89072900.HON 1.75 14.0 2092 -5.9 6.0 12.0 17.9 6.4 0.3 0.80 105 -89073000.JAN 1.75 18.0 3940 -7.7 6.7 1.9 3.1 2.1 0.2 0.60 9 -89080600.UMN 1.75 19.0 5563 -6.9 7.0 11.7 11.3 8.8 1.4 0.80 99 -89081300.TBW 1.75 16.4 2617 -8.6 6.0 18.1 18.2 10.1 1.0 0.60 65 -89082500.RAP 1.75 10.6 1899 -7.1 7.6 7.7 7.6 2.7 0.2 1.00 55 -89082700.OMA 1.75 17.8 3452 -6.6 6.1 19.5 33.1 15.2 1.1 0.60 142 -89082800.UMN 1.75 17.3 3603 -6.1 6.5 7.8 5.6 2.6 0.5 0.60 28 -89082900.TOP 1.75 19.8 4842 -6.3 6.6 15.4 21.1 13.2 1.5 0.60 156 -89083000.OUN 1.75 17.3 3864 -5.6 6.0 13.1 24.2 11.8 0.7 0.60 112 -89083100.DDC 1.75 16.5 2956 -5.7 6.6 13.6 22.5 13.3 0.6 0.80 346 -89090200.1M1 1.75 18.3 3818 -4.8 6.1 16.2 14.1 8.2 0.8 0.60 64 -89090800.DEN 1.75 10.1 1350 -6.8 8.3 24.1 24.0 15.4 0.4 2.00 366 -90022800.MAF 1.75 9.7 607 -16.2 6.6 16.4 23.8 5.1 0.2 1.20 55 -90031000.AMA 1.75 11.1 2468 -16.0 8.6 13.1 18.2 9.9 1.2 1.90 106 -90031300.OUN 1.75 12.7 3211 -13.6 7.8 24.2 18.1 19.4 2.5 2.80 286 -90040200.BRO 1.75 16.2 3494 -9.3 7.1 25.7 37.2 15.2 2.3 0.90 65 -90042200.OUN 1.75 11.1 2748 -13.3 6.6 12.2 14.9 7.3 0.8 2.00 48 -90042600.DRT 1.75 14.6 3699 -13.8 8.1 25.7 33.2 11.1 3.7 4.30 101 -90042900.AYS 1.75 13.0 2333 -12.2 6.2 30.6 23.2 19.1 1.7 2.30 243 -90050600.OUN 1.75 7.6 836 -20.1 7.2 18.3 48.8 5.8 0.4 1.40 30 -90051200.SEP 1.75 13.6 2282 -9.2 6.9 34.8 47.4 14.5 1.6 -999.00 134 -90051600.IAD 1.75 13.4 2004 -14.0 7.0 16.7 27.7 12.7 1.0 -999.00 102 -90051900.SEP 1.75 17.0 3246 -9.1 6.6 20.9 27.2 15.6 1.6 0.60 387 -90052100.HAT 1.75 15.8 2891 -9.7 5.6 13.8 19.5 12.4 0.8 0.60 182 -90052100.UMN 1.75 14.8 3661 -13.1 7.6 15.4 23.7 15.3 2.0 3.40 181 -90052300.HON 1.75 10.9 1984 -14.0 7.2 22.3 33.6 15.0 1.1 2.40 107 -90052800.SIL 1.75 18.0 3916 -10.0 6.8 19.3 10.6 10.4 2.2 0.80 48 -90061000.IAD 1.75 14.9 2818 -9.2 6.5 16.4 19.3 18.0 1.0 0.60 175 -90061000.OUN 1.75 15.1 3242 -8.5 7.8 10.1 1.3 10.9 0.8 2.50 21 -90061100.CHS 1.75 17.7 4050 -8.1 6.6 8.1 19.1 6.4 0.7 0.60 102 -90061300.STC 1.75 16.2 2789 -10.4 7.2 36.6 42.0 14.2 2.9 0.70 139 -90061800.PIA 1.75 19.5 4567 -8.1 7.4 17.0 25.7 14.1 2.2 1.00 94 -90070500.LCH 1.75 17.6 3315 -8.5 6.6 15.3 2.5 11.6 1.2 0.60 58 -90070900.GRB 1.75 16.9 2962 -6.5 6.5 18.2 22.7 12.1 0.9 0.60 82 -90071100.CKL 1.75 15.4 2544 -8.1 6.4 5.1 4.6 2.1 0.3 0.60 9 -90071300.CRP 1.75 13.3 1658 -6.5 6.5 12.8 9.3 14.6 0.3 0.60 121 -90071400.ABQ 1.75 10.4 1588 -9.4 8.7 18.9 32.6 4.4 0.6 1.20 70 -90071700.FNT 1.75 11.9 1393 -12.5 6.5 15.5 25.3 13.2 0.5 0.60 176 -90071800.LBF 1.75 12.3 3138 -7.7 8.2 17.7 16.6 10.0 1.0 1.60 115 -90072100.ABQ 1.75 10.9 1327 -5.9 8.3 7.9 14.5 9.8 0.1 1.30 145 -90072600.OUN 1.75 16.6 3546 -6.8 6.2 10.8 14.7 11.1 0.6 0.70 206 -90072700.AMA 1.75 14.3 3104 -5.8 7.3 7.7 7.9 11.1 0.3 2.20 117 -90073100.GGG 1.75 16.1 3254 -7.5 6.4 7.9 5.4 1.2 0.5 0.60 3 -90080200.LCH 1.75 18.4 3223 -7.3 6.4 6.5 2.0 3.1 0.4 0.60 14 -90081000.AHN 1.75 14.9 2234 -9.4 6.2 13.3 26.7 6.4 0.6 0.80 33 -90081500.DDC 1.75 15.1 3012 -6.6 5.6 9.0 15.8 9.9 0.4 0.60 59 -90082100.AMA 1.75 14.6 2833 -5.7 6.6 11.7 11.3 10.6 0.4 1.20 75 -90082400.OVN 1.75 18.7 5016 -7.4 6.8 7.4 14.7 9.4 0.8 0.70 100 -90082600.BIS 1.75 13.7 3187 -13.2 8.6 22.2 23.1 13.2 2.6 2.50 190 -90082600.HON 1.75 17.9 5529 -11.5 9.1 14.7 28.6 9.9 3.6 -999.00 156 -90090200.MAF 1.75 14.9 3597 -6.2 6.8 17.2 18.3 7.5 0.9 2.50 58 -90091100.AHN 1.75 15.1 2857 -8.6 5.9 7.9 7.6 6.3 0.4 0.60 80 -91032700.DAY 1.75 10.7 1310 -13.1 6.4 30.2 30.6 24.3 0.8 1.80 531 -91051300.BIS 1.75 13.8 1867 -11.5 6.8 26.9 19.8 15.8 1.3 0.70 -79 -91051300.HON 1.75 14.7 3615 -9.5 7.2 14.2 22.7 13.0 1.2 2.80 97 -91051700.GGG 1.75 18.4 5081 -10.4 7.5 7.9 11.2 10.5 1.4 0.90 157 -91053100.AHN 1.75 16.3 3505 -6.9 5.9 3.9 4.1 3.2 0.2 0.60 15 -91060600.JAN 1.75 16.3 3344 -9.1 6.8 9.5 9.6 3.1 0.8 0.60 12 -91060600.RAP 1.75 13.1 2001 -11.5 7.1 13.2 19.7 11.9 0.7 1.40 170 -92051500.1M1 1.75 13.3 2877 -11.3 6.4 11.4 16.3 7.9 0.7 1.50 54 -94062600.PBI 1.75 17.7 4199 -9.1 6.6 4.9 6.6 5.2 0.5 1.80 10 -94070100.1M1 1.75 18.6 4820 -8.1 6.1 20.0 18.5 12.6 2.1 1.00 342 -94071700.1M1 1.75 17.7 3339 -6.4 5.8 12.5 11.3 19.1 0.7 0.60 164 -94071700.HAT 1.75 16.5 2973 -6.0 5.7 5.9 3.1 4.4 0.2 0.60 33 -97100900.OUN 1.75 16.5 3628 -7.5 6.0 20.0 29.9 16.6 1.3 0.80 205 -98062500.FFC 1.75 15.8 3224 -8.9 7.3 4.2 9.9 5.6 0.3 0.60 54 -00051800.GSO 1.50 11.9 1767 -13.7 6.5 16.4 31.1 7.6 0.7 1.60 124 -00090200.SLC 1.50 9.1 1641 -14.7 8.4 16.1 24.8 20.1 0.7 1.70 101 -01062600.GSO 1.50 11.9 929 -11.7 6.0 17.8 25.6 10.4 0.3 0.60 106 -01062600.RNK 1.50 11.1 1653 -11.9 5.7 13.7 30.3 8.3 0.4 2.10 88 -02042200.ILN 1.50 10.3 623 -13.3 6.8 36.0 43.5 31.2 0.5 2.10 525 -02072500.LCH 1.50 20.2 5453 -7.3 5.9 8.5 11.3 5.5 1.0 0.60 66 -03031700.MHX 1.50 12.1 1241 -13.1 5.4 19.1 32.8 11.5 0.5 0.70 37 -03091800.INL 1.50 13.7 1863 -13.5 7.5 24.7 29.2 15.3 1.5 -999.00 384 -06042117.JAN 1.50 13.4 1486 -12.9 6.5 17.4 11.7 6.4 0.7 0.60 58 -06052200.LBF 1.50 8.2 1420 -11.1 7.7 15.2 22.6 14.8 0.4 1.30 199 -06053000.SGF 1.50 15.0 2988 -9.3 6.5 2.7 12.8 4.0 0.2 0.60 27 -06071100.DNR 1.50 10.1 1192 -7.9 7.6 16.2 27.0 12.2 0.3 1.70 79 -89060200.AHN 1.50 13.2 1996 -7.3 6.1 2.6 1.6 3.2 0.1 -999.00 18 -90040200.GSO 1.50 8.7 984 -17.4 6.8 29.7 37.4 19.9 0.7 2.00 210 -90041100.AHN 1.50 11.5 1096 -14.0 6.4 25.4 25.8 19.0 0.7 0.60 343 -90071000.DEN 1.50 13.5 3504 -8.2 8.0 25.4 20.1 16.7 1.9 2.50 41 -90082200.AHN 1.50 16.5 3275 -6.8 6.5 8.7 15.8 6.0 0.5 0.60 48 -90082200.OUN 1.50 16.6 3350 -5.5 6.1 3.3 5.7 3.1 0.1 0.60 -7 -94070100.GSO 1.50 13.8 2296 -10.3 5.4 8.1 14.3 6.6 0.3 0.60 40 -00030400.BMX 1.25 11.4 1311 -14.9 5.7 42.9 54.3 21.1 1.3 1.40 205 -00071100.DDC 1.25 16.4 4707 -4.1 6.8 4.6 8.7 6.0 0.2 2.60 136 -00072000.LZK 1.25 16.4 3973 -6.7 6.8 12.6 12.7 8.3 0.9 1.10 102 -02041200.TOP 1.25 9.8 1084 -16.5 7.1 9.4 27.2 16.2 0.3 1.60 99 -03040500.ILN 1.25 10.4 1856 -15.7 6.5 20.8 25.6 17.7 1.0 2.20 233 -03090300.NKX 1.25 10.8 940 -5.9 6.6 7.0 5.9 4.2 0.1 0.70 9 -03090800.FGZ 1.25 8.3 663 -8.3 7.7 15.0 17.0 11.2 0.1 1.20 130 -03090800.PHX 1.25 12.1 2268 -6.7 6.7 10.7 16.8 8.2 0.3 1.20 90 -04032700.RAP 1.25 8.5 2052 -15.5 8.0 19.0 17.5 12.6 1.0 1.50 161 -04100400.AMA 1.25 10.5 1672 -13.5 7.6 23.5 31.9 10.7 1.0 2.40 28 -05030700.MAF 1.25 8.0 547 -16.7 6.9 34.3 40.4 16.9 0.4 1.90 177 -05090600.LBF 1.25 13.0 2252 -9.1 8.1 14.1 27.2 6.3 0.7 2.90 28 -05100123.LMN 1.25 15.9 2672 -9.9 7.0 21.4 26.0 14.1 1.5 -999.00 276 -06051500.TLH 1.25 10.8 1279 -13.7 7.1 24.7 23.2 18.5 0.8 1.70 104 -06052000.BOI 1.25 7.4 1070 -13.5 8.4 15.9 25.9 9.2 0.3 0.80 95 -06052600.FFC 1.25 12.1 1711 -12.1 7.1 8.7 3.3 4.1 0.4 1.10 46 -06060300.ILX 1.25 10.0 1218 -14.5 5.9 20.0 22.7 14.1 0.5 1.50 87 -06060312.LBF 1.25 7.7 988 -11.9 9.0 19.5 17.8 10.8 0.4 1.00 699 -06061200.DNR 1.25 6.0 942 -9.9 9.4 17.1 22.2 7.4 0.2 0.60 130 -06070400.GRB 1.25 14.1 1881 -10.1 6.6 22.8 40.7 14.0 1.0 0.60 132 -06072700.ILX 1.25 20.7 4385 -4.3 5.7 12.7 19.1 14.7 0.7 0.60 318 -06072800.FGZ 1.25 13.5 3100 -5.3 8.1 22.7 18.3 14.1 1.0 2.70 193 -90041400.OUN 1.25 10.8 1408 -18.2 7.9 23.5 33.0 17.5 1.2 2.00 146 -94062500.GSO 1.25 15.9 2334 -5.4 5.6 9.9 5.2 12.9 0.3 0.60 103 -00051400.TLH 1.00 15.9 3542 -9.9 6.9 4.2 4.2 5.4 0.4 1.00 -4 -00053000.LBF 1.00 9.9 2258 -9.7 9.2 27.2 31.9 16.9 1.3 1.10 294 -00060100.ILX 1.00 16.1 3208 -9.1 7.0 17.9 15.6 20.7 1.4 1.80 163 -00060200.DVN 1.00 16.4 3451 -9.3 7.3 14.1 11.0 14.2 1.3 0.60 175 -00060200.TOP 1.00 16.1 3517 -9.3 6.9 10.4 16.3 4.9 0.9 0.80 39 -00062100.TBW 1.00 17.1 3180 -8.5 6.4 12.2 19.0 8.9 0.9 0.60 49 -00062300.MHX 1.00 18.6 4167 -8.7 6.1 6.0 6.1 9.7 0.6 0.60 89 -00062600.DDC 1.00 13.5 2618 -6.1 6.7 15.8 16.9 14.3 0.5 1.60 51 -00062600.TOP 1.00 17.8 4052 -8.9 7.6 1.3 23.9 2.4 0.1 2.30 26 -00063000.PIT 1.00 9.9 1086 -15.9 5.5 22.0 37.9 8.1 0.5 1.80 77 -00070200.DDC 1.00 16.2 3566 -5.7 6.6 14.2 21.9 5.5 0.7 1.30 38 -00070200.RAP 1.00 15.6 5621 -9.7 8.7 21.5 22.7 15.9 3.8 2.20 263 -00070300.DDC 1.00 17.2 4558 -5.9 7.5 13.6 22.7 11.7 1.1 2.40 66 -00070300.OAX 1.00 18.5 4633 -6.3 6.9 10.6 19.6 9.9 0.9 1.90 133 -00070400.DDC 1.00 18.1 5142 -7.1 7.6 9.7 19.2 11.4 1.2 2.40 114 -00070700.RAP 1.00 14.2 4065 -7.7 8.6 29.4 33.3 10.8 2.7 2.10 111 -00071200.DDC 1.00 14.4 2941 -5.5 7.2 11.3 11.7 10.8 0.5 1.40 196 -00071400.GRB 1.00 12.0 1743 -12.3 6.9 21.5 42.9 13.4 0.9 1.70 195 -00071500.SHV 1.00 17.2 4004 -5.9 6.0 4.6 8.6 6.2 0.3 0.60 46 -00071700.TOP 1.00 15.9 3927 -8.7 7.9 8.9 14.1 14.5 0.9 2.40 198 -00071900.GYX 1.00 11.4 997 -13.3 6.0 27.0 36.1 18.8 0.6 1.00 107 -00072300.OTX 1.00 9.0 2088 -12.3 8.2 17.2 21.1 7.8 0.8 1.20 43 -00072700.JAN 1.00 12.5 2066 -10.7 6.4 8.0 8.4 4.2 0.3 1.00 -50 -00072800.LBF 1.00 17.1 5581 -7.7 8.1 25.0 21.1 9.6 3.5 3.10 187 -00072800.TOP 1.00 15.3 3666 -10.3 7.6 22.0 26.4 9.1 2.3 2.60 115 -00072900.CHS 1.00 16.1 2462 -7.5 5.6 9.3 13.2 3.3 0.4 0.60 4 -00072900.ILN 1.00 14.3 2735 -11.5 6.7 13.4 21.0 8.0 1.0 0.60 68 -00080700.TOP 1.00 17.3 4476 -7.5 7.2 17.8 22.9 11.7 1.8 1.80 72 -01061900.JAX 1.00 17.2 2584 -9.5 6.1 4.8 8.3 5.0 0.3 0.60 13 -01062100.ABR 1.00 8.1 1118 -19.3 7.0 4.2 12.4 3.6 0.1 1.30 14 -01062600.LBF 1.00 12.7 3931 -8.1 8.1 9.3 8.1 8.1 0.7 1.50 119 -02012400.LZK 1.00 13.1 1343 -12.7 6.6 32.5 40.7 20.2 1.1 0.60 290 -02042300.OAX 1.00 6.4 614 -23.3 7.9 26.3 36.6 15.2 0.4 1.40 133 -02051800.CRP 1.00 20.3 5902 -10.5 7.4 22.6 23.2 10.7 5.0 1.60 86 -02052700.AMA 1.00 9.7 2332 -11.1 7.2 14.5 11.8 13.0 0.6 1.40 198 -02060400.CHS 1.00 15.2 3170 -10.1 7.6 9.7 10.8 11.7 0.9 0.60 33 -02060700.ABR 1.00 9.0 2252 -14.7 8.1 12.4 18.1 8.2 0.7 1.20 118 -02070200.FFC 1.00 16.3 4268 -9.7 6.6 7.8 4.3 7.3 0.8 0.60 46 -02070300.LBF 1.00 14.1 3367 -5.9 7.5 14.0 6.2 11.5 0.7 1.20 158 -02072000.JAN 1.00 17.6 3501 -6.7 6.1 6.1 7.9 5.7 0.4 0.60 58 -02072600.TOP 1.00 13.8 3390 -5.9 7.5 16.9 16.9 11.9 0.8 2.20 168 -02072700.RAP 1.00 9.4 1688 -9.3 7.5 21.0 28.6 14.5 0.6 1.30 139 -02072900.AMA 1.00 13.6 3610 -6.5 7.8 12.5 12.2 13.6 0.7 2.00 164 -02080300.BMX 1.00 18.4 5098 -6.5 5.8 9.6 10.8 11.5 0.8 1.40 33 -02080400.SGF 1.00 17.7 4328 -5.5 6.5 1.1 7.6 3.8 0.1 1.50 -11 -03031500.TBW 1.00 15.9 3398 -13.7 7.0 18.6 27.3 3.9 2.3 0.90 32 -03032000.ILX 1.00 8.0 713 -21.9 6.9 3.5 11.4 5.4 0.1 1.40 -26 -03032100.DTX 1.00 8.7 1602 -21.3 6.6 13.3 27.1 7.7 0.6 1.10 80 -03040500.LZK 1.00 10.7 1751 -14.9 6.6 27.4 33.1 12.6 1.2 2.30 65 -03041800.DNR 1.00 5.3 1063 -18.1 8.6 11.0 43.9 5.9 0.2 0.60 41 -03042400.SHV 1.00 13.1 1456 -12.9 7.2 26.1 36.8 15.2 1.1 0.60 278 -03042800.MFL 1.00 16.7 2735 -10.7 6.4 11.7 25.5 12.3 0.9 0.60 83 -03043000.OAX 1.00 8.9 1064 -16.3 7.4 29.1 32.0 18.4 0.8 1.90 353 -03050100.FFC 1.00 11.1 1429 -13.5 6.6 6.9 6.4 1.0 0.2 1.60 5 -03050212.BNA 1.00 10.3 1865 -15.3 7.0 13.0 18.0 12.1 0.6 2.20 55 -03050312.BMX 1.00 9.7 1402 -16.1 7.5 13.8 38.5 7.9 0.5 1.80 72 -03051100.MHX 1.00 16.0 3585 -9.3 7.3 16.2 15.0 11.9 1.5 0.90 104 -03051200.JAX 1.00 15.9 3060 -7.9 6.9 13.2 20.0 10.1 0.8 -999.00 48 -03051800.TBW 1.00 16.1 3839 -8.7 6.5 5.7 11.9 6.2 0.5 1.10 3 -03051800.XMR 1.00 16.0 3602 -9.5 7.0 8.6 10.7 5.6 0.8 0.90 -7 -03052600.TFX 1.00 8.3 994 -10.9 8.0 16.0 15.9 9.1 0.3 1.30 59 -03052700.ABQ 1.00 7.1 713 -9.9 8.3 14.7 20.6 3.1 0.1 0.60 12 -03060200.DDC 1.00 11.1 1960 -9.5 7.9 17.5 20.6 11.9 0.7 2.00 222 -03060900.RNK 1.00 15.0 2965 -9.1 6.2 24.1 29.2 18.9 1.4 1.20 134 -03090900.TUS 1.00 11.5 2363 -8.3 7.3 7.9 11.8 2.8 0.3 1.10 12 -03111712.TOP 1.00 11.5 1641 -17.3 7.3 25.6 32.6 17.8 1.4 2.70 329 -04031500.DRT 1.00 11.6 1498 -15.5 7.0 16.8 24.5 6.6 0.8 1.40 123 -04032100.FWD 1.00 13.1 2648 -15.5 8.2 12.9 20.8 4.9 1.4 2.80 29 -04051000.FFC 1.00 11.4 2006 -11.1 5.4 4.7 11.0 4.0 0.2 1.90 -15 -04051200.AMA 1.00 9.7 1922 -11.5 8.0 15.0 8.4 19.1 0.6 1.60 282 -04080900.TOP 1.00 14.3 2676 -11.5 7.4 11.9 15.6 5.9 0.9 0.90 82 -04081700.TUS 1.00 13.1 2027 -8.9 7.1 13.2 13.3 8.8 0.5 1.00 96 -04082800.OUN 1.00 16.0 4225 -7.1 7.4 3.8 3.0 7.0 0.3 1.50 101 -05030400.SGF 1.00 5.9 823 -25.9 7.1 24.2 27.9 13.0 0.5 0.70 151 -05050412.TBW 1.00 14.1 1839 -13.5 7.3 15.8 33.3 10.0 1.0 1.00 187 -05050600.EPZ 1.00 8.0 1672 -12.7 8.6 27.7 28.8 15.0 1.0 1.20 178 -05081100.GGW 1.00 10.1 805 -13.7 7.4 30.5 38.9 15.6 0.6 2.10 170 -05081700.GGW 1.00 9.2 1042 -11.1 7.8 27.6 40.5 16.7 0.5 1.70 265 -05081800.LMN 1.00 17.7 3655 -4.1 6.0 22.3 17.3 13.3 0.8 0.60 221 -05082700.EPZ 1.00 11.1 2162 -6.5 8.5 4.9 6.7 4.0 0.2 1.00 21 -05092900.FWD 1.00 12.7 1553 -5.9 6.4 10.1 13.0 8.5 0.2 0.60 39 -06010300.ILN 1.00 9.0 791 -19.3 7.5 16.0 23.8 7.8 0.4 1.40 140 -06011200.GSO 1.00 9.5 1374 -19.1 7.5 15.6 28.9 21.9 0.7 2.50 253 -06041400.BUF 1.00 6.2 383 -23.3 7.6 26.8 55.7 21.6 0.3 1.40 237 -06041400.PIT 1.00 6.2 390 -20.1 7.0 18.6 40.0 18.8 0.1 0.90 220 -06051600.DTX 1.00 8.7 519 -20.5 6.1 5.0 17.9 7.2 0.1 0.70 -7 -06051800.IAD 1.00 8.4 1009 -20.5 6.7 16.0 20.3 11.9 0.4 1.30 66 -06052300.RAP 1.00 9.6 2536 -10.3 8.5 9.7 18.1 5.6 0.5 1.30 43 -06052600.AMA 1.00 7.9 1911 -11.3 9.9 16.9 12.6 11.8 0.7 0.70 262 -06052600.GSO 1.00 11.9 1743 -10.1 6.1 14.4 11.4 8.4 0.4 0.80 82 -06052600.JAX 1.00 13.3 1856 -10.7 6.6 15.3 20.8 10.5 0.6 0.60 70 -06052700.BIS 1.00 9.4 2274 -11.9 8.5 22.0 21.3 20.2 1.1 1.30 198 -06052700.JAX 1.00 15.0 2879 -9.9 6.1 13.7 13.1 11.0 0.9 0.80 117 -06053100.GGW 1.00 5.6 570 -21.1 7.4 5.0 8.1 2.8 0.1 0.90 30 -06060200.BNA 1.00 14.2 2055 -7.9 5.4 5.5 12.6 8.6 0.2 0.60 -2 -06060300.GRB 1.00 8.8 1314 -18.9 7.1 16.3 19.5 12.0 0.6 1.60 77 -06060400.ILN 1.00 8.3 1032 -18.1 6.5 8.5 11.1 6.7 0.2 1.20 35 -06060500.FFC 1.00 11.0 1475 -12.5 5.9 11.7 22.4 5.7 0.3 2.10 18 -06060700.SHV 1.00 14.6 2252 -10.3 7.4 25.4 14.5 15.1 1.5 0.60 164 -06060712.RAP 1.00 7.9 1110 -10.3 8.7 12.3 19.2 9.9 0.2 1.30 131 -06060800.LBF 1.00 10.8 2368 -6.9 7.7 20.5 22.3 11.2 0.7 1.70 244 -06061200.BNA 1.00 13.6 1539 -6.7 5.6 15.2 7.0 9.1 0.3 0.60 107 -06061900.GRB 1.00 14.0 2397 -11.7 6.2 15.9 20.9 12.4 0.9 1.90 74 -06062100.BNA 1.00 14.1 2387 -9.3 6.8 6.7 3.3 6.8 0.3 0.60 43 -06062200.JAN 1.00 15.3 2595 -8.7 7.0 3.0 2.5 4.6 0.2 0.60 -15 -06062300.BMX 1.00 12.5 1595 -7.1 6.2 5.1 4.3 1.9 0.1 0.60 -10 -06062300.BNA 1.00 15.6 3023 -10.1 7.3 10.6 3.6 8.0 0.9 0.60 71 -06062300.DDC 1.00 11.0 987 -11.1 7.2 17.7 17.5 9.3 0.4 1.30 78 -06062700.FFC 1.00 15.4 2376 -6.9 5.6 12.6 21.6 9.3 0.4 0.60 23 -06062800.GRB 1.00 9.4 1049 -15.5 6.1 13.8 20.6 8.1 0.3 1.60 34 -06062900.PIT 1.00 10.9 925 -13.7 6.4 21.3 35.7 7.1 0.4 1.60 17 -06062900.TOP 1.00 8.5 959 -12.3 7.1 12.7 14.7 8.1 0.2 1.00 120 -06070200.FFC 1.00 11.2 1552 -9.7 6.3 6.5 9.5 1.2 0.2 0.90 4 -06070200.FWD 1.00 12.8 1806 -9.9 7.2 6.1 11.2 1.6 0.2 0.60 20 -06070200.LBF 1.00 12.2 2554 -8.5 8.0 20.5 17.9 17.1 1.0 2.00 223 -06070300.IAD 1.00 14.8 3195 -9.3 5.9 10.7 13.6 10.7 0.7 0.90 60 -06070500.GSO 1.00 15.2 2335 -7.3 6.1 9.6 6.1 7.6 0.4 0.60 96 -06071300.BIS 1.00 9.0 966 -8.7 8.1 7.7 14.5 5.9 0.1 0.70 108 -06071800.DNR 1.00 9.1 1197 -6.9 8.0 7.7 6.2 3.5 0.1 1.10 83 -06072000.RNK 1.00 14.2 2160 -8.5 5.9 9.1 3.0 11.1 0.3 1.00 113 -06072200.RNK 1.00 16.5 3249 -6.1 6.0 7.0 9.1 7.2 0.3 0.60 100 -06072300.ABQ 1.00 9.6 1267 -4.9 7.8 5.7 11.2 2.8 0.1 1.00 -9 -06072700.RAP 1.00 8.7 694 -8.7 8.3 16.3 21.8 13.4 0.2 0.90 157 -06072800.ABR 1.00 12.7 1956 -6.1 6.4 23.5 29.4 16.1 0.5 1.40 149 -06072800.OAX 1.00 15.6 2714 -5.3 6.0 16.8 22.8 9.3 0.5 0.60 92 -06080100.PIT 1.00 18.6 3456 -4.5 5.8 12.7 7.9 10.1 0.5 0.60 104 -06081000.TUS 1.00 13.4 1913 -6.3 7.3 3.1 6.2 1.2 0.1 0.60 12 -06090800.ABR 1.00 9.5 1406 -14.3 7.5 9.4 9.1 10.6 0.3 1.70 163 -06090800.LBF 1.00 7.9 880 -14.1 7.5 11.1 19.9 6.9 0.2 0.90 20 -06091200.ILX 1.00 13.6 1642 -11.1 6.4 12.9 23.9 8.6 0.5 0.60 56 -06092900.FFC 1.00 10.8 705 -11.1 4.6 19.1 33.4 18.9 0.2 0.60 85 -89060500.1M1 1.00 15.8 2493 -8.2 6.0 14.7 13.0 10.3 0.7 0.60 19 -89061200.JAN 1.00 17.7 3616 -9.1 6.5 15.3 5.8 7.5 1.4 0.60 84 -89061400.JAN 1.00 16.0 3274 -11.5 7.1 11.3 8.2 9.4 1.2 1.00 57 -89061600.TBW 1.00 16.4 3463 -7.6 5.7 10.2 6.4 5.9 0.6 0.60 36 -89061900.CKL 1.00 16.7 3363 -9.6 6.4 14.5 12.2 12.2 1.2 0.60 103 -89062800.HTS 1.00 17.6 3659 -8.0 5.8 15.4 21.4 7.4 1.1 0.60 62 -89062900.AMA 1.00 12.6 2035 -8.2 8.6 14.8 26.0 13.0 0.6 2.30 165 -89070600.OUN 1.00 12.9 1373 -6.0 6.2 6.0 12.2 11.3 0.1 0.60 64 -89071200.TOP 1.00 16.6 3182 -8.1 7.6 12.6 8.2 13.2 1.0 1.60 157 -89072400.VCT 1.00 14.8 2953 -9.6 6.2 7.7 13.3 9.5 0.5 0.60 120 -89072800.DAY 1.00 16.4 2617 -7.8 5.7 13.5 11.3 7.5 0.6 0.60 83 -89073100.GTF 1.00 9.5 1858 -9.3 8.9 10.8 21.7 10.3 0.4 1.20 106 -89080600.OUN 1.00 16.3 3439 -5.4 6.8 10.2 12.1 9.7 0.5 0.80 101 -89082000.UMN 1.00 17.3 3524 -6.0 6.2 20.6 14.9 13.6 1.1 0.80 350 -89082700.DDC 1.00 16.9 4549 -7.4 7.6 11.3 24.3 1.4 1.2 2.10 11 -90050400.CKL 1.00 14.0 1534 -10.6 6.4 20.1 25.8 10.8 0.7 0.60 141 -90061000.GSO 1.00 15.3 2409 -8.8 6.1 9.7 14.5 11.1 0.5 0.60 145 -90062300.HTS 1.00 14.5 1346 -8.5 5.8 27.1 36.9 19.1 0.6 0.60 231 -90062400.OUN 1.00 11.9 1571 -10.8 8.2 26.8 24.9 14.1 1.1 1.90 186 -90070900.GSO 1.00 17.6 4051 -5.3 5.6 10.2 10.5 6.1 0.5 0.80 73 -90071100.GSO 1.00 15.2 3487 -6.6 5.9 3.5 9.1 7.5 0.2 0.60 38 -90071800.AMA 1.00 11.4 1482 -6.5 6.7 14.8 26.1 8.4 0.3 1.10 98 -90072000.DEN 1.00 11.7 1698 -7.2 7.4 16.1 20.8 14.0 0.4 2.10 182 -90072200.TBW 1.00 17.8 3409 -5.7 6.0 4.6 7.8 3.6 0.2 0.60 35 -90072500.DDC 1.00 11.9 1703 -8.0 6.8 14.0 17.5 10.1 0.4 1.40 208 -90072600.GGW 1.00 10.2 1514 -10.6 7.0 15.6 16.6 7.9 0.4 1.80 55 -90080200.MAF 1.00 14.4 1702 -6.2 6.1 9.7 12.2 2.8 0.2 0.60 27 -90081900.AMA 1.00 13.6 2596 -7.9 7.0 5.1 5.1 3.8 0.2 0.80 45 -90082100.OUN 1.00 19.2 5290 -6.7 6.9 8.3 3.4 6.2 0.9 0.60 38 -90082300.HTS 1.00 15.2 707 -7.7 6.2 7.0 8.5 3.6 0.1 0.60 -4 -90083000.GSO 1.00 16.4 3552 -9.3 6.0 20.1 18.2 14.1 1.6 0.60 37 -90092900.MAF 1.00 12.2 1606 -8.0 6.0 15.0 28.7 11.3 0.3 0.80 35 -90100800.GGG 1.00 16.8 2689 -6.0 5.8 14.2 17.2 8.9 0.5 0.60 70 -90101800.GGG 1.00 14.2 1619 -10.6 6.4 20.0 27.9 12.5 0.7 0.60 114 -91060500.AHN 1.00 15.3 3036 -8.1 6.7 5.7 13.0 11.6 0.3 0.60 72 -91060500.CKL 1.00 16.9 3345 -7.5 6.3 5.0 4.8 9.2 0.3 0.60 52 -93092500.OUN 1.00 16.1 2895 -6.7 6.2 24.5 27.2 16.0 1.1 0.60 264 -97081700.DVN 1.00 20.8 5790 -8.3 7.5 14.3 11.8 12.3 2.6 1.00 137 -97081700.PIT 1.00 18.3 3951 -7.9 6.9 12.7 23.0 15.4 1.2 0.60 224 -97081800.FFC 1.00 18.4 3564 -6.1 6.1 2.5 2.0 4.4 0.1 0.60 37 -98052200.BNA 1.00 15.2 3709 -10.7 6.4 9.2 7.9 10.4 0.8 0.90 83 -99061200.ILN 1.00 14.7 3299 -8.3 5.8 4.6 4.0 8.2 0.3 1.10 32 -00021800.JAN 0.88 12.5 1866 -14.9 6.7 27.5 38.9 16.2 1.5 0.70 270 -00061100.DDC 0.88 14.3 3471 -7.9 6.9 11.0 20.2 14.0 0.7 2.40 53 -00061800.RAP 0.88 7.4 1396 -18.9 7.1 14.0 34.9 7.4 0.5 1.40 270 -00070600.DDC 0.88 12.3 2581 -7.5 8.5 9.4 10.0 10.7 0.5 1.80 97 -00072800.BMX 0.88 13.2 2147 -9.5 6.2 8.0 11.4 6.0 0.3 0.70 35 -00080200.DVN 0.88 16.6 4183 -9.7 6.6 11.2 16.4 13.3 1.2 1.10 169 -00080300.PIT 0.88 14.9 2780 -9.7 6.2 15.5 29.2 9.1 0.9 0.60 81 -00080400.BNA 0.88 16.3 3453 -9.9 6.8 10.9 16.0 9.1 1.0 0.60 83 -00080500.LZK 0.88 16.1 3872 -6.3 5.6 9.4 14.6 7.3 0.5 0.80 6 -00080700.DTX 0.88 19.4 4231 -7.3 6.0 16.6 31.6 10.6 1.4 0.60 78 -00090300.OAX 0.88 12.6 3099 -10.1 8.7 16.9 21.6 9.5 1.4 1.40 126 -01062200.DVN 0.88 10.3 1285 -18.1 6.5 10.8 11.8 8.7 0.4 1.00 66 -01062600.CRP 0.88 16.6 3837 -8.5 6.4 4.0 8.9 7.1 0.3 0.60 53 -02031000.GSO 0.88 11.0 819 -15.3 5.8 24.6 29.7 19.8 0.5 1.20 236 -02052900.OAX 0.88 13.0 2754 -13.3 7.1 7.5 7.0 10.0 0.6 2.60 127 -03031400.TLH 0.88 11.6 2141 -13.1 6.3 10.5 9.0 5.7 0.5 1.10 39 -03042912.TOP 0.88 10.6 1617 -16.9 7.8 16.7 22.5 11.0 0.9 2.80 238 -03050400.BIS 0.88 8.2 1467 -18.7 7.4 15.4 16.1 8.8 0.6 1.60 86 -03060300.JAX 0.88 16.1 3513 -10.1 7.6 11.1 10.3 11.4 1.1 0.60 111 -03060600.ABR 0.88 8.1 888 -19.9 6.8 17.3 14.2 9.2 0.4 1.50 47 -03061600.TOP 0.88 12.4 1944 -11.9 6.4 0.8 4.2 5.8 0.0 1.00 3 -03062000.GGW 0.88 9.2 1032 -9.7 8.1 9.8 17.1 8.3 0.2 1.30 76 -03101712.JAN 0.88 12.8 1891 -11.5 6.3 25.4 33.9 16.9 1.1 1.20 246 -03102600.CRP 0.88 17.9 3408 -9.9 6.3 15.2 34.5 9.8 1.4 0.60 17 -03111800.OAX 0.88 10.0 957 -18.3 6.8 41.2 58.6 20.0 1.2 2.50 88 -04040900.AMA 0.88 8.2 1515 -16.7 7.0 17.9 23.0 14.7 0.6 1.60 139 -04081800.PHX 0.88 10.5 1709 -9.1 7.3 4.8 9.2 6.0 0.1 0.80 15 -04082700.ABR 0.88 10.2 1433 -15.1 6.7 14.4 40.5 5.3 0.5 1.50 28 -04091900.LCH 0.88 15.9 2433 -6.9 5.8 4.4 15.6 7.7 0.2 0.60 6 -04092000.OAK 0.88 7.3 242 -17.9 5.5 27.4 30.4 6.5 0.1 0.70 56 -04100400.GSO 0.88 13.2 1385 -14.9 6.5 15.2 26.8 10.4 0.6 1.40 101 -05081300.MAF 0.88 12.8 1568 -6.3 6.5 11.8 13.7 6.9 0.2 0.60 82 -06013012.JAN 0.88 10.0 1058 -20.9 7.1 38.7 46.0 18.9 1.5 2.60 71 -06032100.OUN 0.88 5.4 579 -25.5 7.4 16.6 26.7 5.7 0.2 0.90 53 -06040700.FWD 0.88 12.5 2831 -12.5 6.2 33.5 41.5 20.1 2.2 2.80 40 -06041200.TOP 0.88 8.4 726 -14.3 7.0 33.2 37.2 23.1 0.5 2.00 232 -06043000.OTX 0.88 6.4 499 -17.9 7.3 17.3 23.3 8.3 0.2 0.80 75 -89061200.AMA 0.88 13.2 3301 -11.7 8.7 12.9 25.2 9.2 1.4 2.30 167 -89062600.UMN 0.88 16.2 3812 -6.9 6.3 0.7 10.8 2.0 0.0 0.60 -14 -89062700.DEN 0.88 8.6 931 -11.1 7.6 14.3 14.3 10.8 0.2 1.80 122 -89072700.AHN 0.88 17.5 3996 -6.9 6.5 3.5 6.8 7.1 0.3 0.60 66 -89082500.AHN 0.88 16.9 3533 -5.1 6.1 3.3 8.1 2.7 0.1 0.60 5 -89082600.AHN 0.88 17.1 3463 -5.6 5.8 11.3 8.6 4.0 0.5 0.60 41 -89082900.GGG 0.88 18.5 3979 -4.6 6.0 4.1 2.2 1.6 0.2 0.60 3 -90071000.PIT 0.88 16.6 3362 -6.7 6.3 19.7 14.7 14.3 1.1 0.60 124 -90073000.AMA 0.88 12.2 943 -7.5 6.3 12.7 18.1 8.4 0.2 0.60 14 -90091900.OUN 0.88 18.0 3878 -6.7 6.2 11.9 20.5 12.1 0.8 0.60 119 -97010900.SIL 0.88 13.1 909 -13.6 6.7 39.7 37.0 33.7 1.0 -999.00 511 -98062500.DDC 0.88 11.9 2667 -7.3 8.7 25.1 34.7 12.4 1.2 1.40 224 -90052100.SIL 0.85 16.6 3505 -10.6 6.7 8.4 13.0 10.9 0.8 0.60 70 -03052100.TBW 0.80 15.8 2941 -9.5 6.2 2.7 5.4 7.1 0.2 0.60 27 -91051700.JAN 0.80 15.5 2890 -8.9 6.5 1.1 7.8 0.6 0.1 0.60 1 -00022400.LZK 0.75 10.6 1590 -18.1 7.0 25.0 34.2 17.2 1.3 2.50 270 -00050300.JAN 0.75 12.8 1438 -12.9 5.9 12.8 7.2 13.9 0.4 0.60 120 -00052200.LZK 0.75 12.1 2062 -13.5 6.2 22.6 32.5 17.7 1.1 1.40 162 -00061800.JAX 0.75 15.7 2677 -7.9 5.7 6.0 10.5 7.9 0.3 0.60 61 -00061900.WAL 0.75 17.4 2940 -7.9 6.3 11.3 9.5 11.6 0.7 0.60 134 -00062500.JAX 0.75 15.6 2442 -10.1 6.2 9.4 21.8 9.3 0.5 0.60 104 -00062900.GRB 0.75 8.9 860 -18.9 6.4 17.0 24.4 14.1 0.4 1.10 108 -00071300.DDC 0.75 15.1 3064 -3.7 6.1 6.2 10.6 9.2 0.2 0.60 0 -00071300.FWD 0.75 14.9 3103 -5.7 6.5 10.6 11.4 13.9 0.4 0.80 120 -00071800.JAN 0.75 15.8 3305 -5.5 6.0 13.9 14.4 13.1 0.6 0.60 -56 -00071900.JAN 0.75 17.3 3841 -6.1 6.1 7.5 6.9 5.7 0.4 0.60 32 -00072100.TBW 0.75 18.9 4845 -6.9 6.4 7.0 10.7 7.4 0.7 0.90 56 -00072300.GSO 0.75 16.5 2443 -9.1 5.7 20.6 22.2 6.6 1.0 0.60 88 -00072400.GGW 0.75 10.9 3240 -11.1 8.5 26.1 22.5 12.5 2.1 1.40 54 -00080400.LCH 0.75 15.7 3045 -7.5 5.6 2.8 12.8 4.7 0.1 0.60 28 -00090200.SHV 0.75 12.1 1896 -7.5 7.0 3.2 2.0 5.2 0.1 0.70 15 -01062400.BIS 0.75 13.7 4781 -10.9 9.0 18.7 27.1 15.0 2.8 1.70 249 -02030812.ILX 0.75 7.2 533 -19.7 6.9 31.5 49.1 16.1 0.4 1.30 599 -02051500.PIT 0.75 5.9 521 -27.9 7.9 14.7 14.3 17.3 0.2 1.10 74 -02060400.JAX 0.75 15.3 3128 -8.1 6.5 3.7 6.5 0.3 0.2 0.60 15 -02062500.LBF 0.75 11.7 3690 -10.3 9.2 7.2 9.1 5.0 0.7 1.30 45 -02072000.LZK 0.75 21.6 6551 -8.5 6.9 10.2 6.8 8.7 2.0 0.90 145 -03031500.OTX 0.75 6.3 801 -26.3 7.5 24.9 28.7 18.3 0.6 1.50 240 -03032000.SGF 0.75 7.6 909 -22.1 6.7 10.5 8.6 18.2 0.3 1.40 205 -03040922.XMR 0.75 15.5 2570 -10.3 5.6 31.0 38.3 12.7 1.7 0.60 34 -03042300.DNR 0.75 6.7 1183 -16.1 7.9 19.1 35.2 12.2 0.5 1.20 265 -03050100.DNR 0.75 6.7 1011 -20.1 8.0 33.5 27.3 12.5 0.9 1.20 108 -03050200.BMX 0.75 12.4 2216 -12.9 6.6 6.7 7.6 4.6 0.4 0.70 9 -03052400.PIT 0.75 10.0 707 -16.7 6.5 26.5 23.6 12.1 0.5 1.00 65 -03060700.MFL 0.75 18.2 3041 -6.7 5.6 2.8 9.3 0.9 0.1 0.60 5 -03061000.JAX 0.75 16.0 2482 -8.7 6.7 11.3 22.4 10.8 0.6 0.60 13 -03061222.XMR 0.75 17.1 2144 -7.9 6.1 4.6 6.1 5.2 0.2 0.60 65 -03061500.SHV 0.75 16.2 2511 -9.9 6.3 21.1 32.8 13.5 1.3 0.60 91 -03061900.TFX 0.75 8.6 1802 -9.3 8.2 10.8 13.4 13.1 0.3 1.00 178 -03062000.BOI 0.75 7.0 491 -12.5 8.2 23.3 18.1 17.9 0.2 1.00 141 -03062100.RAP 0.75 11.9 2338 -10.3 7.2 8.1 14.4 15.0 0.4 2.40 137 -03062200.IAD 0.75 10.5 1215 -17.1 5.8 15.1 9.7 9.3 0.5 1.10 79 -03090900.GJT 0.75 6.8 996 -12.3 9.1 17.7 28.1 8.5 0.3 0.70 199 -03090900.MAF 0.75 12.1 2389 -7.9 7.0 18.1 17.8 12.1 0.7 2.20 222 -03091000.JAN 0.75 15.0 1929 -9.5 6.0 10.8 22.1 8.1 0.4 0.60 83 -03111300.BUF 0.75 8.1 418 -20.5 6.7 46.9 65.5 18.0 0.5 1.50 335 -04030500.LZK 0.75 12.4 745 -10.1 5.8 39.6 53.2 27.8 0.5 0.60 468 -04051300.OAX 0.75 10.5 1193 -13.7 6.9 24.2 28.7 16.7 0.7 2.20 133 -04051700.FFC 0.75 12.2 2077 -12.1 6.4 2.0 11.6 2.9 0.1 0.80 0 -04052300.BUF 0.75 13.8 1807 -10.6 5.8 22.4 24.0 18.8 0.8 0.60 239 -04081700.PHX 0.75 12.6 2729 -7.9 7.1 8.0 6.2 6.2 0.4 1.30 60 -04081900.DDC 0.75 11.7 2146 -6.3 6.2 4.3 11.0 10.2 0.1 0.70 15 -04081900.OTX 0.75 9.8 1929 -11.3 7.4 9.9 15.1 6.2 0.4 1.50 43 -04082800.JAN 0.75 18.0 3714 -7.5 6.4 2.6 3.6 1.0 0.2 0.60 12 -04082800.PIT 0.75 18.3 3258 -6.1 5.6 7.8 6.8 10.4 0.4 0.60 106 -04092800.DNR 0.75 7.9 698 -13.9 7.1 17.7 21.0 12.4 0.2 1.00 112 -04100400.CHS 0.75 15.3 1850 -10.7 6.0 22.1 32.7 13.4 1.0 0.60 81 -05022200.BMX 0.75 11.8 1749 -15.9 6.8 26.1 36.8 19.0 1.4 1.20 174 -05030700.OAX 0.75 5.7 324 -21.9 7.4 14.9 9.6 13.6 0.1 0.90 156 -05042612.JAN 0.75 9.2 993 -17.3 6.9 27.2 35.7 15.7 0.7 2.20 336 -05050500.OTX 0.75 7.7 1601 -19.1 7.3 15.7 22.0 8.5 0.6 1.40 35 -05082100.OAX 0.75 15.5 2617 -6.9 6.0 14.8 30.9 15.0 0.6 0.60 159 -05082400.SHV 0.75 16.6 3397 -5.3 6.1 9.2 4.4 11.1 0.4 0.60 72 -06011400.JAX 0.75 12.1 1223 -15.1 6.5 19.6 26.7 19.7 0.7 0.70 233 -89052800.CKL 0.75 15.4 2098 -8.1 6.2 11.8 13.5 8.0 0.5 0.60 43 -89060400.PAH 0.75 16.4 3338 -9.7 5.8 14.2 14.7 15.5 1.0 0.60 90 -89060700.AHN 0.75 14.2 2402 -13.0 6.6 12.3 18.6 2.7 0.9 0.60 37 -89061300.CKL 0.75 16.1 2677 -8.6 6.1 15.9 7.3 11.5 0.9 0.60 102 -89061500.AHN 0.75 14.7 1717 -7.5 5.5 10.0 9.8 11.8 0.2 0.60 91 -89061600.ACY 0.75 16.5 2243 -7.6 5.9 18.8 19.1 19.5 0.7 0.60 217 -89062200.CKL 0.75 16.1 2986 -10.1 6.7 10.0 8.5 6.8 0.8 0.60 76 -89062300.GRB 0.75 14.6 1729 -8.4 6.2 10.7 10.8 10.0 0.3 -999.00 139 -89062300.OUN 0.75 16.0 3217 -7.1 5.9 12.8 14.9 6.9 0.7 0.60 113 -89062700.PIT 0.75 16.0 2924 -9.1 6.8 8.1 4.9 7.9 0.6 0.60 69 -89070800.AHN 0.75 16.8 2876 -6.5 5.8 4.1 4.8 4.3 0.2 0.60 33 -89071100.DDC 0.75 11.9 1858 -8.1 7.6 8.5 14.0 12.4 0.3 2.10 249 -89072900.SIL 0.75 18.8 4031 -6.8 6.3 4.1 4.4 3.9 0.3 0.60 37 -89073000.PAH 0.75 17.9 3630 -7.0 6.4 11.4 9.0 7.4 0.8 0.60 58 -89073100.TOP 0.75 14.5 2685 -6.4 6.7 9.8 13.0 12.0 0.4 0.60 117 -89081200.GRB 0.75 11.3 1782 -14.8 6.7 4.1 9.5 3.9 0.2 0.60 39 -89081900.HON 0.75 13.1 984 -7.6 7.1 14.0 17.9 12.1 0.2 -999.00 244 -89102800.OUN 0.75 12.0 1679 -12.7 6.8 10.1 27.1 8.3 0.4 1.00 115 -90033100.TBW 0.75 14.8 2515 -10.0 5.6 14.0 15.0 12.0 0.7 0.60 135 -90042100.OUN 0.75 12.4 1915 -14.1 6.5 25.3 31.9 13.1 1.3 1.70 138 -90042200.SEP 0.75 13.3 2775 -11.7 6.5 10.2 20.8 8.1 0.7 1.00 98 -90042400.1M1 0.75 12.8 2374 -12.6 6.7 14.0 8.3 6.6 0.9 0.90 56 -90052500.MAF 0.75 13.1 3262 -7.2 7.9 22.0 30.6 12.4 1.3 1.80 97 -90060400.PIT 0.75 9.5 390 -12.5 5.6 26.0 37.7 14.6 0.2 0.60 57 -90060700.TBW 0.75 17.0 3262 -8.6 6.0 1.6 7.3 4.1 0.1 0.60 8 -90061000.AHN 0.75 14.8 2847 -8.2 5.9 8.6 9.9 5.6 0.4 0.60 50 -90070300.SLI 0.75 18.4 3250 -5.7 5.8 11.8 14.5 7.5 0.6 0.60 79 -90070800.TBW 0.75 20.0 5452 -8.1 6.5 7.8 15.4 5.9 1.1 0.60 11 -90072200.CHS 0.75 18.4 3537 -7.5 6.2 8.3 10.2 7.1 0.6 0.60 88 -90072200.PAH 0.75 16.9 2541 -5.6 5.7 13.3 15.3 11.4 0.4 0.60 80 -90072700.DDC 0.75 14.7 3550 -7.0 7.6 7.6 7.2 6.0 0.5 2.20 84 -90072800.TOP 0.75 16.5 3231 -7.8 6.7 8.8 11.3 9.8 0.6 0.90 281 -90073100.JAN 0.75 14.6 2834 -7.3 6.1 5.1 4.3 0.7 0.2 0.60 -3 -90080400.STC 0.75 13.1 2284 -12.5 7.3 5.3 20.0 8.7 0.3 1.40 45 -90081400.ALB 0.75 14.6 1251 -7.6 5.7 31.1 21.6 20.7 0.6 0.60 261 -90081400.MAF 0.75 13.7 1598 -7.1 6.2 4.4 16.6 2.3 0.1 0.60 35 -90081700.CHS 0.75 19.5 3949 -6.9 5.7 14.2 20.9 11.2 1.0 0.60 101 -90081900.DEN 0.75 11.7 1982 -7.8 7.6 10.2 22.1 6.4 0.3 1.70 25 -90082000.PIA 0.75 19.3 4350 -6.5 6.2 12.0 9.9 9.4 1.0 0.60 67 -90082200.BNA 0.75 15.5 2619 -6.1 6.1 9.1 12.7 8.7 0.3 0.60 -10 -90082300.GGG 0.75 16.2 3016 -5.9 6.0 1.3 5.5 5.3 0.1 0.60 35 -90082500.OUN 0.75 15.7 2800 -6.4 6.6 5.0 11.9 5.3 0.2 0.60 63 -90082500.OVN 0.75 17.2 3418 -7.1 6.4 12.0 21.9 10.0 0.8 0.70 181 -90083000.ACY 0.75 15.2 2413 -9.3 5.8 13.9 22.7 9.0 0.7 0.60 62 -90101700.MAF 0.75 12.3 2870 -12.5 8.0 14.9 16.2 7.7 1.3 2.30 78 -91051700.TBW 0.75 16.1 3306 -7.5 5.4 4.0 0.9 3.8 0.2 0.60 -5 -91060600.CKL 0.75 16.3 2864 -8.6 6.4 8.9 11.4 6.2 0.5 0.60 21 -94062400.GGG 0.75 18.0 3754 -5.5 6.3 11.0 14.2 8.2 0.6 0.60 98 -94062400.HTS 0.75 16.5 2798 -5.5 5.3 8.5 15.0 4.7 0.3 0.60 39 -94070200.LCH 0.75 17.0 2754 -6.8 6.4 10.7 11.0 12.4 0.5 0.60 84 -97061700.BMX 0.75 18.2 3829 -6.9 5.9 12.4 13.0 6.9 0.8 0.60 48 -97062400.MAF 0.75 14.1 3310 -9.9 8.9 11.5 8.6 13.0 1.1 1.60 108 -97081700.TBW 0.75 17.4 3152 -7.3 6.2 2.6 4.4 1.8 0.2 0.60 8 -97081800.SLC 0.75 8.3 931 -10.3 8.5 16.1 22.9 13.6 0.3 1.40 203 -97082200.ILN 0.75 9.6 520 -16.3 5.8 17.5 30.9 3.9 0.2 0.70 50 -98062500.JAN 0.75 17.3 3507 -6.1 6.0 2.3 8.6 7.1 0.1 0.70 -1 -98081000.SHV 0.75 16.8 3464 -6.5 5.9 4.8 1.1 4.2 0.3 0.60 42 +DATE / RAOB REPORT MUMR MUCAPE 500TEMP 7-5 LR 0-6SH 0-9SH 0-3SH SHIP MODELb SRH +91051100.MAF 6.00 14.9 4692 -10.8 8.8 13.2 18.1 14.2 1.9 2.70 -37 +95052300.DDC 6.00 15.3 4181 -9.6 7.5 19.4 26.8 23.4 1.9 3.00 325 +97061700.OUN 5.50 18.8 5751 -9.5 7.4 23.6 45.9 14.5 4.3 3.50 116 +06040300.LZK 5.00 13.7 3819 -14.9 8.0 26.6 32.6 20.9 3.9 3.40 251 +57070300.RAP 5.00 15.8 4359 -6.7 7.7 22.9 39.3 13.9 1.9 3.40 130 +90070800.BIS 5.00 16.6 3717 -9.8 7.7 29.8 42.2 12.5 3.3 2.40 202 +91052900.HON 5.00 15.2 3892 -12.3 8.0 40.7 36.0 25.0 5.7 3.50 269 +92072600.DDC 5.00 17.4 4794 -4.6 6.8 17.4 14.6 18.2 1.1 0.80 176 +96061200.DDC 5.00 13.7 2820 -8.3 7.6 20.3 15.8 12.9 1.2 2.50 142 +99012200.LZK 5.00 12.3 2240 -17.3 7.6 26.3 32.1 23.0 2.3 3.00 294 +99060100.DDC 4.75 15.9 4387 -11.3 8.0 27.7 38.0 15.3 4.2 3.50 209 +02042900.IAD 4.50 13.6 2553 -16.7 7.3 21.1 33.9 24.9 2.1 2.90 373 +02043000.FWD 4.50 19.4 5853 -10.9 8.0 29.7 37.1 14.6 7.0 3.10 151 +89060400.MAF 4.50 14.0 3939 -10.0 8.5 20.6 33.6 6.6 2.3 2.20 58 +89060700.SEP 4.50 15.6 3510 -7.9 7.0 24.8 47.4 9.0 1.8 2.40 130 +89062700.GSO 4.50 17.6 4349 -7.3 6.3 14.2 6.4 7.8 1.2 0.90 52 +89070300.SEP 4.50 18.5 5261 -7.6 8.4 22.6 1.2 12.9 3.4 2.90 222 +89080400.INL 4.50 17.4 3953 -11.5 8.3 18.6 29.2 7.3 2.9 1.00 36 +90051600.OUN 4.50 16.7 4398 -9.0 7.6 25.5 44.9 23.2 3.1 3.10 180 +91032800.FNT 4.50 11.3 1860 -17.3 7.6 47.0 45.4 26.8 3.1 2.90 431 +91042912.BRO 4.50 19.5 4471 -9.8 7.7 23.1 24.2 13.7 3.6 -999.00 254 +91072100.HON 4.50 20.1 5826 -6.1 6.8 22.8 33.9 14.3 2.6 1.90 180 +91081400.GTF 4.50 11.5 2524 -13.2 8.5 25.8 28.9 15.3 2.0 2.00 213 +92062800.AMA 4.50 16.0 4069 -10.3 7.9 22.8 27.5 16.9 2.9 3.20 150 +92062800.DDC 4.50 13.8 2750 -11.3 7.8 20.6 41.3 15.2 1.6 2.90 315 +92062900.SEP 4.50 17.4 3761 -9.6 7.8 21.8 15.6 13.7 2.5 2.80 248 +92073000.OVN 4.50 16.6 4366 -11.4 7.4 22.3 23.7 13.9 3.3 3.20 216 +92073000.TOP 4.50 16.6 4074 -10.0 7.5 22.5 22.1 11.8 2.7 2.40 164 +93050100.DDC 4.50 11.1 3206 -16.5 8.0 24.0 29.9 15.4 2.7 3.70 194 +93060800.OUN 4.50 17.0 4917 -9.1 7.1 30.6 26.7 9.7 3.9 2.60 195 +93062700.OVN 4.50 15.0 3720 -10.0 6.3 22.3 28.9 9.4 1.9 3.10 140 +93072400.BIS 4.50 15.3 3597 -9.8 5.8 21.0 33.2 14.9 1.6 2.30 263 +93092200.OVN 4.50 15.4 3685 -11.1 8.1 31.9 33.2 23.5 3.9 4.00 492 +93092200.TOP 4.50 16.8 3665 -8.1 6.5 21.3 37.9 21.3 1.7 1.30 502 +93101300.SEP 4.50 14.2 3151 -13.1 8.0 22.3 31.8 15.0 2.5 2.90 307 +93101800.SEP 4.50 15.7 3958 -10.6 7.0 31.7 30.5 23.2 3.5 2.20 441 +94040300.OUN 4.50 10.1 2075 -17.0 7.6 31.2 39.3 18.7 2.0 2.10 163 +94042600.SEP 4.50 16.3 4409 -11.5 7.4 26.7 26.2 21.2 3.9 3.30 138 +94060800.LBF 4.50 13.0 3400 -9.5 7.8 18.7 18.4 8.1 1.5 2.40 109 +95051700.DDC 4.50 15.6 4878 -10.8 8.5 26.6 40.7 8.9 4.4 2.60 43 +95060500.MAF 4.50 14.9 4358 -8.6 7.6 23.2 32.0 16.0 2.3 2.90 181 +95060900.MAF 4.50 17.8 5653 -8.1 8.1 18.7 33.5 12.8 2.9 2.90 83 +96030700.JAN 4.50 14.0 2362 -12.5 6.8 34.9 36.9 16.8 2.3 0.60 196 +96050500.IAD 4.50 12.1 2432 -15.2 7.2 25.0 25.5 15.9 1.9 1.90 36 +96051000.TOP 4.50 15.6 3884 -11.1 8.8 18.3 22.3 22.1 2.6 3.30 234 +96062700.TFX 4.50 13.9 3835 -10.9 8.3 37.1 44.3 21.8 4.3 1.60 297 +96081100.LBF 4.50 13.3 2360 -8.4 6.2 26.1 22.0 26.5 1.0 2.60 326 +96102100.OUN 4.50 12.7 2995 -12.9 7.5 20.3 28.4 15.6 1.8 3.00 71 +01070300.LBF 4.25 16.7 5584 -8.7 8.5 18.0 24.7 14.2 3.0 4.20 154 +03040600.FWD 4.25 12.4 2487 -14.3 7.3 31.5 51.8 17.1 2.4 2.90 341 +03050500.SGF 4.25 15.7 5169 -13.5 7.6 38.4 50.7 30.0 7.6 2.90 348 +03050518.BNA 4.25 16.0 2730 -12.9 7.1 37.0 37.2 18.3 3.5 -999.00 239 +03051000.MHX 4.25 17.1 4373 -10.5 7.3 22.7 23.2 14.1 3.1 2.10 146 +04040400.MAF 4.25 12.0 2746 -14.7 7.0 19.5 31.1 14.4 1.6 2.70 262 +04052200.AMA 4.25 13.7 4265 -8.7 7.9 21.5 23.9 13.6 2.1 2.10 176 +04053000.OUN 4.25 16.8 4526 -7.5 7.8 24.4 40.4 15.8 2.6 -999.00 224 +04062200.AMA 4.25 13.8 3828 -8.9 8.0 26.2 40.5 17.8 2.3 2.30 141 +04071200.GGW 4.25 11.0 2390 -13.7 8.6 22.3 32.0 17.1 1.6 1.90 99 +04071300.LBF 4.25 19.5 7183 -7.3 8.6 14.7 20.5 10.3 3.1 3.70 68 +04071318.ILX 4.25 22.1 6811 -10.9 7.9 18.7 21.9 15.5 5.8 2.60 131 +04081000.DNR 4.25 12.9 3415 -9.1 8.0 15.0 15.4 16.2 1.2 3.20 270 +05031400.JAN 4.25 11.1 1382 -15.7 7.6 25.5 49.7 19.2 1.1 2.80 161 +05042000.LBF 4.25 10.1 2460 -15.7 8.9 15.3 22.3 16.6 1.3 2.90 255 +05042200.SGF 4.25 12.6 2944 -13.3 6.8 21.3 15.6 15.1 1.7 2.20 193 +07080400.RAP 4.25 15.6 2983 -4.1 6.2 22.7 35.8 18.3 0.6 0.90 270 +08020600.SHV 4.25 13.5 2312 -14.1 7.3 32.4 43.7 25.8 2.5 1.80 212 +02042000.MAF 4.00 12.9 2974 -8.1 6.9 24.3 41.7 19.0 1.2 2.50 133 +02061300.DDC 4.00 19.5 6234 -6.9 7.6 19.8 32.7 17.2 3.0 3.70 126 +03050300.BMX 4.00 15.2 4593 -15.7 7.9 32.4 30.5 8.1 6.7 2.90 51 +04071318.DVN 4.00 20.8 6090 -11.1 8.4 25.9 22.3 22.5 7.3 2.80 191 +06050600.MAF 4.00 12.4 3533 -12.3 8.2 33.6 48.0 19.3 3.5 2.00 174 +06071700.INL 4.00 14.1 3719 -11.1 8.4 26.3 29.8 19.9 3.1 2.40 328 +06092221.SGF 4.00 17.6 5071 -6.7 5.3 31.6 37.0 21.0 2.4 1.10 202 +89061100.AMA 4.00 15.8 3666 -8.7 7.6 11.0 19.2 11.1 1.0 -999.00 87 +89062700.DDC 4.00 14.3 2840 -8.4 7.6 19.4 19.2 12.7 1.2 2.20 167 +89071800.LBF 4.00 15.4 3622 -9.4 8.1 38.9 37.6 22.9 3.9 2.90 361 +90051500.AMA 4.00 14.8 4543 -9.9 8.2 24.7 33.8 19.2 3.2 2.20 473 +90051900.AMA 4.00 11.5 2732 -9.3 7.7 26.1 30.4 18.5 1.4 2.10 301 +90060900.TOP 4.00 18.5 5571 -10.1 7.3 22.6 16.4 14.8 4.1 2.70 252 +90070100.DAY 4.00 16.6 3541 -9.4 7.1 19.9 24.5 8.6 1.8 1.80 154 +90090200.RAP 4.00 11.3 1762 -7.4 7.5 23.6 32.7 14.1 0.6 2.10 181 +91041300.SEP 4.00 16.9 5008 -10.6 6.8 21.8 27.4 12.2 3.2 3.40 137 +93071600.RAP 4.00 14.1 3230 -7.5 7.7 25.0 35.8 18.6 1.6 3.20 97 +93072300.HON 4.00 15.7 3720 -8.1 6.0 19.1 22.5 15.4 1.3 1.50 130 +95050600.FTD 4.00 15.1 2036 -11.1 7.1 21.2 37.5 20.8 1.2 0.60 304 +95051600.JAN 4.00 17.9 4861 -10.9 7.8 14.9 18.5 8.6 2.6 2.50 -35 +95072500.FTD 4.00 15.4 2897 -10.0 9.2 19.1 19.8 12.8 1.9 -999.00 168 +95072600.DDC 4.00 18.3 5696 -10.1 8.8 21.3 19.2 17.1 4.7 3.30 238 +95102700.SGF 4.00 12.5 2166 -13.8 6.9 21.9 29.4 25.7 1.3 1.60 267 +96052300.LBF 4.00 13.5 2915 -11.1 8.0 27.8 43.7 18.5 2.3 2.90 303 +97082200.LBF 4.00 15.7 3974 -9.7 7.4 26.4 37.5 17.4 2.8 3.30 321 +98050800.FFC 4.00 17.3 4120 -12.3 7.7 31.0 51.6 17.1 5.0 2.20 172 +98063000.TOP 4.00 21.8 6490 -5.3 7.2 24.4 32.6 18.1 3.1 1.70 230 +03040400.OUN 3.75 11.9 2640 -15.1 7.3 24.0 23.9 13.4 2.0 2.30 187 +95051900.BMX 3.75 16.5 3370 -9.9 6.6 20.6 25.5 16.9 1.8 0.60 246 +01040400.SGF 3.65 12.8 3277 -15.1 8.3 22.4 28.9 17.2 2.8 3.10 310 +01041500.DDC 3.65 13.1 3892 -18.3 9.0 43.1 54.7 24.4 8.6 2.50 233 +01050700.LZK 3.65 14.7 3512 -12.9 5.9 18.7 26.3 7.3 1.8 3.40 77 +01050700.SHV 3.65 14.8 2945 -12.5 6.5 15.7 22.1 9.0 1.3 1.70 110 +01051800.AMA 3.65 13.9 4695 -10.5 8.6 13.2 22.8 16.1 1.8 2.10 86 +01052500.JAN 3.65 13.5 3446 -15.1 7.5 21.8 31.4 17.4 2.7 2.70 240 +01061400.DDC 3.65 15.7 5244 -8.9 8.0 28.1 28.2 19.8 3.9 2.50 384 +01062100.DDC 3.65 15.2 4428 -10.7 7.8 19.0 25.2 13.4 2.5 3.20 400 +01071800.ABR 3.65 17.5 5177 -9.9 8.4 19.5 28.2 9.6 3.5 3.90 136 +01072100.GGW 3.65 13.5 3114 -10.7 7.7 28.3 30.5 15.8 2.3 2.80 354 +02051100.MAF 3.65 14.5 4658 -9.3 8.4 23.1 40.3 14.8 2.9 2.20 132 +02051200.TOP 3.65 15.8 4489 -11.9 8.1 26.0 26.5 13.7 4.2 3.30 224 +02060500.RNK 3.65 17.9 5399 -9.7 6.9 4.0 7.3 8.7 0.6 3.20 54 +02062400.ABR 3.65 17.2 5093 -10.5 8.2 26.3 30.9 16.9 4.7 3.50 187 +02091900.OUN 3.65 15.7 4268 -6.1 6.7 20.8 23.4 17.8 1.4 3.00 308 +03062300.OAX 3.65 18.7 6203 -9.3 8.6 13.6 22.9 12.3 3.0 4.20 237 +98040800.ILX 3.65 10.2 1354 -19.7 7.2 21.2 25.1 20.1 1.0 2.60 180 +98052200.SGF 3.65 17.1 4719 -9.9 7.8 22.4 23.1 13.8 3.3 2.30 232 +99030600.LZK 3.65 11.7 1922 -18.5 8.2 22.8 39.2 21.4 1.9 2.10 360 +99050400.OUN 3.65 15.6 5195 -14.9 8.4 21.3 22.0 16.5 5.1 4.70 343 +99072600.LBF 3.65 16.4 4375 -6.7 7.9 12.9 16.1 9.5 1.2 2.60 60 +01041000.SGF 3.50 13.0 3476 -14.5 7.9 21.6 30.3 12.5 2.7 2.60 141 +01061500.FWD 3.50 17.3 4260 -9.7 7.9 15.1 9.7 11.1 2.0 2.20 74 +02081200.DDC 3.50 14.0 3415 -8.7 8.0 15.7 27.7 10.7 1.2 3.10 157 +89070300.STC 3.50 15.6 3556 -8.2 7.0 15.8 21.4 8.5 1.2 1.40 128 +90031400.OUN 3.50 14.6 3950 -16.1 7.2 20.2 49.4 12.3 3.2 2.90 169 +90040600.SEP 3.50 12.4 3764 -14.9 7.8 25.2 36.8 15.4 3.3 2.30 305 +90060900.IAD 3.50 17.2 3994 -10.9 7.1 23.7 20.0 18.3 3.0 0.90 203 +90061900.BIS 3.50 11.1 1968 -13.5 8.2 28.4 38.0 17.4 1.6 2.90 257 +96062000.OAX 3.50 16.3 4081 -9.8 8.6 19.0 24.4 18.9 2.5 -999.00 271 +97062100.LBF 3.50 17.3 6058 -9.3 8.8 23.1 25.1 13.9 4.7 3.70 129 +98052100.TOP 3.50 16.5 4680 -12.5 8.4 10.5 23.7 9.8 2.0 3.80 100 +98052500.OUN 3.50 18.0 5688 -10.7 8.1 21.9 28.7 9.9 4.6 4.20 172 +98062000.OUN 3.50 19.0 6048 -7.1 7.8 15.4 11.2 13.7 2.3 3.90 209 +06070200.GRB 3.25 15.4 3255 -9.3 6.6 17.0 24.9 14.7 1.2 1.50 99 +91060500.DDC 3.25 16.9 4631 -7.9 6.5 15.3 15.4 11.0 1.5 3.50 74 +00050400.FWD 3.00 13.2 2731 -14.3 6.3 21.7 28.5 19.0 1.7 3.00 327 +00062900.MAF 3.00 14.8 3565 -6.3 6.3 10.5 16.7 9.6 0.5 1.80 29 +00080600.OAX 3.00 19.0 5525 -7.1 7.5 15.0 22.8 9.4 2.0 3.10 56 +01051900.LZK 3.00 16.6 4269 -12.5 8.1 18.5 25.8 9.9 3.2 2.70 98 +01053000.AMA 3.00 16.4 5827 -9.7 8.2 26.1 29.7 25.0 4.7 2.80 268 +01090900.FWD 3.00 17.1 4304 -8.9 8.2 14.1 12.0 7.7 1.8 2.70 97 +03042100.SHV 3.00 15.5 2947 -13.5 7.5 24.0 38.0 14.3 2.6 0.90 110 +03050420.SGF 3.00 15.8 4524 -11.9 7.1 35.4 47.9 25.2 5.1 3.20 480 +03062400.LBF 3.00 18.6 6189 -8.7 8.1 30.8 31.6 21.7 5.9 4.80 381 +03062800.DDC 3.00 11.4 2329 -9.3 6.7 16.9 26.8 10.8 0.7 2.20 138 +04041900.OAX 3.00 11.9 3136 -15.1 8.2 33.8 44.9 20.5 3.7 1.90 394 +04042200.OUN 3.00 12.2 2363 -13.5 7.0 24.3 33.8 16.9 1.6 2.70 385 +04051700.DDC 3.00 10.0 2200 -11.9 8.4 31.7 30.2 20.5 1.6 1.50 390 +04052300.OAX 3.00 15.6 4333 -12.3 7.6 32.4 28.9 19.6 4.9 3.00 289 +04070200.AMA 3.00 16.9 5137 -8.1 7.4 14.0 16.6 18.0 1.7 3.00 80 +04081000.DDC 3.00 14.6 3147 -9.7 7.7 21.0 22.0 13.0 1.7 3.00 222 +06042412.LMN 3.00 14.1 3248 -12.9 8.2 25.4 28.7 16.6 2.9 3.20 413 +06042500.OUN 3.00 15.5 4007 -12.3 8.6 20.1 21.2 15.4 3.2 3.30 105 +06052500.SGF 3.00 15.6 3470 -11.1 7.6 14.3 7.3 13.6 1.5 2.00 162 +06052700.BNA 3.00 16.1 3535 -8.3 5.9 12.8 17.2 17.7 0.9 0.70 196 +06052800.BIS 3.00 12.5 3434 -11.1 8.1 11.3 12.7 10.5 1.0 1.80 74 +72081200.YRM 3.00 10.9 1989 -14.2 8.3 24.6 35.0 14.0 1.5 2.40 132 +89060500.OUN 3.00 12.5 1640 -11.6 7.0 15.7 23.9 8.8 0.6 0.70 53 +89060700.AMA 3.00 15.4 4752 -9.5 8.5 30.5 55.6 21.7 4.3 2.40 303 +90051500.OUN 3.00 16.8 4798 -10.7 7.8 19.8 29.7 12.5 3.2 4.20 186 +90052700.OUN 3.00 17.5 4621 -8.8 7.6 23.8 25.1 20.4 3.1 3.20 255 +91032700.TOP 3.00 12.7 2763 -12.3 6.8 27.7 31.7 21.6 1.9 2.50 279 +91040912.1M1 3.00 14.2 3450 -15.2 8.0 19.7 20.8 11.5 2.8 -999.00 134 +91052700.DDC 3.00 17.0 5493 -10.5 8.4 21.7 29.3 13.3 4.2 2.90 81 +92032600.TBW 3.00 12.6 2104 -14.0 6.5 32.2 37.0 18.6 1.8 1.10 195 +92062700.MAF 3.00 13.9 3224 -8.2 7.7 23.7 38.8 13.0 1.6 2.50 253 +92070500.OVN 3.00 17.3 5051 -9.3 7.4 21.8 33.3 16.1 3.1 3.50 243 +93050600.MAF 3.00 13.9 3784 -9.6 7.2 27.0 25.4 18.6 2.3 2.50 149 +93060600.HAT 3.00 16.0 4948 -13.5 8.3 15.5 17.2 12.6 3.2 3.90 70 +93070200.DDC 3.00 17.1 4895 -5.2 7.2 16.4 21.4 13.3 1.2 2.80 237 +93070900.OVN 3.00 19.7 5546 -6.8 6.9 29.4 24.3 16.9 3.6 0.60 345 +93082300.DDC 3.00 13.3 2608 -7.8 7.7 19.5 27.0 13.1 1.0 2.00 83 +93091900.AMA 3.00 12.4 1911 -9.0 7.7 32.7 35.4 16.5 1.3 2.40 264 +93091900.DDC 3.00 12.4 1954 -10.4 7.2 29.5 46.6 16.8 1.3 2.80 233 +94032800.CKL 3.00 15.3 2066 -9.6 6.3 38.6 36.3 30.5 1.8 0.60 429 +94052600.FNT 3.00 10.8 2240 -16.3 6.1 17.8 25.8 12.8 1.0 2.40 113 +94060600.DDC 3.00 14.8 4882 -8.8 8.7 15.6 18.6 13.1 2.0 2.10 248 +95021400.PBI 3.00 16.5 2433 -11.0 5.9 27.1 33.4 13.8 1.7 0.60 117 +95043000.FTD 3.00 15.0 4416 -13.3 8.1 21.9 31.7 15.6 3.7 3.40 166 +95062300.LBF 3.00 12.9 2962 -11.1 7.9 21.0 19.8 15.3 1.7 2.80 220 +95071500.LBF 3.00 14.4 3052 -7.0 6.5 15.9 24.7 13.9 0.8 2.10 159 +95072400.DDC 3.00 15.9 3645 -9.9 8.2 18.2 32.6 11.8 2.0 3.60 31 +95082300.INL 3.00 15.4 3023 -11.6 8.0 30.9 26.5 25.4 3.2 2.10 694 +95082700.GGW 3.00 11.7 3094 -12.6 8.3 26.8 41.0 13.6 2.4 1.70 162 +96033100.SHV 3.00 12.7 2891 -17.1 7.6 27.4 35.5 20.1 3.1 3.10 163 +96042000.ILX 3.00 12.9 2394 -14.6 7.1 27.0 39.5 16.4 2.1 -999.00 249 +96052700.OUN 3.00 15.2 3034 -9.4 6.9 29.8 33.6 22.5 2.1 2.00 330 +96061400.UNR 3.00 13.1 3801 -11.0 8.4 18.0 14.8 12.4 2.0 2.00 63 +96062012.LBF 3.00 15.2 3418 -8.6 7.9 22.6 25.0 16.5 1.9 3.30 380 +96070800.LBF 3.00 15.3 3341 -6.4 7.0 30.0 41.5 20.6 1.6 2.20 390 +97052600.OUN 3.00 17.2 5143 -7.7 5.9 30.4 32.4 15.0 2.9 2.60 148 +97061000.FWD 3.00 15.6 2699 -9.9 7.0 18.7 24.1 10.9 1.3 1.30 98 +98052400.DDC 3.00 11.6 2630 -12.9 6.7 22.0 27.7 9.8 1.4 2.30 101 +98061400.OAX 3.00 13.3 2830 -10.5 7.7 24.4 45.4 15.3 1.8 3.40 219 +98062500.ABR 3.00 16.3 4448 -13.7 8.8 17.4 28.7 11.2 3.6 3.70 42 +98062500.BIS 3.00 15.5 4591 -13.3 8.1 15.9 15.4 15.5 2.9 3.00 89 +98062900.TOP 3.00 22.0 6895 -7.7 7.0 20.6 27.3 19.3 4.0 2.40 335 +99060200.FWD 3.00 17.3 4928 -11.5 8.8 15.0 30.3 15.3 3.1 4.50 171 +00022500.AMA 2.75 10.3 3614 -18.5 8.5 26.8 48.5 13.1 3.8 1.70 107 +00051300.DTX 2.75 16.9 4524 -8.5 7.7 24.1 18.5 20.2 2.9 2.40 328 +00052700.OUN 2.75 18.3 5870 -10.1 8.4 21.5 32.8 12.8 4.6 4.00 117 +00061200.BIS 2.75 11.3 2000 -13.1 7.5 22.0 28.0 10.2 1.2 2.50 306 +00061400.AMA 2.75 16.5 5758 -4.9 7.6 23.8 32.0 19.9 2.0 2.50 244 +00062000.LBF 2.75 14.9 4028 -8.5 6.8 18.8 23.9 11.9 1.6 3.00 96 +00071000.GGW 2.75 15.6 3180 -10.9 7.0 18.4 13.5 23.2 1.7 2.60 248 +00071000.LBF 2.75 18.1 5871 -5.5 7.8 14.3 19.9 10.7 1.5 3.50 146 +00071700.MHX 2.75 15.1 2929 -12.3 7.2 18.2 29.9 7.9 1.7 2.30 81 +00072100.LBF 2.75 15.3 3073 -11.3 7.8 26.5 39.4 16.9 2.6 2.00 223 +00072500.LBF 2.75 17.1 5901 -8.9 8.5 24.5 29.4 22.2 4.4 2.90 162 +00072700.OAX 2.75 18.5 5048 -9.7 8.0 21.8 23.2 16.7 3.8 2.60 215 +00121618.BMX 2.75 13.2 2219 -14.1 6.7 32.9 45.8 25.0 2.2 0.90 266 +01040400.LZK 2.75 15.2 4223 -15.1 8.5 18.1 24.8 11.9 3.5 3.10 105 +01042100.OAX 2.75 12.4 3283 -15.3 7.7 28.1 32.7 23.5 3.2 2.40 282 +01050620.LMN 2.75 15.4 4496 -16.1 7.3 11.5 20.9 7.3 2.2 3.10 60 +01052500.FFC 2.75 11.7 2338 -14.5 6.4 18.1 21.4 19.6 1.1 2.50 240 +01060600.AMA 2.75 14.9 4665 -8.9 7.2 15.8 15.6 11.9 1.7 2.30 191 +01060800.DNR 2.75 13.9 3440 -8.7 7.2 25.3 21.9 7.4 1.8 3.10 -26 +01061000.ABR 2.75 13.8 3453 -12.1 7.8 24.6 32.3 16.6 2.6 3.60 158 +01061400.OAX 2.75 17.2 4956 -11.3 9.0 20.4 25.5 18.5 4.2 3.80 153 +01061700.LMN 2.75 14.1 4093 -10.7 8.0 19.4 26.9 9.3 2.3 3.50 195 +01061700.TOP 2.75 15.7 4594 -13.7 8.5 22.1 26.6 15.7 4.4 3.40 214 +01061900.MPX 2.75 15.6 5114 -11.9 9.2 33.1 31.9 19.0 6.9 3.40 154 +01070100.RAP 2.75 14.3 3235 -10.7 7.7 30.8 40.7 12.9 2.8 2.60 114 +01071800.INL 2.75 17.0 4580 -12.9 7.8 11.9 12.8 11.8 2.2 0.80 154 +01071900.ABR 2.75 17.5 5356 -10.5 8.8 18.1 22.7 3.4 3.7 2.70 35 +01071900.BIS 2.75 17.8 5738 -9.9 8.6 21.8 28.8 14.1 4.5 2.90 183 +01072500.GGW 2.75 11.5 1714 -11.3 6.9 26.7 32.1 18.2 1.0 2.20 350 +01112418.BMX 2.75 15.1 2902 -11.3 6.1 26.9 31.9 22.2 1.9 0.80 328 +02051800.DRT 2.75 16.0 5077 -10.5 8.1 8.8 6.3 5.2 1.5 2.60 15 +02052400.AMA 2.75 13.8 4729 -13.3 8.3 28.8 21.8 18.5 4.9 2.30 258 +02060500.AMA 2.75 13.2 2947 -11.5 7.6 32.1 45.0 17.9 2.6 2.70 309 +02061300.AMA 2.75 13.7 3027 -8.5 8.4 29.6 33.0 18.7 2.1 2.50 65 +02062400.BIS 2.75 16.0 3559 -9.7 6.8 28.0 24.8 25.2 2.5 2.40 298 +02062500.ABR 2.75 15.1 4208 -7.1 6.8 19.1 19.3 11.1 1.4 3.10 20 +02072000.TOP 2.75 17.5 4986 -7.5 7.3 10.0 12.7 8.5 1.1 2.70 197 +02072700.TOP 2.75 19.3 6406 -5.3 6.9 18.2 19.3 9.1 2.0 2.60 131 +02081200.LBF 2.75 13.3 3735 -9.9 8.7 13.1 11.8 10.5 1.3 2.10 222 +03031300.SHV 2.75 13.5 2901 -15.3 7.1 17.1 24.1 11.0 1.7 2.00 162 +03040618.LZK 2.75 13.1 2556 -15.9 7.6 35.1 38.9 28.4 3.4 3.10 600 +03042500.LZK 2.75 13.8 3423 -15.7 7.6 20.9 31.0 20.0 2.8 3.30 212 +03042600.BMX 2.75 14.2 3921 -13.3 6.2 35.8 33.5 26.6 3.9 2.70 89 +03042900.SGF 2.75 13.1 3399 -16.7 8.5 5.0 19.6 4.8 0.7 2.80 53 +03050100.TOP 2.75 13.0 3922 -14.1 7.8 17.2 19.6 13.9 2.3 2.70 117 +03050618.SGF 2.75 15.6 5492 -14.7 7.7 32.0 40.6 17.8 7.4 2.80 313 +03050700.FWD 2.75 17.8 5303 -9.7 7.1 30.4 36.2 8.4 4.7 3.50 126 +03051000.OUN 2.75 16.8 5328 -11.1 8.3 27.5 34.8 16.8 5.4 3.60 182 +03051400.SHV 2.75 16.7 3920 -9.5 7.2 27.2 37.0 19.3 2.9 0.80 389 +03051600.AMA 2.75 14.1 3706 -10.3 8.9 42.9 37.7 34.9 4.9 -999.00 632 +03051700.SHV 2.75 16.3 3995 -10.9 7.4 23.2 13.9 19.6 2.9 2.70 242 +03060500.AMA 2.75 11.9 2647 -11.9 7.6 23.0 28.5 13.1 1.5 2.10 167 +03061400.AMA 2.75 12.3 3153 -13.3 8.3 21.7 24.7 13.7 2.2 2.10 35 +03091000.DDC 2.75 14.8 3620 -7.7 7.5 12.1 15.8 11.3 0.9 3.00 233 +03091100.MAF 2.75 13.3 2808 -6.5 6.8 10.3 9.0 7.4 0.4 1.40 80 +03100600.AMA 2.75 12.2 2542 -10.3 6.4 24.1 30.2 12.9 1.2 2.50 50 +04032718.DDC 2.75 13.2 4133 -17.3 8.0 24.6 26.6 14.4 4.4 2.30 143 +04032800.OUN 2.75 12.6 2904 -15.9 7.8 23.3 31.1 16.4 2.5 2.80 315 +04040500.CRP 2.75 14.9 2478 -12.1 6.7 22.4 20.6 7.0 1.6 0.60 184 +04050600.WAL 2.75 9.3 1861 -21.3 7.2 20.2 28.3 21.3 1.3 1.40 239 +04051100.DNR 2.75 10.6 3995 -12.9 9.2 28.3 16.6 18.2 3.4 1.50 379 +04051223.LMN 2.75 15.9 4076 -10.5 7.4 22.7 30.4 21.9 2.7 2.40 304 +04051300.OUN 2.75 16.8 5740 -11.5 8.2 15.2 20.9 12.4 3.3 3.60 131 +04053000.TOP 2.75 15.9 3882 -12.9 8.7 22.4 15.3 14.8 3.7 3.20 295 +04060300.FWD 2.75 16.9 4767 -11.1 8.7 19.1 24.1 14.1 3.5 -999.00 157 +04070500.DDC 2.75 14.3 3819 -10.3 8.3 18.6 30.5 14.4 2.1 2.50 161 +05022200.FFC 2.75 11.4 1389 -16.3 7.0 28.5 35.4 20.7 1.2 1.70 225 +05041800.AMA 2.75 9.4 1767 -17.3 8.7 19.6 22.9 15.5 1.2 1.90 211 +05042100.DDC 2.75 13.2 4722 -15.3 8.6 16.1 14.9 15.2 3.1 2.10 174 +05042300.JAN 2.75 13.6 2558 -14.7 7.1 28.5 34.1 19.9 2.5 2.70 183 +05051000.FWD 2.75 15.5 4841 -11.5 6.7 18.0 25.9 9.5 2.5 2.90 152 +05092300.ILX 2.75 14.1 1858 -8.1 6.9 21.5 16.8 11.5 0.7 0.80 121 +06031218.TOP 2.75 12.6 2814 -17.9 8.5 44.8 54.9 33.9 5.7 2.70 723 +06041400.DVN 2.75 11.2 1524 -15.7 8.3 30.6 30.3 15.8 1.6 3.40 263 +06042000.BMX 2.75 13.1 2242 -11.9 7.1 21.7 27.0 11.3 1.3 2.10 122 +06050300.DRT 2.75 13.7 3549 -12.1 8.5 14.2 19.0 5.1 1.7 2.10 74 +06050500.MAF 2.75 11.5 3709 -12.1 8.1 27.6 34.4 21.7 2.7 1.70 372 +06050718.CHS 2.75 12.9 2580 -12.5 6.0 17.7 18.8 15.9 1.1 2.00 177 +06050800.MAF 2.75 11.9 2440 -12.5 8.0 33.3 51.2 22.1 2.3 2.30 327 +06062200.DDC 2.75 12.7 2406 -8.7 8.1 21.1 24.9 11.0 1.1 2.40 175 +06081000.BIS 2.75 13.0 2589 -8.9 7.5 19.1 18.8 8.8 1.0 2.60 147 +06082600.DDC 2.75 16.5 3488 -5.5 6.5 20.2 26.5 17.6 1.0 0.80 141 +07021400.BMX 2.75 9.9 1032 -19.1 7.0 20.7 36.3 19.5 0.7 2.40 245 +58042200.FWH 2.75 13.3 3338 -16.1 7.8 37.0 49.4 25.5 4.9 2.40 276 +89060200.MAF 2.75 14.1 3193 -10.4 7.9 24.5 27.4 8.5 2.2 2.80 104 +89060300.MAF 2.75 11.9 2291 -8.4 7.6 19.3 32.2 13.3 0.8 2.20 147 +89060300.TOP 2.75 13.7 2623 -12.6 7.0 19.5 39.7 12.4 1.5 2.00 118 +89061300.AMA 2.75 14.4 3611 -10.8 8.1 15.8 22.1 9.9 1.7 3.00 79 +89062600.RAP 2.75 11.5 2246 -13.8 7.8 31.3 30.4 20.0 2.1 2.60 301 +89081600.AMA 2.75 12.8 2669 -7.1 6.9 17.0 24.9 10.5 0.7 2.50 158 +89082200.HON 2.75 15.6 4160 -9.4 6.9 22.9 28.9 14.8 2.3 3.30 107 +89082200.OMA 2.75 17.9 4223 -8.3 7.0 22.2 45.4 15.0 2.3 0.90 138 +89082200.STC 2.75 16.2 3346 -11.1 6.9 20.6 30.6 11.9 2.0 1.20 173 +89082900.STC 2.75 14.6 1959 -10.0 6.8 26.3 44.7 18.0 1.2 1.10 147 +89090400.LBF 2.75 17.3 4599 -8.6 8.3 29.6 38.8 8.6 4.0 3.30 223 +90021600.JAN 2.75 15.2 2047 -10.9 6.6 20.9 34.6 18.9 1.1 -999.00 124 +90031400.PIA 2.75 12.4 2115 -14.4 6.9 18.1 24.1 15.3 1.1 2.60 206 +90041700.OUN 2.75 13.6 3717 -15.0 8.3 11.5 20.5 17.2 1.7 3.80 152 +90042800.GGG 2.75 12.9 2263 -14.9 6.6 14.1 25.3 12.8 1.0 2.80 84 +90050100.AHN 2.75 14.9 4557 -12.6 7.7 14.7 9.3 19.7 2.3 3.40 92 +90051700.GGG 2.75 17.5 3234 -8.3 7.2 24.7 35.1 17.6 2.0 0.60 304 +90051900.LBF 2.75 12.1 3954 -13.9 8.6 25.1 24.6 16.2 3.4 2.00 398 +90052000.OUN 2.75 15.3 4565 -10.8 7.1 13.7 14.7 12.1 1.8 3.10 94 +90053100.GGG 2.75 19.3 4743 -5.7 6.1 27.2 25.7 21.5 2.1 0.70 317 +90060200.LBF 2.75 13.6 3719 -10.8 7.9 15.6 29.4 16.4 1.6 2.40 89 +90060200.STC 2.75 13.4 2697 -13.3 8.5 18.6 17.2 10.4 1.8 2.20 132 +90061900.LBF 2.75 19.2 7070 -6.1 8.4 30.2 38.1 18.5 5.0 3.60 266 +90070300.BIS 2.75 21.3 6982 -6.3 8.2 23.0 29.6 14.9 4.2 4.60 172 +90070700.BIS 2.75 14.9 3274 -7.5 6.9 19.0 25.7 12.9 1.1 2.20 316 +90081100.LBF 2.75 14.8 3971 -9.0 7.5 25.6 21.5 14.3 2.4 2.90 282 +90082800.SSM 2.75 18.2 5115 -8.5 6.2 31.6 29.9 20.5 3.7 1.10 334 +90090600.STC 2.75 19.5 4899 -6.8 6.2 21.0 17.1 14.7 2.0 1.00 294 +91032200.UMN 2.75 11.5 2632 -15.3 7.0 33.0 35.3 18.8 2.5 2.50 371 +91032700.DDC 2.75 12.4 3132 -14.2 8.2 40.7 44.0 18.9 4.4 2.10 160 +91040300.OUN 2.75 10.1 1560 -19.8 7.3 22.6 41.7 15.1 1.2 1.50 275 +91041300.OUN 2.75 14.1 4063 -13.7 8.0 22.0 25.1 17.1 3.3 2.90 205 +91042700.GGG 2.75 18.9 5164 -10.7 8.2 18.9 27.6 12.4 3.8 2.70 209 +91042700.OUN 2.75 16.6 4751 -11.5 7.0 23.6 26.4 20.6 3.6 3.70 376 +91042800.GGG 2.75 18.9 4554 -10.5 7.2 29.5 19.6 15.4 4.6 2.20 140 +91051100.AMA 2.75 15.6 5629 -10.7 9.0 16.5 21.5 14.5 3.3 2.50 314 +91051200.RAP 2.75 14.1 4430 -11.0 7.9 23.5 33.5 26.6 3.0 2.50 437 +91051700.UMN 2.75 15.9 3299 -10.6 7.6 16.1 11.8 14.4 1.6 1.90 174 +91051800.UMN 2.75 15.1 3444 -11.0 7.4 11.9 21.0 9.4 1.2 1.20 59 +91052500.AMA 2.75 13.7 3416 -10.5 7.0 17.4 13.8 17.0 1.4 2.50 124 +91053000.OVN 2.75 16.8 4446 -10.2 6.8 18.2 19.0 14.3 2.2 2.70 31 +91053000.RAP 2.75 10.9 2814 -15.7 8.1 14.5 28.4 13.0 1.3 2.00 159 +91060500.OVN 2.75 14.6 2813 -10.1 6.5 17.1 19.6 8.4 1.1 3.10 177 +91061500.BIS 2.75 13.0 2379 -11.9 6.6 22.5 25.2 13.2 1.3 2.60 152 +91061500.GRB 2.75 17.6 3430 -8.7 6.7 13.9 17.0 21.7 1.2 0.60 161 +91061900.LBF 2.75 13.0 3600 -12.0 8.6 15.2 20.9 13.5 1.7 2.60 219 +91062000.HON 2.75 13.9 2691 -10.5 7.0 22.1 20.0 16.1 1.4 1.20 282 +91070500.BIS 2.75 13.3 2941 -9.3 6.4 21.4 26.6 19.3 1.2 2.40 206 +91070500.GGW 2.75 11.4 2308 -9.9 7.0 17.5 23.9 6.7 0.8 2.20 144 +91072200.HON 2.75 19.3 4474 -6.8 7.2 17.3 24.1 11.1 1.7 -999.00 198 +92021500.UMN 2.75 10.2 1724 -16.9 6.4 33.2 28.2 24.2 1.5 2.20 289 +92030600.1M1 2.75 11.5 2572 -21.1 7.2 22.5 26.7 17.3 2.4 2.30 194 +92060500.AMA 2.75 13.4 2870 -9.4 7.5 17.5 25.9 12.2 1.1 2.60 249 +92061200.MAF 2.75 13.8 2387 -8.2 7.4 26.7 34.6 13.3 1.3 2.00 178 +92061300.AMA 2.75 14.7 2821 -8.8 7.2 19.1 36.4 12.0 1.2 2.70 165 +92061900.BIS 2.75 11.0 1791 -14.4 6.9 27.4 24.4 13.0 1.3 2.50 106 +92061900.DDC 2.75 12.8 2598 -8.3 7.9 25.1 40.5 15.7 1.3 2.70 114 +92062700.AMA 2.75 14.1 3165 -10.0 7.7 16.6 29.9 12.4 1.4 2.90 191 +92073000.LBF 2.75 15.0 3544 -10.3 7.9 25.7 33.8 22.0 2.6 3.00 335 +92101600.SEP 2.75 14.6 3654 -12.1 7.7 16.4 22.7 12.6 1.9 2.90 227 +93033100.1M1 2.75 11.9 2471 -15.1 7.2 30.2 27.1 17.8 2.3 2.80 54 +93033100.UMN 2.75 11.1 2598 -16.5 6.4 29.7 28.9 19.7 2.2 2.10 117 +93040200.WAL 2.75 10.9 1625 -18.5 7.3 30.7 48.4 26.8 1.7 2.40 200 +93042000.GGG 2.75 12.4 2342 -13.3 8.0 26.7 28.4 17.5 2.0 2.70 156 +93042500.UMN 2.75 11.4 2317 -14.6 6.9 25.2 33.1 18.2 1.6 2.40 198 +93042800.MAF 2.75 10.4 1494 -10.6 6.9 19.6 25.8 12.9 0.5 1.80 150 +93042900.MAF 2.75 11.7 2435 -10.9 7.1 29.3 37.4 20.8 1.5 2.20 551 +93050100.AMA 2.75 11.6 4085 -14.5 8.1 25.7 15.8 15.3 3.4 1.90 234 +93050600.AMA 2.75 13.2 4478 -13.6 8.6 34.6 38.4 16.6 5.7 2.00 340 +93051600.DDC 2.75 12.8 3614 -9.8 6.6 19.4 23.7 12.6 1.4 2.50 161 +93061900.AMA 2.75 12.8 2140 -7.8 7.0 22.7 23.3 14.4 0.8 1.90 146 +93062400.DEN 2.75 11.7 3442 -9.6 8.8 32.0 42.3 15.8 2.6 1.80 211 +93062400.LBF 2.75 16.0 3944 -8.6 8.1 21.9 33.8 18.1 2.3 2.80 178 +93070500.DDC 2.75 17.1 4186 -5.4 6.7 30.6 34.9 16.6 1.9 1.20 146 +93070700.AMA 2.75 17.0 5327 -4.7 7.8 21.3 20.0 11.4 1.7 3.80 127 +93070700.DDC 2.75 17.0 5334 -6.0 7.2 27.9 28.2 16.5 2.6 3.10 154 +93090400.IAD 2.75 15.6 2779 -5.9 5.7 15.2 15.6 12.4 0.5 0.60 149 +93101300.CRP 2.75 17.3 4367 -8.6 6.3 20.2 29.8 14.8 2.0 1.50 227 +93101900.GGG 2.75 15.7 3105 -9.8 6.9 23.5 33.9 10.3 1.9 0.70 105 +93102000.DRT 2.75 15.5 3433 -8.9 6.4 25.4 34.0 13.4 1.8 1.60 35 +94012700.GGG 2.75 13.2 2167 -15.9 6.8 31.0 32.3 17.5 2.3 0.70 306 +94041100.UMN 2.75 12.6 2040 -16.5 7.6 37.8 45.4 19.9 2.9 2.50 486 +94052500.OUN 2.75 15.0 3912 -11.5 7.4 22.0 36.2 13.2 2.6 3.00 122 +94053000.SEP 2.75 17.5 5032 -10.6 8.2 27.0 23.8 16.1 4.9 3.90 291 +94060500.HON 2.75 14.2 3871 -11.6 8.5 21.4 19.2 12.0 2.8 2.40 202 +94060600.TOP 2.75 16.5 3953 -9.3 8.1 16.1 27.7 15.4 1.9 2.50 394 +94061100.AMA 2.75 12.3 2164 -8.3 7.3 19.5 20.3 16.6 0.7 2.80 229 +94061200.AMA 2.75 14.7 4015 -8.0 7.8 26.7 19.9 18.4 2.3 2.70 302 +94061200.TOP 2.75 13.9 2320 -9.5 6.6 23.9 24.4 15.8 1.2 0.90 117 +94061800.AMA 2.75 11.9 2676 -7.0 8.2 11.0 11.3 10.7 0.5 1.60 171 +94061900.JAN 2.75 16.8 3177 -7.5 5.9 11.5 12.4 3.8 0.6 0.60 42 +94062500.HON 2.75 11.8 1962 -10.8 6.4 27.8 33.5 15.4 1.1 2.20 211 +94062600.JAN 2.75 16.1 2842 -9.5 6.4 24.0 32.8 12.4 1.6 0.90 130 +94070100.STC 2.75 14.3 3701 -11.6 7.3 27.2 25.1 19.0 2.9 2.70 399 +94070200.OAX 2.75 18.5 5257 -10.1 8.0 26.5 25.4 15.5 4.9 3.20 416 +94070700.HON 2.75 16.5 3051 -8.8 7.2 20.5 18.6 10.2 1.5 0.60 159 +95040900.TOP 2.75 10.7 2836 -17.5 9.2 21.4 31.9 16.5 2.5 1.90 120 +95042000.FTD 2.75 14.6 2621 -13.3 7.7 39.5 59.2 25.8 3.7 2.40 498 +95051400.UMN 2.75 16.5 5278 -10.3 6.9 28.0 26.2 22.3 4.1 3.20 211 +95052200.LBF 2.75 10.4 2027 -14.9 7.4 28.3 33.3 18.7 1.6 2.10 221 +95060300.AMA 2.75 12.4 3024 -9.6 8.2 22.4 37.2 15.7 1.6 2.00 346 +95062100.OKX 2.75 17.1 3918 -9.8 7.1 18.4 25.8 11.4 2.1 1.00 18 +95062800.LBF 2.75 12.4 2880 -10.1 7.7 22.0 19.7 13.9 1.5 2.50 208 +95070300.AMA 2.75 14.7 3838 -11.5 8.8 22.8 29.0 8.2 3.1 2.50 115 +95070300.DDC 2.75 14.2 2905 -9.6 6.8 18.2 21.4 12.3 1.2 2.30 111 +95071200.OKX 2.75 13.9 2900 -15.6 6.9 12.7 13.6 8.1 1.3 2.40 48 +95071500.GRB 2.75 19.0 5409 -8.5 8.1 12.1 9.0 8.0 2.0 3.00 69 +95072400.AMA 2.75 13.3 2225 -7.8 8.5 21.6 25.1 13.1 1.0 2.90 124 +95081800.BIS 2.75 18.4 5585 -7.0 7.7 10.6 17.3 10.6 1.4 3.30 142 +96031600.FFC 2.75 9.6 890 -19.2 7.8 28.8 55.2 20.5 0.9 2.20 353 +96042200.OUN 2.75 12.7 2260 -10.9 5.9 38.3 48.8 18.5 1.7 2.30 500 +96042200.TOP 2.75 10.9 1574 -16.6 7.3 45.6 54.3 14.6 2.2 2.30 145 +96051700.UNR 2.75 14.8 4365 -8.1 8.0 25.5 28.7 15.0 2.5 2.50 219 +96051800.OAX 2.75 15.3 4523 -11.1 8.8 16.0 21.2 12.9 2.6 -999.00 68 +96052500.AMA 2.75 13.5 3927 -11.3 9.1 20.3 4.9 16.4 2.6 1.90 101 +96052600.MAF 2.75 14.1 3464 -6.2 7.7 28.7 42.1 22.5 1.6 2.90 240 +96053000.MAF 2.75 14.9 3675 -7.0 7.7 35.1 40.6 19.0 2.4 2.50 321 +96060100.ABR 2.75 12.6 2276 -13.4 6.2 22.4 27.2 24.6 1.3 2.20 370 +96060200.JAN 2.75 16.1 1863 -7.5 5.5 12.7 20.3 11.3 0.4 0.60 168 +96060300.SGF 2.75 11.7 2739 -15.9 7.1 26.4 35.9 14.8 2.3 2.10 90 +96061200.AMA 2.75 11.9 3079 -8.8 8.0 24.3 30.2 18.3 1.5 1.90 373 +96061300.FFC 2.75 13.7 2727 -9.1 5.7 12.9 13.1 12.9 0.6 1.00 152 +96061400.LBF 2.75 12.4 2384 -8.6 6.5 15.4 25.0 12.0 0.6 2.20 102 +96062500.AMA 2.75 13.9 3778 -9.4 8.5 22.9 28.2 7.0 2.3 1.90 123 +96072400.DDC 2.75 14.3 3068 -11.1 8.6 27.6 36.6 16.8 2.8 2.70 203 +96080100.DEN 2.75 13.5 3920 -7.8 8.5 22.6 26.3 15.0 1.9 2.10 276 +96083000.DEN 2.75 11.7 2478 -9.1 7.8 26.2 28.9 17.6 1.3 2.30 86 +96092100.FTD 2.75 16.4 2870 -9.4 6.5 26.4 32.6 15.7 1.8 -999.00 136 +97012500.SIL 2.75 13.0 2563 -16.5 7.5 18.3 25.8 18.3 1.8 2.80 145 +97032900.BNA 2.75 11.1 1618 -15.6 7.4 25.2 15.3 18.1 1.3 3.00 389 +97041100.MAF 2.75 11.9 4076 -15.0 8.2 23.7 30.7 20.8 3.3 2.10 260 +97042100.SGF 2.75 9.4 1773 -16.5 7.4 25.4 23.9 23.3 1.2 2.00 405 +97052700.OUN 2.75 18.0 5907 -8.7 6.4 17.5 23.9 17.6 2.5 3.70 271 +97052700.SGF 2.75 16.3 4440 -9.9 7.0 22.6 25.0 16.3 2.7 2.60 276 +97061200.TOP 2.75 12.6 1552 -11.7 7.1 23.5 30.2 11.6 0.9 0.90 141 +97061600.DDC 2.75 13.5 3187 -10.9 7.7 23.3 39.3 11.9 2.0 2.70 26 +98040900.BMX 2.75 15.8 3341 -13.9 7.9 40.1 51.5 25.9 5.5 2.00 296 +98052500.DDC 2.75 12.5 2688 -12.1 7.2 27.9 32.0 13.7 1.9 2.70 180 +98061400.OUN 2.75 20.5 6689 -6.5 7.7 32.8 42.7 17.9 5.4 4.00 262 +99060300.AMA 2.75 15.6 5087 -10.3 8.7 18.6 49.2 15.5 3.1 2.50 289 +99061200.AMA 2.75 14.7 4400 -10.3 7.7 26.2 36.6 18.8 3.2 2.40 210 +99061900.DDC 2.75 13.9 4141 -11.3 7.3 22.5 29.0 13.4 2.5 2.40 346 +99070100.MAF 2.75 13.7 3989 -2.5 7.5 14.9 13.7 10.5 0.4 2.00 146 +99081800.LBF 2.75 18.3 5554 -8.9 7.8 23.7 25.1 10.7 3.9 3.40 143 +00021400.LZK 2.50 10.7 2091 -20.3 6.4 21.1 24.5 22.2 1.5 2.10 245 +00032700.SGF 2.50 9.8 1766 -18.3 7.5 34.3 43.9 21.4 1.9 2.20 350 +00050100.FWD 2.50 14.3 3593 -13.1 7.2 17.3 18.5 19.0 2.0 1.70 401 +00051200.DVN 2.50 15.6 4865 -8.1 7.4 24.8 24.9 19.3 2.7 3.40 225 +00052300.MHX 2.50 15.1 3613 -13.5 6.5 15.3 26.5 10.5 1.7 2.40 79 +00061000.RAP 2.50 13.2 3610 -8.1 7.8 14.3 21.1 11.9 1.0 2.10 70 +00062400.OAX 2.50 17.5 4783 -8.7 7.2 18.7 28.2 14.9 2.3 2.30 195 +00070200.ABR 2.50 17.8 5952 -10.3 8.4 12.2 23.4 8.1 2.7 3.90 147 +00070600.LBF 2.50 18.2 5506 -7.1 8.3 25.3 35.5 11.8 3.5 3.50 155 +00080500.BIS 2.50 17.0 4830 -8.7 6.9 17.2 22.9 4.0 2.0 3.30 86 +00091100.MPX 2.50 16.6 4554 -10.3 7.0 22.0 24.0 18.4 2.9 3.20 271 +01041700.MAF 2.50 13.9 4552 -12.1 7.5 16.2 30.6 8.0 2.2 2.20 100 +01042200.DDC 2.50 13.3 3749 -12.1 7.3 33.4 45.3 24.2 3.5 2.70 510 +01050100.OAX 2.50 10.4 2265 -16.9 7.7 17.4 17.0 19.2 1.3 2.20 226 +01050400.MAF 2.50 13.7 3866 -11.3 7.2 12.8 33.8 11.4 1.3 2.70 101 +01052500.BMX 2.50 11.9 2388 -14.9 6.7 29.2 27.4 23.5 2.0 2.70 436 +01052620.LMN 2.50 14.1 4355 -13.5 6.4 27.3 33.2 20.2 3.5 2.90 233 +01070400.RAP 2.50 13.2 3145 -11.1 8.3 25.2 26.1 12.9 2.3 2.60 144 +01070500.LBF 2.50 14.5 3571 -7.7 7.7 26.0 27.0 17.1 1.9 2.90 313 +01082400.AMA 2.50 15.4 4318 -6.7 7.4 24.0 28.1 21.0 1.9 2.80 158 +01101000.DDC 2.50 12.9 3299 -9.7 6.4 18.8 18.3 16.4 1.2 2.50 275 +02040300.JAX 2.50 14.8 3327 -14.3 7.2 11.5 30.9 11.8 1.4 1.50 80 +02041212.AMA 2.50 12.2 2907 -13.7 7.5 20.4 25.1 14.6 1.8 2.80 184 +02041900.DVN 2.50 12.3 2861 -14.5 8.2 14.1 20.0 15.9 1.4 2.50 213 +02051700.AMA 2.50 13.8 5036 -12.7 8.7 21.9 26.5 17.4 4.0 2.20 216 +02072500.ABR 2.50 15.0 3995 -11.5 7.9 28.3 28.6 13.8 3.7 3.00 207 +03051500.SHV 2.50 16.8 4260 -9.9 6.8 33.7 42.9 16.3 3.9 0.80 246 +03062200.RAP 2.50 10.6 3380 -13.7 8.0 27.5 42.2 18.7 2.6 1.50 189 +04032718.OUN 2.50 12.6 2825 -14.9 7.3 21.1 32.3 11.5 2.0 2.10 199 +04040400.EPZ 2.50 12.1 4482 -17.9 8.2 29.1 25.4 11.6 5.5 2.10 203 +04080700.ABR 2.50 13.1 2792 -9.3 6.7 21.0 25.9 12.1 1.1 2.50 240 +04091500.LBF 2.50 12.8 1474 -10.7 8.0 35.4 39.8 20.5 1.4 -999.00 306 +04102400.JAN 2.50 15.8 1938 -6.9 5.3 30.8 27.8 19.3 0.8 0.60 328 +05050322.XMR 2.50 13.4 2165 -13.9 7.6 23.3 41.5 21.5 1.7 1.20 82 +05050700.MAF 2.50 10.7 3257 -12.3 8.0 20.3 24.6 11.2 1.7 1.60 48 +06050900.JAN 2.50 16.1 3303 -13.3 7.3 28.4 39.9 14.9 3.5 1.90 170 +06052600.SGF 2.50 13.9 3409 -9.5 6.5 18.9 23.2 18.8 1.3 2.50 262 +06061400.RAP 2.50 11.5 2691 -7.7 8.3 17.3 24.5 15.3 0.8 1.60 248 +06062500.DNR 2.50 7.1 987 -11.5 8.9 26.1 26.5 12.5 0.4 0.90 -172 +06071123.LMN 2.50 16.5 2996 -5.9 6.7 12.6 11.2 9.4 0.6 0.60 110 +08110600.OUN 2.50 11.4 1623 -12.5 6.9 29.8 32.7 24.8 1.1 2.40 317 +90060300.PAH 2.50 17.8 3663 -7.6 7.0 24.0 25.9 29.8 2.0 0.60 367 +90060700.DEN 2.50 10.9 2393 -8.2 9.0 26.3 23.9 19.6 1.2 1.60 170 +90061500.DDC 2.50 16.0 4667 -6.5 7.9 28.4 30.1 15.7 2.6 2.70 306 +90062200.ALB 2.50 12.6 1833 -14.1 6.7 32.5 29.1 20.6 1.7 1.60 203 +90070200.GSO 2.50 14.8 3963 -10.0 7.2 26.0 16.3 10.7 2.6 2.20 100 +90083100.CHS 2.50 16.0 2477 -8.5 6.5 17.0 17.7 8.3 0.9 0.60 67 +91041900.SEP 2.50 17.6 5996 -13.2 7.4 13.5 44.8 13.0 3.3 3.10 24 +91042100.AYS 2.50 11.8 2563 -16.9 7.4 13.4 30.0 10.3 1.2 1.70 76 +91050800.MAF 2.50 11.2 3415 -14.8 8.4 31.1 36.7 25.4 3.5 1.60 280 +91051200.AMA 2.50 14.3 4539 -10.8 8.5 12.4 14.9 16.7 1.7 2.30 208 +91052700.LBF 2.50 11.9 2669 -13.4 7.9 13.9 32.3 13.0 1.1 2.10 35 +91053100.DEN 2.50 12.0 3551 -12.1 9.5 27.3 45.8 10.7 3.2 1.90 149 +91071800.STC 2.50 18.2 4956 -8.7 7.3 18.7 20.1 21.9 2.5 2.50 104 +91080200.CAR 2.50 12.3 1891 -13.7 6.3 19.6 33.3 11.9 0.9 1.50 223 +92030400.SEP 2.50 12.7 2676 -15.3 7.7 20.1 27.2 9.2 1.9 2.30 133 +92041600.AMA 2.50 11.1 3362 -13.4 7.6 16.0 17.8 12.0 1.5 1.70 127 +92070200.DEN 2.50 11.7 2313 -11.2 8.0 27.6 29.9 20.0 1.6 2.50 362 +93033000.DRT 2.50 12.7 2680 -13.4 8.2 39.6 44.0 26.0 3.5 2.80 411 +93061400.TOP 2.50 16.5 4195 -8.5 7.7 12.5 17.8 10.7 1.3 2.80 65 +93070200.HON 2.50 14.6 2619 -11.3 7.0 28.3 40.3 12.6 2.0 0.80 143 +93070300.TOP 2.50 18.5 4019 -7.2 7.1 15.8 16.4 15.2 1.4 0.70 202 +94032800.AHN 2.50 14.4 2627 -10.5 6.2 34.5 24.7 30.4 2.0 0.70 518 +94062600.TOP 2.50 16.4 4265 -8.6 8.4 25.2 45.9 21.6 3.0 2.90 418 +95050800.FTD 2.50 16.5 2700 -10.4 7.7 30.8 30.8 24.5 2.6 0.80 407 +95050800.LCH 2.50 17.9 3259 -9.9 7.1 16.7 31.1 10.2 1.6 0.60 119 +95050900.TOP 2.50 10.0 1495 -19.3 6.9 19.3 22.8 21.2 0.9 1.20 126 +95051600.MAF 2.50 13.6 3261 -7.8 8.4 21.7 28.8 10.3 1.5 1.80 134 +95051900.GSO 2.50 13.4 1758 -11.8 7.9 25.3 27.1 23.6 1.3 -999.00 83 +95052912.MAF 2.50 13.0 1617 -11.3 7.5 27.6 22.0 13.7 1.2 1.90 284 +95060700.DEN 2.50 12.3 3137 -10.8 9.2 37.2 35.9 20.7 3.4 2.00 284 +95061600.TFX 2.50 13.0 3142 -12.0 8.4 27.7 35.6 23.8 2.7 2.30 277 +95081212.MPX 2.50 19.1 3361 -6.3 7.2 20.6 36.8 23.0 1.4 -999.00 164 +96030700.TLH 2.50 15.4 2615 -10.4 6.0 20.9 23.7 20.7 1.2 0.60 320 +96042200.FTD 2.50 12.0 1872 -12.6 8.2 27.1 34.0 18.3 1.5 -999.00 298 +96051800.MPX 2.50 16.3 4406 -8.9 8.2 13.0 23.4 20.7 1.6 3.40 259 +96060100.DDC 2.50 13.3 2888 -10.9 8.3 13.3 19.3 13.9 1.1 2.50 111 +96060300.AMA 2.50 11.0 2356 -10.5 6.9 27.6 31.6 18.0 1.2 2.00 256 +96061200.LBF 2.50 11.7 2310 -9.9 7.5 16.7 22.2 12.7 0.8 2.40 122 +96062100.DEN 2.50 15.2 5603 -8.1 9.6 27.5 33.4 8.8 4.4 2.20 155 +96071900.GRB 2.50 20.7 4746 -7.5 6.4 26.3 26.2 20.0 3.0 0.70 164 +96072200.LBF 2.50 18.4 4756 -6.5 7.2 20.0 29.4 19.0 1.9 2.10 94 +98071100.DDC 2.50 18.9 4323 -4.3 6.2 12.7 15.2 16.0 0.7 0.60 230 +00061300.OAX 2.25 17.7 5453 -11.5 8.5 15.8 19.3 12.9 3.5 4.00 206 +00030300.FWD 2.00 12.3 2589 -14.3 6.2 33.4 29.1 20.2 2.2 2.70 239 +00031600.LMN 2.00 9.5 1478 -17.3 7.1 22.1 10.9 12.9 0.9 2.20 164 +00032800.JAX 2.00 12.5 2135 -14.5 6.3 29.1 24.7 25.7 1.7 0.90 268 +00061200.AMA 2.00 16.8 5720 -10.3 8.3 16.1 28.7 15.7 3.2 2.70 88 +00061300.LBF 2.00 13.9 4790 -9.9 8.3 16.6 18.6 9.9 2.1 2.00 159 +00061500.JAX 2.00 17.9 4801 -8.7 6.4 6.2 13.3 3.6 0.7 1.10 55 +00071100.GGW 2.00 14.2 3230 -11.3 6.9 30.1 48.1 16.9 2.6 3.00 88 +00071500.BIS 2.00 16.5 5132 -9.5 8.1 27.6 34.1 14.6 4.3 2.70 152 +00072300.LBF 2.00 13.2 2926 -11.5 7.1 25.2 27.3 13.6 1.9 2.80 91 +01042200.AMA 2.00 14.1 6059 -15.3 9.2 35.7 38.3 16.6 10.2 3.30 320 +01042200.MAF 2.00 13.7 4543 -12.3 8.4 27.4 36.2 12.3 4.2 2.20 164 +01050600.FWD 2.00 15.4 3092 -12.7 6.8 32.7 34.4 19.4 3.2 2.10 170 +01050700.SGF 2.00 14.5 4025 -13.7 6.1 8.8 17.0 10.5 1.0 3.10 202 +01050702.LZK 2.00 14.2 2759 -12.9 5.9 18.7 26.3 7.3 1.3 2.00 77 +01051200.OUN 2.00 13.2 3098 -13.9 7.1 10.0 10.8 8.7 1.0 2.10 132 +01052700.DDC 2.00 11.3 2853 -12.1 6.7 30.6 37.1 19.3 1.9 1.80 184 +01052800.OUN 2.00 16.5 4910 -10.7 7.6 29.7 38.8 16.9 4.7 3.10 113 +01053000.DDC 2.00 15.2 2892 -12.1 8.0 19.5 26.6 14.8 2.0 1.80 388 +01053100.FWD 2.00 15.8 4571 -12.3 8.7 12.4 20.6 13.7 2.3 3.90 106 +01053100.LCH 2.00 17.4 3988 -8.3 7.0 8.3 13.9 0.8 0.8 2.40 8 +01062100.DNR 2.00 10.8 2544 -11.5 7.5 21.4 23.2 20.5 1.2 2.10 192 +01063000.FWD 2.00 16.8 4122 -9.7 6.9 11.2 19.2 9.2 1.2 1.60 133 +01071300.GGW 2.00 14.5 3042 -10.1 8.1 16.5 34.2 7.9 1.4 3.50 19 +01072000.RAP 2.00 15.1 4486 -8.7 8.4 15.4 26.3 10.9 1.8 2.40 71 +01082300.TOP 2.00 16.7 4361 -9.7 7.6 9.9 23.0 13.6 1.3 2.30 192 +01082400.DDC 2.00 16.4 4283 -7.5 7.7 14.7 16.3 11.9 1.4 3.10 77 +01090800.OUN 2.00 17.6 4351 -8.7 7.8 26.1 21.2 21.8 3.3 2.30 151 +01090800.TOP 2.00 17.8 4174 -11.3 8.1 26.2 26.7 24.5 4.2 1.70 274 +01101000.OUN 2.00 15.6 3485 -12.9 7.9 24.4 28.2 23.9 3.2 2.50 447 +02041800.OAX 2.00 11.4 2113 -14.5 7.6 33.9 35.5 24.0 2.1 2.20 376 +02052800.LZK 2.00 15.1 3284 -12.3 6.5 4.4 12.3 2.6 0.4 0.60 13 +02061300.DVN 2.00 17.3 3501 -11.9 7.4 26.3 38.7 10.0 3.3 1.10 100 +02062600.MPX 2.00 19.6 6228 -9.7 7.1 18.6 21.8 9.2 3.7 3.20 120 +03051900.TBW 2.00 17.1 3797 -10.9 6.8 5.9 5.0 4.0 0.7 1.00 -4 +04043000.JAN 2.00 13.6 1469 -12.7 6.5 27.4 22.8 18.1 1.1 0.60 184 +04052200.DDC 2.00 13.5 3809 -9.7 8.1 21.0 27.0 20.3 2.0 2.20 297 +04062400.GRB 2.00 10.4 1604 -16.9 6.3 25.3 36.9 16.4 1.1 2.40 128 +04072300.TOP 2.00 16.0 3276 -7.7 6.4 15.8 19.6 11.4 1.0 0.70 158 +04082400.BIS 2.00 13.4 2596 -11.1 7.6 21.3 22.3 16.4 1.5 2.20 208 +04091200.GRB 2.00 12.3 2256 -14.9 7.2 14.7 24.8 11.6 1.0 1.00 64 +05022100.SGF 2.00 9.1 1128 -18.9 6.8 27.7 36.6 17.1 0.9 1.90 97 +05050700.LBF 2.00 9.7 3058 -14.3 8.2 12.5 21.7 6.1 1.0 1.40 135 +05050900.LMN 2.00 12.0 2971 -16.1 7.8 15.1 29.6 15.9 1.6 2.20 290 +06040700.TOP 2.00 11.0 2249 -15.1 7.4 35.7 27.3 15.8 2.3 2.10 206 +06041600.TOP 2.00 12.2 2191 -12.9 8.2 37.2 42.6 28.5 2.5 2.90 533 +06050800.DDC 2.00 9.5 1674 -17.1 8.9 16.8 27.8 16.1 1.0 2.60 248 +06051600.MFL 2.00 15.8 2473 -11.1 6.8 26.6 21.2 18.7 1.9 0.60 227 +06052400.DDC 2.00 10.2 1607 -8.7 7.6 22.4 19.3 17.0 0.6 1.80 189 +06061400.TFX 2.00 12.3 2827 -9.7 8.1 15.9 28.9 14.3 1.0 2.10 65 +06062700.ILX 2.00 12.2 2025 -15.7 6.4 3.5 11.7 5.2 0.2 1.20 15 +06090100.DDC 2.00 12.2 1972 -7.7 7.1 15.6 27.4 13.9 0.5 1.60 363 +89052800.ELP 2.00 11.2 2569 -6.8 8.0 11.3 17.1 14.9 0.4 1.40 232 +89071100.HON 2.00 15.7 3126 -7.0 6.9 14.6 18.6 12.3 0.8 1.20 151 +89082100.LBF 2.00 14.8 3307 -9.1 7.1 28.0 44.7 8.0 2.1 3.00 83 +89103000.OUN 2.00 12.5 2163 -14.7 6.6 18.0 18.1 13.1 1.1 1.60 195 +90060900.PIT 2.00 16.7 4095 -9.5 6.7 18.1 13.6 18.8 1.9 1.00 236 +90061400.PIA 2.00 18.1 3570 -7.0 7.0 16.5 23.4 9.5 1.2 0.60 134 +90072600.TBW 2.00 18.4 4330 -6.3 5.7 3.5 8.5 6.3 0.2 0.60 7 +90091400.STC 2.00 13.1 2123 -10.9 7.4 27.8 39.0 23.2 1.5 -999.00 564 +98033100.FWD 2.00 13.3 2873 -14.3 7.2 29.6 57.5 17.6 2.7 2.90 93 +98062500.APX 2.00 15.8 3453 -11.3 7.3 28.9 35.4 21.9 3.1 3.30 348 +98063000.BUF 2.00 14.5 2615 -10.5 6.1 23.6 28.2 8.5 1.4 1.70 86 +99050400.DRT 2.00 17.4 5609 -10.1 7.5 40.5 38.9 21.2 7.1 4.56 342 +99053100.TOP 2.00 13.1 2215 -10.9 6.8 18.6 12.2 14.7 1.0 1.40 189 +00033000.SHV 1.75 15.4 3548 -15.9 7.6 31.6 50.3 23.8 5.0 2.80 323 +00051200.TOP 1.75 16.7 5329 -7.3 6.5 25.1 29.2 21.0 2.5 3.70 216 +00051900.FWD 1.75 16.2 3610 -10.9 7.4 25.2 32.9 6.7 2.8 0.64 75 +00052900.GSO 1.75 14.3 1988 -11.1 6.2 28.7 35.1 17.6 1.3 1.20 139 +00060300.ABQ 1.75 9.4 1267 -8.7 8.2 10.3 17.5 7.6 0.2 1.40 70 +00061100.AMA 1.75 14.0 3932 -7.9 7.8 14.8 19.1 9.4 1.2 2.10 128 +00062200.DDC 1.75 14.3 3602 -8.7 7.0 15.4 23.4 16.2 1.2 2.90 157 +00062400.DDC 1.75 14.8 3499 -7.3 7.7 23.2 30.2 12.0 1.6 2.70 237 +00062400.LBF 1.75 14.8 4723 -9.7 8.6 17.4 29.6 9.8 2.4 2.00 126 +00070600.GGW 1.75 11.7 2743 -14.1 8.5 29.6 40.4 13.0 2.7 1.90 165 +00071300.ABR 1.75 13.6 2305 -8.7 6.7 29.3 44.3 21.7 1.3 2.00 278 +00071500.IAD 1.75 13.9 2186 -12.3 6.8 17.8 17.7 9.3 1.1 2.00 118 +00071800.AMA 1.75 14.4 3660 -4.7 6.9 9.1 7.7 5.9 0.4 1.50 79 +00072100.FFC 1.75 14.3 2149 -6.9 6.4 9.2 10.4 9.1 0.3 0.60 63 +00072200.LBF 1.75 12.8 3031 -11.5 7.6 27.5 23.7 14.5 2.2 2.60 247 +00072500.ABR 1.75 15.6 4195 -12.3 8.9 15.3 19.8 10.9 2.6 3.10 113 +00072600.MFL 1.75 18.3 4079 -8.5 6.6 5.2 5.6 2.4 0.5 0.60 18 +00072600.MPX 1.75 15.3 3240 -13.1 7.6 21.4 12.4 10.1 2.5 3.00 139 +00072700.LBF 1.75 18.1 5178 -8.9 8.7 17.5 26.1 12.2 3.0 2.20 351 +00072900.GSO 1.75 14.3 2081 -9.7 6.2 6.2 16.1 6.5 0.3 0.60 43 +00073100.JAX 1.75 17.6 3581 -8.9 6.0 6.6 5.5 4.7 0.5 0.60 27 +00080200.GGW 1.75 10.8 2057 -8.9 8.0 24.6 35.3 15.0 0.9 1.80 148 +00080800.OAX 1.75 16.3 4679 -8.1 7.8 16.4 25.1 10.8 1.9 3.00 185 +00090400.LBF 1.75 11.2 2441 -9.5 7.8 21.4 24.1 18.5 1.0 1.50 309 +01061800.TBW 1.75 15.9 3469 -9.7 5.9 4.6 6.6 1.5 0.3 0.80 23 +01062000.DTX 1.75 14.9 3813 -12.5 6.9 8.4 17.6 15.0 1.0 2.80 -45 +02041600.PIT 1.75 11.5 1856 -14.9 7.3 17.9 18.1 15.8 1.0 1.60 245 +02041800.FWD 1.75 15.9 3343 -9.9 6.4 12.4 34.6 5.6 1.0 -999.00 61 +02050400.CHS 1.75 15.9 3255 -10.7 6.6 21.1 29.5 16.6 1.8 0.90 19 +02052800.LBF 1.75 11.3 3387 -15.1 9.0 18.8 30.1 11.6 2.3 1.90 184 +02052800.MAF 1.75 12.7 3115 -11.1 8.0 20.6 24.7 16.4 1.7 2.10 103 +02052900.TOP 1.75 12.8 2661 -13.7 6.8 4.2 10.7 7.3 0.3 1.30 48 +02060402.CHS 1.75 13.7 2637 -10.1 7.6 9.7 10.8 11.7 0.6 0.80 33 +02060700.MPX 1.75 9.2 1952 -15.1 7.7 22.8 25.3 16.2 1.1 1.50 758 +02061200.TOP 1.75 19.6 5029 -8.9 7.6 21.1 24.7 15.6 3.3 0.70 224 +02062600.DTX 1.75 14.5 3079 -8.9 6.1 1.9 7.2 1.4 0.1 0.70 -1 +02070200.AMA 1.75 12.2 2393 -6.5 7.3 18.4 11.3 20.8 0.6 1.60 353 +02072518.TBW 1.75 18.9 4523 -8.5 6.7 7.8 6.3 2.0 0.9 0.60 7 +02072800.DDC 1.75 12.9 2480 -5.3 7.4 10.6 11.1 10.7 0.3 1.40 155 +02082300.LBF 1.75 17.8 6193 -10.1 8.0 12.9 28.1 3.8 2.7 3.10 10 +03031500.BMX 1.75 10.9 1555 -19.1 7.4 8.5 21.2 12.3 0.5 1.30 94 +03032600.LZK 1.75 11.3 2073 -18.5 6.7 14.3 15.4 9.5 1.0 2.20 67 +03032600.SHV 1.75 11.3 1723 -18.3 8.5 17.7 18.0 8.0 1.3 1.40 108 +03042900.AMA 1.75 9.6 2549 -14.5 8.3 25.3 33.7 16.5 1.8 1.60 237 +03042900.MAF 1.75 9.8 2325 -13.5 8.4 23.4 21.0 15.5 1.4 1.40 165 +03043000.BNA 1.75 12.4 3359 -15.3 7.2 4.3 5.5 4.1 0.5 1.30 30 +03050200.FFC 1.75 13.7 3289 -13.5 6.5 9.8 9.5 7.5 0.9 0.90 55 +03050700.BMX 1.75 17.4 4489 -10.5 7.0 26.5 28.4 12.2 3.6 2.10 101 +03051312.FWD 1.75 12.6 1814 -10.3 7.3 17.7 24.7 16.8 0.7 1.20 205 +03060400.LCH 1.75 19.7 4988 -6.7 5.8 13.3 17.2 7.3 1.2 0.60 44 +03061100.OUN 1.75 14.5 3045 -9.3 7.2 17.8 13.1 12.1 1.3 2.00 135 +03061300.LBF 1.75 12.0 2759 -11.3 7.2 15.4 16.3 13.0 1.0 2.60 179 +03061500.FWD 1.75 14.3 2433 -11.3 6.9 12.1 2.8 5.3 0.8 1.70 32 +03061500.LBF 1.75 10.7 1717 -11.3 6.3 10.6 12.0 6.6 0.3 1.70 51 +03061700.FFC 1.75 16.3 2826 -8.5 6.2 7.0 13.0 5.5 0.4 0.60 32 +03061700.RAP 1.75 10.1 1501 -11.1 7.1 5.7 17.5 2.9 0.2 1.90 92 +03062100.MAF 1.75 10.7 1489 -7.7 7.0 14.5 29.4 6.5 0.3 1.90 74 +03062500.MAF 1.75 16.5 4621 -6.7 7.7 8.7 16.8 11.9 0.8 2.10 45 +03090500.DRA 1.75 11.3 1966 -8.3 8.1 3.7 9.2 5.0 0.1 1.20 33 +03091000.MAF 1.75 12.9 3038 -7.3 7.4 8.3 12.7 8.6 0.4 2.10 79 +03091100.DDC 1.75 14.8 3112 -7.5 6.9 22.3 30.8 15.7 1.3 2.20 259 +03092100.DDC 1.75 10.2 1784 -10.9 7.3 20.1 23.8 21.8 0.7 2.00 257 +04022512.LIX 1.75 10.3 837 -17.7 6.7 31.9 48.7 25.2 0.8 2.40 340 +04030100.TOP 1.75 6.3 487 -28.7 8.7 32.0 35.0 20.1 0.6 1.60 171 +04032100.FFC 1.75 7.9 942 -17.3 7.5 12.0 13.4 11.3 0.3 1.10 154 +04032100.MAF 1.75 10.0 2053 -12.9 7.9 9.6 21.3 5.5 0.5 1.50 39 +04040700.FWD 1.75 10.4 835 -16.3 6.7 28.3 27.2 11.8 0.6 1.00 87 +04042900.DRT 1.75 12.4 1834 -12.9 6.4 20.0 31.6 16.1 0.9 1.30 217 +04051000.LBF 1.75 11.6 4026 -13.9 9.0 13.9 17.5 3.0 1.9 1.60 38 +04051600.EPZ 1.75 10.4 2888 -11.5 8.7 12.2 7.0 4.1 0.9 1.60 93 +04071200.TOP 1.75 17.7 3709 -7.3 6.8 13.6 9.1 11.9 1.1 0.60 204 +04081900.ILX 1.75 15.1 3685 -9.1 5.9 19.9 28.2 19.7 1.4 1.30 371 +04082600.BIS 1.75 12.5 3083 -13.1 7.1 16.6 18.9 13.9 1.4 2.40 101 +04092300.AMA 1.75 12.8 1887 -10.1 6.7 23.5 21.8 19.6 0.9 1.30 374 +04092500.AMA 1.75 11.2 2465 -11.9 6.9 15.1 24.9 12.0 0.8 2.00 38 +05030400.AMA 1.75 4.3 697 -23.3 8.7 22.7 36.0 13.1 0.3 1.30 142 +05031500.TLH 1.75 12.4 1338 -14.1 7.1 28.4 53.2 12.7 1.1 1.10 41 +05082400.RAP 1.75 11.3 2040 -11.3 8.6 11.6 19.1 13.6 0.6 -999.00 116 +05082700.AMA 1.75 13.6 2765 -5.5 7.4 11.5 11.5 10.0 0.4 2.00 31 +06040400.CHS 1.75 11.6 2165 -16.9 8.1 31.6 39.3 26.6 2.6 2.60 207 +06040900.JAX 1.75 13.6 2254 -13.7 6.6 20.4 22.0 19.5 1.3 2.10 178 +06041300.LZK 1.75 11.0 1294 -13.5 7.2 12.6 20.8 6.0 0.4 -999.00 34 +06041600.IAD 1.75 10.2 2181 -16.7 7.0 27.7 43.3 16.6 1.7 1.80 48 +06041600.WAL 1.75 10.9 2234 -16.5 7.2 17.7 48.2 17.2 1.2 2.30 81 +06041900.BMX 1.75 12.0 1805 -11.1 6.3 14.2 22.0 5.4 0.5 0.70 62 +06042300.DTX 1.75 6.7 609 -24.1 7.4 17.7 27.4 14.0 0.3 1.80 50 +06050400.SHV 1.75 15.0 3310 -12.1 6.7 8.0 14.3 5.8 0.8 0.60 85 +06050600.LCH 1.75 14.9 2655 -10.3 5.8 23.1 25.2 15.8 1.3 0.60 64 +06050900.DDC 1.75 9.6 1630 -13.3 7.9 27.2 27.8 15.1 1.1 2.00 179 +06050912.SGF 1.75 12.9 2144 -12.9 6.7 20.3 18.4 10.1 1.2 1.80 144 +06051100.LCH 1.75 18.5 4564 -12.3 8.9 22.9 22.0 12.2 5.1 1.70 38 +06051412.SHV 1.75 12.4 2270 -14.9 7.8 16.8 26.2 15.5 1.3 2.80 84 +06051800.ILX 1.75 8.0 713 -17.5 6.9 28.8 29.6 16.9 0.5 2.10 226 +06052300.SGF 1.75 14.4 3032 -11.9 7.1 9.0 15.5 8.3 0.8 1.60 91 +06052500.TLH 1.75 14.8 2619 -10.5 6.4 7.3 7.5 9.2 0.5 0.60 56 +06052700.GSO 1.75 12.7 2136 -9.9 5.8 17.4 21.2 17.1 0.6 1.50 217 +06061800.FWD 1.75 14.3 2286 -10.9 8.2 13.9 24.6 11.6 1.0 2.30 134 +06062100.CHS 1.75 17.0 4007 -10.1 6.4 12.9 19.3 7.1 1.3 0.70 66 +06062400.BIS 1.75 8.3 942 -15.3 7.0 22.7 27.2 16.7 0.5 1.60 167 +06062400.LBF 1.75 10.7 1400 -12.1 7.4 26.6 25.0 13.6 0.8 2.10 272 +06062900.DDC 1.75 7.7 919 -10.1 7.7 17.9 17.9 1.9 0.2 0.80 16 +06070100.BNA 1.75 13.5 2750 -11.5 6.7 10.8 7.8 11.5 0.7 1.50 41 +06071200.DDC 1.75 11.8 1068 -8.7 8.0 15.4 21.8 11.8 0.3 1.00 12 +06071300.DDC 1.75 12.8 1575 -5.9 6.9 12.7 13.7 7.4 0.2 0.80 99 +06071900.JAN 1.75 15.2 2280 -6.9 6.5 11.1 11.1 9.0 0.4 0.60 88 +06072200.LZK 1.75 14.1 2480 -8.1 7.3 6.9 5.8 7.7 0.3 0.60 67 +06072600.TUS 1.75 11.2 1725 -5.7 7.4 15.0 18.3 8.5 0.3 0.90 36 +06080700.TOP 1.75 12.5 1693 -6.7 7.0 7.6 6.8 3.2 0.2 0.60 35 +06080900.TUS 1.75 11.9 1640 -4.7 6.6 5.1 8.2 6.6 0.1 0.60 25 +06082100.ABR 1.75 12.5 1851 -9.9 6.8 21.9 39.5 15.5 0.8 2.10 257 +06082300.RAP 1.75 8.3 1757 -9.5 9.1 21.3 28.7 12.7 0.6 0.80 108 +06091100.AMA 1.75 12.5 1812 -8.9 7.1 14.9 33.3 13.7 0.5 2.10 51 +06091400.EPZ 1.75 11.7 1589 -10.3 7.6 17.4 23.7 13.1 0.6 2.00 167 +06091600.DDC 1.75 14.4 2738 -6.9 6.6 29.7 39.0 21.6 1.3 2.20 378 +06100400.MPX 1.75 13.7 3011 -12.1 7.4 34.0 30.2 23.9 3.0 2.90 514 +89060100.TOP 1.75 15.8 2810 -10.9 7.9 10.6 26.9 7.9 1.0 -999.00 90 +89060600.GSO 1.75 14.8 2078 -9.1 5.9 8.1 6.7 10.0 0.3 0.60 93 +89060600.JAN 1.75 16.3 3336 -11.3 6.7 20.8 25.3 10.4 2.0 0.80 103 +89061400.GGG 1.75 17.2 3674 -11.0 6.9 15.4 23.3 4.3 1.7 -999.00 61 +89061900.BNA 1.75 13.9 1755 -10.2 6.3 9.7 7.8 6.8 0.4 0.60 86 +89062200.AHN 1.75 15.5 1517 -7.6 5.8 12.6 15.8 14.9 0.3 0.60 112 +89062600.IAD 1.75 16.2 3138 -8.6 6.1 14.3 23.0 12.1 0.9 0.70 108 +89062700.PIA 1.75 15.7 2460 -7.9 6.6 13.2 12.4 5.3 0.6 0.70 87 +89062800.BUF 1.75 15.2 2385 -8.2 5.3 20.1 22.3 9.8 0.7 0.60 82 +89070800.PIT 1.75 15.4 2732 -9.1 6.8 17.5 15.7 12.8 1.1 1.50 81 +89071300.DDC 1.75 15.1 3239 -4.9 6.9 5.1 7.2 7.9 0.2 1.20 81 +89071300.OUN 1.75 19.0 4127 -5.4 6.9 13.8 19.1 13.0 1.0 -999.00 196 +89071500.LBF 1.75 14.3 2675 -6.9 6.1 6.1 8.4 5.5 0.2 0.60 27 +89072900.HON 1.75 14.0 2092 -5.9 6.0 12.0 17.9 6.4 0.3 0.80 105 +89073000.JAN 1.75 18.0 3940 -7.7 6.7 1.9 3.1 2.1 0.2 0.60 9 +89080600.UMN 1.75 19.0 5563 -6.9 7.0 11.7 11.3 8.8 1.4 0.80 99 +89081300.TBW 1.75 16.4 2617 -8.6 6.0 18.1 18.2 10.1 1.0 0.60 65 +89082500.RAP 1.75 10.6 1899 -7.1 7.6 7.7 7.6 2.7 0.2 1.00 55 +89082700.OMA 1.75 17.8 3452 -6.6 6.1 19.5 33.1 15.2 1.1 0.60 142 +89082800.UMN 1.75 17.3 3603 -6.1 6.5 7.8 5.6 2.6 0.5 0.60 28 +89082900.TOP 1.75 19.8 4842 -6.3 6.6 15.4 21.1 13.2 1.5 0.60 156 +89083000.OUN 1.75 17.3 3864 -5.6 6.0 13.1 24.2 11.8 0.7 0.60 112 +89083100.DDC 1.75 16.5 2956 -5.7 6.6 13.6 22.5 13.3 0.6 0.80 346 +89090200.1M1 1.75 18.3 3818 -4.8 6.1 16.2 14.1 8.2 0.8 0.60 64 +89090800.DEN 1.75 10.1 1350 -6.8 8.3 24.1 24.0 15.4 0.4 2.00 366 +90022800.MAF 1.75 9.7 607 -16.2 6.6 16.4 23.8 5.1 0.2 1.20 55 +90031000.AMA 1.75 11.1 2468 -16.0 8.6 13.1 18.2 9.9 1.2 1.90 106 +90031300.OUN 1.75 12.7 3211 -13.6 7.8 24.2 18.1 19.4 2.5 2.80 286 +90040200.BRO 1.75 16.2 3494 -9.3 7.1 25.7 37.2 15.2 2.3 0.90 65 +90042200.OUN 1.75 11.1 2748 -13.3 6.6 12.2 14.9 7.3 0.8 2.00 48 +90042600.DRT 1.75 14.6 3699 -13.8 8.1 25.7 33.2 11.1 3.7 4.30 101 +90042900.AYS 1.75 13.0 2333 -12.2 6.2 30.6 23.2 19.1 1.7 2.30 243 +90050600.OUN 1.75 7.6 836 -20.1 7.2 18.3 48.8 5.8 0.4 1.40 30 +90051200.SEP 1.75 13.6 2282 -9.2 6.9 34.8 47.4 14.5 1.6 -999.00 134 +90051600.IAD 1.75 13.4 2004 -14.0 7.0 16.7 27.7 12.7 1.0 -999.00 102 +90051900.SEP 1.75 17.0 3246 -9.1 6.6 20.9 27.2 15.6 1.6 0.60 387 +90052100.HAT 1.75 15.8 2891 -9.7 5.6 13.8 19.5 12.4 0.8 0.60 182 +90052100.UMN 1.75 14.8 3661 -13.1 7.6 15.4 23.7 15.3 2.0 3.40 181 +90052300.HON 1.75 10.9 1984 -14.0 7.2 22.3 33.6 15.0 1.1 2.40 107 +90052800.SIL 1.75 18.0 3916 -10.0 6.8 19.3 10.6 10.4 2.2 0.80 48 +90061000.IAD 1.75 14.9 2818 -9.2 6.5 16.4 19.3 18.0 1.0 0.60 175 +90061000.OUN 1.75 15.1 3242 -8.5 7.8 10.1 1.3 10.9 0.8 2.50 21 +90061100.CHS 1.75 17.7 4050 -8.1 6.6 8.1 19.1 6.4 0.7 0.60 102 +90061300.STC 1.75 16.2 2789 -10.4 7.2 36.6 42.0 14.2 2.9 0.70 139 +90061800.PIA 1.75 19.5 4567 -8.1 7.4 17.0 25.7 14.1 2.2 1.00 94 +90070500.LCH 1.75 17.6 3315 -8.5 6.6 15.3 2.5 11.6 1.2 0.60 58 +90070900.GRB 1.75 16.9 2962 -6.5 6.5 18.2 22.7 12.1 0.9 0.60 82 +90071100.CKL 1.75 15.4 2544 -8.1 6.4 5.1 4.6 2.1 0.3 0.60 9 +90071300.CRP 1.75 13.3 1658 -6.5 6.5 12.8 9.3 14.6 0.3 0.60 121 +90071400.ABQ 1.75 10.4 1588 -9.4 8.7 18.9 32.6 4.4 0.6 1.20 70 +90071700.FNT 1.75 11.9 1393 -12.5 6.5 15.5 25.3 13.2 0.5 0.60 176 +90071800.LBF 1.75 12.3 3138 -7.7 8.2 17.7 16.6 10.0 1.0 1.60 115 +90072100.ABQ 1.75 10.9 1327 -5.9 8.3 7.9 14.5 9.8 0.1 1.30 145 +90072600.OUN 1.75 16.6 3546 -6.8 6.2 10.8 14.7 11.1 0.6 0.70 206 +90072700.AMA 1.75 14.3 3104 -5.8 7.3 7.7 7.9 11.1 0.3 2.20 117 +90073100.GGG 1.75 16.1 3254 -7.5 6.4 7.9 5.4 1.2 0.5 0.60 3 +90080200.LCH 1.75 18.4 3223 -7.3 6.4 6.5 2.0 3.1 0.4 0.60 14 +90081000.AHN 1.75 14.9 2234 -9.4 6.2 13.3 26.7 6.4 0.6 0.80 33 +90081500.DDC 1.75 15.1 3012 -6.6 5.6 9.0 15.8 9.9 0.4 0.60 59 +90082100.AMA 1.75 14.6 2833 -5.7 6.6 11.7 11.3 10.6 0.4 1.20 75 +90082400.OVN 1.75 18.7 5016 -7.4 6.8 7.4 14.7 9.4 0.8 0.70 100 +90082600.BIS 1.75 13.7 3187 -13.2 8.6 22.2 23.1 13.2 2.6 2.50 190 +90082600.HON 1.75 17.9 5529 -11.5 9.1 14.7 28.6 9.9 3.6 -999.00 156 +90090200.MAF 1.75 14.9 3597 -6.2 6.8 17.2 18.3 7.5 0.9 2.50 58 +90091100.AHN 1.75 15.1 2857 -8.6 5.9 7.9 7.6 6.3 0.4 0.60 80 +91032700.DAY 1.75 10.7 1310 -13.1 6.4 30.2 30.6 24.3 0.8 1.80 531 +91051300.BIS 1.75 13.8 1867 -11.5 6.8 26.9 19.8 15.8 1.3 0.70 -79 +91051300.HON 1.75 14.7 3615 -9.5 7.2 14.2 22.7 13.0 1.2 2.80 97 +91051700.GGG 1.75 18.4 5081 -10.4 7.5 7.9 11.2 10.5 1.4 0.90 157 +91053100.AHN 1.75 16.3 3505 -6.9 5.9 3.9 4.1 3.2 0.2 0.60 15 +91060600.JAN 1.75 16.3 3344 -9.1 6.8 9.5 9.6 3.1 0.8 0.60 12 +91060600.RAP 1.75 13.1 2001 -11.5 7.1 13.2 19.7 11.9 0.7 1.40 170 +92051500.1M1 1.75 13.3 2877 -11.3 6.4 11.4 16.3 7.9 0.7 1.50 54 +94062600.PBI 1.75 17.7 4199 -9.1 6.6 4.9 6.6 5.2 0.5 1.80 10 +94070100.1M1 1.75 18.6 4820 -8.1 6.1 20.0 18.5 12.6 2.1 1.00 342 +94071700.1M1 1.75 17.7 3339 -6.4 5.8 12.5 11.3 19.1 0.7 0.60 164 +94071700.HAT 1.75 16.5 2973 -6.0 5.7 5.9 3.1 4.4 0.2 0.60 33 +97100900.OUN 1.75 16.5 3628 -7.5 6.0 20.0 29.9 16.6 1.3 0.80 205 +98062500.FFC 1.75 15.8 3224 -8.9 7.3 4.2 9.9 5.6 0.3 0.60 54 +00051800.GSO 1.50 11.9 1767 -13.7 6.5 16.4 31.1 7.6 0.7 1.60 124 +00090200.SLC 1.50 9.1 1641 -14.7 8.4 16.1 24.8 20.1 0.7 1.70 101 +01062600.GSO 1.50 11.9 929 -11.7 6.0 17.8 25.6 10.4 0.3 0.60 106 +01062600.RNK 1.50 11.1 1653 -11.9 5.7 13.7 30.3 8.3 0.4 2.10 88 +02042200.ILN 1.50 10.3 623 -13.3 6.8 36.0 43.5 31.2 0.5 2.10 525 +02072500.LCH 1.50 20.2 5453 -7.3 5.9 8.5 11.3 5.5 1.0 0.60 66 +03031700.MHX 1.50 12.1 1241 -13.1 5.4 19.1 32.8 11.5 0.5 0.70 37 +03091800.INL 1.50 13.7 1863 -13.5 7.5 24.7 29.2 15.3 1.5 -999.00 384 +06042117.JAN 1.50 13.4 1486 -12.9 6.5 17.4 11.7 6.4 0.7 0.60 58 +06052200.LBF 1.50 8.2 1420 -11.1 7.7 15.2 22.6 14.8 0.4 1.30 199 +06053000.SGF 1.50 15.0 2988 -9.3 6.5 2.7 12.8 4.0 0.2 0.60 27 +06071100.DNR 1.50 10.1 1192 -7.9 7.6 16.2 27.0 12.2 0.3 1.70 79 +89060200.AHN 1.50 13.2 1996 -7.3 6.1 2.6 1.6 3.2 0.1 -999.00 18 +90040200.GSO 1.50 8.7 984 -17.4 6.8 29.7 37.4 19.9 0.7 2.00 210 +90041100.AHN 1.50 11.5 1096 -14.0 6.4 25.4 25.8 19.0 0.7 0.60 343 +90071000.DEN 1.50 13.5 3504 -8.2 8.0 25.4 20.1 16.7 1.9 2.50 41 +90082200.AHN 1.50 16.5 3275 -6.8 6.5 8.7 15.8 6.0 0.5 0.60 48 +90082200.OUN 1.50 16.6 3350 -5.5 6.1 3.3 5.7 3.1 0.1 0.60 -7 +94070100.GSO 1.50 13.8 2296 -10.3 5.4 8.1 14.3 6.6 0.3 0.60 40 +00030400.BMX 1.25 11.4 1311 -14.9 5.7 42.9 54.3 21.1 1.3 1.40 205 +00071100.DDC 1.25 16.4 4707 -4.1 6.8 4.6 8.7 6.0 0.2 2.60 136 +00072000.LZK 1.25 16.4 3973 -6.7 6.8 12.6 12.7 8.3 0.9 1.10 102 +02041200.TOP 1.25 9.8 1084 -16.5 7.1 9.4 27.2 16.2 0.3 1.60 99 +03040500.ILN 1.25 10.4 1856 -15.7 6.5 20.8 25.6 17.7 1.0 2.20 233 +03090300.NKX 1.25 10.8 940 -5.9 6.6 7.0 5.9 4.2 0.1 0.70 9 +03090800.FGZ 1.25 8.3 663 -8.3 7.7 15.0 17.0 11.2 0.1 1.20 130 +03090800.PHX 1.25 12.1 2268 -6.7 6.7 10.7 16.8 8.2 0.3 1.20 90 +04032700.RAP 1.25 8.5 2052 -15.5 8.0 19.0 17.5 12.6 1.0 1.50 161 +04100400.AMA 1.25 10.5 1672 -13.5 7.6 23.5 31.9 10.7 1.0 2.40 28 +05030700.MAF 1.25 8.0 547 -16.7 6.9 34.3 40.4 16.9 0.4 1.90 177 +05090600.LBF 1.25 13.0 2252 -9.1 8.1 14.1 27.2 6.3 0.7 2.90 28 +05100123.LMN 1.25 15.9 2672 -9.9 7.0 21.4 26.0 14.1 1.5 -999.00 276 +06051500.TLH 1.25 10.8 1279 -13.7 7.1 24.7 23.2 18.5 0.8 1.70 104 +06052000.BOI 1.25 7.4 1070 -13.5 8.4 15.9 25.9 9.2 0.3 0.80 95 +06052600.FFC 1.25 12.1 1711 -12.1 7.1 8.7 3.3 4.1 0.4 1.10 46 +06060300.ILX 1.25 10.0 1218 -14.5 5.9 20.0 22.7 14.1 0.5 1.50 87 +06060312.LBF 1.25 7.7 988 -11.9 9.0 19.5 17.8 10.8 0.4 1.00 699 +06061200.DNR 1.25 6.0 942 -9.9 9.4 17.1 22.2 7.4 0.2 0.60 130 +06070400.GRB 1.25 14.1 1881 -10.1 6.6 22.8 40.7 14.0 1.0 0.60 132 +06072700.ILX 1.25 20.7 4385 -4.3 5.7 12.7 19.1 14.7 0.7 0.60 318 +06072800.FGZ 1.25 13.5 3100 -5.3 8.1 22.7 18.3 14.1 1.0 2.70 193 +90041400.OUN 1.25 10.8 1408 -18.2 7.9 23.5 33.0 17.5 1.2 2.00 146 +94062500.GSO 1.25 15.9 2334 -5.4 5.6 9.9 5.2 12.9 0.3 0.60 103 +00051400.TLH 1.00 15.9 3542 -9.9 6.9 4.2 4.2 5.4 0.4 1.00 -4 +00053000.LBF 1.00 9.9 2258 -9.7 9.2 27.2 31.9 16.9 1.3 1.10 294 +00060100.ILX 1.00 16.1 3208 -9.1 7.0 17.9 15.6 20.7 1.4 1.80 163 +00060200.DVN 1.00 16.4 3451 -9.3 7.3 14.1 11.0 14.2 1.3 0.60 175 +00060200.TOP 1.00 16.1 3517 -9.3 6.9 10.4 16.3 4.9 0.9 0.80 39 +00062100.TBW 1.00 17.1 3180 -8.5 6.4 12.2 19.0 8.9 0.9 0.60 49 +00062300.MHX 1.00 18.6 4167 -8.7 6.1 6.0 6.1 9.7 0.6 0.60 89 +00062600.DDC 1.00 13.5 2618 -6.1 6.7 15.8 16.9 14.3 0.5 1.60 51 +00062600.TOP 1.00 17.8 4052 -8.9 7.6 1.3 23.9 2.4 0.1 2.30 26 +00063000.PIT 1.00 9.9 1086 -15.9 5.5 22.0 37.9 8.1 0.5 1.80 77 +00070200.DDC 1.00 16.2 3566 -5.7 6.6 14.2 21.9 5.5 0.7 1.30 38 +00070200.RAP 1.00 15.6 5621 -9.7 8.7 21.5 22.7 15.9 3.8 2.20 263 +00070300.DDC 1.00 17.2 4558 -5.9 7.5 13.6 22.7 11.7 1.1 2.40 66 +00070300.OAX 1.00 18.5 4633 -6.3 6.9 10.6 19.6 9.9 0.9 1.90 133 +00070400.DDC 1.00 18.1 5142 -7.1 7.6 9.7 19.2 11.4 1.2 2.40 114 +00070700.RAP 1.00 14.2 4065 -7.7 8.6 29.4 33.3 10.8 2.7 2.10 111 +00071200.DDC 1.00 14.4 2941 -5.5 7.2 11.3 11.7 10.8 0.5 1.40 196 +00071400.GRB 1.00 12.0 1743 -12.3 6.9 21.5 42.9 13.4 0.9 1.70 195 +00071500.SHV 1.00 17.2 4004 -5.9 6.0 4.6 8.6 6.2 0.3 0.60 46 +00071700.TOP 1.00 15.9 3927 -8.7 7.9 8.9 14.1 14.5 0.9 2.40 198 +00071900.GYX 1.00 11.4 997 -13.3 6.0 27.0 36.1 18.8 0.6 1.00 107 +00072300.OTX 1.00 9.0 2088 -12.3 8.2 17.2 21.1 7.8 0.8 1.20 43 +00072700.JAN 1.00 12.5 2066 -10.7 6.4 8.0 8.4 4.2 0.3 1.00 -50 +00072800.LBF 1.00 17.1 5581 -7.7 8.1 25.0 21.1 9.6 3.5 3.10 187 +00072800.TOP 1.00 15.3 3666 -10.3 7.6 22.0 26.4 9.1 2.3 2.60 115 +00072900.CHS 1.00 16.1 2462 -7.5 5.6 9.3 13.2 3.3 0.4 0.60 4 +00072900.ILN 1.00 14.3 2735 -11.5 6.7 13.4 21.0 8.0 1.0 0.60 68 +00080700.TOP 1.00 17.3 4476 -7.5 7.2 17.8 22.9 11.7 1.8 1.80 72 +01061900.JAX 1.00 17.2 2584 -9.5 6.1 4.8 8.3 5.0 0.3 0.60 13 +01062100.ABR 1.00 8.1 1118 -19.3 7.0 4.2 12.4 3.6 0.1 1.30 14 +01062600.LBF 1.00 12.7 3931 -8.1 8.1 9.3 8.1 8.1 0.7 1.50 119 +02012400.LZK 1.00 13.1 1343 -12.7 6.6 32.5 40.7 20.2 1.1 0.60 290 +02042300.OAX 1.00 6.4 614 -23.3 7.9 26.3 36.6 15.2 0.4 1.40 133 +02051800.CRP 1.00 20.3 5902 -10.5 7.4 22.6 23.2 10.7 5.0 1.60 86 +02052700.AMA 1.00 9.7 2332 -11.1 7.2 14.5 11.8 13.0 0.6 1.40 198 +02060400.CHS 1.00 15.2 3170 -10.1 7.6 9.7 10.8 11.7 0.9 0.60 33 +02060700.ABR 1.00 9.0 2252 -14.7 8.1 12.4 18.1 8.2 0.7 1.20 118 +02070200.FFC 1.00 16.3 4268 -9.7 6.6 7.8 4.3 7.3 0.8 0.60 46 +02070300.LBF 1.00 14.1 3367 -5.9 7.5 14.0 6.2 11.5 0.7 1.20 158 +02072000.JAN 1.00 17.6 3501 -6.7 6.1 6.1 7.9 5.7 0.4 0.60 58 +02072600.TOP 1.00 13.8 3390 -5.9 7.5 16.9 16.9 11.9 0.8 2.20 168 +02072700.RAP 1.00 9.4 1688 -9.3 7.5 21.0 28.6 14.5 0.6 1.30 139 +02072900.AMA 1.00 13.6 3610 -6.5 7.8 12.5 12.2 13.6 0.7 2.00 164 +02080300.BMX 1.00 18.4 5098 -6.5 5.8 9.6 10.8 11.5 0.8 1.40 33 +02080400.SGF 1.00 17.7 4328 -5.5 6.5 1.1 7.6 3.8 0.1 1.50 -11 +03031500.TBW 1.00 15.9 3398 -13.7 7.0 18.6 27.3 3.9 2.3 0.90 32 +03032000.ILX 1.00 8.0 713 -21.9 6.9 3.5 11.4 5.4 0.1 1.40 -26 +03032100.DTX 1.00 8.7 1602 -21.3 6.6 13.3 27.1 7.7 0.6 1.10 80 +03040500.LZK 1.00 10.7 1751 -14.9 6.6 27.4 33.1 12.6 1.2 2.30 65 +03041800.DNR 1.00 5.3 1063 -18.1 8.6 11.0 43.9 5.9 0.2 0.60 41 +03042400.SHV 1.00 13.1 1456 -12.9 7.2 26.1 36.8 15.2 1.1 0.60 278 +03042800.MFL 1.00 16.7 2735 -10.7 6.4 11.7 25.5 12.3 0.9 0.60 83 +03043000.OAX 1.00 8.9 1064 -16.3 7.4 29.1 32.0 18.4 0.8 1.90 353 +03050100.FFC 1.00 11.1 1429 -13.5 6.6 6.9 6.4 1.0 0.2 1.60 5 +03050212.BNA 1.00 10.3 1865 -15.3 7.0 13.0 18.0 12.1 0.6 2.20 55 +03050312.BMX 1.00 9.7 1402 -16.1 7.5 13.8 38.5 7.9 0.5 1.80 72 +03051100.MHX 1.00 16.0 3585 -9.3 7.3 16.2 15.0 11.9 1.5 0.90 104 +03051200.JAX 1.00 15.9 3060 -7.9 6.9 13.2 20.0 10.1 0.8 -999.00 48 +03051800.TBW 1.00 16.1 3839 -8.7 6.5 5.7 11.9 6.2 0.5 1.10 3 +03051800.XMR 1.00 16.0 3602 -9.5 7.0 8.6 10.7 5.6 0.8 0.90 -7 +03052600.TFX 1.00 8.3 994 -10.9 8.0 16.0 15.9 9.1 0.3 1.30 59 +03052700.ABQ 1.00 7.1 713 -9.9 8.3 14.7 20.6 3.1 0.1 0.60 12 +03060200.DDC 1.00 11.1 1960 -9.5 7.9 17.5 20.6 11.9 0.7 2.00 222 +03060900.RNK 1.00 15.0 2965 -9.1 6.2 24.1 29.2 18.9 1.4 1.20 134 +03090900.TUS 1.00 11.5 2363 -8.3 7.3 7.9 11.8 2.8 0.3 1.10 12 +03111712.TOP 1.00 11.5 1641 -17.3 7.3 25.6 32.6 17.8 1.4 2.70 329 +04031500.DRT 1.00 11.6 1498 -15.5 7.0 16.8 24.5 6.6 0.8 1.40 123 +04032100.FWD 1.00 13.1 2648 -15.5 8.2 12.9 20.8 4.9 1.4 2.80 29 +04051000.FFC 1.00 11.4 2006 -11.1 5.4 4.7 11.0 4.0 0.2 1.90 -15 +04051200.AMA 1.00 9.7 1922 -11.5 8.0 15.0 8.4 19.1 0.6 1.60 282 +04080900.TOP 1.00 14.3 2676 -11.5 7.4 11.9 15.6 5.9 0.9 0.90 82 +04081700.TUS 1.00 13.1 2027 -8.9 7.1 13.2 13.3 8.8 0.5 1.00 96 +04082800.OUN 1.00 16.0 4225 -7.1 7.4 3.8 3.0 7.0 0.3 1.50 101 +05030400.SGF 1.00 5.9 823 -25.9 7.1 24.2 27.9 13.0 0.5 0.70 151 +05050412.TBW 1.00 14.1 1839 -13.5 7.3 15.8 33.3 10.0 1.0 1.00 187 +05050600.EPZ 1.00 8.0 1672 -12.7 8.6 27.7 28.8 15.0 1.0 1.20 178 +05081100.GGW 1.00 10.1 805 -13.7 7.4 30.5 38.9 15.6 0.6 2.10 170 +05081700.GGW 1.00 9.2 1042 -11.1 7.8 27.6 40.5 16.7 0.5 1.70 265 +05081800.LMN 1.00 17.7 3655 -4.1 6.0 22.3 17.3 13.3 0.8 0.60 221 +05082700.EPZ 1.00 11.1 2162 -6.5 8.5 4.9 6.7 4.0 0.2 1.00 21 +05092900.FWD 1.00 12.7 1553 -5.9 6.4 10.1 13.0 8.5 0.2 0.60 39 +06010300.ILN 1.00 9.0 791 -19.3 7.5 16.0 23.8 7.8 0.4 1.40 140 +06011200.GSO 1.00 9.5 1374 -19.1 7.5 15.6 28.9 21.9 0.7 2.50 253 +06041400.BUF 1.00 6.2 383 -23.3 7.6 26.8 55.7 21.6 0.3 1.40 237 +06041400.PIT 1.00 6.2 390 -20.1 7.0 18.6 40.0 18.8 0.1 0.90 220 +06051600.DTX 1.00 8.7 519 -20.5 6.1 5.0 17.9 7.2 0.1 0.70 -7 +06051800.IAD 1.00 8.4 1009 -20.5 6.7 16.0 20.3 11.9 0.4 1.30 66 +06052300.RAP 1.00 9.6 2536 -10.3 8.5 9.7 18.1 5.6 0.5 1.30 43 +06052600.AMA 1.00 7.9 1911 -11.3 9.9 16.9 12.6 11.8 0.7 0.70 262 +06052600.GSO 1.00 11.9 1743 -10.1 6.1 14.4 11.4 8.4 0.4 0.80 82 +06052600.JAX 1.00 13.3 1856 -10.7 6.6 15.3 20.8 10.5 0.6 0.60 70 +06052700.BIS 1.00 9.4 2274 -11.9 8.5 22.0 21.3 20.2 1.1 1.30 198 +06052700.JAX 1.00 15.0 2879 -9.9 6.1 13.7 13.1 11.0 0.9 0.80 117 +06053100.GGW 1.00 5.6 570 -21.1 7.4 5.0 8.1 2.8 0.1 0.90 30 +06060200.BNA 1.00 14.2 2055 -7.9 5.4 5.5 12.6 8.6 0.2 0.60 -2 +06060300.GRB 1.00 8.8 1314 -18.9 7.1 16.3 19.5 12.0 0.6 1.60 77 +06060400.ILN 1.00 8.3 1032 -18.1 6.5 8.5 11.1 6.7 0.2 1.20 35 +06060500.FFC 1.00 11.0 1475 -12.5 5.9 11.7 22.4 5.7 0.3 2.10 18 +06060700.SHV 1.00 14.6 2252 -10.3 7.4 25.4 14.5 15.1 1.5 0.60 164 +06060712.RAP 1.00 7.9 1110 -10.3 8.7 12.3 19.2 9.9 0.2 1.30 131 +06060800.LBF 1.00 10.8 2368 -6.9 7.7 20.5 22.3 11.2 0.7 1.70 244 +06061200.BNA 1.00 13.6 1539 -6.7 5.6 15.2 7.0 9.1 0.3 0.60 107 +06061900.GRB 1.00 14.0 2397 -11.7 6.2 15.9 20.9 12.4 0.9 1.90 74 +06062100.BNA 1.00 14.1 2387 -9.3 6.8 6.7 3.3 6.8 0.3 0.60 43 +06062200.JAN 1.00 15.3 2595 -8.7 7.0 3.0 2.5 4.6 0.2 0.60 -15 +06062300.BMX 1.00 12.5 1595 -7.1 6.2 5.1 4.3 1.9 0.1 0.60 -10 +06062300.BNA 1.00 15.6 3023 -10.1 7.3 10.6 3.6 8.0 0.9 0.60 71 +06062300.DDC 1.00 11.0 987 -11.1 7.2 17.7 17.5 9.3 0.4 1.30 78 +06062700.FFC 1.00 15.4 2376 -6.9 5.6 12.6 21.6 9.3 0.4 0.60 23 +06062800.GRB 1.00 9.4 1049 -15.5 6.1 13.8 20.6 8.1 0.3 1.60 34 +06062900.PIT 1.00 10.9 925 -13.7 6.4 21.3 35.7 7.1 0.4 1.60 17 +06062900.TOP 1.00 8.5 959 -12.3 7.1 12.7 14.7 8.1 0.2 1.00 120 +06070200.FFC 1.00 11.2 1552 -9.7 6.3 6.5 9.5 1.2 0.2 0.90 4 +06070200.FWD 1.00 12.8 1806 -9.9 7.2 6.1 11.2 1.6 0.2 0.60 20 +06070200.LBF 1.00 12.2 2554 -8.5 8.0 20.5 17.9 17.1 1.0 2.00 223 +06070300.IAD 1.00 14.8 3195 -9.3 5.9 10.7 13.6 10.7 0.7 0.90 60 +06070500.GSO 1.00 15.2 2335 -7.3 6.1 9.6 6.1 7.6 0.4 0.60 96 +06071300.BIS 1.00 9.0 966 -8.7 8.1 7.7 14.5 5.9 0.1 0.70 108 +06071800.DNR 1.00 9.1 1197 -6.9 8.0 7.7 6.2 3.5 0.1 1.10 83 +06072000.RNK 1.00 14.2 2160 -8.5 5.9 9.1 3.0 11.1 0.3 1.00 113 +06072200.RNK 1.00 16.5 3249 -6.1 6.0 7.0 9.1 7.2 0.3 0.60 100 +06072300.ABQ 1.00 9.6 1267 -4.9 7.8 5.7 11.2 2.8 0.1 1.00 -9 +06072700.RAP 1.00 8.7 694 -8.7 8.3 16.3 21.8 13.4 0.2 0.90 157 +06072800.ABR 1.00 12.7 1956 -6.1 6.4 23.5 29.4 16.1 0.5 1.40 149 +06072800.OAX 1.00 15.6 2714 -5.3 6.0 16.8 22.8 9.3 0.5 0.60 92 +06080100.PIT 1.00 18.6 3456 -4.5 5.8 12.7 7.9 10.1 0.5 0.60 104 +06081000.TUS 1.00 13.4 1913 -6.3 7.3 3.1 6.2 1.2 0.1 0.60 12 +06090800.ABR 1.00 9.5 1406 -14.3 7.5 9.4 9.1 10.6 0.3 1.70 163 +06090800.LBF 1.00 7.9 880 -14.1 7.5 11.1 19.9 6.9 0.2 0.90 20 +06091200.ILX 1.00 13.6 1642 -11.1 6.4 12.9 23.9 8.6 0.5 0.60 56 +06092900.FFC 1.00 10.8 705 -11.1 4.6 19.1 33.4 18.9 0.2 0.60 85 +89060500.1M1 1.00 15.8 2493 -8.2 6.0 14.7 13.0 10.3 0.7 0.60 19 +89061200.JAN 1.00 17.7 3616 -9.1 6.5 15.3 5.8 7.5 1.4 0.60 84 +89061400.JAN 1.00 16.0 3274 -11.5 7.1 11.3 8.2 9.4 1.2 1.00 57 +89061600.TBW 1.00 16.4 3463 -7.6 5.7 10.2 6.4 5.9 0.6 0.60 36 +89061900.CKL 1.00 16.7 3363 -9.6 6.4 14.5 12.2 12.2 1.2 0.60 103 +89062800.HTS 1.00 17.6 3659 -8.0 5.8 15.4 21.4 7.4 1.1 0.60 62 +89062900.AMA 1.00 12.6 2035 -8.2 8.6 14.8 26.0 13.0 0.6 2.30 165 +89070600.OUN 1.00 12.9 1373 -6.0 6.2 6.0 12.2 11.3 0.1 0.60 64 +89071200.TOP 1.00 16.6 3182 -8.1 7.6 12.6 8.2 13.2 1.0 1.60 157 +89072400.VCT 1.00 14.8 2953 -9.6 6.2 7.7 13.3 9.5 0.5 0.60 120 +89072800.DAY 1.00 16.4 2617 -7.8 5.7 13.5 11.3 7.5 0.6 0.60 83 +89073100.GTF 1.00 9.5 1858 -9.3 8.9 10.8 21.7 10.3 0.4 1.20 106 +89080600.OUN 1.00 16.3 3439 -5.4 6.8 10.2 12.1 9.7 0.5 0.80 101 +89082000.UMN 1.00 17.3 3524 -6.0 6.2 20.6 14.9 13.6 1.1 0.80 350 +89082700.DDC 1.00 16.9 4549 -7.4 7.6 11.3 24.3 1.4 1.2 2.10 11 +90050400.CKL 1.00 14.0 1534 -10.6 6.4 20.1 25.8 10.8 0.7 0.60 141 +90061000.GSO 1.00 15.3 2409 -8.8 6.1 9.7 14.5 11.1 0.5 0.60 145 +90062300.HTS 1.00 14.5 1346 -8.5 5.8 27.1 36.9 19.1 0.6 0.60 231 +90062400.OUN 1.00 11.9 1571 -10.8 8.2 26.8 24.9 14.1 1.1 1.90 186 +90070900.GSO 1.00 17.6 4051 -5.3 5.6 10.2 10.5 6.1 0.5 0.80 73 +90071100.GSO 1.00 15.2 3487 -6.6 5.9 3.5 9.1 7.5 0.2 0.60 38 +90071800.AMA 1.00 11.4 1482 -6.5 6.7 14.8 26.1 8.4 0.3 1.10 98 +90072000.DEN 1.00 11.7 1698 -7.2 7.4 16.1 20.8 14.0 0.4 2.10 182 +90072200.TBW 1.00 17.8 3409 -5.7 6.0 4.6 7.8 3.6 0.2 0.60 35 +90072500.DDC 1.00 11.9 1703 -8.0 6.8 14.0 17.5 10.1 0.4 1.40 208 +90072600.GGW 1.00 10.2 1514 -10.6 7.0 15.6 16.6 7.9 0.4 1.80 55 +90080200.MAF 1.00 14.4 1702 -6.2 6.1 9.7 12.2 2.8 0.2 0.60 27 +90081900.AMA 1.00 13.6 2596 -7.9 7.0 5.1 5.1 3.8 0.2 0.80 45 +90082100.OUN 1.00 19.2 5290 -6.7 6.9 8.3 3.4 6.2 0.9 0.60 38 +90082300.HTS 1.00 15.2 707 -7.7 6.2 7.0 8.5 3.6 0.1 0.60 -4 +90083000.GSO 1.00 16.4 3552 -9.3 6.0 20.1 18.2 14.1 1.6 0.60 37 +90092900.MAF 1.00 12.2 1606 -8.0 6.0 15.0 28.7 11.3 0.3 0.80 35 +90100800.GGG 1.00 16.8 2689 -6.0 5.8 14.2 17.2 8.9 0.5 0.60 70 +90101800.GGG 1.00 14.2 1619 -10.6 6.4 20.0 27.9 12.5 0.7 0.60 114 +91060500.AHN 1.00 15.3 3036 -8.1 6.7 5.7 13.0 11.6 0.3 0.60 72 +91060500.CKL 1.00 16.9 3345 -7.5 6.3 5.0 4.8 9.2 0.3 0.60 52 +93092500.OUN 1.00 16.1 2895 -6.7 6.2 24.5 27.2 16.0 1.1 0.60 264 +97081700.DVN 1.00 20.8 5790 -8.3 7.5 14.3 11.8 12.3 2.6 1.00 137 +97081700.PIT 1.00 18.3 3951 -7.9 6.9 12.7 23.0 15.4 1.2 0.60 224 +97081800.FFC 1.00 18.4 3564 -6.1 6.1 2.5 2.0 4.4 0.1 0.60 37 +98052200.BNA 1.00 15.2 3709 -10.7 6.4 9.2 7.9 10.4 0.8 0.90 83 +99061200.ILN 1.00 14.7 3299 -8.3 5.8 4.6 4.0 8.2 0.3 1.10 32 +00021800.JAN 0.88 12.5 1866 -14.9 6.7 27.5 38.9 16.2 1.5 0.70 270 +00061100.DDC 0.88 14.3 3471 -7.9 6.9 11.0 20.2 14.0 0.7 2.40 53 +00061800.RAP 0.88 7.4 1396 -18.9 7.1 14.0 34.9 7.4 0.5 1.40 270 +00070600.DDC 0.88 12.3 2581 -7.5 8.5 9.4 10.0 10.7 0.5 1.80 97 +00072800.BMX 0.88 13.2 2147 -9.5 6.2 8.0 11.4 6.0 0.3 0.70 35 +00080200.DVN 0.88 16.6 4183 -9.7 6.6 11.2 16.4 13.3 1.2 1.10 169 +00080300.PIT 0.88 14.9 2780 -9.7 6.2 15.5 29.2 9.1 0.9 0.60 81 +00080400.BNA 0.88 16.3 3453 -9.9 6.8 10.9 16.0 9.1 1.0 0.60 83 +00080500.LZK 0.88 16.1 3872 -6.3 5.6 9.4 14.6 7.3 0.5 0.80 6 +00080700.DTX 0.88 19.4 4231 -7.3 6.0 16.6 31.6 10.6 1.4 0.60 78 +00090300.OAX 0.88 12.6 3099 -10.1 8.7 16.9 21.6 9.5 1.4 1.40 126 +01062200.DVN 0.88 10.3 1285 -18.1 6.5 10.8 11.8 8.7 0.4 1.00 66 +01062600.CRP 0.88 16.6 3837 -8.5 6.4 4.0 8.9 7.1 0.3 0.60 53 +02031000.GSO 0.88 11.0 819 -15.3 5.8 24.6 29.7 19.8 0.5 1.20 236 +02052900.OAX 0.88 13.0 2754 -13.3 7.1 7.5 7.0 10.0 0.6 2.60 127 +03031400.TLH 0.88 11.6 2141 -13.1 6.3 10.5 9.0 5.7 0.5 1.10 39 +03042912.TOP 0.88 10.6 1617 -16.9 7.8 16.7 22.5 11.0 0.9 2.80 238 +03050400.BIS 0.88 8.2 1467 -18.7 7.4 15.4 16.1 8.8 0.6 1.60 86 +03060300.JAX 0.88 16.1 3513 -10.1 7.6 11.1 10.3 11.4 1.1 0.60 111 +03060600.ABR 0.88 8.1 888 -19.9 6.8 17.3 14.2 9.2 0.4 1.50 47 +03061600.TOP 0.88 12.4 1944 -11.9 6.4 0.8 4.2 5.8 0.0 1.00 3 +03062000.GGW 0.88 9.2 1032 -9.7 8.1 9.8 17.1 8.3 0.2 1.30 76 +03101712.JAN 0.88 12.8 1891 -11.5 6.3 25.4 33.9 16.9 1.1 1.20 246 +03102600.CRP 0.88 17.9 3408 -9.9 6.3 15.2 34.5 9.8 1.4 0.60 17 +03111800.OAX 0.88 10.0 957 -18.3 6.8 41.2 58.6 20.0 1.2 2.50 88 +04040900.AMA 0.88 8.2 1515 -16.7 7.0 17.9 23.0 14.7 0.6 1.60 139 +04081800.PHX 0.88 10.5 1709 -9.1 7.3 4.8 9.2 6.0 0.1 0.80 15 +04082700.ABR 0.88 10.2 1433 -15.1 6.7 14.4 40.5 5.3 0.5 1.50 28 +04091900.LCH 0.88 15.9 2433 -6.9 5.8 4.4 15.6 7.7 0.2 0.60 6 +04092000.OAK 0.88 7.3 242 -17.9 5.5 27.4 30.4 6.5 0.1 0.70 56 +04100400.GSO 0.88 13.2 1385 -14.9 6.5 15.2 26.8 10.4 0.6 1.40 101 +05081300.MAF 0.88 12.8 1568 -6.3 6.5 11.8 13.7 6.9 0.2 0.60 82 +06013012.JAN 0.88 10.0 1058 -20.9 7.1 38.7 46.0 18.9 1.5 2.60 71 +06032100.OUN 0.88 5.4 579 -25.5 7.4 16.6 26.7 5.7 0.2 0.90 53 +06040700.FWD 0.88 12.5 2831 -12.5 6.2 33.5 41.5 20.1 2.2 2.80 40 +06041200.TOP 0.88 8.4 726 -14.3 7.0 33.2 37.2 23.1 0.5 2.00 232 +06043000.OTX 0.88 6.4 499 -17.9 7.3 17.3 23.3 8.3 0.2 0.80 75 +89061200.AMA 0.88 13.2 3301 -11.7 8.7 12.9 25.2 9.2 1.4 2.30 167 +89062600.UMN 0.88 16.2 3812 -6.9 6.3 0.7 10.8 2.0 0.0 0.60 -14 +89062700.DEN 0.88 8.6 931 -11.1 7.6 14.3 14.3 10.8 0.2 1.80 122 +89072700.AHN 0.88 17.5 3996 -6.9 6.5 3.5 6.8 7.1 0.3 0.60 66 +89082500.AHN 0.88 16.9 3533 -5.1 6.1 3.3 8.1 2.7 0.1 0.60 5 +89082600.AHN 0.88 17.1 3463 -5.6 5.8 11.3 8.6 4.0 0.5 0.60 41 +89082900.GGG 0.88 18.5 3979 -4.6 6.0 4.1 2.2 1.6 0.2 0.60 3 +90071000.PIT 0.88 16.6 3362 -6.7 6.3 19.7 14.7 14.3 1.1 0.60 124 +90073000.AMA 0.88 12.2 943 -7.5 6.3 12.7 18.1 8.4 0.2 0.60 14 +90091900.OUN 0.88 18.0 3878 -6.7 6.2 11.9 20.5 12.1 0.8 0.60 119 +97010900.SIL 0.88 13.1 909 -13.6 6.7 39.7 37.0 33.7 1.0 -999.00 511 +98062500.DDC 0.88 11.9 2667 -7.3 8.7 25.1 34.7 12.4 1.2 1.40 224 +90052100.SIL 0.85 16.6 3505 -10.6 6.7 8.4 13.0 10.9 0.8 0.60 70 +03052100.TBW 0.80 15.8 2941 -9.5 6.2 2.7 5.4 7.1 0.2 0.60 27 +91051700.JAN 0.80 15.5 2890 -8.9 6.5 1.1 7.8 0.6 0.1 0.60 1 +00022400.LZK 0.75 10.6 1590 -18.1 7.0 25.0 34.2 17.2 1.3 2.50 270 +00050300.JAN 0.75 12.8 1438 -12.9 5.9 12.8 7.2 13.9 0.4 0.60 120 +00052200.LZK 0.75 12.1 2062 -13.5 6.2 22.6 32.5 17.7 1.1 1.40 162 +00061800.JAX 0.75 15.7 2677 -7.9 5.7 6.0 10.5 7.9 0.3 0.60 61 +00061900.WAL 0.75 17.4 2940 -7.9 6.3 11.3 9.5 11.6 0.7 0.60 134 +00062500.JAX 0.75 15.6 2442 -10.1 6.2 9.4 21.8 9.3 0.5 0.60 104 +00062900.GRB 0.75 8.9 860 -18.9 6.4 17.0 24.4 14.1 0.4 1.10 108 +00071300.DDC 0.75 15.1 3064 -3.7 6.1 6.2 10.6 9.2 0.2 0.60 0 +00071300.FWD 0.75 14.9 3103 -5.7 6.5 10.6 11.4 13.9 0.4 0.80 120 +00071800.JAN 0.75 15.8 3305 -5.5 6.0 13.9 14.4 13.1 0.6 0.60 -56 +00071900.JAN 0.75 17.3 3841 -6.1 6.1 7.5 6.9 5.7 0.4 0.60 32 +00072100.TBW 0.75 18.9 4845 -6.9 6.4 7.0 10.7 7.4 0.7 0.90 56 +00072300.GSO 0.75 16.5 2443 -9.1 5.7 20.6 22.2 6.6 1.0 0.60 88 +00072400.GGW 0.75 10.9 3240 -11.1 8.5 26.1 22.5 12.5 2.1 1.40 54 +00080400.LCH 0.75 15.7 3045 -7.5 5.6 2.8 12.8 4.7 0.1 0.60 28 +00090200.SHV 0.75 12.1 1896 -7.5 7.0 3.2 2.0 5.2 0.1 0.70 15 +01062400.BIS 0.75 13.7 4781 -10.9 9.0 18.7 27.1 15.0 2.8 1.70 249 +02030812.ILX 0.75 7.2 533 -19.7 6.9 31.5 49.1 16.1 0.4 1.30 599 +02051500.PIT 0.75 5.9 521 -27.9 7.9 14.7 14.3 17.3 0.2 1.10 74 +02060400.JAX 0.75 15.3 3128 -8.1 6.5 3.7 6.5 0.3 0.2 0.60 15 +02062500.LBF 0.75 11.7 3690 -10.3 9.2 7.2 9.1 5.0 0.7 1.30 45 +02072000.LZK 0.75 21.6 6551 -8.5 6.9 10.2 6.8 8.7 2.0 0.90 145 +03031500.OTX 0.75 6.3 801 -26.3 7.5 24.9 28.7 18.3 0.6 1.50 240 +03032000.SGF 0.75 7.6 909 -22.1 6.7 10.5 8.6 18.2 0.3 1.40 205 +03040922.XMR 0.75 15.5 2570 -10.3 5.6 31.0 38.3 12.7 1.7 0.60 34 +03042300.DNR 0.75 6.7 1183 -16.1 7.9 19.1 35.2 12.2 0.5 1.20 265 +03050100.DNR 0.75 6.7 1011 -20.1 8.0 33.5 27.3 12.5 0.9 1.20 108 +03050200.BMX 0.75 12.4 2216 -12.9 6.6 6.7 7.6 4.6 0.4 0.70 9 +03052400.PIT 0.75 10.0 707 -16.7 6.5 26.5 23.6 12.1 0.5 1.00 65 +03060700.MFL 0.75 18.2 3041 -6.7 5.6 2.8 9.3 0.9 0.1 0.60 5 +03061000.JAX 0.75 16.0 2482 -8.7 6.7 11.3 22.4 10.8 0.6 0.60 13 +03061222.XMR 0.75 17.1 2144 -7.9 6.1 4.6 6.1 5.2 0.2 0.60 65 +03061500.SHV 0.75 16.2 2511 -9.9 6.3 21.1 32.8 13.5 1.3 0.60 91 +03061900.TFX 0.75 8.6 1802 -9.3 8.2 10.8 13.4 13.1 0.3 1.00 178 +03062000.BOI 0.75 7.0 491 -12.5 8.2 23.3 18.1 17.9 0.2 1.00 141 +03062100.RAP 0.75 11.9 2338 -10.3 7.2 8.1 14.4 15.0 0.4 2.40 137 +03062200.IAD 0.75 10.5 1215 -17.1 5.8 15.1 9.7 9.3 0.5 1.10 79 +03090900.GJT 0.75 6.8 996 -12.3 9.1 17.7 28.1 8.5 0.3 0.70 199 +03090900.MAF 0.75 12.1 2389 -7.9 7.0 18.1 17.8 12.1 0.7 2.20 222 +03091000.JAN 0.75 15.0 1929 -9.5 6.0 10.8 22.1 8.1 0.4 0.60 83 +03111300.BUF 0.75 8.1 418 -20.5 6.7 46.9 65.5 18.0 0.5 1.50 335 +04030500.LZK 0.75 12.4 745 -10.1 5.8 39.6 53.2 27.8 0.5 0.60 468 +04051300.OAX 0.75 10.5 1193 -13.7 6.9 24.2 28.7 16.7 0.7 2.20 133 +04051700.FFC 0.75 12.2 2077 -12.1 6.4 2.0 11.6 2.9 0.1 0.80 0 +04052300.BUF 0.75 13.8 1807 -10.6 5.8 22.4 24.0 18.8 0.8 0.60 239 +04081700.PHX 0.75 12.6 2729 -7.9 7.1 8.0 6.2 6.2 0.4 1.30 60 +04081900.DDC 0.75 11.7 2146 -6.3 6.2 4.3 11.0 10.2 0.1 0.70 15 +04081900.OTX 0.75 9.8 1929 -11.3 7.4 9.9 15.1 6.2 0.4 1.50 43 +04082800.JAN 0.75 18.0 3714 -7.5 6.4 2.6 3.6 1.0 0.2 0.60 12 +04082800.PIT 0.75 18.3 3258 -6.1 5.6 7.8 6.8 10.4 0.4 0.60 106 +04092800.DNR 0.75 7.9 698 -13.9 7.1 17.7 21.0 12.4 0.2 1.00 112 +04100400.CHS 0.75 15.3 1850 -10.7 6.0 22.1 32.7 13.4 1.0 0.60 81 +05022200.BMX 0.75 11.8 1749 -15.9 6.8 26.1 36.8 19.0 1.4 1.20 174 +05030700.OAX 0.75 5.7 324 -21.9 7.4 14.9 9.6 13.6 0.1 0.90 156 +05042612.JAN 0.75 9.2 993 -17.3 6.9 27.2 35.7 15.7 0.7 2.20 336 +05050500.OTX 0.75 7.7 1601 -19.1 7.3 15.7 22.0 8.5 0.6 1.40 35 +05082100.OAX 0.75 15.5 2617 -6.9 6.0 14.8 30.9 15.0 0.6 0.60 159 +05082400.SHV 0.75 16.6 3397 -5.3 6.1 9.2 4.4 11.1 0.4 0.60 72 +06011400.JAX 0.75 12.1 1223 -15.1 6.5 19.6 26.7 19.7 0.7 0.70 233 +89052800.CKL 0.75 15.4 2098 -8.1 6.2 11.8 13.5 8.0 0.5 0.60 43 +89060400.PAH 0.75 16.4 3338 -9.7 5.8 14.2 14.7 15.5 1.0 0.60 90 +89060700.AHN 0.75 14.2 2402 -13.0 6.6 12.3 18.6 2.7 0.9 0.60 37 +89061300.CKL 0.75 16.1 2677 -8.6 6.1 15.9 7.3 11.5 0.9 0.60 102 +89061500.AHN 0.75 14.7 1717 -7.5 5.5 10.0 9.8 11.8 0.2 0.60 91 +89061600.ACY 0.75 16.5 2243 -7.6 5.9 18.8 19.1 19.5 0.7 0.60 217 +89062200.CKL 0.75 16.1 2986 -10.1 6.7 10.0 8.5 6.8 0.8 0.60 76 +89062300.GRB 0.75 14.6 1729 -8.4 6.2 10.7 10.8 10.0 0.3 -999.00 139 +89062300.OUN 0.75 16.0 3217 -7.1 5.9 12.8 14.9 6.9 0.7 0.60 113 +89062700.PIT 0.75 16.0 2924 -9.1 6.8 8.1 4.9 7.9 0.6 0.60 69 +89070800.AHN 0.75 16.8 2876 -6.5 5.8 4.1 4.8 4.3 0.2 0.60 33 +89071100.DDC 0.75 11.9 1858 -8.1 7.6 8.5 14.0 12.4 0.3 2.10 249 +89072900.SIL 0.75 18.8 4031 -6.8 6.3 4.1 4.4 3.9 0.3 0.60 37 +89073000.PAH 0.75 17.9 3630 -7.0 6.4 11.4 9.0 7.4 0.8 0.60 58 +89073100.TOP 0.75 14.5 2685 -6.4 6.7 9.8 13.0 12.0 0.4 0.60 117 +89081200.GRB 0.75 11.3 1782 -14.8 6.7 4.1 9.5 3.9 0.2 0.60 39 +89081900.HON 0.75 13.1 984 -7.6 7.1 14.0 17.9 12.1 0.2 -999.00 244 +89102800.OUN 0.75 12.0 1679 -12.7 6.8 10.1 27.1 8.3 0.4 1.00 115 +90033100.TBW 0.75 14.8 2515 -10.0 5.6 14.0 15.0 12.0 0.7 0.60 135 +90042100.OUN 0.75 12.4 1915 -14.1 6.5 25.3 31.9 13.1 1.3 1.70 138 +90042200.SEP 0.75 13.3 2775 -11.7 6.5 10.2 20.8 8.1 0.7 1.00 98 +90042400.1M1 0.75 12.8 2374 -12.6 6.7 14.0 8.3 6.6 0.9 0.90 56 +90052500.MAF 0.75 13.1 3262 -7.2 7.9 22.0 30.6 12.4 1.3 1.80 97 +90060400.PIT 0.75 9.5 390 -12.5 5.6 26.0 37.7 14.6 0.2 0.60 57 +90060700.TBW 0.75 17.0 3262 -8.6 6.0 1.6 7.3 4.1 0.1 0.60 8 +90061000.AHN 0.75 14.8 2847 -8.2 5.9 8.6 9.9 5.6 0.4 0.60 50 +90070300.SLI 0.75 18.4 3250 -5.7 5.8 11.8 14.5 7.5 0.6 0.60 79 +90070800.TBW 0.75 20.0 5452 -8.1 6.5 7.8 15.4 5.9 1.1 0.60 11 +90072200.CHS 0.75 18.4 3537 -7.5 6.2 8.3 10.2 7.1 0.6 0.60 88 +90072200.PAH 0.75 16.9 2541 -5.6 5.7 13.3 15.3 11.4 0.4 0.60 80 +90072700.DDC 0.75 14.7 3550 -7.0 7.6 7.6 7.2 6.0 0.5 2.20 84 +90072800.TOP 0.75 16.5 3231 -7.8 6.7 8.8 11.3 9.8 0.6 0.90 281 +90073100.JAN 0.75 14.6 2834 -7.3 6.1 5.1 4.3 0.7 0.2 0.60 -3 +90080400.STC 0.75 13.1 2284 -12.5 7.3 5.3 20.0 8.7 0.3 1.40 45 +90081400.ALB 0.75 14.6 1251 -7.6 5.7 31.1 21.6 20.7 0.6 0.60 261 +90081400.MAF 0.75 13.7 1598 -7.1 6.2 4.4 16.6 2.3 0.1 0.60 35 +90081700.CHS 0.75 19.5 3949 -6.9 5.7 14.2 20.9 11.2 1.0 0.60 101 +90081900.DEN 0.75 11.7 1982 -7.8 7.6 10.2 22.1 6.4 0.3 1.70 25 +90082000.PIA 0.75 19.3 4350 -6.5 6.2 12.0 9.9 9.4 1.0 0.60 67 +90082200.BNA 0.75 15.5 2619 -6.1 6.1 9.1 12.7 8.7 0.3 0.60 -10 +90082300.GGG 0.75 16.2 3016 -5.9 6.0 1.3 5.5 5.3 0.1 0.60 35 +90082500.OUN 0.75 15.7 2800 -6.4 6.6 5.0 11.9 5.3 0.2 0.60 63 +90082500.OVN 0.75 17.2 3418 -7.1 6.4 12.0 21.9 10.0 0.8 0.70 181 +90083000.ACY 0.75 15.2 2413 -9.3 5.8 13.9 22.7 9.0 0.7 0.60 62 +90101700.MAF 0.75 12.3 2870 -12.5 8.0 14.9 16.2 7.7 1.3 2.30 78 +91051700.TBW 0.75 16.1 3306 -7.5 5.4 4.0 0.9 3.8 0.2 0.60 -5 +91060600.CKL 0.75 16.3 2864 -8.6 6.4 8.9 11.4 6.2 0.5 0.60 21 +94062400.GGG 0.75 18.0 3754 -5.5 6.3 11.0 14.2 8.2 0.6 0.60 98 +94062400.HTS 0.75 16.5 2798 -5.5 5.3 8.5 15.0 4.7 0.3 0.60 39 +94070200.LCH 0.75 17.0 2754 -6.8 6.4 10.7 11.0 12.4 0.5 0.60 84 +97061700.BMX 0.75 18.2 3829 -6.9 5.9 12.4 13.0 6.9 0.8 0.60 48 +97062400.MAF 0.75 14.1 3310 -9.9 8.9 11.5 8.6 13.0 1.1 1.60 108 +97081700.TBW 0.75 17.4 3152 -7.3 6.2 2.6 4.4 1.8 0.2 0.60 8 +97081800.SLC 0.75 8.3 931 -10.3 8.5 16.1 22.9 13.6 0.3 1.40 203 +97082200.ILN 0.75 9.6 520 -16.3 5.8 17.5 30.9 3.9 0.2 0.70 50 +98062500.JAN 0.75 17.3 3507 -6.1 6.0 2.3 8.6 7.1 0.1 0.70 -1 +98081000.SHV 0.75 16.8 3464 -6.5 5.9 4.8 1.1 4.2 0.3 0.60 42 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/rlt.script b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/rlt.script old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sfcmap.out b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sfcmap.out old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/siglist.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/siglist.txt old mode 100644 new mode 100755 index 11e50be13e..3995f55c39 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/siglist.txt +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/siglist.txt @@ -1,641 +1,641 @@ -FILENAME CAT MLMIXR ML CAPE ML CIN MLCL(MAGL) 0-1SRH 0-6KT STPC 500 T (C) 500DIR 7-5 LR 0-3(KT) 0-9(KT) 0-3 KM SRH (M2/S2) -00042320.TXK 2 12.9 1702 -1 657 134 61.7 2.3 -14.0 250 6.5 32.8 76.6 166 -00042001.PPF 2 13.5 2614 -50 1216 227 59.9 4.7 -12.9 234 7.5 39.7 73.5 244 -00032900.FTW 2 13.1 2058 -42 1069 83 49.7 1.3 -15.2 245 8.0 21.9 87.1 126 -00032304.SJT 2 11.9 1680 -119 896 119 61.1 1.1 -15.5 212 9.1 38.4 66.9 217 -00031622.ATT 2 9.4 1019 -7 1566 12 45.8 0.0 -17.5 249 8.0 34.4 53.7 159 -00021323.LRF 2 9.2 1256 -9 1066 82 46.9 0.8 -21.2 249 7.5 32.3 51.4 114 -00010323.MEI 2 13.4 1148 -15 769 241 57.2 2.6 -10.0 226 6.1 38.8 71.2 288 -00010319.GWO 2 12.8 1168 -9 770 202 66.4 2.4 -13.0 223 7.5 47.3 75.1 246 -03050500.UMN 2 13.8 2392 -10 773 341 66.3 8.2 -13.4 237 7.7 49.1 93.8 411 -03050500.JBR 2 15.7 2713 -22 862 266 57.8 6.9 -10.7 240 7.1 50.5 82.9 440 -03050421.TUL 2 16.1 3621 -15 843 147 63.1 5.3 -11.7 230 7.3 45.6 100.2 160 -03050421.MKC 2 13.7 2002 -67 478 479 68.4 8.5 -14.6 224 7.9 48.1 89.8 508 -03050420.P#F 2 15.7 3397 -1 660 166 58.5 5.5 -12.7 230 7.8 34.3 100.9 195 -03050321.P#T 2 12.7 3156 -2 1967 61 36.2 0.0 -9.8 247 7.5 27.2 67.1 207 -03042503.JAN 2 13.5 2568 -27 924 257 44.3 4.9 -15.4 255 7.7 41.1 76.9 279 -03041922.PNC 2 11.5 1157 -40 665 212 87.9 2.5 -17.9 223 7.3 46.5 111.5 242 -03041523.CDS 2 10.7 1020 -106 1534 326 74.0 1.0 -12.4 234 7.5 56.1 83.8 531 -03041522.LBB 2 8.8 883 -53 1986 116 77.2 0.0 -11.7 243 7.5 48.5 87.4 276 -03040702.CLN 2 13.1 488 -133 780 363 62.7 0.8 -11.4 244 7.1 33.6 74.1 411 -03040623.ESF 2 15.8 1847 -29 621 166 51.8 2.6 -11.0 246 6.8 26.8 50.8 161 -03032722.MIA 2 12.4 299 -31 1074 187 48.8 0.4 -10.5 261 5.8 20.5 87.0 197 -01061900.ROS 2 13.6 2218 -30 1076 140 67.7 2.9 -11.1 250 8.2 40.5 73.6 279 -01061401.LNK 2 17.2 4665 -15 1190 173 39.2 4.3 -10.5 215 8.3 32.6 50.7 217 -01061120.ILL 2 14.7 3400 -120 1255 270 56.1 3.4 -10.8 259 8.6 41.9 54.8 448 -01060222.LOZ 2 9.7 164 -10 898 117 51.4 0.2 -13.4 270 5.3 39.8 66.8 189 -01053000.AMA 2 13.0 2887 -76 1322 166 48.4 2.2 -10.1 246 8.4 38.6 50.6 216 -01052902.LHX 2 10.9 1698 -120 1285 185 52.1 1.0 -10.0 251 8.2 38.9 60.5 365 -01052118.OZW 2 12.5 494 -2 775 133 33.4 0.4 -10.3 188 5.6 34.2 36.9 174 -01052022.MIN 2 16.9 3331 -2 711 122 47.8 3.2 -11.0 244 7.3 36.0 67.7 201 -01051022.MIW 2 12.8 2912 -24 1091 65 36.4 1.0 -16.0 255 7.9 28.8 43.0 141 -01051001.FBL 2 9.5 2106 -90 1776 330 50.0 1.0 -16.6 265 8.2 42.9 50.3 516 -01050200.AUM 2 11.2 1434 -74 1331 179 38.8 0.9 -13.3 251 7.5 36.0 52.3 237 -01042202.GBD 2 12.6 2145 -40 777 165 61.8 3.5 -13.6 229 7.8 41.6 62.6 328 -01041423.P28 2 12.3 2168 -54 827 145 76.4 3.1 -16.2 256 8.3 45.0 89.5 235 -01041117.LWD 2 11.9 968 -3 632 282 77.0 2.7 -15.1 208 7.5 38.2 81.4 327 -01040918.BVI 2 10.7 1326 -11 1210 102 57.2 1.0 -15.4 266 7.7 32.1 32.1 174 -01022422.SGT 2 11.8 1020 -15 967 335 52.8 3.0 -14.3 213 7.7 53.6 64.9 450 -00110820.HEZ 2 15.9 2158 -6 881 236 47.1 4.0 -8.5 204 6.2 29.0 68.5 266 -00103122.HLC 2 11.0 1274 -14 954 110 47.4 1.1 -14.1 202 7.4 32.6 74.4 169 -00092022.DAY 2 13.9 1299 -7 971 215 63.4 2.8 -8.2 237 6.1 37.5 61.0 237 -00072601.OTG 2 14.5 2869 -49 1055 88 42.5 1.7 -12.6 290 7.2 33.4 41.3 161 -00072523.RWF 2 14.6 2791 -13 1068 96 39.4 1.6 -12.0 275 7.0 29.2 35.8 163 -00071122.BKX 2 14.7 1167 -47 944 134 42.8 1.1 -7.8 261 6.8 27.2 67.9 205 -00070601.SNY 2 13.6 2847 -18 1681 52 57.5 0.5 -7.4 248 8.1 19.0 74.4 122 -00052319.BWG 2 13.7 2114 -41 1128 167 38.6 2.0 -11.4 294 6.9 36.9 62.8 278 -00051722.LXN 2 14.0 3552 -16 910 111 27.5 1.8 -13.9 169 8.4 28.1 44.5 170 -00051200.ALO 2 16.5 4382 -13 1110 168 51.1 5.6 -7.9 254 6.7 33.2 51.6 199 -00050101.MWL 2 13.0 2207 -103 1176 253 47.3 2.4 -12.4 227 8.2 40.3 37.8 297 -00042323.SHV 2 13.4 2001 -19 928 216 58.9 4.2 -13.0 261 6.7 41.9 60.0 296 -04051923.GFK 2 11.2 967 -44 828 233 54.9 2.1 -16.6 243 7.2 39.5 86.1 229 -04051302.ICT 2 15.9 3157 -12 538 223 36.4 4.3 -9.4 232 6.4 23.8 51.5 245 -04051101.LIC 2 9.0 1549 -59 1592 233 43.4 1.0 -11.5 244 8.4 35.1 46.6 395 -04042022.PIA 2 12.4 1852 -11 728 320 36.4 3.6 -14.7 235 6.2 38.5 40.1 488 -04032718.DDC 2 10.0 1332 -8 893 190 41.4 1.7 -16.6 206 7.5 30.8 47.5 198 -04030418.ABI 2 10.7 626 -20 1108 319 46.5 1.4 -13.7 196 7.0 40.3 84.2 350 -03111718.HOU 2 16.4 1980 -1 445 137 48.2 2.2 -12.4 207 6.6 24.0 77.0 158 -03111223.MFD 2 8.3 64 -56 890 219 99.1 0.1 -15.7 261 5.7 55.1 123.1 275 -03111220.MIE 2 9.7 388 -1 757 123 91.0 0.5 -15.6 258 5.7 47.1 117.3 205 -03082201.JXN 2 17.2 3046 -36 1091 255 31.0 3.6 -5.9 285 6.6 34.4 33.2 304 -03072122.AVP 2 14.3 1810 -16 1228 162 51.1 1.9 -7.9 239 5.6 45.7 49.9 148 -03072104.CID 2 17.8 2344 -22 462 187 48.9 3.6 -7.0 291 7.0 34.2 63.6 237 -03072101.ALO 2 15.0 1859 -107 921 156 49.6 1.5 -8.0 297 7.0 28.2 58.2 248 -03062500.HON 2 17.0 3737 -23 1021 335 52.2 10.7 -7.4 227 7.5 43.4 61.6 550 -03062422.MHE 2 19.5 5088 -22 717 256 55.5 12.1 -8.0 228 7.9 40.9 58.4 422 -03062421.MHE 2 17.5 3584 -16 768 252 56.0 8.4 -7.9 220 7.8 38.8 57.2 348 -03062302.P#8 2 16.8 3414 -169 1003 367 38.7 1.7 -6.8 227 7.6 30.2 57.1 437 -03062223.P#8 2 17.7 4366 -39 972 253 38.8 7.2 -8.3 246 8.6 34.3 54.7 387 -03061001.P#9 2 12.6 2103 -97 1467 421 51.0 2.8 -11.2 266 7.9 45.5 63.9 651 -03053103.CMI 2 12.6 701 -119 899 482 64.7 1.8 -11.6 292 6.3 36.9 85.1 523 -03053101.ILX 2 12.4 784 -55 1108 474 76.0 3.2 -8.5 294 5.0 45.0 90.9 524 -03051100.UIN 2 14.7 2093 -27 738 302 63.1 6.3 -11.7 240 7.7 43.7 97.9 354 -03051004.C34 2 17.3 3493 -14 749 452 53.6 14.1 -8.8 228 7.7 32.1 77.0 511 -03050923.HBR 2 11.1 1389 -64 2135 137 56.8 0.0 -9.1 231 7.7 35.8 78.1 219 -03050900.C30 2 14.6 1749 -112 819 321 69.8 3.3 -8.9 227 6.8 57.0 72.2 306 -03050823.C34 2 17.9 3605 -25 669 342 65.2 12.3 -7.2 233 7.1 42.3 72.0 318 -03050822.W#N 2 17.4 3730 -13 635 141 70.0 5.3 -10.1 228 7.6 45.5 81.3 173 -03050821.LW1 2 19.1 5309 -6 876 145 63.2 7.7 -8.7 235 7.4 31.6 71.3 182 -03050807.ADM 2 17.1 3114 -53 730 439 47.4 10.6 -9.3 253 8.0 50.2 61.5 608 -03050805.SPS 2 16.0 2409 -148 836 382 44.4 2.4 -9.1 262 7.9 43.1 59.0 798 -03050703.PAH 2 15.8 2873 -49 602 390 36.8 6.9 -13.6 237 7.9 35.3 70.1 454 -03050701.CGI 2 15.1 2935 -47 799 431 61.0 12.6 -14.4 269 7.8 32.8 83.2 580 -03050504.MKL 2 15.6 2334 -16 833 615 59.6 14.3 -9.9 251 7.1 62.0 77.1 842 -03050501.LZK 2 15.9 2390 -18 719 361 67.0 8.6 -11.0 237 7.4 41.7 97.3 397 -99120301.GOK 2 10.2 1811 -12 858 234 47.2 3.3 -21.1 202 8.2 32.4 63.0 262 -99081601.JMS 2 13.6 1255 -165 1044 130 48.5 0.3 -9.9 240 8.1 30.2 89.4 174 -99070900.ONA 2 18.4 3379 -18 992 385 46.0 10.0 -5.8 275 6.5 42.9 49.4 571 -99070400.OSC 2 15.9 1760 -27 1078 101 26.7 0.7 -6.7 320 6.2 28.3 31.6 163 -99060620.HCO 2 14.6 3241 -5 904 65 29.6 1.0 -16.1 175 8.1 26.8 70.8 115 -99060500.IEN 2 12.1 2533 -37 1323 70 52.4 1.0 -11.4 201 8.2 32.9 60.1 191 -99060400.HLC 2 15.7 4348 -16 1101 154 38.3 3.9 -9.3 240 7.5 36.9 40.6 277 -99060200.TBN 2 14.9 2338 -19 838 136 37.3 2.0 -10.3 259 6.5 40.0 21.6 223 -99060123.MKO 2 17.3 3739 0 888 68 38.1 1.6 -10.6 279 7.9 32.2 23.0 135 -99060100.LIC 2 9.1 1877 -49 1439 56 56.8 0.6 -13.7 249 9.2 34.3 62.4 140 -99051621.OMA 2 16.1 4691 0 824 102 38.6 3.1 -14.5 223 8.8 33.7 41.5 176 -99051122.BMQ 2 15.0 3545 -92 1026 40 35.1 0.6 -12.3 259 8.0 21.8 29.6 59 -99050408.JCT 2 13.0 2082 -218 838 355 55.0 0.0 -11.2 254 8.3 46.8 58.7 506 -99050402.GOK 2 13.9 3154 -61 723 366 51.4 9.2 -14.6 240 8.2 36.8 57.5 441 -99050401.ICT 2 12.6 2748 -7 1016 257 31.8 3.7 -14.7 227 7.9 40.5 70.4 415 -99050323.OKC 2 15.2 4117 -15 733 308 43.5 9.2 -13.2 243 7.8 43.2 70.1 401 -99050300.HSI 2 8.0 203 -4 845 168 41.5 0.2 -17.7 222 6.7 28.6 32.1 221 -99042200.END 2 12.7 3301 -34 1156 225 46.1 4.8 -15.4 236 8.1 35.1 48.2 242 -04082700.RDD 2 18.4 3706 -37 940 184 41.0 4.7 -6.9 255 7.1 28.7 60.7 258 -04071823.GFK 2 16.7 3575 -36 1246 117 45.4 2.4 -7.9 310 6.8 35.1 45.5 292 -04071302.GRI 2 15.9 3090 -197 1538 152 29.0 0.0 -7.9 298 8.5 13.8 50.5 173 -04062402.OSH 2 11.1 1428 -30 700 187 62.2 2.7 -16.7 257 6.5 50.9 79.3 234 -04061620.LAA 2 12.3 1494 -63 908 129 51.4 1.5 -9.4 252 7.7 34.1 57.1 369 -04061300.W#N 2 16.4 3866 -17 1255 231 34.6 3.8 -9.2 251 7.9 37.4 44.2 387 -04060701.MOT 2 10.4 295 -316 1541 461 68.3 0.0 -8.4 254 6.7 33.2 82.6 561 -04060621.C02 2 9.9 1824 -59 2285 83 55.5 0.0 -10.8 234 7.9 39.7 69.2 64 -04053023.IND 2 17.3 2618 -10 577 361 58.6 9.2 -9.1 248 6.9 35.7 45.1 369 -04053020.SDF 2 16.6 2653 -2 807 250 52.4 5.8 -9.4 245 6.8 37.1 41.1 317 -04053002.OKC 2 15.5 2559 -32 1162 314 55.7 6.2 -7.3 244 7.0 35.6 70.5 434 -04053002.ICT 2 16.1 3240 -98 992 315 44.2 5.1 -10.4 245 7.9 25.8 56.2 399 -04053000.MCI 2 16.0 3437 -5 863 239 36.5 5.0 -12.8 232 8.3 27.4 42.9 372 -04052922.C33 2 16.5 4081 -4 1356 126 51.4 2.8 -7.8 244 7.4 36.9 74.7 248 -04052921.TOP 2 16.1 3843 -13 936 78 32.5 1.6 -12.5 233 8.0 17.3 39.0 190 -04052421.STJ 2 15.6 3982 -40 991 76 40.4 2.0 -11.9 234 7.7 26.3 67.6 270 -04052300.P#8 2 15.0 3882 -47 1262 228 54.5 5.9 -10.5 233 7.9 34.1 69.9 334 -04052221.MCK 2 13.2 3453 -37 1185 103 72.0 2.9 -12.3 231 8.6 35.5 82.5 224 -04052219.GLD 2 9.9 1898 -54 1700 22 59.0 0.1 -12.7 233 8.4 12.6 69.5 76 -04052122.CID 2 15.4 2960 -48 971 309 36.6 5.6 -11.5 268 7.4 36.1 50.0 390 -53031321.FWH 2 10.8 727 -98 981 119 51.2 0.5 -16.3 248 8.1 30.6 80.9 266 V -55052521.LTS 2 15.0 4060 -25 1509 322 66.4 6.4 -12.3 225 8.6 37.0 53.5 355 V -56041521.GUN 2 11.7 1189 -11 1302 251 72.4 2.1 -13.6 230 7.3 55.7 66.8 370 V -57040221.FWH 2 13.2 3580 -3 942 94 35.8 2.0 -15.8 189 7.9 26.1 52.8 122 V -57052021.TOP 2 14.0 2801 -2 920 142 55.7 3.7 -13.8 207 7.7 48.0 77.2 228 V -57052121.BYH 2 15.7 2854 -5 1106 236 49.7 5.0 -10.9 230 7.2 33.0 92.5 240 V -57061418.PIA 2 15.9 2118 -6 986 394 50.0 7.0 -8.6 252 6.9 52.8 52.1 496 V -59040100.FWH 2 12.6 3068 -26 987 124 42.8 2.7 -17.6 247 9.0 28.0 61.5 142 V -61050800.FSM 2 14.5 2844 -7 1215 261 61.7 5.8 -11.4 240 7.5 42.2 65.9 323 V -61050600.FSM 2 14.3 2667 -12 1121 245 65.5 5.8 -13.1 240 8.3 61.7 43.1 430 V -62052600.OKC 2 14.3 4171 -76 1591 154 33.3 1.2 -12.0 264 8.6 25.3 43.2 228 V -62080700.TOP 2 20.6 6024 -12 1167 160 42.3 5.7 -7.3 250 7.7 32.4 60.6 243 V -64050600.OMA 2 12.7 2395 -61 1048 349 68.6 7.4 -13.8 224 8.8 54.6 89.3 498 V -65041200.FNT 2 11.2 1814 -1 974 166 91.0 3.0 -17.7 250 7.7 46.4 91.6 372 V -66042800.FWH 2 14.1 3342 -17 1291 148 38.0 2.2 -11.8 265 7.2 39.3 49.0 269 V -66030400.HKS 2 12.2 1434 -10 831 138 47.6 1.6 -14.0 234 7.6 49.0 77.8 142 V -67061100.OKC 2 14.4 3497 0 1569 144 32.2 1.2 -11.0 235 8.7 35.0 51.1 260 V -68110400.VPS 2 12.8 1596 -2 812 129 50.5 1.7 -13.4 251 5.9 30.3 72.0 184 V -69041806.VPS 2 15.2 1013 -8 445 370 55.8 3.5 -11.0 248 6.9 42.3 73.3 439 V -69062400.TIK 2 18.4 4403 -4 776 317 37.5 8.7 -9.4 240 7.5 45.3 56.2 431 V -70100600.TIK 2 13.7 1865 -3 772 241 41.1 3.1 -12.2 230 6.7 35.4 55.6 335 V -71022200.JAN 2 12.8 938 -4 930 470 74.7 4.4 -11.8 211 6.7 57.8 77.3 590 V -73052800.MGM 2 16.4 2337 -2 1017 293 53.5 6.0 -7.9 239 6.2 45.6 45.2 386 V -73041600.VCT 2 15.4 2861 -37 1272 385 48.1 6.4 -12.9 231 8.1 35.7 72.2 377 V -74040400.MGM 2 14.8 2955 -2 1017 161 52.0 4.1 -12.8 235 8.2 39.5 59.4 253 V -74040400.BNA 2 14.6 2744 -31 970 209 77.8 5.7 -13.3 238 7.8 57.0 80.2 301 V -74040400.DAY 2 12.8 2185 -7 986 619 90.8 13.5 -13.1 235 7.1 71.9 91.6 919 V -75042500.UMN 2 15.7 5306 -1 837 145 53.3 6.8 -13.8 255 7.3 41.6 61.8 185 V -74060900.UMN 2 17.0 3643 -2 987 363 37.0 8.1 -6.7 231 7.6 41.4 27.5 508 V -75063000.BIS 2 13.6 3158 -76 1566 198 41.8 1.6 -12.3 233 8.6 26.8 55.7 204 V -76042000.SEP 2 13.7 3326 0 1092 305 45.1 6.9 -14.1 240 7.6 33.7 48.9 358 V -77040418.CKL 2 14.1 1633 0 994 247 66.8 4.0 -9.8 231 6.0 52.7 80.0 333 V -78060100.TOP 2 16.2 4279 -1 1160 267 35.7 5.7 -12.7 233 7.6 36.3 57.0 349 V -79041021.SEP 2 12.8 2186 -9 912 345 48.2 6.1 -13.1 228 8.1 42.9 54.3 468 V -79050300.OKC 2 13.9 2775 -4 877 218 73.2 6.0 -12.3 246 7.2 57.7 103.2 279 V -79033000.OMA 2 10.1 1322 -24 1155 223 56.4 2.4 -15.8 232 7.1 49.1 52.9 345 V -80040800.UMN 2 10.2 2256 -3 1473 97 39.6 0.8 -18.5 236 8.4 39.7 92.1 247 V -84060800.TOP 2 16.2 2284 -16 918 560 74.0 12.8 -6.0 237 6.2 49.1 84.6 705 V -84031600.1M1 2 12.2 2339 -1 1056 250 47.1 4.3 -14.9 251 6.9 30.4 55.5 292 V -86072900.OMA 2 16.4 4252 -21 1667 112 48.4 1.3 -10.6 268 8.6 28.2 81.3 151 V -87111600.GGG 2 12.8 1593 -8 723 298 61.9 4.8 -15.3 178 7.9 43.3 65.2 326 V -90061600.LBF 2 16.1 3827 -1 1050 21 42.1 0.5 -10.6 185 8.5 24.5 74.1 95 V -90060300.PAH 2 15.6 2246 -3 1039 274 47.1 4.7 -7.6 251 7.0 57.8 49.8 384 V -91042700.OUN 2 15.8 4387 -8 898 195 50.3 7.2 -11.5 242 7.0 44.2 54.9 370 V -92062800.AMA 2 14.6 3148 -3 1020 83 44.3 1.9 -10.3 249 7.9 32.7 52.7 220 V -92061700.OVN 2 18.7 4878 -1 1119 262 50.4 9.5 -6.5 237 6.9 46.6 64.6 473 V -93042500.OUN 2 11.6 2675 0 1209 113 49.6 2.0 -14.6 235 6.9 35.5 65.5 168 V -93050700.TOP 2 13.7 2046 -7 666 484 58.8 9.7 -13.1 217 7.0 55.4 51.4 644 V -93060700.LBF 2 15.9 4738 0 930 328 59.3 15.3 -8.6 229 7.6 41.9 67.6 583 V -94042600.SEP 2 12.9 2562 -34 1365 201 51.9 2.8 -11.5 258 7.4 41.3 51.0 198 V -95051900.BMX 2 15.7 2868 -5 989 239 39.3 4.5 -9.9 247 6.7 31.9 49.1 230 V -98040900.BMX 2 14.6 2259 -18 642 136 77.9 3.1 -13.9 240 7.9 50.3 100.1 290 V -98041700.BMX 2 14.7 2038 0 704 263 73.4 5.4 -11.9 245 6.8 36.3 98.6 327 V -99050400.OUN 2 13.4 3644 -22 1050 271 41.4 6.5 -14.9 225 8.4 32.0 37.7 343 V -00121618.BMX 2 12.0 1369 -1 737 279 66.9 3.8 -14.1 220 6.7 51.3 90.8 339 V -00092100.ILN 2 12.5 747 -19 1280 611 75.3 3.3 -7.5 240 5.4 64.7 73.0 810 V -01061400.OAX 2 16.8 4639 -1 1278 127 38.6 2.8 -11.3 215 9.0 35.2 48.5 145 V -01112412.JAN 2 13.0 1392 -2 773 366 50.4 4.3 -10.1 225 5.7 52.4 48.8 504 V -01112418.BMX 2 13.4 1498 -1 655 227 52.0 3.0 -11.3 220 6.1 43.1 61.9 319 V -02111018.ILN 2 11.3 1239 0 734 385 54.4 4.3 -13.7 230 6.6 49.5 103.8 417 V -02062400.ABR 2 17.1 4378 0 1112 85 50.6 2.8 -10.5 245 8.2 29.8 57.9 153 V -03050900.OUN 2 17.0 3871 -32 990 336 62.0 13.0 -6.9 235 6.3 53.9 80.1 364 V -94032718.CKL 2 15.5 1965 0 743 344 72.9 6.8 -9.1 233 6.3 54.7 56.0 403 V -81052300.OKC 2 13.1 2411 -70 1142 203 49.1 3.0 -13.7 235 9.0 37.6 49.1 249 V -65041100.LIT 2 12.7 1815 -1 1365 140 52.3 1.4 -11.1 248 7.2 39.4 64.4 212 V -53051121.FWH 2 13.2 1452 -55 1150 122 53.0 1.3 -11.2 248 7.3 40.4 64.4 209 V -90082900.PIA 2 21.0 6470 -2 974 110 33.6 4.0 -7.3 297 7.1 23.3 54.6 147 V -55042411.GUN 2 13.1 1784 -7 917 345 68.7 6.2 -12.7 248 7.1 44.1 85.9 375 V -56040321.HKS 2 13.0 1491 -14 1212 173 82.1 2.0 -12.4 221 7.5 52.1 107.5 267 V -56051221.MTC 2 13.8 2444 -8 1001 124 69.2 3.0 -14.4 266 7.5 25.2 94.3 162 V -60052000.TOP 2 14.3 3120 -23 1112 167 43.1 3.3 -13.3 213 8.2 32.6 58.1 244 V -66060900.TOP 2 15.9 2226 -24 819 296 59.5 6.5 -8.6 223 7.1 47.3 69.8 397 V -68082000.GRB 2 16.1 2780 -11 1217 173 50.0 3.1 -7.3 258 6.4 27.0 43.6 195 V -74040318.BNA 2 13.0 2906 -5 1157 205 63.1 5.0 -15.5 229 8.2 48.6 76.4 333 V -61051500.PIA 2 12.4 1259 -2 817 196 68.7 2.5 -13.0 202 6.6 36.7 80.9 205 V -54050121.TIK 2 13.0 1988 -17 709 242 56.2 4.5 -13.5 203 8.0 39.2 73.2 282 V -55060421.SLN 2 13.4 3594 -5 1422 36 25.3 0.3 -12.7 225 7.9 23.8 30.4 152 V -70061300.COU 2 16.5 3499 -11 949 204 64.2 7.2 -7.8 246 5.5 49.6 57.1 318 V -76032700.1M1 2 11.8 1820 -17 961 187 41.8 2.4 -17.1 230 8.2 57.3 71.8 243 V -04071318.ILX 2 19.0 4958 -10 1102 117 37.5 3.3 -10.9 305 7.9 33.8 45.3 197 V -68051600.LIT 2 15.6 2612 -4 971 250 52.8 5.7 -11.7 260 8.6 45.5 72.5 337 V -65031700.OKC 2 11.1 1628 -3 687 269 91.0 4.4 -17.9 235 7.1 58.8 114.4 325 V -00050901.AIZ 0 13.1 1987 -68 1453 84 35.7 0.5 -11.3 241 8.5 41.9 28.1 204 -00050722.SNY 0 9.8 2015 -39 1845 23 56.1 0.1 -12.4 245 8.7 34.2 64.8 128 -00050707.OGA 0 11.6 1205 -190 787 34 39.5 0.0 -11.3 236 8.2 22.0 47.2 115 -00050323.RBD 0 11.2 940 -3 1077 54 42.9 0.3 -14.6 290 6.2 28.9 58.4 174 -00043001.ABI 0 11.9 2549 -66 1686 111 39.6 0.5 -11.8 268 8.4 26.8 40.5 228 -00042423.LAA 0 5.4 613 -132 2566 97 54.0 0.0 -16.3 278 8.9 29.1 72.7 192 -00042422.EHA 0 6.7 706 -56 2143 58 53.8 0.0 -15.2 295 8.1 25.8 83.4 159 -00042021.BWG 0 11.2 1126 -13 1162 167 52.1 1.4 -13.5 240 7.4 46.8 53.8 253 -00042021.BNA 0 11.2 989 -26 1114 165 53.6 1.3 -13.7 242 7.7 45.4 65.0 244 -00042001.MCI 0 12.4 2093 -43 1300 141 61.9 2.1 -12.3 226 7.0 33.4 81.4 163 -00042000.JCT 0 13.1 2950 -156 1701 170 51.7 0.4 -9.4 253 8.2 40.5 71.8 240 -00041822.SJT 0 7.1 414 -185 3169 -7 49.4 0.0 -9.5 243 8.2 32.3 60.6 45 -00041620.SUS 0 9.5 579 -1 968 46 41.8 0.2 -18.1 247 6.6 30.2 69.5 154 -00041602.GRA 0 10.2 901 -182 1269 251 56.8 0.2 -17.0 244 8.6 34.1 76.8 276 -00033000.SHV 0 12.6 1635 -14 797 147 57.7 2.3 -15.2 267 7.2 33.9 91.9 219 -00032900.HYI 0 15.8 2875 -10 771 106 60.6 3.0 -11.6 251 7.3 36.4 82.8 192 -00032522.BNA 0 8.3 268 -8 1461 34 37.5 0.0 -16.9 270 6.2 23.2 61.3 60 -00032207.MAF 0 11.5 1952 0 562 249 54.6 4.4 -16.4 196 8.3 45.0 77.8 468 -00031600.CSM 0 8.3 808 -99 1327 59 34.5 0.1 -17.7 251 7.6 25.7 34.3 101 -00031022.BHM 0 10.3 614 -95 1034 103 48.9 0.4 -15.8 238 7.0 33.1 49.4 179 -00030923.LRD 0 13.5 2701 -7 1360 -13 41.3 -0.2 -12.5 256 7.5 20.8 59.4 95 -00030920.GFL 0 7.1 1 -425 1416 88 63.6 0.0 -18.7 242 8.1 39.6 77.0 165 -00030900.UNU 0 9.9 1306 -11 1121 172 50.6 1.7 -17.3 203 6.6 39.6 44.1 206 -00030900.CLI 0 9.4 673 -29 1009 196 53.3 1.2 -16.9 202 6.6 39.4 53.8 226 -00030302.PWG 0 12.0 1469 -17 1106 252 60.9 3.3 -12.2 259 6.1 45.0 75.3 323 -00030222.AFW 0 11.1 999 -6 913 256 68.3 2.6 -13.5 238 6.5 36.9 80.1 345 -00022606.CRS 0 13.3 2158 -10 637 191 48.7 3.3 -14.8 239 6.9 25.4 69.2 184 -00022523.FSD 0 7.3 495 -2 929 82 38.3 0.3 -21.9 172 7.7 30.1 52.5 83 -00022405.FAM 0 9.2 437 -46 772 315 46.8 1.1 -18.0 235 6.3 29.2 42.2 331 -00072222.BBW 0 11.9 1462 -1 1218 36 35.2 0.2 -11.1 328 6.5 26.6 43.9 124 -00072220.GLD 0 10.6 1162 -15 1699 26 39.9 0.1 -10.2 319 7.4 19.8 55.8 82 -00072122.BFF 0 9.8 1738 -8 2036 34 42.0 0.0 -9.9 297 7.7 36.2 48.9 131 -00072022.AKO 0 14.0 3465 -7 1063 22 46.2 0.6 -10.2 278 8.3 29.1 64.7 106 -00072000.BVX 0 17.4 3847 -11 1674 30 36.4 0.2 -7.1 298 6.9 26.0 29.2 130 -00071022.RCA 0 13.2 1916 -28 1452 23 41.1 0.2 -9.2 238 7.6 21.4 68.1 95 -00071001.LBF 0 14.7 2947 -100 1740 24 28.1 0.1 -5.6 239 7.8 23.6 37.9 109 -00070922.MHE 0 16.8 3556 -34 1430 6 40.7 0.1 -6.1 258 6.7 18.8 41.5 109 -00070922.GGW 0 13.3 2242 -12 1039 31 46.6 0.5 -11.4 226 7.4 18.7 71.4 74 -00070901.LWT 0 8.7 874 -65 1998 38 58.4 0.0 -11.5 232 8.1 32.4 92.6 236 -00070805.LVN 0 18.2 2722 -69 530 388 37.6 5.8 -9.2 261 8.1 22.9 53.3 407 -00070803.JDN 0 7.6 57 -220 2275 33 69.9 0.0 -11.7 240 7.8 39.2 84.5 167 -00070601.CUT 0 11.7 2058 -14 1543 37 55.5 0.3 -9.9 245 8.5 28.5 78.8 136 -00070523.MCK 0 16.4 3979 -55 1631 151 45.4 1.6 -6.8 254 8.1 24.5 59.5 231 -00070521.RAP 0 14.5 3135 -2 1289 15 44.0 0.3 -10.0 233 8.0 19.5 68.5 93 -00070501.2WX 0 11.2 1574 -93 1339 -29 47.6 -0.2 -12.4 230 8.6 28.2 78.4 64 -00070421.JDN 0 8.1 1033 -47 1927 -17 41.2 0.0 -15.0 209 7.9 26.2 68.3 49 -00070302.GGW 0 10.6 1484 -86 1685 121 67.7 0.4 -12.6 252 7.9 36.1 78.0 267 -00070222.FOD 0 17.4 3585 -43 1097 53 23.7 0.0 -9.5 292 7.5 16.4 31.4 91 -00070201.ABR 0 14.2 3411 -108 1790 100 24.5 0.0 -10.0 259 8.3 16.6 39.9 145 -00070123.ELO 0 13.3 2835 -49 1339 117 57.8 2.1 -13.1 291 7.7 31.9 66.7 228 -00070122.ABI 0 13.9 1505 -15 1776 40 26.6 0.1 -5.4 261 5.7 21.4 25.5 120 -00070100.JLN 0 15.5 2255 -3 786 81 43.6 1.3 -7.6 313 5.9 25.5 56.4 208 -00062923.ELM 0 8.8 332 -11 1098 19 33.4 0.0 -16.5 253 6.2 19.9 82.5 60 -00062923.D07 0 9.6 1600 -26 1649 30 42.4 0.1 -15.7 295 7.7 30.2 50.5 90 -00062901.LAM 0 11.8 506 -57 1728 28 25.5 0.0 -6.5 268 6.3 18.5 25.2 126 -00062519.AIO 0 14.7 2632 -77 1269 122 38.0 1.2 -10.6 279 7.3 29.0 32.0 250 -00062402.RCA 0 11.5 1507 -76 1200 0 40.3 0.0 -11.0 273 7.9 29.4 67.6 159 -00062322.SDA 0 16.8 4294 -9 1398 56 28.6 0.7 -9.2 284 7.3 21.1 46.7 160 -00061522.OKV 0 14.5 746 -31 749 130 32.3 0.5 -8.8 240 6.0 35.1 29.5 198 -00061323.P28 0 14.3 3106 -53 1734 60 41.3 0.3 -10.0 260 8.0 15.7 31.7 91 -00061122.DFS 0 13.5 3143 -11 1597 67 28.6 0.4 -8.2 251 7.7 28.8 45.0 62 -00060400.GLD 0 9.0 1430 -74 2560 51 35.6 0.0 -10.7 313 8.7 29.0 38.3 146 -00060221.CEF 0 12.1 326 -141 1452 156 38.5 0.1 -9.8 279 6.6 44.9 47.0 277 -00052701.SZL 0 13.7 1477 -23 1157 198 50.0 2.1 -9.7 244 6.7 38.9 69.4 232 -00052501.PPA 0 15.2 3731 -83 1597 78 46.6 0.7 -8.0 249 8.4 33.0 60.7 288 -00052501.ADK 0 16.3 4569 -134 1861 108 40.3 0.2 -7.8 255 8.7 36.4 49.3 291 -00052219.AVC 0 10.1 628 -1 1000 2 52.8 0.0 -13.8 256 5.9 28.0 59.1 95 -00052021.VPC 0 13.0 805 -6 1196 15 39.2 0.1 -9.8 231 6.1 19.7 47.6 87 -00050922.IRS 0 12.0 729 -2 928 68 49.6 0.4 -13.6 230 6.9 46.6 41.5 178 -01041105.JCT 0 14.1 1545 -229 832 346 71.9 0.0 -9.7 230 8.5 44.0 97.0 386 -01041004.IND 0 11.4 1318 -107 1240 185 57.8 1.1 -13.8 292 7.2 35.6 68.3 216 -01040321.UNO 0 12.3 1279 -42 722 107 57.2 1.3 -13.7 270 7.4 36.3 60.7 225 -01040300.BFF 0 5.0 0 -9999 1708 161 63.5 0.0 -17.8 241 7.5 37.7 81.7 433 -01032404.ABI 0 10.8 1700 -61 813 65 27.5 0.5 -18.2 289 8.0 17.4 46.6 180 -01031202.FTW 0 11.7 1341 -9 490 161 53.1 1.9 -17.9 240 7.3 37.5 47.3 201 -01031123.BWD 0 10.1 846 -18 912 76 47.4 0.5 -17.4 245 7.7 31.1 69.7 133 -01022500.TOP 0 7.3 153 -15 715 148 78.6 0.2 -21.3 203 6.8 32.9 92.4 170 -00110907.GZH 0 15.4 1005 -3 768 172 47.3 1.4 -7.8 213 6.0 36.2 52.6 220 -00110906.EET 0 14.9 674 -3 539 277 52.5 1.6 -8.6 217 5.7 41.9 58.8 327 -00110121.CID 0 12.2 1537 -17 1087 164 40.8 1.6 -12.1 210 6.0 36.7 41.3 225 -00102323.ELP 0 9.8 1432 -3 1298 24 68.0 0.2 -14.2 201 7.5 36.8 65.9 132 -00102212.MWL 0 13.4 1016 -7 525 152 31.3 0.8 -11.5 208 6.2 22.4 43.6 149 -00101423.INK 0 8.5 757 -27 2381 63 29.5 0.0 -10.8 243 7.2 27.3 48.1 91 -00101408.CNM 0 11.5 1524 -124 1147 79 34.2 0.3 -10.4 246 7.2 29.4 55.6 119 -00101400.SLN 0 11.5 577 -49 879 26 58.0 0.1 -11.3 234 5.7 28.9 63.6 76 -00100401.GCK 0 8.5 341 -281 1869 -16 53.4 0.0 -11.5 263 8.5 38.0 70.8 124 -00090523.GTF 0 7.6 277 -43 1393 8 65.8 0.0 -15.8 219 7.4 34.7 93.3 112 -00090300.ISN 0 10.7 654 -10 754 62 42.1 0.3 -13.8 225 6.8 27.3 72.5 95 -00090120.SLC 0 5.7 78 -67 2129 29 41.1 0.0 -14.3 198 7.4 15.4 53.6 53 -00081820.BUY 0 15.3 1702 -37 1351 58 34.7 0.4 -8.2 275 6.5 38.7 13.2 134 -00081723.IND 0 19.2 4115 -13 791 158 47.3 5.1 -7.9 275 6.9 37.5 49.8 224 -00081720.LEX 0 16.6 2579 -6 1129 81 36.5 1.1 -6.7 284 5.9 24.9 42.3 141 -00081420.AIT 0 16.2 2299 -120 690 282 52.2 3.0 -9.8 267 8.0 37.9 69.5 368 -00080623.CDJ 0 14.7 1350 -119 1250 43 35.9 0.1 -6.8 272 6.3 24.5 54.6 88 -00080601.HNR 0 18.6 4073 -16 990 54 37.6 1.4 -7.0 271 7.3 25.9 55.8 92 -00080522.AIA 0 7.8 312 -3 2875 0 43.4 0.0 -8.3 272 7.7 22.1 49.4 52 -00080502.PIR 0 14.4 2629 -128 1844 202 48.0 0.3 -7.4 270 7.5 30.4 64.1 318 -00080502.ANW 0 11.5 1035 -228 2157 138 37.9 0.0 -6.3 276 7.6 25.6 46.8 227 -00080222.FKL 0 13.7 1168 -22 892 104 26.2 0.5 -9.1 253 5.9 27.0 55.7 145 -00080202.LWT 0 8.3 700 -130 2701 50 46.5 0.0 -8.4 286 8.6 19.4 78.7 94 -00080202.GGW 0 10.8 1193 -207 1955 94 51.1 0.0 -9.6 293 8.0 25.1 71.3 230 -00072622.AIO 0 16.7 3711 -2 964 67 44.8 1.9 -10.2 324 7.6 29.1 43.1 186 -00072501.HON 0 13.9 2463 -99 1314 85 29.5 0.5 -11.1 271 8.3 13.2 40.3 91 -01060123.LWC 0 11.2 1268 -25 1421 113 62.6 0.8 -13.2 305 6.4 37.6 79.8 249 -01060122.P28 0 11.4 1141 -69 1552 80 51.2 0.3 -9.7 308 6.6 21.4 62.5 156 -01053100.CVN 0 8.5 1309 -86 2195 -18 45.9 0.0 -10.8 289 8.3 24.1 38.5 138 -01052801.END 0 13.1 2369 -85 1258 150 47.1 1.6 -12.5 280 8.2 39.8 67.4 370 -01052400.OKF 0 7.6 314 -55 2200 85 59.2 0.0 -15.3 298 7.1 43.3 63.3 244 -01052022.GRK 0 15.6 2852 -21 1408 32 40.1 0.4 -7.9 242 6.8 30.2 75.1 60 -01051801.RUL 0 11.1 1624 -134 2428 24 25.8 0.0 -8.5 258 8.1 18.9 46.6 76 -01051623.BIE 0 13.4 3208 -41 1905 35 30.0 0.1 -10.4 274 7.5 20.5 32.1 103 -01051218.DDH 0 8.9 325 -25 1493 21 36.4 0.0 -16.2 229 6.4 25.9 46.8 102 -01051000.OLU 0 9.6 2423 -73 2081 70 30.6 0.0 -15.8 265 8.8 23.7 36.8 157 -01050823.GBD 0 8.1 447 -90 1828 55 44.5 0.0 -15.8 323 7.4 25.4 50.6 207 -01050701.COT 0 15.9 3113 -16 1068 4 34.1 0.1 -12.2 267 8.1 10.5 56.5 73 -01050700.ADS 0 14.6 2915 -5 1038 115 37.4 2.0 -13.7 248 7.3 23.1 63.5 148 -01050623.BMQ 0 16.4 4217 -12 955 48 38.2 1.3 -13.0 257 7.5 27.3 64.9 143 -01050501.COT 0 14.3 1453 -9 1075 113 48.9 1.2 -9.9 226 7.0 33.1 73.5 169 -01050200.AUD 0 10.0 1544 -80 1896 85 31.2 0.1 -14.7 266 8.2 22.1 40.9 170 -01050101.SLN 0 10.5 1695 -66 1383 122 37.1 0.7 -16.7 295 8.0 24.3 61.4 188 -01050100.P28 0 9.9 1422 -94 1553 70 45.7 0.2 -15.7 309 7.8 24.3 54.0 188 -01042317.STE 0 9.5 775 -5 970 86 55.4 0.6 -18.0 210 6.8 38.9 110.9 170 -01042304.JCT 0 14.1 2210 -11 659 190 53.5 3.8 -11.8 248 7.8 31.4 55.1 214 -01042222.MWL 0 11.8 1193 -8 1373 116 46.2 0.7 -10.2 212 6.2 33.4 58.0 105 -01042123.PIA 0 12.1 1857 -13 1175 79 41.0 0.8 -13.4 257 7.5 25.7 51.8 94 -01042123.CDS 0 10.3 2000 -70 2105 81 55.8 0.0 -11.8 230 7.9 27.2 70.8 141 -01042102.SLN 0 11.5 2072 -206 1218 280 50.2 0.0 -15.1 239 8.7 44.2 73.5 374 -01041702.SJT 0 13.0 1793 -30 989 96 38.8 1.1 -10.9 296 7.0 26.3 65.2 260 -01041700.LBB 0 8.1 406 -65 1861 42 46.3 0.0 -12.1 288 7.1 32.9 80.6 256 -01041500.ABI 0 12.6 2222 -121 1474 76 59.9 0.5 -13.2 249 8.7 28.8 78.5 130 -01041423.ADM 0 14.2 1613 -86 524 248 67.7 3.1 -14.2 254 8.6 38.9 90.8 310 -01041422.PCS 0 13.6 2872 -90 1455 5 57.7 0.1 -10.8 245 8.2 21.5 77.6 85 -01041422.EMP 0 8.9 652 -15 1486 57 59.4 0.2 -16.8 254 7.2 31.9 84.7 218 -01041421.HBR 0 13.9 2647 -29 786 167 70.6 4.4 -14.3 255 8.2 39.1 91.1 239 -03050100.BRL 0 12.7 2707 -10 1047 121 47.3 2.5 -15.8 247 8.2 27.0 50.9 270 -03043021.AIA 0 12.3 2247 -53 863 158 49.0 2.8 -15.7 243 8.1 37.1 49.5 276 -03043003.LIC 0 8.7 1228 -82 574 264 52.2 2.2 -15.9 216 8.8 43.9 59.2 676 -03042900.APA 0 6.3 1056 -56 1639 56 35.9 0.1 -15.6 239 8.3 10.6 65.7 63 -03042600.HRL 0 12.4 1634 -219 1994 5 43.7 0.0 -11.1 286 8.3 25.0 72.5 36 -03042522.FTY 0 11.2 645 -12 811 160 61.6 1.0 -14.4 253 6.7 33.8 66.6 259 -03042520.ANB 0 11.5 783 -1 777 164 64.0 1.3 -14.0 259 6.2 36.4 64.7 319 -03042400.SEP 0 14.4 2485 -6 558 393 62.4 9.8 -14.6 238 7.9 39.1 92.6 485 -03042022.MKL 0 12.5 1017 -22 789 92 57.6 0.9 -14.3 251 6.9 29.0 70.2 188 -03042019.MEM 0 13.1 1682 -6 857 78 50.6 1.1 -14.2 252 7.3 29.0 57.0 148 -03041922.P#0 0 11.7 1623 -17 730 127 72.6 2.1 -19.4 223 7.9 35.5 102.9 148 -03041920.END 0 10.6 1171 -12 629 144 57.4 1.6 -21.0 215 8.4 39.0 99.4 219 -03041907.FDR 0 12.6 1046 -418 613 365 65.8 0.0 -13.9 207 8.9 40.5 101.8 352 -03040720.HOU 0 16.5 2215 -1 373 67 57.9 1.4 -11.4 231 7.6 30.3 77.2 191 -03040718.BPT 0 13.8 933 -139 741 16 59.0 0.1 -12.1 226 7.4 26.5 91.0 110 -03040717.LFT 0 14.1 780 -168 559 29 50.5 0.0 -12.0 233 7.3 29.3 84.8 74 -03040605.C12 0 11.3 655 -128 639 328 69.4 1.0 -14.6 250 7.3 45.3 111.0 697 -03040601.C11 0 12.1 2056 -4 832 109 75.1 2.2 -15.3 251 7.6 26.4 93.3 198 -03040400.LW1 0 13.3 2761 -1 682 153 54.3 3.8 -15.1 242 7.6 32.9 52.2 224 -03040322.HBR 0 9.5 1315 -38 1655 57 42.4 0.2 -14.8 235 7.5 33.0 47.0 130 -03032821.MBS 0 7.7 95 -1 1423 199 68.1 0.1 -17.6 223 6.6 48.9 65.7 252 -03032819.AZO 0 8.9 146 -2 830 200 60.9 0.3 -17.3 225 6.7 54.5 64.3 255 -03031722.SPS 0 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 -03031720.SPS 0 10.2 947 -44 1140 35 24.3 0.0 -16.7 216 7.4 15.4 100.9 42 -03031221.PBI 0 14.2 1790 -2 1215 21 36.5 0.2 -12.1 258 7.7 2.8 67.6 -23 -03031218.FPR 0 15.8 2760 -2 892 -28 38.6 -0.5 -14.1 256 8.0 11.8 71.6 86 -01062102.ICT 0 13.9 1917 -38 976 89 37.8 1.1 -11.3 291 7.3 26.8 48.8 202 -01061623.JMS 0 8.9 600 -4 1096 41 40.5 0.2 -18.1 283 7.1 25.4 84.9 82 -01061122.RGK 0 14.3 3269 -77 1618 201 51.8 1.8 -10.9 265 8.4 35.2 56.2 397 -01060502.CSM 0 15.8 3992 -79 1412 107 34.9 1.2 -8.4 251 8.1 28.3 40.7 227 -01060501.LHX 0 8.3 615 -248 1957 94 44.0 0.0 -11.2 243 9.0 29.0 49.3 127 -03062823.RST 0 8.8 203 -71 1471 26 40.8 0.0 -12.1 287 4.8 15.4 60.6 57 -03062822.BH4 0 6.7 253 -82 2374 15 53.7 0.0 -12.2 288 8.0 39.8 64.9 352 -03062820.WSC 0 9.5 432 -25 1288 24 38.2 0.1 -13.2 292 5.0 20.7 57.7 45 -03062800.C07 0 9.3 1323 -51 2202 29 36.5 0.0 -9.3 311 7.4 12.9 41.7 81 -03062800.8V7 0 10.5 2208 -13 2023 82 42.3 0.0 -8.2 320 7.8 44.3 44.0 293 -03062722.8V7 0 11.1 2543 -6 1821 66 38.6 0.2 -8.4 315 7.5 40.0 47.0 258 -03062721.C07 0 8.9 1146 -29 2232 32 35.4 0.0 -9.2 306 7.2 11.7 50.1 74 -03062401.CYS 0 10.5 1054 -23 891 146 67.4 1.5 -8.4 210 6.6 44.6 77.5 258 -03062022.ROW 0 10.0 1448 -1 2438 18 41.2 0.0 -8.3 220 7.9 29.6 51.3 74 -03062022.CVS 0 12.0 1680 -21 1220 96 32.9 0.7 -8.5 224 7.2 20.3 41.0 110 -03062020.CVS 0 12.3 2087 -2 1100 14 22.8 0.0 -9.4 233 7.4 10.8 35.9 48 -03061501.CNM 0 11.3 2677 -1 2178 -48 31.4 0.0 -11.2 338 8.5 17.4 38.2 109 -03061423.HOB 0 9.6 1525 -68 2132 7 32.6 0.0 -11.5 330 8.5 14.0 32.3 24 -03061223.C11 0 20.9 5150 -8 501 190 32.5 5.3 -8.9 269 8.0 41.4 58.8 339 -03061221.AGC 0 13.1 691 -9 1032 158 35.1 0.6 -8.8 227 5.9 34.2 44.2 256 -03060401.TCC 0 11.4 1746 -91 1622 -15 59.6 -0.1 -9.6 288 8.2 44.8 48.7 398 -03060322.LBB 0 13.6 2239 -128 1199 80 45.2 0.5 -9.1 302 7.9 31.8 57.3 316 -03060302.LRD 0 17.3 3023 -81 1418 -4 35.4 0.0 -5.0 285 7.3 27.3 67.7 -12 -03053121.ILM 0 13.5 1237 -102 1265 394 58.4 2.3 -10.4 275 6.3 47.7 74.8 576 -03052001.ADM 0 16.8 3033 -19 1155 81 33.3 1.2 -8.4 288 7.5 14.5 61.0 188 -03051922.FSI 0 15.9 2088 -80 836 131 37.4 1.4 -8.3 246 8.1 40.1 50.7 385 -03051409.C12 0 13.9 2056 -415 1151 505 44.5 0.0 -12.7 290 9.5 25.4 80.3 466 -03051406.LW1 0 15.8 3351 -219 819 259 50.4 0.0 -11.8 274 8.3 12.9 74.5 238 -03051401.C11 0 13.9 3239 -178 1774 132 58.3 0.1 -9.9 286 8.2 22.1 60.4 192 -03051322.CDS 0 12.4 3323 -92 2274 79 49.1 0.0 -10.1 280 8.6 18.1 68.8 98 -03051223.MRF 0 11.6 1914 -2 1612 41 42.7 0.2 -6.0 279 6.7 33.9 49.2 174 -03051019.MLC 0 14.5 849 -221 615 158 58.7 0.0 -8.7 240 7.6 34.0 74.3 199 -03051017.P#Q 0 16.5 2801 -34 619 97 68.4 2.7 -9.2 235 7.2 32.3 77.8 168 -03051000.P#J 0 16.2 3929 -21 888 74 55.8 2.7 -12.5 247 7.6 33.6 64.7 227 -03050922.LEX 0 15.5 2304 -3 715 119 55.3 2.5 -9.5 278 7.4 32.8 69.7 185 -03050921.COU 0 16.1 4338 -12 941 67 45.4 2.2 -11.8 246 7.4 35.8 73.5 264 -03050920.SDF 0 15.2 2300 -15 871 88 52.2 1.8 -10.2 268 7.2 36.6 70.7 247 -03050520.MKL 0 15.8 2332 -17 581 247 71.6 5.8 -11.9 263 7.3 40.2 88.1 300 -03050223.BMX 0 15.4 3487 -10 686 61 44.2 1.6 -13.2 283 6.8 21.9 38.7 114 -03050221.HSV 0 13.0 2237 -40 946 139 42.3 2.2 -13.8 264 7.0 27.8 33.8 201 -03050221.ABL 0 13.6 3056 -5 1063 81 40.9 1.6 -14.7 280 7.2 27.0 27.0 130 -03050219.SJT 0 15.1 4252 -2 1189 17 38.9 0.4 -12.5 277 8.1 4.7 61.7 18 -03050219.ABL 0 12.9 2572 -28 1072 45 27.2 0.5 -13.7 261 6.7 22.6 36.0 82 -03050218.MSL 0 13.0 2367 -24 912 19 25.5 0.2 -14.5 257 7.4 24.2 40.8 60 -03050201.ACT 0 13.6 2339 -88 1301 -44 31.1 -0.3 -11.9 280 8.3 21.3 53.8 -77 -03050102.END 0 14.0 3853 -58 1033 227 43.6 5.8 -13.5 250 7.4 27.5 43.5 247 -03071221.AVL 0 11.9 710 -2 1196 56 37.5 0.2 -8.5 266 5.6 31.7 43.3 103 -03071201.FOE 0 16.7 3598 -41 1289 -96 59.4 -2.4 -10.2 313 7.9 33.9 54.8 89 -03071200.FOE 0 16.2 3683 -11 1441 -16 63.8 -0.3 -11.0 315 7.7 31.9 59.2 109 -03071123.P#H 0 12.6 927 -26 1632 97 59.9 0.3 -9.9 322 7.2 45.3 55.0 319 -03070904.PHP 0 14.6 2161 -292 1066 549 72.4 0.0 -8.6 260 8.8 53.5 55.7 683 -03070900.BH3 0 8.3 1108 -106 2627 277 55.8 0.0 -7.9 250 8.4 55.7 68.2 568 -03070723.LVS 0 8.8 850 -179 2135 85 20.0 0.0 -6.4 329 8.7 24.3 27.9 305 -03070720.DSM 0 18.0 4261 -35 1012 20 39.2 0.6 -9.9 262 8.0 13.2 34.7 79 -03070719.LVS 0 9.9 1337 -68 1800 12 22.3 0.0 -7.2 336 8.0 27.0 21.0 98 -03070600.VTN 0 11.6 1572 -201 1584 157 52.8 0.0 -9.5 273 8.2 30.3 50.1 293 -03070521.RAP 0 8.7 803 -208 2327 67 22.6 0.0 -11.2 272 8.5 6.7 33.0 46 -03070521.P#7 0 10.3 1147 -137 2084 84 43.4 0.0 -10.3 249 8.1 22.9 55.2 239 -03070517.BH3 0 8.9 1171 -147 2263 -14 27.2 0.0 -12.5 293 9.1 15.8 39.6 51 -03070305.GDV 0 9.1 634 -206 1972 120 22.6 0.0 -13.9 250 8.7 30.3 58.1 255 -03063018.AUG 0 11.8 1327 -56 1152 60 42.9 0.5 -12.3 267 5.3 24.4 72.0 118 -03081800.BH5 0 9.0 725 -5 2392 -33 27.4 0.0 -9.3 180 7.6 12.2 31.3 76 -03081322.XRW 0 16.6 1031 -16 519 88 21.6 0.0 -6.2 187 5.5 23.7 39.1 164 -03081202.SEP 0 12.7 373 -104 1300 -113 55.9 -0.2 -8.4 345 6.8 38.0 68.0 -12 -03081200.FWD 0 12.2 1050 -51 2135 -30 50.2 0.0 -8.8 339 6.7 35.0 52.7 68 -03081023.P#9 0 13.9 1702 0 1195 30 41.7 0.3 -9.2 346 6.8 25.8 56.8 104 -03080902.P#C 0 15.5 3216 -71 1472 8 27.4 0.1 -6.4 277 7.9 17.3 40.8 199 -03080900.MIB 0 15.0 3325 -48 1477 39 33.2 0.4 -9.0 291 7.7 10.7 43.9 102 -03080900.P#C 0 14.4 3127 -1 1826 10 25.0 0.0 -5.8 262 7.5 12.2 42.3 64 -03080622.GLD 0 12.9 3132 -2 2338 21 28.1 0.0 -7.1 306 8.2 14.7 32.7 115 -03080601.CNU 0 15.8 2262 -28 1629 -18 34.6 -0.1 -5.1 317 6.6 25.1 42.1 49 -03080600.SUX 0 15.5 1945 -3 996 54 38.2 0.7 -8.6 321 7.0 35.9 44.6 171 -03080521.TOP 0 16.0 2857 -24 1592 -7 30.8 0.0 -6.8 308 6.3 19.6 40.9 101 -03080520.DAN 0 15.0 2224 -8 858 8 18.6 0.0 -10.1 275 6.4 27.6 30.4 121 -03080422.P#R 0 15.1 1771 -64 1131 59 51.1 0.7 -8.5 326 6.5 23.7 72.7 144 -03080401.BVX 0 16.9 2856 -38 1072 96 33.8 1.4 -8.7 308 6.7 18.2 47.9 100 -03080202.LUS 0 9.3 520 -170 1828 -21 47.7 0.0 -8.2 291 7.9 30.7 60.7 11 -03080123.CRL 0 13.5 2544 -8 1131 18 35.3 0.2 -12.9 299 7.9 26.6 36.1 109 -03080103.MCW 0 11.0 914 -111 1515 8 24.1 0.0 -12.2 281 7.0 26.6 47.8 60 -03073123.C31 0 8.6 251 -238 2988 79 50.4 0.0 -8.0 311 8.0 29.8 74.4 268 -03073120.TVL 0 10.6 1275 -24 1488 33 34.5 0.1 -7.4 90 7.8 32.3 17.1 170 -03072700.IWD 0 15.1 1598 -19 1386 149 42.6 1.0 -6.1 276 5.9 27.7 60.4 150 -03071802.BH1 0 13.9 2073 -132 1543 52 64.4 0.2 -6.9 291 7.8 47.0 77.9 171 -03071721.RAP 0 14.6 3713 -127 1972 107 39.2 0.0 -6.2 280 8.5 31.5 54.8 181 -03071320.MSL 0 16.4 2839 -21 1060 37 23.4 0.0 -9.3 310 7.1 4.1 36.8 35 -03071320.DIK 0 9.2 2113 -26 3189 -19 27.9 0.0 -9.3 266 9.0 11.0 36.6 31 -04040721.P#U 0 11.2 1509 -10 1060 103 47.1 1.2 -15.7 268 6.4 35.8 60.8 191 -04040702.SPS 0 8.6 230 -53 980 110 36.0 0.2 -17.3 236 6.3 19.0 53.3 110 -04040700.FTW 0 10.4 641 -8 948 43 57.7 0.3 -14.3 228 6.4 22.9 60.1 83 -04040422.LRD 0 13.8 2148 -1 827 171 49.4 3.0 -12.9 244 7.0 31.5 38.8 217 -04040421.ALI 0 13.2 1124 -3 718 10 40.8 0.1 -13.2 238 7.0 18.0 35.9 100 -04032701.DHT 0 9.5 1004 -128 1142 153 30.2 0.3 -13.4 233 8.2 31.2 63.3 235 -04032623.RAP 0 8.7 1651 -52 1568 172 42.5 0.9 -15.5 205 8.0 26.0 46.8 264 -04031802.FSM 0 8.0 442 -99 1939 211 48.0 0.0 -17.1 278 7.5 37.8 72.5 338 -04031800.P#P 0 9.4 1357 -30 1585 127 45.0 0.5 -17.4 288 7.7 34.4 66.4 269 -04030121.ORD 0 7.2 534 -1 908 208 58.9 1.1 -23.3 222 6.6 37.3 72.6 297 -04030120.RFD 0 6.8 505 -7 892 172 55.3 0.8 -24.3 220 6.8 34.8 71.1 256 -04022416.MCO 0 13.1 534 -37 687 121 47.0 0.5 -10.8 255 5.0 28.8 81.9 156 -04022407.G#5 0 10.5 962 -124 801 -16 47.4 -0.1 -18.2 218 7.7 31.4 83.7 14 -04022316.MSY 0 11.3 0 -9999 417 436 51.3 0.0 -11.2 240 6.1 44.9 86.2 531 -04020601.BTR 0 11.7 57 -172 540 186 69.9 0.0 -13.3 214 7.0 48.1 87.1 199 -04020514.LFT 0 11.1 165 -244 1109 583 49.0 0.0 -11.7 217 6.5 46.0 63.5 611 -04020512.LCH 0 13.6 1421 -64 497 282 49.1 3.0 -12.5 222 6.8 41.7 68.1 319 -04011921.VRB 0 10.3 196 -20 878 -16 82.2 0.0 -14.0 242 5.1 46.9 123.3 207 -03112718.RUE 0 10.5 681 0 396 4 92.3 0.0 -20.1 238 7.0 35.8 100.8 153 -03110923.SAC 0 6.9 156 -14 892 38 24.7 0.0 -25.3 234 7.5 14.4 91.8 77 -03102818.CTY 0 16.5 1074 -53 594 181 37.6 1.2 -7.8 217 6.3 23.6 51.5 193 -03100822.VAD 0 14.1 1355 -7 765 -4 27.1 0.0 -11.2 277 6.4 13.9 52.0 68 -03092718.CBE 0 11.6 969 -2 1256 109 40.4 0.5 -12.3 213 6.1 33.1 58.2 137 -03092620.UIN 0 12.7 1139 -3 844 177 50.2 1.7 -14.6 266 7.9 42.7 77.1 266 -03092619.BRL 0 11.1 906 -34 824 125 50.2 1.0 -14.9 256 6.9 40.9 76.6 149 -03091200.MRF 0 9.8 747 -2 1645 9 36.3 0.0 -6.8 276 6.2 25.5 49.1 163 -03090900.MAF 0 9.9 1214 -1 2565 13 32.3 0.0 -8.4 313 7.4 22.4 35.6 163 -03083123.HUF 0 14.8 27 -163 471 268 39.8 0.0 -6.8 243 6.3 41.6 43.2 340 -03082601.P#4 0 12.9 980 -231 1606 140 42.5 0.0 -9.4 277 7.1 39.4 44.3 283 -03082600.ABR 0 14.2 3471 -76 1925 104 37.8 0.1 -11.4 289 8.6 27.8 43.9 143 -03082221.LOL 0 9.6 944 -94 1467 89 64.9 0.3 -12.3 188 8.3 46.4 77.0 299 -03082119.APX 0 14.4 2077 -120 1359 80 36.1 0.3 -8.3 255 7.1 34.1 35.4 132 -03082100.DLH 0 16.1 2503 -11 1009 166 39.5 2.7 -8.1 226 6.2 24.3 46.3 201 -04051501.PUB 0 3.9 204 -85 2585 153 55.2 0.0 -18.2 268 8.8 42.0 78.8 355 -04051423.COS 0 4.6 230 -87 1664 52 57.1 0.0 -18.0 274 8.2 45.2 68.4 179 -04051300.HBR 0 14.0 4148 -28 1710 172 41.2 1.4 -11.1 244 7.8 44.0 46.5 333 -04051100.LUS 0 8.3 917 -69 1429 204 53.5 0.8 -11.5 237 7.4 28.1 44.2 323 -04050923.CVS 0 5.9 554 -61 3040 -32 23.7 0.0 -12.6 309 9.6 17.1 15.5 78 -04050921.STC 0 9.9 1302 -52 1737 185 49.7 0.5 -14.2 264 7.5 46.1 49.8 400 -04050900.P#A 0 13.8 2438 -42 1008 193 29.0 2.3 -12.7 278 7.7 19.9 36.2 251 -04050822.BH3 0 5.3 996 -6 3054 49 48.0 0.0 -15.0 280 9.6 8.9 60.8 58 -04050522.RIC 0 8.3 824 -38 1493 133 43.8 0.4 -20.4 310 7.1 34.9 60.9 251 -04050101.FWD 0 13.9 2471 -39 907 158 44.9 2.9 -14.8 225 8.3 23.0 58.2 185 -04043021.C12 0 13.3 2483 -8 1029 37 45.1 0.7 -14.1 236 7.9 32.8 46.0 48 -04043020.DYS 0 14.1 2950 -10 638 71 52.3 1.8 -14.3 236 7.8 34.1 51.0 143 -04043018.ABI 0 12.0 2372 -1 1211 -3 32.6 0.0 -13.6 230 7.7 22.8 40.3 -22 -04042920.MLU 0 12.9 972 0 744 72 46.0 0.5 -14.5 232 6.6 29.2 45.8 176 -04042821.G#2 0 10.1 747 -3 1175 139 56.7 0.8 -14.7 252 7.4 32.3 53.8 179 -04042521.CDS 0 7.1 679 -5 2042 20 45.4 0.0 -17.7 276 7.7 27.7 76.8 88 -04042300.SGF 0 9.8 113 -134 794 263 69.4 0.1 -15.2 267 7.5 51.1 79.0 572 -04042300.P#P 0 14.6 2114 -9 448 155 49.9 2.7 -13.6 245 7.2 26.3 46.7 258 -04042223.C12 0 12.6 1615 -11 1173 56 54.8 0.7 -10.8 266 6.6 36.5 68.7 191 -04042222.UMN 0 10.5 412 -29 663 220 60.2 0.9 -17.5 254 8.2 45.7 67.6 357 -04042221.C34 0 11.2 1504 -22 1170 72 53.8 0.8 -15.5 265 7.8 38.9 55.3 252 -04042200.ADM 0 11.7 1347 -25 1310 194 51.9 1.6 -13.2 269 6.8 28.4 68.1 339 -04042122.C12 0 11.5 1550 -3 1449 83 53.3 0.6 -13.2 261 6.6 30.3 65.8 168 -04041921.HOB 0 11.3 2173 -1 1395 86 53.9 1.0 -10.9 235 6.7 32.7 83.0 143 -04041801.MFD 0 10.8 1224 -65 1060 185 23.7 0.0 -16.5 288 8.0 29.7 50.0 245 -04041723.MFD 0 11.9 2519 -15 1046 104 26.5 1.1 -15.5 303 7.2 29.2 37.6 184 -04041105.MFE 0 15.8 2222 -37 402 26 39.9 0.4 -11.6 248 7.5 2.1 69.3 23 -04041019.ILM 0 9.2 180 -45 1165 111 41.2 0.1 -16.1 267 6.0 29.7 69.5 345 -04041001.PRX 0 8.8 516 -75 1780 210 42.3 0.1 -14.1 270 6.7 37.6 59.1 314 -04040818.DAB 0 13.2 1058 -19 810 73 56.2 0.7 -15.8 264 7.7 33.6 94.9 186 -04040815.DHN 0 11.9 877 -2 522 78 53.9 0.6 -15.8 257 6.5 30.9 87.6 111 -04071305.CHE 0 17.6 3151 -107 771 181 49.7 2.9 -8.9 301 7.9 29.7 60.2 300 -04070104.HBR 0 15.7 1988 -45 801 174 24.0 0.0 -8.2 259 7.0 25.9 23.7 276 -04062402.FNT 0 10.0 608 -67 1046 219 50.4 1.0 -15.3 260 6.5 32.1 72.4 270 -04062222.BIS 0 7.2 504 -14 1518 9 56.3 0.0 -18.7 301 6.3 28.7 75.6 88 -04062023.DHT 0 8.4 905 -127 2633 107 47.8 0.0 -9.3 270 8.8 36.3 67.8 192 -04061902.G#1 0 13.2 1631 -27 1122 144 35.1 1.2 -8.6 284 7.3 37.4 58.3 408 -04061900.HDN 0 6.4 316 -26 1668 -40 51.4 0.0 -13.3 257 8.3 36.5 73.3 29 -04061820.FAM 0 15.9 1842 -13 923 65 31.0 0.6 -7.0 271 5.7 23.9 35.7 131 -04061800.LHX 0 12.7 2059 -86 777 206 47.3 2.5 -11.2 235 8.4 37.4 49.6 651 -04052700.CHE 0 8.9 347 -4 1255 145 31.1 0.2 -14.7 268 6.1 31.0 44.9 228 -04052623.TYS 0 14.7 1654 -44 919 199 50.1 2.8 -9.7 275 5.9 37.8 71.9 255 -04052623.OKC 0 15.9 3047 -69 1198 124 56.8 2.5 -7.9 261 6.8 24.4 82.9 79 -04052622.FSD 0 9.4 835 -34 1187 143 35.4 0.6 -17.3 267 7.3 33.1 47.2 271 -04052621.CSV 0 14.4 1608 -15 870 176 59.8 2.8 -9.3 268 6.2 35.9 58.7 237 -04052621.C33 0 13.6 2405 -23 1847 104 55.5 0.4 -9.6 256 7.5 30.4 80.9 72 -04052603.CAI 0 15.4 1463 -14 609 129 47.0 1.5 -11.0 277 7.2 31.6 59.9 153 -04052402.P#7 0 7.8 400 -213 1358 246 41.2 0.0 -15.5 247 8.2 35.3 62.4 412 -04052400.STL 0 16.1 3087 -3 604 162 45.4 3.8 -12.7 253 8.0 28.6 58.7 195 -04052400.CDR 0 5.8 117 -187 2181 178 56.7 0.0 -14.5 256 8.0 30.8 66.1 338 -04052323.BGM 0 14.6 2244 0 781 156 41.1 2.4 -11.9 272 7.8 30.1 44.7 249 -04052320.PIN 0 12.0 1300 -3 1376 120 33.7 0.6 -11.8 267 6.7 36.9 31.3 199 -04052300.ELM 0 12.4 1089 -41 1163 226 43.8 1.5 -9.7 281 5.7 46.2 46.0 359 -04052201.G#1 0 12.3 2404 -84 1771 261 33.8 0.6 -8.2 246 7.9 36.9 50.5 385 -04052201.SNY 0 7.0 484 -214 2287 78 62.8 0.0 -12.7 227 9.0 42.4 81.2 214 -04052123.HYS 0 12.7 3460 -27 2109 75 39.7 0.0 -10.8 236 8.6 29.0 45.1 157 -04052100.FKL 0 14.7 2440 -9 772 269 42.7 4.7 -10.6 299 6.4 28.6 49.2 346 -04052100.DEN 0 9.0 1781 -3 1934 76 49.3 0.1 -11.5 231 8.4 30.6 60.1 225 -04051723.DSM 0 13.3 1669 -24 854 23 36.8 0.2 -11.5 251 6.5 26.2 51.1 132 -04051723.PUB 0 9.2 546 -83 1212 147 55.3 0.5 -11.9 251 7.8 44.9 72.1 222 -04051601.9V9 0 7.5 608 -65 1315 120 61.8 0.5 -19.3 286 7.0 35.7 85.8 189 -04051521.PIR 0 6.8 724 -30 1545 91 60.8 0.3 -21.3 289 7.3 36.7 70.4 224 -04051520.Y26 0 7.0 965 -32 1206 89 60.4 0.7 -23.7 287 7.8 40.0 67.1 217 -99053023.P07 0 12.1 2286 -113 1897 53 39.7 0.1 -8.5 315 7.8 22.5 45.3 165 -99052800.FTW 0 12.2 1104 -4 954 41 33.8 0.3 -12.6 256 6.8 24.6 36.5 103 -99052503.FST 0 10.3 1116 -185 1882 122 53.5 0.0 -9.7 271 8.3 44.1 67.4 157 -99052502.INK 0 11.4 1576 -110 1665 119 56.3 0.4 -10.0 270 7.8 39.9 60.4 191 -99052420.ABQ 0 8.1 781 -71 1338 71 34.2 0.2 -13.9 212 8.5 24.7 44.7 132 -99052220.TUL 0 16.0 3471 -3 869 32 31.1 0.6 -12.1 269 7.3 20.4 36.1 91 -99052200.SNY 0 8.7 1439 -7 1674 53 48.7 0.2 -12.8 266 7.7 28.2 65.4 147 -99052123.RAP 0 8.6 1729 -70 1711 131 43.6 0.4 -16.2 256 8.7 23.0 67.0 178 -99052001.MOT 0 8.0 903 -1 1506 2 27.5 0.0 -17.4 240 7.0 14.4 59.7 47 -99051700.LAA 0 7.5 817 -141 1731 124 65.0 0.1 -15.0 234 8.6 43.8 78.0 361 -99050519.MVN 0 12.9 1777 -10 790 108 57.7 1.8 -14.1 237 6.6 41.0 44.8 194 -99043001.INK 0 12.4 2333 -60 967 95 52.8 1.8 -11.4 237 8.1 32.9 71.8 280 -99042900.BIL 0 6.5 60 -143 1109 133 46.8 0.0 -17.8 182 7.5 39.8 84.0 324 -99042800.EVV 0 9.5 305 -3 1146 22 26.2 0.0 -15.6 225 6.4 18.9 38.1 56 -99042701.OKC 0 8.9 873 -24 1056 47 27.4 0.2 -20.3 275 7.9 23.0 44.2 88 -99042322.LOZ 0 12.8 1995 -5 979 77 37.3 1.0 -11.6 287 6.9 30.4 44.4 71 -99042319.EZF 0 10.2 1142 -51 1722 106 57.2 0.3 -14.2 276 6.9 38.0 68.5 172 -99042203.GOK 0 12.3 2307 -132 894 364 53.9 3.4 -16.0 254 8.5 31.2 54.6 401 -99042123.BMI 0 11.6 1687 -24 839 261 53.4 3.9 -16.4 252 7.8 45.9 57.4 408 -04083002.GCK 0 10.7 1029 -108 1687 204 32.5 0.2 -8.1 315 6.8 29.0 26.2 278 -04083000.SUX 0 10.7 779 -7 1471 199 42.6 0.6 -12.9 289 6.7 36.3 45.9 296 -04082622.C23 0 10.2 983 -43 1349 25 41.1 0.1 -15.8 254 7.2 17.8 70.6 46 -04082621.MCW 0 15.4 2478 -27 1087 26 46.1 0.5 -9.9 239 7.0 37.9 68.9 181 -04082522.FSM 0 18.2 3688 -45 1240 101 33.9 1.6 -6.7 244 6.2 16.5 39.6 113 -04082522.BIS 0 10.2 2077 -41 1811 74 38.1 0.2 -15.2 230 8.4 22.8 43.2 103 -04082503.MHK 0 19.2 4217 -59 627 274 31.2 5.7 -7.9 224 7.5 31.4 51.8 392 -04082501.MHK 0 18.9 4262 -45 721 150 29.9 3.2 -7.4 240 7.1 28.3 50.9 241 -04082020.BGM 0 14.6 1425 -21 712 95 53.2 1.2 -9.5 238 5.9 38.1 53.7 106 -04082018.ORH 0 15.1 2067 -19 1051 47 40.0 0.6 -8.9 256 6.1 29.0 39.9 132 -04081918.LBE 0 14.4 1183 -7 597 105 39.9 0.8 -8.7 270 5.6 40.5 44.4 152 -04081901.PIA 0 13.9 1294 -107 1203 377 40.4 1.6 -7.9 277 5.6 39.8 43.3 465 -04081822.BRL 0 15.3 2600 -41 963 377 41.3 6.8 -9.4 276 6.6 42.5 42.9 508 -04081421.LIC 0 9.9 1288 -66 1242 15 32.2 0.1 -10.2 333 7.8 25.5 42.7 65 -04080321.OAX 0 18.7 4816 -44 1389 92 36.9 1.7 -5.9 259 7.0 23.6 38.1 189 -04080202.Y26 0 15.4 3187 -169 1209 336 55.2 1.6 -9.3 291 8.1 28.5 83.2 385 -04080123.Y22 0 8.5 1290 -28 3011 -1 45.9 0.0 -10.5 298 8.6 30.2 71.2 158 -04073101.GAG 0 14.4 2006 -116 1300 54 42.0 0.3 -6.2 308 6.7 14.8 44.7 98 -04072102.FSD 0 19.9 4659 -49 869 261 26.0 5.3 -5.9 278 7.3 28.0 37.4 426 -99081101.HLC 0 17.4 3928 -33 1289 71 38.3 1.3 -5.1 243 6.7 21.0 34.5 152 -99081023.AKO 0 14.9 2910 -32 1271 87 33.9 1.0 -6.5 232 7.6 22.7 45.7 163 -99080901.DIK 0 12.0 2409 -98 1891 48 58.5 0.1 -10.8 267 8.5 29.7 54.5 94 -99080822.2WX 0 10.3 1972 -32 2526 39 44.1 0.0 -8.8 262 8.3 27.2 41.0 117 -99080702.RAP 0 12.7 921 -36 1200 35 33.6 0.1 -6.6 268 6.3 20.0 48.7 72 -99080301.LWT 0 8.5 449 -155 1772 53 48.3 0.0 -10.3 278 7.8 29.4 70.4 131 -99073100.JKL 0 15.8 3605 -30 1833 89 22.3 0.0 -5.9 355 6.7 22.8 19.6 158 -99073020.IPT 0 15.0 2685 -12 1238 32 34.0 0.4 -8.7 319 6.3 16.0 50.7 72 -99072922.FVX 0 14.5 1431 -13 1556 81 34.3 0.3 -6.0 327 5.6 22.6 48.0 117 -99072902.XVG 0 12.7 1459 -186 1710 319 58.3 0.1 -9.5 302 7.7 41.9 73.8 381 -99072900.ADG 0 14.8 1974 -6 1415 63 37.3 0.5 -9.4 298 7.1 21.7 66.3 118 -99072420.MHT 0 14.8 1594 -17 1088 66 27.8 0.5 -9.7 275 6.5 25.2 56.1 134 -99072319.RAP 0 10.6 1320 -19 2145 52 38.7 0.0 -7.5 263 7.3 22.5 54.0 87 -99072300.FAR 0 16.2 2819 -34 1355 81 35.4 0.9 -8.5 247 7.6 27.9 55.9 137 -99071923.GDV 0 11.9 1807 -31 1654 21 41.3 0.1 -11.2 254 7.9 18.9 69.4 67 -99071302.FAR 0 12.1 1948 -48 1552 125 38.2 0.7 -12.5 297 7.2 27.2 61.0 158 -99071302.DVL 0 10.4 1453 -76 1761 69 42.5 0.1 -13.5 288 7.5 28.3 62.4 124 -99071300.OLF 0 9.2 1101 -38 2374 25 49.7 0.0 -10.3 281 7.3 26.5 65.7 106 -99071202.AIA 0 9.4 1094 -73 1844 -8 27.8 0.0 -11.3 327 8.0 26.7 47.0 79 -99070804.GDV 0 14.2 2058 -209 1364 472 61.7 0.0 -7.6 251 8.0 40.8 78.6 551 -99070421.ERY 0 19.1 3756 -61 791 95 32.9 1.8 -6.7 267 8.2 22.2 36.6 98 -99070207.SFD 0 9.5 32 -374 1535 254 82.4 0.0 -10.7 263 7.4 45.0 92.7 464 -99070103.SWO 0 18.3 2994 -18 703 229 51.1 5.8 -4.6 303 6.4 25.9 51.9 297 -99070103.GCK 0 15.2 2113 -124 873 95 73.0 1.0 -6.5 294 7.5 37.6 74.8 319 -99063023.LBF 0 9.7 291 -114 1136 0 76.3 0.0 -12.3 289 6.9 54.3 115.6 214 -99062801.BGD 0 13.8 2864 -63 2251 73 37.7 0.0 -5.0 266 8.5 22.5 43.1 130 -99062522.DIK 0 12.8 2775 -1 1732 -52 57.7 -0.4 -10.3 230 8.2 35.4 58.9 132 -99062501.VTN 0 11.7 1035 -41 1545 55 41.3 0.2 -8.2 282 6.6 23.6 41.7 120 -99062400.BGD 0 12.2 2544 -17 2195 10 13.6 0.0 -6.5 288 7.8 22.6 35.1 91 -99060601.P07 0 11.8 1543 -130 1771 -31 45.2 0.0 -8.7 243 7.9 18.4 58.3 32 -99060523.LBF 0 10.7 2070 -28 1957 91 62.6 0.1 -12.9 197 8.5 25.9 90.4 131 -99060302.IML 0 10.0 869 -198 1657 237 43.7 0.0 -11.0 225 8.5 39.8 66.5 421 -99060202.GCC 0 6.3 226 -83 1883 18 41.3 0.0 -15.4 262 8.3 26.0 42.6 126 -99060200.FTW 0 16.8 3982 -31 1338 62 35.0 1.0 -11.1 275 8.5 25.7 60.3 144 -99053102.MHK 0 11.6 903 -51 1360 108 32.8 0.3 -11.3 270 6.9 30.0 24.5 179 -99120303.ADM 0 9.7 1355 -50 974 250 42.8 2.4 -22.1 217 8.5 35.9 65.7 332 -99112303.RBD 0 13.2 1077 -16 789 138 48.1 1.2 -13.6 235 6.4 25.1 60.9 176 -99112302.HBR 0 8.7 124 -124 660 53 47.7 0.0 -17.1 219 6.7 41.5 75.7 132 -99100823.FSI 0 10.1 649 -14 1313 5 36.2 0.0 -13.6 219 6.3 14.3 67.9 56 -99092600.GKY 0 13.1 1483 -15 1429 43 28.0 0.2 -9.4 340 6.3 21.5 55.3 182 -99092522.D07 0 6.4 163 -199 2219 136 65.7 0.0 -15.8 242 8.3 31.8 105.7 206 -99092004.RRC 0 11.2 292 -200 1044 70 37.2 0.0 -11.2 270 6.7 28.8 60.6 216 -99092000.OKC 0 11.1 1068 -42 1896 56 39.5 0.0 -10.1 290 6.8 29.0 60.9 190 -99091923.CSM 0 11.9 1645 -3 1885 18 41.3 0.0 -9.8 280 7.0 27.5 64.0 178 -99091920.CGZ 0 11.2 802 -16 1905 19 39.1 0.0 -8.7 245 6.5 16.0 60.3 61 -99091207.SLP 0 15.6 2094 -69 507 92 45.4 1.3 -10.8 271 8.2 16.8 55.8 121 -99091200.LBL 0 11.9 1180 -121 1590 31 43.2 0.1 -9.0 275 7.8 25.7 65.5 84 -99091122.HLC 0 12.4 1517 -36 1221 59 37.8 0.4 -11.3 253 7.4 21.0 66.2 94 -99091101.AFW 0 13.1 1250 -24 1970 21 29.5 0.0 -7.4 297 6.2 21.7 52.8 139 -99082300.ABR 0 11.7 1432 -38 1851 61 40.1 0.1 -9.6 289 6.9 20.3 45.5 101 -99082104.HON 0 13.3 1187 -244 1155 197 38.1 0.0 -8.9 281 7.4 31.4 54.2 238 -99082100.LBF 0 9.8 20 -311 1794 44 34.8 0.0 -7.8 321 7.1 19.7 46.1 126 -99082022.DIK 0 11.7 1445 -10 1669 21 33.6 0.1 -7.8 298 6.3 17.8 36.0 58 -99081922.MLS 0 7.1 393 -105 3278 19 33.8 0.0 -10.0 244 8.6 22.0 37.3 120 -99081800.RRT 0 11.4 1524 -26 847 90 49.2 1.1 -17.7 268 7.3 32.2 62.0 126 -99081400.ALB 0 16.8 1843 -4 701 196 38.5 2.3 -6.3 249 5.8 29.9 48.4 252 -99081202.GCC 0 10.6 877 -99 1162 63 34.5 0.2 -10.2 218 7.5 17.7 54.6 98 +FILENAME CAT MLMIXR ML CAPE ML CIN MLCL(MAGL) 0-1SRH 0-6KT STPC 500 T (C) 500DIR 7-5 LR 0-3(KT) 0-9(KT) 0-3 KM SRH (M2/S2) +00042320.TXK 2 12.9 1702 -1 657 134 61.7 2.3 -14.0 250 6.5 32.8 76.6 166 +00042001.PPF 2 13.5 2614 -50 1216 227 59.9 4.7 -12.9 234 7.5 39.7 73.5 244 +00032900.FTW 2 13.1 2058 -42 1069 83 49.7 1.3 -15.2 245 8.0 21.9 87.1 126 +00032304.SJT 2 11.9 1680 -119 896 119 61.1 1.1 -15.5 212 9.1 38.4 66.9 217 +00031622.ATT 2 9.4 1019 -7 1566 12 45.8 0.0 -17.5 249 8.0 34.4 53.7 159 +00021323.LRF 2 9.2 1256 -9 1066 82 46.9 0.8 -21.2 249 7.5 32.3 51.4 114 +00010323.MEI 2 13.4 1148 -15 769 241 57.2 2.6 -10.0 226 6.1 38.8 71.2 288 +00010319.GWO 2 12.8 1168 -9 770 202 66.4 2.4 -13.0 223 7.5 47.3 75.1 246 +03050500.UMN 2 13.8 2392 -10 773 341 66.3 8.2 -13.4 237 7.7 49.1 93.8 411 +03050500.JBR 2 15.7 2713 -22 862 266 57.8 6.9 -10.7 240 7.1 50.5 82.9 440 +03050421.TUL 2 16.1 3621 -15 843 147 63.1 5.3 -11.7 230 7.3 45.6 100.2 160 +03050421.MKC 2 13.7 2002 -67 478 479 68.4 8.5 -14.6 224 7.9 48.1 89.8 508 +03050420.P#F 2 15.7 3397 -1 660 166 58.5 5.5 -12.7 230 7.8 34.3 100.9 195 +03050321.P#T 2 12.7 3156 -2 1967 61 36.2 0.0 -9.8 247 7.5 27.2 67.1 207 +03042503.JAN 2 13.5 2568 -27 924 257 44.3 4.9 -15.4 255 7.7 41.1 76.9 279 +03041922.PNC 2 11.5 1157 -40 665 212 87.9 2.5 -17.9 223 7.3 46.5 111.5 242 +03041523.CDS 2 10.7 1020 -106 1534 326 74.0 1.0 -12.4 234 7.5 56.1 83.8 531 +03041522.LBB 2 8.8 883 -53 1986 116 77.2 0.0 -11.7 243 7.5 48.5 87.4 276 +03040702.CLN 2 13.1 488 -133 780 363 62.7 0.8 -11.4 244 7.1 33.6 74.1 411 +03040623.ESF 2 15.8 1847 -29 621 166 51.8 2.6 -11.0 246 6.8 26.8 50.8 161 +03032722.MIA 2 12.4 299 -31 1074 187 48.8 0.4 -10.5 261 5.8 20.5 87.0 197 +01061900.ROS 2 13.6 2218 -30 1076 140 67.7 2.9 -11.1 250 8.2 40.5 73.6 279 +01061401.LNK 2 17.2 4665 -15 1190 173 39.2 4.3 -10.5 215 8.3 32.6 50.7 217 +01061120.ILL 2 14.7 3400 -120 1255 270 56.1 3.4 -10.8 259 8.6 41.9 54.8 448 +01060222.LOZ 2 9.7 164 -10 898 117 51.4 0.2 -13.4 270 5.3 39.8 66.8 189 +01053000.AMA 2 13.0 2887 -76 1322 166 48.4 2.2 -10.1 246 8.4 38.6 50.6 216 +01052902.LHX 2 10.9 1698 -120 1285 185 52.1 1.0 -10.0 251 8.2 38.9 60.5 365 +01052118.OZW 2 12.5 494 -2 775 133 33.4 0.4 -10.3 188 5.6 34.2 36.9 174 +01052022.MIN 2 16.9 3331 -2 711 122 47.8 3.2 -11.0 244 7.3 36.0 67.7 201 +01051022.MIW 2 12.8 2912 -24 1091 65 36.4 1.0 -16.0 255 7.9 28.8 43.0 141 +01051001.FBL 2 9.5 2106 -90 1776 330 50.0 1.0 -16.6 265 8.2 42.9 50.3 516 +01050200.AUM 2 11.2 1434 -74 1331 179 38.8 0.9 -13.3 251 7.5 36.0 52.3 237 +01042202.GBD 2 12.6 2145 -40 777 165 61.8 3.5 -13.6 229 7.8 41.6 62.6 328 +01041423.P28 2 12.3 2168 -54 827 145 76.4 3.1 -16.2 256 8.3 45.0 89.5 235 +01041117.LWD 2 11.9 968 -3 632 282 77.0 2.7 -15.1 208 7.5 38.2 81.4 327 +01040918.BVI 2 10.7 1326 -11 1210 102 57.2 1.0 -15.4 266 7.7 32.1 32.1 174 +01022422.SGT 2 11.8 1020 -15 967 335 52.8 3.0 -14.3 213 7.7 53.6 64.9 450 +00110820.HEZ 2 15.9 2158 -6 881 236 47.1 4.0 -8.5 204 6.2 29.0 68.5 266 +00103122.HLC 2 11.0 1274 -14 954 110 47.4 1.1 -14.1 202 7.4 32.6 74.4 169 +00092022.DAY 2 13.9 1299 -7 971 215 63.4 2.8 -8.2 237 6.1 37.5 61.0 237 +00072601.OTG 2 14.5 2869 -49 1055 88 42.5 1.7 -12.6 290 7.2 33.4 41.3 161 +00072523.RWF 2 14.6 2791 -13 1068 96 39.4 1.6 -12.0 275 7.0 29.2 35.8 163 +00071122.BKX 2 14.7 1167 -47 944 134 42.8 1.1 -7.8 261 6.8 27.2 67.9 205 +00070601.SNY 2 13.6 2847 -18 1681 52 57.5 0.5 -7.4 248 8.1 19.0 74.4 122 +00052319.BWG 2 13.7 2114 -41 1128 167 38.6 2.0 -11.4 294 6.9 36.9 62.8 278 +00051722.LXN 2 14.0 3552 -16 910 111 27.5 1.8 -13.9 169 8.4 28.1 44.5 170 +00051200.ALO 2 16.5 4382 -13 1110 168 51.1 5.6 -7.9 254 6.7 33.2 51.6 199 +00050101.MWL 2 13.0 2207 -103 1176 253 47.3 2.4 -12.4 227 8.2 40.3 37.8 297 +00042323.SHV 2 13.4 2001 -19 928 216 58.9 4.2 -13.0 261 6.7 41.9 60.0 296 +04051923.GFK 2 11.2 967 -44 828 233 54.9 2.1 -16.6 243 7.2 39.5 86.1 229 +04051302.ICT 2 15.9 3157 -12 538 223 36.4 4.3 -9.4 232 6.4 23.8 51.5 245 +04051101.LIC 2 9.0 1549 -59 1592 233 43.4 1.0 -11.5 244 8.4 35.1 46.6 395 +04042022.PIA 2 12.4 1852 -11 728 320 36.4 3.6 -14.7 235 6.2 38.5 40.1 488 +04032718.DDC 2 10.0 1332 -8 893 190 41.4 1.7 -16.6 206 7.5 30.8 47.5 198 +04030418.ABI 2 10.7 626 -20 1108 319 46.5 1.4 -13.7 196 7.0 40.3 84.2 350 +03111718.HOU 2 16.4 1980 -1 445 137 48.2 2.2 -12.4 207 6.6 24.0 77.0 158 +03111223.MFD 2 8.3 64 -56 890 219 99.1 0.1 -15.7 261 5.7 55.1 123.1 275 +03111220.MIE 2 9.7 388 -1 757 123 91.0 0.5 -15.6 258 5.7 47.1 117.3 205 +03082201.JXN 2 17.2 3046 -36 1091 255 31.0 3.6 -5.9 285 6.6 34.4 33.2 304 +03072122.AVP 2 14.3 1810 -16 1228 162 51.1 1.9 -7.9 239 5.6 45.7 49.9 148 +03072104.CID 2 17.8 2344 -22 462 187 48.9 3.6 -7.0 291 7.0 34.2 63.6 237 +03072101.ALO 2 15.0 1859 -107 921 156 49.6 1.5 -8.0 297 7.0 28.2 58.2 248 +03062500.HON 2 17.0 3737 -23 1021 335 52.2 10.7 -7.4 227 7.5 43.4 61.6 550 +03062422.MHE 2 19.5 5088 -22 717 256 55.5 12.1 -8.0 228 7.9 40.9 58.4 422 +03062421.MHE 2 17.5 3584 -16 768 252 56.0 8.4 -7.9 220 7.8 38.8 57.2 348 +03062302.P#8 2 16.8 3414 -169 1003 367 38.7 1.7 -6.8 227 7.6 30.2 57.1 437 +03062223.P#8 2 17.7 4366 -39 972 253 38.8 7.2 -8.3 246 8.6 34.3 54.7 387 +03061001.P#9 2 12.6 2103 -97 1467 421 51.0 2.8 -11.2 266 7.9 45.5 63.9 651 +03053103.CMI 2 12.6 701 -119 899 482 64.7 1.8 -11.6 292 6.3 36.9 85.1 523 +03053101.ILX 2 12.4 784 -55 1108 474 76.0 3.2 -8.5 294 5.0 45.0 90.9 524 +03051100.UIN 2 14.7 2093 -27 738 302 63.1 6.3 -11.7 240 7.7 43.7 97.9 354 +03051004.C34 2 17.3 3493 -14 749 452 53.6 14.1 -8.8 228 7.7 32.1 77.0 511 +03050923.HBR 2 11.1 1389 -64 2135 137 56.8 0.0 -9.1 231 7.7 35.8 78.1 219 +03050900.C30 2 14.6 1749 -112 819 321 69.8 3.3 -8.9 227 6.8 57.0 72.2 306 +03050823.C34 2 17.9 3605 -25 669 342 65.2 12.3 -7.2 233 7.1 42.3 72.0 318 +03050822.W#N 2 17.4 3730 -13 635 141 70.0 5.3 -10.1 228 7.6 45.5 81.3 173 +03050821.LW1 2 19.1 5309 -6 876 145 63.2 7.7 -8.7 235 7.4 31.6 71.3 182 +03050807.ADM 2 17.1 3114 -53 730 439 47.4 10.6 -9.3 253 8.0 50.2 61.5 608 +03050805.SPS 2 16.0 2409 -148 836 382 44.4 2.4 -9.1 262 7.9 43.1 59.0 798 +03050703.PAH 2 15.8 2873 -49 602 390 36.8 6.9 -13.6 237 7.9 35.3 70.1 454 +03050701.CGI 2 15.1 2935 -47 799 431 61.0 12.6 -14.4 269 7.8 32.8 83.2 580 +03050504.MKL 2 15.6 2334 -16 833 615 59.6 14.3 -9.9 251 7.1 62.0 77.1 842 +03050501.LZK 2 15.9 2390 -18 719 361 67.0 8.6 -11.0 237 7.4 41.7 97.3 397 +99120301.GOK 2 10.2 1811 -12 858 234 47.2 3.3 -21.1 202 8.2 32.4 63.0 262 +99081601.JMS 2 13.6 1255 -165 1044 130 48.5 0.3 -9.9 240 8.1 30.2 89.4 174 +99070900.ONA 2 18.4 3379 -18 992 385 46.0 10.0 -5.8 275 6.5 42.9 49.4 571 +99070400.OSC 2 15.9 1760 -27 1078 101 26.7 0.7 -6.7 320 6.2 28.3 31.6 163 +99060620.HCO 2 14.6 3241 -5 904 65 29.6 1.0 -16.1 175 8.1 26.8 70.8 115 +99060500.IEN 2 12.1 2533 -37 1323 70 52.4 1.0 -11.4 201 8.2 32.9 60.1 191 +99060400.HLC 2 15.7 4348 -16 1101 154 38.3 3.9 -9.3 240 7.5 36.9 40.6 277 +99060200.TBN 2 14.9 2338 -19 838 136 37.3 2.0 -10.3 259 6.5 40.0 21.6 223 +99060123.MKO 2 17.3 3739 0 888 68 38.1 1.6 -10.6 279 7.9 32.2 23.0 135 +99060100.LIC 2 9.1 1877 -49 1439 56 56.8 0.6 -13.7 249 9.2 34.3 62.4 140 +99051621.OMA 2 16.1 4691 0 824 102 38.6 3.1 -14.5 223 8.8 33.7 41.5 176 +99051122.BMQ 2 15.0 3545 -92 1026 40 35.1 0.6 -12.3 259 8.0 21.8 29.6 59 +99050408.JCT 2 13.0 2082 -218 838 355 55.0 0.0 -11.2 254 8.3 46.8 58.7 506 +99050402.GOK 2 13.9 3154 -61 723 366 51.4 9.2 -14.6 240 8.2 36.8 57.5 441 +99050401.ICT 2 12.6 2748 -7 1016 257 31.8 3.7 -14.7 227 7.9 40.5 70.4 415 +99050323.OKC 2 15.2 4117 -15 733 308 43.5 9.2 -13.2 243 7.8 43.2 70.1 401 +99050300.HSI 2 8.0 203 -4 845 168 41.5 0.2 -17.7 222 6.7 28.6 32.1 221 +99042200.END 2 12.7 3301 -34 1156 225 46.1 4.8 -15.4 236 8.1 35.1 48.2 242 +04082700.RDD 2 18.4 3706 -37 940 184 41.0 4.7 -6.9 255 7.1 28.7 60.7 258 +04071823.GFK 2 16.7 3575 -36 1246 117 45.4 2.4 -7.9 310 6.8 35.1 45.5 292 +04071302.GRI 2 15.9 3090 -197 1538 152 29.0 0.0 -7.9 298 8.5 13.8 50.5 173 +04062402.OSH 2 11.1 1428 -30 700 187 62.2 2.7 -16.7 257 6.5 50.9 79.3 234 +04061620.LAA 2 12.3 1494 -63 908 129 51.4 1.5 -9.4 252 7.7 34.1 57.1 369 +04061300.W#N 2 16.4 3866 -17 1255 231 34.6 3.8 -9.2 251 7.9 37.4 44.2 387 +04060701.MOT 2 10.4 295 -316 1541 461 68.3 0.0 -8.4 254 6.7 33.2 82.6 561 +04060621.C02 2 9.9 1824 -59 2285 83 55.5 0.0 -10.8 234 7.9 39.7 69.2 64 +04053023.IND 2 17.3 2618 -10 577 361 58.6 9.2 -9.1 248 6.9 35.7 45.1 369 +04053020.SDF 2 16.6 2653 -2 807 250 52.4 5.8 -9.4 245 6.8 37.1 41.1 317 +04053002.OKC 2 15.5 2559 -32 1162 314 55.7 6.2 -7.3 244 7.0 35.6 70.5 434 +04053002.ICT 2 16.1 3240 -98 992 315 44.2 5.1 -10.4 245 7.9 25.8 56.2 399 +04053000.MCI 2 16.0 3437 -5 863 239 36.5 5.0 -12.8 232 8.3 27.4 42.9 372 +04052922.C33 2 16.5 4081 -4 1356 126 51.4 2.8 -7.8 244 7.4 36.9 74.7 248 +04052921.TOP 2 16.1 3843 -13 936 78 32.5 1.6 -12.5 233 8.0 17.3 39.0 190 +04052421.STJ 2 15.6 3982 -40 991 76 40.4 2.0 -11.9 234 7.7 26.3 67.6 270 +04052300.P#8 2 15.0 3882 -47 1262 228 54.5 5.9 -10.5 233 7.9 34.1 69.9 334 +04052221.MCK 2 13.2 3453 -37 1185 103 72.0 2.9 -12.3 231 8.6 35.5 82.5 224 +04052219.GLD 2 9.9 1898 -54 1700 22 59.0 0.1 -12.7 233 8.4 12.6 69.5 76 +04052122.CID 2 15.4 2960 -48 971 309 36.6 5.6 -11.5 268 7.4 36.1 50.0 390 +53031321.FWH 2 10.8 727 -98 981 119 51.2 0.5 -16.3 248 8.1 30.6 80.9 266 V +55052521.LTS 2 15.0 4060 -25 1509 322 66.4 6.4 -12.3 225 8.6 37.0 53.5 355 V +56041521.GUN 2 11.7 1189 -11 1302 251 72.4 2.1 -13.6 230 7.3 55.7 66.8 370 V +57040221.FWH 2 13.2 3580 -3 942 94 35.8 2.0 -15.8 189 7.9 26.1 52.8 122 V +57052021.TOP 2 14.0 2801 -2 920 142 55.7 3.7 -13.8 207 7.7 48.0 77.2 228 V +57052121.BYH 2 15.7 2854 -5 1106 236 49.7 5.0 -10.9 230 7.2 33.0 92.5 240 V +57061418.PIA 2 15.9 2118 -6 986 394 50.0 7.0 -8.6 252 6.9 52.8 52.1 496 V +59040100.FWH 2 12.6 3068 -26 987 124 42.8 2.7 -17.6 247 9.0 28.0 61.5 142 V +61050800.FSM 2 14.5 2844 -7 1215 261 61.7 5.8 -11.4 240 7.5 42.2 65.9 323 V +61050600.FSM 2 14.3 2667 -12 1121 245 65.5 5.8 -13.1 240 8.3 61.7 43.1 430 V +62052600.OKC 2 14.3 4171 -76 1591 154 33.3 1.2 -12.0 264 8.6 25.3 43.2 228 V +62080700.TOP 2 20.6 6024 -12 1167 160 42.3 5.7 -7.3 250 7.7 32.4 60.6 243 V +64050600.OMA 2 12.7 2395 -61 1048 349 68.6 7.4 -13.8 224 8.8 54.6 89.3 498 V +65041200.FNT 2 11.2 1814 -1 974 166 91.0 3.0 -17.7 250 7.7 46.4 91.6 372 V +66042800.FWH 2 14.1 3342 -17 1291 148 38.0 2.2 -11.8 265 7.2 39.3 49.0 269 V +66030400.HKS 2 12.2 1434 -10 831 138 47.6 1.6 -14.0 234 7.6 49.0 77.8 142 V +67061100.OKC 2 14.4 3497 0 1569 144 32.2 1.2 -11.0 235 8.7 35.0 51.1 260 V +68110400.VPS 2 12.8 1596 -2 812 129 50.5 1.7 -13.4 251 5.9 30.3 72.0 184 V +69041806.VPS 2 15.2 1013 -8 445 370 55.8 3.5 -11.0 248 6.9 42.3 73.3 439 V +69062400.TIK 2 18.4 4403 -4 776 317 37.5 8.7 -9.4 240 7.5 45.3 56.2 431 V +70100600.TIK 2 13.7 1865 -3 772 241 41.1 3.1 -12.2 230 6.7 35.4 55.6 335 V +71022200.JAN 2 12.8 938 -4 930 470 74.7 4.4 -11.8 211 6.7 57.8 77.3 590 V +73052800.MGM 2 16.4 2337 -2 1017 293 53.5 6.0 -7.9 239 6.2 45.6 45.2 386 V +73041600.VCT 2 15.4 2861 -37 1272 385 48.1 6.4 -12.9 231 8.1 35.7 72.2 377 V +74040400.MGM 2 14.8 2955 -2 1017 161 52.0 4.1 -12.8 235 8.2 39.5 59.4 253 V +74040400.BNA 2 14.6 2744 -31 970 209 77.8 5.7 -13.3 238 7.8 57.0 80.2 301 V +74040400.DAY 2 12.8 2185 -7 986 619 90.8 13.5 -13.1 235 7.1 71.9 91.6 919 V +75042500.UMN 2 15.7 5306 -1 837 145 53.3 6.8 -13.8 255 7.3 41.6 61.8 185 V +74060900.UMN 2 17.0 3643 -2 987 363 37.0 8.1 -6.7 231 7.6 41.4 27.5 508 V +75063000.BIS 2 13.6 3158 -76 1566 198 41.8 1.6 -12.3 233 8.6 26.8 55.7 204 V +76042000.SEP 2 13.7 3326 0 1092 305 45.1 6.9 -14.1 240 7.6 33.7 48.9 358 V +77040418.CKL 2 14.1 1633 0 994 247 66.8 4.0 -9.8 231 6.0 52.7 80.0 333 V +78060100.TOP 2 16.2 4279 -1 1160 267 35.7 5.7 -12.7 233 7.6 36.3 57.0 349 V +79041021.SEP 2 12.8 2186 -9 912 345 48.2 6.1 -13.1 228 8.1 42.9 54.3 468 V +79050300.OKC 2 13.9 2775 -4 877 218 73.2 6.0 -12.3 246 7.2 57.7 103.2 279 V +79033000.OMA 2 10.1 1322 -24 1155 223 56.4 2.4 -15.8 232 7.1 49.1 52.9 345 V +80040800.UMN 2 10.2 2256 -3 1473 97 39.6 0.8 -18.5 236 8.4 39.7 92.1 247 V +84060800.TOP 2 16.2 2284 -16 918 560 74.0 12.8 -6.0 237 6.2 49.1 84.6 705 V +84031600.1M1 2 12.2 2339 -1 1056 250 47.1 4.3 -14.9 251 6.9 30.4 55.5 292 V +86072900.OMA 2 16.4 4252 -21 1667 112 48.4 1.3 -10.6 268 8.6 28.2 81.3 151 V +87111600.GGG 2 12.8 1593 -8 723 298 61.9 4.8 -15.3 178 7.9 43.3 65.2 326 V +90061600.LBF 2 16.1 3827 -1 1050 21 42.1 0.5 -10.6 185 8.5 24.5 74.1 95 V +90060300.PAH 2 15.6 2246 -3 1039 274 47.1 4.7 -7.6 251 7.0 57.8 49.8 384 V +91042700.OUN 2 15.8 4387 -8 898 195 50.3 7.2 -11.5 242 7.0 44.2 54.9 370 V +92062800.AMA 2 14.6 3148 -3 1020 83 44.3 1.9 -10.3 249 7.9 32.7 52.7 220 V +92061700.OVN 2 18.7 4878 -1 1119 262 50.4 9.5 -6.5 237 6.9 46.6 64.6 473 V +93042500.OUN 2 11.6 2675 0 1209 113 49.6 2.0 -14.6 235 6.9 35.5 65.5 168 V +93050700.TOP 2 13.7 2046 -7 666 484 58.8 9.7 -13.1 217 7.0 55.4 51.4 644 V +93060700.LBF 2 15.9 4738 0 930 328 59.3 15.3 -8.6 229 7.6 41.9 67.6 583 V +94042600.SEP 2 12.9 2562 -34 1365 201 51.9 2.8 -11.5 258 7.4 41.3 51.0 198 V +95051900.BMX 2 15.7 2868 -5 989 239 39.3 4.5 -9.9 247 6.7 31.9 49.1 230 V +98040900.BMX 2 14.6 2259 -18 642 136 77.9 3.1 -13.9 240 7.9 50.3 100.1 290 V +98041700.BMX 2 14.7 2038 0 704 263 73.4 5.4 -11.9 245 6.8 36.3 98.6 327 V +99050400.OUN 2 13.4 3644 -22 1050 271 41.4 6.5 -14.9 225 8.4 32.0 37.7 343 V +00121618.BMX 2 12.0 1369 -1 737 279 66.9 3.8 -14.1 220 6.7 51.3 90.8 339 V +00092100.ILN 2 12.5 747 -19 1280 611 75.3 3.3 -7.5 240 5.4 64.7 73.0 810 V +01061400.OAX 2 16.8 4639 -1 1278 127 38.6 2.8 -11.3 215 9.0 35.2 48.5 145 V +01112412.JAN 2 13.0 1392 -2 773 366 50.4 4.3 -10.1 225 5.7 52.4 48.8 504 V +01112418.BMX 2 13.4 1498 -1 655 227 52.0 3.0 -11.3 220 6.1 43.1 61.9 319 V +02111018.ILN 2 11.3 1239 0 734 385 54.4 4.3 -13.7 230 6.6 49.5 103.8 417 V +02062400.ABR 2 17.1 4378 0 1112 85 50.6 2.8 -10.5 245 8.2 29.8 57.9 153 V +03050900.OUN 2 17.0 3871 -32 990 336 62.0 13.0 -6.9 235 6.3 53.9 80.1 364 V +94032718.CKL 2 15.5 1965 0 743 344 72.9 6.8 -9.1 233 6.3 54.7 56.0 403 V +81052300.OKC 2 13.1 2411 -70 1142 203 49.1 3.0 -13.7 235 9.0 37.6 49.1 249 V +65041100.LIT 2 12.7 1815 -1 1365 140 52.3 1.4 -11.1 248 7.2 39.4 64.4 212 V +53051121.FWH 2 13.2 1452 -55 1150 122 53.0 1.3 -11.2 248 7.3 40.4 64.4 209 V +90082900.PIA 2 21.0 6470 -2 974 110 33.6 4.0 -7.3 297 7.1 23.3 54.6 147 V +55042411.GUN 2 13.1 1784 -7 917 345 68.7 6.2 -12.7 248 7.1 44.1 85.9 375 V +56040321.HKS 2 13.0 1491 -14 1212 173 82.1 2.0 -12.4 221 7.5 52.1 107.5 267 V +56051221.MTC 2 13.8 2444 -8 1001 124 69.2 3.0 -14.4 266 7.5 25.2 94.3 162 V +60052000.TOP 2 14.3 3120 -23 1112 167 43.1 3.3 -13.3 213 8.2 32.6 58.1 244 V +66060900.TOP 2 15.9 2226 -24 819 296 59.5 6.5 -8.6 223 7.1 47.3 69.8 397 V +68082000.GRB 2 16.1 2780 -11 1217 173 50.0 3.1 -7.3 258 6.4 27.0 43.6 195 V +74040318.BNA 2 13.0 2906 -5 1157 205 63.1 5.0 -15.5 229 8.2 48.6 76.4 333 V +61051500.PIA 2 12.4 1259 -2 817 196 68.7 2.5 -13.0 202 6.6 36.7 80.9 205 V +54050121.TIK 2 13.0 1988 -17 709 242 56.2 4.5 -13.5 203 8.0 39.2 73.2 282 V +55060421.SLN 2 13.4 3594 -5 1422 36 25.3 0.3 -12.7 225 7.9 23.8 30.4 152 V +70061300.COU 2 16.5 3499 -11 949 204 64.2 7.2 -7.8 246 5.5 49.6 57.1 318 V +76032700.1M1 2 11.8 1820 -17 961 187 41.8 2.4 -17.1 230 8.2 57.3 71.8 243 V +04071318.ILX 2 19.0 4958 -10 1102 117 37.5 3.3 -10.9 305 7.9 33.8 45.3 197 V +68051600.LIT 2 15.6 2612 -4 971 250 52.8 5.7 -11.7 260 8.6 45.5 72.5 337 V +65031700.OKC 2 11.1 1628 -3 687 269 91.0 4.4 -17.9 235 7.1 58.8 114.4 325 V +00050901.AIZ 0 13.1 1987 -68 1453 84 35.7 0.5 -11.3 241 8.5 41.9 28.1 204 +00050722.SNY 0 9.8 2015 -39 1845 23 56.1 0.1 -12.4 245 8.7 34.2 64.8 128 +00050707.OGA 0 11.6 1205 -190 787 34 39.5 0.0 -11.3 236 8.2 22.0 47.2 115 +00050323.RBD 0 11.2 940 -3 1077 54 42.9 0.3 -14.6 290 6.2 28.9 58.4 174 +00043001.ABI 0 11.9 2549 -66 1686 111 39.6 0.5 -11.8 268 8.4 26.8 40.5 228 +00042423.LAA 0 5.4 613 -132 2566 97 54.0 0.0 -16.3 278 8.9 29.1 72.7 192 +00042422.EHA 0 6.7 706 -56 2143 58 53.8 0.0 -15.2 295 8.1 25.8 83.4 159 +00042021.BWG 0 11.2 1126 -13 1162 167 52.1 1.4 -13.5 240 7.4 46.8 53.8 253 +00042021.BNA 0 11.2 989 -26 1114 165 53.6 1.3 -13.7 242 7.7 45.4 65.0 244 +00042001.MCI 0 12.4 2093 -43 1300 141 61.9 2.1 -12.3 226 7.0 33.4 81.4 163 +00042000.JCT 0 13.1 2950 -156 1701 170 51.7 0.4 -9.4 253 8.2 40.5 71.8 240 +00041822.SJT 0 7.1 414 -185 3169 -7 49.4 0.0 -9.5 243 8.2 32.3 60.6 45 +00041620.SUS 0 9.5 579 -1 968 46 41.8 0.2 -18.1 247 6.6 30.2 69.5 154 +00041602.GRA 0 10.2 901 -182 1269 251 56.8 0.2 -17.0 244 8.6 34.1 76.8 276 +00033000.SHV 0 12.6 1635 -14 797 147 57.7 2.3 -15.2 267 7.2 33.9 91.9 219 +00032900.HYI 0 15.8 2875 -10 771 106 60.6 3.0 -11.6 251 7.3 36.4 82.8 192 +00032522.BNA 0 8.3 268 -8 1461 34 37.5 0.0 -16.9 270 6.2 23.2 61.3 60 +00032207.MAF 0 11.5 1952 0 562 249 54.6 4.4 -16.4 196 8.3 45.0 77.8 468 +00031600.CSM 0 8.3 808 -99 1327 59 34.5 0.1 -17.7 251 7.6 25.7 34.3 101 +00031022.BHM 0 10.3 614 -95 1034 103 48.9 0.4 -15.8 238 7.0 33.1 49.4 179 +00030923.LRD 0 13.5 2701 -7 1360 -13 41.3 -0.2 -12.5 256 7.5 20.8 59.4 95 +00030920.GFL 0 7.1 1 -425 1416 88 63.6 0.0 -18.7 242 8.1 39.6 77.0 165 +00030900.UNU 0 9.9 1306 -11 1121 172 50.6 1.7 -17.3 203 6.6 39.6 44.1 206 +00030900.CLI 0 9.4 673 -29 1009 196 53.3 1.2 -16.9 202 6.6 39.4 53.8 226 +00030302.PWG 0 12.0 1469 -17 1106 252 60.9 3.3 -12.2 259 6.1 45.0 75.3 323 +00030222.AFW 0 11.1 999 -6 913 256 68.3 2.6 -13.5 238 6.5 36.9 80.1 345 +00022606.CRS 0 13.3 2158 -10 637 191 48.7 3.3 -14.8 239 6.9 25.4 69.2 184 +00022523.FSD 0 7.3 495 -2 929 82 38.3 0.3 -21.9 172 7.7 30.1 52.5 83 +00022405.FAM 0 9.2 437 -46 772 315 46.8 1.1 -18.0 235 6.3 29.2 42.2 331 +00072222.BBW 0 11.9 1462 -1 1218 36 35.2 0.2 -11.1 328 6.5 26.6 43.9 124 +00072220.GLD 0 10.6 1162 -15 1699 26 39.9 0.1 -10.2 319 7.4 19.8 55.8 82 +00072122.BFF 0 9.8 1738 -8 2036 34 42.0 0.0 -9.9 297 7.7 36.2 48.9 131 +00072022.AKO 0 14.0 3465 -7 1063 22 46.2 0.6 -10.2 278 8.3 29.1 64.7 106 +00072000.BVX 0 17.4 3847 -11 1674 30 36.4 0.2 -7.1 298 6.9 26.0 29.2 130 +00071022.RCA 0 13.2 1916 -28 1452 23 41.1 0.2 -9.2 238 7.6 21.4 68.1 95 +00071001.LBF 0 14.7 2947 -100 1740 24 28.1 0.1 -5.6 239 7.8 23.6 37.9 109 +00070922.MHE 0 16.8 3556 -34 1430 6 40.7 0.1 -6.1 258 6.7 18.8 41.5 109 +00070922.GGW 0 13.3 2242 -12 1039 31 46.6 0.5 -11.4 226 7.4 18.7 71.4 74 +00070901.LWT 0 8.7 874 -65 1998 38 58.4 0.0 -11.5 232 8.1 32.4 92.6 236 +00070805.LVN 0 18.2 2722 -69 530 388 37.6 5.8 -9.2 261 8.1 22.9 53.3 407 +00070803.JDN 0 7.6 57 -220 2275 33 69.9 0.0 -11.7 240 7.8 39.2 84.5 167 +00070601.CUT 0 11.7 2058 -14 1543 37 55.5 0.3 -9.9 245 8.5 28.5 78.8 136 +00070523.MCK 0 16.4 3979 -55 1631 151 45.4 1.6 -6.8 254 8.1 24.5 59.5 231 +00070521.RAP 0 14.5 3135 -2 1289 15 44.0 0.3 -10.0 233 8.0 19.5 68.5 93 +00070501.2WX 0 11.2 1574 -93 1339 -29 47.6 -0.2 -12.4 230 8.6 28.2 78.4 64 +00070421.JDN 0 8.1 1033 -47 1927 -17 41.2 0.0 -15.0 209 7.9 26.2 68.3 49 +00070302.GGW 0 10.6 1484 -86 1685 121 67.7 0.4 -12.6 252 7.9 36.1 78.0 267 +00070222.FOD 0 17.4 3585 -43 1097 53 23.7 0.0 -9.5 292 7.5 16.4 31.4 91 +00070201.ABR 0 14.2 3411 -108 1790 100 24.5 0.0 -10.0 259 8.3 16.6 39.9 145 +00070123.ELO 0 13.3 2835 -49 1339 117 57.8 2.1 -13.1 291 7.7 31.9 66.7 228 +00070122.ABI 0 13.9 1505 -15 1776 40 26.6 0.1 -5.4 261 5.7 21.4 25.5 120 +00070100.JLN 0 15.5 2255 -3 786 81 43.6 1.3 -7.6 313 5.9 25.5 56.4 208 +00062923.ELM 0 8.8 332 -11 1098 19 33.4 0.0 -16.5 253 6.2 19.9 82.5 60 +00062923.D07 0 9.6 1600 -26 1649 30 42.4 0.1 -15.7 295 7.7 30.2 50.5 90 +00062901.LAM 0 11.8 506 -57 1728 28 25.5 0.0 -6.5 268 6.3 18.5 25.2 126 +00062519.AIO 0 14.7 2632 -77 1269 122 38.0 1.2 -10.6 279 7.3 29.0 32.0 250 +00062402.RCA 0 11.5 1507 -76 1200 0 40.3 0.0 -11.0 273 7.9 29.4 67.6 159 +00062322.SDA 0 16.8 4294 -9 1398 56 28.6 0.7 -9.2 284 7.3 21.1 46.7 160 +00061522.OKV 0 14.5 746 -31 749 130 32.3 0.5 -8.8 240 6.0 35.1 29.5 198 +00061323.P28 0 14.3 3106 -53 1734 60 41.3 0.3 -10.0 260 8.0 15.7 31.7 91 +00061122.DFS 0 13.5 3143 -11 1597 67 28.6 0.4 -8.2 251 7.7 28.8 45.0 62 +00060400.GLD 0 9.0 1430 -74 2560 51 35.6 0.0 -10.7 313 8.7 29.0 38.3 146 +00060221.CEF 0 12.1 326 -141 1452 156 38.5 0.1 -9.8 279 6.6 44.9 47.0 277 +00052701.SZL 0 13.7 1477 -23 1157 198 50.0 2.1 -9.7 244 6.7 38.9 69.4 232 +00052501.PPA 0 15.2 3731 -83 1597 78 46.6 0.7 -8.0 249 8.4 33.0 60.7 288 +00052501.ADK 0 16.3 4569 -134 1861 108 40.3 0.2 -7.8 255 8.7 36.4 49.3 291 +00052219.AVC 0 10.1 628 -1 1000 2 52.8 0.0 -13.8 256 5.9 28.0 59.1 95 +00052021.VPC 0 13.0 805 -6 1196 15 39.2 0.1 -9.8 231 6.1 19.7 47.6 87 +00050922.IRS 0 12.0 729 -2 928 68 49.6 0.4 -13.6 230 6.9 46.6 41.5 178 +01041105.JCT 0 14.1 1545 -229 832 346 71.9 0.0 -9.7 230 8.5 44.0 97.0 386 +01041004.IND 0 11.4 1318 -107 1240 185 57.8 1.1 -13.8 292 7.2 35.6 68.3 216 +01040321.UNO 0 12.3 1279 -42 722 107 57.2 1.3 -13.7 270 7.4 36.3 60.7 225 +01040300.BFF 0 5.0 0 -9999 1708 161 63.5 0.0 -17.8 241 7.5 37.7 81.7 433 +01032404.ABI 0 10.8 1700 -61 813 65 27.5 0.5 -18.2 289 8.0 17.4 46.6 180 +01031202.FTW 0 11.7 1341 -9 490 161 53.1 1.9 -17.9 240 7.3 37.5 47.3 201 +01031123.BWD 0 10.1 846 -18 912 76 47.4 0.5 -17.4 245 7.7 31.1 69.7 133 +01022500.TOP 0 7.3 153 -15 715 148 78.6 0.2 -21.3 203 6.8 32.9 92.4 170 +00110907.GZH 0 15.4 1005 -3 768 172 47.3 1.4 -7.8 213 6.0 36.2 52.6 220 +00110906.EET 0 14.9 674 -3 539 277 52.5 1.6 -8.6 217 5.7 41.9 58.8 327 +00110121.CID 0 12.2 1537 -17 1087 164 40.8 1.6 -12.1 210 6.0 36.7 41.3 225 +00102323.ELP 0 9.8 1432 -3 1298 24 68.0 0.2 -14.2 201 7.5 36.8 65.9 132 +00102212.MWL 0 13.4 1016 -7 525 152 31.3 0.8 -11.5 208 6.2 22.4 43.6 149 +00101423.INK 0 8.5 757 -27 2381 63 29.5 0.0 -10.8 243 7.2 27.3 48.1 91 +00101408.CNM 0 11.5 1524 -124 1147 79 34.2 0.3 -10.4 246 7.2 29.4 55.6 119 +00101400.SLN 0 11.5 577 -49 879 26 58.0 0.1 -11.3 234 5.7 28.9 63.6 76 +00100401.GCK 0 8.5 341 -281 1869 -16 53.4 0.0 -11.5 263 8.5 38.0 70.8 124 +00090523.GTF 0 7.6 277 -43 1393 8 65.8 0.0 -15.8 219 7.4 34.7 93.3 112 +00090300.ISN 0 10.7 654 -10 754 62 42.1 0.3 -13.8 225 6.8 27.3 72.5 95 +00090120.SLC 0 5.7 78 -67 2129 29 41.1 0.0 -14.3 198 7.4 15.4 53.6 53 +00081820.BUY 0 15.3 1702 -37 1351 58 34.7 0.4 -8.2 275 6.5 38.7 13.2 134 +00081723.IND 0 19.2 4115 -13 791 158 47.3 5.1 -7.9 275 6.9 37.5 49.8 224 +00081720.LEX 0 16.6 2579 -6 1129 81 36.5 1.1 -6.7 284 5.9 24.9 42.3 141 +00081420.AIT 0 16.2 2299 -120 690 282 52.2 3.0 -9.8 267 8.0 37.9 69.5 368 +00080623.CDJ 0 14.7 1350 -119 1250 43 35.9 0.1 -6.8 272 6.3 24.5 54.6 88 +00080601.HNR 0 18.6 4073 -16 990 54 37.6 1.4 -7.0 271 7.3 25.9 55.8 92 +00080522.AIA 0 7.8 312 -3 2875 0 43.4 0.0 -8.3 272 7.7 22.1 49.4 52 +00080502.PIR 0 14.4 2629 -128 1844 202 48.0 0.3 -7.4 270 7.5 30.4 64.1 318 +00080502.ANW 0 11.5 1035 -228 2157 138 37.9 0.0 -6.3 276 7.6 25.6 46.8 227 +00080222.FKL 0 13.7 1168 -22 892 104 26.2 0.5 -9.1 253 5.9 27.0 55.7 145 +00080202.LWT 0 8.3 700 -130 2701 50 46.5 0.0 -8.4 286 8.6 19.4 78.7 94 +00080202.GGW 0 10.8 1193 -207 1955 94 51.1 0.0 -9.6 293 8.0 25.1 71.3 230 +00072622.AIO 0 16.7 3711 -2 964 67 44.8 1.9 -10.2 324 7.6 29.1 43.1 186 +00072501.HON 0 13.9 2463 -99 1314 85 29.5 0.5 -11.1 271 8.3 13.2 40.3 91 +01060123.LWC 0 11.2 1268 -25 1421 113 62.6 0.8 -13.2 305 6.4 37.6 79.8 249 +01060122.P28 0 11.4 1141 -69 1552 80 51.2 0.3 -9.7 308 6.6 21.4 62.5 156 +01053100.CVN 0 8.5 1309 -86 2195 -18 45.9 0.0 -10.8 289 8.3 24.1 38.5 138 +01052801.END 0 13.1 2369 -85 1258 150 47.1 1.6 -12.5 280 8.2 39.8 67.4 370 +01052400.OKF 0 7.6 314 -55 2200 85 59.2 0.0 -15.3 298 7.1 43.3 63.3 244 +01052022.GRK 0 15.6 2852 -21 1408 32 40.1 0.4 -7.9 242 6.8 30.2 75.1 60 +01051801.RUL 0 11.1 1624 -134 2428 24 25.8 0.0 -8.5 258 8.1 18.9 46.6 76 +01051623.BIE 0 13.4 3208 -41 1905 35 30.0 0.1 -10.4 274 7.5 20.5 32.1 103 +01051218.DDH 0 8.9 325 -25 1493 21 36.4 0.0 -16.2 229 6.4 25.9 46.8 102 +01051000.OLU 0 9.6 2423 -73 2081 70 30.6 0.0 -15.8 265 8.8 23.7 36.8 157 +01050823.GBD 0 8.1 447 -90 1828 55 44.5 0.0 -15.8 323 7.4 25.4 50.6 207 +01050701.COT 0 15.9 3113 -16 1068 4 34.1 0.1 -12.2 267 8.1 10.5 56.5 73 +01050700.ADS 0 14.6 2915 -5 1038 115 37.4 2.0 -13.7 248 7.3 23.1 63.5 148 +01050623.BMQ 0 16.4 4217 -12 955 48 38.2 1.3 -13.0 257 7.5 27.3 64.9 143 +01050501.COT 0 14.3 1453 -9 1075 113 48.9 1.2 -9.9 226 7.0 33.1 73.5 169 +01050200.AUD 0 10.0 1544 -80 1896 85 31.2 0.1 -14.7 266 8.2 22.1 40.9 170 +01050101.SLN 0 10.5 1695 -66 1383 122 37.1 0.7 -16.7 295 8.0 24.3 61.4 188 +01050100.P28 0 9.9 1422 -94 1553 70 45.7 0.2 -15.7 309 7.8 24.3 54.0 188 +01042317.STE 0 9.5 775 -5 970 86 55.4 0.6 -18.0 210 6.8 38.9 110.9 170 +01042304.JCT 0 14.1 2210 -11 659 190 53.5 3.8 -11.8 248 7.8 31.4 55.1 214 +01042222.MWL 0 11.8 1193 -8 1373 116 46.2 0.7 -10.2 212 6.2 33.4 58.0 105 +01042123.PIA 0 12.1 1857 -13 1175 79 41.0 0.8 -13.4 257 7.5 25.7 51.8 94 +01042123.CDS 0 10.3 2000 -70 2105 81 55.8 0.0 -11.8 230 7.9 27.2 70.8 141 +01042102.SLN 0 11.5 2072 -206 1218 280 50.2 0.0 -15.1 239 8.7 44.2 73.5 374 +01041702.SJT 0 13.0 1793 -30 989 96 38.8 1.1 -10.9 296 7.0 26.3 65.2 260 +01041700.LBB 0 8.1 406 -65 1861 42 46.3 0.0 -12.1 288 7.1 32.9 80.6 256 +01041500.ABI 0 12.6 2222 -121 1474 76 59.9 0.5 -13.2 249 8.7 28.8 78.5 130 +01041423.ADM 0 14.2 1613 -86 524 248 67.7 3.1 -14.2 254 8.6 38.9 90.8 310 +01041422.PCS 0 13.6 2872 -90 1455 5 57.7 0.1 -10.8 245 8.2 21.5 77.6 85 +01041422.EMP 0 8.9 652 -15 1486 57 59.4 0.2 -16.8 254 7.2 31.9 84.7 218 +01041421.HBR 0 13.9 2647 -29 786 167 70.6 4.4 -14.3 255 8.2 39.1 91.1 239 +03050100.BRL 0 12.7 2707 -10 1047 121 47.3 2.5 -15.8 247 8.2 27.0 50.9 270 +03043021.AIA 0 12.3 2247 -53 863 158 49.0 2.8 -15.7 243 8.1 37.1 49.5 276 +03043003.LIC 0 8.7 1228 -82 574 264 52.2 2.2 -15.9 216 8.8 43.9 59.2 676 +03042900.APA 0 6.3 1056 -56 1639 56 35.9 0.1 -15.6 239 8.3 10.6 65.7 63 +03042600.HRL 0 12.4 1634 -219 1994 5 43.7 0.0 -11.1 286 8.3 25.0 72.5 36 +03042522.FTY 0 11.2 645 -12 811 160 61.6 1.0 -14.4 253 6.7 33.8 66.6 259 +03042520.ANB 0 11.5 783 -1 777 164 64.0 1.3 -14.0 259 6.2 36.4 64.7 319 +03042400.SEP 0 14.4 2485 -6 558 393 62.4 9.8 -14.6 238 7.9 39.1 92.6 485 +03042022.MKL 0 12.5 1017 -22 789 92 57.6 0.9 -14.3 251 6.9 29.0 70.2 188 +03042019.MEM 0 13.1 1682 -6 857 78 50.6 1.1 -14.2 252 7.3 29.0 57.0 148 +03041922.P#0 0 11.7 1623 -17 730 127 72.6 2.1 -19.4 223 7.9 35.5 102.9 148 +03041920.END 0 10.6 1171 -12 629 144 57.4 1.6 -21.0 215 8.4 39.0 99.4 219 +03041907.FDR 0 12.6 1046 -418 613 365 65.8 0.0 -13.9 207 8.9 40.5 101.8 352 +03040720.HOU 0 16.5 2215 -1 373 67 57.9 1.4 -11.4 231 7.6 30.3 77.2 191 +03040718.BPT 0 13.8 933 -139 741 16 59.0 0.1 -12.1 226 7.4 26.5 91.0 110 +03040717.LFT 0 14.1 780 -168 559 29 50.5 0.0 -12.0 233 7.3 29.3 84.8 74 +03040605.C12 0 11.3 655 -128 639 328 69.4 1.0 -14.6 250 7.3 45.3 111.0 697 +03040601.C11 0 12.1 2056 -4 832 109 75.1 2.2 -15.3 251 7.6 26.4 93.3 198 +03040400.LW1 0 13.3 2761 -1 682 153 54.3 3.8 -15.1 242 7.6 32.9 52.2 224 +03040322.HBR 0 9.5 1315 -38 1655 57 42.4 0.2 -14.8 235 7.5 33.0 47.0 130 +03032821.MBS 0 7.7 95 -1 1423 199 68.1 0.1 -17.6 223 6.6 48.9 65.7 252 +03032819.AZO 0 8.9 146 -2 830 200 60.9 0.3 -17.3 225 6.7 54.5 64.3 255 +03031722.SPS 0 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 +03031720.SPS 0 10.2 947 -44 1140 35 24.3 0.0 -16.7 216 7.4 15.4 100.9 42 +03031221.PBI 0 14.2 1790 -2 1215 21 36.5 0.2 -12.1 258 7.7 2.8 67.6 -23 +03031218.FPR 0 15.8 2760 -2 892 -28 38.6 -0.5 -14.1 256 8.0 11.8 71.6 86 +01062102.ICT 0 13.9 1917 -38 976 89 37.8 1.1 -11.3 291 7.3 26.8 48.8 202 +01061623.JMS 0 8.9 600 -4 1096 41 40.5 0.2 -18.1 283 7.1 25.4 84.9 82 +01061122.RGK 0 14.3 3269 -77 1618 201 51.8 1.8 -10.9 265 8.4 35.2 56.2 397 +01060502.CSM 0 15.8 3992 -79 1412 107 34.9 1.2 -8.4 251 8.1 28.3 40.7 227 +01060501.LHX 0 8.3 615 -248 1957 94 44.0 0.0 -11.2 243 9.0 29.0 49.3 127 +03062823.RST 0 8.8 203 -71 1471 26 40.8 0.0 -12.1 287 4.8 15.4 60.6 57 +03062822.BH4 0 6.7 253 -82 2374 15 53.7 0.0 -12.2 288 8.0 39.8 64.9 352 +03062820.WSC 0 9.5 432 -25 1288 24 38.2 0.1 -13.2 292 5.0 20.7 57.7 45 +03062800.C07 0 9.3 1323 -51 2202 29 36.5 0.0 -9.3 311 7.4 12.9 41.7 81 +03062800.8V7 0 10.5 2208 -13 2023 82 42.3 0.0 -8.2 320 7.8 44.3 44.0 293 +03062722.8V7 0 11.1 2543 -6 1821 66 38.6 0.2 -8.4 315 7.5 40.0 47.0 258 +03062721.C07 0 8.9 1146 -29 2232 32 35.4 0.0 -9.2 306 7.2 11.7 50.1 74 +03062401.CYS 0 10.5 1054 -23 891 146 67.4 1.5 -8.4 210 6.6 44.6 77.5 258 +03062022.ROW 0 10.0 1448 -1 2438 18 41.2 0.0 -8.3 220 7.9 29.6 51.3 74 +03062022.CVS 0 12.0 1680 -21 1220 96 32.9 0.7 -8.5 224 7.2 20.3 41.0 110 +03062020.CVS 0 12.3 2087 -2 1100 14 22.8 0.0 -9.4 233 7.4 10.8 35.9 48 +03061501.CNM 0 11.3 2677 -1 2178 -48 31.4 0.0 -11.2 338 8.5 17.4 38.2 109 +03061423.HOB 0 9.6 1525 -68 2132 7 32.6 0.0 -11.5 330 8.5 14.0 32.3 24 +03061223.C11 0 20.9 5150 -8 501 190 32.5 5.3 -8.9 269 8.0 41.4 58.8 339 +03061221.AGC 0 13.1 691 -9 1032 158 35.1 0.6 -8.8 227 5.9 34.2 44.2 256 +03060401.TCC 0 11.4 1746 -91 1622 -15 59.6 -0.1 -9.6 288 8.2 44.8 48.7 398 +03060322.LBB 0 13.6 2239 -128 1199 80 45.2 0.5 -9.1 302 7.9 31.8 57.3 316 +03060302.LRD 0 17.3 3023 -81 1418 -4 35.4 0.0 -5.0 285 7.3 27.3 67.7 -12 +03053121.ILM 0 13.5 1237 -102 1265 394 58.4 2.3 -10.4 275 6.3 47.7 74.8 576 +03052001.ADM 0 16.8 3033 -19 1155 81 33.3 1.2 -8.4 288 7.5 14.5 61.0 188 +03051922.FSI 0 15.9 2088 -80 836 131 37.4 1.4 -8.3 246 8.1 40.1 50.7 385 +03051409.C12 0 13.9 2056 -415 1151 505 44.5 0.0 -12.7 290 9.5 25.4 80.3 466 +03051406.LW1 0 15.8 3351 -219 819 259 50.4 0.0 -11.8 274 8.3 12.9 74.5 238 +03051401.C11 0 13.9 3239 -178 1774 132 58.3 0.1 -9.9 286 8.2 22.1 60.4 192 +03051322.CDS 0 12.4 3323 -92 2274 79 49.1 0.0 -10.1 280 8.6 18.1 68.8 98 +03051223.MRF 0 11.6 1914 -2 1612 41 42.7 0.2 -6.0 279 6.7 33.9 49.2 174 +03051019.MLC 0 14.5 849 -221 615 158 58.7 0.0 -8.7 240 7.6 34.0 74.3 199 +03051017.P#Q 0 16.5 2801 -34 619 97 68.4 2.7 -9.2 235 7.2 32.3 77.8 168 +03051000.P#J 0 16.2 3929 -21 888 74 55.8 2.7 -12.5 247 7.6 33.6 64.7 227 +03050922.LEX 0 15.5 2304 -3 715 119 55.3 2.5 -9.5 278 7.4 32.8 69.7 185 +03050921.COU 0 16.1 4338 -12 941 67 45.4 2.2 -11.8 246 7.4 35.8 73.5 264 +03050920.SDF 0 15.2 2300 -15 871 88 52.2 1.8 -10.2 268 7.2 36.6 70.7 247 +03050520.MKL 0 15.8 2332 -17 581 247 71.6 5.8 -11.9 263 7.3 40.2 88.1 300 +03050223.BMX 0 15.4 3487 -10 686 61 44.2 1.6 -13.2 283 6.8 21.9 38.7 114 +03050221.HSV 0 13.0 2237 -40 946 139 42.3 2.2 -13.8 264 7.0 27.8 33.8 201 +03050221.ABL 0 13.6 3056 -5 1063 81 40.9 1.6 -14.7 280 7.2 27.0 27.0 130 +03050219.SJT 0 15.1 4252 -2 1189 17 38.9 0.4 -12.5 277 8.1 4.7 61.7 18 +03050219.ABL 0 12.9 2572 -28 1072 45 27.2 0.5 -13.7 261 6.7 22.6 36.0 82 +03050218.MSL 0 13.0 2367 -24 912 19 25.5 0.2 -14.5 257 7.4 24.2 40.8 60 +03050201.ACT 0 13.6 2339 -88 1301 -44 31.1 -0.3 -11.9 280 8.3 21.3 53.8 -77 +03050102.END 0 14.0 3853 -58 1033 227 43.6 5.8 -13.5 250 7.4 27.5 43.5 247 +03071221.AVL 0 11.9 710 -2 1196 56 37.5 0.2 -8.5 266 5.6 31.7 43.3 103 +03071201.FOE 0 16.7 3598 -41 1289 -96 59.4 -2.4 -10.2 313 7.9 33.9 54.8 89 +03071200.FOE 0 16.2 3683 -11 1441 -16 63.8 -0.3 -11.0 315 7.7 31.9 59.2 109 +03071123.P#H 0 12.6 927 -26 1632 97 59.9 0.3 -9.9 322 7.2 45.3 55.0 319 +03070904.PHP 0 14.6 2161 -292 1066 549 72.4 0.0 -8.6 260 8.8 53.5 55.7 683 +03070900.BH3 0 8.3 1108 -106 2627 277 55.8 0.0 -7.9 250 8.4 55.7 68.2 568 +03070723.LVS 0 8.8 850 -179 2135 85 20.0 0.0 -6.4 329 8.7 24.3 27.9 305 +03070720.DSM 0 18.0 4261 -35 1012 20 39.2 0.6 -9.9 262 8.0 13.2 34.7 79 +03070719.LVS 0 9.9 1337 -68 1800 12 22.3 0.0 -7.2 336 8.0 27.0 21.0 98 +03070600.VTN 0 11.6 1572 -201 1584 157 52.8 0.0 -9.5 273 8.2 30.3 50.1 293 +03070521.RAP 0 8.7 803 -208 2327 67 22.6 0.0 -11.2 272 8.5 6.7 33.0 46 +03070521.P#7 0 10.3 1147 -137 2084 84 43.4 0.0 -10.3 249 8.1 22.9 55.2 239 +03070517.BH3 0 8.9 1171 -147 2263 -14 27.2 0.0 -12.5 293 9.1 15.8 39.6 51 +03070305.GDV 0 9.1 634 -206 1972 120 22.6 0.0 -13.9 250 8.7 30.3 58.1 255 +03063018.AUG 0 11.8 1327 -56 1152 60 42.9 0.5 -12.3 267 5.3 24.4 72.0 118 +03081800.BH5 0 9.0 725 -5 2392 -33 27.4 0.0 -9.3 180 7.6 12.2 31.3 76 +03081322.XRW 0 16.6 1031 -16 519 88 21.6 0.0 -6.2 187 5.5 23.7 39.1 164 +03081202.SEP 0 12.7 373 -104 1300 -113 55.9 -0.2 -8.4 345 6.8 38.0 68.0 -12 +03081200.FWD 0 12.2 1050 -51 2135 -30 50.2 0.0 -8.8 339 6.7 35.0 52.7 68 +03081023.P#9 0 13.9 1702 0 1195 30 41.7 0.3 -9.2 346 6.8 25.8 56.8 104 +03080902.P#C 0 15.5 3216 -71 1472 8 27.4 0.1 -6.4 277 7.9 17.3 40.8 199 +03080900.MIB 0 15.0 3325 -48 1477 39 33.2 0.4 -9.0 291 7.7 10.7 43.9 102 +03080900.P#C 0 14.4 3127 -1 1826 10 25.0 0.0 -5.8 262 7.5 12.2 42.3 64 +03080622.GLD 0 12.9 3132 -2 2338 21 28.1 0.0 -7.1 306 8.2 14.7 32.7 115 +03080601.CNU 0 15.8 2262 -28 1629 -18 34.6 -0.1 -5.1 317 6.6 25.1 42.1 49 +03080600.SUX 0 15.5 1945 -3 996 54 38.2 0.7 -8.6 321 7.0 35.9 44.6 171 +03080521.TOP 0 16.0 2857 -24 1592 -7 30.8 0.0 -6.8 308 6.3 19.6 40.9 101 +03080520.DAN 0 15.0 2224 -8 858 8 18.6 0.0 -10.1 275 6.4 27.6 30.4 121 +03080422.P#R 0 15.1 1771 -64 1131 59 51.1 0.7 -8.5 326 6.5 23.7 72.7 144 +03080401.BVX 0 16.9 2856 -38 1072 96 33.8 1.4 -8.7 308 6.7 18.2 47.9 100 +03080202.LUS 0 9.3 520 -170 1828 -21 47.7 0.0 -8.2 291 7.9 30.7 60.7 11 +03080123.CRL 0 13.5 2544 -8 1131 18 35.3 0.2 -12.9 299 7.9 26.6 36.1 109 +03080103.MCW 0 11.0 914 -111 1515 8 24.1 0.0 -12.2 281 7.0 26.6 47.8 60 +03073123.C31 0 8.6 251 -238 2988 79 50.4 0.0 -8.0 311 8.0 29.8 74.4 268 +03073120.TVL 0 10.6 1275 -24 1488 33 34.5 0.1 -7.4 90 7.8 32.3 17.1 170 +03072700.IWD 0 15.1 1598 -19 1386 149 42.6 1.0 -6.1 276 5.9 27.7 60.4 150 +03071802.BH1 0 13.9 2073 -132 1543 52 64.4 0.2 -6.9 291 7.8 47.0 77.9 171 +03071721.RAP 0 14.6 3713 -127 1972 107 39.2 0.0 -6.2 280 8.5 31.5 54.8 181 +03071320.MSL 0 16.4 2839 -21 1060 37 23.4 0.0 -9.3 310 7.1 4.1 36.8 35 +03071320.DIK 0 9.2 2113 -26 3189 -19 27.9 0.0 -9.3 266 9.0 11.0 36.6 31 +04040721.P#U 0 11.2 1509 -10 1060 103 47.1 1.2 -15.7 268 6.4 35.8 60.8 191 +04040702.SPS 0 8.6 230 -53 980 110 36.0 0.2 -17.3 236 6.3 19.0 53.3 110 +04040700.FTW 0 10.4 641 -8 948 43 57.7 0.3 -14.3 228 6.4 22.9 60.1 83 +04040422.LRD 0 13.8 2148 -1 827 171 49.4 3.0 -12.9 244 7.0 31.5 38.8 217 +04040421.ALI 0 13.2 1124 -3 718 10 40.8 0.1 -13.2 238 7.0 18.0 35.9 100 +04032701.DHT 0 9.5 1004 -128 1142 153 30.2 0.3 -13.4 233 8.2 31.2 63.3 235 +04032623.RAP 0 8.7 1651 -52 1568 172 42.5 0.9 -15.5 205 8.0 26.0 46.8 264 +04031802.FSM 0 8.0 442 -99 1939 211 48.0 0.0 -17.1 278 7.5 37.8 72.5 338 +04031800.P#P 0 9.4 1357 -30 1585 127 45.0 0.5 -17.4 288 7.7 34.4 66.4 269 +04030121.ORD 0 7.2 534 -1 908 208 58.9 1.1 -23.3 222 6.6 37.3 72.6 297 +04030120.RFD 0 6.8 505 -7 892 172 55.3 0.8 -24.3 220 6.8 34.8 71.1 256 +04022416.MCO 0 13.1 534 -37 687 121 47.0 0.5 -10.8 255 5.0 28.8 81.9 156 +04022407.G#5 0 10.5 962 -124 801 -16 47.4 -0.1 -18.2 218 7.7 31.4 83.7 14 +04022316.MSY 0 11.3 0 -9999 417 436 51.3 0.0 -11.2 240 6.1 44.9 86.2 531 +04020601.BTR 0 11.7 57 -172 540 186 69.9 0.0 -13.3 214 7.0 48.1 87.1 199 +04020514.LFT 0 11.1 165 -244 1109 583 49.0 0.0 -11.7 217 6.5 46.0 63.5 611 +04020512.LCH 0 13.6 1421 -64 497 282 49.1 3.0 -12.5 222 6.8 41.7 68.1 319 +04011921.VRB 0 10.3 196 -20 878 -16 82.2 0.0 -14.0 242 5.1 46.9 123.3 207 +03112718.RUE 0 10.5 681 0 396 4 92.3 0.0 -20.1 238 7.0 35.8 100.8 153 +03110923.SAC 0 6.9 156 -14 892 38 24.7 0.0 -25.3 234 7.5 14.4 91.8 77 +03102818.CTY 0 16.5 1074 -53 594 181 37.6 1.2 -7.8 217 6.3 23.6 51.5 193 +03100822.VAD 0 14.1 1355 -7 765 -4 27.1 0.0 -11.2 277 6.4 13.9 52.0 68 +03092718.CBE 0 11.6 969 -2 1256 109 40.4 0.5 -12.3 213 6.1 33.1 58.2 137 +03092620.UIN 0 12.7 1139 -3 844 177 50.2 1.7 -14.6 266 7.9 42.7 77.1 266 +03092619.BRL 0 11.1 906 -34 824 125 50.2 1.0 -14.9 256 6.9 40.9 76.6 149 +03091200.MRF 0 9.8 747 -2 1645 9 36.3 0.0 -6.8 276 6.2 25.5 49.1 163 +03090900.MAF 0 9.9 1214 -1 2565 13 32.3 0.0 -8.4 313 7.4 22.4 35.6 163 +03083123.HUF 0 14.8 27 -163 471 268 39.8 0.0 -6.8 243 6.3 41.6 43.2 340 +03082601.P#4 0 12.9 980 -231 1606 140 42.5 0.0 -9.4 277 7.1 39.4 44.3 283 +03082600.ABR 0 14.2 3471 -76 1925 104 37.8 0.1 -11.4 289 8.6 27.8 43.9 143 +03082221.LOL 0 9.6 944 -94 1467 89 64.9 0.3 -12.3 188 8.3 46.4 77.0 299 +03082119.APX 0 14.4 2077 -120 1359 80 36.1 0.3 -8.3 255 7.1 34.1 35.4 132 +03082100.DLH 0 16.1 2503 -11 1009 166 39.5 2.7 -8.1 226 6.2 24.3 46.3 201 +04051501.PUB 0 3.9 204 -85 2585 153 55.2 0.0 -18.2 268 8.8 42.0 78.8 355 +04051423.COS 0 4.6 230 -87 1664 52 57.1 0.0 -18.0 274 8.2 45.2 68.4 179 +04051300.HBR 0 14.0 4148 -28 1710 172 41.2 1.4 -11.1 244 7.8 44.0 46.5 333 +04051100.LUS 0 8.3 917 -69 1429 204 53.5 0.8 -11.5 237 7.4 28.1 44.2 323 +04050923.CVS 0 5.9 554 -61 3040 -32 23.7 0.0 -12.6 309 9.6 17.1 15.5 78 +04050921.STC 0 9.9 1302 -52 1737 185 49.7 0.5 -14.2 264 7.5 46.1 49.8 400 +04050900.P#A 0 13.8 2438 -42 1008 193 29.0 2.3 -12.7 278 7.7 19.9 36.2 251 +04050822.BH3 0 5.3 996 -6 3054 49 48.0 0.0 -15.0 280 9.6 8.9 60.8 58 +04050522.RIC 0 8.3 824 -38 1493 133 43.8 0.4 -20.4 310 7.1 34.9 60.9 251 +04050101.FWD 0 13.9 2471 -39 907 158 44.9 2.9 -14.8 225 8.3 23.0 58.2 185 +04043021.C12 0 13.3 2483 -8 1029 37 45.1 0.7 -14.1 236 7.9 32.8 46.0 48 +04043020.DYS 0 14.1 2950 -10 638 71 52.3 1.8 -14.3 236 7.8 34.1 51.0 143 +04043018.ABI 0 12.0 2372 -1 1211 -3 32.6 0.0 -13.6 230 7.7 22.8 40.3 -22 +04042920.MLU 0 12.9 972 0 744 72 46.0 0.5 -14.5 232 6.6 29.2 45.8 176 +04042821.G#2 0 10.1 747 -3 1175 139 56.7 0.8 -14.7 252 7.4 32.3 53.8 179 +04042521.CDS 0 7.1 679 -5 2042 20 45.4 0.0 -17.7 276 7.7 27.7 76.8 88 +04042300.SGF 0 9.8 113 -134 794 263 69.4 0.1 -15.2 267 7.5 51.1 79.0 572 +04042300.P#P 0 14.6 2114 -9 448 155 49.9 2.7 -13.6 245 7.2 26.3 46.7 258 +04042223.C12 0 12.6 1615 -11 1173 56 54.8 0.7 -10.8 266 6.6 36.5 68.7 191 +04042222.UMN 0 10.5 412 -29 663 220 60.2 0.9 -17.5 254 8.2 45.7 67.6 357 +04042221.C34 0 11.2 1504 -22 1170 72 53.8 0.8 -15.5 265 7.8 38.9 55.3 252 +04042200.ADM 0 11.7 1347 -25 1310 194 51.9 1.6 -13.2 269 6.8 28.4 68.1 339 +04042122.C12 0 11.5 1550 -3 1449 83 53.3 0.6 -13.2 261 6.6 30.3 65.8 168 +04041921.HOB 0 11.3 2173 -1 1395 86 53.9 1.0 -10.9 235 6.7 32.7 83.0 143 +04041801.MFD 0 10.8 1224 -65 1060 185 23.7 0.0 -16.5 288 8.0 29.7 50.0 245 +04041723.MFD 0 11.9 2519 -15 1046 104 26.5 1.1 -15.5 303 7.2 29.2 37.6 184 +04041105.MFE 0 15.8 2222 -37 402 26 39.9 0.4 -11.6 248 7.5 2.1 69.3 23 +04041019.ILM 0 9.2 180 -45 1165 111 41.2 0.1 -16.1 267 6.0 29.7 69.5 345 +04041001.PRX 0 8.8 516 -75 1780 210 42.3 0.1 -14.1 270 6.7 37.6 59.1 314 +04040818.DAB 0 13.2 1058 -19 810 73 56.2 0.7 -15.8 264 7.7 33.6 94.9 186 +04040815.DHN 0 11.9 877 -2 522 78 53.9 0.6 -15.8 257 6.5 30.9 87.6 111 +04071305.CHE 0 17.6 3151 -107 771 181 49.7 2.9 -8.9 301 7.9 29.7 60.2 300 +04070104.HBR 0 15.7 1988 -45 801 174 24.0 0.0 -8.2 259 7.0 25.9 23.7 276 +04062402.FNT 0 10.0 608 -67 1046 219 50.4 1.0 -15.3 260 6.5 32.1 72.4 270 +04062222.BIS 0 7.2 504 -14 1518 9 56.3 0.0 -18.7 301 6.3 28.7 75.6 88 +04062023.DHT 0 8.4 905 -127 2633 107 47.8 0.0 -9.3 270 8.8 36.3 67.8 192 +04061902.G#1 0 13.2 1631 -27 1122 144 35.1 1.2 -8.6 284 7.3 37.4 58.3 408 +04061900.HDN 0 6.4 316 -26 1668 -40 51.4 0.0 -13.3 257 8.3 36.5 73.3 29 +04061820.FAM 0 15.9 1842 -13 923 65 31.0 0.6 -7.0 271 5.7 23.9 35.7 131 +04061800.LHX 0 12.7 2059 -86 777 206 47.3 2.5 -11.2 235 8.4 37.4 49.6 651 +04052700.CHE 0 8.9 347 -4 1255 145 31.1 0.2 -14.7 268 6.1 31.0 44.9 228 +04052623.TYS 0 14.7 1654 -44 919 199 50.1 2.8 -9.7 275 5.9 37.8 71.9 255 +04052623.OKC 0 15.9 3047 -69 1198 124 56.8 2.5 -7.9 261 6.8 24.4 82.9 79 +04052622.FSD 0 9.4 835 -34 1187 143 35.4 0.6 -17.3 267 7.3 33.1 47.2 271 +04052621.CSV 0 14.4 1608 -15 870 176 59.8 2.8 -9.3 268 6.2 35.9 58.7 237 +04052621.C33 0 13.6 2405 -23 1847 104 55.5 0.4 -9.6 256 7.5 30.4 80.9 72 +04052603.CAI 0 15.4 1463 -14 609 129 47.0 1.5 -11.0 277 7.2 31.6 59.9 153 +04052402.P#7 0 7.8 400 -213 1358 246 41.2 0.0 -15.5 247 8.2 35.3 62.4 412 +04052400.STL 0 16.1 3087 -3 604 162 45.4 3.8 -12.7 253 8.0 28.6 58.7 195 +04052400.CDR 0 5.8 117 -187 2181 178 56.7 0.0 -14.5 256 8.0 30.8 66.1 338 +04052323.BGM 0 14.6 2244 0 781 156 41.1 2.4 -11.9 272 7.8 30.1 44.7 249 +04052320.PIN 0 12.0 1300 -3 1376 120 33.7 0.6 -11.8 267 6.7 36.9 31.3 199 +04052300.ELM 0 12.4 1089 -41 1163 226 43.8 1.5 -9.7 281 5.7 46.2 46.0 359 +04052201.G#1 0 12.3 2404 -84 1771 261 33.8 0.6 -8.2 246 7.9 36.9 50.5 385 +04052201.SNY 0 7.0 484 -214 2287 78 62.8 0.0 -12.7 227 9.0 42.4 81.2 214 +04052123.HYS 0 12.7 3460 -27 2109 75 39.7 0.0 -10.8 236 8.6 29.0 45.1 157 +04052100.FKL 0 14.7 2440 -9 772 269 42.7 4.7 -10.6 299 6.4 28.6 49.2 346 +04052100.DEN 0 9.0 1781 -3 1934 76 49.3 0.1 -11.5 231 8.4 30.6 60.1 225 +04051723.DSM 0 13.3 1669 -24 854 23 36.8 0.2 -11.5 251 6.5 26.2 51.1 132 +04051723.PUB 0 9.2 546 -83 1212 147 55.3 0.5 -11.9 251 7.8 44.9 72.1 222 +04051601.9V9 0 7.5 608 -65 1315 120 61.8 0.5 -19.3 286 7.0 35.7 85.8 189 +04051521.PIR 0 6.8 724 -30 1545 91 60.8 0.3 -21.3 289 7.3 36.7 70.4 224 +04051520.Y26 0 7.0 965 -32 1206 89 60.4 0.7 -23.7 287 7.8 40.0 67.1 217 +99053023.P07 0 12.1 2286 -113 1897 53 39.7 0.1 -8.5 315 7.8 22.5 45.3 165 +99052800.FTW 0 12.2 1104 -4 954 41 33.8 0.3 -12.6 256 6.8 24.6 36.5 103 +99052503.FST 0 10.3 1116 -185 1882 122 53.5 0.0 -9.7 271 8.3 44.1 67.4 157 +99052502.INK 0 11.4 1576 -110 1665 119 56.3 0.4 -10.0 270 7.8 39.9 60.4 191 +99052420.ABQ 0 8.1 781 -71 1338 71 34.2 0.2 -13.9 212 8.5 24.7 44.7 132 +99052220.TUL 0 16.0 3471 -3 869 32 31.1 0.6 -12.1 269 7.3 20.4 36.1 91 +99052200.SNY 0 8.7 1439 -7 1674 53 48.7 0.2 -12.8 266 7.7 28.2 65.4 147 +99052123.RAP 0 8.6 1729 -70 1711 131 43.6 0.4 -16.2 256 8.7 23.0 67.0 178 +99052001.MOT 0 8.0 903 -1 1506 2 27.5 0.0 -17.4 240 7.0 14.4 59.7 47 +99051700.LAA 0 7.5 817 -141 1731 124 65.0 0.1 -15.0 234 8.6 43.8 78.0 361 +99050519.MVN 0 12.9 1777 -10 790 108 57.7 1.8 -14.1 237 6.6 41.0 44.8 194 +99043001.INK 0 12.4 2333 -60 967 95 52.8 1.8 -11.4 237 8.1 32.9 71.8 280 +99042900.BIL 0 6.5 60 -143 1109 133 46.8 0.0 -17.8 182 7.5 39.8 84.0 324 +99042800.EVV 0 9.5 305 -3 1146 22 26.2 0.0 -15.6 225 6.4 18.9 38.1 56 +99042701.OKC 0 8.9 873 -24 1056 47 27.4 0.2 -20.3 275 7.9 23.0 44.2 88 +99042322.LOZ 0 12.8 1995 -5 979 77 37.3 1.0 -11.6 287 6.9 30.4 44.4 71 +99042319.EZF 0 10.2 1142 -51 1722 106 57.2 0.3 -14.2 276 6.9 38.0 68.5 172 +99042203.GOK 0 12.3 2307 -132 894 364 53.9 3.4 -16.0 254 8.5 31.2 54.6 401 +99042123.BMI 0 11.6 1687 -24 839 261 53.4 3.9 -16.4 252 7.8 45.9 57.4 408 +04083002.GCK 0 10.7 1029 -108 1687 204 32.5 0.2 -8.1 315 6.8 29.0 26.2 278 +04083000.SUX 0 10.7 779 -7 1471 199 42.6 0.6 -12.9 289 6.7 36.3 45.9 296 +04082622.C23 0 10.2 983 -43 1349 25 41.1 0.1 -15.8 254 7.2 17.8 70.6 46 +04082621.MCW 0 15.4 2478 -27 1087 26 46.1 0.5 -9.9 239 7.0 37.9 68.9 181 +04082522.FSM 0 18.2 3688 -45 1240 101 33.9 1.6 -6.7 244 6.2 16.5 39.6 113 +04082522.BIS 0 10.2 2077 -41 1811 74 38.1 0.2 -15.2 230 8.4 22.8 43.2 103 +04082503.MHK 0 19.2 4217 -59 627 274 31.2 5.7 -7.9 224 7.5 31.4 51.8 392 +04082501.MHK 0 18.9 4262 -45 721 150 29.9 3.2 -7.4 240 7.1 28.3 50.9 241 +04082020.BGM 0 14.6 1425 -21 712 95 53.2 1.2 -9.5 238 5.9 38.1 53.7 106 +04082018.ORH 0 15.1 2067 -19 1051 47 40.0 0.6 -8.9 256 6.1 29.0 39.9 132 +04081918.LBE 0 14.4 1183 -7 597 105 39.9 0.8 -8.7 270 5.6 40.5 44.4 152 +04081901.PIA 0 13.9 1294 -107 1203 377 40.4 1.6 -7.9 277 5.6 39.8 43.3 465 +04081822.BRL 0 15.3 2600 -41 963 377 41.3 6.8 -9.4 276 6.6 42.5 42.9 508 +04081421.LIC 0 9.9 1288 -66 1242 15 32.2 0.1 -10.2 333 7.8 25.5 42.7 65 +04080321.OAX 0 18.7 4816 -44 1389 92 36.9 1.7 -5.9 259 7.0 23.6 38.1 189 +04080202.Y26 0 15.4 3187 -169 1209 336 55.2 1.6 -9.3 291 8.1 28.5 83.2 385 +04080123.Y22 0 8.5 1290 -28 3011 -1 45.9 0.0 -10.5 298 8.6 30.2 71.2 158 +04073101.GAG 0 14.4 2006 -116 1300 54 42.0 0.3 -6.2 308 6.7 14.8 44.7 98 +04072102.FSD 0 19.9 4659 -49 869 261 26.0 5.3 -5.9 278 7.3 28.0 37.4 426 +99081101.HLC 0 17.4 3928 -33 1289 71 38.3 1.3 -5.1 243 6.7 21.0 34.5 152 +99081023.AKO 0 14.9 2910 -32 1271 87 33.9 1.0 -6.5 232 7.6 22.7 45.7 163 +99080901.DIK 0 12.0 2409 -98 1891 48 58.5 0.1 -10.8 267 8.5 29.7 54.5 94 +99080822.2WX 0 10.3 1972 -32 2526 39 44.1 0.0 -8.8 262 8.3 27.2 41.0 117 +99080702.RAP 0 12.7 921 -36 1200 35 33.6 0.1 -6.6 268 6.3 20.0 48.7 72 +99080301.LWT 0 8.5 449 -155 1772 53 48.3 0.0 -10.3 278 7.8 29.4 70.4 131 +99073100.JKL 0 15.8 3605 -30 1833 89 22.3 0.0 -5.9 355 6.7 22.8 19.6 158 +99073020.IPT 0 15.0 2685 -12 1238 32 34.0 0.4 -8.7 319 6.3 16.0 50.7 72 +99072922.FVX 0 14.5 1431 -13 1556 81 34.3 0.3 -6.0 327 5.6 22.6 48.0 117 +99072902.XVG 0 12.7 1459 -186 1710 319 58.3 0.1 -9.5 302 7.7 41.9 73.8 381 +99072900.ADG 0 14.8 1974 -6 1415 63 37.3 0.5 -9.4 298 7.1 21.7 66.3 118 +99072420.MHT 0 14.8 1594 -17 1088 66 27.8 0.5 -9.7 275 6.5 25.2 56.1 134 +99072319.RAP 0 10.6 1320 -19 2145 52 38.7 0.0 -7.5 263 7.3 22.5 54.0 87 +99072300.FAR 0 16.2 2819 -34 1355 81 35.4 0.9 -8.5 247 7.6 27.9 55.9 137 +99071923.GDV 0 11.9 1807 -31 1654 21 41.3 0.1 -11.2 254 7.9 18.9 69.4 67 +99071302.FAR 0 12.1 1948 -48 1552 125 38.2 0.7 -12.5 297 7.2 27.2 61.0 158 +99071302.DVL 0 10.4 1453 -76 1761 69 42.5 0.1 -13.5 288 7.5 28.3 62.4 124 +99071300.OLF 0 9.2 1101 -38 2374 25 49.7 0.0 -10.3 281 7.3 26.5 65.7 106 +99071202.AIA 0 9.4 1094 -73 1844 -8 27.8 0.0 -11.3 327 8.0 26.7 47.0 79 +99070804.GDV 0 14.2 2058 -209 1364 472 61.7 0.0 -7.6 251 8.0 40.8 78.6 551 +99070421.ERY 0 19.1 3756 -61 791 95 32.9 1.8 -6.7 267 8.2 22.2 36.6 98 +99070207.SFD 0 9.5 32 -374 1535 254 82.4 0.0 -10.7 263 7.4 45.0 92.7 464 +99070103.SWO 0 18.3 2994 -18 703 229 51.1 5.8 -4.6 303 6.4 25.9 51.9 297 +99070103.GCK 0 15.2 2113 -124 873 95 73.0 1.0 -6.5 294 7.5 37.6 74.8 319 +99063023.LBF 0 9.7 291 -114 1136 0 76.3 0.0 -12.3 289 6.9 54.3 115.6 214 +99062801.BGD 0 13.8 2864 -63 2251 73 37.7 0.0 -5.0 266 8.5 22.5 43.1 130 +99062522.DIK 0 12.8 2775 -1 1732 -52 57.7 -0.4 -10.3 230 8.2 35.4 58.9 132 +99062501.VTN 0 11.7 1035 -41 1545 55 41.3 0.2 -8.2 282 6.6 23.6 41.7 120 +99062400.BGD 0 12.2 2544 -17 2195 10 13.6 0.0 -6.5 288 7.8 22.6 35.1 91 +99060601.P07 0 11.8 1543 -130 1771 -31 45.2 0.0 -8.7 243 7.9 18.4 58.3 32 +99060523.LBF 0 10.7 2070 -28 1957 91 62.6 0.1 -12.9 197 8.5 25.9 90.4 131 +99060302.IML 0 10.0 869 -198 1657 237 43.7 0.0 -11.0 225 8.5 39.8 66.5 421 +99060202.GCC 0 6.3 226 -83 1883 18 41.3 0.0 -15.4 262 8.3 26.0 42.6 126 +99060200.FTW 0 16.8 3982 -31 1338 62 35.0 1.0 -11.1 275 8.5 25.7 60.3 144 +99053102.MHK 0 11.6 903 -51 1360 108 32.8 0.3 -11.3 270 6.9 30.0 24.5 179 +99120303.ADM 0 9.7 1355 -50 974 250 42.8 2.4 -22.1 217 8.5 35.9 65.7 332 +99112303.RBD 0 13.2 1077 -16 789 138 48.1 1.2 -13.6 235 6.4 25.1 60.9 176 +99112302.HBR 0 8.7 124 -124 660 53 47.7 0.0 -17.1 219 6.7 41.5 75.7 132 +99100823.FSI 0 10.1 649 -14 1313 5 36.2 0.0 -13.6 219 6.3 14.3 67.9 56 +99092600.GKY 0 13.1 1483 -15 1429 43 28.0 0.2 -9.4 340 6.3 21.5 55.3 182 +99092522.D07 0 6.4 163 -199 2219 136 65.7 0.0 -15.8 242 8.3 31.8 105.7 206 +99092004.RRC 0 11.2 292 -200 1044 70 37.2 0.0 -11.2 270 6.7 28.8 60.6 216 +99092000.OKC 0 11.1 1068 -42 1896 56 39.5 0.0 -10.1 290 6.8 29.0 60.9 190 +99091923.CSM 0 11.9 1645 -3 1885 18 41.3 0.0 -9.8 280 7.0 27.5 64.0 178 +99091920.CGZ 0 11.2 802 -16 1905 19 39.1 0.0 -8.7 245 6.5 16.0 60.3 61 +99091207.SLP 0 15.6 2094 -69 507 92 45.4 1.3 -10.8 271 8.2 16.8 55.8 121 +99091200.LBL 0 11.9 1180 -121 1590 31 43.2 0.1 -9.0 275 7.8 25.7 65.5 84 +99091122.HLC 0 12.4 1517 -36 1221 59 37.8 0.4 -11.3 253 7.4 21.0 66.2 94 +99091101.AFW 0 13.1 1250 -24 1970 21 29.5 0.0 -7.4 297 6.2 21.7 52.8 139 +99082300.ABR 0 11.7 1432 -38 1851 61 40.1 0.1 -9.6 289 6.9 20.3 45.5 101 +99082104.HON 0 13.3 1187 -244 1155 197 38.1 0.0 -8.9 281 7.4 31.4 54.2 238 +99082100.LBF 0 9.8 20 -311 1794 44 34.8 0.0 -7.8 321 7.1 19.7 46.1 126 +99082022.DIK 0 11.7 1445 -10 1669 21 33.6 0.1 -7.8 298 6.3 17.8 36.0 58 +99081922.MLS 0 7.1 393 -105 3278 19 33.8 0.0 -10.0 244 8.6 22.0 37.3 120 +99081800.RRT 0 11.4 1524 -26 847 90 49.2 1.1 -17.7 268 7.3 32.2 62.0 126 +99081400.ALB 0 16.8 1843 -4 701 196 38.5 2.3 -6.3 249 5.8 29.9 48.4 252 +99081202.GCC 0 10.6 877 -99 1162 63 34.5 0.2 -10.2 218 7.5 17.7 54.6 98 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sncmn.cmn b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sncmn.cmn old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/so_new.csh b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/so_new.csh old mode 100644 new mode 100755 index 26beaf81b2..003b0649fd --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/so_new.csh +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/so_new.csh @@ -15,7 +15,7 @@ # (in ~/.alias) # -$RM *.o glibnsharp.so +$RM *.o glibnsharp.so Sndglib/*.o set myLinkflags = "-L$AWIPS2/tools/lib -shared -Wl,-soname,libbignsharp.so -o libbignsharp.so" set myLinktail = "-lg2c -lc $XLIBS -lz -lm" @@ -40,7 +40,7 @@ echo " " # -set myLibs = "./libsndg.a $OS_LIB/ginitp_alt.o $OS_LIB/gendp_alt.o $OS_LIB/libsnlist.a $OS_LIB/libsnlib.a $OS_LIB/libsflist.a $OS_LIB/libsflib.a $OS_LIB/libnxmlib.a $OS_LIB/libdiaglib.a $OS_LIB/libgemlib.a $OS_LIB/libprmcnvlib.a $OS_LIB/libgridlib.a $OS_LIB/libgplt.a $OS_LIB/libgridlib.a $OS_LIB/libcgemlib.a $OS_LIB/libdevice.a $OS_LIB/libxwp.a $OS_LIB/libxw.a $OS_LIB/libps.a $OS_LIB/libgn.a $OS_LIB/libgemlib.a $OS_LIB/libnetcdf.a $OS_LIB/libtextlib.a $OS_LIB/libxml2.a $OS_LIB/libxslt.a $OS_LIB/libiconv.a $OS_LIB/libbz2.a" +set myLibs = "$OS_LIB/ginitp_alt.o $OS_LIB/gendp_alt.o $OS_LIB/libsnlist.a $OS_LIB/libsnlib.a $OS_LIB/libsflist.a $OS_LIB/libsflib.a $OS_LIB/libnxmlib.a $OS_LIB/libdiaglib.a $OS_LIB/libgemlib.a $OS_LIB/libprmcnvlib.a $OS_LIB/libgridlib.a $OS_LIB/libgplt.a $OS_LIB/libgridlib.a $OS_LIB/libcgemlib.a $OS_LIB/libdevice.a $OS_LIB/libxwp.a $OS_LIB/libxw.a $OS_LIB/libps.a $OS_LIB/libgn.a $OS_LIB/libgemlib.a $OS_LIB/libnetcdf.a $OS_LIB/libtextlib.a $OS_LIB/libxml2.a $OS_LIB/libxslt.a $OS_LIB/libiconv.a $OS_LIB/libbz2.a" @@ -50,7 +50,7 @@ set myLibs = "./libsndg.a $OS_LIB/ginitp_alt.o $OS_LIB/gendp_alt.o $OS_LIB/libsn # echo "Compiling C program... " echo " " -$CC $myCflags *.c +$CC $myCflags *.c Sndglib/*.c # # Compile all Fortran programs @@ -74,6 +74,7 @@ if ( $check == "libbignsharp.so") then echo "****** Shared library is created ******\n " echo " " cp libbignsharp.so $DEV_BASE/workspace/build.cave/static/common/cave/caveEnvironment/lib + cp libbignsharp.so $DEV_BASE/workspace/gov.noaa.nws.ncep.ui.nsharp.linux32 else echo "****** Houston, we got problems ******\n " endif diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sup.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sup.txt deleted file mode 100644 index 6556f7df38..0000000000 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/sup.txt +++ /dev/null @@ -1,939 +0,0 @@ -FILENAME CAT MLMIXR ML CAPE ML CIN MLCL(MAGL) 0-1SRH 0-6KT STPC 500 T (C) 500DIR 7-5 LR 0-3(KT) 0-9(KT) 0-3 KM SRH (M2/S2) -00042320.TXK 2 12.9 1702 -1 657 134 61.7 2.3 -14.0 250 6.5 32.8 76.6 166 -00042001.PPF 2 13.5 2614 -50 1216 227 59.9 4.7 -12.9 234 7.5 39.7 73.5 244 -00032900.FTW 2 13.1 2058 -42 1069 83 49.7 1.3 -15.2 245 8.0 21.9 87.1 126 -00032304.SJT 2 11.9 1680 -119 896 119 61.1 1.1 -15.5 212 9.1 38.4 66.9 217 -00031622.ATT 2 9.4 1019 -7 1566 12 45.8 0.0 -17.5 249 8.0 34.4 53.7 159 -00021323.LRF 2 9.2 1256 -9 1066 82 46.9 0.8 -21.2 249 7.5 32.3 51.4 114 -00010323.MEI 2 13.4 1148 -15 769 241 57.2 2.6 -10.0 226 6.1 38.8 71.2 288 -00010319.GWO 2 12.8 1168 -9 770 202 66.4 2.4 -13.0 223 7.5 47.3 75.1 246 -03050500.UMN 2 13.8 2392 -10 773 341 66.3 8.2 -13.4 237 7.7 49.1 93.8 411 -03050500.JBR 2 15.7 2713 -22 862 266 57.8 6.9 -10.7 240 7.1 50.5 82.9 440 -03050421.TUL 2 16.1 3621 -15 843 147 63.1 5.3 -11.7 230 7.3 45.6 100.2 160 -03050421.MKC 2 13.7 2002 -67 478 479 68.4 8.5 -14.6 224 7.9 48.1 89.8 508 -03050420.P#F 2 15.7 3397 -1 660 166 58.5 5.5 -12.7 230 7.8 34.3 100.9 195 -03050321.P#T 2 12.7 3156 -2 1967 61 36.2 0.0 -9.8 247 7.5 27.2 67.1 207 -03042503.JAN 2 13.5 2568 -27 924 257 44.3 4.9 -15.4 255 7.7 41.1 76.9 279 -03041922.PNC 2 11.5 1157 -40 665 212 87.9 2.5 -17.9 223 7.3 46.5 111.5 242 -03041523.CDS 2 10.7 1020 -106 1534 326 74.0 1.0 -12.4 234 7.5 56.1 83.8 531 -03041522.LBB 2 8.8 883 -53 1986 116 77.2 0.0 -11.7 243 7.5 48.5 87.4 276 -03040702.CLN 2 13.1 488 -133 780 363 62.7 0.8 -11.4 244 7.1 33.6 74.1 411 -03040623.ESF 2 15.8 1847 -29 621 166 51.8 2.6 -11.0 246 6.8 26.8 50.8 161 -03032722.MIA 2 12.4 299 -31 1074 187 48.8 0.4 -10.5 261 5.8 20.5 87.0 197 -01061900.ROS 2 13.6 2218 -30 1076 140 67.7 2.9 -11.1 250 8.2 40.5 73.6 279 -01061401.LNK 2 17.2 4665 -15 1190 173 39.2 4.3 -10.5 215 8.3 32.6 50.7 217 -01061120.ILL 2 14.7 3400 -120 1255 270 56.1 3.4 -10.8 259 8.6 41.9 54.8 448 -01060222.LOZ 2 9.7 164 -10 898 117 51.4 0.2 -13.4 270 5.3 39.8 66.8 189 -01053000.AMA 2 13.0 2887 -76 1322 166 48.4 2.2 -10.1 246 8.4 38.6 50.6 216 -01052902.LHX 2 10.9 1698 -120 1285 185 52.1 1.0 -10.0 251 8.2 38.9 60.5 365 -01052118.OZW 2 12.5 494 -2 775 133 33.4 0.4 -10.3 188 5.6 34.2 36.9 174 -01052022.MIN 2 16.9 3331 -2 711 122 47.8 3.2 -11.0 244 7.3 36.0 67.7 201 -01051022.MIW 2 12.8 2912 -24 1091 65 36.4 1.0 -16.0 255 7.9 28.8 43.0 141 -01051001.FBL 2 9.5 2106 -90 1776 330 50.0 1.0 -16.6 265 8.2 42.9 50.3 516 -01050200.AUM 2 11.2 1434 -74 1331 179 38.8 0.9 -13.3 251 7.5 36.0 52.3 237 -01042202.GBD 2 12.6 2145 -40 777 165 61.8 3.5 -13.6 229 7.8 41.6 62.6 328 -01041423.P28 2 12.3 2168 -54 827 145 76.4 3.1 -16.2 256 8.3 45.0 89.5 235 -01041117.LWD 2 11.9 968 -3 632 282 77.0 2.7 -15.1 208 7.5 38.2 81.4 327 -01040918.BVI 2 10.7 1326 -11 1210 102 57.2 1.0 -15.4 266 7.7 32.1 32.1 174 -01022422.SGT 2 11.8 1020 -15 967 335 52.8 3.0 -14.3 213 7.7 53.6 64.9 450 -00110820.HEZ 2 15.9 2158 -6 881 236 47.1 4.0 -8.5 204 6.2 29.0 68.5 266 -00103122.HLC 2 11.0 1274 -14 954 110 47.4 1.1 -14.1 202 7.4 32.6 74.4 169 -00092022.DAY 2 13.9 1299 -7 971 215 63.4 2.8 -8.2 237 6.1 37.5 61.0 237 -00072601.OTG 2 14.5 2869 -49 1055 88 42.5 1.7 -12.6 290 7.2 33.4 41.3 161 -00072523.RWF 2 14.6 2791 -13 1068 96 39.4 1.6 -12.0 275 7.0 29.2 35.8 163 -00071122.BKX 2 14.7 1167 -47 944 134 42.8 1.1 -7.8 261 6.8 27.2 67.9 205 -00070601.SNY 2 13.6 2847 -18 1681 52 57.5 0.5 -7.4 248 8.1 19.0 74.4 122 -00052319.BWG 2 13.7 2114 -41 1128 167 38.6 2.0 -11.4 294 6.9 36.9 62.8 278 -00051722.LXN 2 14.0 3552 -16 910 111 27.5 1.8 -13.9 169 8.4 28.1 44.5 170 -00051200.ALO 2 16.5 4382 -13 1110 168 51.1 5.6 -7.9 254 6.7 33.2 51.6 199 -00050101.MWL 2 13.0 2207 -103 1176 253 47.3 2.4 -12.4 227 8.2 40.3 37.8 297 -00042323.SHV 2 13.4 2001 -19 928 216 58.9 4.2 -13.0 261 6.7 41.9 60.0 296 -04051923.GFK 2 11.2 967 -44 828 233 54.9 2.1 -16.6 243 7.2 39.5 86.1 229 -04051302.ICT 2 15.9 3157 -12 538 223 36.4 4.3 -9.4 232 6.4 23.8 51.5 245 -04051101.LIC 2 9.0 1549 -59 1592 233 43.4 1.0 -11.5 244 8.4 35.1 46.6 395 -04042022.PIA 2 12.4 1852 -11 728 320 36.4 3.6 -14.7 235 6.2 38.5 40.1 488 -04032718.DDC 2 10.0 1332 -8 893 190 41.4 1.7 -16.6 206 7.5 30.8 47.5 198 -04030418.ABI 2 10.7 626 -20 1108 319 46.5 1.4 -13.7 196 7.0 40.3 84.2 350 -03111718.HOU 2 16.4 1980 -1 445 137 48.2 2.2 -12.4 207 6.6 24.0 77.0 158 -03111223.MFD 2 8.3 64 -56 890 219 99.1 0.1 -15.7 261 5.7 55.1 123.1 275 -03111220.MIE 2 9.7 388 -1 757 123 91.0 0.5 -15.6 258 5.7 47.1 117.3 205 -03082201.JXN 2 17.2 3046 -36 1091 255 31.0 3.6 -5.9 285 6.6 34.4 33.2 304 -03072122.AVP 2 14.3 1810 -16 1228 162 51.1 1.9 -7.9 239 5.6 45.7 49.9 148 -03072104.CID 2 17.8 2344 -22 462 187 48.9 3.6 -7.0 291 7.0 34.2 63.6 237 -03072101.ALO 2 15.0 1859 -107 921 156 49.6 1.5 -8.0 297 7.0 28.2 58.2 248 -03062500.HON 2 17.0 3737 -23 1021 335 52.2 10.7 -7.4 227 7.5 43.4 61.6 550 -03062422.MHE 2 19.5 5088 -22 717 256 55.5 12.1 -8.0 228 7.9 40.9 58.4 422 -03062421.MHE 2 17.5 3584 -16 768 252 56.0 8.4 -7.9 220 7.8 38.8 57.2 348 -03062302.P#8 2 16.8 3414 -169 1003 367 38.7 1.7 -6.8 227 7.6 30.2 57.1 437 -03062223.P#8 2 17.7 4366 -39 972 253 38.8 7.2 -8.3 246 8.6 34.3 54.7 387 -03061001.P#9 2 12.6 2103 -97 1467 421 51.0 2.8 -11.2 266 7.9 45.5 63.9 651 -03053103.CMI 2 12.6 701 -119 899 482 64.7 1.8 -11.6 292 6.3 36.9 85.1 523 -03053101.ILX 2 12.4 784 -55 1108 474 76.0 3.2 -8.5 294 5.0 45.0 90.9 524 -03051100.UIN 2 14.7 2093 -27 738 302 63.1 6.3 -11.7 240 7.7 43.7 97.9 354 -03051004.C34 2 17.3 3493 -14 749 452 53.6 14.1 -8.8 228 7.7 32.1 77.0 511 -03050923.HBR 2 11.1 1389 -64 2135 137 56.8 0.0 -9.1 231 7.7 35.8 78.1 219 -03050900.C30 2 14.6 1749 -112 819 321 69.8 3.3 -8.9 227 6.8 57.0 72.2 306 -03050823.C34 2 17.9 3605 -25 669 342 65.2 12.3 -7.2 233 7.1 42.3 72.0 318 -03050822.W#N 2 17.4 3730 -13 635 141 70.0 5.3 -10.1 228 7.6 45.5 81.3 173 -03050821.LW1 2 19.1 5309 -6 876 145 63.2 7.7 -8.7 235 7.4 31.6 71.3 182 -03050807.ADM 2 17.1 3114 -53 730 439 47.4 10.6 -9.3 253 8.0 50.2 61.5 608 -03050805.SPS 2 16.0 2409 -148 836 382 44.4 2.4 -9.1 262 7.9 43.1 59.0 798 -03050703.PAH 2 15.8 2873 -49 602 390 36.8 6.9 -13.6 237 7.9 35.3 70.1 454 -03050701.CGI 2 15.1 2935 -47 799 431 61.0 12.6 -14.4 269 7.8 32.8 83.2 580 -03050504.MKL 2 15.6 2334 -16 833 615 59.6 14.3 -9.9 251 7.1 62.0 77.1 842 -03050501.LZK 2 15.9 2390 -18 719 361 67.0 8.6 -11.0 237 7.4 41.7 97.3 397 -99120301.GOK 2 10.2 1811 -12 858 234 47.2 3.3 -21.1 202 8.2 32.4 63.0 262 -99081601.JMS 2 13.6 1255 -165 1044 130 48.5 0.3 -9.9 240 8.1 30.2 89.4 174 -99070900.ONA 2 18.4 3379 -18 992 385 46.0 10.0 -5.8 275 6.5 42.9 49.4 571 -99070400.OSC 2 15.9 1760 -27 1078 101 26.7 0.7 -6.7 320 6.2 28.3 31.6 163 -99060620.HCO 2 14.6 3241 -5 904 65 29.6 1.0 -16.1 175 8.1 26.8 70.8 115 -99060500.IEN 2 12.1 2533 -37 1323 70 52.4 1.0 -11.4 201 8.2 32.9 60.1 191 -99060400.HLC 2 15.7 4348 -16 1101 154 38.3 3.9 -9.3 240 7.5 36.9 40.6 277 -99060200.TBN 2 14.9 2338 -19 838 136 37.3 2.0 -10.3 259 6.5 40.0 21.6 223 -99060123.MKO 2 17.3 3739 0 888 68 38.1 1.6 -10.6 279 7.9 32.2 23.0 135 -99060100.LIC 2 9.1 1877 -49 1439 56 56.8 0.6 -13.7 249 9.2 34.3 62.4 140 -99051621.OMA 2 16.1 4691 0 824 102 38.6 3.1 -14.5 223 8.8 33.7 41.5 176 -99051122.BMQ 2 15.0 3545 -92 1026 40 35.1 0.6 -12.3 259 8.0 21.8 29.6 59 -99050408.JCT 2 13.0 2082 -218 838 355 55.0 0.0 -11.2 254 8.3 46.8 58.7 506 -99050402.GOK 2 13.9 3154 -61 723 366 51.4 9.2 -14.6 240 8.2 36.8 57.5 441 -99050401.ICT 2 12.6 2748 -7 1016 257 31.8 3.7 -14.7 227 7.9 40.5 70.4 415 -99050323.OKC 2 15.2 4117 -15 733 308 43.5 9.2 -13.2 243 7.8 43.2 70.1 401 -99050300.HSI 2 8.0 203 -4 845 168 41.5 0.2 -17.7 222 6.7 28.6 32.1 221 -99042200.END 2 12.7 3301 -34 1156 225 46.1 4.8 -15.4 236 8.1 35.1 48.2 242 -04082700.RDD 2 18.4 3706 -37 940 184 41.0 4.7 -6.9 255 7.1 28.7 60.7 258 -04071823.GFK 2 16.7 3575 -36 1246 117 45.4 2.4 -7.9 310 6.8 35.1 45.5 292 -04071302.GRI 2 15.9 3090 -197 1538 152 29.0 0.0 -7.9 298 8.5 13.8 50.5 173 -04062402.OSH 2 11.1 1428 -30 700 187 62.2 2.7 -16.7 257 6.5 50.9 79.3 234 -04061620.LAA 2 12.3 1494 -63 908 129 51.4 1.5 -9.4 252 7.7 34.1 57.1 369 -04061300.W#N 2 16.4 3866 -17 1255 231 34.6 3.8 -9.2 251 7.9 37.4 44.2 387 -04060701.MOT 2 10.4 295 -316 1541 461 68.3 0.0 -8.4 254 6.7 33.2 82.6 561 -04060621.C02 2 9.9 1824 -59 2285 83 55.5 0.0 -10.8 234 7.9 39.7 69.2 64 -04053023.IND 2 17.3 2618 -10 577 361 58.6 9.2 -9.1 248 6.9 35.7 45.1 369 -04053020.SDF 2 16.6 2653 -2 807 250 52.4 5.8 -9.4 245 6.8 37.1 41.1 317 -04053002.OKC 2 15.5 2559 -32 1162 314 55.7 6.2 -7.3 244 7.0 35.6 70.5 434 -04053002.ICT 2 16.1 3240 -98 992 315 44.2 5.1 -10.4 245 7.9 25.8 56.2 399 -04053000.MCI 2 16.0 3437 -5 863 239 36.5 5.0 -12.8 232 8.3 27.4 42.9 372 -04052922.C33 2 16.5 4081 -4 1356 126 51.4 2.8 -7.8 244 7.4 36.9 74.7 248 -04052921.TOP 2 16.1 3843 -13 936 78 32.5 1.6 -12.5 233 8.0 17.3 39.0 190 -04052421.STJ 2 15.6 3982 -40 991 76 40.4 2.0 -11.9 234 7.7 26.3 67.6 270 -04052300.P#8 2 15.0 3882 -47 1262 228 54.5 5.9 -10.5 233 7.9 34.1 69.9 334 -04052221.MCK 2 13.2 3453 -37 1185 103 72.0 2.9 -12.3 231 8.6 35.5 82.5 224 -04052219.GLD 2 9.9 1898 -54 1700 22 59.0 0.1 -12.7 233 8.4 12.6 69.5 76 -04052122.CID 2 15.4 2960 -48 971 309 36.6 5.6 -11.5 268 7.4 36.1 50.0 390 -53031321.FWH 2 10.8 727 -98 981 119 51.2 0.5 -16.3 248 8.1 30.6 80.9 266 V -55052521.LTS 2 15.0 4060 -25 1509 322 66.4 6.4 -12.3 225 8.6 37.0 53.5 355 V -56041521.GUN 2 11.7 1189 -11 1302 251 72.4 2.1 -13.6 230 7.3 55.7 66.8 370 V -57040221.FWH 2 13.2 3580 -3 942 94 35.8 2.0 -15.8 189 7.9 26.1 52.8 122 V -57052021.TOP 2 14.0 2801 -2 920 142 55.7 3.7 -13.8 207 7.7 48.0 77.2 228 V -57052121.BYH 2 15.7 2854 -5 1106 236 49.7 5.0 -10.9 230 7.2 33.0 92.5 240 V -57061418.PIA 2 15.9 2118 -6 986 394 50.0 7.0 -8.6 252 6.9 52.8 52.1 496 V -59040100.FWH 2 12.6 3068 -26 987 124 42.8 2.7 -17.6 247 9.0 28.0 61.5 142 V -61050800.FSM 2 14.5 2844 -7 1215 261 61.7 5.8 -11.4 240 7.5 42.2 65.9 323 V -61050600.FSM 2 14.3 2667 -12 1121 245 65.5 5.8 -13.1 240 8.3 61.7 43.1 430 V -62052600.OKC 2 14.3 4171 -76 1591 154 33.3 1.2 -12.0 264 8.6 25.3 43.2 228 V -62080700.TOP 2 20.6 6024 -12 1167 160 42.3 5.7 -7.3 250 7.7 32.4 60.6 243 V -64050600.OMA 2 12.7 2395 -61 1048 349 68.6 7.4 -13.8 224 8.8 54.6 89.3 498 V -65041200.FNT 2 11.2 1814 -1 974 166 91.0 3.0 -17.7 250 7.7 46.4 91.6 372 V -66042800.FWH 2 14.1 3342 -17 1291 148 38.0 2.2 -11.8 265 7.2 39.3 49.0 269 V -66030400.HKS 2 12.2 1434 -10 831 138 47.6 1.6 -14.0 234 7.6 49.0 77.8 142 V -67061100.OKC 2 14.4 3497 0 1569 144 32.2 1.2 -11.0 235 8.7 35.0 51.1 260 V -68110400.VPS 2 12.8 1596 -2 812 129 50.5 1.7 -13.4 251 5.9 30.3 72.0 184 V -69041806.VPS 2 15.2 1013 -8 445 370 55.8 3.5 -11.0 248 6.9 42.3 73.3 439 V -69062400.TIK 2 18.4 4403 -4 776 317 37.5 8.7 -9.4 240 7.5 45.3 56.2 431 V -70100600.TIK 2 13.7 1865 -3 772 241 41.1 3.1 -12.2 230 6.7 35.4 55.6 335 V -71022200.JAN 2 12.8 938 -4 930 470 74.7 4.4 -11.8 211 6.7 57.8 77.3 590 V -73052800.MGM 2 16.4 2337 -2 1017 293 53.5 6.0 -7.9 239 6.2 45.6 45.2 386 V -73041600.VCT 2 15.4 2861 -37 1272 385 48.1 6.4 -12.9 231 8.1 35.7 72.2 377 V -74040400.MGM 2 14.8 2955 -2 1017 161 52.0 4.1 -12.8 235 8.2 39.5 59.4 253 V -74040400.BNA 2 14.6 2744 -31 970 209 77.8 5.7 -13.3 238 7.8 57.0 80.2 301 V -74040400.DAY 2 12.8 2185 -7 986 619 90.8 13.5 -13.1 235 7.1 71.9 91.6 919 V -75042500.UMN 2 15.7 5306 -1 837 145 53.3 6.8 -13.8 255 7.3 41.6 61.8 185 V -74060900.UMN 2 17.0 3643 -2 987 363 37.0 8.1 -6.7 231 7.6 41.4 27.5 508 V -75063000.BIS 2 13.6 3158 -76 1566 198 41.8 1.6 -12.3 233 8.6 26.8 55.7 204 V -76042000.SEP 2 13.7 3326 0 1092 305 45.1 6.9 -14.1 240 7.6 33.7 48.9 358 V -77040418.CKL 2 14.1 1633 0 994 247 66.8 4.0 -9.8 231 6.0 52.7 80.0 333 V -78060100.TOP 2 16.2 4279 -1 1160 267 35.7 5.7 -12.7 233 7.6 36.3 57.0 349 V -79041021.SEP 2 12.8 2186 -9 912 345 48.2 6.1 -13.1 228 8.1 42.9 54.3 468 V -79050300.OKC 2 13.9 2775 -4 877 218 73.2 6.0 -12.3 246 7.2 57.7 103.2 279 V -79033000.OMA 2 10.1 1322 -24 1155 223 56.4 2.4 -15.8 232 7.1 49.1 52.9 345 V -80040800.UMN 2 10.2 2256 -3 1473 97 39.6 0.8 -18.5 236 8.4 39.7 92.1 247 V -84060800.TOP 2 16.2 2284 -16 918 560 74.0 12.8 -6.0 237 6.2 49.1 84.6 705 V -84031600.1M1 2 12.2 2339 -1 1056 250 47.1 4.3 -14.9 251 6.9 30.4 55.5 292 V -86072900.OMA 2 16.4 4252 -21 1667 112 48.4 1.3 -10.6 268 8.6 28.2 81.3 151 V -87111600.GGG 2 12.8 1593 -8 723 298 61.9 4.8 -15.3 178 7.9 43.3 65.2 326 V -90061600.LBF 2 16.1 3827 -1 1050 21 42.1 0.5 -10.6 185 8.5 24.5 74.1 95 V -90060300.PAH 2 15.6 2246 -3 1039 274 47.1 4.7 -7.6 251 7.0 57.8 49.8 384 V -91042700.OUN 2 15.8 4387 -8 898 195 50.3 7.2 -11.5 242 7.0 44.2 54.9 370 V -92062800.AMA 2 14.6 3148 -3 1020 83 44.3 1.9 -10.3 249 7.9 32.7 52.7 220 V -92061700.OVN 2 18.7 4878 -1 1119 262 50.4 9.5 -6.5 237 6.9 46.6 64.6 473 V -93042500.OUN 2 11.6 2675 0 1209 113 49.6 2.0 -14.6 235 6.9 35.5 65.5 168 V -93050700.TOP 2 13.7 2046 -7 666 484 58.8 9.7 -13.1 217 7.0 55.4 51.4 644 V -93060700.LBF 2 15.9 4738 0 930 328 59.3 15.3 -8.6 229 7.6 41.9 67.6 583 V -94042600.SEP 2 12.9 2562 -34 1365 201 51.9 2.8 -11.5 258 7.4 41.3 51.0 198 V -95051900.BMX 2 15.7 2868 -5 989 239 39.3 4.5 -9.9 247 6.7 31.9 49.1 230 V -98040900.BMX 2 14.6 2259 -18 642 136 77.9 3.1 -13.9 240 7.9 50.3 100.1 290 V -98041700.BMX 2 14.7 2038 0 704 263 73.4 5.4 -11.9 245 6.8 36.3 98.6 327 V -99050400.OUN 2 13.4 3644 -22 1050 271 41.4 6.5 -14.9 225 8.4 32.0 37.7 343 V -00121618.BMX 2 12.0 1369 -1 737 279 66.9 3.8 -14.1 220 6.7 51.3 90.8 339 V -00092100.ILN 2 12.5 747 -19 1280 611 75.3 3.3 -7.5 240 5.4 64.7 73.0 810 V -01061400.OAX 2 16.8 4639 -1 1278 127 38.6 2.8 -11.3 215 9.0 35.2 48.5 145 V -01112412.JAN 2 13.0 1392 -2 773 366 50.4 4.3 -10.1 225 5.7 52.4 48.8 504 V -01112418.BMX 2 13.4 1498 -1 655 227 52.0 3.0 -11.3 220 6.1 43.1 61.9 319 V -02111018.ILN 2 11.3 1239 0 734 385 54.4 4.3 -13.7 230 6.6 49.5 103.8 417 V -02062400.ABR 2 17.1 4378 0 1112 85 50.6 2.8 -10.5 245 8.2 29.8 57.9 153 V -03050900.OUN 2 17.0 3871 -32 990 336 62.0 13.0 -6.9 235 6.3 53.9 80.1 364 V -94032718.CKL 2 15.5 1965 0 743 344 72.9 6.8 -9.1 233 6.3 54.7 56.0 403 V -81052300.OKC 2 13.1 2411 -70 1142 203 49.1 3.0 -13.7 235 9.0 37.6 49.1 249 V -65041100.LIT 2 12.7 1815 -1 1365 140 52.3 1.4 -11.1 248 7.2 39.4 64.4 212 V -53051121.FWH 2 13.2 1452 -55 1150 122 53.0 1.3 -11.2 248 7.3 40.4 64.4 209 V -90082900.PIA 2 21.0 6470 -2 974 110 33.6 4.0 -7.3 297 7.1 23.3 54.6 147 V -55042411.GUN 2 13.1 1784 -7 917 345 68.7 6.2 -12.7 248 7.1 44.1 85.9 375 V -56040321.HKS 2 13.0 1491 -14 1212 173 82.1 2.0 -12.4 221 7.5 52.1 107.5 267 V -56051221.MTC 2 13.8 2444 -8 1001 124 69.2 3.0 -14.4 266 7.5 25.2 94.3 162 V -60052000.TOP 2 14.3 3120 -23 1112 167 43.1 3.3 -13.3 213 8.2 32.6 58.1 244 V -66060900.TOP 2 15.9 2226 -24 819 296 59.5 6.5 -8.6 223 7.1 47.3 69.8 397 V -68082000.GRB 2 16.1 2780 -11 1217 173 50.0 3.1 -7.3 258 6.4 27.0 43.6 195 V -74040318.BNA 2 13.0 2906 -5 1157 205 63.1 5.0 -15.5 229 8.2 48.6 76.4 333 V -61051500.PIA 2 12.4 1259 -2 817 196 68.7 2.5 -13.0 202 6.6 36.7 80.9 205 V -54050121.TIK 2 13.0 1988 -17 709 242 56.2 4.5 -13.5 203 8.0 39.2 73.2 282 V -55060421.SLN 2 13.4 3594 -5 1422 36 25.3 0.3 -12.7 225 7.9 23.8 30.4 152 V -70061300.COU 2 16.5 3499 -11 949 204 64.2 7.2 -7.8 246 5.5 49.6 57.1 318 V -76032700.1M1 2 11.8 1820 -17 961 187 41.8 2.4 -17.1 230 8.2 57.3 71.8 243 V -04071318.ILX 2 19.0 4958 -10 1102 117 37.5 3.3 -10.9 305 7.9 33.8 45.3 197 V -68051600.LIT 2 15.6 2612 -4 971 250 52.8 5.7 -11.7 260 8.6 45.5 72.5 337 V -65031700.OKC 2 11.1 1628 -3 687 269 91.0 4.4 -17.9 235 7.1 58.8 114.4 325 V -00061300.DIK 1 11.1 1786 -3 1286 88 51.7 1.0 -13.3 237 7.5 40.6 50.2 180 -00061122.MOT 1 11.3 2235 -22 1420 120 55.4 1.4 -14.8 231 7.6 39.0 57.9 252 -00060802.JDN 1 7.4 755 -232 3045 106 49.5 0.0 -10.8 230 8.9 34.6 71.9 282 -00060402.OFK 1 10.0 668 -199 1628 156 44.9 0.0 -11.7 284 7.7 38.1 49.1 406 -00060402.NFW 1 16.8 1734 -9 639 117 28.9 1.0 -7.5 270 5.9 23.5 32.0 202 -00052719.MAR 1 16.0 4104 -12 1610 26 26.6 0.2 -12.4 258 8.8 17.5 43.3 95 -00052700.THK 1 14.7 3226 -62 1771 46 35.7 0.2 -9.0 238 8.3 28.1 55.2 83 -00052700.ADK 1 15.9 4170 -7 1457 60 38.4 0.9 -10.1 248 7.9 22.8 55.2 91 -00051202.LWC 1 16.0 3233 -93 1098 243 43.4 3.7 -7.0 245 6.5 28.2 57.5 246 -00050802.RWF 1 11.7 1550 -17 1609 79 45.4 0.4 -12.5 230 7.1 29.3 54.1 203 -00050702.TOR 1 8.6 1203 -94 1663 106 57.4 0.3 -15.3 235 9.1 39.5 72.5 258 -00042622.ONL 1 6.5 337 -109 1466 129 40.6 0.1 -21.7 284 8.4 30.1 73.0 229 -00042118.EZF 1 10.3 898 -4 877 28 58.9 0.3 -17.2 220 6.6 30.7 62.4 94 -00032902.CRS 1 14.5 2234 -6 743 161 50.8 3.0 -14.0 258 7.8 26.8 92.5 244 -00032823.DTO 1 12.9 2286 -24 1256 75 45.3 1.0 -14.5 246 7.7 20.6 88.2 121 -00032701.BAZ 1 14.1 1797 -31 945 101 61.6 1.8 -10.9 294 7.0 32.6 86.8 184 -00032623.MLC 1 11.7 1998 -24 1176 73 50.5 1.0 -14.4 296 6.9 29.7 68.1 193 -00032221.UPT 1 11.4 2370 -12 1181 167 63.0 3.2 -15.3 196 8.2 44.6 83.1 213 -00032207.ODO 1 11.4 1900 -1 561 280 54.6 4.9 -16.5 195 8.4 45.8 80.2 519 -00032207.DRT 1 13.4 2593 -107 837 215 40.0 2.3 -14.9 225 8.9 40.7 64.3 569 -00032201.DYS 1 9.6 140 -194 1028 77 44.2 0.0 -12.2 197 6.4 33.8 61.9 126 -00031523.END 1 9.1 877 -2 1153 56 37.8 0.3 -16.7 241 6.6 26.4 36.5 119 -00031023.BMQ 1 12.1 2702 -18 1209 70 48.2 1.2 -14.5 275 7.6 28.5 52.2 143 -00030823.MKE 1 11.0 1510 -13 1038 185 54.8 2.5 -16.1 213 6.7 42.7 47.9 221 -00030208.MAF 1 11.4 1969 -62 631 373 64.7 6.7 -16.7 225 8.8 39.2 68.5 410 -00022502.ARN 1 11.3 2487 -19 846 226 54.1 5.1 -16.8 208 8.1 38.3 67.9 247 -00022303.DLF 1 8.7 884 -128 1728 29 68.1 0.0 -16.1 277 7.8 32.4 70.9 86 -01042100.SUX 1 8.8 765 -22 1661 84 43.9 0.2 -16.8 206 7.9 27.0 64.5 204 -01041123.BIV 1 12.3 587 -74 777 368 64.3 1.8 -11.6 220 5.9 42.8 48.1 410 -01041107.ADH 1 11.8 556 -140 952 259 56.9 0.5 -12.1 207 7.2 40.1 68.6 271 -01041100.SUS 1 13.7 2171 -35 926 93 64.4 2.0 -12.3 258 6.5 38.6 74.7 252 -01041022.SZL 1 14.3 2693 -55 696 170 63.3 4.4 -12.9 245 6.7 37.7 83.2 242 -01040923.PIA 1 11.9 2755 -12 1469 63 57.1 0.9 -15.8 272 7.5 28.4 73.8 164 -00111220.HYI 1 15.0 1358 0 575 130 66.4 1.8 -11.5 257 7.0 30.5 99.4 240 -00110822.TUP 1 14.5 1023 -4 743 229 62.2 2.3 -9.9 225 6.6 34.8 71.9 291 -00110121.BIS 1 8.9 739 -22 512 134 42.6 0.7 -21.9 135 8.3 30.9 61.9 177 -00103122.FNB 1 12.8 1776 -6 916 106 37.0 1.2 -13.0 217 6.9 22.0 45.0 157 -00102922.LNK 1 10.2 657 -14 724 192 49.1 1.0 -16.4 188 6.2 32.0 43.8 218 -00102919.AUH 1 8.7 191 -3 740 83 38.8 0.1 -16.4 158 6.1 31.7 39.6 118 -00102900.JCT 1 12.1 704 -63 868 232 49.5 1.2 -10.5 218 7.0 32.5 72.8 338 -00102818.GOV 1 11.9 922 -5 443 156 35.8 0.9 -12.3 192 6.7 29.9 31.1 195 -00102423.ODO 1 12.0 1308 -7 918 73 40.2 0.6 -11.4 215 7.4 30.0 51.0 103 -00102300.TIK 1 13.8 1236 -5 453 143 32.3 1.0 -11.8 212 6.3 24.0 44.2 171 -00102123.WLT 1 12.4 655 -43 561 114 29.4 0.4 -11.7 196 5.0 24.0 39.6 153 -00090201.GXY 1 10.1 1399 -61 1894 64 48.6 0.1 -8.8 219 8.0 24.5 58.2 133 -00081501.OEO 1 16.6 2661 -111 1084 275 47.1 3.1 -7.7 281 7.5 38.3 69.3 408 -00072500.ANW 1 14.5 3660 -50 1579 99 43.1 1.1 -9.2 307 8.3 23.5 62.3 152 -00072302.LAA 1 11.0 1368 -108 1806 33 48.7 0.0 -8.9 325 7.7 25.9 61.1 115 -00072104.P28 1 14.3 1660 -216 1167 146 41.4 0.0 -9.2 286 7.8 30.2 58.9 374 -00072004.GLD 1 12.8 1625 -153 1450 69 50.3 0.2 -8.9 286 8.4 26.3 57.9 113 -00071823.SUS 1 17.9 2488 -23 946 101 35.0 1.5 -7.4 262 6.2 32.7 35.7 194 -00071023.GGW 1 11.5 1838 -22 1490 19 53.5 0.2 -11.1 239 6.6 29.9 73.1 81 -00070823.RPD 1 18.8 4320 -44 798 124 39.2 3.5 -8.3 282 6.7 21.3 43.9 183 -00070802.LJF 1 19.5 4388 -7 680 348 43.9 11.2 -9.0 258 8.4 34.1 50.6 438 -00070600.OVE 1 7.4 115 -46 1571 14 34.5 0.0 -17.8 243 7.0 10.2 60.4 40 -00070400.MCK 1 14.2 1661 -19 1452 131 41.3 0.8 -6.2 236 6.6 26.2 46.5 200 -00070222.RYV 1 15.9 2122 -22 737 96 36.0 1.2 -9.2 288 5.9 30.2 35.4 223 -00062923.GLD 1 11.9 2724 -35 2040 95 44.6 0.0 -10.0 295 8.8 34.1 62.4 180 -00062522.AMA 1 13.7 3217 -9 2155 26 36.2 0.0 -6.9 271 8.3 18.7 36.3 97 -00062501.HAO 1 13.1 422 -35 1552 152 35.2 0.2 -7.7 249 5.7 29.2 32.5 226 -00062019.MTO 1 15.3 938 -10 830 185 29.7 0.9 -7.9 246 6.3 38.8 17.7 268 -00062001.HSI 1 14.0 1763 -84 1164 234 40.3 1.8 -8.2 248 7.0 27.7 49.5 343 -00061621.IPT 1 16.3 2224 -6 898 126 25.2 1.2 -7.2 258 5.6 34.7 21.7 251 -00061323.PRT 1 14.6 3313 -86 1730 52 37.5 0.2 -7.5 265 8.2 21.9 60.1 117 -00061321.RDK 1 17.0 3477 -23 902 260 35.7 5.4 -9.8 237 7.9 30.5 30.4 304 -00061300.LBF 1 10.3 2216 -34 2374 46 34.8 0.0 -10.3 241 8.4 19.0 34.1 135 -00061300.GFK 1 11.1 1031 -80 1371 163 45.4 0.6 -13.5 239 7.2 30.8 40.7 248 -03031919.CSV 1 9.7 329 -12 552 167 68.4 0.6 -16.4 213 7.0 45.4 103.6 306 -03031917.CSV 1 9.6 129 -21 493 196 62.6 0.3 -16.0 222 6.7 61.8 100.8 422 -03031915.HSV 1 10.9 546 0 538 221 80.9 1.2 -16.0 224 6.4 51.0 103.8 393 -03031800.FSI 1 11.0 983 -10 789 157 47.9 1.2 -17.1 242 7.4 21.2 84.6 148 -03031722.SPS 1 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 -03031721.HBR 1 10.6 1028 -46 917 133 27.4 0.6 -15.9 217 7.1 22.3 90.0 154 -01062101.DEN 1 8.5 516 -90 1464 2 57.2 0.0 -10.9 293 7.2 41.8 50.9 136 -01061403.DDC 1 14.7 4480 -83 1698 161 58.3 1.7 -11.1 234 9.3 30.0 58.2 280 -01061323.PQN 1 15.8 3695 -5 1047 117 31.9 2.2 -10.3 212 8.0 28.2 46.4 193 -01061000.MBS 1 8.3 401 -7 1604 78 43.1 0.1 -16.3 312 6.3 19.1 70.0 124 -01060923.BIS 1 13.0 2950 -51 1333 25 50.8 0.4 -12.4 272 7.7 30.4 52.9 158 -01060521.P28 1 15.5 2749 -10 880 99 38.9 1.8 -11.4 241 8.1 28.3 45.3 182 -01060521.CDS 1 15.0 3410 -11 1645 9 34.8 0.1 -9.6 266 8.0 23.5 28.9 110 -01060421.LIC 1 8.2 167 -117 1162 92 45.0 0.1 -12.6 233 7.5 32.1 65.5 170 -01060402.WLD 1 15.9 3250 -135 778 339 39.0 3.1 -9.4 254 8.1 35.7 49.4 535 -01060121.MXO 1 8.9 416 -12 968 81 51.7 0.3 -17.7 275 6.4 33.3 51.6 153 -01053000.CDS 1 13.5 2478 -201 1327 184 58.9 0.0 -9.9 240 8.4 43.6 59.7 269 -01052423.JCT 1 11.1 2121 -41 2081 21 42.8 0.0 -12.9 298 8.3 34.2 39.7 254 -01052423.BHM 1 10.8 1036 -32 1179 118 47.3 0.8 -14.7 258 6.9 44.8 49.5 280 -01051022.OLZ 1 11.3 1843 -33 1200 61 42.2 0.6 -15.7 256 7.4 31.2 46.0 179 -01050823.CNK 1 8.0 560 -40 1902 58 51.8 0.0 -16.7 317 7.3 21.6 51.7 171 -01050621.ILE 1 16.4 3719 -9 838 53 30.9 1.0 -13.1 261 7.0 24.3 54.4 118 -01050621.1F0 1 14.4 2826 -1 776 124 27.7 1.6 -13.9 256 6.8 24.7 55.3 157 -01050602.COT 1 16.2 2790 -11 863 180 42.4 3.6 -10.7 247 7.2 33.3 76.0 223 -01050601.HBR 1 10.8 1071 -47 991 113 60.9 1.2 -14.6 218 6.8 35.4 66.2 149 -01050600.WLD 1 10.9 813 -3 986 94 45.9 0.6 -13.4 211 6.5 34.0 50.5 174 -01050521.ACT 1 14.9 2393 -3 716 65 41.0 1.1 -11.6 229 6.7 21.6 53.3 125 -01050422.FNB 1 13.2 1315 -10 654 80 33.2 0.6 -12.0 205 5.5 25.5 43.0 144 -01050412.SPS 1 13.3 1511 -11 818 233 45.0 2.6 -11.2 211 5.9 37.5 53.7 290 -01050223.CDS 1 12.5 3652 -132 1895 166 31.7 0.2 -13.0 217 9.2 26.5 37.9 210 -01050123.RPD 1 11.7 2374 -31 1338 213 46.8 2.6 -14.3 249 7.2 38.7 54.2 348 -01050123.RGK 1 12.1 2710 -41 1464 239 44.1 2.6 -14.6 250 7.7 37.9 54.3 370 -01050100.TQE 1 9.6 1164 -13 1373 125 29.7 0.5 -16.8 267 7.6 24.5 30.9 158 -01050100.BGD 1 8.6 1497 -7 2135 23 54.7 0.0 -14.0 327 8.0 22.4 64.0 136 -01042300.OAX 1 11.5 527 -10 586 257 62.9 1.4 -12.4 193 5.9 51.0 62.5 288 -03060800.ECG 1 15.9 456 -52 671 256 26.7 0.5 -5.9 244 4.7 33.3 37.0 264 -03060500.CVS 1 8.5 804 -116 2160 108 56.7 0.0 -9.7 295 8.0 53.0 55.1 313 -03060422.TCC 1 10.6 1847 -48 1858 84 47.9 0.2 -10.4 290 8.6 41.0 53.3 227 -03060103.BFF 1 11.3 1434 -103 1288 72 46.7 0.4 -9.1 291 7.2 22.6 47.7 113 -03052820.PIA 1 11.7 1566 -31 860 135 36.1 1.3 -16.6 318 7.2 30.1 54.2 203 -03052323.V#L 1 10.7 657 -22 998 134 47.6 0.7 -13.2 312 7.1 36.4 63.1 269 -03051401.TXK 1 13.6 1354 -97 1023 210 48.8 1.5 -11.3 301 7.8 39.5 74.4 571 -03051323.C04 1 12.3 338 -272 641 212 57.3 0.0 -12.4 299 8.0 32.1 67.8 353 -03050920.FVX 1 13.5 1153 -108 1077 253 59.2 1.6 -11.6 288 7.8 44.4 56.6 335 -03050918.CHO 1 15.0 1961 -22 782 298 58.7 5.7 -11.4 296 7.3 46.4 63.9 473 -03050800.ABI 1 11.7 1368 -77 2113 150 68.5 0.0 -6.9 244 6.8 41.7 79.4 428 -03050721.ANB 1 14.0 798 -104 694 354 51.0 1.5 -9.4 268 6.5 39.0 46.7 422 -03050719.BMX 1 15.8 2069 -6 591 233 43.2 3.5 -10.7 274 6.8 31.7 48.0 302 -03050700.FAM 1 13.4 2397 -56 1026 270 72.9 6.1 -14.5 269 7.6 38.6 77.4 402 -03050518.MKL 1 15.9 2561 0 610 165 70.0 4.2 -11.5 253 7.0 46.3 90.9 195 -03050423.C35 1 15.5 2257 -12 619 309 68.9 7.0 -11.1 234 7.3 35.2 111.6 297 -03050421.ADM 1 16.6 3573 -3 898 108 77.1 3.9 -8.7 238 6.2 51.9 109.7 213 -03050320.BFF 1 7.9 1569 -35 1574 91 55.3 0.6 -17.6 237 9.1 30.0 121.3 150 -03050121.TUL 1 15.3 4038 -2 592 93 35.5 2.2 -13.9 263 7.7 27.5 53.2 205 -03043023.FOE 1 13.9 4015 -6 1059 116 26.7 2.0 -14.3 236 7.7 24.7 34.3 165 -03042821.BYI 1 4.3 220 -74 1877 74 40.4 0.0 -21.3 217 8.4 19.6 47.5 151 -03042522.MGM 1 13.1 2112 -13 1028 106 63.3 2.2 -14.2 266 6.8 41.2 42.5 199 -03042521.LWT 1 6.2 193 -34 1157 84 33.2 0.1 -19.0 194 7.6 23.8 44.0 191 -03042518.TCL 1 11.3 524 -50 815 216 66.5 1.1 -14.0 256 6.7 54.5 74.3 295 -03042423.PIB 1 13.2 710 -91 552 278 47.4 1.1 -13.2 256 7.3 29.9 47.5 367 -03042422.FOE 1 9.2 537 -24 443 119 31.9 0.3 -19.7 184 6.7 33.6 18.6 155 -03042419.BTR 1 14.3 2208 -2 816 43 52.0 0.8 -13.0 244 7.4 27.5 46.2 86 -03041923.MLC 1 12.8 1448 -52 744 271 64.7 3.9 -11.2 230 5.7 51.5 81.0 283 -03040618.JAN 1 12.9 801 -40 747 201 51.3 1.4 -14.4 243 7.5 28.4 87.0 298 -03040614.MLU 1 13.4 517 -86 382 358 50.8 1.2 -13.9 229 7.4 36.9 73.2 428 -03040601.FWD 1 11.1 461 -111 865 325 67.8 0.9 -13.5 245 6.9 40.1 93.4 563 -03040420.SPI 1 11.2 1687 -7 802 102 38.9 1.1 -17.7 252 7.6 39.5 59.0 176 -03032721.PBI 1 12.4 384 -64 873 185 47.9 0.5 -12.0 240 6.3 8.1 99.7 189 -03032720.TMB 1 13.5 878 -5 1007 102 59.6 0.9 -10.7 241 5.9 21.4 97.6 157 -04040822.ROW 1 7.6 885 -35 1457 25 42.6 0.1 -16.3 225 7.7 31.8 52.9 136 -04040616.VCT 1 13.2 671 0 457 159 42.0 0.8 -12.5 228 5.9 29.4 48.5 233 -04040615.CRP 1 14.5 1276 0 405 109 39.2 0.9 -12.3 238 7.0 30.2 44.3 209 -04032723.C33 1 12.5 2394 -14 752 342 44.2 6.0 -15.0 235 7.2 45.6 56.4 529 -04032721.C33 1 12.5 2248 -11 742 183 42.7 2.9 -14.5 230 7.1 29.5 50.7 257 -04032718.GAG 1 11.6 1959 -2 705 243 43.2 3.4 -16.1 217 7.9 33.2 51.9 263 -04020601.TCL 1 11.9 190 -48 628 310 45.1 0.4 -12.7 222 6.4 48.7 58.2 536 -03111803.GLS 1 16.5 1327 -28 566 364 46.5 3.8 -8.7 230 6.1 33.7 77.0 402 -03111722.GLS 1 10.1 1092 -23 682 103 65.1 1.1 -18.5 220 7.2 45.6 115.8 218 -03110520.IAD 1 13.7 626 -17 1058 109 35.5 0.4 -9.7 248 6.0 23.4 50.7 109 -03100923.GLS 1 18.1 1654 -5 454 164 35.3 1.6 -5.9 253 5.5 26.9 46.4 209 -03100523.C10 1 11.8 1332 -9 1262 56 39.6 0.4 -7.5 295 5.6 37.5 47.9 168 -03090807.MAF 1 11.7 777 -160 1418 169 29.0 0.1 -10.5 282 7.9 18.5 32.7 262 -03082523.RAD 1 12.0 1595 -36 1379 139 56.3 1.3 -11.7 280 6.3 16.2 82.0 142 -03080122.MIE 1 14.8 2465 -19 976 39 23.4 0.0 -10.9 251 6.4 10.2 49.8 63 -03072100.SUX 1 21.5 6268 -16 748 130 47.0 6.4 -7.5 313 7.3 28.4 42.4 175 -03072022.SUX 1 20.7 5887 -14 863 100 42.2 4.2 -7.3 304 7.8 47.1 46.8 375 -03072022.OFK 1 19.2 6004 -19 1398 33 31.9 0.6 -7.5 313 8.2 30.8 31.8 166 -03071922.STC 1 15.2 2711 -22 1042 103 46.1 2.1 -10.6 310 7.0 34.7 54.6 221 -03071102.NHK 1 16.5 987 -67 757 159 22.6 0.0 -7.7 240 6.4 20.9 29.8 187 -03070921.RWF 1 13.6 1319 -19 765 52 42.5 0.5 -10.8 262 7.0 23.9 51.9 91 -03070919.P#3 1 13.7 1228 -1 615 65 49.7 0.7 -10.0 258 6.5 18.9 58.3 80 -03070902.ATH 1 11.5 2088 -216 2152 184 48.4 0.0 -8.0 269 9.4 34.4 71.3 315 -03062823.BRD 1 10.3 984 -41 828 98 44.5 0.7 -16.0 285 5.9 30.4 65.1 168 -03062820.BJI 1 8.9 792 -1 1152 76 36.4 0.3 -17.5 276 6.2 21.6 57.0 122 -03062802.C22 1 8.5 251 -78 1075 74 33.2 0.1 -17.0 302 6.9 33.5 39.2 110 -03062800.P11 1 8.9 130 -58 757 94 34.6 0.1 -16.9 294 6.8 32.0 41.6 182 -03062223.GRI 1 18.1 5092 -19 1060 137 41.0 4.5 -7.9 238 8.0 29.8 45.3 215 -03062119.GCC 1 9.0 940 -32 1043 126 52.6 1.0 -13.9 234 7.3 37.7 61.9 271 -03061423.GLD 1 11.1 1240 -11 1151 21 28.6 0.1 -11.5 347 7.2 20.2 27.1 107 -03061202.9V9 1 11.9 1311 -150 1237 252 55.7 0.8 -12.0 277 7.7 34.4 64.5 403 -03061123.PIR 1 12.2 2019 -91 1257 201 52.8 1.9 -12.8 252 7.7 30.1 78.9 352 -03060922.AIH 1 12.2 3211 -62 1638 201 43.3 1.6 -13.0 253 9.0 35.4 67.6 306 -04052223.P#A 1 15.1 2952 -11 774 39 53.1 1.0 -12.0 243 7.6 22.0 68.8 112 -04052223.OAX 1 13.7 2734 -22 1169 83 52.1 1.6 -11.3 232 7.4 29.5 77.9 274 -04052201.OFK 1 14.7 3647 -8 1268 198 35.6 3.1 -11.0 240 7.8 35.9 59.8 310 -04052201.AIH 1 12.5 2491 -49 1041 183 43.4 3.2 -12.7 241 8.1 37.2 66.0 201 -04052122.GEG 1 8.3 1152 -51 831 61 20.9 0.0 -20.3 270 7.3 16.0 22.9 86 -04051821.PIA 1 13.2 1154 -20 811 45 38.0 0.3 -11.1 240 5.6 36.6 42.0 114 -04051701.C07 1 9.6 1682 -36 2011 261 50.5 0.0 -10.9 271 7.9 35.3 62.3 740 -04051700.GRI 1 11.3 1410 -72 1036 313 44.9 2.7 -14.9 227 8.2 36.5 55.1 498 -04051420.MBS 1 13.4 793 -7 834 109 40.9 0.6 -10.0 223 5.5 35.3 48.3 177 -04051416.SBN 1 13.7 499 0 429 86 47.3 0.3 -10.0 213 5.3 45.7 43.4 226 -04051323.G#4 1 15.5 3158 -12 977 153 38.7 3.1 -11.1 260 7.5 26.9 14.0 223 -04051223.C32 1 11.4 2949 -2 1894 52 53.9 0.2 -12.4 230 8.0 35.8 51.2 184 -04051117.VCT 1 16.3 1839 0 387 110 21.6 0.0 -10.4 236 6.4 21.8 22.3 236 -04043018.SPS 1 12.8 1694 -16 674 115 47.0 1.5 -14.9 221 8.0 24.4 40.3 122 -04042921.CDS 1 9.5 1110 -130 1817 -14 26.8 0.0 -14.5 244 8.2 30.9 40.8 112 -04042900.DRT 1 11.7 872 -12 771 192 46.2 1.3 -13.3 241 6.5 37.1 66.5 291 -04042320.SPS 1 14.3 3037 -1 1026 34 40.0 0.7 -13.4 226 7.4 18.9 49.8 60 -04042317.C11 1 10.4 439 -226 1267 41 38.3 0.0 -12.0 218 8.0 22.5 52.0 77 -04042300.FYV 1 11.8 1066 -33 829 252 39.7 1.8 -14.3 264 7.5 32.0 68.1 287 -04042222.TUL 1 13.0 1845 -5 720 136 58.2 2.4 -14.9 261 7.6 42.3 60.4 262 -04042220.P#P 1 13.3 2326 -1 748 134 58.8 3.1 -15.9 266 8.0 37.4 58.0 199 -04042200.GAG 1 10.8 1625 -5 908 47 32.4 0.4 -16.4 262 7.4 23.8 78.1 203 -04042122.G#1 1 7.3 762 -3 1736 51 74.4 0.1 -18.1 267 7.9 29.6 109.6 287 -04042100.TUL 1 10.6 632 -70 1159 363 52.0 1.5 -13.5 244 6.5 34.2 55.8 403 -04042023.GVS 1 10.8 283 0 524 272 32.9 0.4 -14.5 241 5.8 36.7 31.1 351 -04042022.C34 1 11.4 1441 -8 1212 105 50.3 1.0 -12.2 244 6.3 35.5 57.3 152 -04042019.HUF 1 9.9 107 -34 769 282 37.1 0.2 -14.7 239 5.8 35.7 36.3 292 -04042001.G#1 1 10.9 1585 -37 948 193 46.4 2.4 -14.6 237 7.8 39.5 70.5 374 -04041923.AMA 1 10.3 1602 -8 1272 103 41.6 0.8 -12.3 237 6.8 29.9 68.2 173 -04041823.HYR 1 9.5 788 -51 1551 610 67.8 2.1 -14.2 237 6.6 48.6 102.0 685 -04041822.YKN 1 8.5 781 -30 1937 -47 67.4 0.0 -14.5 231 7.3 50.2 99.2 231 -04041820.STC 1 9.5 1332 -37 1772 54 48.6 0.1 -15.2 231 8.6 26.3 87.5 167 -04041803.MCW 1 11.3 1606 -164 1042 529 61.4 2.0 -14.5 249 8.2 51.8 78.3 736 -04041800.FRM 1 6.2 0 -9999 2233 126 60.4 0.0 -15.8 250 8.3 48.2 86.0 376 -04041318.MHX 1 14.5 829 -6 376 471 48.2 3.1 -10.4 209 5.7 50.3 59.5 492 -04041101.HOU 1 14.2 1196 -29 574 -14 42.4 -0.1 -12.2 228 6.1 21.1 49.7 59 -04040922.MLC 1 9.5 826 -4 1253 59 50.6 0.3 -15.2 263 6.2 30.9 65.3 245 -04081001.LIC 1 13.1 2627 -14 833 10 31.8 0.1 -7.6 302 6.9 29.5 39.6 240 -04080923.LIC 1 12.3 2929 -24 1366 16 34.5 0.2 -7.1 291 7.3 33.3 41.5 174 -04080222.BH5 1 9.0 780 -79 2692 -22 40.8 0.0 -7.8 269 8.3 36.1 53.6 117 -04080101.FSD 1 15.5 3162 -71 1296 126 42.1 1.7 -10.0 298 7.7 29.5 43.5 211 -04071502.PWD 1 11.6 1241 -85 1817 -10 41.6 0.0 -9.7 293 7.4 25.5 68.5 104 -04071421.NHK 1 15.8 2262 -34 1229 29 22.0 0.0 -9.0 266 6.6 17.0 40.9 95 -04070822.CDR 1 8.4 1172 -184 2535 65 52.1 0.0 -10.6 252 9.0 39.8 58.2 155 -04070800.RSL 1 16.8 3857 -81 950 330 43.6 7.3 -6.9 302 7.3 32.9 43.0 525 -04062401.MSN 1 11.0 1731 -10 1132 139 52.2 1.8 -15.8 264 6.6 37.4 69.1 149 -04062202.AMA 1 14.9 2631 -32 851 69 48.2 1.5 -9.3 256 8.0 30.2 68.7 322 -04062201.AMA 1 13.9 2569 -24 1161 158 51.4 2.9 -9.1 264 8.2 37.1 79.6 378 -04062123.AMA 1 14.3 3017 -3 1129 34 46.0 0.7 -9.8 253 7.9 30.1 66.4 233 -04062100.LAA 1 13.7 2855 -58 1180 172 53.2 3.4 -9.9 265 8.0 19.8 59.2 173 -04062021.PUB 1 9.4 1660 -152 1943 219 45.3 0.1 -10.7 255 9.0 31.5 55.0 312 -04062019.COS 1 10.8 2562 -34 1009 45 38.2 0.7 -12.0 275 8.7 28.8 54.8 98 -04061501.HYS 1 14.0 3081 -123 1665 173 58.2 0.9 -9.0 287 8.2 39.1 57.5 526 -04061401.RDD 1 12.6 881 -112 1018 143 43.3 0.5 -9.7 283 6.4 45.8 43.1 223 -04061322.LNK 1 10.8 941 -69 1877 47 38.4 0.0 -9.3 287 5.7 33.3 45.8 183 -04061318.RQB 1 13.7 1000 -12 900 139 52.4 1.2 -10.7 233 6.1 36.9 55.2 229 -04061121.FRM 1 16.5 2686 -15 680 177 37.0 2.9 -11.0 219 7.7 18.6 49.4 252 -04061103.HSI 1 12.4 1209 -300 1522 316 36.6 0.0 -10.8 210 9.0 34.1 53.9 333 -04060921.APA 1 8.8 1388 -12 2068 90 27.2 0.0 -10.0 186 8.8 22.9 47.8 104 -04053022.SLO 1 18.2 3905 -16 909 156 45.8 4.6 -9.2 240 6.9 43.6 52.3 241 -04052701.PNC 1 15.4 2665 -48 1261 221 69.9 4.4 -8.5 266 6.3 33.5 88.2 272 -04052623.G011 1 12.4 1626 -109 1852 49 70.8 0.1 -9.9 262 7.1 37.0 94.0 147 -04052622.P#T 1 11.9 1612 -29 2366 155 49.7 0.0 -7.5 252 7.6 30.5 79.4 164 -04052602.ABI 1 14.8 1459 -96 876 180 51.9 1.6 -7.9 237 7.1 20.8 85.8 179 -04052500.FDR 1 16.4 3848 -41 1381 227 52.9 4.8 -10.3 248 8.8 44.6 77.8 373 -04052421.MCI 1 15.5 3926 -27 1068 147 47.7 4.3 -11.9 239 7.8 31.2 69.7 377 -04052421.CDS 1 11.5 2298 -45 2458 72 49.8 0.0 -9.7 246 8.0 26.4 75.8 113 -04052420.HSI 1 15.0 4625 -31 1086 83 34.0 2.0 -15.1 231 9.5 23.3 61.8 166 -04052420.BGM 1 11.0 1383 -50 1291 107 43.0 0.8 -13.2 261 6.4 38.3 57.1 215 -04052400.MKX 1 12.6 2101 -6 936 253 43.7 3.9 -15.6 243 8.0 47.2 76.4 303 -04052302.P#8 1 14.4 3064 -83 1357 338 64.2 5.2 -12.5 243 8.9 33.2 52.0 372 -04052301.P#A 1 15.3 2427 -11 641 38 43.9 0.7 -11.1 235 7.5 24.0 58.7 130 -04052301.OMA 1 15.2 2700 -10 801 171 47.0 3.6 -10.9 219 7.5 25.3 68.4 216 -99060823.N60 1 13.7 3155 -15 1051 78 41.1 1.6 -13.0 219 8.3 21.8 42.4 152 -99060620.MIW 1 16.5 2747 -2 728 95 46.5 2.0 -11.3 215 7.4 25.8 54.4 126 -99060619.DVL 1 13.3 2802 -18 814 23 14.6 0.0 -16.8 148 8.2 13.8 14.2 55 -99060522.LRJ 1 15.2 2964 -17 1289 56 44.7 0.9 -10.3 227 8.2 27.6 63.5 157 -99060405.VTN 1 12.9 2518 -114 1075 129 40.8 1.2 -11.7 252 8.4 33.9 47.9 180 -99060300.GTF 1 7.5 3 -80 1259 78 32.1 0.0 -12.7 166 6.6 32.1 44.8 172 -99060300.AMA 1 12.9 2756 -67 1541 95 38.7 0.7 -10.0 227 8.6 29.5 72.3 208 -99060123.SPI 1 14.9 2287 -19 881 194 49.6 3.7 -12.9 240 7.2 40.7 42.9 303 -99060110.MLC 1 16.0 1956 -157 477 193 43.7 0.8 -10.8 251 8.4 34.4 54.4 257 -99060101.RSL 1 13.0 1705 -20 907 93 50.1 1.3 -12.2 250 8.3 32.2 70.0 179 -99060100.SJT 1 10.8 1391 -136 2395 53 45.7 0.0 -8.1 279 8.0 23.3 44.1 151 -99060100.CSM 1 13.8 2748 -119 1593 116 55.1 0.7 -10.4 262 8.3 31.9 59.4 205 -99053122.LBL 1 12.8 2910 -27 1574 106 61.1 1.3 -11.1 247 8.1 34.8 75.6 204 -99053023.LXN 1 11.3 1917 -2 1506 20 24.9 0.0 -12.7 282 7.1 22.6 26.3 85 -99052700.INK 1 10.3 1701 -31 1781 9 53.5 0.0 -13.0 263 8.4 26.7 60.4 107 -99052521.ROW 1 8.6 1056 -1 2099 26 43.2 0.0 -11.4 250 7.4 17.0 57.8 56 -99051701.P28 1 14.1 3996 -25 1498 52 41.4 0.7 -12.2 235 7.9 28.4 44.1 137 -99050922.P07 1 10.6 1793 -96 2053 72 29.7 0.0 -11.9 197 8.5 25.8 74.2 77 -99050419.EWK 1 9.8 1172 -30 1060 87 56.5 0.9 -17.0 185 7.4 27.6 56.8 112 -99050401.ONL 1 9.2 1561 -17 1532 160 31.3 0.6 -15.4 205 7.3 24.3 33.6 208 -99050220.HDE 1 8.7 687 -3 649 100 31.9 0.4 -19.2 208 7.1 21.5 23.0 124 -99050122.MAF 1 12.3 1710 -9 776 232 56.9 3.8 -11.2 237 6.8 32.4 76.7 295 -99043021.INK 1 13.0 2707 -11 1033 174 50.2 3.8 -11.8 197 7.3 35.6 67.7 236 -99042421.AGS 1 9.7 443 -32 1749 52 54.7 0.1 -12.4 292 6.7 37.3 65.4 176 -99042300.MKO 1 13.6 2181 -13 1003 243 55.3 4.9 -11.4 253 7.8 35.3 67.1 248 -04082522.FOE 1 16.3 3285 -59 1225 128 33.5 1.7 -8.6 243 6.8 34.0 42.4 233 -04082423.DPA 1 15.3 616 -29 685 237 28.3 0.7 -6.6 213 5.2 26.6 21.5 254 -04082401.FOE 1 17.3 2862 -33 582 300 33.1 4.7 -7.7 274 6.8 24.8 34.1 345 -04082200.C07 1 12.4 2025 -24 1364 108 27.4 0.6 -7.7 278 6.6 14.0 41.6 288 -04081522.ATH 1 10.0 1320 -50 1754 133 37.4 0.3 -10.5 325 7.6 38.4 41.5 249 -04081420.HAT 1 16.9 1221 -20 693 281 41.3 2.4 -6.1 204 4.5 32.5 54.5 312 -04081219.FAY 1 15.4 835 -29 887 115 48.5 0.8 -7.1 211 5.4 29.3 50.5 134 -04081215.CAE 1 16.3 1332 -11 579 78 38.5 0.7 -8.3 217 5.9 37.1 28.4 136 -99112300.TUL 1 11.8 1383 -12 847 203 54.3 2.5 -15.7 217 6.9 37.0 60.1 264 -99092823.LAF 1 14.3 1880 -26 925 44 46.4 0.6 -9.8 226 5.9 31.8 53.4 131 -99092700.ICT 1 13.7 1942 -99 1005 119 45.8 1.2 -7.8 271 6.2 28.6 45.7 170 -99092003.OGD 1 5.9 7 -95 1490 6 35.4 0.0 -14.8 306 7.3 17.3 39.8 59 -99091023.OKM 1 14.1 1578 -173 1285 75 38.5 0.1 -9.8 284 6.9 29.7 41.2 205 -99090400.AKO 1 11.6 1401 -21 1298 3 44.8 0.0 -8.1 221 7.3 26.8 60.0 143 -99081920.SME 1 11.4 1158 -29 2080 34 42.9 0.0 -10.2 267 6.9 18.4 33.8 78 -99081621.GLD 1 14.3 3184 -9 1787 78 34.9 0.3 -7.0 231 7.7 23.6 46.0 131 -99081503.JDN 1 7.8 368 -225 2152 37 52.5 0.0 -11.9 242 8.0 36.8 72.2 220 -99080923.MKT 1 16.2 2484 -10 814 229 44.4 4.2 -9.7 289 7.7 38.9 63.1 274 -99073100.DMH 1 14.4 2057 -58 1629 66 38.0 0.3 -8.8 331 7.0 18.2 55.7 83 -99072800.COQ 1 11.9 957 -73 1267 208 61.5 1.2 -12.4 294 7.3 37.9 75.1 349 -99072300.ABR 1 15.9 3073 -48 1643 51 26.1 0.2 -7.9 237 7.7 10.4 43.4 60 -99072201.GGW 1 8.8 1107 -147 2618 58 49.5 0.0 -11.3 230 8.7 27.6 92.9 163 -99072022.OLZ 1 19.5 3709 -2 737 170 42.4 4.4 -5.2 268 5.5 29.8 44.8 294 -99071400.MOT 1 10.3 1025 -92 1759 96 63.9 0.2 -11.0 284 7.1 34.6 66.5 248 -99070300.LBF 1 18.3 5887 -62 1227 118 33.7 2.8 -6.4 235 9.0 23.9 55.3 163 -99070123.IPT 1 14.7 908 -27 884 203 33.0 1.0 -6.8 229 5.6 30.6 31.5 243 -99062922.GUY 1 13.7 3266 -87 2035 154 43.7 0.0 -7.8 283 9.0 32.3 53.8 237 -99062802.OGA 1 12.3 1529 -168 1178 203 64.3 0.5 -9.7 266 8.8 33.4 87.6 253 -99062701.MCK 1 16.5 3830 -43 1226 55 34.0 0.9 -7.8 258 8.2 20.8 57.0 152 -99062700.SNY 1 12.1 2217 -42 1612 24 49.9 0.2 -8.9 251 8.2 28.2 77.8 141 -99062300.MHE 1 14.1 1832 -74 977 196 23.4 0.0 -9.7 239 7.3 17.5 18.0 213 -00050901.AIZ 0 13.1 1987 -68 1453 84 35.7 0.5 -11.3 241 8.5 41.9 28.1 204 -00050722.SNY 0 9.8 2015 -39 1845 23 56.1 0.1 -12.4 245 8.7 34.2 64.8 128 -00050707.OGA 0 11.6 1205 -190 787 34 39.5 0.0 -11.3 236 8.2 22.0 47.2 115 -00050323.RBD 0 11.2 940 -3 1077 54 42.9 0.3 -14.6 290 6.2 28.9 58.4 174 -00043001.ABI 0 11.9 2549 -66 1686 111 39.6 0.5 -11.8 268 8.4 26.8 40.5 228 -00042423.LAA 0 5.4 613 -132 2566 97 54.0 0.0 -16.3 278 8.9 29.1 72.7 192 -00042422.EHA 0 6.7 706 -56 2143 58 53.8 0.0 -15.2 295 8.1 25.8 83.4 159 -00042021.BWG 0 11.2 1126 -13 1162 167 52.1 1.4 -13.5 240 7.4 46.8 53.8 253 -00042021.BNA 0 11.2 989 -26 1114 165 53.6 1.3 -13.7 242 7.7 45.4 65.0 244 -00042001.MCI 0 12.4 2093 -43 1300 141 61.9 2.1 -12.3 226 7.0 33.4 81.4 163 -00042000.JCT 0 13.1 2950 -156 1701 170 51.7 0.4 -9.4 253 8.2 40.5 71.8 240 -00041822.SJT 0 7.1 414 -185 3169 -7 49.4 0.0 -9.5 243 8.2 32.3 60.6 45 -00041620.SUS 0 9.5 579 -1 968 46 41.8 0.2 -18.1 247 6.6 30.2 69.5 154 -00041602.GRA 0 10.2 901 -182 1269 251 56.8 0.2 -17.0 244 8.6 34.1 76.8 276 -00033000.SHV 0 12.6 1635 -14 797 147 57.7 2.3 -15.2 267 7.2 33.9 91.9 219 -00032900.HYI 0 15.8 2875 -10 771 106 60.6 3.0 -11.6 251 7.3 36.4 82.8 192 -00032522.BNA 0 8.3 268 -8 1461 34 37.5 0.0 -16.9 270 6.2 23.2 61.3 60 -00032207.MAF 0 11.5 1952 0 562 249 54.6 4.4 -16.4 196 8.3 45.0 77.8 468 -00031600.CSM 0 8.3 808 -99 1327 59 34.5 0.1 -17.7 251 7.6 25.7 34.3 101 -00031022.BHM 0 10.3 614 -95 1034 103 48.9 0.4 -15.8 238 7.0 33.1 49.4 179 -00030923.LRD 0 13.5 2701 -7 1360 -13 41.3 -0.2 -12.5 256 7.5 20.8 59.4 95 -00030920.GFL 0 7.1 1 -425 1416 88 63.6 0.0 -18.7 242 8.1 39.6 77.0 165 -00030900.UNU 0 9.9 1306 -11 1121 172 50.6 1.7 -17.3 203 6.6 39.6 44.1 206 -00030900.CLI 0 9.4 673 -29 1009 196 53.3 1.2 -16.9 202 6.6 39.4 53.8 226 -00030302.PWG 0 12.0 1469 -17 1106 252 60.9 3.3 -12.2 259 6.1 45.0 75.3 323 -00030222.AFW 0 11.1 999 -6 913 256 68.3 2.6 -13.5 238 6.5 36.9 80.1 345 -00022606.CRS 0 13.3 2158 -10 637 191 48.7 3.3 -14.8 239 6.9 25.4 69.2 184 -00022523.FSD 0 7.3 495 -2 929 82 38.3 0.3 -21.9 172 7.7 30.1 52.5 83 -00022405.FAM 0 9.2 437 -46 772 315 46.8 1.1 -18.0 235 6.3 29.2 42.2 331 -00072222.BBW 0 11.9 1462 -1 1218 36 35.2 0.2 -11.1 328 6.5 26.6 43.9 124 -00072220.GLD 0 10.6 1162 -15 1699 26 39.9 0.1 -10.2 319 7.4 19.8 55.8 82 -00072122.BFF 0 9.8 1738 -8 2036 34 42.0 0.0 -9.9 297 7.7 36.2 48.9 131 -00072022.AKO 0 14.0 3465 -7 1063 22 46.2 0.6 -10.2 278 8.3 29.1 64.7 106 -00072000.BVX 0 17.4 3847 -11 1674 30 36.4 0.2 -7.1 298 6.9 26.0 29.2 130 -00071022.RCA 0 13.2 1916 -28 1452 23 41.1 0.2 -9.2 238 7.6 21.4 68.1 95 -00071001.LBF 0 14.7 2947 -100 1740 24 28.1 0.1 -5.6 239 7.8 23.6 37.9 109 -00070922.MHE 0 16.8 3556 -34 1430 6 40.7 0.1 -6.1 258 6.7 18.8 41.5 109 -00070922.GGW 0 13.3 2242 -12 1039 31 46.6 0.5 -11.4 226 7.4 18.7 71.4 74 -00070901.LWT 0 8.7 874 -65 1998 38 58.4 0.0 -11.5 232 8.1 32.4 92.6 236 -00070805.LVN 0 18.2 2722 -69 530 388 37.6 5.8 -9.2 261 8.1 22.9 53.3 407 -00070803.JDN 0 7.6 57 -220 2275 33 69.9 0.0 -11.7 240 7.8 39.2 84.5 167 -00070601.CUT 0 11.7 2058 -14 1543 37 55.5 0.3 -9.9 245 8.5 28.5 78.8 136 -00070523.MCK 0 16.4 3979 -55 1631 151 45.4 1.6 -6.8 254 8.1 24.5 59.5 231 -00070521.RAP 0 14.5 3135 -2 1289 15 44.0 0.3 -10.0 233 8.0 19.5 68.5 93 -00070501.2WX 0 11.2 1574 -93 1339 -29 47.6 -0.2 -12.4 230 8.6 28.2 78.4 64 -00070421.JDN 0 8.1 1033 -47 1927 -17 41.2 0.0 -15.0 209 7.9 26.2 68.3 49 -00070302.GGW 0 10.6 1484 -86 1685 121 67.7 0.4 -12.6 252 7.9 36.1 78.0 267 -00070222.FOD 0 17.4 3585 -43 1097 53 23.7 0.0 -9.5 292 7.5 16.4 31.4 91 -00070201.ABR 0 14.2 3411 -108 1790 100 24.5 0.0 -10.0 259 8.3 16.6 39.9 145 -00070123.ELO 0 13.3 2835 -49 1339 117 57.8 2.1 -13.1 291 7.7 31.9 66.7 228 -00070122.ABI 0 13.9 1505 -15 1776 40 26.6 0.1 -5.4 261 5.7 21.4 25.5 120 -00070100.JLN 0 15.5 2255 -3 786 81 43.6 1.3 -7.6 313 5.9 25.5 56.4 208 -00062923.ELM 0 8.8 332 -11 1098 19 33.4 0.0 -16.5 253 6.2 19.9 82.5 60 -00062923.D07 0 9.6 1600 -26 1649 30 42.4 0.1 -15.7 295 7.7 30.2 50.5 90 -00062901.LAM 0 11.8 506 -57 1728 28 25.5 0.0 -6.5 268 6.3 18.5 25.2 126 -00062519.AIO 0 14.7 2632 -77 1269 122 38.0 1.2 -10.6 279 7.3 29.0 32.0 250 -00062402.RCA 0 11.5 1507 -76 1200 0 40.3 0.0 -11.0 273 7.9 29.4 67.6 159 -00062322.SDA 0 16.8 4294 -9 1398 56 28.6 0.7 -9.2 284 7.3 21.1 46.7 160 -00061522.OKV 0 14.5 746 -31 749 130 32.3 0.5 -8.8 240 6.0 35.1 29.5 198 -00061323.P28 0 14.3 3106 -53 1734 60 41.3 0.3 -10.0 260 8.0 15.7 31.7 91 -00061122.DFS 0 13.5 3143 -11 1597 67 28.6 0.4 -8.2 251 7.7 28.8 45.0 62 -00060400.GLD 0 9.0 1430 -74 2560 51 35.6 0.0 -10.7 313 8.7 29.0 38.3 146 -00060221.CEF 0 12.1 326 -141 1452 156 38.5 0.1 -9.8 279 6.6 44.9 47.0 277 -00052701.SZL 0 13.7 1477 -23 1157 198 50.0 2.1 -9.7 244 6.7 38.9 69.4 232 -00052501.PPA 0 15.2 3731 -83 1597 78 46.6 0.7 -8.0 249 8.4 33.0 60.7 288 -00052501.ADK 0 16.3 4569 -134 1861 108 40.3 0.2 -7.8 255 8.7 36.4 49.3 291 -00052219.AVC 0 10.1 628 -1 1000 2 52.8 0.0 -13.8 256 5.9 28.0 59.1 95 -00052021.VPC 0 13.0 805 -6 1196 15 39.2 0.1 -9.8 231 6.1 19.7 47.6 87 -00050922.IRS 0 12.0 729 -2 928 68 49.6 0.4 -13.6 230 6.9 46.6 41.5 178 -01041105.JCT 0 14.1 1545 -229 832 346 71.9 0.0 -9.7 230 8.5 44.0 97.0 386 -01041004.IND 0 11.4 1318 -107 1240 185 57.8 1.1 -13.8 292 7.2 35.6 68.3 216 -01040321.UNO 0 12.3 1279 -42 722 107 57.2 1.3 -13.7 270 7.4 36.3 60.7 225 -01040300.BFF 0 5.0 0 -9999 1708 161 63.5 0.0 -17.8 241 7.5 37.7 81.7 433 -01032404.ABI 0 10.8 1700 -61 813 65 27.5 0.5 -18.2 289 8.0 17.4 46.6 180 -01031202.FTW 0 11.7 1341 -9 490 161 53.1 1.9 -17.9 240 7.3 37.5 47.3 201 -01031123.BWD 0 10.1 846 -18 912 76 47.4 0.5 -17.4 245 7.7 31.1 69.7 133 -01022500.TOP 0 7.3 153 -15 715 148 78.6 0.2 -21.3 203 6.8 32.9 92.4 170 -00110907.GZH 0 15.4 1005 -3 768 172 47.3 1.4 -7.8 213 6.0 36.2 52.6 220 -00110906.EET 0 14.9 674 -3 539 277 52.5 1.6 -8.6 217 5.7 41.9 58.8 327 -00110121.CID 0 12.2 1537 -17 1087 164 40.8 1.6 -12.1 210 6.0 36.7 41.3 225 -00102323.ELP 0 9.8 1432 -3 1298 24 68.0 0.2 -14.2 201 7.5 36.8 65.9 132 -00102212.MWL 0 13.4 1016 -7 525 152 31.3 0.8 -11.5 208 6.2 22.4 43.6 149 -00101423.INK 0 8.5 757 -27 2381 63 29.5 0.0 -10.8 243 7.2 27.3 48.1 91 -00101408.CNM 0 11.5 1524 -124 1147 79 34.2 0.3 -10.4 246 7.2 29.4 55.6 119 -00101400.SLN 0 11.5 577 -49 879 26 58.0 0.1 -11.3 234 5.7 28.9 63.6 76 -00100401.GCK 0 8.5 341 -281 1869 -16 53.4 0.0 -11.5 263 8.5 38.0 70.8 124 -00090523.GTF 0 7.6 277 -43 1393 8 65.8 0.0 -15.8 219 7.4 34.7 93.3 112 -00090300.ISN 0 10.7 654 -10 754 62 42.1 0.3 -13.8 225 6.8 27.3 72.5 95 -00090120.SLC 0 5.7 78 -67 2129 29 41.1 0.0 -14.3 198 7.4 15.4 53.6 53 -00081820.BUY 0 15.3 1702 -37 1351 58 34.7 0.4 -8.2 275 6.5 38.7 13.2 134 -00081723.IND 0 19.2 4115 -13 791 158 47.3 5.1 -7.9 275 6.9 37.5 49.8 224 -00081720.LEX 0 16.6 2579 -6 1129 81 36.5 1.1 -6.7 284 5.9 24.9 42.3 141 -00081420.AIT 0 16.2 2299 -120 690 282 52.2 3.0 -9.8 267 8.0 37.9 69.5 368 -00080623.CDJ 0 14.7 1350 -119 1250 43 35.9 0.1 -6.8 272 6.3 24.5 54.6 88 -00080601.HNR 0 18.6 4073 -16 990 54 37.6 1.4 -7.0 271 7.3 25.9 55.8 92 -00080522.AIA 0 7.8 312 -3 2875 0 43.4 0.0 -8.3 272 7.7 22.1 49.4 52 -00080502.PIR 0 14.4 2629 -128 1844 202 48.0 0.3 -7.4 270 7.5 30.4 64.1 318 -00080502.ANW 0 11.5 1035 -228 2157 138 37.9 0.0 -6.3 276 7.6 25.6 46.8 227 -00080222.FKL 0 13.7 1168 -22 892 104 26.2 0.5 -9.1 253 5.9 27.0 55.7 145 -00080202.LWT 0 8.3 700 -130 2701 50 46.5 0.0 -8.4 286 8.6 19.4 78.7 94 -00080202.GGW 0 10.8 1193 -207 1955 94 51.1 0.0 -9.6 293 8.0 25.1 71.3 230 -00072622.AIO 0 16.7 3711 -2 964 67 44.8 1.9 -10.2 324 7.6 29.1 43.1 186 -00072501.HON 0 13.9 2463 -99 1314 85 29.5 0.5 -11.1 271 8.3 13.2 40.3 91 -01060123.LWC 0 11.2 1268 -25 1421 113 62.6 0.8 -13.2 305 6.4 37.6 79.8 249 -01060122.P28 0 11.4 1141 -69 1552 80 51.2 0.3 -9.7 308 6.6 21.4 62.5 156 -01053100.CVN 0 8.5 1309 -86 2195 -18 45.9 0.0 -10.8 289 8.3 24.1 38.5 138 -01052801.END 0 13.1 2369 -85 1258 150 47.1 1.6 -12.5 280 8.2 39.8 67.4 370 -01052400.OKF 0 7.6 314 -55 2200 85 59.2 0.0 -15.3 298 7.1 43.3 63.3 244 -01052022.GRK 0 15.6 2852 -21 1408 32 40.1 0.4 -7.9 242 6.8 30.2 75.1 60 -01051801.RUL 0 11.1 1624 -134 2428 24 25.8 0.0 -8.5 258 8.1 18.9 46.6 76 -01051623.BIE 0 13.4 3208 -41 1905 35 30.0 0.1 -10.4 274 7.5 20.5 32.1 103 -01051218.DDH 0 8.9 325 -25 1493 21 36.4 0.0 -16.2 229 6.4 25.9 46.8 102 -01051000.OLU 0 9.6 2423 -73 2081 70 30.6 0.0 -15.8 265 8.8 23.7 36.8 157 -01050823.GBD 0 8.1 447 -90 1828 55 44.5 0.0 -15.8 323 7.4 25.4 50.6 207 -01050701.COT 0 15.9 3113 -16 1068 4 34.1 0.1 -12.2 267 8.1 10.5 56.5 73 -01050700.ADS 0 14.6 2915 -5 1038 115 37.4 2.0 -13.7 248 7.3 23.1 63.5 148 -01050623.BMQ 0 16.4 4217 -12 955 48 38.2 1.3 -13.0 257 7.5 27.3 64.9 143 -01050501.COT 0 14.3 1453 -9 1075 113 48.9 1.2 -9.9 226 7.0 33.1 73.5 169 -01050200.AUD 0 10.0 1544 -80 1896 85 31.2 0.1 -14.7 266 8.2 22.1 40.9 170 -01050101.SLN 0 10.5 1695 -66 1383 122 37.1 0.7 -16.7 295 8.0 24.3 61.4 188 -01050100.P28 0 9.9 1422 -94 1553 70 45.7 0.2 -15.7 309 7.8 24.3 54.0 188 -01042317.STE 0 9.5 775 -5 970 86 55.4 0.6 -18.0 210 6.8 38.9 110.9 170 -01042304.JCT 0 14.1 2210 -11 659 190 53.5 3.8 -11.8 248 7.8 31.4 55.1 214 -01042222.MWL 0 11.8 1193 -8 1373 116 46.2 0.7 -10.2 212 6.2 33.4 58.0 105 -01042123.PIA 0 12.1 1857 -13 1175 79 41.0 0.8 -13.4 257 7.5 25.7 51.8 94 -01042123.CDS 0 10.3 2000 -70 2105 81 55.8 0.0 -11.8 230 7.9 27.2 70.8 141 -01042102.SLN 0 11.5 2072 -206 1218 280 50.2 0.0 -15.1 239 8.7 44.2 73.5 374 -01041702.SJT 0 13.0 1793 -30 989 96 38.8 1.1 -10.9 296 7.0 26.3 65.2 260 -01041700.LBB 0 8.1 406 -65 1861 42 46.3 0.0 -12.1 288 7.1 32.9 80.6 256 -01041500.ABI 0 12.6 2222 -121 1474 76 59.9 0.5 -13.2 249 8.7 28.8 78.5 130 -01041423.ADM 0 14.2 1613 -86 524 248 67.7 3.1 -14.2 254 8.6 38.9 90.8 310 -01041422.PCS 0 13.6 2872 -90 1455 5 57.7 0.1 -10.8 245 8.2 21.5 77.6 85 -01041422.EMP 0 8.9 652 -15 1486 57 59.4 0.2 -16.8 254 7.2 31.9 84.7 218 -01041421.HBR 0 13.9 2647 -29 786 167 70.6 4.4 -14.3 255 8.2 39.1 91.1 239 -03050100.BRL 0 12.7 2707 -10 1047 121 47.3 2.5 -15.8 247 8.2 27.0 50.9 270 -03043021.AIA 0 12.3 2247 -53 863 158 49.0 2.8 -15.7 243 8.1 37.1 49.5 276 -03043003.LIC 0 8.7 1228 -82 574 264 52.2 2.2 -15.9 216 8.8 43.9 59.2 676 -03042900.APA 0 6.3 1056 -56 1639 56 35.9 0.1 -15.6 239 8.3 10.6 65.7 63 -03042600.HRL 0 12.4 1634 -219 1994 5 43.7 0.0 -11.1 286 8.3 25.0 72.5 36 -03042522.FTY 0 11.2 645 -12 811 160 61.6 1.0 -14.4 253 6.7 33.8 66.6 259 -03042520.ANB 0 11.5 783 -1 777 164 64.0 1.3 -14.0 259 6.2 36.4 64.7 319 -03042400.SEP 0 14.4 2485 -6 558 393 62.4 9.8 -14.6 238 7.9 39.1 92.6 485 -03042022.MKL 0 12.5 1017 -22 789 92 57.6 0.9 -14.3 251 6.9 29.0 70.2 188 -03042019.MEM 0 13.1 1682 -6 857 78 50.6 1.1 -14.2 252 7.3 29.0 57.0 148 -03041922.P#0 0 11.7 1623 -17 730 127 72.6 2.1 -19.4 223 7.9 35.5 102.9 148 -03041920.END 0 10.6 1171 -12 629 144 57.4 1.6 -21.0 215 8.4 39.0 99.4 219 -03041907.FDR 0 12.6 1046 -418 613 365 65.8 0.0 -13.9 207 8.9 40.5 101.8 352 -03040720.HOU 0 16.5 2215 -1 373 67 57.9 1.4 -11.4 231 7.6 30.3 77.2 191 -03040718.BPT 0 13.8 933 -139 741 16 59.0 0.1 -12.1 226 7.4 26.5 91.0 110 -03040717.LFT 0 14.1 780 -168 559 29 50.5 0.0 -12.0 233 7.3 29.3 84.8 74 -03040605.C12 0 11.3 655 -128 639 328 69.4 1.0 -14.6 250 7.3 45.3 111.0 697 -03040601.C11 0 12.1 2056 -4 832 109 75.1 2.2 -15.3 251 7.6 26.4 93.3 198 -03040400.LW1 0 13.3 2761 -1 682 153 54.3 3.8 -15.1 242 7.6 32.9 52.2 224 -03040322.HBR 0 9.5 1315 -38 1655 57 42.4 0.2 -14.8 235 7.5 33.0 47.0 130 -03032821.MBS 0 7.7 95 -1 1423 199 68.1 0.1 -17.6 223 6.6 48.9 65.7 252 -03032819.AZO 0 8.9 146 -2 830 200 60.9 0.3 -17.3 225 6.7 54.5 64.3 255 -03031722.SPS 0 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 -03031720.SPS 0 10.2 947 -44 1140 35 24.3 0.0 -16.7 216 7.4 15.4 100.9 42 -03031221.PBI 0 14.2 1790 -2 1215 21 36.5 0.2 -12.1 258 7.7 2.8 67.6 -23 -03031218.FPR 0 15.8 2760 -2 892 -28 38.6 -0.5 -14.1 256 8.0 11.8 71.6 86 -01062102.ICT 0 13.9 1917 -38 976 89 37.8 1.1 -11.3 291 7.3 26.8 48.8 202 -01061623.JMS 0 8.9 600 -4 1096 41 40.5 0.2 -18.1 283 7.1 25.4 84.9 82 -01061122.RGK 0 14.3 3269 -77 1618 201 51.8 1.8 -10.9 265 8.4 35.2 56.2 397 -01060502.CSM 0 15.8 3992 -79 1412 107 34.9 1.2 -8.4 251 8.1 28.3 40.7 227 -01060501.LHX 0 8.3 615 -248 1957 94 44.0 0.0 -11.2 243 9.0 29.0 49.3 127 -03062823.RST 0 8.8 203 -71 1471 26 40.8 0.0 -12.1 287 4.8 15.4 60.6 57 -03062822.BH4 0 6.7 253 -82 2374 15 53.7 0.0 -12.2 288 8.0 39.8 64.9 352 -03062820.WSC 0 9.5 432 -25 1288 24 38.2 0.1 -13.2 292 5.0 20.7 57.7 45 -03062800.C07 0 9.3 1323 -51 2202 29 36.5 0.0 -9.3 311 7.4 12.9 41.7 81 -03062800.8V7 0 10.5 2208 -13 2023 82 42.3 0.0 -8.2 320 7.8 44.3 44.0 293 -03062722.8V7 0 11.1 2543 -6 1821 66 38.6 0.2 -8.4 315 7.5 40.0 47.0 258 -03062721.C07 0 8.9 1146 -29 2232 32 35.4 0.0 -9.2 306 7.2 11.7 50.1 74 -03062401.CYS 0 10.5 1054 -23 891 146 67.4 1.5 -8.4 210 6.6 44.6 77.5 258 -03062022.ROW 0 10.0 1448 -1 2438 18 41.2 0.0 -8.3 220 7.9 29.6 51.3 74 -03062022.CVS 0 12.0 1680 -21 1220 96 32.9 0.7 -8.5 224 7.2 20.3 41.0 110 -03062020.CVS 0 12.3 2087 -2 1100 14 22.8 0.0 -9.4 233 7.4 10.8 35.9 48 -03061501.CNM 0 11.3 2677 -1 2178 -48 31.4 0.0 -11.2 338 8.5 17.4 38.2 109 -03061423.HOB 0 9.6 1525 -68 2132 7 32.6 0.0 -11.5 330 8.5 14.0 32.3 24 -03061223.C11 0 20.9 5150 -8 501 190 32.5 5.3 -8.9 269 8.0 41.4 58.8 339 -03061221.AGC 0 13.1 691 -9 1032 158 35.1 0.6 -8.8 227 5.9 34.2 44.2 256 -03060401.TCC 0 11.4 1746 -91 1622 -15 59.6 -0.1 -9.6 288 8.2 44.8 48.7 398 -03060322.LBB 0 13.6 2239 -128 1199 80 45.2 0.5 -9.1 302 7.9 31.8 57.3 316 -03060302.LRD 0 17.3 3023 -81 1418 -4 35.4 0.0 -5.0 285 7.3 27.3 67.7 -12 -03053121.ILM 0 13.5 1237 -102 1265 394 58.4 2.3 -10.4 275 6.3 47.7 74.8 576 -03052001.ADM 0 16.8 3033 -19 1155 81 33.3 1.2 -8.4 288 7.5 14.5 61.0 188 -03051922.FSI 0 15.9 2088 -80 836 131 37.4 1.4 -8.3 246 8.1 40.1 50.7 385 -03051409.C12 0 13.9 2056 -415 1151 505 44.5 0.0 -12.7 290 9.5 25.4 80.3 466 -03051406.LW1 0 15.8 3351 -219 819 259 50.4 0.0 -11.8 274 8.3 12.9 74.5 238 -03051401.C11 0 13.9 3239 -178 1774 132 58.3 0.1 -9.9 286 8.2 22.1 60.4 192 -03051322.CDS 0 12.4 3323 -92 2274 79 49.1 0.0 -10.1 280 8.6 18.1 68.8 98 -03051223.MRF 0 11.6 1914 -2 1612 41 42.7 0.2 -6.0 279 6.7 33.9 49.2 174 -03051019.MLC 0 14.5 849 -221 615 158 58.7 0.0 -8.7 240 7.6 34.0 74.3 199 -03051017.P#Q 0 16.5 2801 -34 619 97 68.4 2.7 -9.2 235 7.2 32.3 77.8 168 -03051000.P#J 0 16.2 3929 -21 888 74 55.8 2.7 -12.5 247 7.6 33.6 64.7 227 -03050922.LEX 0 15.5 2304 -3 715 119 55.3 2.5 -9.5 278 7.4 32.8 69.7 185 -03050921.COU 0 16.1 4338 -12 941 67 45.4 2.2 -11.8 246 7.4 35.8 73.5 264 -03050920.SDF 0 15.2 2300 -15 871 88 52.2 1.8 -10.2 268 7.2 36.6 70.7 247 -03050520.MKL 0 15.8 2332 -17 581 247 71.6 5.8 -11.9 263 7.3 40.2 88.1 300 -03050223.BMX 0 15.4 3487 -10 686 61 44.2 1.6 -13.2 283 6.8 21.9 38.7 114 -03050221.HSV 0 13.0 2237 -40 946 139 42.3 2.2 -13.8 264 7.0 27.8 33.8 201 -03050221.ABL 0 13.6 3056 -5 1063 81 40.9 1.6 -14.7 280 7.2 27.0 27.0 130 -03050219.SJT 0 15.1 4252 -2 1189 17 38.9 0.4 -12.5 277 8.1 4.7 61.7 18 -03050219.ABL 0 12.9 2572 -28 1072 45 27.2 0.5 -13.7 261 6.7 22.6 36.0 82 -03050218.MSL 0 13.0 2367 -24 912 19 25.5 0.2 -14.5 257 7.4 24.2 40.8 60 -03050201.ACT 0 13.6 2339 -88 1301 -44 31.1 -0.3 -11.9 280 8.3 21.3 53.8 -77 -03050102.END 0 14.0 3853 -58 1033 227 43.6 5.8 -13.5 250 7.4 27.5 43.5 247 -03071221.AVL 0 11.9 710 -2 1196 56 37.5 0.2 -8.5 266 5.6 31.7 43.3 103 -03071201.FOE 0 16.7 3598 -41 1289 -96 59.4 -2.4 -10.2 313 7.9 33.9 54.8 89 -03071200.FOE 0 16.2 3683 -11 1441 -16 63.8 -0.3 -11.0 315 7.7 31.9 59.2 109 -03071123.P#H 0 12.6 927 -26 1632 97 59.9 0.3 -9.9 322 7.2 45.3 55.0 319 -03070904.PHP 0 14.6 2161 -292 1066 549 72.4 0.0 -8.6 260 8.8 53.5 55.7 683 -03070900.BH3 0 8.3 1108 -106 2627 277 55.8 0.0 -7.9 250 8.4 55.7 68.2 568 -03070723.LVS 0 8.8 850 -179 2135 85 20.0 0.0 -6.4 329 8.7 24.3 27.9 305 -03070720.DSM 0 18.0 4261 -35 1012 20 39.2 0.6 -9.9 262 8.0 13.2 34.7 79 -03070719.LVS 0 9.9 1337 -68 1800 12 22.3 0.0 -7.2 336 8.0 27.0 21.0 98 -03070600.VTN 0 11.6 1572 -201 1584 157 52.8 0.0 -9.5 273 8.2 30.3 50.1 293 -03070521.RAP 0 8.7 803 -208 2327 67 22.6 0.0 -11.2 272 8.5 6.7 33.0 46 -03070521.P#7 0 10.3 1147 -137 2084 84 43.4 0.0 -10.3 249 8.1 22.9 55.2 239 -03070517.BH3 0 8.9 1171 -147 2263 -14 27.2 0.0 -12.5 293 9.1 15.8 39.6 51 -03070305.GDV 0 9.1 634 -206 1972 120 22.6 0.0 -13.9 250 8.7 30.3 58.1 255 -03063018.AUG 0 11.8 1327 -56 1152 60 42.9 0.5 -12.3 267 5.3 24.4 72.0 118 -03081800.BH5 0 9.0 725 -5 2392 -33 27.4 0.0 -9.3 180 7.6 12.2 31.3 76 -03081322.XRW 0 16.6 1031 -16 519 88 21.6 0.0 -6.2 187 5.5 23.7 39.1 164 -03081202.SEP 0 12.7 373 -104 1300 -113 55.9 -0.2 -8.4 345 6.8 38.0 68.0 -12 -03081200.FWD 0 12.2 1050 -51 2135 -30 50.2 0.0 -8.8 339 6.7 35.0 52.7 68 -03081023.P#9 0 13.9 1702 0 1195 30 41.7 0.3 -9.2 346 6.8 25.8 56.8 104 -03080902.P#C 0 15.5 3216 -71 1472 8 27.4 0.1 -6.4 277 7.9 17.3 40.8 199 -03080900.MIB 0 15.0 3325 -48 1477 39 33.2 0.4 -9.0 291 7.7 10.7 43.9 102 -03080900.P#C 0 14.4 3127 -1 1826 10 25.0 0.0 -5.8 262 7.5 12.2 42.3 64 -03080622.GLD 0 12.9 3132 -2 2338 21 28.1 0.0 -7.1 306 8.2 14.7 32.7 115 -03080601.CNU 0 15.8 2262 -28 1629 -18 34.6 -0.1 -5.1 317 6.6 25.1 42.1 49 -03080600.SUX 0 15.5 1945 -3 996 54 38.2 0.7 -8.6 321 7.0 35.9 44.6 171 -03080521.TOP 0 16.0 2857 -24 1592 -7 30.8 0.0 -6.8 308 6.3 19.6 40.9 101 -03080520.DAN 0 15.0 2224 -8 858 8 18.6 0.0 -10.1 275 6.4 27.6 30.4 121 -03080422.P#R 0 15.1 1771 -64 1131 59 51.1 0.7 -8.5 326 6.5 23.7 72.7 144 -03080401.BVX 0 16.9 2856 -38 1072 96 33.8 1.4 -8.7 308 6.7 18.2 47.9 100 -03080202.LUS 0 9.3 520 -170 1828 -21 47.7 0.0 -8.2 291 7.9 30.7 60.7 11 -03080123.CRL 0 13.5 2544 -8 1131 18 35.3 0.2 -12.9 299 7.9 26.6 36.1 109 -03080103.MCW 0 11.0 914 -111 1515 8 24.1 0.0 -12.2 281 7.0 26.6 47.8 60 -03073123.C31 0 8.6 251 -238 2988 79 50.4 0.0 -8.0 311 8.0 29.8 74.4 268 -03073120.TVL 0 10.6 1275 -24 1488 33 34.5 0.1 -7.4 90 7.8 32.3 17.1 170 -03072700.IWD 0 15.1 1598 -19 1386 149 42.6 1.0 -6.1 276 5.9 27.7 60.4 150 -03071802.BH1 0 13.9 2073 -132 1543 52 64.4 0.2 -6.9 291 7.8 47.0 77.9 171 -03071721.RAP 0 14.6 3713 -127 1972 107 39.2 0.0 -6.2 280 8.5 31.5 54.8 181 -03071320.MSL 0 16.4 2839 -21 1060 37 23.4 0.0 -9.3 310 7.1 4.1 36.8 35 -03071320.DIK 0 9.2 2113 -26 3189 -19 27.9 0.0 -9.3 266 9.0 11.0 36.6 31 -04040721.P#U 0 11.2 1509 -10 1060 103 47.1 1.2 -15.7 268 6.4 35.8 60.8 191 -04040702.SPS 0 8.6 230 -53 980 110 36.0 0.2 -17.3 236 6.3 19.0 53.3 110 -04040700.FTW 0 10.4 641 -8 948 43 57.7 0.3 -14.3 228 6.4 22.9 60.1 83 -04040422.LRD 0 13.8 2148 -1 827 171 49.4 3.0 -12.9 244 7.0 31.5 38.8 217 -04040421.ALI 0 13.2 1124 -3 718 10 40.8 0.1 -13.2 238 7.0 18.0 35.9 100 -04032701.DHT 0 9.5 1004 -128 1142 153 30.2 0.3 -13.4 233 8.2 31.2 63.3 235 -04032623.RAP 0 8.7 1651 -52 1568 172 42.5 0.9 -15.5 205 8.0 26.0 46.8 264 -04031802.FSM 0 8.0 442 -99 1939 211 48.0 0.0 -17.1 278 7.5 37.8 72.5 338 -04031800.P#P 0 9.4 1357 -30 1585 127 45.0 0.5 -17.4 288 7.7 34.4 66.4 269 -04030121.ORD 0 7.2 534 -1 908 208 58.9 1.1 -23.3 222 6.6 37.3 72.6 297 -04030120.RFD 0 6.8 505 -7 892 172 55.3 0.8 -24.3 220 6.8 34.8 71.1 256 -04022416.MCO 0 13.1 534 -37 687 121 47.0 0.5 -10.8 255 5.0 28.8 81.9 156 -04022407.G#5 0 10.5 962 -124 801 -16 47.4 -0.1 -18.2 218 7.7 31.4 83.7 14 -04022316.MSY 0 11.3 0 -9999 417 436 51.3 0.0 -11.2 240 6.1 44.9 86.2 531 -04020601.BTR 0 11.7 57 -172 540 186 69.9 0.0 -13.3 214 7.0 48.1 87.1 199 -04020514.LFT 0 11.1 165 -244 1109 583 49.0 0.0 -11.7 217 6.5 46.0 63.5 611 -04020512.LCH 0 13.6 1421 -64 497 282 49.1 3.0 -12.5 222 6.8 41.7 68.1 319 -04011921.VRB 0 10.3 196 -20 878 -16 82.2 0.0 -14.0 242 5.1 46.9 123.3 207 -03112718.RUE 0 10.5 681 0 396 4 92.3 0.0 -20.1 238 7.0 35.8 100.8 153 -03110923.SAC 0 6.9 156 -14 892 38 24.7 0.0 -25.3 234 7.5 14.4 91.8 77 -03102818.CTY 0 16.5 1074 -53 594 181 37.6 1.2 -7.8 217 6.3 23.6 51.5 193 -03100822.VAD 0 14.1 1355 -7 765 -4 27.1 0.0 -11.2 277 6.4 13.9 52.0 68 -03092718.CBE 0 11.6 969 -2 1256 109 40.4 0.5 -12.3 213 6.1 33.1 58.2 137 -03092620.UIN 0 12.7 1139 -3 844 177 50.2 1.7 -14.6 266 7.9 42.7 77.1 266 -03092619.BRL 0 11.1 906 -34 824 125 50.2 1.0 -14.9 256 6.9 40.9 76.6 149 -03091200.MRF 0 9.8 747 -2 1645 9 36.3 0.0 -6.8 276 6.2 25.5 49.1 163 -03090900.MAF 0 9.9 1214 -1 2565 13 32.3 0.0 -8.4 313 7.4 22.4 35.6 163 -03083123.HUF 0 14.8 27 -163 471 268 39.8 0.0 -6.8 243 6.3 41.6 43.2 340 -03082601.P#4 0 12.9 980 -231 1606 140 42.5 0.0 -9.4 277 7.1 39.4 44.3 283 -03082600.ABR 0 14.2 3471 -76 1925 104 37.8 0.1 -11.4 289 8.6 27.8 43.9 143 -03082221.LOL 0 9.6 944 -94 1467 89 64.9 0.3 -12.3 188 8.3 46.4 77.0 299 -03082119.APX 0 14.4 2077 -120 1359 80 36.1 0.3 -8.3 255 7.1 34.1 35.4 132 -03082100.DLH 0 16.1 2503 -11 1009 166 39.5 2.7 -8.1 226 6.2 24.3 46.3 201 -04051501.PUB 0 3.9 204 -85 2585 153 55.2 0.0 -18.2 268 8.8 42.0 78.8 355 -04051423.COS 0 4.6 230 -87 1664 52 57.1 0.0 -18.0 274 8.2 45.2 68.4 179 -04051300.HBR 0 14.0 4148 -28 1710 172 41.2 1.4 -11.1 244 7.8 44.0 46.5 333 -04051100.LUS 0 8.3 917 -69 1429 204 53.5 0.8 -11.5 237 7.4 28.1 44.2 323 -04050923.CVS 0 5.9 554 -61 3040 -32 23.7 0.0 -12.6 309 9.6 17.1 15.5 78 -04050921.STC 0 9.9 1302 -52 1737 185 49.7 0.5 -14.2 264 7.5 46.1 49.8 400 -04050900.P#A 0 13.8 2438 -42 1008 193 29.0 2.3 -12.7 278 7.7 19.9 36.2 251 -04050822.BH3 0 5.3 996 -6 3054 49 48.0 0.0 -15.0 280 9.6 8.9 60.8 58 -04050522.RIC 0 8.3 824 -38 1493 133 43.8 0.4 -20.4 310 7.1 34.9 60.9 251 -04050101.FWD 0 13.9 2471 -39 907 158 44.9 2.9 -14.8 225 8.3 23.0 58.2 185 -04043021.C12 0 13.3 2483 -8 1029 37 45.1 0.7 -14.1 236 7.9 32.8 46.0 48 -04043020.DYS 0 14.1 2950 -10 638 71 52.3 1.8 -14.3 236 7.8 34.1 51.0 143 -04043018.ABI 0 12.0 2372 -1 1211 -3 32.6 0.0 -13.6 230 7.7 22.8 40.3 -22 -04042920.MLU 0 12.9 972 0 744 72 46.0 0.5 -14.5 232 6.6 29.2 45.8 176 -04042821.G#2 0 10.1 747 -3 1175 139 56.7 0.8 -14.7 252 7.4 32.3 53.8 179 -04042521.CDS 0 7.1 679 -5 2042 20 45.4 0.0 -17.7 276 7.7 27.7 76.8 88 -04042300.SGF 0 9.8 113 -134 794 263 69.4 0.1 -15.2 267 7.5 51.1 79.0 572 -04042300.P#P 0 14.6 2114 -9 448 155 49.9 2.7 -13.6 245 7.2 26.3 46.7 258 -04042223.C12 0 12.6 1615 -11 1173 56 54.8 0.7 -10.8 266 6.6 36.5 68.7 191 -04042222.UMN 0 10.5 412 -29 663 220 60.2 0.9 -17.5 254 8.2 45.7 67.6 357 -04042221.C34 0 11.2 1504 -22 1170 72 53.8 0.8 -15.5 265 7.8 38.9 55.3 252 -04042200.ADM 0 11.7 1347 -25 1310 194 51.9 1.6 -13.2 269 6.8 28.4 68.1 339 -04042122.C12 0 11.5 1550 -3 1449 83 53.3 0.6 -13.2 261 6.6 30.3 65.8 168 -04041921.HOB 0 11.3 2173 -1 1395 86 53.9 1.0 -10.9 235 6.7 32.7 83.0 143 -04041801.MFD 0 10.8 1224 -65 1060 185 23.7 0.0 -16.5 288 8.0 29.7 50.0 245 -04041723.MFD 0 11.9 2519 -15 1046 104 26.5 1.1 -15.5 303 7.2 29.2 37.6 184 -04041105.MFE 0 15.8 2222 -37 402 26 39.9 0.4 -11.6 248 7.5 2.1 69.3 23 -04041019.ILM 0 9.2 180 -45 1165 111 41.2 0.1 -16.1 267 6.0 29.7 69.5 345 -04041001.PRX 0 8.8 516 -75 1780 210 42.3 0.1 -14.1 270 6.7 37.6 59.1 314 -04040818.DAB 0 13.2 1058 -19 810 73 56.2 0.7 -15.8 264 7.7 33.6 94.9 186 -04040815.DHN 0 11.9 877 -2 522 78 53.9 0.6 -15.8 257 6.5 30.9 87.6 111 -04071305.CHE 0 17.6 3151 -107 771 181 49.7 2.9 -8.9 301 7.9 29.7 60.2 300 -04070104.HBR 0 15.7 1988 -45 801 174 24.0 0.0 -8.2 259 7.0 25.9 23.7 276 -04062402.FNT 0 10.0 608 -67 1046 219 50.4 1.0 -15.3 260 6.5 32.1 72.4 270 -04062222.BIS 0 7.2 504 -14 1518 9 56.3 0.0 -18.7 301 6.3 28.7 75.6 88 -04062023.DHT 0 8.4 905 -127 2633 107 47.8 0.0 -9.3 270 8.8 36.3 67.8 192 -04061902.G#1 0 13.2 1631 -27 1122 144 35.1 1.2 -8.6 284 7.3 37.4 58.3 408 -04061900.HDN 0 6.4 316 -26 1668 -40 51.4 0.0 -13.3 257 8.3 36.5 73.3 29 -04061820.FAM 0 15.9 1842 -13 923 65 31.0 0.6 -7.0 271 5.7 23.9 35.7 131 -04061800.LHX 0 12.7 2059 -86 777 206 47.3 2.5 -11.2 235 8.4 37.4 49.6 651 -04052700.CHE 0 8.9 347 -4 1255 145 31.1 0.2 -14.7 268 6.1 31.0 44.9 228 -04052623.TYS 0 14.7 1654 -44 919 199 50.1 2.8 -9.7 275 5.9 37.8 71.9 255 -04052623.OKC 0 15.9 3047 -69 1198 124 56.8 2.5 -7.9 261 6.8 24.4 82.9 79 -04052622.FSD 0 9.4 835 -34 1187 143 35.4 0.6 -17.3 267 7.3 33.1 47.2 271 -04052621.CSV 0 14.4 1608 -15 870 176 59.8 2.8 -9.3 268 6.2 35.9 58.7 237 -04052621.C33 0 13.6 2405 -23 1847 104 55.5 0.4 -9.6 256 7.5 30.4 80.9 72 -04052603.CAI 0 15.4 1463 -14 609 129 47.0 1.5 -11.0 277 7.2 31.6 59.9 153 -04052402.P#7 0 7.8 400 -213 1358 246 41.2 0.0 -15.5 247 8.2 35.3 62.4 412 -04052400.STL 0 16.1 3087 -3 604 162 45.4 3.8 -12.7 253 8.0 28.6 58.7 195 -04052400.CDR 0 5.8 117 -187 2181 178 56.7 0.0 -14.5 256 8.0 30.8 66.1 338 -04052323.BGM 0 14.6 2244 0 781 156 41.1 2.4 -11.9 272 7.8 30.1 44.7 249 -04052320.PIN 0 12.0 1300 -3 1376 120 33.7 0.6 -11.8 267 6.7 36.9 31.3 199 -04052300.ELM 0 12.4 1089 -41 1163 226 43.8 1.5 -9.7 281 5.7 46.2 46.0 359 -04052201.G#1 0 12.3 2404 -84 1771 261 33.8 0.6 -8.2 246 7.9 36.9 50.5 385 -04052201.SNY 0 7.0 484 -214 2287 78 62.8 0.0 -12.7 227 9.0 42.4 81.2 214 -04052123.HYS 0 12.7 3460 -27 2109 75 39.7 0.0 -10.8 236 8.6 29.0 45.1 157 -04052100.FKL 0 14.7 2440 -9 772 269 42.7 4.7 -10.6 299 6.4 28.6 49.2 346 -04052100.DEN 0 9.0 1781 -3 1934 76 49.3 0.1 -11.5 231 8.4 30.6 60.1 225 -04051723.DSM 0 13.3 1669 -24 854 23 36.8 0.2 -11.5 251 6.5 26.2 51.1 132 -04051723.PUB 0 9.2 546 -83 1212 147 55.3 0.5 -11.9 251 7.8 44.9 72.1 222 -04051601.9V9 0 7.5 608 -65 1315 120 61.8 0.5 -19.3 286 7.0 35.7 85.8 189 -04051521.PIR 0 6.8 724 -30 1545 91 60.8 0.3 -21.3 289 7.3 36.7 70.4 224 -04051520.Y26 0 7.0 965 -32 1206 89 60.4 0.7 -23.7 287 7.8 40.0 67.1 217 -99053023.P07 0 12.1 2286 -113 1897 53 39.7 0.1 -8.5 315 7.8 22.5 45.3 165 -99052800.FTW 0 12.2 1104 -4 954 41 33.8 0.3 -12.6 256 6.8 24.6 36.5 103 -99052503.FST 0 10.3 1116 -185 1882 122 53.5 0.0 -9.7 271 8.3 44.1 67.4 157 -99052502.INK 0 11.4 1576 -110 1665 119 56.3 0.4 -10.0 270 7.8 39.9 60.4 191 -99052420.ABQ 0 8.1 781 -71 1338 71 34.2 0.2 -13.9 212 8.5 24.7 44.7 132 -99052220.TUL 0 16.0 3471 -3 869 32 31.1 0.6 -12.1 269 7.3 20.4 36.1 91 -99052200.SNY 0 8.7 1439 -7 1674 53 48.7 0.2 -12.8 266 7.7 28.2 65.4 147 -99052123.RAP 0 8.6 1729 -70 1711 131 43.6 0.4 -16.2 256 8.7 23.0 67.0 178 -99052001.MOT 0 8.0 903 -1 1506 2 27.5 0.0 -17.4 240 7.0 14.4 59.7 47 -99051700.LAA 0 7.5 817 -141 1731 124 65.0 0.1 -15.0 234 8.6 43.8 78.0 361 -99050519.MVN 0 12.9 1777 -10 790 108 57.7 1.8 -14.1 237 6.6 41.0 44.8 194 -99043001.INK 0 12.4 2333 -60 967 95 52.8 1.8 -11.4 237 8.1 32.9 71.8 280 -99042900.BIL 0 6.5 60 -143 1109 133 46.8 0.0 -17.8 182 7.5 39.8 84.0 324 -99042800.EVV 0 9.5 305 -3 1146 22 26.2 0.0 -15.6 225 6.4 18.9 38.1 56 -99042701.OKC 0 8.9 873 -24 1056 47 27.4 0.2 -20.3 275 7.9 23.0 44.2 88 -99042322.LOZ 0 12.8 1995 -5 979 77 37.3 1.0 -11.6 287 6.9 30.4 44.4 71 -99042319.EZF 0 10.2 1142 -51 1722 106 57.2 0.3 -14.2 276 6.9 38.0 68.5 172 -99042203.GOK 0 12.3 2307 -132 894 364 53.9 3.4 -16.0 254 8.5 31.2 54.6 401 -99042123.BMI 0 11.6 1687 -24 839 261 53.4 3.9 -16.4 252 7.8 45.9 57.4 408 -04083002.GCK 0 10.7 1029 -108 1687 204 32.5 0.2 -8.1 315 6.8 29.0 26.2 278 -04083000.SUX 0 10.7 779 -7 1471 199 42.6 0.6 -12.9 289 6.7 36.3 45.9 296 -04082622.C23 0 10.2 983 -43 1349 25 41.1 0.1 -15.8 254 7.2 17.8 70.6 46 -04082621.MCW 0 15.4 2478 -27 1087 26 46.1 0.5 -9.9 239 7.0 37.9 68.9 181 -04082522.FSM 0 18.2 3688 -45 1240 101 33.9 1.6 -6.7 244 6.2 16.5 39.6 113 -04082522.BIS 0 10.2 2077 -41 1811 74 38.1 0.2 -15.2 230 8.4 22.8 43.2 103 -04082503.MHK 0 19.2 4217 -59 627 274 31.2 5.7 -7.9 224 7.5 31.4 51.8 392 -04082501.MHK 0 18.9 4262 -45 721 150 29.9 3.2 -7.4 240 7.1 28.3 50.9 241 -04082020.BGM 0 14.6 1425 -21 712 95 53.2 1.2 -9.5 238 5.9 38.1 53.7 106 -04082018.ORH 0 15.1 2067 -19 1051 47 40.0 0.6 -8.9 256 6.1 29.0 39.9 132 -04081918.LBE 0 14.4 1183 -7 597 105 39.9 0.8 -8.7 270 5.6 40.5 44.4 152 -04081901.PIA 0 13.9 1294 -107 1203 377 40.4 1.6 -7.9 277 5.6 39.8 43.3 465 -04081822.BRL 0 15.3 2600 -41 963 377 41.3 6.8 -9.4 276 6.6 42.5 42.9 508 -04081421.LIC 0 9.9 1288 -66 1242 15 32.2 0.1 -10.2 333 7.8 25.5 42.7 65 -04080321.OAX 0 18.7 4816 -44 1389 92 36.9 1.7 -5.9 259 7.0 23.6 38.1 189 -04080202.Y26 0 15.4 3187 -169 1209 336 55.2 1.6 -9.3 291 8.1 28.5 83.2 385 -04080123.Y22 0 8.5 1290 -28 3011 -1 45.9 0.0 -10.5 298 8.6 30.2 71.2 158 -04073101.GAG 0 14.4 2006 -116 1300 54 42.0 0.3 -6.2 308 6.7 14.8 44.7 98 -04072102.FSD 0 19.9 4659 -49 869 261 26.0 5.3 -5.9 278 7.3 28.0 37.4 426 -99081101.HLC 0 17.4 3928 -33 1289 71 38.3 1.3 -5.1 243 6.7 21.0 34.5 152 -99081023.AKO 0 14.9 2910 -32 1271 87 33.9 1.0 -6.5 232 7.6 22.7 45.7 163 -99080901.DIK 0 12.0 2409 -98 1891 48 58.5 0.1 -10.8 267 8.5 29.7 54.5 94 -99080822.2WX 0 10.3 1972 -32 2526 39 44.1 0.0 -8.8 262 8.3 27.2 41.0 117 -99080702.RAP 0 12.7 921 -36 1200 35 33.6 0.1 -6.6 268 6.3 20.0 48.7 72 -99080301.LWT 0 8.5 449 -155 1772 53 48.3 0.0 -10.3 278 7.8 29.4 70.4 131 -99073100.JKL 0 15.8 3605 -30 1833 89 22.3 0.0 -5.9 355 6.7 22.8 19.6 158 -99073020.IPT 0 15.0 2685 -12 1238 32 34.0 0.4 -8.7 319 6.3 16.0 50.7 72 -99072922.FVX 0 14.5 1431 -13 1556 81 34.3 0.3 -6.0 327 5.6 22.6 48.0 117 -99072902.XVG 0 12.7 1459 -186 1710 319 58.3 0.1 -9.5 302 7.7 41.9 73.8 381 -99072900.ADG 0 14.8 1974 -6 1415 63 37.3 0.5 -9.4 298 7.1 21.7 66.3 118 -99072420.MHT 0 14.8 1594 -17 1088 66 27.8 0.5 -9.7 275 6.5 25.2 56.1 134 -99072319.RAP 0 10.6 1320 -19 2145 52 38.7 0.0 -7.5 263 7.3 22.5 54.0 87 -99072300.FAR 0 16.2 2819 -34 1355 81 35.4 0.9 -8.5 247 7.6 27.9 55.9 137 -99071923.GDV 0 11.9 1807 -31 1654 21 41.3 0.1 -11.2 254 7.9 18.9 69.4 67 -99071302.FAR 0 12.1 1948 -48 1552 125 38.2 0.7 -12.5 297 7.2 27.2 61.0 158 -99071302.DVL 0 10.4 1453 -76 1761 69 42.5 0.1 -13.5 288 7.5 28.3 62.4 124 -99071300.OLF 0 9.2 1101 -38 2374 25 49.7 0.0 -10.3 281 7.3 26.5 65.7 106 -99071202.AIA 0 9.4 1094 -73 1844 -8 27.8 0.0 -11.3 327 8.0 26.7 47.0 79 -99070804.GDV 0 14.2 2058 -209 1364 472 61.7 0.0 -7.6 251 8.0 40.8 78.6 551 -99070421.ERY 0 19.1 3756 -61 791 95 32.9 1.8 -6.7 267 8.2 22.2 36.6 98 -99070207.SFD 0 9.5 32 -374 1535 254 82.4 0.0 -10.7 263 7.4 45.0 92.7 464 -99070103.SWO 0 18.3 2994 -18 703 229 51.1 5.8 -4.6 303 6.4 25.9 51.9 297 -99070103.GCK 0 15.2 2113 -124 873 95 73.0 1.0 -6.5 294 7.5 37.6 74.8 319 -99063023.LBF 0 9.7 291 -114 1136 0 76.3 0.0 -12.3 289 6.9 54.3 115.6 214 -99062801.BGD 0 13.8 2864 -63 2251 73 37.7 0.0 -5.0 266 8.5 22.5 43.1 130 -99062522.DIK 0 12.8 2775 -1 1732 -52 57.7 -0.4 -10.3 230 8.2 35.4 58.9 132 -99062501.VTN 0 11.7 1035 -41 1545 55 41.3 0.2 -8.2 282 6.6 23.6 41.7 120 -99062400.BGD 0 12.2 2544 -17 2195 10 13.6 0.0 -6.5 288 7.8 22.6 35.1 91 -99060601.P07 0 11.8 1543 -130 1771 -31 45.2 0.0 -8.7 243 7.9 18.4 58.3 32 -99060523.LBF 0 10.7 2070 -28 1957 91 62.6 0.1 -12.9 197 8.5 25.9 90.4 131 -99060302.IML 0 10.0 869 -198 1657 237 43.7 0.0 -11.0 225 8.5 39.8 66.5 421 -99060202.GCC 0 6.3 226 -83 1883 18 41.3 0.0 -15.4 262 8.3 26.0 42.6 126 -99060200.FTW 0 16.8 3982 -31 1338 62 35.0 1.0 -11.1 275 8.5 25.7 60.3 144 -99053102.MHK 0 11.6 903 -51 1360 108 32.8 0.3 -11.3 270 6.9 30.0 24.5 179 -99120303.ADM 0 9.7 1355 -50 974 250 42.8 2.4 -22.1 217 8.5 35.9 65.7 332 -99112303.RBD 0 13.2 1077 -16 789 138 48.1 1.2 -13.6 235 6.4 25.1 60.9 176 -99112302.HBR 0 8.7 124 -124 660 53 47.7 0.0 -17.1 219 6.7 41.5 75.7 132 -99100823.FSI 0 10.1 649 -14 1313 5 36.2 0.0 -13.6 219 6.3 14.3 67.9 56 -99092600.GKY 0 13.1 1483 -15 1429 43 28.0 0.2 -9.4 340 6.3 21.5 55.3 182 -99092522.D07 0 6.4 163 -199 2219 136 65.7 0.0 -15.8 242 8.3 31.8 105.7 206 -99092004.RRC 0 11.2 292 -200 1044 70 37.2 0.0 -11.2 270 6.7 28.8 60.6 216 -99092000.OKC 0 11.1 1068 -42 1896 56 39.5 0.0 -10.1 290 6.8 29.0 60.9 190 -99091923.CSM 0 11.9 1645 -3 1885 18 41.3 0.0 -9.8 280 7.0 27.5 64.0 178 -99091920.CGZ 0 11.2 802 -16 1905 19 39.1 0.0 -8.7 245 6.5 16.0 60.3 61 -99091207.SLP 0 15.6 2094 -69 507 92 45.4 1.3 -10.8 271 8.2 16.8 55.8 121 -99091200.LBL 0 11.9 1180 -121 1590 31 43.2 0.1 -9.0 275 7.8 25.7 65.5 84 -99091122.HLC 0 12.4 1517 -36 1221 59 37.8 0.4 -11.3 253 7.4 21.0 66.2 94 -99091101.AFW 0 13.1 1250 -24 1970 21 29.5 0.0 -7.4 297 6.2 21.7 52.8 139 -99082300.ABR 0 11.7 1432 -38 1851 61 40.1 0.1 -9.6 289 6.9 20.3 45.5 101 -99082104.HON 0 13.3 1187 -244 1155 197 38.1 0.0 -8.9 281 7.4 31.4 54.2 238 -99082100.LBF 0 9.8 20 -311 1794 44 34.8 0.0 -7.8 321 7.1 19.7 46.1 126 -99082022.DIK 0 11.7 1445 -10 1669 21 33.6 0.1 -7.8 298 6.3 17.8 36.0 58 -99081922.MLS 0 7.1 393 -105 3278 19 33.8 0.0 -10.0 244 8.6 22.0 37.3 120 -99081800.RRT 0 11.4 1524 -26 847 90 49.2 1.1 -17.7 268 7.3 32.2 62.0 126 -99081400.ALB 0 16.8 1843 -4 701 196 38.5 2.3 -6.3 249 5.8 29.9 48.4 252 -99081202.GCC 0 10.6 877 -99 1162 63 34.5 0.2 -10.2 218 7.5 17.7 54.6 98 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/test b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/test old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/textwin.c_linux b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/textwin.c_linux old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xinitd.c_11282007 b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xinitd.c_11282007 old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xtnd b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xtnd old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xv.h_linux b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xv.h_linux old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xwvideo.h_linux b/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/xwvideo.h_linux old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/META-INF/MANIFEST.MF b/ncep/gov.noaa.nws.ncep.ui.nsharp/META-INF/MANIFEST.MF index 70dcf53604..f6c1c47077 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/META-INF/MANIFEST.MF +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/META-INF/MANIFEST.MF @@ -36,6 +36,7 @@ Import-Package: com.raytheon.edex.meteoLib, com.raytheon.viz.core.graphing, com.raytheon.viz.skewt, com.vividsolutions.jts.geom, + gov.noaa.nws.ncep.common.dataplugin.ncuair, gov.noaa.nws.ncep.edex.common.sounding, gov.noaa.nws.ncep.viz.common.soundingQuery, gov.noaa.nws.ncep.viz.common.ui, @@ -44,8 +45,6 @@ Import-Package: com.raytheon.edex.meteoLib, gov.noaa.nws.ncep.viz.resources, gov.noaa.nws.ncep.viz.resources.manager, gov.noaa.nws.ncep.viz.ui.display, - gov.noaa.nws.ncep.viz.ui.locator, - gov.noaa.nws.ncep.viz.ui.locator.resource, javax.measure.converter, javax.measure.unit, ncsa.hdf.hdf5lib, diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/nlist.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/nlist.txt index 1eada9d84f..5c7d200395 100755 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/nlist.txt +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/nlist.txt @@ -1,1149 +1,1149 @@ -DATE / RAOB ELEV REPORT MUCAPE MUMR 500TEMP 300 T 7-5 LR 5-3 LR 0-3SH 0-6SH 0-9SH SRH3 SHIP MODELb -95052300.DDC 791 6.00 4181 15.3 -9.6 -36.2 7.5 7.1 23.4 19.4 26.8 325 1.9 3.0 -91051100.MAF 873 6.00 4692 14.9 -10.8 -37.3 8.8 7.2 14.2 13.2 18.1 -37 1.9 2.7 -97061700.OUN 357 5.50 5751 18.8 -9.5 -36.1 7.4 7.1 14.5 23.6 45.9 116 3.1 3.5 -99012200.LZK 165 5.00 2240 12.3 -17.3 -41.7 7.6 6.8 23.0 26.3 32.1 294 2.3 3.0 -96061200.DDC 791 5.00 2820 13.7 -8.3 -34.7 7.6 7.1 12.9 20.3 15.8 142 1.2 2.5 -92072600.DDC 791 5.00 4794 17.4 -4.6 -31.2 6.8 7.0 18.2 17.4 14.6 176 1.0 0.8 -91052900.HON 392 5.00 3892 15.2 -12.3 -38.0 8.0 7.0 25.0 40.7 36.0 269 3.4 3.5 -90070800.BIS 504 5.00 3717 16.6 -9.8 -33.6 7.7 6.4 12.5 29.8 42.2 202 2.4 2.4 -57070300.RAP 966 5.00 4359 15.8 -6.7 -36.0 7.7 7.8 13.9 22.9 39.3 130 1.7 3.4 -06040300.LZK 78 5.00 3819 13.7 -14.9 -44.7 8.0 8.2 20.9 26.6 32.6 251 3.9 3.4 -99060100.DDC 790 4.75 4387 15.9 -11.3 -38.7 8.0 7.4 15.3 27.7 38.0 209 3.5 3.5 -96102100.OUN 362 4.50 2995 12.7 -12.9 -42.6 7.5 8.1 15.6 20.3 28.4 71 1.8 3.0 -96081100.LBF 847 4.50 2360 13.3 -8.4 -34.4 6.2 7.0 26.5 26.1 22.0 326 1.0 2.6 -96062700.TFX 1130 4.50 3835 13.9 -10.9 -37.2 8.3 7.1 21.8 37.1 44.3 297 3.0 1.6 -96051000.TOP 268 4.50 3884 15.6 -11.1 -40.4 8.8 8.0 22.1 18.3 22.3 234 2.2 3.3 -96050500.IAD 85 4.50 2432 12.1 -15.2 -41.7 7.2 7.3 15.9 25.0 25.5 36 1.9 1.9 -96030700.JAN 91 4.50 2362 14.0 -12.5 -38.9 6.8 7.2 16.8 34.9 36.9 196 1.8 0.6 -95060900.MAF 873 4.50 5653 17.8 -8.1 -37.7 8.1 8.0 12.8 18.7 33.5 83 2.2 2.9 -95060500.MAF 873 4.50 4358 14.9 -8.6 -40.7 7.6 8.7 16.0 23.2 32.0 181 2.1 2.9 -95051700.DDC 791 4.50 4878 15.6 -10.8 -39.2 8.5 7.7 8.9 26.6 40.7 43 3.8 2.6 -94060800.LBF 847 4.50 3400 13.0 -9.5 -37.5 7.8 7.6 8.1 18.7 18.4 109 1.5 2.4 -94042600.SEP 399 4.50 4409 16.3 -11.5 -41.9 7.4 8.3 21.2 26.7 26.2 138 3.3 3.3 -94040300.OUN 362 4.50 2075 10.1 -17.0 -44.2 7.6 7.5 18.7 31.2 39.3 163 1.9 2.1 -93101800.SEP 428 4.50 3958 15.7 -10.6 -34.9 7.0 6.5 23.2 31.7 30.5 441 2.6 2.2 -93101300.SEP 428 4.50 3151 14.2 -13.1 -36.5 8.0 6.3 15.0 22.3 31.8 307 2.4 2.9 -93092200.TOP 270 4.50 3665 16.8 -8.1 -37.9 6.5 8.0 21.3 21.3 37.9 502 1.3 1.3 -93092200.OVN 486 4.50 3685 15.4 -11.1 -40.4 8.1 7.9 23.5 31.9 33.2 492 2.9 4.0 -93072400.BIS 505 4.50 3597 15.3 -9.8 -38.4 5.8 7.7 14.9 21.0 33.2 263 1.4 2.3 -93062700.OVN 400 4.50 3720 15.0 -10.0 -38.2 6.3 7.6 9.4 22.3 28.9 140 1.7 3.1 -93060800.OUN 431 4.50 4917 17.0 -9.1 -34.9 7.1 6.9 9.7 30.6 26.7 195 2.8 2.6 -93050100.DDC 790 4.50 3206 11.1 -16.5 -44.2 8.0 7.7 15.4 24.0 29.9 194 2.7 3.7 -92073000.TOP 268 4.50 4074 16.6 -10.0 -37.8 7.5 7.5 11.8 22.5 22.1 164 2.2 2.4 -92073000.OVN 400 4.50 4366 16.6 -11.4 -38.3 7.4 7.3 13.9 22.3 23.7 216 2.7 3.2 -92062900.SEP 399 4.50 3761 17.4 -9.6 -33.8 7.8 6.6 13.7 21.8 15.6 248 2.0 2.8 -92062800.DDC 791 4.50 2750 13.8 -11.3 -34.2 7.8 6.2 15.2 20.6 41.3 315 1.6 2.9 -92062800.AMA 1095 4.50 4069 16.0 -10.3 -36.1 7.9 6.9 16.9 22.8 27.5 150 2.4 3.2 -91081400.GTF 1118 4.50 2524 11.5 -13.2 -37.4 8.5 6.6 15.3 25.8 28.9 213 2.0 2.0 -91072100.HON 392 4.50 5826 20.1 -6.1 -32.2 6.8 6.9 14.3 22.8 33.9 180 1.8 1.9 -91042912.BRO 7 4.50 4471 19.5 -9.8 -38.2 7.7 7.6 13.7 23.1 24.2 254 2.5 -999.0 -91032800.FNT 236 4.50 1860 11.3 -17.3 -44.0 7.6 7.4 26.8 47.0 45.4 431 1.8 2.9 -90051600.OUN 357 4.50 4398 16.7 -9.0 -36.4 7.6 7.3 23.2 25.5 44.9 180 2.5 3.1 -89080400.INL 359 4.50 3953 17.4 -11.5 -30.6 8.3 5.1 7.3 18.6 29.2 36 2.3 1.0 -89070300.SEP 399 4.50 5261 18.5 -7.6 -28.8 8.4 5.6 12.9 22.6 1.2 222 2.5 2.9 -89062700.GSO 277 4.50 4349 17.6 -7.3 -33.8 6.3 7.1 7.8 14.2 6.4 52 0.9 0.9 -89060700.SEP 399 4.50 3510 15.6 -7.9 -33.9 7.0 7.0 9.0 24.8 47.4 130 1.6 2.4 -89060400.MAF 873 4.50 3939 14.0 -10.0 -36.2 8.5 7.1 6.6 20.6 33.6 58 2.2 2.2 -02043000.FWD 171 4.50 5853 19.4 -10.9 -33.7 8.0 6.1 14.6 29.7 37.1 151 4.4 3.1 -02042900.IAD 93 4.50 2553 13.6 -16.7 -41.9 7.3 6.9 24.9 21.1 33.9 373 2.1 2.9 -08020600.SHV 79 4.25 2312 13.5 -14.1 -42.1 7.3 7.7 25.8 32.4 43.7 212 2.1 1.8 -07080400.RAP 1029 4.25 2983 15.6 -4.1 -30.9 6.2 7.1 18.3 22.7 35.8 270 0.7 0.9 -05042200.SGF 387 4.25 2944 12.6 -13.3 -42.7 6.8 8.0 15.1 21.3 15.6 193 1.7 2.2 -05042000.LBF 849 4.25 2460 10.1 -15.7 -43.9 8.9 7.8 16.6 15.3 22.3 255 1.4 2.9 -05031400.JAN 101 4.25 1382 11.1 -15.7 -40.7 7.6 6.8 19.2 25.5 49.7 161 1.1 2.8 -04081000.DNR 1625 4.25 3415 12.9 -9.1 -38.9 8.0 8.1 16.2 15.0 15.4 270 1.2 3.2 -04071318.ILX 178 4.25 6811 22.1 -10.9 -36.3 7.9 6.8 15.5 18.7 21.9 131 3.6 2.6 -04071300.LBF 849 4.25 7183 19.5 -7.3 -35.7 8.6 7.5 10.3 14.7 20.5 68 2.1 3.7 -04071200.GGW 700 4.25 2390 11.0 -13.7 -41.1 8.6 7.5 17.1 22.3 32.0 99 1.7 1.9 -04062200.AMA 1099 4.25 3828 13.8 -8.9 -36.5 8.0 7.4 17.8 26.2 40.5 141 2.3 2.3 -04053000.OUN 357 4.25 4526 16.8 -7.5 -36.5 7.8 7.7 15.8 24.4 40.4 224 2.1 -999.0 -04052200.AMA 1099 4.25 4265 13.7 -8.7 -36.3 7.9 7.4 13.6 21.5 23.9 176 2.0 2.1 -04040400.MAF 872 4.25 2746 12.0 -14.7 -43.1 7.0 7.8 14.4 19.5 31.1 262 1.6 2.7 -03051000.MHX 11 4.25 4373 17.1 -10.5 -35.1 7.3 6.6 14.1 22.7 23.2 146 2.5 2.1 -03050518.BNA 210 4.25 2730 16.0 -12.9 -36.4 7.1 6.5 18.3 37.0 37.2 239 2.2 -999.0 -03050500.SGF 387 4.25 5169 15.7 -13.5 -40.7 7.6 7.4 30.0 38.4 50.7 348 4.6 2.9 -03040600.FWD 171 4.25 2487 12.4 -14.3 -41.7 7.3 7.5 17.1 31.5 51.8 341 2.1 2.9 -01070300.LBF 849 4.25 5584 16.7 -8.7 -37.3 8.5 7.8 14.2 18.0 24.7 154 2.4 4.2 -98063000.TOP 270 4.00 6490 21.8 -5.3 -30.5 7.2 6.6 18.1 24.4 32.6 230 2.0 1.7 -98050800.FFC 244 4.00 4120 17.3 -12.3 -36.1 7.7 6.4 17.1 31.0 51.6 172 3.4 2.2 -97082200.LBF 849 4.00 3974 15.7 -9.7 -35.9 7.4 7.1 17.4 26.4 37.5 321 2.4 3.3 -96052300.LBF 847 4.00 2915 13.5 -11.1 -38.2 8.0 7.3 18.5 27.8 43.7 303 2.3 2.9 -95102700.SGF 394 4.00 2166 12.5 -13.8 -41.6 6.9 7.6 25.7 21.9 29.4 267 1.3 1.6 -95072600.DDC 791 4.00 5696 18.3 -10.1 -32.2 8.8 5.9 17.1 21.3 19.2 238 3.5 3.3 -95072500.FTD 196 4.00 2897 15.4 -10.0 -30.5 9.2 5.5 12.8 19.1 19.8 168 1.7 -999.0 -95051600.JAN 91 4.00 4861 17.9 -10.9 -37.6 7.8 7.2 8.6 14.9 18.5 -35 2.0 2.5 -95050600.FTD 196 4.00 2036 15.1 -11.1 -34.7 7.1 6.4 20.8 21.2 37.5 304 1.1 0.6 -93072300.HON 443 4.00 3720 15.7 -8.1 -37.4 6.0 7.8 15.4 19.1 22.5 130 1.1 1.5 -93071600.RAP 966 4.00 3230 14.1 -7.5 -34.9 7.7 7.3 18.6 25.0 35.8 97 1.5 3.2 -91041300.SEP 399 4.00 5008 16.9 -10.6 -40.5 6.8 8.1 12.2 21.8 27.4 137 2.6 3.4 -90090200.RAP 966 4.00 1762 11.3 -7.4 -33.9 7.5 7.0 14.1 23.6 32.7 181 0.6 2.1 -90070100.DAY 298 4.00 3541 16.6 -9.4 -33.6 7.1 6.5 8.6 19.9 24.5 154 1.5 1.8 -90060900.TOP 268 4.00 5571 18.5 -10.1 -39.2 7.3 7.8 14.8 22.6 16.4 252 3.0 2.7 -90051900.AMA 1095 4.00 2732 11.5 -9.3 -38.2 7.7 7.8 18.5 26.1 30.4 301 1.4 2.1 -90051500.AMA 1095 4.00 4543 14.8 -9.9 -36.2 8.2 7.1 19.2 24.7 33.8 473 2.9 2.2 -89071800.LBF 847 4.00 3622 15.4 -9.4 -35.6 8.1 7.0 22.9 38.9 37.6 361 2.4 2.9 -89062700.DDC 791 4.00 2840 14.3 -8.4 -36.6 7.6 7.5 12.7 19.4 19.2 167 1.1 2.2 -89061100.AMA 1095 4.00 3666 15.8 -8.7 -35.4 7.6 7.2 11.1 11.0 19.2 87 0.9 -999.0 -06092221.SGF 387 4.00 5071 17.6 -6.7 -36.1 5.3 7.9 21.0 31.6 37.0 202 1.6 1.1 -06071700.INL 361 4.00 3719 14.1 -11.1 -38.3 8.4 7.4 19.9 26.3 29.8 328 3.0 2.4 -06050600.MAF 872 4.00 3533 12.4 -12.3 -40.1 8.2 7.5 19.3 33.6 48.0 174 2.8 2.0 -04071318.DVN 229 4.00 6090 20.8 -11.1 -37.3 8.4 7.1 22.5 25.9 22.3 191 4.7 2.8 -03050300.BMX 178 4.00 4593 15.2 -15.7 -40.1 7.9 6.7 8.1 32.4 30.5 51 5.0 2.9 -02061300.DDC 790 4.00 6234 19.5 -6.9 -31.9 7.6 6.6 17.2 19.8 32.7 126 2.1 3.7 -02042000.MAF 872 4.00 2974 12.9 -8.1 -36.7 6.9 7.6 19.0 24.3 41.7 133 1.2 2.5 -95051900.BMX 178 3.75 3370 16.5 -9.9 -35.7 6.6 7.0 16.9 20.6 25.5 246 1.5 0.6 -03040400.OUN 357 3.75 2640 11.9 -15.1 -42.7 7.3 7.6 13.4 24.0 23.9 187 2.0 2.3 -99072600.LBF 849 3.65 4375 16.4 -6.7 -30.5 7.9 6.4 9.5 12.9 16.1 60 1.0 2.6 -99050400.OUN 357 3.65 5195 15.6 -14.9 -44.1 8.4 8.0 16.5 21.3 22.0 343 4.5 4.7 -99030600.LZK 165 3.65 1922 11.7 -18.5 -46.3 8.2 7.7 21.4 22.8 39.2 360 1.9 2.1 -98052200.SGF 387 3.65 4719 17.1 -9.9 -36.5 7.8 7.2 13.8 22.4 23.1 232 2.6 2.3 -98040800.ILX 178 3.65 1354 10.2 -19.7 -46.5 7.2 7.5 20.1 21.2 25.1 180 1.1 2.6 -03062300.OAX 350 3.65 6203 18.7 -9.3 -36.9 8.6 7.5 12.3 13.6 22.9 237 2.2 4.2 -02091900.OUN 357 3.65 4268 15.7 -6.1 -36.9 6.7 8.2 17.8 20.8 23.4 308 1.2 3.0 -02062400.ABR 396 3.65 5093 17.2 -10.5 -35.7 8.2 6.8 16.9 26.3 30.9 187 3.7 3.5 -02060500.RNK 654 3.65 5399 17.9 -9.7 -34.9 6.9 6.7 8.7 4.0 7.3 54 0.8 3.2 -02051200.TOP 270 3.65 4489 15.8 -11.9 -38.9 8.1 7.3 13.7 26.0 26.5 224 3.6 3.3 -02051100.MAF 872 3.65 4658 14.5 -9.3 -35.9 8.4 7.2 14.8 23.1 40.3 132 2.7 2.2 -01072100.GGW 700 3.65 3114 13.5 -10.7 -38.5 7.7 7.5 15.8 28.3 30.5 354 2.2 2.8 -01071800.ABR 396 3.65 5177 17.5 -9.9 -36.7 8.4 7.2 9.6 19.5 28.2 136 2.7 3.9 -01062100.DDC 790 3.65 4428 15.2 -10.7 -37.5 7.8 7.3 13.4 19.0 25.2 400 2.3 3.2 -01061400.DDC 790 3.65 5244 15.7 -8.9 -36.7 8.0 7.5 19.8 28.1 28.2 384 3.2 2.5 -01052500.JAN 101 3.65 3446 13.5 -15.1 -42.5 7.5 7.5 17.4 21.8 31.4 240 2.7 2.7 -01051800.AMA 1099 3.65 4695 13.9 -10.5 -38.9 8.6 7.7 16.1 13.2 22.8 86 1.8 2.1 -01050700.SHV 79 3.65 2945 14.8 -12.5 -39.3 6.5 7.3 9.0 15.7 22.1 110 1.2 1.7 -01050700.LZK 78 3.65 3512 14.7 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.6 3.4 -01041500.DDC 790 3.65 3892 13.1 -18.3 -43.1 9.0 6.9 24.4 43.1 54.7 233 5.4 2.5 -01040400.SGF 387 3.65 3277 12.8 -15.1 -43.1 8.3 7.7 17.2 22.4 28.9 310 2.8 3.1 -98062000.OUN 357 3.50 6048 19.0 -7.1 -35.9 7.8 7.7 13.7 15.4 11.2 209 1.7 3.9 -98052500.OUN 357 3.50 5688 18.0 -10.7 -39.7 8.1 7.8 9.9 21.9 28.7 172 3.5 4.2 -98052100.TOP 270 3.50 4680 16.5 -12.5 -38.1 8.4 7.0 9.8 10.5 23.7 100 1.7 3.8 -97062100.LBF 849 3.50 6058 17.3 -9.3 -35.7 8.8 7.2 13.9 23.1 25.1 129 3.7 3.7 -96062000.OAX 350 3.50 4081 16.3 -9.8 -37.1 8.6 7.4 18.9 19.0 24.4 271 2.1 -999.0 -90061900.BIS 504 3.50 1968 11.1 -13.5 -40.9 8.2 7.5 17.4 28.4 38.0 257 1.5 2.9 -90060900.IAD 85 3.50 3994 17.2 -10.9 -35.5 7.1 6.7 18.3 23.7 20.0 203 2.4 0.9 -90040600.SEP 399 3.50 3764 12.4 -14.9 -45.3 7.8 8.4 15.4 25.2 36.8 305 3.3 2.3 -90031400.OUN 357 3.50 3950 14.6 -16.1 -39.5 7.2 6.4 12.3 20.2 49.4 169 3.0 2.9 -89070300.STC 315 3.50 3556 15.6 -8.2 -35.9 7.0 7.4 8.5 15.8 21.4 128 1.1 1.4 -02081200.DDC 790 3.50 3415 14.0 -8.7 -34.3 8.0 6.9 10.7 15.7 27.7 157 1.2 3.1 -01061500.FWD 171 3.50 4260 17.3 -9.7 -33.7 7.9 6.5 11.1 15.1 9.7 74 1.6 2.2 -01041000.SGF 387 3.50 3476 13.0 -14.5 -41.3 7.9 7.4 12.5 21.6 30.3 141 2.7 2.6 -91060500.DDC 791 3.25 4631 16.9 -7.9 -35.5 6.5 7.4 11.0 15.3 15.4 74 1.2 3.5 -06070200.GRB 214 3.25 3255 15.4 -9.3 -35.9 6.6 7.1 14.7 17.0 24.9 99 1.1 1.5 -99060200.FWD 196 3.00 4928 17.3 -11.5 -37.3 8.8 7.0 15.3 15.0 30.3 171 2.4 4.5 -98062900.TOP 270 3.00 6895 22.0 -7.7 -33.1 7.0 6.8 19.3 20.6 27.3 335 2.5 2.4 -98062500.BIS 506 3.00 4591 15.5 -13.3 -41.3 8.1 7.7 15.5 15.9 15.4 89 2.5 3.0 -98062500.ABR 396 3.00 4448 16.3 -13.7 -40.5 8.8 7.3 11.2 17.4 28.7 42 3.0 3.7 -98061400.OAX 350 3.00 2830 13.3 -10.5 -39.5 7.7 7.9 15.3 24.4 45.4 219 1.8 3.4 -98052400.DDC 790 3.00 2630 11.6 -12.9 -41.5 6.7 7.8 9.8 22.0 27.7 101 1.4 2.3 -97061000.FWD 196 3.00 2699 15.6 -9.9 -34.9 7.0 6.7 10.9 18.7 24.1 98 1.1 1.3 -97052600.OUN 357 3.00 5143 17.2 -7.7 -38.5 5.9 8.3 15.0 30.4 32.4 148 2.0 2.6 -96070800.LBF 847 3.00 3341 15.3 -6.4 -32.5 7.0 6.9 20.6 30.0 41.5 390 1.3 2.2 -96062012.LBF 847 3.00 3418 15.2 -8.6 -35.4 7.9 7.3 16.5 22.6 25.0 380 1.7 3.3 -96061400.UNR 1037 3.00 3801 13.1 -11.0 -37.6 8.4 7.2 12.4 18.0 14.8 63 2.0 2.0 -96052700.OUN 362 3.00 3034 15.2 -9.4 -36.2 6.9 7.2 22.5 29.8 33.6 330 1.7 2.0 -96042000.ILX 178 3.00 2394 12.9 -14.6 -41.1 7.1 7.3 16.4 27.0 39.5 249 2.1 -999.0 -96033100.SHV 84 3.00 2891 12.7 -17.1 -46.6 7.6 8.2 20.1 27.4 35.5 163 3.0 3.1 -95082700.GGW 696 3.00 3094 11.7 -12.6 -38.7 8.3 7.1 13.6 26.8 41.0 162 2.4 1.7 -95082300.INL 359 3.00 3023 15.4 -11.6 -36.2 8.0 6.7 25.4 30.9 26.5 694 2.5 2.1 -95072400.DDC 791 3.00 3645 15.9 -9.9 -33.5 8.2 6.3 11.8 18.2 32.6 31 1.7 3.6 -95071500.LBF 847 3.00 3052 14.4 -7.0 -32.9 6.5 6.9 13.9 15.9 24.7 159 0.7 2.1 -95062300.LBF 847 3.00 2962 12.9 -11.1 -36.7 7.9 7.0 15.3 21.0 19.8 220 1.7 2.8 -95043000.FTD 196 3.00 4416 15.0 -13.3 -43.2 8.1 8.2 15.6 21.9 31.7 166 3.4 3.4 -95021400.PBI 6 3.00 2433 16.5 -11.0 -41.1 5.9 8.1 13.8 27.1 33.4 117 1.4 0.6 -94060600.DDC 791 3.00 4882 14.8 -8.8 -37.2 8.7 7.6 13.1 15.6 18.6 248 1.9 2.1 -94052600.FNT 236 3.00 2240 10.8 -16.3 -46.6 6.1 8.4 12.8 17.8 25.8 113 1.0 2.4 -94032800.CKL 140 3.00 2066 15.3 -9.6 -33.7 6.3 6.4 30.5 38.6 36.3 429 1.1 0.6 -93091900.DDC 824 3.00 1954 12.4 -10.4 -35.2 7.2 6.7 16.8 29.5 46.6 233 1.2 2.8 -93091900.AMA 1094 3.00 1911 12.4 -9.0 -33.5 7.7 6.5 16.5 32.7 35.4 264 1.1 2.4 -93082300.DDC 790 3.00 2608 13.3 -7.8 -33.0 7.7 6.8 13.1 19.5 27.0 83 1.0 2.0 -93070900.OVN 487 3.00 5546 19.7 -6.8 -30.3 6.9 6.2 16.9 29.4 24.3 345 2.3 0.6 -93070200.DDC 816 3.00 4895 17.1 -5.2 -33.2 7.2 7.4 13.3 16.4 21.4 237 1.0 2.8 -93060600.HAT 4 3.00 4948 16.0 -13.5 -38.7 8.3 6.9 12.6 15.5 17.2 70 2.8 3.9 -93050600.MAF 873 3.00 3784 13.9 -9.6 -37.2 7.2 7.4 18.6 27.0 25.4 149 2.3 2.5 -92070500.OVN 400 3.00 5051 17.3 -9.3 -36.1 7.4 7.2 16.1 21.8 33.3 243 2.5 3.5 -92062700.MAF 873 3.00 3224 13.9 -8.2 -32.9 7.7 6.6 13.0 23.7 38.8 253 1.6 2.5 -92032600.TBW 13 3.00 2104 12.6 -14.0 -43.1 6.5 8.0 18.6 32.2 37.0 195 1.5 1.1 -91052700.DDC 791 3.00 5493 17.0 -10.5 -38.1 8.4 7.4 13.3 21.7 29.3 81 3.4 2.9 -91040912.1M1 172 3.00 3450 14.2 -15.2 -42.3 8.0 7.5 11.5 19.7 20.8 134 2.7 -999.0 -91032700.TOP 268 3.00 2763 12.7 -12.3 -39.3 6.8 7.4 21.6 27.7 31.7 279 1.9 2.5 -90052700.OUN 357 3.00 4621 17.5 -8.8 -37.3 7.6 7.7 20.4 23.8 25.1 255 2.4 3.2 -90051500.OUN 357 3.00 4798 16.8 -10.7 -38.4 7.8 7.5 12.5 19.8 29.7 186 2.6 4.2 -89060700.AMA 1095 3.00 4752 15.4 -9.5 -33.5 8.5 6.4 21.7 30.5 55.6 303 3.3 2.4 -89060500.OUN 357 3.00 1640 12.5 -11.6 -39.9 7.0 7.7 8.8 15.7 23.9 53 0.6 0.7 -72081200.YRM 988 3.00 1989 10.9 -14.2 -40.4 8.3 7.1 14.0 24.6 35.0 132 1.5 2.4 -06052800.BIS 506 3.00 3434 12.5 -11.1 -38.7 8.1 7.5 10.5 11.3 12.7 74 1.0 1.8 -06052700.BNA 210 3.00 3535 16.1 -8.3 -35.3 5.9 7.2 17.7 12.8 17.2 196 0.7 0.7 -06052500.SGF 387 3.00 3470 15.6 -11.1 -37.1 7.6 7.0 13.6 14.3 7.3 162 1.4 2.0 -06042500.OUN 357 3.00 4007 15.5 -12.3 -39.3 8.6 7.3 15.4 20.1 21.2 105 2.8 3.3 -06042412.LMN 317 3.00 3248 14.1 -12.9 -39.7 8.2 7.3 16.6 25.4 28.7 413 2.8 3.2 -04081000.DDC 790 3.00 3147 14.6 -9.7 -36.3 7.7 7.1 13.0 21.0 22.0 222 1.6 3.0 -04070200.AMA 1099 3.00 5137 16.9 -8.1 -37.7 7.4 7.9 18.0 14.0 16.6 80 1.4 3.0 -04052300.OAX 350 3.00 4333 15.6 -12.3 -40.7 7.6 7.8 19.6 32.4 28.9 289 3.6 3.0 -04051700.DDC 790 3.00 2200 10.0 -11.9 -41.3 8.4 8.0 20.5 31.7 30.2 390 1.6 1.5 -04042200.OUN 357 3.00 2363 12.2 -13.5 -39.5 7.0 7.1 16.9 24.3 33.8 385 1.6 2.7 -04041900.OAX 350 3.00 3136 11.9 -15.1 -40.5 8.2 7.0 20.5 33.8 44.9 394 3.0 1.9 -03062800.DDC 790 3.00 2329 11.4 -9.3 -38.9 6.7 8.0 10.8 16.9 26.8 138 0.7 2.2 -03062400.LBF 849 3.00 6189 18.6 -8.7 -38.9 8.1 8.1 21.7 30.8 31.6 381 3.8 4.8 -03050420.SGF 387 3.00 4524 15.8 -11.9 -40.7 7.1 7.8 25.2 35.4 47.9 480 3.3 3.2 -03042100.SHV 79 3.00 2947 15.5 -13.5 -38.7 7.5 6.8 14.3 24.0 38.0 110 2.3 0.9 -01090900.FWD 171 3.00 4304 17.1 -8.9 -35.7 8.2 7.1 7.7 14.1 12.0 97 1.4 2.7 -01053000.AMA 1099 3.00 5827 16.4 -9.7 -38.5 8.2 7.7 25.0 26.1 29.7 268 3.9 2.8 -01051900.LZK 78 3.00 4269 16.6 -12.5 -37.3 8.1 6.7 9.9 18.5 25.8 98 2.6 2.7 -00080600.OAX 350 3.00 5525 19.0 -7.1 -33.1 7.5 6.9 9.4 15.0 22.8 56 1.4 3.1 -00062900.MAF 872 3.00 3565 14.8 -6.3 -31.1 6.3 6.6 9.6 10.5 16.7 29 0.5 1.8 -00050400.FWD 196 3.00 2731 13.2 -14.3 -40.3 6.3 7.1 19.0 21.7 28.5 327 1.7 3.0 -99081800.LBF 849 2.75 5554 18.3 -8.9 -32.5 7.8 6.4 10.7 23.7 25.1 143 2.9 3.4 -99070100.MAF 872 2.75 3989 13.7 -2.5 -33.9 7.5 8.3 10.5 14.9 13.7 146 0.8 2.0 -99061900.DDC 790 2.75 4141 13.9 -11.3 -40.3 7.3 7.9 13.4 22.5 29.0 346 2.5 2.4 -99061200.AMA 1099 2.75 4400 14.7 -10.3 -36.3 7.7 7.0 18.8 26.2 36.6 210 3.0 2.4 -99060300.AMA 1099 2.75 5087 15.6 -10.3 -36.5 8.7 7.1 15.5 18.6 49.2 289 2.7 2.5 -98061400.OUN 357 2.75 6689 20.5 -6.5 -32.5 7.7 6.9 17.9 32.8 42.7 262 2.9 4.0 -98052500.DDC 790 2.75 2688 12.5 -12.1 -40.7 7.2 7.8 13.7 27.9 32.0 180 1.9 2.7 -98040900.BMX 178 2.75 3341 15.8 -13.9 -39.5 7.9 7.0 25.9 40.1 51.5 296 3.2 2.0 -97061600.DDC 790 2.75 3187 13.5 -10.9 -36.5 7.7 6.9 11.9 23.3 39.3 26 2.0 2.7 -97061200.TOP 270 2.75 1552 12.6 -11.7 -38.7 7.1 7.3 11.6 23.5 30.2 141 0.9 0.9 -97052700.SGF 387 2.75 4440 16.3 -9.9 -38.1 7.0 7.6 16.3 22.6 25.0 276 2.3 2.6 -97052700.OUN 357 2.75 5907 18.0 -8.7 -37.7 6.4 7.8 17.6 17.5 23.9 271 1.9 3.7 -97042100.SGF 387 2.75 1773 9.4 -16.5 -45.7 7.4 8.1 23.3 25.4 23.9 405 1.4 2.0 -97041100.MAF 873 2.75 4076 11.9 -15.0 -45.9 8.2 8.5 20.8 23.7 30.7 260 3.3 2.1 -97032900.BNA 180 2.75 1618 11.1 -15.6 -42.6 7.4 7.4 18.1 25.2 15.3 389 1.3 3.0 -97012500.SIL 8 2.75 2563 13.0 -16.5 -46.0 7.5 8.2 18.3 18.3 25.8 145 1.8 2.8 -96092100.FTD 196 2.75 2870 16.4 -9.4 -37.2 6.5 7.4 15.7 26.4 32.6 136 1.5 -999.0 -96083000.DEN 1611 2.75 2478 11.7 -9.1 -36.2 7.8 7.3 17.6 26.2 28.9 86 1.3 2.3 -96080100.DEN 1611 2.75 3920 13.5 -7.8 -34.9 8.5 7.3 15.0 22.6 26.3 276 1.9 2.1 -96072400.DDC 791 2.75 3068 14.3 -11.1 -36.0 8.6 6.7 16.8 27.6 36.6 203 2.6 2.7 -96062500.AMA 1095 2.75 3778 13.9 -9.4 -33.2 8.5 6.4 7.0 22.9 28.2 123 2.2 1.9 -96061400.LBF 847 2.75 2384 12.4 -8.6 -36.2 6.5 7.4 12.0 15.4 25.0 102 0.6 2.2 -96061300.FFC 246 2.75 2727 13.7 -9.1 -36.5 5.7 7.4 12.9 12.9 13.1 152 0.6 1.0 -96061200.AMA 1095 2.75 3079 11.9 -8.8 -38.1 8.0 7.9 18.3 24.3 30.2 373 1.5 1.9 -96060300.SGF 394 2.75 2739 11.7 -15.9 -42.2 7.1 7.2 14.8 26.4 35.9 90 2.3 2.1 -96060200.JAN 91 2.75 1863 16.1 -7.5 -32.6 5.5 6.8 11.3 12.7 20.3 168 0.3 0.6 -96060100.ABR 397 2.75 2276 12.6 -13.4 -40.4 6.2 7.4 24.6 22.4 27.2 370 1.3 2.2 -96053000.MAF 873 2.75 3675 14.9 -7.0 -32.9 7.7 6.9 19.0 35.1 40.6 321 1.7 2.5 -96052600.MAF 873 2.75 3464 14.1 -6.2 -36.5 7.7 8.1 22.5 28.7 42.1 240 1.4 2.9 -96052500.AMA 1095 2.75 3927 13.5 -11.3 -36.6 9.1 6.9 16.4 20.3 4.9 101 2.6 1.9 -96051800.OAX 350 2.75 4523 15.3 -11.1 -39.7 8.8 7.8 12.9 16.0 21.2 68 2.3 -999.0 -96051700.UNR 1037 2.75 4365 14.8 -8.1 -37.0 8.0 7.8 15.0 25.5 28.7 219 2.3 2.5 -96042200.TOP 268 2.75 1574 10.9 -16.6 -42.6 7.3 7.2 14.6 45.6 54.3 145 1.3 2.3 -96042200.OUN 362 2.75 2260 12.7 -10.9 -36.6 5.9 7.0 18.5 38.3 48.8 500 1.2 2.3 -96031600.FFC 246 2.75 890 9.6 -19.2 -39.7 7.8 5.7 20.5 28.8 55.2 353 0.9 2.2 -95081800.BIS 503 2.75 5585 18.4 -7.0 -34.2 7.7 7.3 10.6 10.6 17.3 142 1.0 3.3 -95072400.AMA 1095 2.75 2225 13.3 -7.8 -30.1 8.5 6.0 13.1 21.6 25.1 124 1.0 2.9 -95071500.GRB 210 2.75 5409 19.0 -8.5 -30.8 8.1 5.9 8.0 12.1 9.0 69 1.5 3.0 -95071200.OKX 20 2.75 2900 13.9 -15.6 -43.2 6.9 7.6 8.1 12.7 13.6 48 1.3 2.4 -95070300.DDC 791 2.75 2905 14.2 -9.6 -38.9 6.8 7.9 12.3 18.2 21.4 111 1.1 2.3 -95070300.AMA 1095 2.75 3838 14.7 -11.5 -36.5 8.8 6.8 8.2 22.8 29.0 115 2.9 2.5 -95062800.LBF 847 2.75 2880 12.4 -10.1 -37.2 7.7 7.3 13.9 22.0 19.7 208 1.5 2.5 -95062100.OKX 20 2.75 3918 17.1 -9.8 -34.9 7.1 6.7 11.4 18.4 25.8 18 1.6 1.0 -95060300.AMA 1095 2.75 3024 12.4 -9.6 -36.5 8.2 7.2 15.7 22.4 37.2 346 1.6 2.0 -95052200.LBF 847 2.75 2027 10.4 -14.9 -42.1 7.4 7.4 18.7 28.3 33.3 221 1.6 2.1 -95051400.UMN 438 2.75 5278 16.5 -10.3 -38.0 6.9 7.5 22.3 28.0 26.2 211 3.3 3.2 -95042000.FTD 196 2.75 2621 14.6 -13.3 -38.5 7.7 6.8 25.8 39.5 59.2 498 2.3 2.4 -95040900.TOP 268 2.75 2836 10.7 -17.5 -44.5 9.2 7.5 16.5 21.4 31.9 120 2.6 1.9 -94070700.HON 392 2.75 3051 16.5 -8.8 -35.7 7.2 7.2 10.2 20.5 18.6 159 1.3 0.6 -94070200.OAX 350 2.75 5257 18.5 -10.1 -33.0 8.0 6.2 15.5 26.5 25.4 416 3.6 3.2 -94070100.STC 315 2.75 3701 14.3 -11.6 -39.6 7.3 7.6 19.0 27.2 25.1 399 2.7 2.7 -94062600.JAN 106 2.75 2842 16.1 -9.5 -35.0 6.4 6.8 12.4 24.0 32.8 130 1.3 0.9 -94062500.HON 392 2.75 1962 11.8 -10.8 -39.7 6.4 7.8 15.4 27.8 33.5 211 1.0 2.2 -94061900.JAN 91 2.75 3177 16.8 -7.5 -32.7 5.9 6.7 3.8 11.5 12.4 42 0.5 0.6 -94061800.AMA 1095 2.75 2676 11.9 -7.0 -33.1 8.2 6.9 10.7 11.0 11.3 171 0.5 1.6 -94061200.TOP 268 2.75 2320 13.9 -9.5 -36.5 6.6 7.3 15.8 23.9 24.4 117 1.1 0.9 -94061200.AMA 1095 2.75 4015 14.7 -8.0 -33.7 7.8 6.9 18.4 26.7 19.9 302 2.2 2.7 -94061100.AMA 1095 2.75 2164 12.3 -8.3 -36.1 7.3 7.5 16.6 19.5 20.3 229 0.7 2.8 -94060600.TOP 268 2.75 3953 16.5 -9.3 -35.1 8.1 6.9 15.4 16.1 27.7 394 1.5 2.5 -94060500.HON 392 2.75 3871 14.2 -11.6 -38.7 8.5 7.4 12.0 21.4 19.2 202 2.6 2.4 -94053000.SEP 399 2.75 5032 17.5 -10.6 -36.6 8.2 7.0 16.1 27.0 23.8 291 3.8 3.9 -94052500.OUN 362 2.75 3912 15.0 -11.5 -38.1 7.4 7.2 13.2 22.0 36.2 122 2.4 3.0 -94041100.UMN 438 2.75 2040 12.6 -16.5 -41.0 7.6 6.7 19.9 37.8 45.4 486 2.1 2.5 -94012700.GGG 124 2.75 2167 13.2 -15.9 -42.4 6.8 7.3 17.5 31.0 32.3 306 2.0 0.7 -93102000.DRT 313 2.75 3433 15.5 -8.9 -36.3 6.4 7.4 13.4 25.4 34.0 35 1.6 1.6 -93101900.GGG 124 2.75 3105 15.7 -9.8 -36.9 6.9 7.3 10.3 23.5 33.9 105 1.6 0.7 -93101300.CRP 14 2.75 4367 17.3 -8.6 -37.2 6.3 7.7 14.8 20.2 29.8 227 1.5 1.5 -93090400.IAD 85 2.75 2779 15.6 -5.9 -32.6 5.7 7.1 12.4 15.2 15.6 149 0.5 0.6 -93070700.DDC 790 2.75 5334 17.0 -6.0 -36.1 7.2 8.0 16.5 27.9 28.2 154 2.0 3.1 -93070700.AMA 1094 2.75 5327 17.0 -4.7 -32.2 7.8 7.3 11.4 21.3 20.0 127 1.6 3.8 -93070500.DDC 790 2.75 4186 17.1 -5.4 -31.1 6.7 6.8 16.6 30.6 34.9 146 1.3 1.2 -93062400.LBF 849 2.75 3944 16.0 -8.6 -37.5 8.1 7.7 18.1 21.9 33.8 178 2.0 2.8 -93062400.DEN 1611 2.75 3442 11.7 -9.6 -38.0 8.8 7.8 15.8 32.0 42.3 211 2.2 1.8 -93061900.AMA 1094 2.75 2140 12.8 -7.8 -33.2 7.0 6.7 14.4 22.7 23.3 146 0.8 1.9 -93051600.DDC 790 2.75 3614 12.8 -9.8 -40.4 6.6 8.3 12.6 19.4 23.7 161 1.4 2.5 -93050600.AMA 1094 2.75 4478 13.2 -13.6 -38.2 8.6 6.7 16.6 34.6 38.4 340 4.5 2.0 -93050100.AMA 1095 2.75 4085 11.6 -14.5 -42.9 8.1 7.8 15.3 25.7 15.8 234 3.4 1.9 -93042900.MAF 873 2.75 2435 11.7 -10.9 -36.0 7.1 6.8 20.8 29.3 37.4 551 1.4 2.2 -93042800.MAF 873 2.75 1494 10.4 -10.6 -38.7 6.9 7.6 12.9 19.6 25.8 150 0.6 1.8 -93042500.UMN 438 2.75 2317 11.4 -14.6 -42.2 6.9 7.6 18.2 25.2 33.1 198 1.6 2.4 -93042000.GGG 168 2.75 2342 12.4 -13.3 -42.9 8.0 8.1 17.5 26.7 28.4 156 2.0 2.7 -93040200.WAL 13 2.75 1625 10.9 -18.5 -46.2 7.3 7.7 26.8 30.7 48.4 200 1.5 2.4 -93033100.UMN 440 2.75 2598 11.1 -16.5 -43.6 6.4 7.5 19.7 29.7 28.9 117 2.0 2.1 -93033100.1M1 204 2.75 2471 11.9 -15.1 -43.9 7.2 8.0 17.8 30.2 27.1 54 2.1 2.8 -92101600.SEP 399 2.75 3654 14.6 -12.1 -37.5 7.7 6.9 12.6 16.4 22.7 227 1.8 2.9 -92073000.LBF 847 2.75 3544 15.0 -10.3 -38.2 7.9 7.5 22.0 25.7 33.8 335 2.4 3.0 -92062700.AMA 1095 2.75 3165 14.1 -10.0 -34.2 7.7 6.5 12.4 16.6 29.9 191 1.3 2.9 -92061900.DDC 791 2.75 2598 12.8 -8.3 -34.7 7.9 7.1 15.7 25.1 40.5 114 1.3 2.7 -92061900.BIS 504 2.75 1791 11.0 -14.4 -39.4 6.9 6.9 13.0 27.4 24.4 106 1.3 2.5 -92061300.AMA 1095 2.75 2821 14.7 -8.8 -34.4 7.2 6.9 12.0 19.1 36.4 165 1.1 2.7 -92061200.MAF 873 2.75 2387 13.8 -8.2 -32.3 7.4 6.4 13.3 26.7 34.6 178 1.3 2.0 -92060500.AMA 1095 2.75 2870 13.4 -9.4 -37.0 7.5 7.4 12.2 17.5 25.9 249 1.1 2.6 -92030600.1M1 172 2.75 2572 11.5 -21.1 -44.4 7.2 6.5 17.3 22.5 26.7 194 2.4 2.3 -92021500.UMN 438 2.75 1724 10.2 -16.9 -44.0 6.4 7.5 24.2 33.2 28.2 289 1.3 2.2 -91072200.HON 392 2.75 4474 19.3 -6.8 -31.8 7.2 6.7 11.1 17.3 24.1 198 1.2 -999.0 -91070500.GGW 696 2.75 2308 11.4 -9.9 -38.5 7.0 7.7 6.7 17.5 23.9 144 0.8 2.2 -91070500.BIS 504 2.75 2941 13.3 -9.3 -37.6 6.4 7.6 19.3 21.4 26.6 206 1.2 2.4 -91062000.HON 392 2.75 2691 13.9 -10.5 -37.0 7.0 7.2 16.1 22.1 20.0 282 1.4 1.2 -91061900.LBF 847 2.75 3600 13.0 -12.0 -40.0 8.6 7.6 13.5 15.2 20.9 219 1.7 2.6 -91061500.GRB 210 2.75 3430 17.6 -8.7 -32.3 6.7 6.3 21.7 13.9 17.0 161 0.9 0.6 -91061500.BIS 504 2.75 2379 13.0 -11.9 -35.8 6.6 6.5 13.2 22.5 25.2 152 1.3 2.6 -91060500.OVN 400 2.75 2813 14.6 -10.1 -31.5 6.5 5.7 8.4 17.1 19.6 177 1.0 3.1 -91053000.RAP 966 2.75 2814 10.9 -15.7 -43.2 8.1 7.6 13.0 14.5 28.4 159 1.4 2.0 -91053000.OVN 400 2.75 4446 16.8 -10.2 -36.3 6.8 7.0 14.3 18.2 19.0 31 1.8 2.7 -91052500.AMA 1095 2.75 3416 13.7 -10.5 -37.1 7.0 7.2 17.0 17.4 13.8 124 1.4 2.5 -91051800.UMN 438 2.75 3444 15.1 -11.0 -34.2 7.4 6.2 9.4 11.9 21.0 59 1.1 1.2 -91051700.UMN 438 2.75 3299 15.9 -10.6 -35.6 7.6 6.7 14.4 16.1 11.8 174 1.4 1.9 -91051200.RAP 966 2.75 4430 14.1 -11.0 -39.1 7.9 7.6 26.6 23.5 33.5 437 2.9 2.5 -91051100.AMA 1095 2.75 5629 15.6 -10.7 -37.8 9.0 7.3 14.5 16.5 21.5 314 2.9 2.5 -91042800.GGG 124 2.75 4554 18.9 -10.5 -37.7 7.2 7.3 15.4 29.5 19.6 140 3.0 2.2 -91042700.OUN 357 2.75 4751 16.6 -11.5 -41.7 7.0 8.2 20.6 23.6 26.4 376 2.9 3.7 -91042700.GGG 124 2.75 5164 18.9 -10.7 -38.1 8.2 7.5 12.4 18.9 27.6 209 2.8 2.7 -91041300.OUN 357 2.75 4063 14.1 -13.7 -42.3 8.0 7.8 17.1 22.0 25.1 205 3.2 2.9 -91040300.OUN 357 2.75 1560 10.1 -19.8 -43.3 7.3 6.6 15.1 22.6 41.7 275 1.3 1.5 -91032700.DDC 791 2.75 3132 12.4 -14.2 -40.5 8.2 7.2 18.9 40.7 44.0 160 2.9 2.1 -91032200.UMN 438 2.75 2632 11.5 -15.3 -44.0 7.0 7.9 18.8 33.0 35.3 371 2.1 2.5 -90090600.STC 315 2.75 4899 19.5 -6.8 -33.9 6.2 7.2 14.7 21.0 17.1 294 1.4 1.0 -90082800.SSM 221 2.75 5115 18.2 -8.5 -36.7 6.2 7.5 20.5 31.6 29.9 334 2.4 1.1 -90081100.LBF 847 2.75 3971 14.8 -9.0 -36.8 7.5 7.5 14.3 25.6 21.5 282 2.2 2.9 -90070700.BIS 504 2.75 3274 14.9 -7.5 -34.7 6.9 7.3 12.9 19.0 25.7 316 1.0 2.2 -90070300.BIS 504 2.75 6982 21.3 -6.3 -31.9 8.2 6.8 14.9 23.0 29.6 172 2.7 4.6 -90061900.LBF 847 2.75 7070 19.2 -6.1 -35.5 8.4 7.9 18.5 30.2 38.1 266 3.2 3.6 -90060200.STC 315 2.75 2697 13.4 -13.3 -39.7 8.5 7.2 10.4 18.6 17.2 132 1.8 2.2 -90060200.LBF 847 2.75 3719 13.6 -10.8 -39.9 7.9 7.9 16.4 15.6 29.4 89 1.6 2.4 -90053100.GGG 124 2.75 4743 19.3 -5.7 -33.3 6.1 7.3 21.5 27.2 25.7 317 1.4 0.7 -90052000.OUN 357 2.75 4565 15.3 -10.8 -39.0 7.1 7.6 12.1 13.7 14.7 94 1.6 3.1 -90051900.LBF 847 2.75 3954 12.1 -13.9 -42.1 8.6 7.8 16.2 25.1 24.6 398 3.4 2.0 -90051700.GGG 124 2.75 3234 17.5 -8.3 -36.2 7.2 7.4 17.6 24.7 35.1 304 1.5 0.6 -90050100.AHN 246 2.75 4557 14.9 -12.6 -41.5 7.7 7.9 19.7 14.7 9.3 92 2.1 3.4 -90042800.GGG 124 2.75 2263 12.9 -14.9 -41.0 6.6 7.1 12.8 14.1 25.3 84 1.0 2.8 -90041700.OUN 357 2.75 3717 13.6 -15.0 -44.3 8.3 8.1 17.2 11.5 20.5 152 1.7 3.8 -90031400.PIA 200 2.75 2115 12.4 -14.4 -41.2 6.9 7.4 15.3 18.1 24.1 206 1.1 2.6 -90021600.JAN 91 2.75 2047 15.2 -10.9 -40.4 6.6 8.0 18.9 20.9 34.6 124 1.0 -999.0 -89090400.LBF 847 2.75 4599 17.3 -8.6 -36.0 8.3 7.3 8.6 29.6 38.8 223 2.9 3.3 -89082900.STC 315 2.75 1959 14.6 -10.0 -35.2 6.8 6.8 18.0 26.3 44.7 147 1.1 1.1 -89082200.STC 315 2.75 3346 16.2 -11.1 -35.6 6.9 6.7 11.9 20.6 30.6 173 1.7 1.2 -89082200.OMA 400 2.75 4223 17.9 -8.3 -30.9 7.0 6.0 15.0 22.2 45.4 138 1.8 0.9 -89082200.HON 392 2.75 4160 15.6 -9.4 -38.2 6.9 7.8 14.8 22.9 28.9 107 2.0 3.3 -89081600.AMA 1095 2.75 2669 12.8 -7.1 -34.8 6.9 7.4 10.5 17.0 24.9 158 0.7 2.5 -89062600.RAP 966 2.75 2246 11.5 -13.8 -40.7 7.8 7.4 20.0 31.3 30.4 301 1.8 2.6 -89061300.AMA 1095 2.75 3611 14.4 -10.8 -36.6 8.1 7.0 9.9 15.8 22.1 79 1.6 3.0 -89060300.TOP 268 2.75 2623 13.7 -12.6 -38.3 7.0 7.0 12.4 19.5 39.7 118 1.5 2.0 -89060300.MAF 873 2.75 2291 11.9 -8.4 -34.6 7.6 7.0 13.3 19.3 32.2 147 0.8 2.2 -89060200.MAF 873 2.75 3193 14.1 -10.4 -34.9 7.9 6.6 8.5 24.5 27.4 104 2.1 2.8 -58042200.FWH 180 2.75 3338 13.3 -16.1 -39.0 7.8 6.3 25.5 37.0 49.4 276 3.6 2.4 -07021400.BMX 178 2.75 1032 9.9 -19.1 -44.7 7.0 7.1 19.5 20.7 36.3 245 0.7 2.4 -06082600.DDC 790 2.75 3488 16.5 -5.5 -31.7 6.5 6.9 17.6 20.2 26.5 141 0.8 0.8 -06081000.BIS 506 2.75 2589 13.0 -8.9 -35.7 7.5 7.2 8.8 19.1 18.8 147 1.0 2.6 -06062200.DDC 790 2.75 2406 12.7 -8.7 -34.9 8.1 7.0 11.0 21.1 24.9 175 1.1 2.4 -06050800.MAF 872 2.75 2440 11.9 -12.5 -36.9 8.0 6.6 22.1 33.3 51.2 327 1.9 2.3 -06050718.CHS 15 2.75 2580 12.9 -12.5 -40.1 6.0 7.5 15.9 17.7 18.8 177 1.1 2.0 -06050500.MAF 872 2.75 3709 11.5 -12.1 -42.7 8.1 8.4 21.7 27.6 34.4 372 2.7 1.7 -06050300.DRT 313 2.75 3549 13.7 -12.1 -37.1 8.5 6.8 5.1 14.2 19.0 74 1.7 2.1 -06042000.BMX 178 2.75 2242 13.1 -11.9 -37.1 7.1 6.8 11.3 21.7 27.0 122 1.3 2.1 -06041400.DVN 229 2.75 1524 11.2 -15.7 -35.1 8.3 5.6 15.8 30.6 30.3 263 1.4 3.4 -06031218.TOP 270 2.75 2814 12.6 -17.9 -44.3 8.5 7.3 33.9 44.8 54.9 723 3.5 2.7 -05092300.ILX 178 2.75 1858 14.1 -8.1 -33.3 6.9 6.7 11.5 21.5 16.8 121 0.7 0.8 -05051000.FWD 171 2.75 4841 15.5 -11.5 -42.1 6.7 8.3 9.5 18.0 25.9 152 2.2 2.9 -05042300.JAN 101 2.75 2558 13.6 -14.7 -39.7 7.1 6.9 19.9 28.5 34.1 183 2.3 2.7 -05042100.DDC 790 2.75 4722 13.2 -15.3 -43.5 8.6 7.7 15.2 16.1 14.9 174 3.1 2.1 -05041800.AMA 1099 2.75 1767 9.4 -17.3 -43.3 8.7 7.2 15.5 19.6 22.9 211 1.4 1.9 -05022200.FFC 244 2.75 1389 11.4 -16.3 -43.1 7.0 7.4 20.7 28.5 35.4 225 1.2 1.7 -04070500.DDC 790 2.75 3819 14.3 -10.3 -37.7 8.3 7.4 14.4 18.6 30.5 161 2.0 2.5 -04060300.FWD 171 2.75 4767 16.9 -11.1 -36.5 8.7 6.9 14.1 19.1 24.1 157 2.9 -999.0 -04053000.TOP 270 2.75 3882 15.9 -12.9 -39.3 8.7 7.1 14.8 22.4 15.3 295 3.2 3.2 -04051300.OUN 357 2.75 5740 16.8 -11.5 -40.5 8.2 7.9 12.4 15.2 20.9 131 2.7 3.6 -04051223.LMN 317 2.75 4076 15.9 -10.5 -40.3 7.4 8.1 21.9 22.7 30.4 304 2.3 2.4 -04051100.DNR 1625 2.75 3995 10.6 -12.9 -41.1 9.2 7.8 18.2 28.3 16.6 379 3.4 1.5 -04050600.WAL 12 2.75 1861 9.3 -21.3 -47.5 7.2 7.4 21.3 20.2 28.3 239 1.5 1.4 -04040500.CRP 13 2.75 2478 14.9 -12.1 -39.1 6.7 7.3 7.0 22.4 20.6 184 1.5 0.6 -04032800.OUN 357 2.75 2904 12.6 -15.9 -44.3 7.8 7.8 16.4 23.3 31.1 315 2.5 2.8 -04032718.DDC 790 2.75 4133 13.2 -17.3 -42.1 8.0 6.9 14.4 24.6 26.6 143 4.4 2.3 -03100600.AMA 1099 2.75 2542 12.2 -10.3 -39.3 6.4 7.8 12.9 24.1 30.2 50 1.2 2.5 -03091100.MAF 872 2.75 2808 13.3 -6.5 -32.5 6.8 6.9 7.4 10.3 9.0 80 0.4 1.4 -03091000.DDC 790 2.75 3620 14.8 -7.7 -34.7 7.5 7.2 11.3 12.1 15.8 233 0.8 3.0 -03061400.AMA 1099 2.75 3153 12.3 -13.3 -39.3 8.3 7.1 13.7 21.7 24.7 35 2.2 2.1 -03060500.AMA 1099 2.75 2647 11.9 -11.9 -36.9 7.6 6.8 13.1 23.0 28.5 167 1.5 2.1 -03051700.SHV 79 2.75 3995 16.3 -10.9 -37.3 7.4 7.2 19.6 23.2 13.9 242 2.4 2.7 -03051600.AMA 1099 2.75 3706 14.1 -10.3 -37.5 8.9 7.4 34.9 42.9 37.7 632 3.0 -999.0 -03051400.SHV 79 2.75 3920 16.7 -9.5 -38.5 7.2 7.8 19.3 27.2 37.0 389 2.3 0.8 -03051000.OUN 357 2.75 5328 16.8 -11.1 -38.1 8.3 7.3 16.8 27.5 34.8 182 4.3 3.6 -03050700.FWD 171 2.75 5303 17.8 -9.7 -37.7 7.1 7.5 8.4 30.4 36.2 126 3.2 3.5 -03050618.SGF 387 2.75 5492 15.6 -14.7 -43.9 7.7 8.0 17.8 32.0 40.6 313 5.5 2.8 -03050100.TOP 270 2.75 3922 13.0 -14.1 -43.5 7.8 8.1 13.9 17.2 19.6 117 2.3 2.7 -03042900.SGF 387 2.75 3399 13.1 -16.7 -43.3 8.5 7.3 4.8 5.0 19.6 53 1.1 2.8 -03042600.BMX 178 2.75 3921 14.2 -13.3 -41.1 6.2 7.6 26.6 35.8 33.5 89 2.8 2.7 -03042500.LZK 78 2.75 3423 13.8 -15.7 -43.1 7.6 7.6 20.0 20.9 31.0 212 2.8 3.3 -03040618.LZK 78 2.75 2556 13.1 -15.9 -41.3 7.6 7.0 28.4 35.1 38.9 600 2.6 3.1 -03031300.SHV 79 2.75 2901 13.5 -15.3 -43.1 7.1 7.7 11.0 17.1 24.1 162 1.7 2.0 -02081200.LBF 849 2.75 3735 13.3 -9.9 -37.1 8.7 7.3 10.5 13.1 11.8 222 1.3 2.1 -02072700.TOP 270 2.75 6406 19.3 -5.3 -32.5 6.9 7.1 9.1 18.2 19.3 131 1.4 2.6 -02072000.TOP 270 2.75 4986 17.5 -7.5 -32.9 7.3 6.8 8.5 10.0 12.7 197 0.9 2.7 -02062500.ABR 396 2.75 4208 15.1 -7.1 -37.7 6.8 8.2 11.1 19.1 19.3 20 1.3 3.1 -02062400.BIS 506 2.75 3559 16.0 -9.7 -34.1 6.8 6.6 25.2 28.0 24.8 298 2.1 2.4 -02061300.AMA 1099 2.75 3027 13.7 -8.5 -31.9 8.4 6.3 18.7 29.6 33.0 65 1.9 2.5 -02060500.AMA 1099 2.75 2947 13.2 -11.5 -38.3 7.6 7.3 17.9 32.1 45.0 309 2.2 2.7 -02052400.AMA 1099 2.75 4729 13.8 -13.3 -39.9 8.3 7.2 18.5 28.8 21.8 258 4.5 2.3 -02051800.DRT 313 2.75 5077 16.0 -10.5 -37.1 8.1 7.2 5.2 8.8 6.3 15 1.2 2.6 -01112418.BMX 178 2.75 2902 15.1 -11.3 -39.7 6.1 7.7 22.2 26.9 31.9 328 1.7 0.8 -01072500.GGW 700 2.75 1714 11.5 -11.3 -36.3 6.9 6.8 18.2 26.7 32.1 350 1.0 2.2 -01071900.BIS 506 2.75 5738 17.8 -9.9 -36.1 8.6 7.1 14.1 21.8 28.8 183 3.4 2.9 -01071900.ABR 396 2.75 5356 17.5 -10.5 -35.1 8.8 6.6 3.4 18.1 22.7 35 2.9 2.7 -01071800.INL 361 2.75 4580 17.0 -12.9 -37.7 7.8 6.7 11.8 11.9 12.8 154 1.8 0.8 -01070100.RAP 1029 2.75 3235 14.3 -10.7 -35.7 7.7 6.8 12.9 30.8 40.7 114 2.3 2.6 -01061900.MPX 287 2.75 5114 15.6 -11.9 -39.3 9.2 7.5 19.0 33.1 31.9 154 4.9 3.4 -01061700.TOP 270 2.75 4594 15.7 -13.7 -41.9 8.5 7.8 15.7 22.1 26.6 214 3.8 3.4 -01061700.LMN 317 2.75 4093 14.1 -10.7 -37.9 8.0 7.3 9.3 19.4 26.9 195 2.2 3.5 -01061400.OAX 350 2.75 4956 17.2 -11.3 -38.5 9.0 7.4 18.5 20.4 25.5 153 3.3 3.8 -01061000.ABR 396 2.75 3453 13.8 -12.1 -39.9 7.8 7.5 16.6 24.6 32.3 158 2.6 3.6 -01060800.DNR 1625 2.75 3440 13.9 -8.7 -36.7 7.2 7.6 7.4 25.3 21.9 -26 1.8 3.1 -01060600.AMA 1099 2.75 4665 14.9 -8.9 -36.7 7.2 7.5 11.9 15.8 15.6 191 1.5 2.3 -01052500.FFC 244 2.75 2338 11.7 -14.5 -43.1 6.4 7.9 19.6 18.1 21.4 240 1.1 2.5 -01050620.LMN 317 2.75 4496 15.4 -16.1 -43.1 7.3 7.5 7.3 11.5 20.9 60 2.0 3.1 -01042100.OAX 350 2.75 3283 12.4 -15.3 -43.1 7.7 7.7 23.5 28.1 32.7 282 3.1 2.4 -01040400.LZK 78 2.75 4223 15.2 -15.1 -42.1 8.5 7.4 11.9 18.1 24.8 105 3.2 3.1 -00121618.BMX 178 2.75 2219 13.2 -14.1 -42.7 6.7 7.9 25.0 32.9 45.8 266 1.8 0.9 -00072700.OAX 350 2.75 5048 18.5 -9.7 -35.3 8.0 6.9 16.7 21.8 23.2 215 2.8 2.6 -00072500.LBF 849 2.75 5901 17.1 -8.9 -38.1 8.5 7.8 22.2 24.5 29.4 162 3.5 2.9 -00072100.LBF 849 2.75 3073 15.3 -11.3 -37.5 7.8 7.1 16.9 26.5 39.4 223 2.3 2.0 -00071700.MHX 11 2.75 2929 15.1 -12.3 -36.1 7.2 6.4 7.9 18.2 29.9 81 1.5 2.3 -00071000.LBF 849 2.75 5871 18.1 -5.5 -32.5 7.8 7.2 10.7 14.3 19.9 146 1.2 3.5 -00071000.GGW 700 2.75 3180 15.6 -10.9 -35.1 7.0 6.5 23.2 18.4 13.5 248 1.5 2.6 -00062000.LBF 849 2.75 4028 14.9 -8.5 -37.9 6.8 7.9 11.9 18.8 23.9 96 1.4 3.0 -00061400.AMA 1099 2.75 5758 16.5 -4.9 -34.9 7.6 7.9 19.9 23.8 32.0 244 1.8 2.5 -00061200.BIS 506 2.75 2000 11.3 -13.1 -39.9 7.5 7.4 10.2 22.0 28.0 306 1.2 2.5 -00052700.OUN 357 2.75 5870 18.3 -10.1 -37.9 8.4 7.5 12.8 21.5 32.8 117 3.5 4.0 -00051300.DTX 329 2.75 4524 16.9 -8.5 -37.3 7.7 7.7 20.2 24.1 18.5 328 2.3 2.4 -00022500.AMA 1099 2.75 3614 10.3 -18.5 -46.1 8.5 7.7 13.1 26.8 48.5 107 4.0 1.7 -98071100.DDC 790 2.50 4323 18.9 -4.3 -29.9 6.2 6.8 16.0 12.7 15.2 230 0.6 0.6 -96072200.LBF 847 2.50 4756 18.4 -6.5 -34.7 7.2 7.5 19.0 20.0 29.4 94 1.4 2.1 -96071900.GRB 210 2.50 4746 20.7 -7.5 -31.3 6.4 6.3 20.0 26.3 26.2 164 1.9 0.7 -96062100.DEN 1611 2.50 5603 15.2 -8.1 -36.1 9.6 7.6 8.8 27.5 33.4 155 3.8 2.2 -96061200.LBF 847 2.50 2310 11.7 -9.9 -37.5 7.5 7.4 12.7 16.7 22.2 122 0.8 2.4 -96060300.AMA 1095 2.50 2356 11.0 -10.5 -39.7 6.9 7.9 18.0 27.6 31.6 256 1.2 2.0 -96060100.DDC 791 2.50 2888 13.3 -10.9 -38.5 8.3 7.4 13.9 13.3 19.3 111 1.1 2.5 -96051800.MPX 287 2.50 4406 16.3 -8.9 -38.5 8.2 8.0 20.7 13.0 23.4 259 1.4 3.4 -96042200.FTD 196 2.50 1872 12.0 -12.6 -38.7 8.2 7.1 18.3 27.1 34.0 298 1.5 -999.0 -96030700.TLH 26 2.50 2615 15.4 -10.4 -39.0 6.0 7.7 20.7 20.9 23.7 320 1.1 0.6 -95081212.MPX 287 2.50 3361 19.1 -6.3 -31.3 7.2 6.7 23.0 20.6 36.8 164 1.0 -999.0 -95061600.TFX 1130 2.50 3142 13.0 -12.0 -37.7 8.4 7.0 23.8 27.7 35.6 277 2.7 2.3 -95060700.DEN 1611 2.50 3137 12.3 -10.8 -35.7 9.2 6.8 20.7 37.2 35.9 284 2.4 2.0 -95052912.MAF 873 2.50 1617 13.0 -11.3 -37.2 7.5 7.0 13.7 27.6 22.0 284 1.1 1.9 -95051900.GSO 277 2.50 1758 13.4 -11.8 -35.2 7.9 6.3 23.6 25.3 27.1 83 1.3 -999.0 -95051600.MAF 873 2.50 3261 13.6 -7.8 -34.0 8.4 7.1 10.3 21.7 28.8 134 1.5 1.8 -95050900.TOP 268 2.50 1495 10.0 -19.3 -39.2 6.9 5.6 21.2 19.3 22.8 126 1.0 1.2 -95050800.LCH 5 2.50 3259 17.9 -9.9 -35.6 7.1 6.9 10.2 16.7 31.1 119 1.2 0.6 -95050800.FTD 196 2.50 2700 16.5 -10.4 -38.9 7.7 7.7 24.5 30.8 30.8 407 1.9 0.8 -94062600.TOP 268 2.50 4265 16.4 -8.6 -35.2 8.4 7.1 21.6 25.2 45.9 418 2.5 2.9 -94032800.AHN 246 2.50 2627 14.4 -10.5 -35.7 6.2 6.8 30.4 34.5 24.7 518 1.5 0.7 -93070300.TOP 270 2.50 4019 18.5 -7.2 -31.5 7.1 6.5 15.2 15.8 16.4 202 1.0 0.7 -93070200.HON 392 2.50 2619 14.6 -11.3 -39.6 7.0 7.7 12.6 28.3 40.3 143 1.8 0.8 -93061400.TOP 270 2.50 4195 16.5 -8.5 -35.1 7.7 7.1 10.7 12.5 17.8 65 1.1 2.8 -93033000.DRT 314 2.50 2680 12.7 -13.4 -39.4 8.2 7.1 26.0 39.6 44.0 411 2.4 2.8 -92070200.DEN 1611 2.50 2313 11.7 -11.2 -35.2 8.0 6.5 20.0 27.6 29.9 362 1.6 2.5 -92041600.AMA 1095 2.50 3362 11.1 -13.4 -40.9 7.6 7.5 12.0 16.0 17.8 127 1.5 1.7 -92030400.SEP 399 2.50 2676 12.7 -15.3 -44.8 7.7 8.1 9.2 20.1 27.2 133 1.9 2.3 -91080200.CAR 191 2.50 1891 12.3 -13.7 -41.6 6.3 7.6 11.9 19.6 33.3 223 0.9 1.8 -91071800.STC 315 2.50 4956 18.2 -8.7 -32.0 7.3 6.3 21.9 18.7 20.1 104 1.9 2.5 -91053100.DEN 1611 2.50 3551 12.0 -12.1 -39.1 9.5 7.4 10.7 27.3 45.8 149 3.1 1.9 -91052700.LBF 847 2.50 2669 11.9 -13.4 -38.4 7.9 6.8 13.0 13.9 32.3 35 1.1 2.1 -91051200.AMA 1095 2.50 4539 14.3 -10.8 -37.8 8.5 7.3 16.7 12.4 14.9 208 1.7 2.3 -91050800.MAF 873 2.50 3415 11.2 -14.8 -41.4 8.4 7.3 25.4 31.1 36.7 280 3.1 1.6 -91042100.AYS 44 2.50 2563 11.8 -16.9 -41.9 7.4 6.9 10.3 13.4 30.0 76 1.2 1.7 -91041900.SEP 399 2.50 5996 17.6 -13.2 -38.3 7.4 6.8 13.0 13.5 44.8 24 2.6 3.1 -90083100.CHS 13 2.50 2477 16.0 -8.5 -33.3 6.5 6.6 8.3 17.0 17.7 67 0.8 0.6 -90070200.GSO 277 2.50 3963 14.8 -10.0 -35.9 7.2 7.0 10.7 26.0 16.3 100 2.4 2.2 -90062200.ALB 86 2.50 1833 12.6 -14.1 -41.8 6.7 7.6 20.6 32.5 29.1 203 1.4 1.6 -90061500.DDC 791 2.50 4667 16.0 -6.5 -35.9 7.9 7.8 15.7 28.4 30.1 306 2.1 2.7 -90060700.DEN 1611 2.50 2393 10.9 -8.2 -36.5 9.0 7.6 19.6 26.3 23.9 170 1.2 1.6 -90060300.PAH 126 2.50 3663 17.8 -7.6 -36.2 7.0 7.6 29.8 24.0 25.9 367 1.5 0.6 -08110600.OUN 357 2.50 1623 11.4 -12.5 -39.9 6.9 7.5 24.8 29.8 32.7 317 1.0 2.4 -06071123.LMN 317 2.50 2996 16.5 -5.9 -29.5 6.7 6.2 9.4 12.6 11.2 110 0.5 0.6 -06062500.DNR 1625 2.50 987 7.1 -11.5 -38.9 8.9 7.4 12.5 26.1 26.5 -172 0.7 0.9 -06061400.RAP 1029 2.50 2691 11.5 -7.7 -35.5 8.3 7.5 15.3 17.3 24.5 248 0.8 1.6 -06052600.SGF 387 2.50 3409 13.9 -9.5 -39.1 6.5 8.0 18.8 18.9 23.2 262 1.3 2.5 -06050900.JAN 101 2.50 3303 16.1 -13.3 -38.7 7.3 6.9 14.9 28.4 39.9 170 2.8 1.9 -05050700.MAF 872 2.50 3257 10.7 -12.3 -41.3 8.0 7.9 11.2 20.3 24.6 48 1.7 1.6 -05050322.XMR 3 2.50 2165 13.4 -13.9 -38.9 7.6 6.8 21.5 23.3 41.5 82 1.7 1.2 -04102400.JAN 101 2.50 1938 15.8 -6.9 -33.5 5.3 7.1 19.3 30.8 27.8 328 0.6 0.6 -04091500.LBF 849 2.50 1474 12.8 -10.7 -38.3 8.0 7.4 20.5 35.4 39.8 306 1.0 -999.0 -04080700.ABR 396 2.50 2792 13.1 -9.3 -36.7 6.7 7.4 12.1 21.0 25.9 240 1.1 2.5 -04040400.EPZ 1252 2.50 4482 12.1 -17.9 -46.3 8.2 7.9 11.6 29.1 25.4 203 5.1 2.1 -04032718.OUN 357 2.50 2825 12.6 -14.9 -42.3 7.3 7.6 11.5 21.1 32.3 199 2.0 2.1 -03062200.RAP 1029 2.50 3380 10.6 -13.7 -39.5 8.0 7.1 18.7 27.5 42.2 189 2.6 1.5 -03051500.SHV 79 2.50 4260 16.8 -9.9 -36.1 6.8 7.1 16.3 33.7 42.9 246 2.5 0.8 -02072500.ABR 396 2.50 3995 15.0 -11.5 -38.9 7.9 7.5 13.8 28.3 28.6 207 3.2 3.0 -02051700.AMA 1099 2.50 5036 13.8 -12.7 -40.5 8.7 7.6 17.4 21.9 26.5 216 3.9 2.2 -02041900.DVN 229 2.50 2861 12.3 -14.5 -39.9 8.2 7.0 15.9 14.1 20.0 213 1.4 2.5 -02041212.AMA 1099 2.50 2907 12.2 -13.7 -42.7 7.5 7.9 14.6 20.4 25.1 184 1.8 2.8 -02040300.JAX 9 2.50 3327 14.8 -14.3 -41.7 7.2 7.4 11.8 11.5 30.9 80 1.3 1.5 -01101000.DDC 790 2.50 3299 12.9 -9.7 -40.3 6.4 8.3 16.4 18.8 18.3 275 1.2 2.5 -01082400.AMA 1099 2.50 4318 15.4 -6.7 -34.3 7.4 7.4 21.0 24.0 28.1 158 1.7 2.8 -01070500.LBF 849 2.50 3571 14.5 -7.7 -36.3 7.7 7.6 17.1 26.0 27.0 313 1.8 2.9 -01070400.RAP 1029 2.50 3145 13.2 -11.1 -37.9 8.3 7.3 12.9 25.2 26.1 144 2.3 2.6 -01052620.LMN 317 2.50 4355 14.1 -13.5 -40.9 6.4 7.5 20.2 27.3 33.2 233 3.3 2.9 -01052500.BMX 178 2.50 2388 11.9 -14.9 -43.1 6.7 7.7 23.5 29.2 27.4 436 1.8 2.7 -01050400.MAF 872 2.50 3866 13.7 -11.3 -36.7 7.2 6.9 11.4 12.8 33.8 101 1.3 2.7 -01050100.OAX 350 2.50 2265 10.4 -16.9 -44.5 7.7 7.7 19.2 17.4 17.0 226 1.3 2.2 -01042200.DDC 790 2.50 3749 13.3 -12.1 -41.1 7.3 7.9 24.2 33.4 45.3 510 2.8 2.7 -01041700.MAF 872 2.50 4552 13.9 -12.1 -39.1 7.5 7.3 8.0 16.2 30.6 100 2.2 2.2 -00091100.MPX 287 2.50 4554 16.6 -10.3 -39.5 7.0 7.9 18.4 22.0 24.0 271 2.4 3.2 -00080500.BIS 506 2.50 4830 17.0 -8.7 -35.1 6.9 7.2 4.0 17.2 22.9 86 1.6 3.3 -00070600.LBF 849 2.50 5506 18.2 -7.1 -32.3 8.3 6.6 11.8 25.3 35.5 155 2.6 3.5 -00070200.ABR 396 2.50 5952 17.8 -10.3 -38.1 8.4 7.5 8.1 12.2 23.4 147 2.0 3.9 -00062400.OAX 350 2.50 4783 17.5 -8.7 -35.5 7.2 7.2 14.9 18.7 28.2 195 1.8 2.3 -00061000.RAP 966 2.50 3610 13.2 -8.1 -37.9 7.8 8.0 11.9 14.3 21.1 70 1.0 2.1 -00052300.MHX 11 2.50 3613 15.1 -13.5 -41.7 6.5 7.7 10.5 15.3 26.5 79 1.6 2.4 -00051200.DVN 229 2.50 4865 15.6 -8.1 -39.3 7.4 8.4 19.3 24.8 24.9 225 2.3 3.4 -00050100.FWD 196 2.50 3593 14.3 -13.1 -41.5 7.2 7.8 19.0 17.3 18.5 401 1.9 1.7 -00032700.SGF 387 2.50 1766 9.8 -18.3 -45.1 7.5 7.4 21.4 34.3 43.9 350 1.7 2.2 -00021400.LZK 165 2.50 2091 10.7 -20.3 -45.7 6.4 7.1 22.2 21.1 24.5 245 1.5 2.1 -00061300.OAX 350 2.25 5453 17.7 -11.5 -38.7 8.5 7.3 12.9 15.8 19.3 206 2.7 4.0 -99053100.TOP 270 2.00 2215 13.1 -10.9 -39.7 6.8 7.8 14.7 18.6 12.2 189 1.0 1.4 -99050400.DRT 307 2.00 5609 17.4 -10.1 -40.7 7.5 8.3 21.2 40.5 38.9 342 3.7 4.6 -98063000.BUF 215 2.00 2615 14.5 -10.5 -38.3 6.1 7.5 8.5 23.6 28.2 86 1.3 1.7 -98062500.APX 448 2.00 3453 15.8 -11.3 -34.3 7.3 6.2 21.9 28.9 35.4 348 2.5 3.3 -98033100.FWD 196 2.00 2873 13.3 -14.3 -40.7 7.2 7.2 17.6 29.6 57.5 93 2.5 2.9 -90091400.STC 315 2.00 2123 13.1 -10.9 -38.5 7.4 7.5 23.2 27.8 39.0 564 1.4 -999.0 -90072600.TBW 13 2.00 4330 18.4 -6.3 -31.8 5.7 6.8 6.3 3.5 8.5 7 0.4 0.6 -90061400.PIA 200 2.00 3570 18.1 -7.0 -32.9 7.0 6.9 9.5 16.5 23.4 134 0.9 0.6 -90060900.PIT 360 2.00 4095 16.7 -9.5 -35.8 6.7 7.0 18.8 18.1 13.6 236 1.5 1.0 -89103000.OUN 357 2.00 2163 12.5 -14.7 -42.6 6.6 7.6 13.1 18.0 18.1 195 1.1 1.6 -89082100.LBF 847 2.00 3307 14.8 -9.1 -35.7 7.1 7.1 8.0 28.0 44.7 83 1.9 3.0 -89071100.HON 392 2.00 3126 15.7 -7.0 -31.9 6.9 6.6 12.3 14.6 18.6 151 0.7 1.2 -89052800.ELP 1199 2.00 2569 11.2 -6.8 -34.2 8.0 7.3 14.9 11.3 17.1 232 0.4 1.4 -06090100.DDC 790 2.00 1972 12.2 -7.7 -34.9 7.1 7.2 13.9 15.6 27.4 363 0.5 1.6 -06062700.ILX 178 2.00 2025 12.2 -15.7 -43.1 6.4 7.6 5.2 3.5 11.7 15 0.4 1.2 -06061400.TFX 1131 2.00 2827 12.3 -9.7 -36.9 8.1 7.3 14.3 15.9 28.9 65 1.0 2.1 -06052400.DDC 790 2.00 1607 10.2 -8.7 -36.9 7.6 7.6 17.0 22.4 19.3 189 0.6 1.8 -06051600.MFL 5 2.00 2473 15.8 -11.1 -35.3 6.8 6.6 18.7 26.6 21.2 227 1.6 0.6 -06050800.DDC 790 2.00 1674 9.5 -17.1 -43.7 8.9 7.4 16.1 16.8 27.8 248 1.1 2.6 -06041600.TOP 270 2.00 2191 12.2 -12.9 -37.7 8.2 6.7 28.5 37.2 42.6 533 1.8 2.9 -06040700.TOP 270 2.00 2249 11.0 -15.1 -41.9 7.4 7.4 15.8 35.7 27.3 206 1.8 2.1 -05050900.LMN 317 2.00 2971 12.0 -16.1 -42.3 7.8 7.2 15.9 15.1 29.6 290 1.6 2.2 -05050700.LBF 849 2.00 3058 9.7 -14.3 -42.7 8.2 7.9 6.1 12.5 21.7 135 1.2 1.4 -05022100.SGF 387 2.00 1128 9.1 -18.9 -48.7 6.8 8.3 17.1 27.7 36.6 97 1.0 1.9 -04091200.GRB 214 2.00 2256 12.3 -14.9 -39.7 7.2 6.8 11.6 14.7 24.8 64 1.0 1.0 -04082400.BIS 506 2.00 2596 13.4 -11.1 -36.5 7.6 6.9 16.4 21.3 22.3 208 1.5 2.2 -04072300.TOP 270 2.00 3276 16.0 -7.7 -31.5 6.4 6.3 11.4 15.8 19.6 158 0.8 0.7 -04062400.GRB 214 2.00 1604 10.4 -16.9 -45.3 6.3 7.9 16.4 25.3 36.9 128 1.1 2.4 -04052200.DDC 790 2.00 3809 13.5 -9.7 -37.9 8.1 7.6 20.3 21.0 27.0 297 2.0 2.2 -04043000.JAN 101 2.00 1469 13.6 -12.7 -38.7 6.5 7.0 18.1 27.4 22.8 184 1.1 0.6 -03051900.TBW 13 2.00 3797 17.1 -10.9 -35.3 6.8 6.6 4.0 5.9 5.0 -4 0.6 1.0 -02062600.MPX 287 2.00 6228 19.6 -9.7 -37.1 7.1 7.4 9.2 18.6 21.8 120 2.6 3.2 -02061300.DVN 229 2.00 3501 17.3 -11.9 -35.7 7.4 6.5 10.0 26.3 38.7 100 2.6 1.1 -02052800.LZK 78 2.00 3284 15.1 -12.3 -37.7 6.5 6.9 2.6 4.4 12.3 13 0.6 0.6 -02041800.OAX 350 2.00 2113 11.4 -14.5 -43.5 7.6 8.0 24.0 33.9 35.5 376 1.7 2.2 -01101000.OUN 357 2.00 3485 15.6 -12.9 -39.9 7.9 7.3 23.9 24.4 28.2 447 2.8 2.5 -01090800.TOP 270 2.00 4174 17.8 -11.3 -34.9 8.1 6.4 24.5 26.2 26.7 274 3.2 1.7 -01090800.OUN 357 2.00 4351 17.6 -8.7 -33.7 7.8 6.7 21.8 26.1 21.2 151 2.5 2.3 -01082400.DDC 790 2.00 4283 16.4 -7.5 -33.9 7.7 7.0 11.9 14.7 16.3 77 1.2 3.1 -01082300.TOP 270 2.00 4361 16.7 -9.7 -33.7 7.6 6.5 13.6 9.9 23.0 192 1.0 2.3 -01072000.RAP 1029 2.00 4486 15.1 -8.7 -35.5 8.4 7.2 10.9 15.4 26.3 71 1.6 2.4 -01071300.GGW 700 2.00 3042 14.5 -10.1 -36.3 8.1 7.1 7.9 16.5 34.2 19 1.3 3.5 -01063000.FWD 171 2.00 4122 16.8 -9.7 -36.7 6.9 7.3 9.2 11.2 19.2 133 1.0 1.6 -01062100.DNR 1625 2.00 2544 10.8 -11.5 -39.3 7.5 7.5 20.5 21.4 23.2 192 1.2 2.1 -01053100.LCH 10 2.00 3988 17.4 -8.3 -37.7 7.0 7.9 0.8 8.3 13.9 8 0.6 2.4 -01053100.FWD 171 2.00 4571 15.8 -12.3 -40.5 8.7 7.7 13.7 12.4 20.6 106 2.0 3.9 -01053000.DDC 790 2.00 2892 15.2 -12.1 -35.1 8.0 6.2 14.8 19.5 26.6 388 1.8 1.8 -01052800.OUN 357 2.00 4910 16.5 -10.7 -40.3 7.6 8.0 16.9 29.7 38.8 113 3.5 3.1 -01052700.DDC 790 2.00 2853 11.3 -12.1 -40.1 6.7 7.6 19.3 30.6 37.1 184 1.7 1.8 -01051200.OUN 357 2.00 3098 13.2 -13.9 -40.5 7.1 7.3 8.7 10.0 10.8 132 1.0 2.1 -01050702.LZK 78 2.00 2759 14.2 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.3 2.0 -01050700.SGF 387 2.00 4025 14.5 -13.7 -42.3 6.1 7.9 10.5 8.8 17.0 202 1.0 3.1 -01050600.FWD 171 2.00 3092 15.4 -12.7 -38.7 6.8 7.1 19.4 32.7 34.4 170 2.3 2.1 -01042200.MAF 872 2.00 4543 13.7 -12.3 -39.7 8.4 7.5 12.3 27.4 36.2 164 4.1 2.2 -01042200.AMA 1099 2.00 6059 14.1 -15.3 -41.1 9.2 5.4 16.6 35.7 38.3 320 7.4 3.3 -00072300.LBF 849 2.00 2926 13.2 -11.5 -38.1 7.1 7.2 13.6 25.2 27.3 91 1.9 2.8 -00071500.BIS 506 2.00 5132 16.5 -9.5 -35.1 8.1 6.9 14.6 27.6 34.1 152 3.4 2.7 -00071100.GGW 700 2.00 3230 14.2 -11.3 -38.9 6.9 7.5 16.9 30.1 48.1 88 2.2 3.0 -00061500.JAX 9 2.00 4801 17.9 -8.7 -34.3 6.4 6.9 3.6 6.2 13.3 55 0.6 1.1 -00061300.LBF 849 2.00 4790 13.9 -9.9 -37.9 8.3 7.5 9.9 16.6 18.6 159 2.1 2.0 -00061200.AMA 1099 2.00 5720 16.8 -10.3 -34.7 8.3 6.6 15.7 16.1 28.7 88 2.6 2.7 -00032800.JAX 9 2.00 2135 12.5 -14.5 -43.3 6.3 7.9 25.7 29.1 24.7 268 1.6 0.9 -00031600.LMN 317 2.00 1478 9.5 -17.3 -45.5 7.1 7.8 12.9 22.1 10.9 164 1.0 2.2 -00030300.FWD 196 2.00 2589 12.3 -14.3 -41.7 6.2 7.5 20.2 33.4 29.1 239 1.8 2.7 -98062500.FFC 244 1.75 3224 15.8 -8.9 -34.3 7.3 6.8 5.6 4.2 9.9 54 0.5 0.6 -97100900.OUN 357 1.75 3628 16.5 -7.5 -35.9 6.0 7.5 16.6 20.0 29.9 205 1.1 0.8 -94071700.HAT 4 1.75 2973 16.5 -6.0 -31.3 5.7 6.7 4.4 5.9 3.1 33 0.2 0.6 -94071700.1M1 172 1.75 3339 17.7 -6.4 -31.8 5.8 6.7 19.1 12.5 11.3 164 0.5 0.6 -94070100.1M1 172 1.75 4820 18.6 -8.1 -33.0 6.1 6.7 12.6 20.0 18.5 342 1.5 1.0 -94062600.PBI 6 1.75 4199 17.7 -9.1 -34.2 6.6 6.7 5.2 4.9 6.6 10 0.6 1.8 -92051500.1M1 172 1.75 2877 13.3 -11.3 -39.9 6.4 7.8 7.9 11.4 16.3 54 0.7 1.5 -91060600.RAP 966 1.75 2001 13.1 -11.5 -36.7 7.1 6.8 11.9 13.2 19.7 170 0.7 1.4 -91060600.JAN 91 1.75 3344 16.3 -9.1 -33.5 6.8 6.5 3.1 9.5 9.6 12 0.6 0.6 -91053100.AHN 246 1.75 3505 16.3 -6.9 -32.1 5.9 6.7 3.2 3.9 4.1 15 0.3 0.6 -91051700.GGG 124 1.75 5081 18.4 -10.4 -36.4 7.5 7.0 10.5 7.9 11.2 157 1.0 0.9 -91051300.HON 392 1.75 3615 14.7 -9.5 -38.2 7.2 7.7 13.0 14.2 22.7 97 1.1 2.8 -91051300.BIS 504 1.75 1867 13.8 -11.5 -36.7 6.8 6.8 15.8 26.9 19.8 -79 1.3 0.7 -91032700.DAY 298 1.75 1310 10.7 -13.1 -42.1 6.4 7.9 24.3 30.2 30.6 531 0.8 1.8 -90091100.AHN 246 1.75 2857 15.1 -8.6 -34.0 5.9 6.8 6.3 7.9 7.6 80 0.4 0.6 -90090200.MAF 873 1.75 3597 14.9 -6.2 -32.1 6.8 6.8 7.5 17.2 18.3 58 0.8 2.5 -90082600.HON 392 1.75 5529 17.9 -11.5 -38.5 9.1 7.4 9.9 14.7 28.6 156 2.7 -999.0 -90082600.BIS 504 1.75 3187 13.7 -13.2 -42.0 8.6 7.9 13.2 22.2 23.1 190 2.6 2.5 -90082400.OVN 400 1.75 5016 18.7 -7.4 -31.7 6.8 6.5 9.4 7.4 14.7 100 0.6 0.7 -90082100.AMA 1095 1.75 2833 14.6 -5.7 -30.1 6.6 6.5 10.6 11.7 11.3 75 0.4 1.2 -90081500.DDC 791 1.75 3012 15.1 -6.6 -32.5 5.6 6.9 9.9 9.0 15.8 59 0.3 0.6 -90081000.AHN 246 1.75 2234 14.9 -9.4 -35.2 6.2 6.9 6.4 13.3 26.7 33 0.6 0.8 -90080200.LCH 5 1.75 3223 18.4 -7.3 -32.2 6.4 6.6 3.1 6.5 2.0 14 0.3 0.6 -90073100.GGG 124 1.75 3254 16.1 -7.5 -31.9 6.4 6.5 1.2 7.9 5.4 3 0.4 0.6 -90072700.AMA 1095 1.75 3104 14.3 -5.8 -31.4 7.3 6.8 11.1 7.7 7.9 117 0.3 2.2 -90072600.OUN 357 1.75 3546 16.6 -6.8 -32.6 6.2 6.8 11.1 10.8 14.7 206 0.5 0.7 -90072100.ABQ 1619 1.75 1327 10.9 -5.9 -28.5 8.3 6.1 9.8 7.9 14.5 145 0.1 1.3 -90071800.LBF 847 1.75 3138 12.3 -7.7 -36.8 8.2 7.8 10.0 17.7 16.6 115 1.0 1.6 -90071700.FNT 236 1.75 1393 11.9 -12.5 -40.9 6.5 7.7 13.2 15.5 25.3 176 0.5 0.6 -90071400.ABQ 1619 1.75 1588 10.4 -9.4 -32.2 8.7 6.2 4.4 18.9 32.6 70 0.6 1.2 -90071300.CRP 12 1.75 1658 13.3 -6.5 -31.6 6.5 6.7 14.6 12.8 9.3 121 0.3 0.6 -90071100.CKL 145 1.75 2544 15.4 -8.1 -32.3 6.4 6.4 2.1 5.1 4.6 9 0.3 0.6 -90070900.GRB 210 1.75 2962 16.9 -6.5 -31.5 6.5 6.6 12.1 18.2 22.7 82 0.7 0.6 -90070500.LCH 5 1.75 3315 17.6 -8.5 -32.0 6.6 6.3 11.6 15.3 2.5 58 0.9 0.6 -90061800.PIA 200 1.75 4567 19.5 -8.1 -33.4 7.4 6.7 14.1 17.0 25.7 94 1.5 1.0 -90061300.STC 315 1.75 2789 16.2 -10.4 -33.4 7.2 6.2 14.2 36.6 42.0 139 1.8 0.7 -90061100.CHS 13 1.75 4050 17.7 -8.1 -33.2 6.6 6.7 6.4 8.1 19.1 102 0.6 0.6 -90061000.OUN 357 1.75 3242 15.1 -8.5 -33.0 7.8 6.6 10.9 10.1 1.3 21 0.7 2.5 -90061000.IAD 85 1.75 2818 14.9 -9.2 -34.3 6.5 6.7 18.0 16.4 19.3 175 0.9 0.6 -90052800.SIL 8 1.75 3916 18.0 -10.0 -34.5 6.8 6.6 10.4 19.3 10.6 48 1.7 0.8 -90052300.HON 392 1.75 1984 10.9 -14.0 -42.8 7.2 7.9 15.0 22.3 33.6 107 1.2 2.4 -90052100.UMN 438 1.75 3661 14.8 -13.1 -43.5 7.6 8.3 15.3 15.4 23.7 181 1.8 3.4 -90052100.HAT 4 1.75 2891 15.8 -9.7 -37.4 5.6 7.5 12.4 13.8 19.5 182 0.7 0.6 -90051900.SEP 399 1.75 3246 17.0 -9.1 -34.7 6.6 6.8 15.6 20.9 27.2 387 1.3 0.6 -90051600.IAD 85 1.75 2004 13.4 -14.0 -39.9 7.0 7.1 12.7 16.7 27.7 102 1.0 -999.0 -90051200.SEP 399 1.75 2282 13.6 -9.2 -37.7 6.9 7.7 14.5 34.8 47.4 134 1.3 -999.0 -90050600.OUN 357 1.75 836 7.6 -20.1 -41.8 7.2 6.0 5.8 18.3 48.8 30 0.6 1.4 -90042900.AYS 44 1.75 2333 13.0 -12.2 -40.9 6.2 7.8 19.1 30.6 23.2 243 1.5 2.3 -90042600.DRT 314 1.75 3699 14.6 -13.8 -39.4 8.1 7.0 11.1 25.7 33.2 101 3.4 4.3 -90042200.OUN 357 1.75 2748 11.1 -13.3 -46.8 6.6 9.3 7.3 12.2 14.9 48 0.8 2.0 -90040200.BRO 7 1.75 3494 16.2 -9.3 -36.7 7.1 7.4 15.2 25.7 37.2 65 1.9 0.9 -90031300.OUN 357 1.75 3211 12.7 -13.6 -43.5 7.8 8.2 19.4 24.2 18.1 286 2.5 2.8 -90031000.AMA 1095 1.75 2468 11.1 -16.0 -40.7 8.6 6.8 9.9 13.1 18.2 106 1.2 1.9 -90022800.MAF 873 1.75 607 9.7 -16.2 -42.9 6.6 7.4 5.1 16.4 23.8 55 0.3 1.2 -89090800.DEN 1611 1.75 1350 10.1 -6.8 -33.1 8.3 7.1 15.4 24.1 24.0 366 0.5 2.0 -89090200.1M1 172 1.75 3818 18.3 -4.8 -29.4 6.1 6.5 8.2 16.2 14.1 64 0.7 0.6 -89083100.DDC 791 1.75 2956 16.5 -5.7 -31.4 6.6 6.9 13.3 13.6 22.5 346 0.5 0.8 -89083000.OUN 357 1.75 3864 17.3 -5.6 -30.2 6.0 6.5 11.8 13.1 24.2 112 0.6 0.6 -89082900.TOP 268 1.75 4842 19.8 -6.3 -32.1 6.6 6.8 13.2 15.4 21.1 156 1.0 0.6 -89082800.UMN 438 1.75 3603 17.3 -6.1 -30.3 6.5 6.4 2.6 7.8 5.6 28 0.4 0.6 -89082700.OMA 400 1.75 3452 17.8 -6.6 -33.4 6.1 7.1 15.2 19.5 33.1 142 0.9 0.6 -89082500.RAP 966 1.75 1899 10.6 -7.1 -34.2 7.6 7.2 2.7 7.7 7.6 55 0.2 1.0 -89081300.TBW 13 1.75 2617 16.4 -8.6 -33.3 6.0 6.6 10.1 18.1 18.2 65 0.8 0.6 -89080600.UMN 438 1.75 5563 19.0 -6.9 -31.4 7.0 6.5 8.8 11.7 11.3 99 1.0 0.8 -89073000.JAN 91 1.75 3940 18.0 -7.7 -34.5 6.7 7.2 2.1 1.9 3.1 9 0.5 0.6 -89072900.HON 392 1.75 2092 14.0 -5.9 -34.4 6.0 7.6 6.4 12.0 17.9 105 0.3 0.8 -89071500.LBF 847 1.75 2675 14.3 -6.9 -33.4 6.1 7.0 5.5 6.1 8.4 27 0.3 0.6 -89071300.OUN 357 1.75 4127 19.0 -5.4 -31.1 6.9 6.8 13.0 13.8 19.1 196 0.7 -999.0 -89071300.DDC 791 1.75 3239 15.1 -4.9 -31.6 6.9 7.1 7.9 5.1 7.2 81 0.3 1.2 -89070800.PIT 360 1.75 2732 15.4 -9.1 -36.1 6.8 7.3 12.8 17.5 15.7 81 1.0 1.5 -89062800.BUF 218 1.75 2385 15.2 -8.2 -33.3 5.3 6.8 9.8 20.1 22.3 82 0.7 0.6 -89062700.PIA 200 1.75 2460 15.7 -7.9 -33.9 6.6 6.9 5.3 13.2 12.4 87 0.5 0.7 -89062600.IAD 85 1.75 3138 16.2 -8.6 -36.4 6.1 7.4 12.1 14.3 23.0 108 0.8 0.7 -89062200.AHN 246 1.75 1517 15.5 -7.6 -33.7 5.8 6.9 14.9 12.6 15.8 112 0.3 0.6 -89061900.BNA 180 1.75 1755 13.9 -10.2 -36.1 6.3 6.9 6.8 9.7 7.8 86 0.4 0.6 -89061400.GGG 124 1.75 3674 17.2 -11.0 -35.3 6.9 6.6 4.3 15.4 23.3 61 1.4 -999.0 -89060600.JAN 91 1.75 3336 16.3 -11.3 -37.4 6.7 7.0 10.4 20.8 25.3 103 1.7 0.8 -89060600.GSO 277 1.75 2078 14.8 -9.1 -34.5 5.9 6.8 10.0 8.1 6.7 93 0.3 0.6 -89060100.TOP 268 1.75 2810 15.8 -10.9 -35.3 7.9 6.6 7.9 10.6 26.9 90 0.8 -999.0 -06100400.MPX 287 1.75 3011 13.7 -12.1 -41.5 7.4 8.1 23.9 34.0 30.2 514 2.4 2.9 -06091600.DDC 790 1.75 2738 14.4 -6.9 -34.5 6.6 7.4 21.6 29.7 39.0 378 1.1 2.2 -06091400.EPZ 1252 1.75 1589 11.7 -10.3 -32.9 7.6 6.1 13.1 17.4 23.7 167 0.6 2.0 -06091100.AMA 1099 1.75 1812 12.5 -8.9 -37.1 7.1 7.6 13.7 14.9 33.3 51 0.5 2.1 -06082300.RAP 1029 1.75 1757 8.3 -9.5 -39.1 9.1 8.0 12.7 21.3 28.7 108 0.8 0.8 -06082100.ABR 396 1.75 1851 12.5 -9.9 -36.9 6.8 7.3 15.5 21.9 39.5 257 0.8 2.1 -06080900.TUS 779 1.75 1640 11.9 -4.7 -30.5 6.6 6.8 6.6 5.1 8.2 25 0.1 0.6 -06080700.TOP 270 1.75 1693 12.5 -6.7 -31.1 7.0 6.4 3.2 7.6 6.8 35 0.2 0.6 -06072600.TUS 779 1.75 1725 11.2 -5.7 -31.7 7.4 7.0 8.5 15.0 18.3 36 0.3 0.9 -06072200.LZK 78 1.75 2480 14.1 -8.1 -31.3 7.3 6.2 7.7 6.9 5.8 67 0.3 0.6 -06071900.JAN 101 1.75 2280 15.2 -6.9 -33.5 6.5 7.1 9.0 11.1 11.1 88 0.4 0.6 -06071300.DDC 790 1.75 1575 12.8 -5.9 -30.5 6.9 6.5 7.4 12.7 13.7 99 0.2 0.8 -06071200.DDC 790 1.75 1068 11.8 -8.7 -29.3 8.0 5.5 11.8 15.4 21.8 12 0.3 1.0 -06070100.BNA 210 1.75 2750 13.5 -11.5 -39.1 6.7 7.5 11.5 10.8 7.8 41 0.7 1.5 -06062900.DDC 790 1.75 919 7.7 -10.1 -38.7 7.7 7.7 1.9 17.9 17.9 16 0.3 0.8 -06062400.LBF 849 1.75 1400 10.7 -12.1 -38.5 7.4 7.2 13.6 26.6 25.0 272 0.9 2.1 -06062400.BIS 506 1.75 942 8.3 -15.3 -41.9 7.0 7.3 16.7 22.7 27.2 167 0.6 1.6 -06062100.CHS 15 1.75 4007 17.0 -10.1 -35.5 6.4 6.9 7.1 12.9 19.3 66 1.1 0.7 -06061800.FWD 171 1.75 2286 14.3 -10.9 -34.3 8.2 6.2 11.6 13.9 24.6 134 0.9 2.3 -06052700.GSO 270 1.75 2136 12.7 -9.9 -37.3 5.8 7.4 17.1 17.4 21.2 217 0.6 1.5 -06052500.TLH 53 1.75 2619 14.8 -10.5 -36.5 6.4 7.0 9.2 7.3 7.5 56 0.4 0.6 -06052300.SGF 387 1.75 3032 14.4 -11.9 -37.7 7.1 7.0 8.3 9.0 15.5 91 0.7 1.6 -06051800.ILX 178 1.75 713 8.0 -17.5 -46.5 6.9 8.1 16.9 28.8 29.6 226 0.6 2.1 -06051412.SHV 79 1.75 2270 12.4 -14.9 -41.3 7.8 7.2 15.5 16.8 26.2 84 1.3 2.8 -06051100.LCH 10 1.75 4564 18.5 -12.3 -35.7 8.9 6.4 12.2 22.9 22.0 38 3.7 1.7 -06050912.SGF 387 1.75 2144 12.9 -12.9 -39.7 6.7 7.3 10.1 20.3 18.4 144 1.2 1.8 -06050900.DDC 790 1.75 1630 9.6 -13.3 -40.5 7.9 7.4 15.1 27.2 27.8 179 1.2 2.0 -06050600.LCH 10 1.75 2655 14.9 -10.3 -39.3 5.8 7.8 15.8 23.1 25.2 64 1.2 0.6 -06050400.SHV 79 1.75 3310 15.0 -12.1 -39.1 6.7 7.3 5.8 8.0 14.3 85 0.7 0.6 -06042300.DTX 329 1.75 609 6.7 -24.1 -43.7 7.4 5.5 14.0 17.7 27.4 50 0.5 1.8 -06041900.BMX 178 1.75 1805 12.0 -11.1 -39.9 6.3 7.7 5.4 14.2 22.0 62 0.5 0.7 -06041600.WAL 12 1.75 2234 10.9 -16.5 -44.7 7.2 7.8 17.2 17.7 48.2 81 1.2 2.3 -06041600.IAD 93 1.75 2181 10.2 -16.7 -43.9 7.0 7.5 16.6 27.7 43.3 48 1.8 1.8 -06041300.LZK 78 1.75 1294 11.0 -13.5 -41.1 7.2 7.6 6.0 12.6 20.8 34 0.4 -999.0 -06040900.JAX 9 1.75 2254 13.6 -13.7 -38.1 6.6 6.6 19.5 20.4 22.0 178 1.3 2.1 -06040400.CHS 15 1.75 2165 11.6 -16.9 -42.5 8.1 7.0 26.6 31.6 39.3 207 2.2 2.6 -05082700.AMA 1099 1.75 2765 13.6 -5.5 -32.3 7.4 7.1 10.0 11.5 11.5 31 0.4 2.0 -05082400.RAP 1029 1.75 2040 11.3 -11.3 -38.9 8.6 7.5 13.6 11.6 19.1 116 0.6 -999.0 -05031500.TLH 53 1.75 1338 12.4 -14.1 -38.5 7.1 6.6 12.7 28.4 53.2 41 1.1 1.1 -05030400.AMA 1099 1.75 697 4.3 -23.3 -51.5 8.7 8.0 13.1 22.7 36.0 142 0.8 1.3 -04092500.AMA 1099 1.75 2465 11.2 -11.9 -40.7 6.9 7.8 12.0 15.1 24.9 38 0.8 2.0 -04092300.AMA 1099 1.75 1887 12.8 -10.1 -35.5 6.7 6.9 19.6 23.5 21.8 374 0.9 1.3 -04082600.BIS 506 1.75 3083 12.5 -13.1 -41.7 7.1 7.8 13.9 16.6 18.9 101 1.4 2.4 -04081900.ILX 178 1.75 3685 15.1 -9.1 -36.3 5.9 7.3 19.7 19.9 28.2 371 1.3 1.3 -04071200.TOP 270 1.75 3709 17.7 -7.3 -32.5 6.8 6.7 11.9 13.6 9.1 204 0.8 0.6 -04051600.EPZ 1252 1.75 2888 10.4 -11.5 -39.9 8.7 7.8 4.1 12.2 7.0 93 0.9 1.6 -04051000.LBF 849 1.75 4026 11.6 -13.9 -41.1 9.0 7.5 3.0 13.9 17.5 38 1.9 1.6 -04042900.DRT 313 1.75 1834 12.4 -12.9 -40.9 6.4 7.7 16.1 20.0 31.6 217 0.9 1.3 -04040700.FWD 171 1.75 835 10.4 -16.3 -40.1 6.7 6.6 11.8 28.3 27.2 87 0.6 1.0 -04032100.MAF 872 1.75 2053 10.0 -12.9 -41.3 7.9 7.7 5.5 9.6 21.3 39 0.5 1.5 -04032100.FFC 244 1.75 942 7.9 -17.3 -44.1 7.5 7.4 11.3 12.0 13.4 154 0.4 1.1 -04030100.TOP 270 1.75 487 6.3 -28.7 -42.5 8.7 3.9 20.1 32.0 35.0 171 0.9 1.6 -04022512.LIX 8 1.75 837 10.3 -17.7 -40.5 6.7 6.3 25.2 31.9 48.7 340 0.7 2.4 -03092100.DDC 790 1.75 1784 10.2 -10.9 -38.5 7.3 7.5 21.8 20.1 23.8 257 0.7 2.0 -03091100.DDC 790 1.75 3112 14.8 -7.5 -31.9 6.9 6.6 15.7 22.3 30.8 259 1.2 2.2 -03091000.MAF 872 1.75 3038 12.9 -7.3 -34.1 7.4 7.1 8.6 8.3 12.7 79 0.4 2.1 -03090500.DRA 1009 1.75 1966 11.3 -8.3 -34.1 8.1 6.9 5.0 3.7 9.2 33 0.2 1.2 -03062500.MAF 872 1.75 4621 16.5 -6.7 -29.9 7.7 6.2 11.9 8.7 16.8 45 0.7 2.1 -03062100.MAF 872 1.75 1489 10.7 -7.7 -33.7 7.0 6.9 6.5 14.5 29.4 74 0.3 1.9 -03061700.RAP 1029 1.75 1501 10.1 -11.1 -38.5 7.1 7.4 2.9 5.7 17.5 92 0.2 1.9 -03061700.FFC 244 1.75 2826 16.3 -8.5 -33.7 6.2 6.8 5.5 7.0 13.0 32 0.3 0.6 -03061500.LBF 849 1.75 1717 10.7 -11.3 -39.3 6.3 7.6 6.6 10.6 12.0 51 0.3 1.7 -03061500.FWD 171 1.75 2433 14.3 -11.3 -37.9 6.9 7.2 5.3 12.1 2.8 32 0.7 1.7 -03061300.LBF 849 1.75 2759 12.0 -11.3 -40.9 7.2 8.0 13.0 15.4 16.3 179 1.0 2.6 -03061100.OUN 357 1.75 3045 14.5 -9.3 -35.7 7.2 7.1 12.1 17.8 13.1 135 1.2 2.0 -03060400.LCH 10 1.75 4988 19.7 -6.7 -34.5 5.8 7.4 7.3 13.3 17.2 44 0.8 0.6 -03051312.FWD 171 1.75 1814 12.6 -10.3 -36.9 7.3 7.1 16.8 17.7 24.7 205 0.7 1.2 -03050700.BMX 178 1.75 4489 17.4 -10.5 -36.9 7.0 7.1 12.2 26.5 28.4 101 2.8 2.1 -03050200.FFC 244 1.75 3289 13.7 -13.5 -41.1 6.5 7.5 7.5 9.8 9.5 55 0.9 0.9 -03043000.BNA 210 1.75 3359 12.4 -15.3 -42.5 7.2 7.5 4.1 4.3 5.5 30 0.8 1.3 -03042900.MAF 872 1.75 2325 9.8 -13.5 -39.1 8.4 7.0 15.5 23.4 21.0 165 1.6 1.4 -03042900.AMA 1099 1.75 2549 9.6 -14.5 -41.5 8.3 7.4 16.5 25.3 33.7 237 2.0 1.6 -03032600.SHV 79 1.75 1723 11.3 -18.3 -45.5 8.5 7.6 8.0 17.7 18.0 108 1.3 1.4 -03032600.LZK 78 1.75 2073 11.3 -18.5 -46.3 6.7 7.8 9.5 14.3 15.4 67 1.0 2.2 -03031500.BMX 178 1.75 1555 10.9 -19.1 -43.3 7.4 6.8 12.3 8.5 21.2 94 0.5 1.3 -02082300.LBF 849 1.75 6193 17.8 -10.1 -38.1 8.0 7.5 3.8 12.9 28.1 10 2.1 3.1 -02072800.DDC 790 1.75 2480 12.9 -5.3 -31.3 7.4 6.8 10.7 10.6 11.1 155 0.3 1.4 -02072518.TBW 13 1.75 4523 18.9 -8.5 -34.7 6.7 7.0 2.0 7.8 6.3 7 0.7 0.6 -02070200.AMA 1099 1.75 2393 12.2 -6.5 -35.3 7.3 7.6 20.8 18.4 11.3 353 0.6 1.6 -02062600.DTX 329 1.75 3079 14.5 -8.9 -34.7 6.1 7.0 1.4 1.9 7.2 -1 0.4 0.7 -02061200.TOP 270 1.75 5029 19.6 -8.9 -32.9 7.6 6.4 15.6 21.1 24.7 224 2.3 0.7 -02060700.MPX 287 1.75 1952 9.2 -15.1 -43.7 7.7 7.9 16.2 22.8 25.3 758 1.4 1.5 -02060402.CHS 15 1.75 2637 13.7 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.6 0.8 -02052900.TOP 270 1.75 2661 12.8 -13.7 -40.1 6.8 7.2 7.3 4.2 10.7 48 0.5 1.3 -02052800.MAF 872 1.75 3115 12.7 -11.1 -37.5 8.0 7.1 16.4 20.6 24.7 103 1.7 2.1 -02052800.LBF 849 1.75 3387 11.3 -15.1 -41.3 9.0 7.2 11.6 18.8 30.1 184 2.3 1.9 -02050400.CHS 15 1.75 3255 15.9 -10.7 -35.7 6.6 6.7 16.6 21.1 29.5 19 1.6 0.9 -02041800.FWD 171 1.75 3343 15.9 -9.9 -35.9 6.4 7.0 5.6 12.4 34.6 61 0.9 -999.0 -02041600.PIT 357 1.75 1856 11.5 -14.9 -41.7 7.3 7.4 15.8 17.9 18.1 245 1.0 1.6 -01062000.DTX 329 1.75 3813 14.9 -12.5 -37.3 6.9 6.7 15.0 8.4 17.6 -45 0.9 2.8 -01061800.TBW 13 1.75 3469 15.9 -9.7 -34.9 5.9 6.8 1.5 4.6 6.6 23 0.5 0.8 -00090400.LBF 849 1.75 2441 11.2 -9.5 -35.5 7.8 7.0 18.5 21.4 24.1 309 1.0 1.5 -00080800.OAX 350 1.75 4679 16.3 -8.1 -32.7 7.8 6.5 10.8 16.4 25.1 185 1.6 3.0 -00080200.GGW 700 1.75 2057 10.8 -8.9 -37.9 8.0 7.8 15.0 24.6 35.3 148 0.9 1.8 -00073100.JAX 9 1.75 3581 17.6 -8.9 -33.5 6.0 6.6 4.7 6.6 5.5 27 0.4 0.6 -00072900.GSO 270 1.75 2081 14.3 -9.7 -35.1 6.2 6.8 6.5 6.2 16.1 43 0.3 0.6 -00072700.LBF 849 1.75 5178 18.1 -8.9 -36.7 8.7 7.5 12.2 17.5 26.1 351 2.3 2.2 -00072600.MPX 287 1.75 3240 15.3 -13.1 -36.3 7.6 6.4 10.1 21.4 12.4 139 2.2 3.0 -00072600.MFL 5 1.75 4079 18.3 -8.5 -33.5 6.6 6.7 2.4 5.2 5.6 18 0.5 0.6 -00072500.ABR 396 1.75 4195 15.6 -12.3 -38.3 8.9 7.1 10.9 15.3 19.8 113 2.3 3.1 -00072200.LBF 849 1.75 3031 12.8 -11.5 -38.5 7.6 7.3 14.5 27.5 23.7 247 2.2 2.6 -00072100.FFC 244 1.75 2149 14.3 -6.9 -30.5 6.4 6.2 9.1 9.2 10.4 63 0.3 0.6 -00071800.AMA 1099 1.75 3660 14.4 -4.7 -32.7 6.9 7.4 5.9 9.1 7.7 79 0.4 1.5 -00071500.IAD 98 1.75 2186 13.9 -12.3 -36.3 6.8 6.5 9.3 17.8 17.7 118 1.1 2.0 -00071300.ABR 396 1.75 2305 13.6 -8.7 -36.1 6.7 7.3 21.7 29.3 44.3 278 1.2 2.0 -00070600.GGW 700 1.75 2743 11.7 -14.1 -40.7 8.5 7.3 13.0 29.6 40.4 165 2.4 1.9 -00062400.LBF 849 1.75 4723 14.8 -9.7 -37.3 8.6 7.4 9.8 17.4 29.6 126 2.2 2.0 -00062400.DDC 790 1.75 3499 14.8 -7.3 -33.9 7.7 7.2 12.0 23.2 30.2 237 1.5 2.7 -00062200.DDC 790 1.75 3602 14.3 -8.7 -37.5 7.0 7.7 16.2 15.4 23.4 157 1.1 2.9 -00061100.AMA 1099 1.75 3932 14.0 -7.9 -33.5 7.8 6.8 9.4 14.8 19.1 128 1.2 2.1 -00060300.ABQ 1620 1.75 1267 9.4 -8.7 -34.3 8.2 6.9 7.6 10.3 17.5 70 0.2 1.4 -00052900.GSO 270 1.75 1988 14.3 -11.1 -37.1 6.2 7.0 17.6 28.7 35.1 139 1.2 1.2 -00051900.FWD 196 1.75 3610 16.2 -10.9 -37.7 7.4 7.2 6.7 25.2 32.9 75 2.4 0.6 -00051200.TOP 270 1.75 5329 16.7 -7.3 -39.3 6.5 8.6 21.0 25.1 29.2 216 2.1 3.7 -00033000.SHV 79 1.75 3548 15.4 -15.9 -44.1 7.6 7.8 23.8 31.6 50.3 323 3.8 2.8 -94070100.GSO 277 1.50 2296 13.8 -10.3 -38.7 5.4 7.7 6.6 8.1 14.3 40 0.3 0.6 -90082200.OUN 357 1.50 3350 16.6 -5.5 -30.6 6.1 6.6 3.1 3.3 5.7 -7 0.3 0.6 -90082200.AHN 246 1.50 3275 16.5 -6.8 -30.8 6.5 6.3 6.0 8.7 15.8 48 0.4 0.6 -90071000.DEN 1611 1.50 3504 13.5 -8.2 -34.3 8.0 7.0 16.7 25.4 20.1 41 1.9 2.5 -90041100.AHN 246 1.50 1096 11.5 -14.0 -40.0 6.4 7.1 19.0 25.4 25.8 343 0.7 0.6 -90040200.GSO 277 1.50 984 8.7 -17.4 -45.5 6.8 7.8 19.9 29.7 37.4 210 0.8 2.0 -89060200.AHN 246 1.50 1996 13.2 -7.3 -34.8 6.1 7.3 3.2 2.6 1.6 18 0.2 -999.0 -06071100.DNR 1625 1.50 1192 10.1 -7.9 -33.7 7.6 6.9 12.2 16.2 27.0 79 0.3 1.7 -06053000.SGF 387 1.50 2988 15.0 -9.3 -34.7 6.5 6.9 4.0 2.7 12.8 27 0.4 0.6 -06052200.LBF 849 1.50 1420 8.2 -11.1 -41.1 7.7 8.1 14.8 15.2 22.6 199 0.5 1.3 -06042117.JAN 101 1.50 1486 13.4 -12.9 -37.5 6.5 6.7 6.4 17.4 11.7 58 0.7 0.6 -03091800.INL 361 1.50 1863 13.7 -13.5 -38.9 7.5 7.0 15.3 24.7 29.2 384 1.5 -999.0 -03031700.MHX 11 1.50 1241 12.1 -13.1 -39.9 5.4 7.3 11.5 19.1 32.8 37 0.5 0.7 -02072500.LCH 10 1.50 5453 20.2 -7.3 -31.7 5.9 6.4 5.5 8.5 11.3 66 0.6 0.6 -02042200.ILN 317 1.50 623 10.3 -13.3 -37.4 6.8 6.6 31.2 36.0 43.5 525 0.4 2.1 -01062600.RNK 654 1.50 1653 11.1 -11.9 -39.7 5.7 7.5 8.3 13.7 30.3 88 0.4 2.1 -01062600.GSO 270 1.50 929 11.9 -11.7 -40.1 6.0 7.7 10.4 17.8 25.6 106 0.3 0.6 -00090200.SLC 1288 1.50 1641 9.1 -14.7 -41.9 8.4 7.4 20.1 16.1 24.8 101 0.9 1.7 -00051800.GSO 270 1.50 1767 11.9 -13.7 -40.9 6.5 7.4 7.6 16.4 31.1 124 0.7 1.6 -94062500.GSO 277 1.25 2334 15.9 -5.4 -31.3 5.6 6.9 12.9 9.9 5.2 103 0.2 0.6 -90041400.OUN 357 1.25 1408 10.8 -18.2 -46.0 7.9 7.7 17.5 23.5 33.0 146 1.2 2.0 -06072800.FGZ 2192 1.25 3100 13.5 -5.3 -30.7 8.1 6.7 14.1 22.7 18.3 193 1.0 2.7 -06072700.ILX 178 1.25 4385 20.7 -4.3 -31.7 5.7 7.2 14.7 12.7 19.1 318 0.6 0.6 -06070400.GRB 214 1.25 1881 14.1 -10.1 -36.5 6.6 7.1 14.0 22.8 40.7 132 0.9 0.6 -06061200.DNR 1625 1.25 942 6.0 -9.9 -38.5 9.4 7.8 7.4 17.1 22.2 130 0.4 0.6 -06060312.LBF 849 1.25 988 7.7 -11.9 -40.5 9.0 7.9 10.8 19.5 17.8 699 0.5 1.0 -06060300.ILX 178 1.25 1218 10.0 -14.5 -42.9 5.9 7.8 14.1 20.0 22.7 87 0.5 1.5 -06052600.FFC 244 1.25 1711 12.1 -12.1 -36.7 7.1 6.6 4.1 8.7 3.3 46 0.4 1.1 -06052000.BOI 874 1.25 1070 7.4 -13.5 -39.9 8.4 7.2 9.2 15.9 25.9 95 0.5 0.8 -06051500.TLH 53 1.25 1279 10.8 -13.7 -41.5 7.1 7.6 18.5 24.7 23.2 104 0.8 1.7 -05100123.LMN 317 1.25 2672 15.9 -9.9 -36.7 7.0 7.2 14.1 21.4 26.0 276 1.3 -999.0 -05090600.LBF 849 1.25 2252 13.0 -9.1 -33.7 8.1 6.7 6.3 14.1 27.2 28 0.7 2.9 -05030700.MAF 872 1.25 547 8.0 -16.7 -46.3 6.9 8.2 16.9 34.3 40.4 177 0.4 1.9 -04100400.AMA 1099 1.25 1672 10.5 -13.5 -40.1 7.6 7.2 10.7 23.5 31.9 28 1.1 2.4 -04032700.RAP 1029 1.25 2052 8.5 -15.5 -43.5 8.0 7.7 12.6 19.0 17.5 161 1.3 1.5 -03090800.PHX 384 1.25 2268 12.1 -6.7 -35.1 6.7 7.5 8.2 10.7 16.8 90 0.3 1.2 -03090800.FGZ 2192 1.25 663 8.3 -8.3 -35.1 7.7 7.1 11.2 15.0 17.0 130 0.2 1.2 -03090300.NKX 128 1.25 940 10.8 -5.9 -32.3 6.6 7.0 4.2 7.0 5.9 9 0.1 0.7 -03040500.ILN 317 1.25 1856 10.4 -15.7 -44.1 6.5 7.8 17.7 20.8 25.6 233 1.0 2.2 -02041200.TOP 270 1.25 1084 9.8 -16.5 -44.3 7.1 7.7 16.2 9.4 27.2 99 0.3 1.6 -00072000.LZK 165 1.25 3973 16.4 -6.7 -30.7 6.8 6.3 8.3 12.6 12.7 102 0.7 1.1 -00071100.DDC 790 1.25 4707 16.4 -4.1 -31.5 6.8 7.2 6.0 4.6 8.7 136 0.4 2.6 -00030400.BMX 178 1.25 1311 11.4 -14.9 -42.9 5.7 7.7 21.1 42.9 54.3 205 0.8 1.4 -99061200.ILN 317 1.00 3299 14.7 -8.3 -35.5 5.8 7.3 8.2 4.6 4.0 32 0.4 1.1 -98052200.BNA 180 1.00 3709 15.2 -10.7 -36.9 6.4 7.0 10.4 9.2 7.9 83 0.8 0.9 -97081800.FFC 244 1.00 3564 18.4 -6.1 -31.1 6.1 6.6 4.4 2.5 2.0 37 0.3 0.6 -97081700.PIT 373 1.00 3951 18.3 -7.9 -31.9 6.9 6.4 15.4 12.7 23.0 224 0.9 0.6 -97081700.DVN 229 1.00 5790 20.8 -8.3 -34.9 7.5 7.1 12.3 14.3 11.8 137 1.7 1.0 -93092500.OUN 381 1.00 2895 16.1 -6.7 -32.0 6.2 6.8 16.0 24.5 27.2 264 1.0 0.6 -91060500.CKL 140 1.00 3345 16.9 -7.5 -32.0 6.3 6.5 9.2 5.0 4.8 52 0.4 0.6 -91060500.AHN 246 1.00 3036 15.3 -8.1 -31.7 6.7 6.3 11.6 5.7 13.0 72 0.4 0.6 -90101800.GGG 124 1.00 1619 14.2 -10.6 -37.1 6.4 7.1 12.5 20.0 27.9 114 0.7 0.6 -90100800.GGG 124 1.00 2689 16.8 -6.0 -32.5 5.8 7.0 8.9 14.2 17.2 70 0.4 0.6 -90092900.MAF 873 1.00 1606 12.2 -8.0 -36.1 6.0 7.5 11.3 15.0 28.7 35 0.3 0.8 -90083000.GSO 277 1.00 3552 16.4 -9.3 -33.8 6.0 6.6 14.1 20.1 18.2 37 1.3 0.6 -90082300.HTS 246 1.00 707 15.2 -7.7 -33.3 6.2 6.8 3.6 7.0 8.5 -4 0.1 0.6 -90082100.OUN 357 1.00 5290 19.2 -6.7 -31.0 6.9 6.4 6.2 8.3 3.4 38 0.7 0.6 -90081900.AMA 1095 1.00 2596 13.6 -7.9 -32.0 7.0 6.5 3.8 5.1 5.1 45 0.3 0.8 -90080200.MAF 873 1.00 1702 14.4 -6.2 -31.8 6.1 6.8 2.8 9.7 12.2 27 0.2 0.6 -90072600.GGW 696 1.00 1514 10.2 -10.6 -37.7 7.0 7.3 7.9 15.6 16.6 55 0.5 1.8 -90072500.DDC 791 1.00 1703 11.9 -8.0 -34.0 6.8 7.0 10.1 14.0 17.5 208 0.4 1.4 -90072200.TBW 13 1.00 3409 17.8 -5.7 -31.9 6.0 6.9 3.6 4.6 7.8 35 0.3 0.6 -90072000.DEN 1611 1.00 1698 11.7 -7.2 -32.2 7.4 6.7 14.0 16.1 20.8 182 0.4 2.1 -90071800.AMA 1095 1.00 1482 11.4 -6.5 -33.5 6.7 7.2 8.4 14.8 26.1 98 0.3 1.1 -90071100.GSO 277 1.00 3487 15.2 -6.6 -32.6 5.9 6.9 7.5 3.5 9.1 38 0.3 0.6 -90070900.GSO 277 1.00 4051 17.6 -5.3 -32.6 5.6 7.2 6.1 10.2 10.5 73 0.4 0.8 -90062400.OUN 357 1.00 1571 11.9 -10.8 -34.1 8.2 6.3 14.1 26.8 24.9 186 1.1 1.9 -90062300.HTS 246 1.00 1346 14.5 -8.5 -33.5 5.8 6.6 19.1 27.1 36.9 231 0.6 0.6 -90061000.GSO 277 1.00 2409 15.3 -8.8 -32.8 6.1 6.4 11.1 9.7 14.5 145 0.4 0.6 -90050400.CKL 140 1.00 1534 14.0 -10.6 -33.4 6.4 6.0 10.8 20.1 25.8 141 0.7 0.6 -89082700.DDC 791 1.00 4549 16.9 -7.4 -32.1 7.6 6.6 1.4 11.3 24.3 11 0.9 2.1 -89082000.UMN 438 1.00 3524 17.3 -6.0 -31.1 6.2 6.6 13.6 20.6 14.9 350 0.9 0.8 -89080600.OUN 357 1.00 3439 16.3 -5.4 -31.1 6.8 6.8 9.7 10.2 12.1 101 0.4 0.8 -89073100.GTF 1118 1.00 1858 9.5 -9.3 -36.7 8.9 7.4 10.3 10.8 21.7 106 0.4 1.2 -89072800.DAY 298 1.00 2617 16.4 -7.8 -34.6 5.7 7.2 7.5 13.5 11.3 83 0.5 0.6 -89072400.VCT 33 1.00 2953 14.8 -9.6 -37.2 6.2 7.4 9.5 7.7 13.3 120 0.4 0.6 -89071200.TOP 268 1.00 3182 16.6 -8.1 -30.9 7.6 6.1 13.2 12.6 8.2 157 0.8 1.6 -89070600.OUN 357 1.00 1373 12.9 -6.0 -34.0 6.2 7.4 11.3 6.0 12.2 64 0.1 0.6 -89062900.AMA 1095 1.00 2035 12.6 -8.2 -31.3 8.6 6.2 13.0 14.8 26.0 165 0.6 2.3 -89062800.HTS 246 1.00 3659 17.6 -8.0 -31.7 5.8 6.4 7.4 15.4 21.4 62 0.8 0.6 -89061900.CKL 140 1.00 3363 16.7 -9.6 -36.6 6.4 7.3 12.2 14.5 12.2 103 1.0 0.6 -89061600.TBW 13 1.00 3463 16.4 -7.6 -32.3 5.7 6.5 5.9 10.2 6.4 36 0.5 0.6 -89061400.JAN 91 1.00 3274 16.0 -11.5 -35.2 7.1 6.4 9.4 11.3 8.2 57 1.0 1.0 -89061200.JAN 91 1.00 3616 17.7 -9.1 -31.2 6.5 5.9 7.5 15.3 5.8 84 1.1 0.6 -89060500.1M1 172 1.00 2493 15.8 -8.2 -35.8 6.0 7.4 10.3 14.7 13.0 19 0.6 0.6 -06092900.FFC 244 1.00 705 10.8 -11.1 -40.1 4.6 7.9 18.9 19.1 33.4 85 0.2 0.6 -06091200.ILX 178 1.00 1642 13.6 -11.1 -38.9 6.4 7.5 8.6 12.9 23.9 56 0.5 0.6 -06090800.LBF 849 1.00 880 7.9 -14.1 -40.7 7.5 7.3 6.9 11.1 19.9 20 0.3 0.9 -06090800.ABR 396 1.00 1406 9.5 -14.3 -42.3 7.5 7.7 10.6 9.4 9.1 163 0.4 1.7 -06081000.TUS 779 1.00 1913 13.4 -6.3 -29.9 7.3 6.3 1.2 3.1 6.2 12 0.2 0.6 -06080100.PIT 357 1.00 3456 18.6 -4.5 -30.1 5.8 6.8 10.1 12.7 7.9 104 0.5 0.6 -06072800.OAX 350 1.00 2714 15.6 -5.3 -34.3 6.0 7.7 9.3 16.8 22.8 92 0.5 0.6 -06072800.ABR 396 1.00 1956 12.7 -6.1 -34.7 6.4 7.6 16.1 23.5 29.4 149 0.5 1.4 -06072700.RAP 1029 1.00 694 8.7 -8.7 -33.7 8.3 6.7 13.4 16.3 21.8 157 0.2 0.9 -06072300.ABQ 1620 1.00 1267 9.6 -4.9 -32.1 7.8 7.2 2.8 5.7 11.2 -9 0.1 1.0 -06072200.RNK 654 1.00 3249 16.5 -6.1 -31.1 6.0 6.6 7.2 7.0 9.1 100 0.3 0.6 -06072000.RNK 654 1.00 2160 14.2 -8.5 -31.1 5.9 6.1 11.1 9.1 3.0 113 0.3 1.0 -06071800.DNR 1625 1.00 1197 9.1 -6.9 -32.3 8.0 6.9 3.5 7.7 6.2 83 0.1 1.1 -06071300.BIS 506 1.00 966 9.0 -8.7 -35.3 8.1 7.1 5.9 7.7 14.5 108 0.1 0.7 -06070500.GSO 270 1.00 2335 15.2 -7.3 -33.1 6.1 6.8 7.6 9.6 6.1 96 0.3 0.6 -06070300.IAD 93 1.00 3195 14.8 -9.3 -36.5 5.9 7.3 10.7 10.7 13.6 60 0.6 0.9 -06070200.LBF 849 1.00 2554 12.2 -8.5 -35.5 8.0 7.3 17.1 20.5 17.9 223 1.0 2.0 -06070200.FWD 171 1.00 1806 12.8 -9.9 -36.5 7.2 7.2 1.6 6.1 11.2 20 0.3 0.6 -06070200.FFC 244 1.00 1552 11.2 -9.7 -38.3 6.3 7.7 1.2 6.5 9.5 4 0.2 0.9 -06062900.TOP 270 1.00 959 8.5 -12.3 -40.9 7.1 7.8 8.1 12.7 14.7 120 0.3 1.0 -06062900.PIT 357 1.00 925 10.9 -13.7 -38.3 6.4 6.7 7.1 21.3 35.7 17 0.5 1.6 -06062800.GRB 214 1.00 1049 9.4 -15.5 -44.5 6.1 8.0 8.1 13.8 20.6 34 0.4 1.6 -06062700.FFC 244 1.00 2376 15.4 -6.9 -33.5 5.6 7.0 9.3 12.6 21.6 23 0.4 0.6 -06062300.DDC 790 1.00 987 11.0 -11.1 -33.3 7.2 6.0 9.3 17.7 17.5 78 0.4 1.3 -06062300.BNA 210 1.00 3023 15.6 -10.1 -34.7 7.3 6.6 8.0 10.6 3.6 71 0.8 0.6 -06062300.BMX 178 1.00 1595 12.5 -7.1 -34.3 6.2 7.2 1.9 5.1 4.3 -10 0.1 0.6 -06062200.JAN 101 1.00 2595 15.3 -8.7 -34.7 7.0 7.0 4.6 3.0 2.5 -15 0.4 0.6 -06062100.BNA 210 1.00 2387 14.1 -9.3 -35.3 6.8 6.9 6.8 6.7 3.3 43 0.3 0.6 -06061900.GRB 214 1.00 2397 14.0 -11.7 -38.1 6.2 7.2 12.4 15.9 20.9 74 0.9 1.9 -06061200.BNA 210 1.00 1539 13.6 -6.7 -34.3 5.6 7.4 9.1 15.2 7.0 107 0.3 0.6 -06060800.LBF 849 1.00 2368 10.8 -6.9 -36.5 7.7 7.9 11.2 20.5 22.3 244 0.7 1.7 -06060712.RAP 1029 1.00 1110 7.9 -10.3 -38.1 8.7 7.6 9.9 12.3 19.2 131 0.3 1.3 -06060700.SHV 79 1.00 2252 14.6 -10.3 -34.3 7.4 6.4 15.1 25.4 14.5 164 1.4 0.6 -06060500.FFC 244 1.00 1475 11.0 -12.5 -39.5 5.9 7.4 5.7 11.7 22.4 18 0.3 2.1 -06060400.ILN 317 1.00 1032 8.3 -18.1 -46.9 6.5 8.0 6.7 8.5 11.1 35 0.3 1.2 -06060300.GRB 214 1.00 1314 8.8 -18.9 -45.5 7.1 7.4 12.0 16.3 19.5 77 0.7 1.6 -06060200.BNA 210 1.00 2055 14.2 -7.9 -34.3 5.4 7.1 8.6 5.5 12.6 -2 0.2 0.6 -06053100.GGW 700 1.00 570 5.6 -21.1 -50.3 7.4 8.3 2.8 5.0 8.1 30 0.2 0.9 -06052700.JAX 9 1.00 2879 15.0 -9.9 -36.5 6.1 7.2 11.0 13.7 13.1 117 0.8 0.8 -06052700.BIS 506 1.00 2274 9.4 -11.9 -40.3 8.5 7.7 20.2 22.0 21.3 198 1.3 1.3 -06052600.JAX 9 1.00 1856 13.3 -10.7 -37.3 6.6 7.2 10.5 15.3 20.8 70 0.6 0.6 -06052600.GSO 270 1.00 1743 11.9 -10.1 -36.3 6.1 7.0 8.4 14.4 11.4 82 0.4 0.8 -06052600.AMA 1099 1.00 1911 7.9 -11.3 -38.3 9.9 7.3 11.8 16.9 12.6 262 0.9 0.7 -06052300.RAP 1029 1.00 2536 9.6 -10.3 -39.5 8.5 7.9 5.6 9.7 18.1 43 0.6 1.3 -06051800.IAD 93 1.00 1009 8.4 -20.5 -45.9 6.7 7.2 11.9 16.0 20.3 66 0.6 1.3 -06051600.DTX 329 1.00 519 8.7 -20.5 -49.7 6.1 8.2 7.2 5.0 17.9 -7 0.1 0.7 -06041400.PIT 357 1.00 390 6.2 -20.1 -48.7 7.0 8.1 18.8 18.6 40.0 220 0.3 0.9 -06041400.BUF 215 1.00 383 6.2 -23.3 -49.9 7.6 7.6 21.6 26.8 55.7 237 0.5 1.4 -06011200.GSO 270 1.00 1374 9.5 -19.1 -46.5 7.5 7.7 21.9 15.6 28.9 253 0.8 2.5 -06010300.ILN 317 1.00 791 9.0 -19.3 -46.1 7.5 7.5 7.8 16.0 23.8 140 0.5 1.4 -05092900.FWD 171 1.00 1553 12.7 -5.9 -29.7 6.4 6.3 8.5 10.1 13.0 39 0.2 0.6 -05082700.EPZ 1252 1.00 2162 11.1 -6.5 -31.9 8.5 6.8 4.0 4.9 6.7 21 0.2 1.0 -05081800.LMN 317 1.00 3655 17.7 -4.1 -30.3 6.0 6.8 13.3 22.3 17.3 221 0.9 0.6 -05081700.GGW 700 1.00 1042 9.2 -11.1 -36.7 7.8 6.9 16.7 27.6 40.5 265 0.6 1.7 -05081100.GGW 700 1.00 805 10.1 -13.7 -37.9 7.4 6.5 15.6 30.5 38.9 170 0.6 2.1 -05050600.EPZ 1252 1.00 1672 8.0 -12.7 -40.3 8.6 7.5 15.0 27.7 28.8 178 1.3 1.2 -05050412.TBW 13 1.00 1839 14.1 -13.5 -39.3 7.3 7.0 10.0 15.8 33.3 187 0.9 1.0 -05030400.SGF 387 1.00 823 5.9 -25.9 -52.1 7.1 7.5 13.0 24.2 27.9 151 1.0 0.7 -04082800.OUN 357 1.00 4225 16.0 -7.1 -32.5 7.4 6.7 7.0 3.8 3.0 101 0.5 1.5 -04081700.TUS 779 1.00 2027 13.1 -8.9 -34.5 7.1 6.9 8.8 13.2 13.3 96 0.5 1.0 -04080900.TOP 270 1.00 2676 14.3 -11.5 -36.3 7.4 6.7 5.9 11.9 15.6 82 0.9 0.9 -04051200.AMA 1099 1.00 1922 9.7 -11.5 -38.7 8.0 7.4 19.1 15.0 8.4 282 0.7 1.6 -04051000.FFC 244 1.00 2006 11.4 -11.1 -38.3 5.4 7.4 4.0 4.7 11.0 -15 0.2 1.9 -04032100.FWD 171 1.00 2648 13.1 -15.5 -42.9 8.2 7.5 4.9 12.9 20.8 29 1.4 2.8 -04031500.DRT 313 1.00 1498 11.6 -15.5 -43.1 7.0 7.6 6.6 16.8 24.5 123 0.8 1.4 -03111712.TOP 270 1.00 1641 11.5 -17.3 -45.7 7.3 7.9 17.8 25.6 32.6 329 1.4 2.7 -03090900.TUS 779 1.00 2363 11.5 -8.3 -34.9 7.3 7.1 2.8 7.9 11.8 12 0.3 1.1 -03060900.RNK 654 1.00 2965 15.0 -9.1 -36.7 6.2 7.4 18.9 24.1 29.2 134 1.3 1.2 -03060200.DDC 790 1.00 1960 11.1 -9.5 -35.3 7.9 6.9 11.9 17.5 20.6 222 0.7 2.0 -03052700.ABQ 1620 1.00 713 7.1 -9.9 -37.1 8.3 7.3 3.1 14.7 20.6 12 0.2 0.6 -03052600.TFX 1131 1.00 994 8.3 -10.9 -37.7 8.0 7.3 9.1 16.0 15.9 59 0.4 1.3 -03051800.XMR 3 1.00 3602 16.0 -9.5 -35.9 7.0 7.1 5.6 8.6 10.7 -7 0.7 0.9 -03051800.TBW 13 1.00 3839 16.1 -8.7 -36.5 6.5 7.5 6.2 5.7 11.9 3 0.5 1.1 -03051200.JAX 9 1.00 3060 15.9 -7.9 -33.5 6.9 6.8 10.1 13.2 20.0 48 0.7 -999.0 -03051100.MHX 11 1.00 3585 16.0 -9.3 -37.7 7.3 7.6 11.9 16.2 15.0 104 1.3 0.9 -03050312.BMX 178 1.00 1402 9.7 -16.1 -41.9 7.5 7.1 7.9 13.8 38.5 72 0.6 1.8 -03050212.BNA 210 1.00 1865 10.3 -15.3 -44.9 7.0 8.2 12.1 13.0 18.0 55 0.7 2.2 -03050100.FFC 244 1.00 1429 11.1 -13.5 -40.1 6.6 7.2 1.0 6.9 6.4 5 0.2 1.6 -03043000.OAX 350 1.00 1064 8.9 -16.3 -44.3 7.4 7.8 18.4 29.1 32.0 353 0.9 1.9 -03042800.MFL 5 1.00 2735 16.7 -10.7 -35.7 6.4 6.7 12.3 11.7 25.5 83 0.7 0.6 -03042400.SHV 79 1.00 1456 13.1 -12.9 -38.9 7.2 7.1 15.2 26.1 36.8 278 1.1 0.6 -03041800.DNR 1625 1.00 1063 5.3 -18.1 -47.9 8.6 8.3 5.9 11.0 43.9 41 0.5 0.6 -03040500.LZK 78 1.00 1751 10.7 -14.9 -42.5 6.6 7.6 12.6 27.4 33.1 65 1.2 2.3 -03032100.DTX 329 1.00 1602 8.7 -21.3 -48.3 6.6 7.7 7.7 13.3 27.1 80 0.8 1.1 -03032000.ILX 178 1.00 713 8.0 -21.9 -36.7 6.9 4.2 5.4 3.5 11.4 -26 0.2 1.4 -03031500.TBW 13 1.00 3398 15.9 -13.7 -38.1 7.0 6.6 3.9 18.6 27.3 32 1.9 0.9 -02080400.SGF 387 1.00 4328 17.7 -5.5 -34.5 6.5 7.7 3.8 1.1 7.6 -11 0.3 1.5 -02080300.BMX 178 1.00 5098 18.4 -6.5 -35.1 5.8 7.6 11.5 9.6 10.8 33 0.6 1.4 -02072900.AMA 1099 1.00 3610 13.6 -6.5 -32.3 7.8 6.9 13.6 12.5 12.2 164 0.7 2.0 -02072700.RAP 1029 1.00 1688 9.4 -9.3 -37.5 7.5 7.6 14.5 21.0 28.6 139 0.7 1.3 -02072600.TOP 270 1.00 3390 13.8 -5.9 -33.9 7.5 7.4 11.9 16.9 16.9 168 0.8 2.2 -02072000.JAN 133 1.00 3501 17.6 -6.7 -31.9 6.1 6.7 5.7 6.1 7.9 58 0.3 0.6 -02070300.LBF 849 1.00 3367 14.1 -5.9 -35.3 7.5 7.8 11.5 14.0 6.2 158 0.7 1.2 -02070200.FFC 244 1.00 4268 16.3 -9.7 -36.1 6.6 7.1 7.3 7.8 4.3 46 0.7 0.6 -02060700.ABR 396 1.00 2252 9.0 -14.7 -43.9 8.1 8.1 8.2 12.4 18.1 118 0.9 1.2 -02060400.CHS 15 1.00 3170 15.2 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.8 0.6 -02052700.AMA 1099 1.00 2332 9.7 -11.1 -37.9 7.2 7.3 13.0 14.5 11.8 198 0.7 1.4 -02051800.CRP 13 1.00 5902 20.3 -10.5 -36.9 7.4 7.1 10.7 22.6 23.2 86 3.4 1.6 -02042300.OAX 350 1.00 614 6.4 -23.3 -46.3 7.9 6.5 15.2 26.3 36.6 133 0.8 1.4 -02012400.LZK 78 1.00 1343 13.1 -12.7 -41.1 6.6 7.8 20.2 32.5 40.7 290 0.9 0.6 -01062600.LBF 849 1.00 3931 12.7 -8.1 -35.3 8.1 7.3 8.1 9.3 8.1 119 0.7 1.5 -01062100.ABR 396 1.00 1118 8.1 -19.3 -47.7 7.0 7.9 3.6 4.2 12.4 14 0.3 1.3 -01061900.JAX 9 1.00 2584 17.2 -9.5 -35.5 6.1 7.0 5.0 4.8 8.3 13 0.3 0.6 -00080700.TOP 270 1.00 4476 17.3 -7.5 -33.1 7.2 6.7 11.7 17.8 22.9 72 1.4 1.8 -00072900.ILN 317 1.00 2735 14.3 -11.5 -37.7 6.7 7.1 8.0 13.4 21.0 68 0.9 0.6 -00072900.CHS 15 1.00 2462 16.1 -7.5 -34.9 5.6 7.3 3.3 9.3 13.2 4 0.3 0.6 -00072800.TOP 270 1.00 3666 15.3 -10.3 -35.3 7.6 6.8 9.1 22.0 26.4 115 2.1 2.6 -00072800.LBF 849 1.00 5581 17.1 -7.7 -35.5 8.1 7.5 9.6 25.0 21.1 187 2.8 3.1 -00072700.JAN 101 1.00 2066 12.5 -10.7 -35.7 6.4 6.7 4.2 8.0 8.4 -50 0.3 1.0 -00072300.OTX 728 1.00 2088 9.0 -12.3 -42.7 8.2 8.3 7.8 17.2 21.1 43 0.9 1.2 -00071900.GYX 125 1.00 997 11.4 -13.3 -37.7 6.0 6.6 18.8 27.0 36.1 107 0.6 1.0 -00071700.TOP 270 1.00 3927 15.9 -8.7 -31.7 7.9 6.1 14.5 8.9 14.1 198 0.8 2.4 -00071500.SHV 79 1.00 4004 17.2 -5.9 -31.1 6.0 6.7 6.2 4.6 8.6 46 0.3 0.6 -00071400.GRB 214 1.00 1743 12.0 -12.3 -37.9 6.9 6.9 13.4 21.5 42.9 195 0.9 1.7 -00071200.DDC 790 1.00 2941 14.4 -5.5 -30.7 7.2 6.7 10.8 11.3 11.7 196 0.4 1.4 -00070700.RAP 966 1.00 4065 14.2 -7.7 -35.3 8.6 7.3 10.8 29.4 33.3 111 2.3 2.1 -00070400.DDC 790 1.00 5142 18.1 -7.1 -30.7 7.6 6.4 11.4 9.7 19.2 114 0.9 2.4 -00070300.OAX 350 1.00 4633 18.5 -6.3 -32.3 6.9 6.9 9.9 10.6 19.6 133 0.7 1.9 -00070300.DDC 790 1.00 4558 17.2 -5.9 -30.9 7.5 6.7 11.7 13.6 22.7 66 0.9 2.4 -00070200.RAP 966 1.00 5621 15.6 -9.7 -36.3 8.7 7.3 15.9 21.5 22.7 263 3.3 2.2 -00070200.DDC 790 1.00 3566 16.2 -5.7 -34.7 6.6 7.7 5.5 14.2 21.9 38 0.6 1.3 -00063000.PIT 373 1.00 1086 9.9 -15.9 -40.5 5.5 6.8 8.1 22.0 37.9 77 0.5 1.8 -00062600.TOP 270 1.00 4052 17.8 -8.9 -32.7 7.6 6.4 2.4 1.3 23.9 26 0.6 2.3 -00062600.DDC 790 1.00 2618 13.5 -6.1 -32.3 6.7 6.9 14.3 15.8 16.9 51 0.5 1.6 -00062300.MHX 11 1.00 4167 18.6 -8.7 -34.1 6.1 6.8 9.7 6.0 6.1 89 0.5 0.6 -00062100.TBW 13 1.00 3180 17.1 -8.5 -32.1 6.4 6.4 8.9 12.2 19.0 49 0.7 0.6 -00060200.TOP 270 1.00 3517 16.1 -9.3 -34.5 6.9 6.7 4.9 10.4 16.3 39 0.8 0.8 -00060200.DVN 229 1.00 3451 16.4 -9.3 -35.5 7.3 7.0 14.2 14.1 11.0 175 1.1 0.6 -00060100.ILX 178 1.00 3208 16.1 -9.1 -37.7 7.0 7.7 20.7 17.9 15.6 163 1.2 1.8 -00053000.LBF 849 1.00 2258 9.9 -9.7 -37.9 9.2 7.6 16.9 27.2 31.9 294 1.4 1.1 -00051400.TLH 21 1.00 3542 15.9 -9.9 -37.7 6.9 7.5 5.4 4.2 4.2 -4 0.5 1.0 -00021800.JAN 101 0.88 1866 12.5 -14.9 -43.1 6.7 7.8 16.2 27.5 38.9 270 1.5 0.7 -00061100.DDC 790 0.88 3471 14.3 -7.9 -33.9 6.9 6.9 14.0 11.0 20.2 53 0.7 2.4 -00061800.RAP 966 0.88 1396 7.4 -18.9 -44.5 7.1 7.2 7.4 14.0 34.9 270 0.7 1.4 -00070600.DDC 790 0.88 2581 12.3 -7.5 -31.7 8.5 6.4 10.7 9.4 10.0 97 0.5 1.8 -00072800.BMX 178 0.88 2147 13.2 -9.5 -36.3 6.2 7.2 6.0 8.0 11.4 35 0.3 0.7 -00080200.DVN 229 0.88 4183 16.6 -9.7 -38.1 6.6 7.6 13.3 11.2 16.4 169 1.0 1.1 -00080300.PIT 373 0.88 2780 14.9 -9.7 -37.1 6.2 7.3 9.1 15.5 29.2 81 0.8 0.6 -00080400.BNA 180 0.88 3453 16.3 -9.9 -35.1 6.8 6.8 9.1 10.9 16.0 83 0.8 0.6 -00080500.LZK 165 0.88 3872 16.1 -6.3 -33.3 5.6 7.3 7.3 9.4 14.6 6 0.4 0.8 -00080700.DTX 329 0.88 4231 19.4 -7.3 -31.9 6.0 6.6 10.6 16.6 31.6 78 1.0 0.6 -00090300.OAX 350 0.88 3099 12.6 -10.1 -36.3 8.7 7.0 9.5 16.9 21.6 126 1.4 1.4 -01062200.DVN 229 0.88 1285 10.3 -18.1 -44.9 6.5 7.5 8.7 10.8 11.8 66 0.4 1.0 -01062600.CRP 13 0.88 3837 16.6 -8.5 -35.7 6.4 7.3 7.1 4.0 8.9 53 0.5 0.6 -02031000.GSO 270 0.88 819 11.0 -15.3 -41.3 5.8 7.2 19.8 24.6 29.7 236 0.5 1.2 -02052900.OAX 350 0.88 2754 13.0 -13.3 -40.9 7.1 7.5 10.0 7.5 7.0 127 0.6 2.6 -03031400.TLH 53 0.88 2141 11.6 -13.1 -43.3 6.3 8.3 5.7 10.5 9.0 39 0.5 1.1 -03042912.TOP 270 0.88 1617 10.6 -16.9 -43.9 7.8 7.5 11.0 16.7 22.5 238 0.9 2.8 -03050400.BIS 506 0.88 1467 8.2 -18.7 -47.3 7.4 8.0 8.8 15.4 16.1 86 0.8 1.6 -03060300.JAX 9 0.88 3513 16.1 -10.1 -36.5 7.6 7.1 11.4 11.1 10.3 111 1.0 0.6 -03060600.ABR 396 0.88 888 8.1 -19.9 -46.5 6.8 7.5 9.2 17.3 14.2 47 0.5 1.5 -03061600.TOP 270 0.88 1944 12.4 -11.9 -38.7 6.4 7.3 5.8 0.8 4.2 3 0.3 1.0 -03062000.GGW 700 0.88 1032 9.2 -9.7 -37.5 8.1 7.5 8.3 9.8 17.1 76 0.2 1.3 -03101712.JAN 101 0.88 1891 12.8 -11.5 -43.1 6.3 8.6 16.9 25.4 33.9 246 1.1 1.2 -03102600.CRP 13 0.88 3408 17.9 -9.9 -35.3 6.3 6.8 9.8 15.2 34.5 17 1.0 0.6 -03111800.OAX 350 0.88 957 10.0 -18.3 -43.3 6.8 6.9 20.0 41.2 58.6 88 0.8 2.5 -04040900.AMA 1099 0.88 1515 8.2 -16.7 -45.5 7.0 8.0 14.7 17.9 23.0 139 0.8 1.6 -04081800.PHX 384 0.88 1709 10.5 -9.1 -35.5 7.3 7.1 6.0 4.8 9.2 15 0.2 0.8 -04082700.ABR 396 0.88 1433 10.2 -15.1 -41.5 6.7 7.3 5.3 14.4 40.5 28 0.5 1.5 -04091900.LCH 10 0.88 2433 15.9 -6.9 -31.9 5.8 6.6 7.7 4.4 15.6 6 0.2 0.6 -04092000.OAK 3 0.88 242 7.3 -17.9 -36.7 5.5 5.2 6.5 27.4 30.4 56 0.2 0.7 -04100400.GSO 270 0.88 1385 13.2 -14.9 -40.1 6.5 6.9 10.4 15.2 26.8 101 0.6 1.4 -05081300.MAF 872 0.88 1568 12.8 -6.3 -31.7 6.5 6.8 6.9 11.8 13.7 82 0.2 0.6 -06013012.JAN 101 0.88 1058 10.0 -20.9 -45.9 7.1 7.0 18.9 38.7 46.0 71 1.1 2.6 -06032100.OUN 357 0.88 579 5.4 -25.5 -40.9 7.4 4.4 5.7 16.6 26.7 53 0.5 0.9 -06040700.FWD 171 0.88 2831 12.5 -12.5 -42.1 6.2 8.1 20.1 33.5 41.5 40 1.8 2.8 -06041200.TOP 270 0.88 726 8.4 -14.3 -42.9 7.0 7.9 23.1 33.2 37.2 232 0.5 2.0 -06043000.OTX 728 0.88 499 6.4 -17.9 -44.3 7.3 7.4 8.3 17.3 23.3 75 0.3 0.8 -89061200.AMA 1095 0.88 3301 13.2 -11.7 -39.3 8.7 7.5 9.2 12.9 25.2 167 1.4 2.3 -89062600.UMN 438 0.88 3812 16.2 -6.9 -33.3 6.3 7.0 2.0 0.7 10.8 -14 0.4 0.6 -89062700.DEN 1611 0.88 931 8.6 -11.1 -38.5 7.6 7.5 10.8 14.3 14.3 122 0.3 1.8 -89072700.AHN 246 0.88 3996 17.5 -6.9 -33.6 6.5 7.1 7.1 3.5 6.8 66 0.4 0.6 -89082500.AHN 246 0.88 3533 16.9 -5.1 -30.7 6.1 6.8 2.7 3.3 8.1 5 0.3 0.6 -89082600.AHN 246 0.88 3463 17.1 -5.6 -31.0 5.8 6.7 4.0 11.3 8.6 41 0.4 0.6 -89082900.GGG 124 0.88 3979 18.5 -4.6 -29.9 6.0 6.7 1.6 4.1 2.2 3 0.3 0.6 -90071000.PIT 360 0.88 3362 16.6 -6.7 -31.4 6.3 6.6 14.3 19.7 14.7 124 0.9 0.6 -90073000.AMA 1095 0.88 943 12.2 -7.5 -32.1 6.3 6.5 8.4 12.7 18.1 14 0.2 0.6 -90091900.OUN 357 0.88 3878 18.0 -6.7 -31.3 6.2 6.6 12.1 11.9 20.5 119 0.6 0.6 -97010900.SIL 8 0.88 909 13.1 -13.6 -37.2 6.7 6.4 33.7 39.7 37.0 511 0.7 -999.0 -98062500.DDC 790 0.88 2667 11.9 -7.3 -34.1 8.7 7.2 12.4 25.1 34.7 224 1.2 1.4 -90052100.SIL 8 0.85 3505 16.6 -10.6 -35.6 6.7 6.7 10.9 8.4 13.0 70 0.7 0.6 -03052100.TBW 13 0.80 2941 15.8 -9.5 -35.9 6.2 7.1 7.1 2.7 5.4 27 0.4 0.6 -91051700.JAN 91 0.80 2890 15.5 -8.9 -36.0 6.5 7.3 0.6 1.1 7.8 1 0.4 0.6 -00022400.LZK 165 0.75 1590 10.6 -18.1 -45.7 7.0 7.7 17.2 25.0 34.2 270 1.3 2.5 -00050300.JAN 101 0.75 1438 12.8 -12.9 -38.5 5.9 7.0 13.9 12.8 7.2 120 0.4 0.6 -00052200.LZK 165 0.75 2062 12.1 -13.5 -44.1 6.2 8.4 17.7 22.6 32.5 162 1.1 1.4 -00061800.JAX 9 0.75 2677 15.7 -7.9 -34.1 5.7 7.0 7.9 6.0 10.5 61 0.3 0.6 -00061900.WAL 41 0.75 2940 17.4 -7.9 -33.5 6.3 6.9 11.6 11.3 9.5 134 0.5 0.6 -00062500.JAX 9 0.75 2442 15.6 -10.1 -34.9 6.2 6.6 9.3 9.4 21.8 104 0.5 0.6 -00062900.GRB 214 0.75 860 8.9 -18.9 -47.9 6.4 8.1 14.1 17.0 24.4 108 0.5 1.1 -00071300.DDC 790 0.75 3064 15.1 -3.7 -31.1 6.1 7.2 9.2 6.2 10.6 0 0.2 0.6 -00071300.FWD 196 0.75 3103 14.9 -5.7 -31.9 6.5 6.9 13.9 10.6 11.4 120 0.4 0.8 -00071800.JAN 101 0.75 3305 15.8 -5.5 -29.7 6.0 6.3 13.1 13.9 14.4 -56 0.5 0.6 -00071900.JAN 101 0.75 3841 17.3 -6.1 -31.7 6.1 6.8 5.7 7.5 6.9 32 0.3 0.6 -00072100.TBW 13 0.75 4845 18.9 -6.9 -31.9 6.4 6.6 7.4 7.0 10.7 56 0.5 0.9 -00072300.GSO 270 0.75 2443 16.5 -9.1 -32.3 5.7 6.1 6.6 20.6 22.2 88 0.9 0.6 -00072400.GGW 700 0.75 3240 10.9 -11.1 -40.3 8.5 7.9 12.5 26.1 22.5 54 2.1 1.4 -00080400.LCH 10 0.75 3045 15.7 -7.5 -32.7 5.6 6.7 4.7 2.8 12.8 28 0.3 0.6 -00090200.SHV 79 0.75 1896 12.1 -7.5 -32.5 7.0 6.6 5.2 3.2 2.0 15 0.2 0.7 -01062400.BIS 506 0.75 4781 13.7 -10.9 -38.3 9.0 7.4 15.0 18.7 27.1 249 2.8 1.7 -02030812.ILX 178 0.75 533 7.2 -19.7 -48.7 6.9 8.2 16.1 31.5 49.1 599 0.5 1.3 -02051500.PIT 357 0.75 521 5.9 -27.9 -45.7 7.9 5.1 17.3 14.7 14.3 74 0.4 1.1 -02060400.JAX 9 0.75 3128 15.3 -8.1 -33.3 6.5 6.7 0.3 3.7 6.5 15 0.4 0.6 -02062500.LBF 849 0.75 3690 11.7 -10.3 -37.1 9.2 7.2 5.0 7.2 9.1 45 0.7 1.3 -02072000.LZK 78 0.75 6551 21.6 -8.5 -32.7 6.9 6.6 8.7 10.2 6.8 145 1.3 0.9 -03031500.OTX 728 0.75 801 6.3 -26.3 -49.9 7.5 6.8 18.3 24.9 28.7 240 1.0 1.5 -03032000.SGF 387 0.75 909 7.6 -22.1 -40.1 6.7 5.1 18.2 10.5 8.6 205 0.4 1.4 -03040922.XMR 3 0.75 2570 15.5 -10.3 -37.3 5.6 7.3 12.7 31.0 38.3 34 1.3 0.6 -03042300.DNR 1625 0.75 1183 6.7 -16.1 -46.5 7.9 8.5 12.2 19.1 35.2 265 0.7 1.2 -03050100.DNR 1625 0.75 1011 6.7 -20.1 -46.3 8.0 7.4 12.5 33.5 27.3 108 1.1 1.2 -03050200.BMX 178 0.75 2216 12.4 -12.9 -40.7 6.6 7.5 4.6 6.7 7.6 9 0.4 0.7 -03052400.PIT 357 0.75 707 10.0 -16.7 -44.5 6.5 7.7 12.1 26.5 23.6 65 0.5 1.0 -03060700.MFL 5 0.75 3041 18.2 -6.7 -31.3 5.6 6.5 0.9 2.8 9.3 5 0.3 0.6 -03061000.JAX 53 0.75 2482 16.0 -8.7 -33.9 6.7 6.7 10.8 11.3 22.4 13 0.5 0.6 -03061222.XMR 3 0.75 2144 17.1 -7.9 -32.5 6.1 6.5 5.2 4.6 6.1 65 0.2 0.6 -03061500.SHV 79 0.75 2511 16.2 -9.9 -33.9 6.3 6.4 13.5 21.1 32.8 91 1.1 0.6 -03061900.TFX 1131 0.75 1802 8.6 -9.3 -37.5 8.2 7.6 13.1 10.8 13.4 178 0.4 1.0 -03062000.BOI 874 0.75 491 7.0 -12.5 -39.7 8.2 7.4 17.9 23.3 18.1 141 0.3 1.0 -03062100.RAP 1029 0.75 2338 11.9 -10.3 -36.1 7.2 7.0 15.0 8.1 14.4 137 0.4 2.4 -03062200.IAD 93 0.75 1215 10.5 -17.1 -38.3 5.8 5.9 9.3 15.1 9.7 79 0.5 1.1 -03090900.GJT 1475 0.75 996 6.8 -12.3 -39.5 9.1 7.4 8.5 17.7 28.1 199 0.5 0.7 -03090900.MAF 872 0.75 2389 12.1 -7.9 -36.1 7.0 7.6 12.1 18.1 17.8 222 0.7 2.2 -03091000.JAN 101 0.75 1929 15.0 -9.5 -35.3 6.0 6.9 8.1 10.8 22.1 83 0.4 0.6 -03111300.BUF 215 0.75 418 8.1 -20.5 -44.7 6.7 6.8 18.0 46.9 65.5 335 0.4 1.5 -04030500.LZK 78 0.75 745 12.4 -10.1 -37.1 5.8 7.2 27.8 39.6 53.2 468 0.4 0.6 -04051300.OAX 350 0.75 1193 10.5 -13.7 -40.5 6.9 7.3 16.7 24.2 28.7 133 0.7 2.2 -04051700.FFC 244 0.75 2077 12.2 -12.1 -39.3 6.4 7.4 2.9 2.0 11.6 0 0.3 0.8 -04052300.BUF 215 0.75 1807 13.8 -10.6 -36.5 5.8 7.0 18.8 22.4 24.0 239 0.8 0.6 -04081700.PHX 384 0.75 2729 12.6 -7.9 -35.3 7.1 7.3 6.2 8.0 6.2 60 0.4 1.3 -04081900.DDC 790 0.75 2146 11.7 -6.3 -34.7 6.2 7.5 10.2 4.3 11.0 15 0.2 0.7 -04081900.OTX 728 0.75 1929 9.8 -11.3 -38.9 7.4 7.4 6.2 9.9 15.1 43 0.4 1.5 -04082800.JAN 101 0.75 3714 18.0 -7.5 -33.7 6.4 7.0 1.0 2.6 3.6 12 0.4 0.6 -04082800.PIT 357 0.75 3258 18.3 -6.1 -31.3 5.6 6.7 10.4 7.8 6.8 106 0.3 0.6 -04092800.DNR 1625 0.75 698 7.9 -13.9 -38.7 7.1 6.8 12.4 17.7 21.0 112 0.3 1.0 -04100400.CHS 15 0.75 1850 15.3 -10.7 -36.1 6.0 6.9 13.4 22.1 32.7 81 0.9 0.6 -05022200.BMX 178 0.75 1749 11.8 -15.9 -43.5 6.8 7.6 19.0 26.1 36.8 174 1.4 1.2 -05030700.OAX 350 0.75 324 5.7 -21.9 -50.1 7.4 7.9 13.6 14.9 9.6 156 0.2 0.9 -05042612.JAN 101 0.75 993 9.2 -17.3 -43.3 6.9 7.2 15.7 27.2 35.7 336 0.8 2.2 -05050500.OTX 728 0.75 1601 7.7 -19.1 -46.9 7.3 7.8 8.5 15.7 22.0 35 0.9 1.4 -05082100.OAX 350 0.75 2617 15.5 -6.9 -34.3 6.0 7.3 15.0 14.8 30.9 159 0.5 0.6 -05082400.SHV 79 0.75 3397 16.6 -5.3 -30.5 6.1 6.8 11.1 9.2 4.4 72 0.3 0.6 -06011400.JAX 9 0.75 1223 12.1 -15.1 -42.3 6.5 7.5 19.7 19.6 26.7 233 0.7 0.7 -89052800.CKL 140 0.75 2098 15.4 -8.1 -34.6 6.2 7.1 8.0 11.8 13.5 43 0.4 0.6 -89060400.PAH 126 0.75 3338 16.4 -9.7 -37.6 5.8 7.5 15.5 14.2 14.7 90 0.9 0.6 -89060700.AHN 246 0.75 2402 14.2 -13.0 -38.1 6.6 6.8 2.7 12.3 18.6 37 0.8 0.6 -89061300.CKL 140 0.75 2677 16.1 -8.6 -32.8 6.1 6.4 11.5 15.9 7.3 102 0.7 0.6 -89061500.AHN 246 0.75 1717 14.7 -7.5 -31.3 5.5 6.3 11.8 10.0 9.8 91 0.2 0.6 -89061600.ACY 23 0.75 2243 16.5 -7.6 -34.5 5.9 7.2 19.5 18.8 19.1 217 0.6 0.6 -89062200.CKL 140 0.75 2986 16.1 -10.1 -37.3 6.7 7.3 6.8 10.0 8.5 76 0.7 0.6 -89062300.GRB 210 0.75 1729 14.6 -8.4 -34.6 6.2 7.0 10.0 10.7 10.8 139 0.3 -999.0 -89062300.OUN 357 0.75 3217 16.0 -7.1 -34.1 5.9 7.2 6.9 12.8 14.9 113 0.6 0.6 -89062700.PIT 360 0.75 2924 16.0 -9.1 -33.7 6.8 6.6 7.9 8.1 4.9 69 0.5 0.6 -89070800.AHN 246 0.75 2876 16.8 -6.5 -32.3 5.8 6.8 4.3 4.1 4.8 33 0.2 0.6 -89071100.DDC 791 0.75 1858 11.9 -8.1 -35.3 7.6 7.3 12.4 8.5 14.0 249 0.3 2.1 -89072900.SIL 8 0.75 4031 18.8 -6.8 -31.8 6.3 6.6 3.9 4.1 4.4 37 0.4 0.6 -89073000.PAH 126 0.75 3630 17.9 -7.0 -33.2 6.4 7.0 7.4 11.4 9.0 58 0.6 0.6 -89073100.TOP 268 0.75 2685 14.5 -6.4 -31.4 6.7 6.7 12.0 9.8 13.0 117 0.4 0.6 -89081200.GRB 210 0.75 1782 11.3 -14.8 -41.6 6.7 7.3 3.9 4.1 9.5 39 0.3 0.6 -89081900.HON 392 0.75 984 13.1 -7.6 -33.3 7.1 6.8 12.1 14.0 17.9 244 0.2 -999.0 -89102800.OUN 357 0.75 1679 12.0 -12.7 -39.4 6.8 7.3 8.3 10.1 27.1 115 0.4 1.0 -90033100.TBW 13 0.75 2515 14.8 -10.0 -38.4 5.6 7.7 12.0 14.0 15.0 135 0.6 0.6 -90042100.OUN 362 0.75 1915 12.4 -14.1 -40.9 6.5 7.3 13.1 25.3 31.9 138 1.3 1.7 -90042200.SEP 399 0.75 2775 13.3 -11.7 -40.8 6.5 7.9 8.1 10.2 20.8 98 0.7 1.0 -90042400.1M1 172 0.75 2374 12.8 -12.6 -40.0 6.7 7.5 6.6 14.0 8.3 56 0.9 0.9 -90052500.MAF 873 0.75 3262 13.1 -7.2 -34.0 7.9 7.2 12.4 22.0 30.6 97 1.3 1.8 -90060400.PIT 360 0.75 390 9.5 -12.5 -36.7 5.6 6.5 14.6 26.0 37.7 57 0.2 0.6 -90060700.TBW 13 0.75 3262 17.0 -8.6 -34.5 6.0 6.9 4.1 1.6 7.3 8 0.4 0.6 -90061000.AHN 246 0.75 2847 14.8 -8.2 -33.4 5.9 6.7 5.6 8.6 9.9 50 0.4 0.6 -90070300.SLI 8 0.75 3250 18.4 -5.7 -32.8 5.8 7.2 7.5 11.8 14.5 79 0.4 0.6 -90070800.TBW 13 0.75 5452 20.0 -8.1 -31.6 6.5 6.2 5.9 7.8 15.4 11 0.7 0.6 -90072200.CHS 13 0.75 3537 18.4 -7.5 -32.4 6.2 6.7 7.1 8.3 10.2 88 0.4 0.6 -90072200.PAH 126 0.75 2541 16.9 -5.6 -30.4 5.7 6.6 11.4 13.3 15.3 80 0.4 0.6 -90072700.DDC 791 0.75 3550 14.7 -7.0 -32.7 7.6 6.8 6.0 7.6 7.2 84 0.5 2.2 -90072800.TOP 268 0.75 3231 16.5 -7.8 -32.8 6.7 6.6 9.8 8.8 11.3 281 0.5 0.9 -90073100.JAN 91 0.75 2834 14.6 -7.3 -33.8 6.1 7.0 0.7 5.1 4.3 -3 0.3 0.6 -90080400.STC 315 0.75 2284 13.1 -12.5 -34.8 7.3 6.0 8.7 5.3 20.0 45 0.5 1.4 -90081400.ALB 86 0.75 1251 14.6 -7.6 -33.8 5.7 7.0 20.7 31.1 21.6 261 0.5 0.6 -90081400.MAF 873 0.75 1598 13.7 -7.1 -32.0 6.2 6.6 2.3 4.4 16.6 35 0.2 0.6 -90081700.CHS 13 0.75 3949 19.5 -6.9 -32.2 5.7 6.7 11.2 14.2 20.9 101 0.7 0.6 -90081900.DEN 1611 0.75 1982 11.7 -7.8 -35.3 7.6 7.4 6.4 10.2 22.1 25 0.3 1.7 -90082000.PIA 200 0.75 4350 19.3 -6.5 -31.2 6.2 6.5 9.4 12.0 9.9 67 0.7 0.6 -90082200.BNA 180 0.75 2619 15.5 -6.1 -32.3 6.1 6.9 8.7 9.1 12.7 -10 0.3 0.6 -90082300.GGG 124 0.75 3016 16.2 -5.9 -30.3 6.0 6.4 5.3 1.3 5.5 35 0.2 0.6 -90082500.OUN 357 0.75 2800 15.7 -6.4 -31.1 6.6 6.6 5.3 5.0 11.9 63 0.3 0.6 -90082500.OVN 400 0.75 3418 17.2 -7.1 -33.6 6.4 7.0 10.0 12.0 21.9 181 0.6 0.7 -90083000.ACY 23 0.75 2413 15.2 -9.3 -34.4 5.8 6.8 9.0 13.9 22.7 62 0.6 0.6 -90101700.MAF 873 0.75 2870 12.3 -12.5 -40.6 8.0 7.7 7.7 14.9 16.2 78 1.3 2.3 -91051700.TBW 13 0.75 3306 16.1 -7.5 -34.7 5.4 7.2 3.8 4.0 0.9 -5 0.3 0.6 -91060600.CKL 140 0.75 2864 16.3 -8.6 -33.4 6.4 6.6 6.2 8.9 11.4 21 0.5 0.6 -94062400.GGG 124 0.75 3754 18.0 -5.5 -30.6 6.3 6.6 8.2 11.0 14.2 98 0.5 0.6 -94062400.HTS 246 0.75 2798 16.5 -5.5 -30.1 5.3 6.5 4.7 8.5 15.0 39 0.2 0.6 -94070200.LCH 5 0.75 2754 17.0 -6.8 -32.4 6.4 6.8 12.4 10.7 11.0 84 0.4 0.6 -97061700.BMX 178 0.75 3829 18.2 -6.9 -31.5 5.9 6.5 6.9 12.4 13.0 48 0.6 0.6 -97062400.MAF 872 0.75 3310 14.1 -9.9 -32.7 8.9 6.1 13.0 11.5 8.6 108 1.1 1.6 -97081700.TBW 13 0.75 3152 17.4 -7.3 -32.7 6.2 6.8 1.8 2.6 4.4 8 0.3 0.6 -97081800.SLC 1288 0.75 931 8.3 -10.3 -36.9 8.5 7.2 13.6 16.1 22.9 203 0.3 1.4 -97082200.ILN 317 0.75 520 9.6 -16.3 -41.3 5.8 6.9 3.9 17.5 30.9 50 0.2 0.7 -98062500.JAN 101 0.75 3507 17.3 -6.1 -32.3 6.0 7.0 7.1 2.3 8.6 -1 0.3 0.7 -98081000.SHV 79 0.75 3464 16.8 -6.5 -33.5 5.9 7.2 4.2 4.8 1.1 42 0.3 0.6 +DATE / RAOB ELEV REPORT MUCAPE MUMR 500TEMP 300 T 7-5 LR 5-3 LR 0-3SH 0-6SH 0-9SH SRH3 SHIP MODELb +95052300.DDC 791 6.00 4181 15.3 -9.6 -36.2 7.5 7.1 23.4 19.4 26.8 325 1.9 3.0 +91051100.MAF 873 6.00 4692 14.9 -10.8 -37.3 8.8 7.2 14.2 13.2 18.1 -37 1.9 2.7 +97061700.OUN 357 5.50 5751 18.8 -9.5 -36.1 7.4 7.1 14.5 23.6 45.9 116 3.1 3.5 +99012200.LZK 165 5.00 2240 12.3 -17.3 -41.7 7.6 6.8 23.0 26.3 32.1 294 2.3 3.0 +96061200.DDC 791 5.00 2820 13.7 -8.3 -34.7 7.6 7.1 12.9 20.3 15.8 142 1.2 2.5 +92072600.DDC 791 5.00 4794 17.4 -4.6 -31.2 6.8 7.0 18.2 17.4 14.6 176 1.0 0.8 +91052900.HON 392 5.00 3892 15.2 -12.3 -38.0 8.0 7.0 25.0 40.7 36.0 269 3.4 3.5 +90070800.BIS 504 5.00 3717 16.6 -9.8 -33.6 7.7 6.4 12.5 29.8 42.2 202 2.4 2.4 +57070300.RAP 966 5.00 4359 15.8 -6.7 -36.0 7.7 7.8 13.9 22.9 39.3 130 1.7 3.4 +06040300.LZK 78 5.00 3819 13.7 -14.9 -44.7 8.0 8.2 20.9 26.6 32.6 251 3.9 3.4 +99060100.DDC 790 4.75 4387 15.9 -11.3 -38.7 8.0 7.4 15.3 27.7 38.0 209 3.5 3.5 +96102100.OUN 362 4.50 2995 12.7 -12.9 -42.6 7.5 8.1 15.6 20.3 28.4 71 1.8 3.0 +96081100.LBF 847 4.50 2360 13.3 -8.4 -34.4 6.2 7.0 26.5 26.1 22.0 326 1.0 2.6 +96062700.TFX 1130 4.50 3835 13.9 -10.9 -37.2 8.3 7.1 21.8 37.1 44.3 297 3.0 1.6 +96051000.TOP 268 4.50 3884 15.6 -11.1 -40.4 8.8 8.0 22.1 18.3 22.3 234 2.2 3.3 +96050500.IAD 85 4.50 2432 12.1 -15.2 -41.7 7.2 7.3 15.9 25.0 25.5 36 1.9 1.9 +96030700.JAN 91 4.50 2362 14.0 -12.5 -38.9 6.8 7.2 16.8 34.9 36.9 196 1.8 0.6 +95060900.MAF 873 4.50 5653 17.8 -8.1 -37.7 8.1 8.0 12.8 18.7 33.5 83 2.2 2.9 +95060500.MAF 873 4.50 4358 14.9 -8.6 -40.7 7.6 8.7 16.0 23.2 32.0 181 2.1 2.9 +95051700.DDC 791 4.50 4878 15.6 -10.8 -39.2 8.5 7.7 8.9 26.6 40.7 43 3.8 2.6 +94060800.LBF 847 4.50 3400 13.0 -9.5 -37.5 7.8 7.6 8.1 18.7 18.4 109 1.5 2.4 +94042600.SEP 399 4.50 4409 16.3 -11.5 -41.9 7.4 8.3 21.2 26.7 26.2 138 3.3 3.3 +94040300.OUN 362 4.50 2075 10.1 -17.0 -44.2 7.6 7.5 18.7 31.2 39.3 163 1.9 2.1 +93101800.SEP 428 4.50 3958 15.7 -10.6 -34.9 7.0 6.5 23.2 31.7 30.5 441 2.6 2.2 +93101300.SEP 428 4.50 3151 14.2 -13.1 -36.5 8.0 6.3 15.0 22.3 31.8 307 2.4 2.9 +93092200.TOP 270 4.50 3665 16.8 -8.1 -37.9 6.5 8.0 21.3 21.3 37.9 502 1.3 1.3 +93092200.OVN 486 4.50 3685 15.4 -11.1 -40.4 8.1 7.9 23.5 31.9 33.2 492 2.9 4.0 +93072400.BIS 505 4.50 3597 15.3 -9.8 -38.4 5.8 7.7 14.9 21.0 33.2 263 1.4 2.3 +93062700.OVN 400 4.50 3720 15.0 -10.0 -38.2 6.3 7.6 9.4 22.3 28.9 140 1.7 3.1 +93060800.OUN 431 4.50 4917 17.0 -9.1 -34.9 7.1 6.9 9.7 30.6 26.7 195 2.8 2.6 +93050100.DDC 790 4.50 3206 11.1 -16.5 -44.2 8.0 7.7 15.4 24.0 29.9 194 2.7 3.7 +92073000.TOP 268 4.50 4074 16.6 -10.0 -37.8 7.5 7.5 11.8 22.5 22.1 164 2.2 2.4 +92073000.OVN 400 4.50 4366 16.6 -11.4 -38.3 7.4 7.3 13.9 22.3 23.7 216 2.7 3.2 +92062900.SEP 399 4.50 3761 17.4 -9.6 -33.8 7.8 6.6 13.7 21.8 15.6 248 2.0 2.8 +92062800.DDC 791 4.50 2750 13.8 -11.3 -34.2 7.8 6.2 15.2 20.6 41.3 315 1.6 2.9 +92062800.AMA 1095 4.50 4069 16.0 -10.3 -36.1 7.9 6.9 16.9 22.8 27.5 150 2.4 3.2 +91081400.GTF 1118 4.50 2524 11.5 -13.2 -37.4 8.5 6.6 15.3 25.8 28.9 213 2.0 2.0 +91072100.HON 392 4.50 5826 20.1 -6.1 -32.2 6.8 6.9 14.3 22.8 33.9 180 1.8 1.9 +91042912.BRO 7 4.50 4471 19.5 -9.8 -38.2 7.7 7.6 13.7 23.1 24.2 254 2.5 -999.0 +91032800.FNT 236 4.50 1860 11.3 -17.3 -44.0 7.6 7.4 26.8 47.0 45.4 431 1.8 2.9 +90051600.OUN 357 4.50 4398 16.7 -9.0 -36.4 7.6 7.3 23.2 25.5 44.9 180 2.5 3.1 +89080400.INL 359 4.50 3953 17.4 -11.5 -30.6 8.3 5.1 7.3 18.6 29.2 36 2.3 1.0 +89070300.SEP 399 4.50 5261 18.5 -7.6 -28.8 8.4 5.6 12.9 22.6 1.2 222 2.5 2.9 +89062700.GSO 277 4.50 4349 17.6 -7.3 -33.8 6.3 7.1 7.8 14.2 6.4 52 0.9 0.9 +89060700.SEP 399 4.50 3510 15.6 -7.9 -33.9 7.0 7.0 9.0 24.8 47.4 130 1.6 2.4 +89060400.MAF 873 4.50 3939 14.0 -10.0 -36.2 8.5 7.1 6.6 20.6 33.6 58 2.2 2.2 +02043000.FWD 171 4.50 5853 19.4 -10.9 -33.7 8.0 6.1 14.6 29.7 37.1 151 4.4 3.1 +02042900.IAD 93 4.50 2553 13.6 -16.7 -41.9 7.3 6.9 24.9 21.1 33.9 373 2.1 2.9 +08020600.SHV 79 4.25 2312 13.5 -14.1 -42.1 7.3 7.7 25.8 32.4 43.7 212 2.1 1.8 +07080400.RAP 1029 4.25 2983 15.6 -4.1 -30.9 6.2 7.1 18.3 22.7 35.8 270 0.7 0.9 +05042200.SGF 387 4.25 2944 12.6 -13.3 -42.7 6.8 8.0 15.1 21.3 15.6 193 1.7 2.2 +05042000.LBF 849 4.25 2460 10.1 -15.7 -43.9 8.9 7.8 16.6 15.3 22.3 255 1.4 2.9 +05031400.JAN 101 4.25 1382 11.1 -15.7 -40.7 7.6 6.8 19.2 25.5 49.7 161 1.1 2.8 +04081000.DNR 1625 4.25 3415 12.9 -9.1 -38.9 8.0 8.1 16.2 15.0 15.4 270 1.2 3.2 +04071318.ILX 178 4.25 6811 22.1 -10.9 -36.3 7.9 6.8 15.5 18.7 21.9 131 3.6 2.6 +04071300.LBF 849 4.25 7183 19.5 -7.3 -35.7 8.6 7.5 10.3 14.7 20.5 68 2.1 3.7 +04071200.GGW 700 4.25 2390 11.0 -13.7 -41.1 8.6 7.5 17.1 22.3 32.0 99 1.7 1.9 +04062200.AMA 1099 4.25 3828 13.8 -8.9 -36.5 8.0 7.4 17.8 26.2 40.5 141 2.3 2.3 +04053000.OUN 357 4.25 4526 16.8 -7.5 -36.5 7.8 7.7 15.8 24.4 40.4 224 2.1 -999.0 +04052200.AMA 1099 4.25 4265 13.7 -8.7 -36.3 7.9 7.4 13.6 21.5 23.9 176 2.0 2.1 +04040400.MAF 872 4.25 2746 12.0 -14.7 -43.1 7.0 7.8 14.4 19.5 31.1 262 1.6 2.7 +03051000.MHX 11 4.25 4373 17.1 -10.5 -35.1 7.3 6.6 14.1 22.7 23.2 146 2.5 2.1 +03050518.BNA 210 4.25 2730 16.0 -12.9 -36.4 7.1 6.5 18.3 37.0 37.2 239 2.2 -999.0 +03050500.SGF 387 4.25 5169 15.7 -13.5 -40.7 7.6 7.4 30.0 38.4 50.7 348 4.6 2.9 +03040600.FWD 171 4.25 2487 12.4 -14.3 -41.7 7.3 7.5 17.1 31.5 51.8 341 2.1 2.9 +01070300.LBF 849 4.25 5584 16.7 -8.7 -37.3 8.5 7.8 14.2 18.0 24.7 154 2.4 4.2 +98063000.TOP 270 4.00 6490 21.8 -5.3 -30.5 7.2 6.6 18.1 24.4 32.6 230 2.0 1.7 +98050800.FFC 244 4.00 4120 17.3 -12.3 -36.1 7.7 6.4 17.1 31.0 51.6 172 3.4 2.2 +97082200.LBF 849 4.00 3974 15.7 -9.7 -35.9 7.4 7.1 17.4 26.4 37.5 321 2.4 3.3 +96052300.LBF 847 4.00 2915 13.5 -11.1 -38.2 8.0 7.3 18.5 27.8 43.7 303 2.3 2.9 +95102700.SGF 394 4.00 2166 12.5 -13.8 -41.6 6.9 7.6 25.7 21.9 29.4 267 1.3 1.6 +95072600.DDC 791 4.00 5696 18.3 -10.1 -32.2 8.8 5.9 17.1 21.3 19.2 238 3.5 3.3 +95072500.FTD 196 4.00 2897 15.4 -10.0 -30.5 9.2 5.5 12.8 19.1 19.8 168 1.7 -999.0 +95051600.JAN 91 4.00 4861 17.9 -10.9 -37.6 7.8 7.2 8.6 14.9 18.5 -35 2.0 2.5 +95050600.FTD 196 4.00 2036 15.1 -11.1 -34.7 7.1 6.4 20.8 21.2 37.5 304 1.1 0.6 +93072300.HON 443 4.00 3720 15.7 -8.1 -37.4 6.0 7.8 15.4 19.1 22.5 130 1.1 1.5 +93071600.RAP 966 4.00 3230 14.1 -7.5 -34.9 7.7 7.3 18.6 25.0 35.8 97 1.5 3.2 +91041300.SEP 399 4.00 5008 16.9 -10.6 -40.5 6.8 8.1 12.2 21.8 27.4 137 2.6 3.4 +90090200.RAP 966 4.00 1762 11.3 -7.4 -33.9 7.5 7.0 14.1 23.6 32.7 181 0.6 2.1 +90070100.DAY 298 4.00 3541 16.6 -9.4 -33.6 7.1 6.5 8.6 19.9 24.5 154 1.5 1.8 +90060900.TOP 268 4.00 5571 18.5 -10.1 -39.2 7.3 7.8 14.8 22.6 16.4 252 3.0 2.7 +90051900.AMA 1095 4.00 2732 11.5 -9.3 -38.2 7.7 7.8 18.5 26.1 30.4 301 1.4 2.1 +90051500.AMA 1095 4.00 4543 14.8 -9.9 -36.2 8.2 7.1 19.2 24.7 33.8 473 2.9 2.2 +89071800.LBF 847 4.00 3622 15.4 -9.4 -35.6 8.1 7.0 22.9 38.9 37.6 361 2.4 2.9 +89062700.DDC 791 4.00 2840 14.3 -8.4 -36.6 7.6 7.5 12.7 19.4 19.2 167 1.1 2.2 +89061100.AMA 1095 4.00 3666 15.8 -8.7 -35.4 7.6 7.2 11.1 11.0 19.2 87 0.9 -999.0 +06092221.SGF 387 4.00 5071 17.6 -6.7 -36.1 5.3 7.9 21.0 31.6 37.0 202 1.6 1.1 +06071700.INL 361 4.00 3719 14.1 -11.1 -38.3 8.4 7.4 19.9 26.3 29.8 328 3.0 2.4 +06050600.MAF 872 4.00 3533 12.4 -12.3 -40.1 8.2 7.5 19.3 33.6 48.0 174 2.8 2.0 +04071318.DVN 229 4.00 6090 20.8 -11.1 -37.3 8.4 7.1 22.5 25.9 22.3 191 4.7 2.8 +03050300.BMX 178 4.00 4593 15.2 -15.7 -40.1 7.9 6.7 8.1 32.4 30.5 51 5.0 2.9 +02061300.DDC 790 4.00 6234 19.5 -6.9 -31.9 7.6 6.6 17.2 19.8 32.7 126 2.1 3.7 +02042000.MAF 872 4.00 2974 12.9 -8.1 -36.7 6.9 7.6 19.0 24.3 41.7 133 1.2 2.5 +95051900.BMX 178 3.75 3370 16.5 -9.9 -35.7 6.6 7.0 16.9 20.6 25.5 246 1.5 0.6 +03040400.OUN 357 3.75 2640 11.9 -15.1 -42.7 7.3 7.6 13.4 24.0 23.9 187 2.0 2.3 +99072600.LBF 849 3.65 4375 16.4 -6.7 -30.5 7.9 6.4 9.5 12.9 16.1 60 1.0 2.6 +99050400.OUN 357 3.65 5195 15.6 -14.9 -44.1 8.4 8.0 16.5 21.3 22.0 343 4.5 4.7 +99030600.LZK 165 3.65 1922 11.7 -18.5 -46.3 8.2 7.7 21.4 22.8 39.2 360 1.9 2.1 +98052200.SGF 387 3.65 4719 17.1 -9.9 -36.5 7.8 7.2 13.8 22.4 23.1 232 2.6 2.3 +98040800.ILX 178 3.65 1354 10.2 -19.7 -46.5 7.2 7.5 20.1 21.2 25.1 180 1.1 2.6 +03062300.OAX 350 3.65 6203 18.7 -9.3 -36.9 8.6 7.5 12.3 13.6 22.9 237 2.2 4.2 +02091900.OUN 357 3.65 4268 15.7 -6.1 -36.9 6.7 8.2 17.8 20.8 23.4 308 1.2 3.0 +02062400.ABR 396 3.65 5093 17.2 -10.5 -35.7 8.2 6.8 16.9 26.3 30.9 187 3.7 3.5 +02060500.RNK 654 3.65 5399 17.9 -9.7 -34.9 6.9 6.7 8.7 4.0 7.3 54 0.8 3.2 +02051200.TOP 270 3.65 4489 15.8 -11.9 -38.9 8.1 7.3 13.7 26.0 26.5 224 3.6 3.3 +02051100.MAF 872 3.65 4658 14.5 -9.3 -35.9 8.4 7.2 14.8 23.1 40.3 132 2.7 2.2 +01072100.GGW 700 3.65 3114 13.5 -10.7 -38.5 7.7 7.5 15.8 28.3 30.5 354 2.2 2.8 +01071800.ABR 396 3.65 5177 17.5 -9.9 -36.7 8.4 7.2 9.6 19.5 28.2 136 2.7 3.9 +01062100.DDC 790 3.65 4428 15.2 -10.7 -37.5 7.8 7.3 13.4 19.0 25.2 400 2.3 3.2 +01061400.DDC 790 3.65 5244 15.7 -8.9 -36.7 8.0 7.5 19.8 28.1 28.2 384 3.2 2.5 +01052500.JAN 101 3.65 3446 13.5 -15.1 -42.5 7.5 7.5 17.4 21.8 31.4 240 2.7 2.7 +01051800.AMA 1099 3.65 4695 13.9 -10.5 -38.9 8.6 7.7 16.1 13.2 22.8 86 1.8 2.1 +01050700.SHV 79 3.65 2945 14.8 -12.5 -39.3 6.5 7.3 9.0 15.7 22.1 110 1.2 1.7 +01050700.LZK 78 3.65 3512 14.7 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.6 3.4 +01041500.DDC 790 3.65 3892 13.1 -18.3 -43.1 9.0 6.9 24.4 43.1 54.7 233 5.4 2.5 +01040400.SGF 387 3.65 3277 12.8 -15.1 -43.1 8.3 7.7 17.2 22.4 28.9 310 2.8 3.1 +98062000.OUN 357 3.50 6048 19.0 -7.1 -35.9 7.8 7.7 13.7 15.4 11.2 209 1.7 3.9 +98052500.OUN 357 3.50 5688 18.0 -10.7 -39.7 8.1 7.8 9.9 21.9 28.7 172 3.5 4.2 +98052100.TOP 270 3.50 4680 16.5 -12.5 -38.1 8.4 7.0 9.8 10.5 23.7 100 1.7 3.8 +97062100.LBF 849 3.50 6058 17.3 -9.3 -35.7 8.8 7.2 13.9 23.1 25.1 129 3.7 3.7 +96062000.OAX 350 3.50 4081 16.3 -9.8 -37.1 8.6 7.4 18.9 19.0 24.4 271 2.1 -999.0 +90061900.BIS 504 3.50 1968 11.1 -13.5 -40.9 8.2 7.5 17.4 28.4 38.0 257 1.5 2.9 +90060900.IAD 85 3.50 3994 17.2 -10.9 -35.5 7.1 6.7 18.3 23.7 20.0 203 2.4 0.9 +90040600.SEP 399 3.50 3764 12.4 -14.9 -45.3 7.8 8.4 15.4 25.2 36.8 305 3.3 2.3 +90031400.OUN 357 3.50 3950 14.6 -16.1 -39.5 7.2 6.4 12.3 20.2 49.4 169 3.0 2.9 +89070300.STC 315 3.50 3556 15.6 -8.2 -35.9 7.0 7.4 8.5 15.8 21.4 128 1.1 1.4 +02081200.DDC 790 3.50 3415 14.0 -8.7 -34.3 8.0 6.9 10.7 15.7 27.7 157 1.2 3.1 +01061500.FWD 171 3.50 4260 17.3 -9.7 -33.7 7.9 6.5 11.1 15.1 9.7 74 1.6 2.2 +01041000.SGF 387 3.50 3476 13.0 -14.5 -41.3 7.9 7.4 12.5 21.6 30.3 141 2.7 2.6 +91060500.DDC 791 3.25 4631 16.9 -7.9 -35.5 6.5 7.4 11.0 15.3 15.4 74 1.2 3.5 +06070200.GRB 214 3.25 3255 15.4 -9.3 -35.9 6.6 7.1 14.7 17.0 24.9 99 1.1 1.5 +99060200.FWD 196 3.00 4928 17.3 -11.5 -37.3 8.8 7.0 15.3 15.0 30.3 171 2.4 4.5 +98062900.TOP 270 3.00 6895 22.0 -7.7 -33.1 7.0 6.8 19.3 20.6 27.3 335 2.5 2.4 +98062500.BIS 506 3.00 4591 15.5 -13.3 -41.3 8.1 7.7 15.5 15.9 15.4 89 2.5 3.0 +98062500.ABR 396 3.00 4448 16.3 -13.7 -40.5 8.8 7.3 11.2 17.4 28.7 42 3.0 3.7 +98061400.OAX 350 3.00 2830 13.3 -10.5 -39.5 7.7 7.9 15.3 24.4 45.4 219 1.8 3.4 +98052400.DDC 790 3.00 2630 11.6 -12.9 -41.5 6.7 7.8 9.8 22.0 27.7 101 1.4 2.3 +97061000.FWD 196 3.00 2699 15.6 -9.9 -34.9 7.0 6.7 10.9 18.7 24.1 98 1.1 1.3 +97052600.OUN 357 3.00 5143 17.2 -7.7 -38.5 5.9 8.3 15.0 30.4 32.4 148 2.0 2.6 +96070800.LBF 847 3.00 3341 15.3 -6.4 -32.5 7.0 6.9 20.6 30.0 41.5 390 1.3 2.2 +96062012.LBF 847 3.00 3418 15.2 -8.6 -35.4 7.9 7.3 16.5 22.6 25.0 380 1.7 3.3 +96061400.UNR 1037 3.00 3801 13.1 -11.0 -37.6 8.4 7.2 12.4 18.0 14.8 63 2.0 2.0 +96052700.OUN 362 3.00 3034 15.2 -9.4 -36.2 6.9 7.2 22.5 29.8 33.6 330 1.7 2.0 +96042000.ILX 178 3.00 2394 12.9 -14.6 -41.1 7.1 7.3 16.4 27.0 39.5 249 2.1 -999.0 +96033100.SHV 84 3.00 2891 12.7 -17.1 -46.6 7.6 8.2 20.1 27.4 35.5 163 3.0 3.1 +95082700.GGW 696 3.00 3094 11.7 -12.6 -38.7 8.3 7.1 13.6 26.8 41.0 162 2.4 1.7 +95082300.INL 359 3.00 3023 15.4 -11.6 -36.2 8.0 6.7 25.4 30.9 26.5 694 2.5 2.1 +95072400.DDC 791 3.00 3645 15.9 -9.9 -33.5 8.2 6.3 11.8 18.2 32.6 31 1.7 3.6 +95071500.LBF 847 3.00 3052 14.4 -7.0 -32.9 6.5 6.9 13.9 15.9 24.7 159 0.7 2.1 +95062300.LBF 847 3.00 2962 12.9 -11.1 -36.7 7.9 7.0 15.3 21.0 19.8 220 1.7 2.8 +95043000.FTD 196 3.00 4416 15.0 -13.3 -43.2 8.1 8.2 15.6 21.9 31.7 166 3.4 3.4 +95021400.PBI 6 3.00 2433 16.5 -11.0 -41.1 5.9 8.1 13.8 27.1 33.4 117 1.4 0.6 +94060600.DDC 791 3.00 4882 14.8 -8.8 -37.2 8.7 7.6 13.1 15.6 18.6 248 1.9 2.1 +94052600.FNT 236 3.00 2240 10.8 -16.3 -46.6 6.1 8.4 12.8 17.8 25.8 113 1.0 2.4 +94032800.CKL 140 3.00 2066 15.3 -9.6 -33.7 6.3 6.4 30.5 38.6 36.3 429 1.1 0.6 +93091900.DDC 824 3.00 1954 12.4 -10.4 -35.2 7.2 6.7 16.8 29.5 46.6 233 1.2 2.8 +93091900.AMA 1094 3.00 1911 12.4 -9.0 -33.5 7.7 6.5 16.5 32.7 35.4 264 1.1 2.4 +93082300.DDC 790 3.00 2608 13.3 -7.8 -33.0 7.7 6.8 13.1 19.5 27.0 83 1.0 2.0 +93070900.OVN 487 3.00 5546 19.7 -6.8 -30.3 6.9 6.2 16.9 29.4 24.3 345 2.3 0.6 +93070200.DDC 816 3.00 4895 17.1 -5.2 -33.2 7.2 7.4 13.3 16.4 21.4 237 1.0 2.8 +93060600.HAT 4 3.00 4948 16.0 -13.5 -38.7 8.3 6.9 12.6 15.5 17.2 70 2.8 3.9 +93050600.MAF 873 3.00 3784 13.9 -9.6 -37.2 7.2 7.4 18.6 27.0 25.4 149 2.3 2.5 +92070500.OVN 400 3.00 5051 17.3 -9.3 -36.1 7.4 7.2 16.1 21.8 33.3 243 2.5 3.5 +92062700.MAF 873 3.00 3224 13.9 -8.2 -32.9 7.7 6.6 13.0 23.7 38.8 253 1.6 2.5 +92032600.TBW 13 3.00 2104 12.6 -14.0 -43.1 6.5 8.0 18.6 32.2 37.0 195 1.5 1.1 +91052700.DDC 791 3.00 5493 17.0 -10.5 -38.1 8.4 7.4 13.3 21.7 29.3 81 3.4 2.9 +91040912.1M1 172 3.00 3450 14.2 -15.2 -42.3 8.0 7.5 11.5 19.7 20.8 134 2.7 -999.0 +91032700.TOP 268 3.00 2763 12.7 -12.3 -39.3 6.8 7.4 21.6 27.7 31.7 279 1.9 2.5 +90052700.OUN 357 3.00 4621 17.5 -8.8 -37.3 7.6 7.7 20.4 23.8 25.1 255 2.4 3.2 +90051500.OUN 357 3.00 4798 16.8 -10.7 -38.4 7.8 7.5 12.5 19.8 29.7 186 2.6 4.2 +89060700.AMA 1095 3.00 4752 15.4 -9.5 -33.5 8.5 6.4 21.7 30.5 55.6 303 3.3 2.4 +89060500.OUN 357 3.00 1640 12.5 -11.6 -39.9 7.0 7.7 8.8 15.7 23.9 53 0.6 0.7 +72081200.YRM 988 3.00 1989 10.9 -14.2 -40.4 8.3 7.1 14.0 24.6 35.0 132 1.5 2.4 +06052800.BIS 506 3.00 3434 12.5 -11.1 -38.7 8.1 7.5 10.5 11.3 12.7 74 1.0 1.8 +06052700.BNA 210 3.00 3535 16.1 -8.3 -35.3 5.9 7.2 17.7 12.8 17.2 196 0.7 0.7 +06052500.SGF 387 3.00 3470 15.6 -11.1 -37.1 7.6 7.0 13.6 14.3 7.3 162 1.4 2.0 +06042500.OUN 357 3.00 4007 15.5 -12.3 -39.3 8.6 7.3 15.4 20.1 21.2 105 2.8 3.3 +06042412.LMN 317 3.00 3248 14.1 -12.9 -39.7 8.2 7.3 16.6 25.4 28.7 413 2.8 3.2 +04081000.DDC 790 3.00 3147 14.6 -9.7 -36.3 7.7 7.1 13.0 21.0 22.0 222 1.6 3.0 +04070200.AMA 1099 3.00 5137 16.9 -8.1 -37.7 7.4 7.9 18.0 14.0 16.6 80 1.4 3.0 +04052300.OAX 350 3.00 4333 15.6 -12.3 -40.7 7.6 7.8 19.6 32.4 28.9 289 3.6 3.0 +04051700.DDC 790 3.00 2200 10.0 -11.9 -41.3 8.4 8.0 20.5 31.7 30.2 390 1.6 1.5 +04042200.OUN 357 3.00 2363 12.2 -13.5 -39.5 7.0 7.1 16.9 24.3 33.8 385 1.6 2.7 +04041900.OAX 350 3.00 3136 11.9 -15.1 -40.5 8.2 7.0 20.5 33.8 44.9 394 3.0 1.9 +03062800.DDC 790 3.00 2329 11.4 -9.3 -38.9 6.7 8.0 10.8 16.9 26.8 138 0.7 2.2 +03062400.LBF 849 3.00 6189 18.6 -8.7 -38.9 8.1 8.1 21.7 30.8 31.6 381 3.8 4.8 +03050420.SGF 387 3.00 4524 15.8 -11.9 -40.7 7.1 7.8 25.2 35.4 47.9 480 3.3 3.2 +03042100.SHV 79 3.00 2947 15.5 -13.5 -38.7 7.5 6.8 14.3 24.0 38.0 110 2.3 0.9 +01090900.FWD 171 3.00 4304 17.1 -8.9 -35.7 8.2 7.1 7.7 14.1 12.0 97 1.4 2.7 +01053000.AMA 1099 3.00 5827 16.4 -9.7 -38.5 8.2 7.7 25.0 26.1 29.7 268 3.9 2.8 +01051900.LZK 78 3.00 4269 16.6 -12.5 -37.3 8.1 6.7 9.9 18.5 25.8 98 2.6 2.7 +00080600.OAX 350 3.00 5525 19.0 -7.1 -33.1 7.5 6.9 9.4 15.0 22.8 56 1.4 3.1 +00062900.MAF 872 3.00 3565 14.8 -6.3 -31.1 6.3 6.6 9.6 10.5 16.7 29 0.5 1.8 +00050400.FWD 196 3.00 2731 13.2 -14.3 -40.3 6.3 7.1 19.0 21.7 28.5 327 1.7 3.0 +99081800.LBF 849 2.75 5554 18.3 -8.9 -32.5 7.8 6.4 10.7 23.7 25.1 143 2.9 3.4 +99070100.MAF 872 2.75 3989 13.7 -2.5 -33.9 7.5 8.3 10.5 14.9 13.7 146 0.8 2.0 +99061900.DDC 790 2.75 4141 13.9 -11.3 -40.3 7.3 7.9 13.4 22.5 29.0 346 2.5 2.4 +99061200.AMA 1099 2.75 4400 14.7 -10.3 -36.3 7.7 7.0 18.8 26.2 36.6 210 3.0 2.4 +99060300.AMA 1099 2.75 5087 15.6 -10.3 -36.5 8.7 7.1 15.5 18.6 49.2 289 2.7 2.5 +98061400.OUN 357 2.75 6689 20.5 -6.5 -32.5 7.7 6.9 17.9 32.8 42.7 262 2.9 4.0 +98052500.DDC 790 2.75 2688 12.5 -12.1 -40.7 7.2 7.8 13.7 27.9 32.0 180 1.9 2.7 +98040900.BMX 178 2.75 3341 15.8 -13.9 -39.5 7.9 7.0 25.9 40.1 51.5 296 3.2 2.0 +97061600.DDC 790 2.75 3187 13.5 -10.9 -36.5 7.7 6.9 11.9 23.3 39.3 26 2.0 2.7 +97061200.TOP 270 2.75 1552 12.6 -11.7 -38.7 7.1 7.3 11.6 23.5 30.2 141 0.9 0.9 +97052700.SGF 387 2.75 4440 16.3 -9.9 -38.1 7.0 7.6 16.3 22.6 25.0 276 2.3 2.6 +97052700.OUN 357 2.75 5907 18.0 -8.7 -37.7 6.4 7.8 17.6 17.5 23.9 271 1.9 3.7 +97042100.SGF 387 2.75 1773 9.4 -16.5 -45.7 7.4 8.1 23.3 25.4 23.9 405 1.4 2.0 +97041100.MAF 873 2.75 4076 11.9 -15.0 -45.9 8.2 8.5 20.8 23.7 30.7 260 3.3 2.1 +97032900.BNA 180 2.75 1618 11.1 -15.6 -42.6 7.4 7.4 18.1 25.2 15.3 389 1.3 3.0 +97012500.SIL 8 2.75 2563 13.0 -16.5 -46.0 7.5 8.2 18.3 18.3 25.8 145 1.8 2.8 +96092100.FTD 196 2.75 2870 16.4 -9.4 -37.2 6.5 7.4 15.7 26.4 32.6 136 1.5 -999.0 +96083000.DEN 1611 2.75 2478 11.7 -9.1 -36.2 7.8 7.3 17.6 26.2 28.9 86 1.3 2.3 +96080100.DEN 1611 2.75 3920 13.5 -7.8 -34.9 8.5 7.3 15.0 22.6 26.3 276 1.9 2.1 +96072400.DDC 791 2.75 3068 14.3 -11.1 -36.0 8.6 6.7 16.8 27.6 36.6 203 2.6 2.7 +96062500.AMA 1095 2.75 3778 13.9 -9.4 -33.2 8.5 6.4 7.0 22.9 28.2 123 2.2 1.9 +96061400.LBF 847 2.75 2384 12.4 -8.6 -36.2 6.5 7.4 12.0 15.4 25.0 102 0.6 2.2 +96061300.FFC 246 2.75 2727 13.7 -9.1 -36.5 5.7 7.4 12.9 12.9 13.1 152 0.6 1.0 +96061200.AMA 1095 2.75 3079 11.9 -8.8 -38.1 8.0 7.9 18.3 24.3 30.2 373 1.5 1.9 +96060300.SGF 394 2.75 2739 11.7 -15.9 -42.2 7.1 7.2 14.8 26.4 35.9 90 2.3 2.1 +96060200.JAN 91 2.75 1863 16.1 -7.5 -32.6 5.5 6.8 11.3 12.7 20.3 168 0.3 0.6 +96060100.ABR 397 2.75 2276 12.6 -13.4 -40.4 6.2 7.4 24.6 22.4 27.2 370 1.3 2.2 +96053000.MAF 873 2.75 3675 14.9 -7.0 -32.9 7.7 6.9 19.0 35.1 40.6 321 1.7 2.5 +96052600.MAF 873 2.75 3464 14.1 -6.2 -36.5 7.7 8.1 22.5 28.7 42.1 240 1.4 2.9 +96052500.AMA 1095 2.75 3927 13.5 -11.3 -36.6 9.1 6.9 16.4 20.3 4.9 101 2.6 1.9 +96051800.OAX 350 2.75 4523 15.3 -11.1 -39.7 8.8 7.8 12.9 16.0 21.2 68 2.3 -999.0 +96051700.UNR 1037 2.75 4365 14.8 -8.1 -37.0 8.0 7.8 15.0 25.5 28.7 219 2.3 2.5 +96042200.TOP 268 2.75 1574 10.9 -16.6 -42.6 7.3 7.2 14.6 45.6 54.3 145 1.3 2.3 +96042200.OUN 362 2.75 2260 12.7 -10.9 -36.6 5.9 7.0 18.5 38.3 48.8 500 1.2 2.3 +96031600.FFC 246 2.75 890 9.6 -19.2 -39.7 7.8 5.7 20.5 28.8 55.2 353 0.9 2.2 +95081800.BIS 503 2.75 5585 18.4 -7.0 -34.2 7.7 7.3 10.6 10.6 17.3 142 1.0 3.3 +95072400.AMA 1095 2.75 2225 13.3 -7.8 -30.1 8.5 6.0 13.1 21.6 25.1 124 1.0 2.9 +95071500.GRB 210 2.75 5409 19.0 -8.5 -30.8 8.1 5.9 8.0 12.1 9.0 69 1.5 3.0 +95071200.OKX 20 2.75 2900 13.9 -15.6 -43.2 6.9 7.6 8.1 12.7 13.6 48 1.3 2.4 +95070300.DDC 791 2.75 2905 14.2 -9.6 -38.9 6.8 7.9 12.3 18.2 21.4 111 1.1 2.3 +95070300.AMA 1095 2.75 3838 14.7 -11.5 -36.5 8.8 6.8 8.2 22.8 29.0 115 2.9 2.5 +95062800.LBF 847 2.75 2880 12.4 -10.1 -37.2 7.7 7.3 13.9 22.0 19.7 208 1.5 2.5 +95062100.OKX 20 2.75 3918 17.1 -9.8 -34.9 7.1 6.7 11.4 18.4 25.8 18 1.6 1.0 +95060300.AMA 1095 2.75 3024 12.4 -9.6 -36.5 8.2 7.2 15.7 22.4 37.2 346 1.6 2.0 +95052200.LBF 847 2.75 2027 10.4 -14.9 -42.1 7.4 7.4 18.7 28.3 33.3 221 1.6 2.1 +95051400.UMN 438 2.75 5278 16.5 -10.3 -38.0 6.9 7.5 22.3 28.0 26.2 211 3.3 3.2 +95042000.FTD 196 2.75 2621 14.6 -13.3 -38.5 7.7 6.8 25.8 39.5 59.2 498 2.3 2.4 +95040900.TOP 268 2.75 2836 10.7 -17.5 -44.5 9.2 7.5 16.5 21.4 31.9 120 2.6 1.9 +94070700.HON 392 2.75 3051 16.5 -8.8 -35.7 7.2 7.2 10.2 20.5 18.6 159 1.3 0.6 +94070200.OAX 350 2.75 5257 18.5 -10.1 -33.0 8.0 6.2 15.5 26.5 25.4 416 3.6 3.2 +94070100.STC 315 2.75 3701 14.3 -11.6 -39.6 7.3 7.6 19.0 27.2 25.1 399 2.7 2.7 +94062600.JAN 106 2.75 2842 16.1 -9.5 -35.0 6.4 6.8 12.4 24.0 32.8 130 1.3 0.9 +94062500.HON 392 2.75 1962 11.8 -10.8 -39.7 6.4 7.8 15.4 27.8 33.5 211 1.0 2.2 +94061900.JAN 91 2.75 3177 16.8 -7.5 -32.7 5.9 6.7 3.8 11.5 12.4 42 0.5 0.6 +94061800.AMA 1095 2.75 2676 11.9 -7.0 -33.1 8.2 6.9 10.7 11.0 11.3 171 0.5 1.6 +94061200.TOP 268 2.75 2320 13.9 -9.5 -36.5 6.6 7.3 15.8 23.9 24.4 117 1.1 0.9 +94061200.AMA 1095 2.75 4015 14.7 -8.0 -33.7 7.8 6.9 18.4 26.7 19.9 302 2.2 2.7 +94061100.AMA 1095 2.75 2164 12.3 -8.3 -36.1 7.3 7.5 16.6 19.5 20.3 229 0.7 2.8 +94060600.TOP 268 2.75 3953 16.5 -9.3 -35.1 8.1 6.9 15.4 16.1 27.7 394 1.5 2.5 +94060500.HON 392 2.75 3871 14.2 -11.6 -38.7 8.5 7.4 12.0 21.4 19.2 202 2.6 2.4 +94053000.SEP 399 2.75 5032 17.5 -10.6 -36.6 8.2 7.0 16.1 27.0 23.8 291 3.8 3.9 +94052500.OUN 362 2.75 3912 15.0 -11.5 -38.1 7.4 7.2 13.2 22.0 36.2 122 2.4 3.0 +94041100.UMN 438 2.75 2040 12.6 -16.5 -41.0 7.6 6.7 19.9 37.8 45.4 486 2.1 2.5 +94012700.GGG 124 2.75 2167 13.2 -15.9 -42.4 6.8 7.3 17.5 31.0 32.3 306 2.0 0.7 +93102000.DRT 313 2.75 3433 15.5 -8.9 -36.3 6.4 7.4 13.4 25.4 34.0 35 1.6 1.6 +93101900.GGG 124 2.75 3105 15.7 -9.8 -36.9 6.9 7.3 10.3 23.5 33.9 105 1.6 0.7 +93101300.CRP 14 2.75 4367 17.3 -8.6 -37.2 6.3 7.7 14.8 20.2 29.8 227 1.5 1.5 +93090400.IAD 85 2.75 2779 15.6 -5.9 -32.6 5.7 7.1 12.4 15.2 15.6 149 0.5 0.6 +93070700.DDC 790 2.75 5334 17.0 -6.0 -36.1 7.2 8.0 16.5 27.9 28.2 154 2.0 3.1 +93070700.AMA 1094 2.75 5327 17.0 -4.7 -32.2 7.8 7.3 11.4 21.3 20.0 127 1.6 3.8 +93070500.DDC 790 2.75 4186 17.1 -5.4 -31.1 6.7 6.8 16.6 30.6 34.9 146 1.3 1.2 +93062400.LBF 849 2.75 3944 16.0 -8.6 -37.5 8.1 7.7 18.1 21.9 33.8 178 2.0 2.8 +93062400.DEN 1611 2.75 3442 11.7 -9.6 -38.0 8.8 7.8 15.8 32.0 42.3 211 2.2 1.8 +93061900.AMA 1094 2.75 2140 12.8 -7.8 -33.2 7.0 6.7 14.4 22.7 23.3 146 0.8 1.9 +93051600.DDC 790 2.75 3614 12.8 -9.8 -40.4 6.6 8.3 12.6 19.4 23.7 161 1.4 2.5 +93050600.AMA 1094 2.75 4478 13.2 -13.6 -38.2 8.6 6.7 16.6 34.6 38.4 340 4.5 2.0 +93050100.AMA 1095 2.75 4085 11.6 -14.5 -42.9 8.1 7.8 15.3 25.7 15.8 234 3.4 1.9 +93042900.MAF 873 2.75 2435 11.7 -10.9 -36.0 7.1 6.8 20.8 29.3 37.4 551 1.4 2.2 +93042800.MAF 873 2.75 1494 10.4 -10.6 -38.7 6.9 7.6 12.9 19.6 25.8 150 0.6 1.8 +93042500.UMN 438 2.75 2317 11.4 -14.6 -42.2 6.9 7.6 18.2 25.2 33.1 198 1.6 2.4 +93042000.GGG 168 2.75 2342 12.4 -13.3 -42.9 8.0 8.1 17.5 26.7 28.4 156 2.0 2.7 +93040200.WAL 13 2.75 1625 10.9 -18.5 -46.2 7.3 7.7 26.8 30.7 48.4 200 1.5 2.4 +93033100.UMN 440 2.75 2598 11.1 -16.5 -43.6 6.4 7.5 19.7 29.7 28.9 117 2.0 2.1 +93033100.1M1 204 2.75 2471 11.9 -15.1 -43.9 7.2 8.0 17.8 30.2 27.1 54 2.1 2.8 +92101600.SEP 399 2.75 3654 14.6 -12.1 -37.5 7.7 6.9 12.6 16.4 22.7 227 1.8 2.9 +92073000.LBF 847 2.75 3544 15.0 -10.3 -38.2 7.9 7.5 22.0 25.7 33.8 335 2.4 3.0 +92062700.AMA 1095 2.75 3165 14.1 -10.0 -34.2 7.7 6.5 12.4 16.6 29.9 191 1.3 2.9 +92061900.DDC 791 2.75 2598 12.8 -8.3 -34.7 7.9 7.1 15.7 25.1 40.5 114 1.3 2.7 +92061900.BIS 504 2.75 1791 11.0 -14.4 -39.4 6.9 6.9 13.0 27.4 24.4 106 1.3 2.5 +92061300.AMA 1095 2.75 2821 14.7 -8.8 -34.4 7.2 6.9 12.0 19.1 36.4 165 1.1 2.7 +92061200.MAF 873 2.75 2387 13.8 -8.2 -32.3 7.4 6.4 13.3 26.7 34.6 178 1.3 2.0 +92060500.AMA 1095 2.75 2870 13.4 -9.4 -37.0 7.5 7.4 12.2 17.5 25.9 249 1.1 2.6 +92030600.1M1 172 2.75 2572 11.5 -21.1 -44.4 7.2 6.5 17.3 22.5 26.7 194 2.4 2.3 +92021500.UMN 438 2.75 1724 10.2 -16.9 -44.0 6.4 7.5 24.2 33.2 28.2 289 1.3 2.2 +91072200.HON 392 2.75 4474 19.3 -6.8 -31.8 7.2 6.7 11.1 17.3 24.1 198 1.2 -999.0 +91070500.GGW 696 2.75 2308 11.4 -9.9 -38.5 7.0 7.7 6.7 17.5 23.9 144 0.8 2.2 +91070500.BIS 504 2.75 2941 13.3 -9.3 -37.6 6.4 7.6 19.3 21.4 26.6 206 1.2 2.4 +91062000.HON 392 2.75 2691 13.9 -10.5 -37.0 7.0 7.2 16.1 22.1 20.0 282 1.4 1.2 +91061900.LBF 847 2.75 3600 13.0 -12.0 -40.0 8.6 7.6 13.5 15.2 20.9 219 1.7 2.6 +91061500.GRB 210 2.75 3430 17.6 -8.7 -32.3 6.7 6.3 21.7 13.9 17.0 161 0.9 0.6 +91061500.BIS 504 2.75 2379 13.0 -11.9 -35.8 6.6 6.5 13.2 22.5 25.2 152 1.3 2.6 +91060500.OVN 400 2.75 2813 14.6 -10.1 -31.5 6.5 5.7 8.4 17.1 19.6 177 1.0 3.1 +91053000.RAP 966 2.75 2814 10.9 -15.7 -43.2 8.1 7.6 13.0 14.5 28.4 159 1.4 2.0 +91053000.OVN 400 2.75 4446 16.8 -10.2 -36.3 6.8 7.0 14.3 18.2 19.0 31 1.8 2.7 +91052500.AMA 1095 2.75 3416 13.7 -10.5 -37.1 7.0 7.2 17.0 17.4 13.8 124 1.4 2.5 +91051800.UMN 438 2.75 3444 15.1 -11.0 -34.2 7.4 6.2 9.4 11.9 21.0 59 1.1 1.2 +91051700.UMN 438 2.75 3299 15.9 -10.6 -35.6 7.6 6.7 14.4 16.1 11.8 174 1.4 1.9 +91051200.RAP 966 2.75 4430 14.1 -11.0 -39.1 7.9 7.6 26.6 23.5 33.5 437 2.9 2.5 +91051100.AMA 1095 2.75 5629 15.6 -10.7 -37.8 9.0 7.3 14.5 16.5 21.5 314 2.9 2.5 +91042800.GGG 124 2.75 4554 18.9 -10.5 -37.7 7.2 7.3 15.4 29.5 19.6 140 3.0 2.2 +91042700.OUN 357 2.75 4751 16.6 -11.5 -41.7 7.0 8.2 20.6 23.6 26.4 376 2.9 3.7 +91042700.GGG 124 2.75 5164 18.9 -10.7 -38.1 8.2 7.5 12.4 18.9 27.6 209 2.8 2.7 +91041300.OUN 357 2.75 4063 14.1 -13.7 -42.3 8.0 7.8 17.1 22.0 25.1 205 3.2 2.9 +91040300.OUN 357 2.75 1560 10.1 -19.8 -43.3 7.3 6.6 15.1 22.6 41.7 275 1.3 1.5 +91032700.DDC 791 2.75 3132 12.4 -14.2 -40.5 8.2 7.2 18.9 40.7 44.0 160 2.9 2.1 +91032200.UMN 438 2.75 2632 11.5 -15.3 -44.0 7.0 7.9 18.8 33.0 35.3 371 2.1 2.5 +90090600.STC 315 2.75 4899 19.5 -6.8 -33.9 6.2 7.2 14.7 21.0 17.1 294 1.4 1.0 +90082800.SSM 221 2.75 5115 18.2 -8.5 -36.7 6.2 7.5 20.5 31.6 29.9 334 2.4 1.1 +90081100.LBF 847 2.75 3971 14.8 -9.0 -36.8 7.5 7.5 14.3 25.6 21.5 282 2.2 2.9 +90070700.BIS 504 2.75 3274 14.9 -7.5 -34.7 6.9 7.3 12.9 19.0 25.7 316 1.0 2.2 +90070300.BIS 504 2.75 6982 21.3 -6.3 -31.9 8.2 6.8 14.9 23.0 29.6 172 2.7 4.6 +90061900.LBF 847 2.75 7070 19.2 -6.1 -35.5 8.4 7.9 18.5 30.2 38.1 266 3.2 3.6 +90060200.STC 315 2.75 2697 13.4 -13.3 -39.7 8.5 7.2 10.4 18.6 17.2 132 1.8 2.2 +90060200.LBF 847 2.75 3719 13.6 -10.8 -39.9 7.9 7.9 16.4 15.6 29.4 89 1.6 2.4 +90053100.GGG 124 2.75 4743 19.3 -5.7 -33.3 6.1 7.3 21.5 27.2 25.7 317 1.4 0.7 +90052000.OUN 357 2.75 4565 15.3 -10.8 -39.0 7.1 7.6 12.1 13.7 14.7 94 1.6 3.1 +90051900.LBF 847 2.75 3954 12.1 -13.9 -42.1 8.6 7.8 16.2 25.1 24.6 398 3.4 2.0 +90051700.GGG 124 2.75 3234 17.5 -8.3 -36.2 7.2 7.4 17.6 24.7 35.1 304 1.5 0.6 +90050100.AHN 246 2.75 4557 14.9 -12.6 -41.5 7.7 7.9 19.7 14.7 9.3 92 2.1 3.4 +90042800.GGG 124 2.75 2263 12.9 -14.9 -41.0 6.6 7.1 12.8 14.1 25.3 84 1.0 2.8 +90041700.OUN 357 2.75 3717 13.6 -15.0 -44.3 8.3 8.1 17.2 11.5 20.5 152 1.7 3.8 +90031400.PIA 200 2.75 2115 12.4 -14.4 -41.2 6.9 7.4 15.3 18.1 24.1 206 1.1 2.6 +90021600.JAN 91 2.75 2047 15.2 -10.9 -40.4 6.6 8.0 18.9 20.9 34.6 124 1.0 -999.0 +89090400.LBF 847 2.75 4599 17.3 -8.6 -36.0 8.3 7.3 8.6 29.6 38.8 223 2.9 3.3 +89082900.STC 315 2.75 1959 14.6 -10.0 -35.2 6.8 6.8 18.0 26.3 44.7 147 1.1 1.1 +89082200.STC 315 2.75 3346 16.2 -11.1 -35.6 6.9 6.7 11.9 20.6 30.6 173 1.7 1.2 +89082200.OMA 400 2.75 4223 17.9 -8.3 -30.9 7.0 6.0 15.0 22.2 45.4 138 1.8 0.9 +89082200.HON 392 2.75 4160 15.6 -9.4 -38.2 6.9 7.8 14.8 22.9 28.9 107 2.0 3.3 +89081600.AMA 1095 2.75 2669 12.8 -7.1 -34.8 6.9 7.4 10.5 17.0 24.9 158 0.7 2.5 +89062600.RAP 966 2.75 2246 11.5 -13.8 -40.7 7.8 7.4 20.0 31.3 30.4 301 1.8 2.6 +89061300.AMA 1095 2.75 3611 14.4 -10.8 -36.6 8.1 7.0 9.9 15.8 22.1 79 1.6 3.0 +89060300.TOP 268 2.75 2623 13.7 -12.6 -38.3 7.0 7.0 12.4 19.5 39.7 118 1.5 2.0 +89060300.MAF 873 2.75 2291 11.9 -8.4 -34.6 7.6 7.0 13.3 19.3 32.2 147 0.8 2.2 +89060200.MAF 873 2.75 3193 14.1 -10.4 -34.9 7.9 6.6 8.5 24.5 27.4 104 2.1 2.8 +58042200.FWH 180 2.75 3338 13.3 -16.1 -39.0 7.8 6.3 25.5 37.0 49.4 276 3.6 2.4 +07021400.BMX 178 2.75 1032 9.9 -19.1 -44.7 7.0 7.1 19.5 20.7 36.3 245 0.7 2.4 +06082600.DDC 790 2.75 3488 16.5 -5.5 -31.7 6.5 6.9 17.6 20.2 26.5 141 0.8 0.8 +06081000.BIS 506 2.75 2589 13.0 -8.9 -35.7 7.5 7.2 8.8 19.1 18.8 147 1.0 2.6 +06062200.DDC 790 2.75 2406 12.7 -8.7 -34.9 8.1 7.0 11.0 21.1 24.9 175 1.1 2.4 +06050800.MAF 872 2.75 2440 11.9 -12.5 -36.9 8.0 6.6 22.1 33.3 51.2 327 1.9 2.3 +06050718.CHS 15 2.75 2580 12.9 -12.5 -40.1 6.0 7.5 15.9 17.7 18.8 177 1.1 2.0 +06050500.MAF 872 2.75 3709 11.5 -12.1 -42.7 8.1 8.4 21.7 27.6 34.4 372 2.7 1.7 +06050300.DRT 313 2.75 3549 13.7 -12.1 -37.1 8.5 6.8 5.1 14.2 19.0 74 1.7 2.1 +06042000.BMX 178 2.75 2242 13.1 -11.9 -37.1 7.1 6.8 11.3 21.7 27.0 122 1.3 2.1 +06041400.DVN 229 2.75 1524 11.2 -15.7 -35.1 8.3 5.6 15.8 30.6 30.3 263 1.4 3.4 +06031218.TOP 270 2.75 2814 12.6 -17.9 -44.3 8.5 7.3 33.9 44.8 54.9 723 3.5 2.7 +05092300.ILX 178 2.75 1858 14.1 -8.1 -33.3 6.9 6.7 11.5 21.5 16.8 121 0.7 0.8 +05051000.FWD 171 2.75 4841 15.5 -11.5 -42.1 6.7 8.3 9.5 18.0 25.9 152 2.2 2.9 +05042300.JAN 101 2.75 2558 13.6 -14.7 -39.7 7.1 6.9 19.9 28.5 34.1 183 2.3 2.7 +05042100.DDC 790 2.75 4722 13.2 -15.3 -43.5 8.6 7.7 15.2 16.1 14.9 174 3.1 2.1 +05041800.AMA 1099 2.75 1767 9.4 -17.3 -43.3 8.7 7.2 15.5 19.6 22.9 211 1.4 1.9 +05022200.FFC 244 2.75 1389 11.4 -16.3 -43.1 7.0 7.4 20.7 28.5 35.4 225 1.2 1.7 +04070500.DDC 790 2.75 3819 14.3 -10.3 -37.7 8.3 7.4 14.4 18.6 30.5 161 2.0 2.5 +04060300.FWD 171 2.75 4767 16.9 -11.1 -36.5 8.7 6.9 14.1 19.1 24.1 157 2.9 -999.0 +04053000.TOP 270 2.75 3882 15.9 -12.9 -39.3 8.7 7.1 14.8 22.4 15.3 295 3.2 3.2 +04051300.OUN 357 2.75 5740 16.8 -11.5 -40.5 8.2 7.9 12.4 15.2 20.9 131 2.7 3.6 +04051223.LMN 317 2.75 4076 15.9 -10.5 -40.3 7.4 8.1 21.9 22.7 30.4 304 2.3 2.4 +04051100.DNR 1625 2.75 3995 10.6 -12.9 -41.1 9.2 7.8 18.2 28.3 16.6 379 3.4 1.5 +04050600.WAL 12 2.75 1861 9.3 -21.3 -47.5 7.2 7.4 21.3 20.2 28.3 239 1.5 1.4 +04040500.CRP 13 2.75 2478 14.9 -12.1 -39.1 6.7 7.3 7.0 22.4 20.6 184 1.5 0.6 +04032800.OUN 357 2.75 2904 12.6 -15.9 -44.3 7.8 7.8 16.4 23.3 31.1 315 2.5 2.8 +04032718.DDC 790 2.75 4133 13.2 -17.3 -42.1 8.0 6.9 14.4 24.6 26.6 143 4.4 2.3 +03100600.AMA 1099 2.75 2542 12.2 -10.3 -39.3 6.4 7.8 12.9 24.1 30.2 50 1.2 2.5 +03091100.MAF 872 2.75 2808 13.3 -6.5 -32.5 6.8 6.9 7.4 10.3 9.0 80 0.4 1.4 +03091000.DDC 790 2.75 3620 14.8 -7.7 -34.7 7.5 7.2 11.3 12.1 15.8 233 0.8 3.0 +03061400.AMA 1099 2.75 3153 12.3 -13.3 -39.3 8.3 7.1 13.7 21.7 24.7 35 2.2 2.1 +03060500.AMA 1099 2.75 2647 11.9 -11.9 -36.9 7.6 6.8 13.1 23.0 28.5 167 1.5 2.1 +03051700.SHV 79 2.75 3995 16.3 -10.9 -37.3 7.4 7.2 19.6 23.2 13.9 242 2.4 2.7 +03051600.AMA 1099 2.75 3706 14.1 -10.3 -37.5 8.9 7.4 34.9 42.9 37.7 632 3.0 -999.0 +03051400.SHV 79 2.75 3920 16.7 -9.5 -38.5 7.2 7.8 19.3 27.2 37.0 389 2.3 0.8 +03051000.OUN 357 2.75 5328 16.8 -11.1 -38.1 8.3 7.3 16.8 27.5 34.8 182 4.3 3.6 +03050700.FWD 171 2.75 5303 17.8 -9.7 -37.7 7.1 7.5 8.4 30.4 36.2 126 3.2 3.5 +03050618.SGF 387 2.75 5492 15.6 -14.7 -43.9 7.7 8.0 17.8 32.0 40.6 313 5.5 2.8 +03050100.TOP 270 2.75 3922 13.0 -14.1 -43.5 7.8 8.1 13.9 17.2 19.6 117 2.3 2.7 +03042900.SGF 387 2.75 3399 13.1 -16.7 -43.3 8.5 7.3 4.8 5.0 19.6 53 1.1 2.8 +03042600.BMX 178 2.75 3921 14.2 -13.3 -41.1 6.2 7.6 26.6 35.8 33.5 89 2.8 2.7 +03042500.LZK 78 2.75 3423 13.8 -15.7 -43.1 7.6 7.6 20.0 20.9 31.0 212 2.8 3.3 +03040618.LZK 78 2.75 2556 13.1 -15.9 -41.3 7.6 7.0 28.4 35.1 38.9 600 2.6 3.1 +03031300.SHV 79 2.75 2901 13.5 -15.3 -43.1 7.1 7.7 11.0 17.1 24.1 162 1.7 2.0 +02081200.LBF 849 2.75 3735 13.3 -9.9 -37.1 8.7 7.3 10.5 13.1 11.8 222 1.3 2.1 +02072700.TOP 270 2.75 6406 19.3 -5.3 -32.5 6.9 7.1 9.1 18.2 19.3 131 1.4 2.6 +02072000.TOP 270 2.75 4986 17.5 -7.5 -32.9 7.3 6.8 8.5 10.0 12.7 197 0.9 2.7 +02062500.ABR 396 2.75 4208 15.1 -7.1 -37.7 6.8 8.2 11.1 19.1 19.3 20 1.3 3.1 +02062400.BIS 506 2.75 3559 16.0 -9.7 -34.1 6.8 6.6 25.2 28.0 24.8 298 2.1 2.4 +02061300.AMA 1099 2.75 3027 13.7 -8.5 -31.9 8.4 6.3 18.7 29.6 33.0 65 1.9 2.5 +02060500.AMA 1099 2.75 2947 13.2 -11.5 -38.3 7.6 7.3 17.9 32.1 45.0 309 2.2 2.7 +02052400.AMA 1099 2.75 4729 13.8 -13.3 -39.9 8.3 7.2 18.5 28.8 21.8 258 4.5 2.3 +02051800.DRT 313 2.75 5077 16.0 -10.5 -37.1 8.1 7.2 5.2 8.8 6.3 15 1.2 2.6 +01112418.BMX 178 2.75 2902 15.1 -11.3 -39.7 6.1 7.7 22.2 26.9 31.9 328 1.7 0.8 +01072500.GGW 700 2.75 1714 11.5 -11.3 -36.3 6.9 6.8 18.2 26.7 32.1 350 1.0 2.2 +01071900.BIS 506 2.75 5738 17.8 -9.9 -36.1 8.6 7.1 14.1 21.8 28.8 183 3.4 2.9 +01071900.ABR 396 2.75 5356 17.5 -10.5 -35.1 8.8 6.6 3.4 18.1 22.7 35 2.9 2.7 +01071800.INL 361 2.75 4580 17.0 -12.9 -37.7 7.8 6.7 11.8 11.9 12.8 154 1.8 0.8 +01070100.RAP 1029 2.75 3235 14.3 -10.7 -35.7 7.7 6.8 12.9 30.8 40.7 114 2.3 2.6 +01061900.MPX 287 2.75 5114 15.6 -11.9 -39.3 9.2 7.5 19.0 33.1 31.9 154 4.9 3.4 +01061700.TOP 270 2.75 4594 15.7 -13.7 -41.9 8.5 7.8 15.7 22.1 26.6 214 3.8 3.4 +01061700.LMN 317 2.75 4093 14.1 -10.7 -37.9 8.0 7.3 9.3 19.4 26.9 195 2.2 3.5 +01061400.OAX 350 2.75 4956 17.2 -11.3 -38.5 9.0 7.4 18.5 20.4 25.5 153 3.3 3.8 +01061000.ABR 396 2.75 3453 13.8 -12.1 -39.9 7.8 7.5 16.6 24.6 32.3 158 2.6 3.6 +01060800.DNR 1625 2.75 3440 13.9 -8.7 -36.7 7.2 7.6 7.4 25.3 21.9 -26 1.8 3.1 +01060600.AMA 1099 2.75 4665 14.9 -8.9 -36.7 7.2 7.5 11.9 15.8 15.6 191 1.5 2.3 +01052500.FFC 244 2.75 2338 11.7 -14.5 -43.1 6.4 7.9 19.6 18.1 21.4 240 1.1 2.5 +01050620.LMN 317 2.75 4496 15.4 -16.1 -43.1 7.3 7.5 7.3 11.5 20.9 60 2.0 3.1 +01042100.OAX 350 2.75 3283 12.4 -15.3 -43.1 7.7 7.7 23.5 28.1 32.7 282 3.1 2.4 +01040400.LZK 78 2.75 4223 15.2 -15.1 -42.1 8.5 7.4 11.9 18.1 24.8 105 3.2 3.1 +00121618.BMX 178 2.75 2219 13.2 -14.1 -42.7 6.7 7.9 25.0 32.9 45.8 266 1.8 0.9 +00072700.OAX 350 2.75 5048 18.5 -9.7 -35.3 8.0 6.9 16.7 21.8 23.2 215 2.8 2.6 +00072500.LBF 849 2.75 5901 17.1 -8.9 -38.1 8.5 7.8 22.2 24.5 29.4 162 3.5 2.9 +00072100.LBF 849 2.75 3073 15.3 -11.3 -37.5 7.8 7.1 16.9 26.5 39.4 223 2.3 2.0 +00071700.MHX 11 2.75 2929 15.1 -12.3 -36.1 7.2 6.4 7.9 18.2 29.9 81 1.5 2.3 +00071000.LBF 849 2.75 5871 18.1 -5.5 -32.5 7.8 7.2 10.7 14.3 19.9 146 1.2 3.5 +00071000.GGW 700 2.75 3180 15.6 -10.9 -35.1 7.0 6.5 23.2 18.4 13.5 248 1.5 2.6 +00062000.LBF 849 2.75 4028 14.9 -8.5 -37.9 6.8 7.9 11.9 18.8 23.9 96 1.4 3.0 +00061400.AMA 1099 2.75 5758 16.5 -4.9 -34.9 7.6 7.9 19.9 23.8 32.0 244 1.8 2.5 +00061200.BIS 506 2.75 2000 11.3 -13.1 -39.9 7.5 7.4 10.2 22.0 28.0 306 1.2 2.5 +00052700.OUN 357 2.75 5870 18.3 -10.1 -37.9 8.4 7.5 12.8 21.5 32.8 117 3.5 4.0 +00051300.DTX 329 2.75 4524 16.9 -8.5 -37.3 7.7 7.7 20.2 24.1 18.5 328 2.3 2.4 +00022500.AMA 1099 2.75 3614 10.3 -18.5 -46.1 8.5 7.7 13.1 26.8 48.5 107 4.0 1.7 +98071100.DDC 790 2.50 4323 18.9 -4.3 -29.9 6.2 6.8 16.0 12.7 15.2 230 0.6 0.6 +96072200.LBF 847 2.50 4756 18.4 -6.5 -34.7 7.2 7.5 19.0 20.0 29.4 94 1.4 2.1 +96071900.GRB 210 2.50 4746 20.7 -7.5 -31.3 6.4 6.3 20.0 26.3 26.2 164 1.9 0.7 +96062100.DEN 1611 2.50 5603 15.2 -8.1 -36.1 9.6 7.6 8.8 27.5 33.4 155 3.8 2.2 +96061200.LBF 847 2.50 2310 11.7 -9.9 -37.5 7.5 7.4 12.7 16.7 22.2 122 0.8 2.4 +96060300.AMA 1095 2.50 2356 11.0 -10.5 -39.7 6.9 7.9 18.0 27.6 31.6 256 1.2 2.0 +96060100.DDC 791 2.50 2888 13.3 -10.9 -38.5 8.3 7.4 13.9 13.3 19.3 111 1.1 2.5 +96051800.MPX 287 2.50 4406 16.3 -8.9 -38.5 8.2 8.0 20.7 13.0 23.4 259 1.4 3.4 +96042200.FTD 196 2.50 1872 12.0 -12.6 -38.7 8.2 7.1 18.3 27.1 34.0 298 1.5 -999.0 +96030700.TLH 26 2.50 2615 15.4 -10.4 -39.0 6.0 7.7 20.7 20.9 23.7 320 1.1 0.6 +95081212.MPX 287 2.50 3361 19.1 -6.3 -31.3 7.2 6.7 23.0 20.6 36.8 164 1.0 -999.0 +95061600.TFX 1130 2.50 3142 13.0 -12.0 -37.7 8.4 7.0 23.8 27.7 35.6 277 2.7 2.3 +95060700.DEN 1611 2.50 3137 12.3 -10.8 -35.7 9.2 6.8 20.7 37.2 35.9 284 2.4 2.0 +95052912.MAF 873 2.50 1617 13.0 -11.3 -37.2 7.5 7.0 13.7 27.6 22.0 284 1.1 1.9 +95051900.GSO 277 2.50 1758 13.4 -11.8 -35.2 7.9 6.3 23.6 25.3 27.1 83 1.3 -999.0 +95051600.MAF 873 2.50 3261 13.6 -7.8 -34.0 8.4 7.1 10.3 21.7 28.8 134 1.5 1.8 +95050900.TOP 268 2.50 1495 10.0 -19.3 -39.2 6.9 5.6 21.2 19.3 22.8 126 1.0 1.2 +95050800.LCH 5 2.50 3259 17.9 -9.9 -35.6 7.1 6.9 10.2 16.7 31.1 119 1.2 0.6 +95050800.FTD 196 2.50 2700 16.5 -10.4 -38.9 7.7 7.7 24.5 30.8 30.8 407 1.9 0.8 +94062600.TOP 268 2.50 4265 16.4 -8.6 -35.2 8.4 7.1 21.6 25.2 45.9 418 2.5 2.9 +94032800.AHN 246 2.50 2627 14.4 -10.5 -35.7 6.2 6.8 30.4 34.5 24.7 518 1.5 0.7 +93070300.TOP 270 2.50 4019 18.5 -7.2 -31.5 7.1 6.5 15.2 15.8 16.4 202 1.0 0.7 +93070200.HON 392 2.50 2619 14.6 -11.3 -39.6 7.0 7.7 12.6 28.3 40.3 143 1.8 0.8 +93061400.TOP 270 2.50 4195 16.5 -8.5 -35.1 7.7 7.1 10.7 12.5 17.8 65 1.1 2.8 +93033000.DRT 314 2.50 2680 12.7 -13.4 -39.4 8.2 7.1 26.0 39.6 44.0 411 2.4 2.8 +92070200.DEN 1611 2.50 2313 11.7 -11.2 -35.2 8.0 6.5 20.0 27.6 29.9 362 1.6 2.5 +92041600.AMA 1095 2.50 3362 11.1 -13.4 -40.9 7.6 7.5 12.0 16.0 17.8 127 1.5 1.7 +92030400.SEP 399 2.50 2676 12.7 -15.3 -44.8 7.7 8.1 9.2 20.1 27.2 133 1.9 2.3 +91080200.CAR 191 2.50 1891 12.3 -13.7 -41.6 6.3 7.6 11.9 19.6 33.3 223 0.9 1.8 +91071800.STC 315 2.50 4956 18.2 -8.7 -32.0 7.3 6.3 21.9 18.7 20.1 104 1.9 2.5 +91053100.DEN 1611 2.50 3551 12.0 -12.1 -39.1 9.5 7.4 10.7 27.3 45.8 149 3.1 1.9 +91052700.LBF 847 2.50 2669 11.9 -13.4 -38.4 7.9 6.8 13.0 13.9 32.3 35 1.1 2.1 +91051200.AMA 1095 2.50 4539 14.3 -10.8 -37.8 8.5 7.3 16.7 12.4 14.9 208 1.7 2.3 +91050800.MAF 873 2.50 3415 11.2 -14.8 -41.4 8.4 7.3 25.4 31.1 36.7 280 3.1 1.6 +91042100.AYS 44 2.50 2563 11.8 -16.9 -41.9 7.4 6.9 10.3 13.4 30.0 76 1.2 1.7 +91041900.SEP 399 2.50 5996 17.6 -13.2 -38.3 7.4 6.8 13.0 13.5 44.8 24 2.6 3.1 +90083100.CHS 13 2.50 2477 16.0 -8.5 -33.3 6.5 6.6 8.3 17.0 17.7 67 0.8 0.6 +90070200.GSO 277 2.50 3963 14.8 -10.0 -35.9 7.2 7.0 10.7 26.0 16.3 100 2.4 2.2 +90062200.ALB 86 2.50 1833 12.6 -14.1 -41.8 6.7 7.6 20.6 32.5 29.1 203 1.4 1.6 +90061500.DDC 791 2.50 4667 16.0 -6.5 -35.9 7.9 7.8 15.7 28.4 30.1 306 2.1 2.7 +90060700.DEN 1611 2.50 2393 10.9 -8.2 -36.5 9.0 7.6 19.6 26.3 23.9 170 1.2 1.6 +90060300.PAH 126 2.50 3663 17.8 -7.6 -36.2 7.0 7.6 29.8 24.0 25.9 367 1.5 0.6 +08110600.OUN 357 2.50 1623 11.4 -12.5 -39.9 6.9 7.5 24.8 29.8 32.7 317 1.0 2.4 +06071123.LMN 317 2.50 2996 16.5 -5.9 -29.5 6.7 6.2 9.4 12.6 11.2 110 0.5 0.6 +06062500.DNR 1625 2.50 987 7.1 -11.5 -38.9 8.9 7.4 12.5 26.1 26.5 -172 0.7 0.9 +06061400.RAP 1029 2.50 2691 11.5 -7.7 -35.5 8.3 7.5 15.3 17.3 24.5 248 0.8 1.6 +06052600.SGF 387 2.50 3409 13.9 -9.5 -39.1 6.5 8.0 18.8 18.9 23.2 262 1.3 2.5 +06050900.JAN 101 2.50 3303 16.1 -13.3 -38.7 7.3 6.9 14.9 28.4 39.9 170 2.8 1.9 +05050700.MAF 872 2.50 3257 10.7 -12.3 -41.3 8.0 7.9 11.2 20.3 24.6 48 1.7 1.6 +05050322.XMR 3 2.50 2165 13.4 -13.9 -38.9 7.6 6.8 21.5 23.3 41.5 82 1.7 1.2 +04102400.JAN 101 2.50 1938 15.8 -6.9 -33.5 5.3 7.1 19.3 30.8 27.8 328 0.6 0.6 +04091500.LBF 849 2.50 1474 12.8 -10.7 -38.3 8.0 7.4 20.5 35.4 39.8 306 1.0 -999.0 +04080700.ABR 396 2.50 2792 13.1 -9.3 -36.7 6.7 7.4 12.1 21.0 25.9 240 1.1 2.5 +04040400.EPZ 1252 2.50 4482 12.1 -17.9 -46.3 8.2 7.9 11.6 29.1 25.4 203 5.1 2.1 +04032718.OUN 357 2.50 2825 12.6 -14.9 -42.3 7.3 7.6 11.5 21.1 32.3 199 2.0 2.1 +03062200.RAP 1029 2.50 3380 10.6 -13.7 -39.5 8.0 7.1 18.7 27.5 42.2 189 2.6 1.5 +03051500.SHV 79 2.50 4260 16.8 -9.9 -36.1 6.8 7.1 16.3 33.7 42.9 246 2.5 0.8 +02072500.ABR 396 2.50 3995 15.0 -11.5 -38.9 7.9 7.5 13.8 28.3 28.6 207 3.2 3.0 +02051700.AMA 1099 2.50 5036 13.8 -12.7 -40.5 8.7 7.6 17.4 21.9 26.5 216 3.9 2.2 +02041900.DVN 229 2.50 2861 12.3 -14.5 -39.9 8.2 7.0 15.9 14.1 20.0 213 1.4 2.5 +02041212.AMA 1099 2.50 2907 12.2 -13.7 -42.7 7.5 7.9 14.6 20.4 25.1 184 1.8 2.8 +02040300.JAX 9 2.50 3327 14.8 -14.3 -41.7 7.2 7.4 11.8 11.5 30.9 80 1.3 1.5 +01101000.DDC 790 2.50 3299 12.9 -9.7 -40.3 6.4 8.3 16.4 18.8 18.3 275 1.2 2.5 +01082400.AMA 1099 2.50 4318 15.4 -6.7 -34.3 7.4 7.4 21.0 24.0 28.1 158 1.7 2.8 +01070500.LBF 849 2.50 3571 14.5 -7.7 -36.3 7.7 7.6 17.1 26.0 27.0 313 1.8 2.9 +01070400.RAP 1029 2.50 3145 13.2 -11.1 -37.9 8.3 7.3 12.9 25.2 26.1 144 2.3 2.6 +01052620.LMN 317 2.50 4355 14.1 -13.5 -40.9 6.4 7.5 20.2 27.3 33.2 233 3.3 2.9 +01052500.BMX 178 2.50 2388 11.9 -14.9 -43.1 6.7 7.7 23.5 29.2 27.4 436 1.8 2.7 +01050400.MAF 872 2.50 3866 13.7 -11.3 -36.7 7.2 6.9 11.4 12.8 33.8 101 1.3 2.7 +01050100.OAX 350 2.50 2265 10.4 -16.9 -44.5 7.7 7.7 19.2 17.4 17.0 226 1.3 2.2 +01042200.DDC 790 2.50 3749 13.3 -12.1 -41.1 7.3 7.9 24.2 33.4 45.3 510 2.8 2.7 +01041700.MAF 872 2.50 4552 13.9 -12.1 -39.1 7.5 7.3 8.0 16.2 30.6 100 2.2 2.2 +00091100.MPX 287 2.50 4554 16.6 -10.3 -39.5 7.0 7.9 18.4 22.0 24.0 271 2.4 3.2 +00080500.BIS 506 2.50 4830 17.0 -8.7 -35.1 6.9 7.2 4.0 17.2 22.9 86 1.6 3.3 +00070600.LBF 849 2.50 5506 18.2 -7.1 -32.3 8.3 6.6 11.8 25.3 35.5 155 2.6 3.5 +00070200.ABR 396 2.50 5952 17.8 -10.3 -38.1 8.4 7.5 8.1 12.2 23.4 147 2.0 3.9 +00062400.OAX 350 2.50 4783 17.5 -8.7 -35.5 7.2 7.2 14.9 18.7 28.2 195 1.8 2.3 +00061000.RAP 966 2.50 3610 13.2 -8.1 -37.9 7.8 8.0 11.9 14.3 21.1 70 1.0 2.1 +00052300.MHX 11 2.50 3613 15.1 -13.5 -41.7 6.5 7.7 10.5 15.3 26.5 79 1.6 2.4 +00051200.DVN 229 2.50 4865 15.6 -8.1 -39.3 7.4 8.4 19.3 24.8 24.9 225 2.3 3.4 +00050100.FWD 196 2.50 3593 14.3 -13.1 -41.5 7.2 7.8 19.0 17.3 18.5 401 1.9 1.7 +00032700.SGF 387 2.50 1766 9.8 -18.3 -45.1 7.5 7.4 21.4 34.3 43.9 350 1.7 2.2 +00021400.LZK 165 2.50 2091 10.7 -20.3 -45.7 6.4 7.1 22.2 21.1 24.5 245 1.5 2.1 +00061300.OAX 350 2.25 5453 17.7 -11.5 -38.7 8.5 7.3 12.9 15.8 19.3 206 2.7 4.0 +99053100.TOP 270 2.00 2215 13.1 -10.9 -39.7 6.8 7.8 14.7 18.6 12.2 189 1.0 1.4 +99050400.DRT 307 2.00 5609 17.4 -10.1 -40.7 7.5 8.3 21.2 40.5 38.9 342 3.7 4.6 +98063000.BUF 215 2.00 2615 14.5 -10.5 -38.3 6.1 7.5 8.5 23.6 28.2 86 1.3 1.7 +98062500.APX 448 2.00 3453 15.8 -11.3 -34.3 7.3 6.2 21.9 28.9 35.4 348 2.5 3.3 +98033100.FWD 196 2.00 2873 13.3 -14.3 -40.7 7.2 7.2 17.6 29.6 57.5 93 2.5 2.9 +90091400.STC 315 2.00 2123 13.1 -10.9 -38.5 7.4 7.5 23.2 27.8 39.0 564 1.4 -999.0 +90072600.TBW 13 2.00 4330 18.4 -6.3 -31.8 5.7 6.8 6.3 3.5 8.5 7 0.4 0.6 +90061400.PIA 200 2.00 3570 18.1 -7.0 -32.9 7.0 6.9 9.5 16.5 23.4 134 0.9 0.6 +90060900.PIT 360 2.00 4095 16.7 -9.5 -35.8 6.7 7.0 18.8 18.1 13.6 236 1.5 1.0 +89103000.OUN 357 2.00 2163 12.5 -14.7 -42.6 6.6 7.6 13.1 18.0 18.1 195 1.1 1.6 +89082100.LBF 847 2.00 3307 14.8 -9.1 -35.7 7.1 7.1 8.0 28.0 44.7 83 1.9 3.0 +89071100.HON 392 2.00 3126 15.7 -7.0 -31.9 6.9 6.6 12.3 14.6 18.6 151 0.7 1.2 +89052800.ELP 1199 2.00 2569 11.2 -6.8 -34.2 8.0 7.3 14.9 11.3 17.1 232 0.4 1.4 +06090100.DDC 790 2.00 1972 12.2 -7.7 -34.9 7.1 7.2 13.9 15.6 27.4 363 0.5 1.6 +06062700.ILX 178 2.00 2025 12.2 -15.7 -43.1 6.4 7.6 5.2 3.5 11.7 15 0.4 1.2 +06061400.TFX 1131 2.00 2827 12.3 -9.7 -36.9 8.1 7.3 14.3 15.9 28.9 65 1.0 2.1 +06052400.DDC 790 2.00 1607 10.2 -8.7 -36.9 7.6 7.6 17.0 22.4 19.3 189 0.6 1.8 +06051600.MFL 5 2.00 2473 15.8 -11.1 -35.3 6.8 6.6 18.7 26.6 21.2 227 1.6 0.6 +06050800.DDC 790 2.00 1674 9.5 -17.1 -43.7 8.9 7.4 16.1 16.8 27.8 248 1.1 2.6 +06041600.TOP 270 2.00 2191 12.2 -12.9 -37.7 8.2 6.7 28.5 37.2 42.6 533 1.8 2.9 +06040700.TOP 270 2.00 2249 11.0 -15.1 -41.9 7.4 7.4 15.8 35.7 27.3 206 1.8 2.1 +05050900.LMN 317 2.00 2971 12.0 -16.1 -42.3 7.8 7.2 15.9 15.1 29.6 290 1.6 2.2 +05050700.LBF 849 2.00 3058 9.7 -14.3 -42.7 8.2 7.9 6.1 12.5 21.7 135 1.2 1.4 +05022100.SGF 387 2.00 1128 9.1 -18.9 -48.7 6.8 8.3 17.1 27.7 36.6 97 1.0 1.9 +04091200.GRB 214 2.00 2256 12.3 -14.9 -39.7 7.2 6.8 11.6 14.7 24.8 64 1.0 1.0 +04082400.BIS 506 2.00 2596 13.4 -11.1 -36.5 7.6 6.9 16.4 21.3 22.3 208 1.5 2.2 +04072300.TOP 270 2.00 3276 16.0 -7.7 -31.5 6.4 6.3 11.4 15.8 19.6 158 0.8 0.7 +04062400.GRB 214 2.00 1604 10.4 -16.9 -45.3 6.3 7.9 16.4 25.3 36.9 128 1.1 2.4 +04052200.DDC 790 2.00 3809 13.5 -9.7 -37.9 8.1 7.6 20.3 21.0 27.0 297 2.0 2.2 +04043000.JAN 101 2.00 1469 13.6 -12.7 -38.7 6.5 7.0 18.1 27.4 22.8 184 1.1 0.6 +03051900.TBW 13 2.00 3797 17.1 -10.9 -35.3 6.8 6.6 4.0 5.9 5.0 -4 0.6 1.0 +02062600.MPX 287 2.00 6228 19.6 -9.7 -37.1 7.1 7.4 9.2 18.6 21.8 120 2.6 3.2 +02061300.DVN 229 2.00 3501 17.3 -11.9 -35.7 7.4 6.5 10.0 26.3 38.7 100 2.6 1.1 +02052800.LZK 78 2.00 3284 15.1 -12.3 -37.7 6.5 6.9 2.6 4.4 12.3 13 0.6 0.6 +02041800.OAX 350 2.00 2113 11.4 -14.5 -43.5 7.6 8.0 24.0 33.9 35.5 376 1.7 2.2 +01101000.OUN 357 2.00 3485 15.6 -12.9 -39.9 7.9 7.3 23.9 24.4 28.2 447 2.8 2.5 +01090800.TOP 270 2.00 4174 17.8 -11.3 -34.9 8.1 6.4 24.5 26.2 26.7 274 3.2 1.7 +01090800.OUN 357 2.00 4351 17.6 -8.7 -33.7 7.8 6.7 21.8 26.1 21.2 151 2.5 2.3 +01082400.DDC 790 2.00 4283 16.4 -7.5 -33.9 7.7 7.0 11.9 14.7 16.3 77 1.2 3.1 +01082300.TOP 270 2.00 4361 16.7 -9.7 -33.7 7.6 6.5 13.6 9.9 23.0 192 1.0 2.3 +01072000.RAP 1029 2.00 4486 15.1 -8.7 -35.5 8.4 7.2 10.9 15.4 26.3 71 1.6 2.4 +01071300.GGW 700 2.00 3042 14.5 -10.1 -36.3 8.1 7.1 7.9 16.5 34.2 19 1.3 3.5 +01063000.FWD 171 2.00 4122 16.8 -9.7 -36.7 6.9 7.3 9.2 11.2 19.2 133 1.0 1.6 +01062100.DNR 1625 2.00 2544 10.8 -11.5 -39.3 7.5 7.5 20.5 21.4 23.2 192 1.2 2.1 +01053100.LCH 10 2.00 3988 17.4 -8.3 -37.7 7.0 7.9 0.8 8.3 13.9 8 0.6 2.4 +01053100.FWD 171 2.00 4571 15.8 -12.3 -40.5 8.7 7.7 13.7 12.4 20.6 106 2.0 3.9 +01053000.DDC 790 2.00 2892 15.2 -12.1 -35.1 8.0 6.2 14.8 19.5 26.6 388 1.8 1.8 +01052800.OUN 357 2.00 4910 16.5 -10.7 -40.3 7.6 8.0 16.9 29.7 38.8 113 3.5 3.1 +01052700.DDC 790 2.00 2853 11.3 -12.1 -40.1 6.7 7.6 19.3 30.6 37.1 184 1.7 1.8 +01051200.OUN 357 2.00 3098 13.2 -13.9 -40.5 7.1 7.3 8.7 10.0 10.8 132 1.0 2.1 +01050702.LZK 78 2.00 2759 14.2 -12.9 -40.5 5.9 7.5 7.3 18.7 26.3 77 1.3 2.0 +01050700.SGF 387 2.00 4025 14.5 -13.7 -42.3 6.1 7.9 10.5 8.8 17.0 202 1.0 3.1 +01050600.FWD 171 2.00 3092 15.4 -12.7 -38.7 6.8 7.1 19.4 32.7 34.4 170 2.3 2.1 +01042200.MAF 872 2.00 4543 13.7 -12.3 -39.7 8.4 7.5 12.3 27.4 36.2 164 4.1 2.2 +01042200.AMA 1099 2.00 6059 14.1 -15.3 -41.1 9.2 5.4 16.6 35.7 38.3 320 7.4 3.3 +00072300.LBF 849 2.00 2926 13.2 -11.5 -38.1 7.1 7.2 13.6 25.2 27.3 91 1.9 2.8 +00071500.BIS 506 2.00 5132 16.5 -9.5 -35.1 8.1 6.9 14.6 27.6 34.1 152 3.4 2.7 +00071100.GGW 700 2.00 3230 14.2 -11.3 -38.9 6.9 7.5 16.9 30.1 48.1 88 2.2 3.0 +00061500.JAX 9 2.00 4801 17.9 -8.7 -34.3 6.4 6.9 3.6 6.2 13.3 55 0.6 1.1 +00061300.LBF 849 2.00 4790 13.9 -9.9 -37.9 8.3 7.5 9.9 16.6 18.6 159 2.1 2.0 +00061200.AMA 1099 2.00 5720 16.8 -10.3 -34.7 8.3 6.6 15.7 16.1 28.7 88 2.6 2.7 +00032800.JAX 9 2.00 2135 12.5 -14.5 -43.3 6.3 7.9 25.7 29.1 24.7 268 1.6 0.9 +00031600.LMN 317 2.00 1478 9.5 -17.3 -45.5 7.1 7.8 12.9 22.1 10.9 164 1.0 2.2 +00030300.FWD 196 2.00 2589 12.3 -14.3 -41.7 6.2 7.5 20.2 33.4 29.1 239 1.8 2.7 +98062500.FFC 244 1.75 3224 15.8 -8.9 -34.3 7.3 6.8 5.6 4.2 9.9 54 0.5 0.6 +97100900.OUN 357 1.75 3628 16.5 -7.5 -35.9 6.0 7.5 16.6 20.0 29.9 205 1.1 0.8 +94071700.HAT 4 1.75 2973 16.5 -6.0 -31.3 5.7 6.7 4.4 5.9 3.1 33 0.2 0.6 +94071700.1M1 172 1.75 3339 17.7 -6.4 -31.8 5.8 6.7 19.1 12.5 11.3 164 0.5 0.6 +94070100.1M1 172 1.75 4820 18.6 -8.1 -33.0 6.1 6.7 12.6 20.0 18.5 342 1.5 1.0 +94062600.PBI 6 1.75 4199 17.7 -9.1 -34.2 6.6 6.7 5.2 4.9 6.6 10 0.6 1.8 +92051500.1M1 172 1.75 2877 13.3 -11.3 -39.9 6.4 7.8 7.9 11.4 16.3 54 0.7 1.5 +91060600.RAP 966 1.75 2001 13.1 -11.5 -36.7 7.1 6.8 11.9 13.2 19.7 170 0.7 1.4 +91060600.JAN 91 1.75 3344 16.3 -9.1 -33.5 6.8 6.5 3.1 9.5 9.6 12 0.6 0.6 +91053100.AHN 246 1.75 3505 16.3 -6.9 -32.1 5.9 6.7 3.2 3.9 4.1 15 0.3 0.6 +91051700.GGG 124 1.75 5081 18.4 -10.4 -36.4 7.5 7.0 10.5 7.9 11.2 157 1.0 0.9 +91051300.HON 392 1.75 3615 14.7 -9.5 -38.2 7.2 7.7 13.0 14.2 22.7 97 1.1 2.8 +91051300.BIS 504 1.75 1867 13.8 -11.5 -36.7 6.8 6.8 15.8 26.9 19.8 -79 1.3 0.7 +91032700.DAY 298 1.75 1310 10.7 -13.1 -42.1 6.4 7.9 24.3 30.2 30.6 531 0.8 1.8 +90091100.AHN 246 1.75 2857 15.1 -8.6 -34.0 5.9 6.8 6.3 7.9 7.6 80 0.4 0.6 +90090200.MAF 873 1.75 3597 14.9 -6.2 -32.1 6.8 6.8 7.5 17.2 18.3 58 0.8 2.5 +90082600.HON 392 1.75 5529 17.9 -11.5 -38.5 9.1 7.4 9.9 14.7 28.6 156 2.7 -999.0 +90082600.BIS 504 1.75 3187 13.7 -13.2 -42.0 8.6 7.9 13.2 22.2 23.1 190 2.6 2.5 +90082400.OVN 400 1.75 5016 18.7 -7.4 -31.7 6.8 6.5 9.4 7.4 14.7 100 0.6 0.7 +90082100.AMA 1095 1.75 2833 14.6 -5.7 -30.1 6.6 6.5 10.6 11.7 11.3 75 0.4 1.2 +90081500.DDC 791 1.75 3012 15.1 -6.6 -32.5 5.6 6.9 9.9 9.0 15.8 59 0.3 0.6 +90081000.AHN 246 1.75 2234 14.9 -9.4 -35.2 6.2 6.9 6.4 13.3 26.7 33 0.6 0.8 +90080200.LCH 5 1.75 3223 18.4 -7.3 -32.2 6.4 6.6 3.1 6.5 2.0 14 0.3 0.6 +90073100.GGG 124 1.75 3254 16.1 -7.5 -31.9 6.4 6.5 1.2 7.9 5.4 3 0.4 0.6 +90072700.AMA 1095 1.75 3104 14.3 -5.8 -31.4 7.3 6.8 11.1 7.7 7.9 117 0.3 2.2 +90072600.OUN 357 1.75 3546 16.6 -6.8 -32.6 6.2 6.8 11.1 10.8 14.7 206 0.5 0.7 +90072100.ABQ 1619 1.75 1327 10.9 -5.9 -28.5 8.3 6.1 9.8 7.9 14.5 145 0.1 1.3 +90071800.LBF 847 1.75 3138 12.3 -7.7 -36.8 8.2 7.8 10.0 17.7 16.6 115 1.0 1.6 +90071700.FNT 236 1.75 1393 11.9 -12.5 -40.9 6.5 7.7 13.2 15.5 25.3 176 0.5 0.6 +90071400.ABQ 1619 1.75 1588 10.4 -9.4 -32.2 8.7 6.2 4.4 18.9 32.6 70 0.6 1.2 +90071300.CRP 12 1.75 1658 13.3 -6.5 -31.6 6.5 6.7 14.6 12.8 9.3 121 0.3 0.6 +90071100.CKL 145 1.75 2544 15.4 -8.1 -32.3 6.4 6.4 2.1 5.1 4.6 9 0.3 0.6 +90070900.GRB 210 1.75 2962 16.9 -6.5 -31.5 6.5 6.6 12.1 18.2 22.7 82 0.7 0.6 +90070500.LCH 5 1.75 3315 17.6 -8.5 -32.0 6.6 6.3 11.6 15.3 2.5 58 0.9 0.6 +90061800.PIA 200 1.75 4567 19.5 -8.1 -33.4 7.4 6.7 14.1 17.0 25.7 94 1.5 1.0 +90061300.STC 315 1.75 2789 16.2 -10.4 -33.4 7.2 6.2 14.2 36.6 42.0 139 1.8 0.7 +90061100.CHS 13 1.75 4050 17.7 -8.1 -33.2 6.6 6.7 6.4 8.1 19.1 102 0.6 0.6 +90061000.OUN 357 1.75 3242 15.1 -8.5 -33.0 7.8 6.6 10.9 10.1 1.3 21 0.7 2.5 +90061000.IAD 85 1.75 2818 14.9 -9.2 -34.3 6.5 6.7 18.0 16.4 19.3 175 0.9 0.6 +90052800.SIL 8 1.75 3916 18.0 -10.0 -34.5 6.8 6.6 10.4 19.3 10.6 48 1.7 0.8 +90052300.HON 392 1.75 1984 10.9 -14.0 -42.8 7.2 7.9 15.0 22.3 33.6 107 1.2 2.4 +90052100.UMN 438 1.75 3661 14.8 -13.1 -43.5 7.6 8.3 15.3 15.4 23.7 181 1.8 3.4 +90052100.HAT 4 1.75 2891 15.8 -9.7 -37.4 5.6 7.5 12.4 13.8 19.5 182 0.7 0.6 +90051900.SEP 399 1.75 3246 17.0 -9.1 -34.7 6.6 6.8 15.6 20.9 27.2 387 1.3 0.6 +90051600.IAD 85 1.75 2004 13.4 -14.0 -39.9 7.0 7.1 12.7 16.7 27.7 102 1.0 -999.0 +90051200.SEP 399 1.75 2282 13.6 -9.2 -37.7 6.9 7.7 14.5 34.8 47.4 134 1.3 -999.0 +90050600.OUN 357 1.75 836 7.6 -20.1 -41.8 7.2 6.0 5.8 18.3 48.8 30 0.6 1.4 +90042900.AYS 44 1.75 2333 13.0 -12.2 -40.9 6.2 7.8 19.1 30.6 23.2 243 1.5 2.3 +90042600.DRT 314 1.75 3699 14.6 -13.8 -39.4 8.1 7.0 11.1 25.7 33.2 101 3.4 4.3 +90042200.OUN 357 1.75 2748 11.1 -13.3 -46.8 6.6 9.3 7.3 12.2 14.9 48 0.8 2.0 +90040200.BRO 7 1.75 3494 16.2 -9.3 -36.7 7.1 7.4 15.2 25.7 37.2 65 1.9 0.9 +90031300.OUN 357 1.75 3211 12.7 -13.6 -43.5 7.8 8.2 19.4 24.2 18.1 286 2.5 2.8 +90031000.AMA 1095 1.75 2468 11.1 -16.0 -40.7 8.6 6.8 9.9 13.1 18.2 106 1.2 1.9 +90022800.MAF 873 1.75 607 9.7 -16.2 -42.9 6.6 7.4 5.1 16.4 23.8 55 0.3 1.2 +89090800.DEN 1611 1.75 1350 10.1 -6.8 -33.1 8.3 7.1 15.4 24.1 24.0 366 0.5 2.0 +89090200.1M1 172 1.75 3818 18.3 -4.8 -29.4 6.1 6.5 8.2 16.2 14.1 64 0.7 0.6 +89083100.DDC 791 1.75 2956 16.5 -5.7 -31.4 6.6 6.9 13.3 13.6 22.5 346 0.5 0.8 +89083000.OUN 357 1.75 3864 17.3 -5.6 -30.2 6.0 6.5 11.8 13.1 24.2 112 0.6 0.6 +89082900.TOP 268 1.75 4842 19.8 -6.3 -32.1 6.6 6.8 13.2 15.4 21.1 156 1.0 0.6 +89082800.UMN 438 1.75 3603 17.3 -6.1 -30.3 6.5 6.4 2.6 7.8 5.6 28 0.4 0.6 +89082700.OMA 400 1.75 3452 17.8 -6.6 -33.4 6.1 7.1 15.2 19.5 33.1 142 0.9 0.6 +89082500.RAP 966 1.75 1899 10.6 -7.1 -34.2 7.6 7.2 2.7 7.7 7.6 55 0.2 1.0 +89081300.TBW 13 1.75 2617 16.4 -8.6 -33.3 6.0 6.6 10.1 18.1 18.2 65 0.8 0.6 +89080600.UMN 438 1.75 5563 19.0 -6.9 -31.4 7.0 6.5 8.8 11.7 11.3 99 1.0 0.8 +89073000.JAN 91 1.75 3940 18.0 -7.7 -34.5 6.7 7.2 2.1 1.9 3.1 9 0.5 0.6 +89072900.HON 392 1.75 2092 14.0 -5.9 -34.4 6.0 7.6 6.4 12.0 17.9 105 0.3 0.8 +89071500.LBF 847 1.75 2675 14.3 -6.9 -33.4 6.1 7.0 5.5 6.1 8.4 27 0.3 0.6 +89071300.OUN 357 1.75 4127 19.0 -5.4 -31.1 6.9 6.8 13.0 13.8 19.1 196 0.7 -999.0 +89071300.DDC 791 1.75 3239 15.1 -4.9 -31.6 6.9 7.1 7.9 5.1 7.2 81 0.3 1.2 +89070800.PIT 360 1.75 2732 15.4 -9.1 -36.1 6.8 7.3 12.8 17.5 15.7 81 1.0 1.5 +89062800.BUF 218 1.75 2385 15.2 -8.2 -33.3 5.3 6.8 9.8 20.1 22.3 82 0.7 0.6 +89062700.PIA 200 1.75 2460 15.7 -7.9 -33.9 6.6 6.9 5.3 13.2 12.4 87 0.5 0.7 +89062600.IAD 85 1.75 3138 16.2 -8.6 -36.4 6.1 7.4 12.1 14.3 23.0 108 0.8 0.7 +89062200.AHN 246 1.75 1517 15.5 -7.6 -33.7 5.8 6.9 14.9 12.6 15.8 112 0.3 0.6 +89061900.BNA 180 1.75 1755 13.9 -10.2 -36.1 6.3 6.9 6.8 9.7 7.8 86 0.4 0.6 +89061400.GGG 124 1.75 3674 17.2 -11.0 -35.3 6.9 6.6 4.3 15.4 23.3 61 1.4 -999.0 +89060600.JAN 91 1.75 3336 16.3 -11.3 -37.4 6.7 7.0 10.4 20.8 25.3 103 1.7 0.8 +89060600.GSO 277 1.75 2078 14.8 -9.1 -34.5 5.9 6.8 10.0 8.1 6.7 93 0.3 0.6 +89060100.TOP 268 1.75 2810 15.8 -10.9 -35.3 7.9 6.6 7.9 10.6 26.9 90 0.8 -999.0 +06100400.MPX 287 1.75 3011 13.7 -12.1 -41.5 7.4 8.1 23.9 34.0 30.2 514 2.4 2.9 +06091600.DDC 790 1.75 2738 14.4 -6.9 -34.5 6.6 7.4 21.6 29.7 39.0 378 1.1 2.2 +06091400.EPZ 1252 1.75 1589 11.7 -10.3 -32.9 7.6 6.1 13.1 17.4 23.7 167 0.6 2.0 +06091100.AMA 1099 1.75 1812 12.5 -8.9 -37.1 7.1 7.6 13.7 14.9 33.3 51 0.5 2.1 +06082300.RAP 1029 1.75 1757 8.3 -9.5 -39.1 9.1 8.0 12.7 21.3 28.7 108 0.8 0.8 +06082100.ABR 396 1.75 1851 12.5 -9.9 -36.9 6.8 7.3 15.5 21.9 39.5 257 0.8 2.1 +06080900.TUS 779 1.75 1640 11.9 -4.7 -30.5 6.6 6.8 6.6 5.1 8.2 25 0.1 0.6 +06080700.TOP 270 1.75 1693 12.5 -6.7 -31.1 7.0 6.4 3.2 7.6 6.8 35 0.2 0.6 +06072600.TUS 779 1.75 1725 11.2 -5.7 -31.7 7.4 7.0 8.5 15.0 18.3 36 0.3 0.9 +06072200.LZK 78 1.75 2480 14.1 -8.1 -31.3 7.3 6.2 7.7 6.9 5.8 67 0.3 0.6 +06071900.JAN 101 1.75 2280 15.2 -6.9 -33.5 6.5 7.1 9.0 11.1 11.1 88 0.4 0.6 +06071300.DDC 790 1.75 1575 12.8 -5.9 -30.5 6.9 6.5 7.4 12.7 13.7 99 0.2 0.8 +06071200.DDC 790 1.75 1068 11.8 -8.7 -29.3 8.0 5.5 11.8 15.4 21.8 12 0.3 1.0 +06070100.BNA 210 1.75 2750 13.5 -11.5 -39.1 6.7 7.5 11.5 10.8 7.8 41 0.7 1.5 +06062900.DDC 790 1.75 919 7.7 -10.1 -38.7 7.7 7.7 1.9 17.9 17.9 16 0.3 0.8 +06062400.LBF 849 1.75 1400 10.7 -12.1 -38.5 7.4 7.2 13.6 26.6 25.0 272 0.9 2.1 +06062400.BIS 506 1.75 942 8.3 -15.3 -41.9 7.0 7.3 16.7 22.7 27.2 167 0.6 1.6 +06062100.CHS 15 1.75 4007 17.0 -10.1 -35.5 6.4 6.9 7.1 12.9 19.3 66 1.1 0.7 +06061800.FWD 171 1.75 2286 14.3 -10.9 -34.3 8.2 6.2 11.6 13.9 24.6 134 0.9 2.3 +06052700.GSO 270 1.75 2136 12.7 -9.9 -37.3 5.8 7.4 17.1 17.4 21.2 217 0.6 1.5 +06052500.TLH 53 1.75 2619 14.8 -10.5 -36.5 6.4 7.0 9.2 7.3 7.5 56 0.4 0.6 +06052300.SGF 387 1.75 3032 14.4 -11.9 -37.7 7.1 7.0 8.3 9.0 15.5 91 0.7 1.6 +06051800.ILX 178 1.75 713 8.0 -17.5 -46.5 6.9 8.1 16.9 28.8 29.6 226 0.6 2.1 +06051412.SHV 79 1.75 2270 12.4 -14.9 -41.3 7.8 7.2 15.5 16.8 26.2 84 1.3 2.8 +06051100.LCH 10 1.75 4564 18.5 -12.3 -35.7 8.9 6.4 12.2 22.9 22.0 38 3.7 1.7 +06050912.SGF 387 1.75 2144 12.9 -12.9 -39.7 6.7 7.3 10.1 20.3 18.4 144 1.2 1.8 +06050900.DDC 790 1.75 1630 9.6 -13.3 -40.5 7.9 7.4 15.1 27.2 27.8 179 1.2 2.0 +06050600.LCH 10 1.75 2655 14.9 -10.3 -39.3 5.8 7.8 15.8 23.1 25.2 64 1.2 0.6 +06050400.SHV 79 1.75 3310 15.0 -12.1 -39.1 6.7 7.3 5.8 8.0 14.3 85 0.7 0.6 +06042300.DTX 329 1.75 609 6.7 -24.1 -43.7 7.4 5.5 14.0 17.7 27.4 50 0.5 1.8 +06041900.BMX 178 1.75 1805 12.0 -11.1 -39.9 6.3 7.7 5.4 14.2 22.0 62 0.5 0.7 +06041600.WAL 12 1.75 2234 10.9 -16.5 -44.7 7.2 7.8 17.2 17.7 48.2 81 1.2 2.3 +06041600.IAD 93 1.75 2181 10.2 -16.7 -43.9 7.0 7.5 16.6 27.7 43.3 48 1.8 1.8 +06041300.LZK 78 1.75 1294 11.0 -13.5 -41.1 7.2 7.6 6.0 12.6 20.8 34 0.4 -999.0 +06040900.JAX 9 1.75 2254 13.6 -13.7 -38.1 6.6 6.6 19.5 20.4 22.0 178 1.3 2.1 +06040400.CHS 15 1.75 2165 11.6 -16.9 -42.5 8.1 7.0 26.6 31.6 39.3 207 2.2 2.6 +05082700.AMA 1099 1.75 2765 13.6 -5.5 -32.3 7.4 7.1 10.0 11.5 11.5 31 0.4 2.0 +05082400.RAP 1029 1.75 2040 11.3 -11.3 -38.9 8.6 7.5 13.6 11.6 19.1 116 0.6 -999.0 +05031500.TLH 53 1.75 1338 12.4 -14.1 -38.5 7.1 6.6 12.7 28.4 53.2 41 1.1 1.1 +05030400.AMA 1099 1.75 697 4.3 -23.3 -51.5 8.7 8.0 13.1 22.7 36.0 142 0.8 1.3 +04092500.AMA 1099 1.75 2465 11.2 -11.9 -40.7 6.9 7.8 12.0 15.1 24.9 38 0.8 2.0 +04092300.AMA 1099 1.75 1887 12.8 -10.1 -35.5 6.7 6.9 19.6 23.5 21.8 374 0.9 1.3 +04082600.BIS 506 1.75 3083 12.5 -13.1 -41.7 7.1 7.8 13.9 16.6 18.9 101 1.4 2.4 +04081900.ILX 178 1.75 3685 15.1 -9.1 -36.3 5.9 7.3 19.7 19.9 28.2 371 1.3 1.3 +04071200.TOP 270 1.75 3709 17.7 -7.3 -32.5 6.8 6.7 11.9 13.6 9.1 204 0.8 0.6 +04051600.EPZ 1252 1.75 2888 10.4 -11.5 -39.9 8.7 7.8 4.1 12.2 7.0 93 0.9 1.6 +04051000.LBF 849 1.75 4026 11.6 -13.9 -41.1 9.0 7.5 3.0 13.9 17.5 38 1.9 1.6 +04042900.DRT 313 1.75 1834 12.4 -12.9 -40.9 6.4 7.7 16.1 20.0 31.6 217 0.9 1.3 +04040700.FWD 171 1.75 835 10.4 -16.3 -40.1 6.7 6.6 11.8 28.3 27.2 87 0.6 1.0 +04032100.MAF 872 1.75 2053 10.0 -12.9 -41.3 7.9 7.7 5.5 9.6 21.3 39 0.5 1.5 +04032100.FFC 244 1.75 942 7.9 -17.3 -44.1 7.5 7.4 11.3 12.0 13.4 154 0.4 1.1 +04030100.TOP 270 1.75 487 6.3 -28.7 -42.5 8.7 3.9 20.1 32.0 35.0 171 0.9 1.6 +04022512.LIX 8 1.75 837 10.3 -17.7 -40.5 6.7 6.3 25.2 31.9 48.7 340 0.7 2.4 +03092100.DDC 790 1.75 1784 10.2 -10.9 -38.5 7.3 7.5 21.8 20.1 23.8 257 0.7 2.0 +03091100.DDC 790 1.75 3112 14.8 -7.5 -31.9 6.9 6.6 15.7 22.3 30.8 259 1.2 2.2 +03091000.MAF 872 1.75 3038 12.9 -7.3 -34.1 7.4 7.1 8.6 8.3 12.7 79 0.4 2.1 +03090500.DRA 1009 1.75 1966 11.3 -8.3 -34.1 8.1 6.9 5.0 3.7 9.2 33 0.2 1.2 +03062500.MAF 872 1.75 4621 16.5 -6.7 -29.9 7.7 6.2 11.9 8.7 16.8 45 0.7 2.1 +03062100.MAF 872 1.75 1489 10.7 -7.7 -33.7 7.0 6.9 6.5 14.5 29.4 74 0.3 1.9 +03061700.RAP 1029 1.75 1501 10.1 -11.1 -38.5 7.1 7.4 2.9 5.7 17.5 92 0.2 1.9 +03061700.FFC 244 1.75 2826 16.3 -8.5 -33.7 6.2 6.8 5.5 7.0 13.0 32 0.3 0.6 +03061500.LBF 849 1.75 1717 10.7 -11.3 -39.3 6.3 7.6 6.6 10.6 12.0 51 0.3 1.7 +03061500.FWD 171 1.75 2433 14.3 -11.3 -37.9 6.9 7.2 5.3 12.1 2.8 32 0.7 1.7 +03061300.LBF 849 1.75 2759 12.0 -11.3 -40.9 7.2 8.0 13.0 15.4 16.3 179 1.0 2.6 +03061100.OUN 357 1.75 3045 14.5 -9.3 -35.7 7.2 7.1 12.1 17.8 13.1 135 1.2 2.0 +03060400.LCH 10 1.75 4988 19.7 -6.7 -34.5 5.8 7.4 7.3 13.3 17.2 44 0.8 0.6 +03051312.FWD 171 1.75 1814 12.6 -10.3 -36.9 7.3 7.1 16.8 17.7 24.7 205 0.7 1.2 +03050700.BMX 178 1.75 4489 17.4 -10.5 -36.9 7.0 7.1 12.2 26.5 28.4 101 2.8 2.1 +03050200.FFC 244 1.75 3289 13.7 -13.5 -41.1 6.5 7.5 7.5 9.8 9.5 55 0.9 0.9 +03043000.BNA 210 1.75 3359 12.4 -15.3 -42.5 7.2 7.5 4.1 4.3 5.5 30 0.8 1.3 +03042900.MAF 872 1.75 2325 9.8 -13.5 -39.1 8.4 7.0 15.5 23.4 21.0 165 1.6 1.4 +03042900.AMA 1099 1.75 2549 9.6 -14.5 -41.5 8.3 7.4 16.5 25.3 33.7 237 2.0 1.6 +03032600.SHV 79 1.75 1723 11.3 -18.3 -45.5 8.5 7.6 8.0 17.7 18.0 108 1.3 1.4 +03032600.LZK 78 1.75 2073 11.3 -18.5 -46.3 6.7 7.8 9.5 14.3 15.4 67 1.0 2.2 +03031500.BMX 178 1.75 1555 10.9 -19.1 -43.3 7.4 6.8 12.3 8.5 21.2 94 0.5 1.3 +02082300.LBF 849 1.75 6193 17.8 -10.1 -38.1 8.0 7.5 3.8 12.9 28.1 10 2.1 3.1 +02072800.DDC 790 1.75 2480 12.9 -5.3 -31.3 7.4 6.8 10.7 10.6 11.1 155 0.3 1.4 +02072518.TBW 13 1.75 4523 18.9 -8.5 -34.7 6.7 7.0 2.0 7.8 6.3 7 0.7 0.6 +02070200.AMA 1099 1.75 2393 12.2 -6.5 -35.3 7.3 7.6 20.8 18.4 11.3 353 0.6 1.6 +02062600.DTX 329 1.75 3079 14.5 -8.9 -34.7 6.1 7.0 1.4 1.9 7.2 -1 0.4 0.7 +02061200.TOP 270 1.75 5029 19.6 -8.9 -32.9 7.6 6.4 15.6 21.1 24.7 224 2.3 0.7 +02060700.MPX 287 1.75 1952 9.2 -15.1 -43.7 7.7 7.9 16.2 22.8 25.3 758 1.4 1.5 +02060402.CHS 15 1.75 2637 13.7 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.6 0.8 +02052900.TOP 270 1.75 2661 12.8 -13.7 -40.1 6.8 7.2 7.3 4.2 10.7 48 0.5 1.3 +02052800.MAF 872 1.75 3115 12.7 -11.1 -37.5 8.0 7.1 16.4 20.6 24.7 103 1.7 2.1 +02052800.LBF 849 1.75 3387 11.3 -15.1 -41.3 9.0 7.2 11.6 18.8 30.1 184 2.3 1.9 +02050400.CHS 15 1.75 3255 15.9 -10.7 -35.7 6.6 6.7 16.6 21.1 29.5 19 1.6 0.9 +02041800.FWD 171 1.75 3343 15.9 -9.9 -35.9 6.4 7.0 5.6 12.4 34.6 61 0.9 -999.0 +02041600.PIT 357 1.75 1856 11.5 -14.9 -41.7 7.3 7.4 15.8 17.9 18.1 245 1.0 1.6 +01062000.DTX 329 1.75 3813 14.9 -12.5 -37.3 6.9 6.7 15.0 8.4 17.6 -45 0.9 2.8 +01061800.TBW 13 1.75 3469 15.9 -9.7 -34.9 5.9 6.8 1.5 4.6 6.6 23 0.5 0.8 +00090400.LBF 849 1.75 2441 11.2 -9.5 -35.5 7.8 7.0 18.5 21.4 24.1 309 1.0 1.5 +00080800.OAX 350 1.75 4679 16.3 -8.1 -32.7 7.8 6.5 10.8 16.4 25.1 185 1.6 3.0 +00080200.GGW 700 1.75 2057 10.8 -8.9 -37.9 8.0 7.8 15.0 24.6 35.3 148 0.9 1.8 +00073100.JAX 9 1.75 3581 17.6 -8.9 -33.5 6.0 6.6 4.7 6.6 5.5 27 0.4 0.6 +00072900.GSO 270 1.75 2081 14.3 -9.7 -35.1 6.2 6.8 6.5 6.2 16.1 43 0.3 0.6 +00072700.LBF 849 1.75 5178 18.1 -8.9 -36.7 8.7 7.5 12.2 17.5 26.1 351 2.3 2.2 +00072600.MPX 287 1.75 3240 15.3 -13.1 -36.3 7.6 6.4 10.1 21.4 12.4 139 2.2 3.0 +00072600.MFL 5 1.75 4079 18.3 -8.5 -33.5 6.6 6.7 2.4 5.2 5.6 18 0.5 0.6 +00072500.ABR 396 1.75 4195 15.6 -12.3 -38.3 8.9 7.1 10.9 15.3 19.8 113 2.3 3.1 +00072200.LBF 849 1.75 3031 12.8 -11.5 -38.5 7.6 7.3 14.5 27.5 23.7 247 2.2 2.6 +00072100.FFC 244 1.75 2149 14.3 -6.9 -30.5 6.4 6.2 9.1 9.2 10.4 63 0.3 0.6 +00071800.AMA 1099 1.75 3660 14.4 -4.7 -32.7 6.9 7.4 5.9 9.1 7.7 79 0.4 1.5 +00071500.IAD 98 1.75 2186 13.9 -12.3 -36.3 6.8 6.5 9.3 17.8 17.7 118 1.1 2.0 +00071300.ABR 396 1.75 2305 13.6 -8.7 -36.1 6.7 7.3 21.7 29.3 44.3 278 1.2 2.0 +00070600.GGW 700 1.75 2743 11.7 -14.1 -40.7 8.5 7.3 13.0 29.6 40.4 165 2.4 1.9 +00062400.LBF 849 1.75 4723 14.8 -9.7 -37.3 8.6 7.4 9.8 17.4 29.6 126 2.2 2.0 +00062400.DDC 790 1.75 3499 14.8 -7.3 -33.9 7.7 7.2 12.0 23.2 30.2 237 1.5 2.7 +00062200.DDC 790 1.75 3602 14.3 -8.7 -37.5 7.0 7.7 16.2 15.4 23.4 157 1.1 2.9 +00061100.AMA 1099 1.75 3932 14.0 -7.9 -33.5 7.8 6.8 9.4 14.8 19.1 128 1.2 2.1 +00060300.ABQ 1620 1.75 1267 9.4 -8.7 -34.3 8.2 6.9 7.6 10.3 17.5 70 0.2 1.4 +00052900.GSO 270 1.75 1988 14.3 -11.1 -37.1 6.2 7.0 17.6 28.7 35.1 139 1.2 1.2 +00051900.FWD 196 1.75 3610 16.2 -10.9 -37.7 7.4 7.2 6.7 25.2 32.9 75 2.4 0.6 +00051200.TOP 270 1.75 5329 16.7 -7.3 -39.3 6.5 8.6 21.0 25.1 29.2 216 2.1 3.7 +00033000.SHV 79 1.75 3548 15.4 -15.9 -44.1 7.6 7.8 23.8 31.6 50.3 323 3.8 2.8 +94070100.GSO 277 1.50 2296 13.8 -10.3 -38.7 5.4 7.7 6.6 8.1 14.3 40 0.3 0.6 +90082200.OUN 357 1.50 3350 16.6 -5.5 -30.6 6.1 6.6 3.1 3.3 5.7 -7 0.3 0.6 +90082200.AHN 246 1.50 3275 16.5 -6.8 -30.8 6.5 6.3 6.0 8.7 15.8 48 0.4 0.6 +90071000.DEN 1611 1.50 3504 13.5 -8.2 -34.3 8.0 7.0 16.7 25.4 20.1 41 1.9 2.5 +90041100.AHN 246 1.50 1096 11.5 -14.0 -40.0 6.4 7.1 19.0 25.4 25.8 343 0.7 0.6 +90040200.GSO 277 1.50 984 8.7 -17.4 -45.5 6.8 7.8 19.9 29.7 37.4 210 0.8 2.0 +89060200.AHN 246 1.50 1996 13.2 -7.3 -34.8 6.1 7.3 3.2 2.6 1.6 18 0.2 -999.0 +06071100.DNR 1625 1.50 1192 10.1 -7.9 -33.7 7.6 6.9 12.2 16.2 27.0 79 0.3 1.7 +06053000.SGF 387 1.50 2988 15.0 -9.3 -34.7 6.5 6.9 4.0 2.7 12.8 27 0.4 0.6 +06052200.LBF 849 1.50 1420 8.2 -11.1 -41.1 7.7 8.1 14.8 15.2 22.6 199 0.5 1.3 +06042117.JAN 101 1.50 1486 13.4 -12.9 -37.5 6.5 6.7 6.4 17.4 11.7 58 0.7 0.6 +03091800.INL 361 1.50 1863 13.7 -13.5 -38.9 7.5 7.0 15.3 24.7 29.2 384 1.5 -999.0 +03031700.MHX 11 1.50 1241 12.1 -13.1 -39.9 5.4 7.3 11.5 19.1 32.8 37 0.5 0.7 +02072500.LCH 10 1.50 5453 20.2 -7.3 -31.7 5.9 6.4 5.5 8.5 11.3 66 0.6 0.6 +02042200.ILN 317 1.50 623 10.3 -13.3 -37.4 6.8 6.6 31.2 36.0 43.5 525 0.4 2.1 +01062600.RNK 654 1.50 1653 11.1 -11.9 -39.7 5.7 7.5 8.3 13.7 30.3 88 0.4 2.1 +01062600.GSO 270 1.50 929 11.9 -11.7 -40.1 6.0 7.7 10.4 17.8 25.6 106 0.3 0.6 +00090200.SLC 1288 1.50 1641 9.1 -14.7 -41.9 8.4 7.4 20.1 16.1 24.8 101 0.9 1.7 +00051800.GSO 270 1.50 1767 11.9 -13.7 -40.9 6.5 7.4 7.6 16.4 31.1 124 0.7 1.6 +94062500.GSO 277 1.25 2334 15.9 -5.4 -31.3 5.6 6.9 12.9 9.9 5.2 103 0.2 0.6 +90041400.OUN 357 1.25 1408 10.8 -18.2 -46.0 7.9 7.7 17.5 23.5 33.0 146 1.2 2.0 +06072800.FGZ 2192 1.25 3100 13.5 -5.3 -30.7 8.1 6.7 14.1 22.7 18.3 193 1.0 2.7 +06072700.ILX 178 1.25 4385 20.7 -4.3 -31.7 5.7 7.2 14.7 12.7 19.1 318 0.6 0.6 +06070400.GRB 214 1.25 1881 14.1 -10.1 -36.5 6.6 7.1 14.0 22.8 40.7 132 0.9 0.6 +06061200.DNR 1625 1.25 942 6.0 -9.9 -38.5 9.4 7.8 7.4 17.1 22.2 130 0.4 0.6 +06060312.LBF 849 1.25 988 7.7 -11.9 -40.5 9.0 7.9 10.8 19.5 17.8 699 0.5 1.0 +06060300.ILX 178 1.25 1218 10.0 -14.5 -42.9 5.9 7.8 14.1 20.0 22.7 87 0.5 1.5 +06052600.FFC 244 1.25 1711 12.1 -12.1 -36.7 7.1 6.6 4.1 8.7 3.3 46 0.4 1.1 +06052000.BOI 874 1.25 1070 7.4 -13.5 -39.9 8.4 7.2 9.2 15.9 25.9 95 0.5 0.8 +06051500.TLH 53 1.25 1279 10.8 -13.7 -41.5 7.1 7.6 18.5 24.7 23.2 104 0.8 1.7 +05100123.LMN 317 1.25 2672 15.9 -9.9 -36.7 7.0 7.2 14.1 21.4 26.0 276 1.3 -999.0 +05090600.LBF 849 1.25 2252 13.0 -9.1 -33.7 8.1 6.7 6.3 14.1 27.2 28 0.7 2.9 +05030700.MAF 872 1.25 547 8.0 -16.7 -46.3 6.9 8.2 16.9 34.3 40.4 177 0.4 1.9 +04100400.AMA 1099 1.25 1672 10.5 -13.5 -40.1 7.6 7.2 10.7 23.5 31.9 28 1.1 2.4 +04032700.RAP 1029 1.25 2052 8.5 -15.5 -43.5 8.0 7.7 12.6 19.0 17.5 161 1.3 1.5 +03090800.PHX 384 1.25 2268 12.1 -6.7 -35.1 6.7 7.5 8.2 10.7 16.8 90 0.3 1.2 +03090800.FGZ 2192 1.25 663 8.3 -8.3 -35.1 7.7 7.1 11.2 15.0 17.0 130 0.2 1.2 +03090300.NKX 128 1.25 940 10.8 -5.9 -32.3 6.6 7.0 4.2 7.0 5.9 9 0.1 0.7 +03040500.ILN 317 1.25 1856 10.4 -15.7 -44.1 6.5 7.8 17.7 20.8 25.6 233 1.0 2.2 +02041200.TOP 270 1.25 1084 9.8 -16.5 -44.3 7.1 7.7 16.2 9.4 27.2 99 0.3 1.6 +00072000.LZK 165 1.25 3973 16.4 -6.7 -30.7 6.8 6.3 8.3 12.6 12.7 102 0.7 1.1 +00071100.DDC 790 1.25 4707 16.4 -4.1 -31.5 6.8 7.2 6.0 4.6 8.7 136 0.4 2.6 +00030400.BMX 178 1.25 1311 11.4 -14.9 -42.9 5.7 7.7 21.1 42.9 54.3 205 0.8 1.4 +99061200.ILN 317 1.00 3299 14.7 -8.3 -35.5 5.8 7.3 8.2 4.6 4.0 32 0.4 1.1 +98052200.BNA 180 1.00 3709 15.2 -10.7 -36.9 6.4 7.0 10.4 9.2 7.9 83 0.8 0.9 +97081800.FFC 244 1.00 3564 18.4 -6.1 -31.1 6.1 6.6 4.4 2.5 2.0 37 0.3 0.6 +97081700.PIT 373 1.00 3951 18.3 -7.9 -31.9 6.9 6.4 15.4 12.7 23.0 224 0.9 0.6 +97081700.DVN 229 1.00 5790 20.8 -8.3 -34.9 7.5 7.1 12.3 14.3 11.8 137 1.7 1.0 +93092500.OUN 381 1.00 2895 16.1 -6.7 -32.0 6.2 6.8 16.0 24.5 27.2 264 1.0 0.6 +91060500.CKL 140 1.00 3345 16.9 -7.5 -32.0 6.3 6.5 9.2 5.0 4.8 52 0.4 0.6 +91060500.AHN 246 1.00 3036 15.3 -8.1 -31.7 6.7 6.3 11.6 5.7 13.0 72 0.4 0.6 +90101800.GGG 124 1.00 1619 14.2 -10.6 -37.1 6.4 7.1 12.5 20.0 27.9 114 0.7 0.6 +90100800.GGG 124 1.00 2689 16.8 -6.0 -32.5 5.8 7.0 8.9 14.2 17.2 70 0.4 0.6 +90092900.MAF 873 1.00 1606 12.2 -8.0 -36.1 6.0 7.5 11.3 15.0 28.7 35 0.3 0.8 +90083000.GSO 277 1.00 3552 16.4 -9.3 -33.8 6.0 6.6 14.1 20.1 18.2 37 1.3 0.6 +90082300.HTS 246 1.00 707 15.2 -7.7 -33.3 6.2 6.8 3.6 7.0 8.5 -4 0.1 0.6 +90082100.OUN 357 1.00 5290 19.2 -6.7 -31.0 6.9 6.4 6.2 8.3 3.4 38 0.7 0.6 +90081900.AMA 1095 1.00 2596 13.6 -7.9 -32.0 7.0 6.5 3.8 5.1 5.1 45 0.3 0.8 +90080200.MAF 873 1.00 1702 14.4 -6.2 -31.8 6.1 6.8 2.8 9.7 12.2 27 0.2 0.6 +90072600.GGW 696 1.00 1514 10.2 -10.6 -37.7 7.0 7.3 7.9 15.6 16.6 55 0.5 1.8 +90072500.DDC 791 1.00 1703 11.9 -8.0 -34.0 6.8 7.0 10.1 14.0 17.5 208 0.4 1.4 +90072200.TBW 13 1.00 3409 17.8 -5.7 -31.9 6.0 6.9 3.6 4.6 7.8 35 0.3 0.6 +90072000.DEN 1611 1.00 1698 11.7 -7.2 -32.2 7.4 6.7 14.0 16.1 20.8 182 0.4 2.1 +90071800.AMA 1095 1.00 1482 11.4 -6.5 -33.5 6.7 7.2 8.4 14.8 26.1 98 0.3 1.1 +90071100.GSO 277 1.00 3487 15.2 -6.6 -32.6 5.9 6.9 7.5 3.5 9.1 38 0.3 0.6 +90070900.GSO 277 1.00 4051 17.6 -5.3 -32.6 5.6 7.2 6.1 10.2 10.5 73 0.4 0.8 +90062400.OUN 357 1.00 1571 11.9 -10.8 -34.1 8.2 6.3 14.1 26.8 24.9 186 1.1 1.9 +90062300.HTS 246 1.00 1346 14.5 -8.5 -33.5 5.8 6.6 19.1 27.1 36.9 231 0.6 0.6 +90061000.GSO 277 1.00 2409 15.3 -8.8 -32.8 6.1 6.4 11.1 9.7 14.5 145 0.4 0.6 +90050400.CKL 140 1.00 1534 14.0 -10.6 -33.4 6.4 6.0 10.8 20.1 25.8 141 0.7 0.6 +89082700.DDC 791 1.00 4549 16.9 -7.4 -32.1 7.6 6.6 1.4 11.3 24.3 11 0.9 2.1 +89082000.UMN 438 1.00 3524 17.3 -6.0 -31.1 6.2 6.6 13.6 20.6 14.9 350 0.9 0.8 +89080600.OUN 357 1.00 3439 16.3 -5.4 -31.1 6.8 6.8 9.7 10.2 12.1 101 0.4 0.8 +89073100.GTF 1118 1.00 1858 9.5 -9.3 -36.7 8.9 7.4 10.3 10.8 21.7 106 0.4 1.2 +89072800.DAY 298 1.00 2617 16.4 -7.8 -34.6 5.7 7.2 7.5 13.5 11.3 83 0.5 0.6 +89072400.VCT 33 1.00 2953 14.8 -9.6 -37.2 6.2 7.4 9.5 7.7 13.3 120 0.4 0.6 +89071200.TOP 268 1.00 3182 16.6 -8.1 -30.9 7.6 6.1 13.2 12.6 8.2 157 0.8 1.6 +89070600.OUN 357 1.00 1373 12.9 -6.0 -34.0 6.2 7.4 11.3 6.0 12.2 64 0.1 0.6 +89062900.AMA 1095 1.00 2035 12.6 -8.2 -31.3 8.6 6.2 13.0 14.8 26.0 165 0.6 2.3 +89062800.HTS 246 1.00 3659 17.6 -8.0 -31.7 5.8 6.4 7.4 15.4 21.4 62 0.8 0.6 +89061900.CKL 140 1.00 3363 16.7 -9.6 -36.6 6.4 7.3 12.2 14.5 12.2 103 1.0 0.6 +89061600.TBW 13 1.00 3463 16.4 -7.6 -32.3 5.7 6.5 5.9 10.2 6.4 36 0.5 0.6 +89061400.JAN 91 1.00 3274 16.0 -11.5 -35.2 7.1 6.4 9.4 11.3 8.2 57 1.0 1.0 +89061200.JAN 91 1.00 3616 17.7 -9.1 -31.2 6.5 5.9 7.5 15.3 5.8 84 1.1 0.6 +89060500.1M1 172 1.00 2493 15.8 -8.2 -35.8 6.0 7.4 10.3 14.7 13.0 19 0.6 0.6 +06092900.FFC 244 1.00 705 10.8 -11.1 -40.1 4.6 7.9 18.9 19.1 33.4 85 0.2 0.6 +06091200.ILX 178 1.00 1642 13.6 -11.1 -38.9 6.4 7.5 8.6 12.9 23.9 56 0.5 0.6 +06090800.LBF 849 1.00 880 7.9 -14.1 -40.7 7.5 7.3 6.9 11.1 19.9 20 0.3 0.9 +06090800.ABR 396 1.00 1406 9.5 -14.3 -42.3 7.5 7.7 10.6 9.4 9.1 163 0.4 1.7 +06081000.TUS 779 1.00 1913 13.4 -6.3 -29.9 7.3 6.3 1.2 3.1 6.2 12 0.2 0.6 +06080100.PIT 357 1.00 3456 18.6 -4.5 -30.1 5.8 6.8 10.1 12.7 7.9 104 0.5 0.6 +06072800.OAX 350 1.00 2714 15.6 -5.3 -34.3 6.0 7.7 9.3 16.8 22.8 92 0.5 0.6 +06072800.ABR 396 1.00 1956 12.7 -6.1 -34.7 6.4 7.6 16.1 23.5 29.4 149 0.5 1.4 +06072700.RAP 1029 1.00 694 8.7 -8.7 -33.7 8.3 6.7 13.4 16.3 21.8 157 0.2 0.9 +06072300.ABQ 1620 1.00 1267 9.6 -4.9 -32.1 7.8 7.2 2.8 5.7 11.2 -9 0.1 1.0 +06072200.RNK 654 1.00 3249 16.5 -6.1 -31.1 6.0 6.6 7.2 7.0 9.1 100 0.3 0.6 +06072000.RNK 654 1.00 2160 14.2 -8.5 -31.1 5.9 6.1 11.1 9.1 3.0 113 0.3 1.0 +06071800.DNR 1625 1.00 1197 9.1 -6.9 -32.3 8.0 6.9 3.5 7.7 6.2 83 0.1 1.1 +06071300.BIS 506 1.00 966 9.0 -8.7 -35.3 8.1 7.1 5.9 7.7 14.5 108 0.1 0.7 +06070500.GSO 270 1.00 2335 15.2 -7.3 -33.1 6.1 6.8 7.6 9.6 6.1 96 0.3 0.6 +06070300.IAD 93 1.00 3195 14.8 -9.3 -36.5 5.9 7.3 10.7 10.7 13.6 60 0.6 0.9 +06070200.LBF 849 1.00 2554 12.2 -8.5 -35.5 8.0 7.3 17.1 20.5 17.9 223 1.0 2.0 +06070200.FWD 171 1.00 1806 12.8 -9.9 -36.5 7.2 7.2 1.6 6.1 11.2 20 0.3 0.6 +06070200.FFC 244 1.00 1552 11.2 -9.7 -38.3 6.3 7.7 1.2 6.5 9.5 4 0.2 0.9 +06062900.TOP 270 1.00 959 8.5 -12.3 -40.9 7.1 7.8 8.1 12.7 14.7 120 0.3 1.0 +06062900.PIT 357 1.00 925 10.9 -13.7 -38.3 6.4 6.7 7.1 21.3 35.7 17 0.5 1.6 +06062800.GRB 214 1.00 1049 9.4 -15.5 -44.5 6.1 8.0 8.1 13.8 20.6 34 0.4 1.6 +06062700.FFC 244 1.00 2376 15.4 -6.9 -33.5 5.6 7.0 9.3 12.6 21.6 23 0.4 0.6 +06062300.DDC 790 1.00 987 11.0 -11.1 -33.3 7.2 6.0 9.3 17.7 17.5 78 0.4 1.3 +06062300.BNA 210 1.00 3023 15.6 -10.1 -34.7 7.3 6.6 8.0 10.6 3.6 71 0.8 0.6 +06062300.BMX 178 1.00 1595 12.5 -7.1 -34.3 6.2 7.2 1.9 5.1 4.3 -10 0.1 0.6 +06062200.JAN 101 1.00 2595 15.3 -8.7 -34.7 7.0 7.0 4.6 3.0 2.5 -15 0.4 0.6 +06062100.BNA 210 1.00 2387 14.1 -9.3 -35.3 6.8 6.9 6.8 6.7 3.3 43 0.3 0.6 +06061900.GRB 214 1.00 2397 14.0 -11.7 -38.1 6.2 7.2 12.4 15.9 20.9 74 0.9 1.9 +06061200.BNA 210 1.00 1539 13.6 -6.7 -34.3 5.6 7.4 9.1 15.2 7.0 107 0.3 0.6 +06060800.LBF 849 1.00 2368 10.8 -6.9 -36.5 7.7 7.9 11.2 20.5 22.3 244 0.7 1.7 +06060712.RAP 1029 1.00 1110 7.9 -10.3 -38.1 8.7 7.6 9.9 12.3 19.2 131 0.3 1.3 +06060700.SHV 79 1.00 2252 14.6 -10.3 -34.3 7.4 6.4 15.1 25.4 14.5 164 1.4 0.6 +06060500.FFC 244 1.00 1475 11.0 -12.5 -39.5 5.9 7.4 5.7 11.7 22.4 18 0.3 2.1 +06060400.ILN 317 1.00 1032 8.3 -18.1 -46.9 6.5 8.0 6.7 8.5 11.1 35 0.3 1.2 +06060300.GRB 214 1.00 1314 8.8 -18.9 -45.5 7.1 7.4 12.0 16.3 19.5 77 0.7 1.6 +06060200.BNA 210 1.00 2055 14.2 -7.9 -34.3 5.4 7.1 8.6 5.5 12.6 -2 0.2 0.6 +06053100.GGW 700 1.00 570 5.6 -21.1 -50.3 7.4 8.3 2.8 5.0 8.1 30 0.2 0.9 +06052700.JAX 9 1.00 2879 15.0 -9.9 -36.5 6.1 7.2 11.0 13.7 13.1 117 0.8 0.8 +06052700.BIS 506 1.00 2274 9.4 -11.9 -40.3 8.5 7.7 20.2 22.0 21.3 198 1.3 1.3 +06052600.JAX 9 1.00 1856 13.3 -10.7 -37.3 6.6 7.2 10.5 15.3 20.8 70 0.6 0.6 +06052600.GSO 270 1.00 1743 11.9 -10.1 -36.3 6.1 7.0 8.4 14.4 11.4 82 0.4 0.8 +06052600.AMA 1099 1.00 1911 7.9 -11.3 -38.3 9.9 7.3 11.8 16.9 12.6 262 0.9 0.7 +06052300.RAP 1029 1.00 2536 9.6 -10.3 -39.5 8.5 7.9 5.6 9.7 18.1 43 0.6 1.3 +06051800.IAD 93 1.00 1009 8.4 -20.5 -45.9 6.7 7.2 11.9 16.0 20.3 66 0.6 1.3 +06051600.DTX 329 1.00 519 8.7 -20.5 -49.7 6.1 8.2 7.2 5.0 17.9 -7 0.1 0.7 +06041400.PIT 357 1.00 390 6.2 -20.1 -48.7 7.0 8.1 18.8 18.6 40.0 220 0.3 0.9 +06041400.BUF 215 1.00 383 6.2 -23.3 -49.9 7.6 7.6 21.6 26.8 55.7 237 0.5 1.4 +06011200.GSO 270 1.00 1374 9.5 -19.1 -46.5 7.5 7.7 21.9 15.6 28.9 253 0.8 2.5 +06010300.ILN 317 1.00 791 9.0 -19.3 -46.1 7.5 7.5 7.8 16.0 23.8 140 0.5 1.4 +05092900.FWD 171 1.00 1553 12.7 -5.9 -29.7 6.4 6.3 8.5 10.1 13.0 39 0.2 0.6 +05082700.EPZ 1252 1.00 2162 11.1 -6.5 -31.9 8.5 6.8 4.0 4.9 6.7 21 0.2 1.0 +05081800.LMN 317 1.00 3655 17.7 -4.1 -30.3 6.0 6.8 13.3 22.3 17.3 221 0.9 0.6 +05081700.GGW 700 1.00 1042 9.2 -11.1 -36.7 7.8 6.9 16.7 27.6 40.5 265 0.6 1.7 +05081100.GGW 700 1.00 805 10.1 -13.7 -37.9 7.4 6.5 15.6 30.5 38.9 170 0.6 2.1 +05050600.EPZ 1252 1.00 1672 8.0 -12.7 -40.3 8.6 7.5 15.0 27.7 28.8 178 1.3 1.2 +05050412.TBW 13 1.00 1839 14.1 -13.5 -39.3 7.3 7.0 10.0 15.8 33.3 187 0.9 1.0 +05030400.SGF 387 1.00 823 5.9 -25.9 -52.1 7.1 7.5 13.0 24.2 27.9 151 1.0 0.7 +04082800.OUN 357 1.00 4225 16.0 -7.1 -32.5 7.4 6.7 7.0 3.8 3.0 101 0.5 1.5 +04081700.TUS 779 1.00 2027 13.1 -8.9 -34.5 7.1 6.9 8.8 13.2 13.3 96 0.5 1.0 +04080900.TOP 270 1.00 2676 14.3 -11.5 -36.3 7.4 6.7 5.9 11.9 15.6 82 0.9 0.9 +04051200.AMA 1099 1.00 1922 9.7 -11.5 -38.7 8.0 7.4 19.1 15.0 8.4 282 0.7 1.6 +04051000.FFC 244 1.00 2006 11.4 -11.1 -38.3 5.4 7.4 4.0 4.7 11.0 -15 0.2 1.9 +04032100.FWD 171 1.00 2648 13.1 -15.5 -42.9 8.2 7.5 4.9 12.9 20.8 29 1.4 2.8 +04031500.DRT 313 1.00 1498 11.6 -15.5 -43.1 7.0 7.6 6.6 16.8 24.5 123 0.8 1.4 +03111712.TOP 270 1.00 1641 11.5 -17.3 -45.7 7.3 7.9 17.8 25.6 32.6 329 1.4 2.7 +03090900.TUS 779 1.00 2363 11.5 -8.3 -34.9 7.3 7.1 2.8 7.9 11.8 12 0.3 1.1 +03060900.RNK 654 1.00 2965 15.0 -9.1 -36.7 6.2 7.4 18.9 24.1 29.2 134 1.3 1.2 +03060200.DDC 790 1.00 1960 11.1 -9.5 -35.3 7.9 6.9 11.9 17.5 20.6 222 0.7 2.0 +03052700.ABQ 1620 1.00 713 7.1 -9.9 -37.1 8.3 7.3 3.1 14.7 20.6 12 0.2 0.6 +03052600.TFX 1131 1.00 994 8.3 -10.9 -37.7 8.0 7.3 9.1 16.0 15.9 59 0.4 1.3 +03051800.XMR 3 1.00 3602 16.0 -9.5 -35.9 7.0 7.1 5.6 8.6 10.7 -7 0.7 0.9 +03051800.TBW 13 1.00 3839 16.1 -8.7 -36.5 6.5 7.5 6.2 5.7 11.9 3 0.5 1.1 +03051200.JAX 9 1.00 3060 15.9 -7.9 -33.5 6.9 6.8 10.1 13.2 20.0 48 0.7 -999.0 +03051100.MHX 11 1.00 3585 16.0 -9.3 -37.7 7.3 7.6 11.9 16.2 15.0 104 1.3 0.9 +03050312.BMX 178 1.00 1402 9.7 -16.1 -41.9 7.5 7.1 7.9 13.8 38.5 72 0.6 1.8 +03050212.BNA 210 1.00 1865 10.3 -15.3 -44.9 7.0 8.2 12.1 13.0 18.0 55 0.7 2.2 +03050100.FFC 244 1.00 1429 11.1 -13.5 -40.1 6.6 7.2 1.0 6.9 6.4 5 0.2 1.6 +03043000.OAX 350 1.00 1064 8.9 -16.3 -44.3 7.4 7.8 18.4 29.1 32.0 353 0.9 1.9 +03042800.MFL 5 1.00 2735 16.7 -10.7 -35.7 6.4 6.7 12.3 11.7 25.5 83 0.7 0.6 +03042400.SHV 79 1.00 1456 13.1 -12.9 -38.9 7.2 7.1 15.2 26.1 36.8 278 1.1 0.6 +03041800.DNR 1625 1.00 1063 5.3 -18.1 -47.9 8.6 8.3 5.9 11.0 43.9 41 0.5 0.6 +03040500.LZK 78 1.00 1751 10.7 -14.9 -42.5 6.6 7.6 12.6 27.4 33.1 65 1.2 2.3 +03032100.DTX 329 1.00 1602 8.7 -21.3 -48.3 6.6 7.7 7.7 13.3 27.1 80 0.8 1.1 +03032000.ILX 178 1.00 713 8.0 -21.9 -36.7 6.9 4.2 5.4 3.5 11.4 -26 0.2 1.4 +03031500.TBW 13 1.00 3398 15.9 -13.7 -38.1 7.0 6.6 3.9 18.6 27.3 32 1.9 0.9 +02080400.SGF 387 1.00 4328 17.7 -5.5 -34.5 6.5 7.7 3.8 1.1 7.6 -11 0.3 1.5 +02080300.BMX 178 1.00 5098 18.4 -6.5 -35.1 5.8 7.6 11.5 9.6 10.8 33 0.6 1.4 +02072900.AMA 1099 1.00 3610 13.6 -6.5 -32.3 7.8 6.9 13.6 12.5 12.2 164 0.7 2.0 +02072700.RAP 1029 1.00 1688 9.4 -9.3 -37.5 7.5 7.6 14.5 21.0 28.6 139 0.7 1.3 +02072600.TOP 270 1.00 3390 13.8 -5.9 -33.9 7.5 7.4 11.9 16.9 16.9 168 0.8 2.2 +02072000.JAN 133 1.00 3501 17.6 -6.7 -31.9 6.1 6.7 5.7 6.1 7.9 58 0.3 0.6 +02070300.LBF 849 1.00 3367 14.1 -5.9 -35.3 7.5 7.8 11.5 14.0 6.2 158 0.7 1.2 +02070200.FFC 244 1.00 4268 16.3 -9.7 -36.1 6.6 7.1 7.3 7.8 4.3 46 0.7 0.6 +02060700.ABR 396 1.00 2252 9.0 -14.7 -43.9 8.1 8.1 8.2 12.4 18.1 118 0.9 1.2 +02060400.CHS 15 1.00 3170 15.2 -10.1 -34.9 7.6 6.7 11.7 9.7 10.8 33 0.8 0.6 +02052700.AMA 1099 1.00 2332 9.7 -11.1 -37.9 7.2 7.3 13.0 14.5 11.8 198 0.7 1.4 +02051800.CRP 13 1.00 5902 20.3 -10.5 -36.9 7.4 7.1 10.7 22.6 23.2 86 3.4 1.6 +02042300.OAX 350 1.00 614 6.4 -23.3 -46.3 7.9 6.5 15.2 26.3 36.6 133 0.8 1.4 +02012400.LZK 78 1.00 1343 13.1 -12.7 -41.1 6.6 7.8 20.2 32.5 40.7 290 0.9 0.6 +01062600.LBF 849 1.00 3931 12.7 -8.1 -35.3 8.1 7.3 8.1 9.3 8.1 119 0.7 1.5 +01062100.ABR 396 1.00 1118 8.1 -19.3 -47.7 7.0 7.9 3.6 4.2 12.4 14 0.3 1.3 +01061900.JAX 9 1.00 2584 17.2 -9.5 -35.5 6.1 7.0 5.0 4.8 8.3 13 0.3 0.6 +00080700.TOP 270 1.00 4476 17.3 -7.5 -33.1 7.2 6.7 11.7 17.8 22.9 72 1.4 1.8 +00072900.ILN 317 1.00 2735 14.3 -11.5 -37.7 6.7 7.1 8.0 13.4 21.0 68 0.9 0.6 +00072900.CHS 15 1.00 2462 16.1 -7.5 -34.9 5.6 7.3 3.3 9.3 13.2 4 0.3 0.6 +00072800.TOP 270 1.00 3666 15.3 -10.3 -35.3 7.6 6.8 9.1 22.0 26.4 115 2.1 2.6 +00072800.LBF 849 1.00 5581 17.1 -7.7 -35.5 8.1 7.5 9.6 25.0 21.1 187 2.8 3.1 +00072700.JAN 101 1.00 2066 12.5 -10.7 -35.7 6.4 6.7 4.2 8.0 8.4 -50 0.3 1.0 +00072300.OTX 728 1.00 2088 9.0 -12.3 -42.7 8.2 8.3 7.8 17.2 21.1 43 0.9 1.2 +00071900.GYX 125 1.00 997 11.4 -13.3 -37.7 6.0 6.6 18.8 27.0 36.1 107 0.6 1.0 +00071700.TOP 270 1.00 3927 15.9 -8.7 -31.7 7.9 6.1 14.5 8.9 14.1 198 0.8 2.4 +00071500.SHV 79 1.00 4004 17.2 -5.9 -31.1 6.0 6.7 6.2 4.6 8.6 46 0.3 0.6 +00071400.GRB 214 1.00 1743 12.0 -12.3 -37.9 6.9 6.9 13.4 21.5 42.9 195 0.9 1.7 +00071200.DDC 790 1.00 2941 14.4 -5.5 -30.7 7.2 6.7 10.8 11.3 11.7 196 0.4 1.4 +00070700.RAP 966 1.00 4065 14.2 -7.7 -35.3 8.6 7.3 10.8 29.4 33.3 111 2.3 2.1 +00070400.DDC 790 1.00 5142 18.1 -7.1 -30.7 7.6 6.4 11.4 9.7 19.2 114 0.9 2.4 +00070300.OAX 350 1.00 4633 18.5 -6.3 -32.3 6.9 6.9 9.9 10.6 19.6 133 0.7 1.9 +00070300.DDC 790 1.00 4558 17.2 -5.9 -30.9 7.5 6.7 11.7 13.6 22.7 66 0.9 2.4 +00070200.RAP 966 1.00 5621 15.6 -9.7 -36.3 8.7 7.3 15.9 21.5 22.7 263 3.3 2.2 +00070200.DDC 790 1.00 3566 16.2 -5.7 -34.7 6.6 7.7 5.5 14.2 21.9 38 0.6 1.3 +00063000.PIT 373 1.00 1086 9.9 -15.9 -40.5 5.5 6.8 8.1 22.0 37.9 77 0.5 1.8 +00062600.TOP 270 1.00 4052 17.8 -8.9 -32.7 7.6 6.4 2.4 1.3 23.9 26 0.6 2.3 +00062600.DDC 790 1.00 2618 13.5 -6.1 -32.3 6.7 6.9 14.3 15.8 16.9 51 0.5 1.6 +00062300.MHX 11 1.00 4167 18.6 -8.7 -34.1 6.1 6.8 9.7 6.0 6.1 89 0.5 0.6 +00062100.TBW 13 1.00 3180 17.1 -8.5 -32.1 6.4 6.4 8.9 12.2 19.0 49 0.7 0.6 +00060200.TOP 270 1.00 3517 16.1 -9.3 -34.5 6.9 6.7 4.9 10.4 16.3 39 0.8 0.8 +00060200.DVN 229 1.00 3451 16.4 -9.3 -35.5 7.3 7.0 14.2 14.1 11.0 175 1.1 0.6 +00060100.ILX 178 1.00 3208 16.1 -9.1 -37.7 7.0 7.7 20.7 17.9 15.6 163 1.2 1.8 +00053000.LBF 849 1.00 2258 9.9 -9.7 -37.9 9.2 7.6 16.9 27.2 31.9 294 1.4 1.1 +00051400.TLH 21 1.00 3542 15.9 -9.9 -37.7 6.9 7.5 5.4 4.2 4.2 -4 0.5 1.0 +00021800.JAN 101 0.88 1866 12.5 -14.9 -43.1 6.7 7.8 16.2 27.5 38.9 270 1.5 0.7 +00061100.DDC 790 0.88 3471 14.3 -7.9 -33.9 6.9 6.9 14.0 11.0 20.2 53 0.7 2.4 +00061800.RAP 966 0.88 1396 7.4 -18.9 -44.5 7.1 7.2 7.4 14.0 34.9 270 0.7 1.4 +00070600.DDC 790 0.88 2581 12.3 -7.5 -31.7 8.5 6.4 10.7 9.4 10.0 97 0.5 1.8 +00072800.BMX 178 0.88 2147 13.2 -9.5 -36.3 6.2 7.2 6.0 8.0 11.4 35 0.3 0.7 +00080200.DVN 229 0.88 4183 16.6 -9.7 -38.1 6.6 7.6 13.3 11.2 16.4 169 1.0 1.1 +00080300.PIT 373 0.88 2780 14.9 -9.7 -37.1 6.2 7.3 9.1 15.5 29.2 81 0.8 0.6 +00080400.BNA 180 0.88 3453 16.3 -9.9 -35.1 6.8 6.8 9.1 10.9 16.0 83 0.8 0.6 +00080500.LZK 165 0.88 3872 16.1 -6.3 -33.3 5.6 7.3 7.3 9.4 14.6 6 0.4 0.8 +00080700.DTX 329 0.88 4231 19.4 -7.3 -31.9 6.0 6.6 10.6 16.6 31.6 78 1.0 0.6 +00090300.OAX 350 0.88 3099 12.6 -10.1 -36.3 8.7 7.0 9.5 16.9 21.6 126 1.4 1.4 +01062200.DVN 229 0.88 1285 10.3 -18.1 -44.9 6.5 7.5 8.7 10.8 11.8 66 0.4 1.0 +01062600.CRP 13 0.88 3837 16.6 -8.5 -35.7 6.4 7.3 7.1 4.0 8.9 53 0.5 0.6 +02031000.GSO 270 0.88 819 11.0 -15.3 -41.3 5.8 7.2 19.8 24.6 29.7 236 0.5 1.2 +02052900.OAX 350 0.88 2754 13.0 -13.3 -40.9 7.1 7.5 10.0 7.5 7.0 127 0.6 2.6 +03031400.TLH 53 0.88 2141 11.6 -13.1 -43.3 6.3 8.3 5.7 10.5 9.0 39 0.5 1.1 +03042912.TOP 270 0.88 1617 10.6 -16.9 -43.9 7.8 7.5 11.0 16.7 22.5 238 0.9 2.8 +03050400.BIS 506 0.88 1467 8.2 -18.7 -47.3 7.4 8.0 8.8 15.4 16.1 86 0.8 1.6 +03060300.JAX 9 0.88 3513 16.1 -10.1 -36.5 7.6 7.1 11.4 11.1 10.3 111 1.0 0.6 +03060600.ABR 396 0.88 888 8.1 -19.9 -46.5 6.8 7.5 9.2 17.3 14.2 47 0.5 1.5 +03061600.TOP 270 0.88 1944 12.4 -11.9 -38.7 6.4 7.3 5.8 0.8 4.2 3 0.3 1.0 +03062000.GGW 700 0.88 1032 9.2 -9.7 -37.5 8.1 7.5 8.3 9.8 17.1 76 0.2 1.3 +03101712.JAN 101 0.88 1891 12.8 -11.5 -43.1 6.3 8.6 16.9 25.4 33.9 246 1.1 1.2 +03102600.CRP 13 0.88 3408 17.9 -9.9 -35.3 6.3 6.8 9.8 15.2 34.5 17 1.0 0.6 +03111800.OAX 350 0.88 957 10.0 -18.3 -43.3 6.8 6.9 20.0 41.2 58.6 88 0.8 2.5 +04040900.AMA 1099 0.88 1515 8.2 -16.7 -45.5 7.0 8.0 14.7 17.9 23.0 139 0.8 1.6 +04081800.PHX 384 0.88 1709 10.5 -9.1 -35.5 7.3 7.1 6.0 4.8 9.2 15 0.2 0.8 +04082700.ABR 396 0.88 1433 10.2 -15.1 -41.5 6.7 7.3 5.3 14.4 40.5 28 0.5 1.5 +04091900.LCH 10 0.88 2433 15.9 -6.9 -31.9 5.8 6.6 7.7 4.4 15.6 6 0.2 0.6 +04092000.OAK 3 0.88 242 7.3 -17.9 -36.7 5.5 5.2 6.5 27.4 30.4 56 0.2 0.7 +04100400.GSO 270 0.88 1385 13.2 -14.9 -40.1 6.5 6.9 10.4 15.2 26.8 101 0.6 1.4 +05081300.MAF 872 0.88 1568 12.8 -6.3 -31.7 6.5 6.8 6.9 11.8 13.7 82 0.2 0.6 +06013012.JAN 101 0.88 1058 10.0 -20.9 -45.9 7.1 7.0 18.9 38.7 46.0 71 1.1 2.6 +06032100.OUN 357 0.88 579 5.4 -25.5 -40.9 7.4 4.4 5.7 16.6 26.7 53 0.5 0.9 +06040700.FWD 171 0.88 2831 12.5 -12.5 -42.1 6.2 8.1 20.1 33.5 41.5 40 1.8 2.8 +06041200.TOP 270 0.88 726 8.4 -14.3 -42.9 7.0 7.9 23.1 33.2 37.2 232 0.5 2.0 +06043000.OTX 728 0.88 499 6.4 -17.9 -44.3 7.3 7.4 8.3 17.3 23.3 75 0.3 0.8 +89061200.AMA 1095 0.88 3301 13.2 -11.7 -39.3 8.7 7.5 9.2 12.9 25.2 167 1.4 2.3 +89062600.UMN 438 0.88 3812 16.2 -6.9 -33.3 6.3 7.0 2.0 0.7 10.8 -14 0.4 0.6 +89062700.DEN 1611 0.88 931 8.6 -11.1 -38.5 7.6 7.5 10.8 14.3 14.3 122 0.3 1.8 +89072700.AHN 246 0.88 3996 17.5 -6.9 -33.6 6.5 7.1 7.1 3.5 6.8 66 0.4 0.6 +89082500.AHN 246 0.88 3533 16.9 -5.1 -30.7 6.1 6.8 2.7 3.3 8.1 5 0.3 0.6 +89082600.AHN 246 0.88 3463 17.1 -5.6 -31.0 5.8 6.7 4.0 11.3 8.6 41 0.4 0.6 +89082900.GGG 124 0.88 3979 18.5 -4.6 -29.9 6.0 6.7 1.6 4.1 2.2 3 0.3 0.6 +90071000.PIT 360 0.88 3362 16.6 -6.7 -31.4 6.3 6.6 14.3 19.7 14.7 124 0.9 0.6 +90073000.AMA 1095 0.88 943 12.2 -7.5 -32.1 6.3 6.5 8.4 12.7 18.1 14 0.2 0.6 +90091900.OUN 357 0.88 3878 18.0 -6.7 -31.3 6.2 6.6 12.1 11.9 20.5 119 0.6 0.6 +97010900.SIL 8 0.88 909 13.1 -13.6 -37.2 6.7 6.4 33.7 39.7 37.0 511 0.7 -999.0 +98062500.DDC 790 0.88 2667 11.9 -7.3 -34.1 8.7 7.2 12.4 25.1 34.7 224 1.2 1.4 +90052100.SIL 8 0.85 3505 16.6 -10.6 -35.6 6.7 6.7 10.9 8.4 13.0 70 0.7 0.6 +03052100.TBW 13 0.80 2941 15.8 -9.5 -35.9 6.2 7.1 7.1 2.7 5.4 27 0.4 0.6 +91051700.JAN 91 0.80 2890 15.5 -8.9 -36.0 6.5 7.3 0.6 1.1 7.8 1 0.4 0.6 +00022400.LZK 165 0.75 1590 10.6 -18.1 -45.7 7.0 7.7 17.2 25.0 34.2 270 1.3 2.5 +00050300.JAN 101 0.75 1438 12.8 -12.9 -38.5 5.9 7.0 13.9 12.8 7.2 120 0.4 0.6 +00052200.LZK 165 0.75 2062 12.1 -13.5 -44.1 6.2 8.4 17.7 22.6 32.5 162 1.1 1.4 +00061800.JAX 9 0.75 2677 15.7 -7.9 -34.1 5.7 7.0 7.9 6.0 10.5 61 0.3 0.6 +00061900.WAL 41 0.75 2940 17.4 -7.9 -33.5 6.3 6.9 11.6 11.3 9.5 134 0.5 0.6 +00062500.JAX 9 0.75 2442 15.6 -10.1 -34.9 6.2 6.6 9.3 9.4 21.8 104 0.5 0.6 +00062900.GRB 214 0.75 860 8.9 -18.9 -47.9 6.4 8.1 14.1 17.0 24.4 108 0.5 1.1 +00071300.DDC 790 0.75 3064 15.1 -3.7 -31.1 6.1 7.2 9.2 6.2 10.6 0 0.2 0.6 +00071300.FWD 196 0.75 3103 14.9 -5.7 -31.9 6.5 6.9 13.9 10.6 11.4 120 0.4 0.8 +00071800.JAN 101 0.75 3305 15.8 -5.5 -29.7 6.0 6.3 13.1 13.9 14.4 -56 0.5 0.6 +00071900.JAN 101 0.75 3841 17.3 -6.1 -31.7 6.1 6.8 5.7 7.5 6.9 32 0.3 0.6 +00072100.TBW 13 0.75 4845 18.9 -6.9 -31.9 6.4 6.6 7.4 7.0 10.7 56 0.5 0.9 +00072300.GSO 270 0.75 2443 16.5 -9.1 -32.3 5.7 6.1 6.6 20.6 22.2 88 0.9 0.6 +00072400.GGW 700 0.75 3240 10.9 -11.1 -40.3 8.5 7.9 12.5 26.1 22.5 54 2.1 1.4 +00080400.LCH 10 0.75 3045 15.7 -7.5 -32.7 5.6 6.7 4.7 2.8 12.8 28 0.3 0.6 +00090200.SHV 79 0.75 1896 12.1 -7.5 -32.5 7.0 6.6 5.2 3.2 2.0 15 0.2 0.7 +01062400.BIS 506 0.75 4781 13.7 -10.9 -38.3 9.0 7.4 15.0 18.7 27.1 249 2.8 1.7 +02030812.ILX 178 0.75 533 7.2 -19.7 -48.7 6.9 8.2 16.1 31.5 49.1 599 0.5 1.3 +02051500.PIT 357 0.75 521 5.9 -27.9 -45.7 7.9 5.1 17.3 14.7 14.3 74 0.4 1.1 +02060400.JAX 9 0.75 3128 15.3 -8.1 -33.3 6.5 6.7 0.3 3.7 6.5 15 0.4 0.6 +02062500.LBF 849 0.75 3690 11.7 -10.3 -37.1 9.2 7.2 5.0 7.2 9.1 45 0.7 1.3 +02072000.LZK 78 0.75 6551 21.6 -8.5 -32.7 6.9 6.6 8.7 10.2 6.8 145 1.3 0.9 +03031500.OTX 728 0.75 801 6.3 -26.3 -49.9 7.5 6.8 18.3 24.9 28.7 240 1.0 1.5 +03032000.SGF 387 0.75 909 7.6 -22.1 -40.1 6.7 5.1 18.2 10.5 8.6 205 0.4 1.4 +03040922.XMR 3 0.75 2570 15.5 -10.3 -37.3 5.6 7.3 12.7 31.0 38.3 34 1.3 0.6 +03042300.DNR 1625 0.75 1183 6.7 -16.1 -46.5 7.9 8.5 12.2 19.1 35.2 265 0.7 1.2 +03050100.DNR 1625 0.75 1011 6.7 -20.1 -46.3 8.0 7.4 12.5 33.5 27.3 108 1.1 1.2 +03050200.BMX 178 0.75 2216 12.4 -12.9 -40.7 6.6 7.5 4.6 6.7 7.6 9 0.4 0.7 +03052400.PIT 357 0.75 707 10.0 -16.7 -44.5 6.5 7.7 12.1 26.5 23.6 65 0.5 1.0 +03060700.MFL 5 0.75 3041 18.2 -6.7 -31.3 5.6 6.5 0.9 2.8 9.3 5 0.3 0.6 +03061000.JAX 53 0.75 2482 16.0 -8.7 -33.9 6.7 6.7 10.8 11.3 22.4 13 0.5 0.6 +03061222.XMR 3 0.75 2144 17.1 -7.9 -32.5 6.1 6.5 5.2 4.6 6.1 65 0.2 0.6 +03061500.SHV 79 0.75 2511 16.2 -9.9 -33.9 6.3 6.4 13.5 21.1 32.8 91 1.1 0.6 +03061900.TFX 1131 0.75 1802 8.6 -9.3 -37.5 8.2 7.6 13.1 10.8 13.4 178 0.4 1.0 +03062000.BOI 874 0.75 491 7.0 -12.5 -39.7 8.2 7.4 17.9 23.3 18.1 141 0.3 1.0 +03062100.RAP 1029 0.75 2338 11.9 -10.3 -36.1 7.2 7.0 15.0 8.1 14.4 137 0.4 2.4 +03062200.IAD 93 0.75 1215 10.5 -17.1 -38.3 5.8 5.9 9.3 15.1 9.7 79 0.5 1.1 +03090900.GJT 1475 0.75 996 6.8 -12.3 -39.5 9.1 7.4 8.5 17.7 28.1 199 0.5 0.7 +03090900.MAF 872 0.75 2389 12.1 -7.9 -36.1 7.0 7.6 12.1 18.1 17.8 222 0.7 2.2 +03091000.JAN 101 0.75 1929 15.0 -9.5 -35.3 6.0 6.9 8.1 10.8 22.1 83 0.4 0.6 +03111300.BUF 215 0.75 418 8.1 -20.5 -44.7 6.7 6.8 18.0 46.9 65.5 335 0.4 1.5 +04030500.LZK 78 0.75 745 12.4 -10.1 -37.1 5.8 7.2 27.8 39.6 53.2 468 0.4 0.6 +04051300.OAX 350 0.75 1193 10.5 -13.7 -40.5 6.9 7.3 16.7 24.2 28.7 133 0.7 2.2 +04051700.FFC 244 0.75 2077 12.2 -12.1 -39.3 6.4 7.4 2.9 2.0 11.6 0 0.3 0.8 +04052300.BUF 215 0.75 1807 13.8 -10.6 -36.5 5.8 7.0 18.8 22.4 24.0 239 0.8 0.6 +04081700.PHX 384 0.75 2729 12.6 -7.9 -35.3 7.1 7.3 6.2 8.0 6.2 60 0.4 1.3 +04081900.DDC 790 0.75 2146 11.7 -6.3 -34.7 6.2 7.5 10.2 4.3 11.0 15 0.2 0.7 +04081900.OTX 728 0.75 1929 9.8 -11.3 -38.9 7.4 7.4 6.2 9.9 15.1 43 0.4 1.5 +04082800.JAN 101 0.75 3714 18.0 -7.5 -33.7 6.4 7.0 1.0 2.6 3.6 12 0.4 0.6 +04082800.PIT 357 0.75 3258 18.3 -6.1 -31.3 5.6 6.7 10.4 7.8 6.8 106 0.3 0.6 +04092800.DNR 1625 0.75 698 7.9 -13.9 -38.7 7.1 6.8 12.4 17.7 21.0 112 0.3 1.0 +04100400.CHS 15 0.75 1850 15.3 -10.7 -36.1 6.0 6.9 13.4 22.1 32.7 81 0.9 0.6 +05022200.BMX 178 0.75 1749 11.8 -15.9 -43.5 6.8 7.6 19.0 26.1 36.8 174 1.4 1.2 +05030700.OAX 350 0.75 324 5.7 -21.9 -50.1 7.4 7.9 13.6 14.9 9.6 156 0.2 0.9 +05042612.JAN 101 0.75 993 9.2 -17.3 -43.3 6.9 7.2 15.7 27.2 35.7 336 0.8 2.2 +05050500.OTX 728 0.75 1601 7.7 -19.1 -46.9 7.3 7.8 8.5 15.7 22.0 35 0.9 1.4 +05082100.OAX 350 0.75 2617 15.5 -6.9 -34.3 6.0 7.3 15.0 14.8 30.9 159 0.5 0.6 +05082400.SHV 79 0.75 3397 16.6 -5.3 -30.5 6.1 6.8 11.1 9.2 4.4 72 0.3 0.6 +06011400.JAX 9 0.75 1223 12.1 -15.1 -42.3 6.5 7.5 19.7 19.6 26.7 233 0.7 0.7 +89052800.CKL 140 0.75 2098 15.4 -8.1 -34.6 6.2 7.1 8.0 11.8 13.5 43 0.4 0.6 +89060400.PAH 126 0.75 3338 16.4 -9.7 -37.6 5.8 7.5 15.5 14.2 14.7 90 0.9 0.6 +89060700.AHN 246 0.75 2402 14.2 -13.0 -38.1 6.6 6.8 2.7 12.3 18.6 37 0.8 0.6 +89061300.CKL 140 0.75 2677 16.1 -8.6 -32.8 6.1 6.4 11.5 15.9 7.3 102 0.7 0.6 +89061500.AHN 246 0.75 1717 14.7 -7.5 -31.3 5.5 6.3 11.8 10.0 9.8 91 0.2 0.6 +89061600.ACY 23 0.75 2243 16.5 -7.6 -34.5 5.9 7.2 19.5 18.8 19.1 217 0.6 0.6 +89062200.CKL 140 0.75 2986 16.1 -10.1 -37.3 6.7 7.3 6.8 10.0 8.5 76 0.7 0.6 +89062300.GRB 210 0.75 1729 14.6 -8.4 -34.6 6.2 7.0 10.0 10.7 10.8 139 0.3 -999.0 +89062300.OUN 357 0.75 3217 16.0 -7.1 -34.1 5.9 7.2 6.9 12.8 14.9 113 0.6 0.6 +89062700.PIT 360 0.75 2924 16.0 -9.1 -33.7 6.8 6.6 7.9 8.1 4.9 69 0.5 0.6 +89070800.AHN 246 0.75 2876 16.8 -6.5 -32.3 5.8 6.8 4.3 4.1 4.8 33 0.2 0.6 +89071100.DDC 791 0.75 1858 11.9 -8.1 -35.3 7.6 7.3 12.4 8.5 14.0 249 0.3 2.1 +89072900.SIL 8 0.75 4031 18.8 -6.8 -31.8 6.3 6.6 3.9 4.1 4.4 37 0.4 0.6 +89073000.PAH 126 0.75 3630 17.9 -7.0 -33.2 6.4 7.0 7.4 11.4 9.0 58 0.6 0.6 +89073100.TOP 268 0.75 2685 14.5 -6.4 -31.4 6.7 6.7 12.0 9.8 13.0 117 0.4 0.6 +89081200.GRB 210 0.75 1782 11.3 -14.8 -41.6 6.7 7.3 3.9 4.1 9.5 39 0.3 0.6 +89081900.HON 392 0.75 984 13.1 -7.6 -33.3 7.1 6.8 12.1 14.0 17.9 244 0.2 -999.0 +89102800.OUN 357 0.75 1679 12.0 -12.7 -39.4 6.8 7.3 8.3 10.1 27.1 115 0.4 1.0 +90033100.TBW 13 0.75 2515 14.8 -10.0 -38.4 5.6 7.7 12.0 14.0 15.0 135 0.6 0.6 +90042100.OUN 362 0.75 1915 12.4 -14.1 -40.9 6.5 7.3 13.1 25.3 31.9 138 1.3 1.7 +90042200.SEP 399 0.75 2775 13.3 -11.7 -40.8 6.5 7.9 8.1 10.2 20.8 98 0.7 1.0 +90042400.1M1 172 0.75 2374 12.8 -12.6 -40.0 6.7 7.5 6.6 14.0 8.3 56 0.9 0.9 +90052500.MAF 873 0.75 3262 13.1 -7.2 -34.0 7.9 7.2 12.4 22.0 30.6 97 1.3 1.8 +90060400.PIT 360 0.75 390 9.5 -12.5 -36.7 5.6 6.5 14.6 26.0 37.7 57 0.2 0.6 +90060700.TBW 13 0.75 3262 17.0 -8.6 -34.5 6.0 6.9 4.1 1.6 7.3 8 0.4 0.6 +90061000.AHN 246 0.75 2847 14.8 -8.2 -33.4 5.9 6.7 5.6 8.6 9.9 50 0.4 0.6 +90070300.SLI 8 0.75 3250 18.4 -5.7 -32.8 5.8 7.2 7.5 11.8 14.5 79 0.4 0.6 +90070800.TBW 13 0.75 5452 20.0 -8.1 -31.6 6.5 6.2 5.9 7.8 15.4 11 0.7 0.6 +90072200.CHS 13 0.75 3537 18.4 -7.5 -32.4 6.2 6.7 7.1 8.3 10.2 88 0.4 0.6 +90072200.PAH 126 0.75 2541 16.9 -5.6 -30.4 5.7 6.6 11.4 13.3 15.3 80 0.4 0.6 +90072700.DDC 791 0.75 3550 14.7 -7.0 -32.7 7.6 6.8 6.0 7.6 7.2 84 0.5 2.2 +90072800.TOP 268 0.75 3231 16.5 -7.8 -32.8 6.7 6.6 9.8 8.8 11.3 281 0.5 0.9 +90073100.JAN 91 0.75 2834 14.6 -7.3 -33.8 6.1 7.0 0.7 5.1 4.3 -3 0.3 0.6 +90080400.STC 315 0.75 2284 13.1 -12.5 -34.8 7.3 6.0 8.7 5.3 20.0 45 0.5 1.4 +90081400.ALB 86 0.75 1251 14.6 -7.6 -33.8 5.7 7.0 20.7 31.1 21.6 261 0.5 0.6 +90081400.MAF 873 0.75 1598 13.7 -7.1 -32.0 6.2 6.6 2.3 4.4 16.6 35 0.2 0.6 +90081700.CHS 13 0.75 3949 19.5 -6.9 -32.2 5.7 6.7 11.2 14.2 20.9 101 0.7 0.6 +90081900.DEN 1611 0.75 1982 11.7 -7.8 -35.3 7.6 7.4 6.4 10.2 22.1 25 0.3 1.7 +90082000.PIA 200 0.75 4350 19.3 -6.5 -31.2 6.2 6.5 9.4 12.0 9.9 67 0.7 0.6 +90082200.BNA 180 0.75 2619 15.5 -6.1 -32.3 6.1 6.9 8.7 9.1 12.7 -10 0.3 0.6 +90082300.GGG 124 0.75 3016 16.2 -5.9 -30.3 6.0 6.4 5.3 1.3 5.5 35 0.2 0.6 +90082500.OUN 357 0.75 2800 15.7 -6.4 -31.1 6.6 6.6 5.3 5.0 11.9 63 0.3 0.6 +90082500.OVN 400 0.75 3418 17.2 -7.1 -33.6 6.4 7.0 10.0 12.0 21.9 181 0.6 0.7 +90083000.ACY 23 0.75 2413 15.2 -9.3 -34.4 5.8 6.8 9.0 13.9 22.7 62 0.6 0.6 +90101700.MAF 873 0.75 2870 12.3 -12.5 -40.6 8.0 7.7 7.7 14.9 16.2 78 1.3 2.3 +91051700.TBW 13 0.75 3306 16.1 -7.5 -34.7 5.4 7.2 3.8 4.0 0.9 -5 0.3 0.6 +91060600.CKL 140 0.75 2864 16.3 -8.6 -33.4 6.4 6.6 6.2 8.9 11.4 21 0.5 0.6 +94062400.GGG 124 0.75 3754 18.0 -5.5 -30.6 6.3 6.6 8.2 11.0 14.2 98 0.5 0.6 +94062400.HTS 246 0.75 2798 16.5 -5.5 -30.1 5.3 6.5 4.7 8.5 15.0 39 0.2 0.6 +94070200.LCH 5 0.75 2754 17.0 -6.8 -32.4 6.4 6.8 12.4 10.7 11.0 84 0.4 0.6 +97061700.BMX 178 0.75 3829 18.2 -6.9 -31.5 5.9 6.5 6.9 12.4 13.0 48 0.6 0.6 +97062400.MAF 872 0.75 3310 14.1 -9.9 -32.7 8.9 6.1 13.0 11.5 8.6 108 1.1 1.6 +97081700.TBW 13 0.75 3152 17.4 -7.3 -32.7 6.2 6.8 1.8 2.6 4.4 8 0.3 0.6 +97081800.SLC 1288 0.75 931 8.3 -10.3 -36.9 8.5 7.2 13.6 16.1 22.9 203 0.3 1.4 +97082200.ILN 317 0.75 520 9.6 -16.3 -41.3 5.8 6.9 3.9 17.5 30.9 50 0.2 0.7 +98062500.JAN 101 0.75 3507 17.3 -6.1 -32.3 6.0 7.0 7.1 2.3 8.6 -1 0.3 0.7 +98081000.SHV 79 0.75 3464 16.8 -6.5 -33.5 5.9 7.2 4.2 4.8 1.1 42 0.3 0.6 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/sup.txt b/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/sup.txt index 6556f7df38..cca2be1f0a 100755 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/sup.txt +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/localization/ncep/nsharp/sup.txt @@ -1,939 +1,939 @@ -FILENAME CAT MLMIXR ML CAPE ML CIN MLCL(MAGL) 0-1SRH 0-6KT STPC 500 T (C) 500DIR 7-5 LR 0-3(KT) 0-9(KT) 0-3 KM SRH (M2/S2) -00042320.TXK 2 12.9 1702 -1 657 134 61.7 2.3 -14.0 250 6.5 32.8 76.6 166 -00042001.PPF 2 13.5 2614 -50 1216 227 59.9 4.7 -12.9 234 7.5 39.7 73.5 244 -00032900.FTW 2 13.1 2058 -42 1069 83 49.7 1.3 -15.2 245 8.0 21.9 87.1 126 -00032304.SJT 2 11.9 1680 -119 896 119 61.1 1.1 -15.5 212 9.1 38.4 66.9 217 -00031622.ATT 2 9.4 1019 -7 1566 12 45.8 0.0 -17.5 249 8.0 34.4 53.7 159 -00021323.LRF 2 9.2 1256 -9 1066 82 46.9 0.8 -21.2 249 7.5 32.3 51.4 114 -00010323.MEI 2 13.4 1148 -15 769 241 57.2 2.6 -10.0 226 6.1 38.8 71.2 288 -00010319.GWO 2 12.8 1168 -9 770 202 66.4 2.4 -13.0 223 7.5 47.3 75.1 246 -03050500.UMN 2 13.8 2392 -10 773 341 66.3 8.2 -13.4 237 7.7 49.1 93.8 411 -03050500.JBR 2 15.7 2713 -22 862 266 57.8 6.9 -10.7 240 7.1 50.5 82.9 440 -03050421.TUL 2 16.1 3621 -15 843 147 63.1 5.3 -11.7 230 7.3 45.6 100.2 160 -03050421.MKC 2 13.7 2002 -67 478 479 68.4 8.5 -14.6 224 7.9 48.1 89.8 508 -03050420.P#F 2 15.7 3397 -1 660 166 58.5 5.5 -12.7 230 7.8 34.3 100.9 195 -03050321.P#T 2 12.7 3156 -2 1967 61 36.2 0.0 -9.8 247 7.5 27.2 67.1 207 -03042503.JAN 2 13.5 2568 -27 924 257 44.3 4.9 -15.4 255 7.7 41.1 76.9 279 -03041922.PNC 2 11.5 1157 -40 665 212 87.9 2.5 -17.9 223 7.3 46.5 111.5 242 -03041523.CDS 2 10.7 1020 -106 1534 326 74.0 1.0 -12.4 234 7.5 56.1 83.8 531 -03041522.LBB 2 8.8 883 -53 1986 116 77.2 0.0 -11.7 243 7.5 48.5 87.4 276 -03040702.CLN 2 13.1 488 -133 780 363 62.7 0.8 -11.4 244 7.1 33.6 74.1 411 -03040623.ESF 2 15.8 1847 -29 621 166 51.8 2.6 -11.0 246 6.8 26.8 50.8 161 -03032722.MIA 2 12.4 299 -31 1074 187 48.8 0.4 -10.5 261 5.8 20.5 87.0 197 -01061900.ROS 2 13.6 2218 -30 1076 140 67.7 2.9 -11.1 250 8.2 40.5 73.6 279 -01061401.LNK 2 17.2 4665 -15 1190 173 39.2 4.3 -10.5 215 8.3 32.6 50.7 217 -01061120.ILL 2 14.7 3400 -120 1255 270 56.1 3.4 -10.8 259 8.6 41.9 54.8 448 -01060222.LOZ 2 9.7 164 -10 898 117 51.4 0.2 -13.4 270 5.3 39.8 66.8 189 -01053000.AMA 2 13.0 2887 -76 1322 166 48.4 2.2 -10.1 246 8.4 38.6 50.6 216 -01052902.LHX 2 10.9 1698 -120 1285 185 52.1 1.0 -10.0 251 8.2 38.9 60.5 365 -01052118.OZW 2 12.5 494 -2 775 133 33.4 0.4 -10.3 188 5.6 34.2 36.9 174 -01052022.MIN 2 16.9 3331 -2 711 122 47.8 3.2 -11.0 244 7.3 36.0 67.7 201 -01051022.MIW 2 12.8 2912 -24 1091 65 36.4 1.0 -16.0 255 7.9 28.8 43.0 141 -01051001.FBL 2 9.5 2106 -90 1776 330 50.0 1.0 -16.6 265 8.2 42.9 50.3 516 -01050200.AUM 2 11.2 1434 -74 1331 179 38.8 0.9 -13.3 251 7.5 36.0 52.3 237 -01042202.GBD 2 12.6 2145 -40 777 165 61.8 3.5 -13.6 229 7.8 41.6 62.6 328 -01041423.P28 2 12.3 2168 -54 827 145 76.4 3.1 -16.2 256 8.3 45.0 89.5 235 -01041117.LWD 2 11.9 968 -3 632 282 77.0 2.7 -15.1 208 7.5 38.2 81.4 327 -01040918.BVI 2 10.7 1326 -11 1210 102 57.2 1.0 -15.4 266 7.7 32.1 32.1 174 -01022422.SGT 2 11.8 1020 -15 967 335 52.8 3.0 -14.3 213 7.7 53.6 64.9 450 -00110820.HEZ 2 15.9 2158 -6 881 236 47.1 4.0 -8.5 204 6.2 29.0 68.5 266 -00103122.HLC 2 11.0 1274 -14 954 110 47.4 1.1 -14.1 202 7.4 32.6 74.4 169 -00092022.DAY 2 13.9 1299 -7 971 215 63.4 2.8 -8.2 237 6.1 37.5 61.0 237 -00072601.OTG 2 14.5 2869 -49 1055 88 42.5 1.7 -12.6 290 7.2 33.4 41.3 161 -00072523.RWF 2 14.6 2791 -13 1068 96 39.4 1.6 -12.0 275 7.0 29.2 35.8 163 -00071122.BKX 2 14.7 1167 -47 944 134 42.8 1.1 -7.8 261 6.8 27.2 67.9 205 -00070601.SNY 2 13.6 2847 -18 1681 52 57.5 0.5 -7.4 248 8.1 19.0 74.4 122 -00052319.BWG 2 13.7 2114 -41 1128 167 38.6 2.0 -11.4 294 6.9 36.9 62.8 278 -00051722.LXN 2 14.0 3552 -16 910 111 27.5 1.8 -13.9 169 8.4 28.1 44.5 170 -00051200.ALO 2 16.5 4382 -13 1110 168 51.1 5.6 -7.9 254 6.7 33.2 51.6 199 -00050101.MWL 2 13.0 2207 -103 1176 253 47.3 2.4 -12.4 227 8.2 40.3 37.8 297 -00042323.SHV 2 13.4 2001 -19 928 216 58.9 4.2 -13.0 261 6.7 41.9 60.0 296 -04051923.GFK 2 11.2 967 -44 828 233 54.9 2.1 -16.6 243 7.2 39.5 86.1 229 -04051302.ICT 2 15.9 3157 -12 538 223 36.4 4.3 -9.4 232 6.4 23.8 51.5 245 -04051101.LIC 2 9.0 1549 -59 1592 233 43.4 1.0 -11.5 244 8.4 35.1 46.6 395 -04042022.PIA 2 12.4 1852 -11 728 320 36.4 3.6 -14.7 235 6.2 38.5 40.1 488 -04032718.DDC 2 10.0 1332 -8 893 190 41.4 1.7 -16.6 206 7.5 30.8 47.5 198 -04030418.ABI 2 10.7 626 -20 1108 319 46.5 1.4 -13.7 196 7.0 40.3 84.2 350 -03111718.HOU 2 16.4 1980 -1 445 137 48.2 2.2 -12.4 207 6.6 24.0 77.0 158 -03111223.MFD 2 8.3 64 -56 890 219 99.1 0.1 -15.7 261 5.7 55.1 123.1 275 -03111220.MIE 2 9.7 388 -1 757 123 91.0 0.5 -15.6 258 5.7 47.1 117.3 205 -03082201.JXN 2 17.2 3046 -36 1091 255 31.0 3.6 -5.9 285 6.6 34.4 33.2 304 -03072122.AVP 2 14.3 1810 -16 1228 162 51.1 1.9 -7.9 239 5.6 45.7 49.9 148 -03072104.CID 2 17.8 2344 -22 462 187 48.9 3.6 -7.0 291 7.0 34.2 63.6 237 -03072101.ALO 2 15.0 1859 -107 921 156 49.6 1.5 -8.0 297 7.0 28.2 58.2 248 -03062500.HON 2 17.0 3737 -23 1021 335 52.2 10.7 -7.4 227 7.5 43.4 61.6 550 -03062422.MHE 2 19.5 5088 -22 717 256 55.5 12.1 -8.0 228 7.9 40.9 58.4 422 -03062421.MHE 2 17.5 3584 -16 768 252 56.0 8.4 -7.9 220 7.8 38.8 57.2 348 -03062302.P#8 2 16.8 3414 -169 1003 367 38.7 1.7 -6.8 227 7.6 30.2 57.1 437 -03062223.P#8 2 17.7 4366 -39 972 253 38.8 7.2 -8.3 246 8.6 34.3 54.7 387 -03061001.P#9 2 12.6 2103 -97 1467 421 51.0 2.8 -11.2 266 7.9 45.5 63.9 651 -03053103.CMI 2 12.6 701 -119 899 482 64.7 1.8 -11.6 292 6.3 36.9 85.1 523 -03053101.ILX 2 12.4 784 -55 1108 474 76.0 3.2 -8.5 294 5.0 45.0 90.9 524 -03051100.UIN 2 14.7 2093 -27 738 302 63.1 6.3 -11.7 240 7.7 43.7 97.9 354 -03051004.C34 2 17.3 3493 -14 749 452 53.6 14.1 -8.8 228 7.7 32.1 77.0 511 -03050923.HBR 2 11.1 1389 -64 2135 137 56.8 0.0 -9.1 231 7.7 35.8 78.1 219 -03050900.C30 2 14.6 1749 -112 819 321 69.8 3.3 -8.9 227 6.8 57.0 72.2 306 -03050823.C34 2 17.9 3605 -25 669 342 65.2 12.3 -7.2 233 7.1 42.3 72.0 318 -03050822.W#N 2 17.4 3730 -13 635 141 70.0 5.3 -10.1 228 7.6 45.5 81.3 173 -03050821.LW1 2 19.1 5309 -6 876 145 63.2 7.7 -8.7 235 7.4 31.6 71.3 182 -03050807.ADM 2 17.1 3114 -53 730 439 47.4 10.6 -9.3 253 8.0 50.2 61.5 608 -03050805.SPS 2 16.0 2409 -148 836 382 44.4 2.4 -9.1 262 7.9 43.1 59.0 798 -03050703.PAH 2 15.8 2873 -49 602 390 36.8 6.9 -13.6 237 7.9 35.3 70.1 454 -03050701.CGI 2 15.1 2935 -47 799 431 61.0 12.6 -14.4 269 7.8 32.8 83.2 580 -03050504.MKL 2 15.6 2334 -16 833 615 59.6 14.3 -9.9 251 7.1 62.0 77.1 842 -03050501.LZK 2 15.9 2390 -18 719 361 67.0 8.6 -11.0 237 7.4 41.7 97.3 397 -99120301.GOK 2 10.2 1811 -12 858 234 47.2 3.3 -21.1 202 8.2 32.4 63.0 262 -99081601.JMS 2 13.6 1255 -165 1044 130 48.5 0.3 -9.9 240 8.1 30.2 89.4 174 -99070900.ONA 2 18.4 3379 -18 992 385 46.0 10.0 -5.8 275 6.5 42.9 49.4 571 -99070400.OSC 2 15.9 1760 -27 1078 101 26.7 0.7 -6.7 320 6.2 28.3 31.6 163 -99060620.HCO 2 14.6 3241 -5 904 65 29.6 1.0 -16.1 175 8.1 26.8 70.8 115 -99060500.IEN 2 12.1 2533 -37 1323 70 52.4 1.0 -11.4 201 8.2 32.9 60.1 191 -99060400.HLC 2 15.7 4348 -16 1101 154 38.3 3.9 -9.3 240 7.5 36.9 40.6 277 -99060200.TBN 2 14.9 2338 -19 838 136 37.3 2.0 -10.3 259 6.5 40.0 21.6 223 -99060123.MKO 2 17.3 3739 0 888 68 38.1 1.6 -10.6 279 7.9 32.2 23.0 135 -99060100.LIC 2 9.1 1877 -49 1439 56 56.8 0.6 -13.7 249 9.2 34.3 62.4 140 -99051621.OMA 2 16.1 4691 0 824 102 38.6 3.1 -14.5 223 8.8 33.7 41.5 176 -99051122.BMQ 2 15.0 3545 -92 1026 40 35.1 0.6 -12.3 259 8.0 21.8 29.6 59 -99050408.JCT 2 13.0 2082 -218 838 355 55.0 0.0 -11.2 254 8.3 46.8 58.7 506 -99050402.GOK 2 13.9 3154 -61 723 366 51.4 9.2 -14.6 240 8.2 36.8 57.5 441 -99050401.ICT 2 12.6 2748 -7 1016 257 31.8 3.7 -14.7 227 7.9 40.5 70.4 415 -99050323.OKC 2 15.2 4117 -15 733 308 43.5 9.2 -13.2 243 7.8 43.2 70.1 401 -99050300.HSI 2 8.0 203 -4 845 168 41.5 0.2 -17.7 222 6.7 28.6 32.1 221 -99042200.END 2 12.7 3301 -34 1156 225 46.1 4.8 -15.4 236 8.1 35.1 48.2 242 -04082700.RDD 2 18.4 3706 -37 940 184 41.0 4.7 -6.9 255 7.1 28.7 60.7 258 -04071823.GFK 2 16.7 3575 -36 1246 117 45.4 2.4 -7.9 310 6.8 35.1 45.5 292 -04071302.GRI 2 15.9 3090 -197 1538 152 29.0 0.0 -7.9 298 8.5 13.8 50.5 173 -04062402.OSH 2 11.1 1428 -30 700 187 62.2 2.7 -16.7 257 6.5 50.9 79.3 234 -04061620.LAA 2 12.3 1494 -63 908 129 51.4 1.5 -9.4 252 7.7 34.1 57.1 369 -04061300.W#N 2 16.4 3866 -17 1255 231 34.6 3.8 -9.2 251 7.9 37.4 44.2 387 -04060701.MOT 2 10.4 295 -316 1541 461 68.3 0.0 -8.4 254 6.7 33.2 82.6 561 -04060621.C02 2 9.9 1824 -59 2285 83 55.5 0.0 -10.8 234 7.9 39.7 69.2 64 -04053023.IND 2 17.3 2618 -10 577 361 58.6 9.2 -9.1 248 6.9 35.7 45.1 369 -04053020.SDF 2 16.6 2653 -2 807 250 52.4 5.8 -9.4 245 6.8 37.1 41.1 317 -04053002.OKC 2 15.5 2559 -32 1162 314 55.7 6.2 -7.3 244 7.0 35.6 70.5 434 -04053002.ICT 2 16.1 3240 -98 992 315 44.2 5.1 -10.4 245 7.9 25.8 56.2 399 -04053000.MCI 2 16.0 3437 -5 863 239 36.5 5.0 -12.8 232 8.3 27.4 42.9 372 -04052922.C33 2 16.5 4081 -4 1356 126 51.4 2.8 -7.8 244 7.4 36.9 74.7 248 -04052921.TOP 2 16.1 3843 -13 936 78 32.5 1.6 -12.5 233 8.0 17.3 39.0 190 -04052421.STJ 2 15.6 3982 -40 991 76 40.4 2.0 -11.9 234 7.7 26.3 67.6 270 -04052300.P#8 2 15.0 3882 -47 1262 228 54.5 5.9 -10.5 233 7.9 34.1 69.9 334 -04052221.MCK 2 13.2 3453 -37 1185 103 72.0 2.9 -12.3 231 8.6 35.5 82.5 224 -04052219.GLD 2 9.9 1898 -54 1700 22 59.0 0.1 -12.7 233 8.4 12.6 69.5 76 -04052122.CID 2 15.4 2960 -48 971 309 36.6 5.6 -11.5 268 7.4 36.1 50.0 390 -53031321.FWH 2 10.8 727 -98 981 119 51.2 0.5 -16.3 248 8.1 30.6 80.9 266 V -55052521.LTS 2 15.0 4060 -25 1509 322 66.4 6.4 -12.3 225 8.6 37.0 53.5 355 V -56041521.GUN 2 11.7 1189 -11 1302 251 72.4 2.1 -13.6 230 7.3 55.7 66.8 370 V -57040221.FWH 2 13.2 3580 -3 942 94 35.8 2.0 -15.8 189 7.9 26.1 52.8 122 V -57052021.TOP 2 14.0 2801 -2 920 142 55.7 3.7 -13.8 207 7.7 48.0 77.2 228 V -57052121.BYH 2 15.7 2854 -5 1106 236 49.7 5.0 -10.9 230 7.2 33.0 92.5 240 V -57061418.PIA 2 15.9 2118 -6 986 394 50.0 7.0 -8.6 252 6.9 52.8 52.1 496 V -59040100.FWH 2 12.6 3068 -26 987 124 42.8 2.7 -17.6 247 9.0 28.0 61.5 142 V -61050800.FSM 2 14.5 2844 -7 1215 261 61.7 5.8 -11.4 240 7.5 42.2 65.9 323 V -61050600.FSM 2 14.3 2667 -12 1121 245 65.5 5.8 -13.1 240 8.3 61.7 43.1 430 V -62052600.OKC 2 14.3 4171 -76 1591 154 33.3 1.2 -12.0 264 8.6 25.3 43.2 228 V -62080700.TOP 2 20.6 6024 -12 1167 160 42.3 5.7 -7.3 250 7.7 32.4 60.6 243 V -64050600.OMA 2 12.7 2395 -61 1048 349 68.6 7.4 -13.8 224 8.8 54.6 89.3 498 V -65041200.FNT 2 11.2 1814 -1 974 166 91.0 3.0 -17.7 250 7.7 46.4 91.6 372 V -66042800.FWH 2 14.1 3342 -17 1291 148 38.0 2.2 -11.8 265 7.2 39.3 49.0 269 V -66030400.HKS 2 12.2 1434 -10 831 138 47.6 1.6 -14.0 234 7.6 49.0 77.8 142 V -67061100.OKC 2 14.4 3497 0 1569 144 32.2 1.2 -11.0 235 8.7 35.0 51.1 260 V -68110400.VPS 2 12.8 1596 -2 812 129 50.5 1.7 -13.4 251 5.9 30.3 72.0 184 V -69041806.VPS 2 15.2 1013 -8 445 370 55.8 3.5 -11.0 248 6.9 42.3 73.3 439 V -69062400.TIK 2 18.4 4403 -4 776 317 37.5 8.7 -9.4 240 7.5 45.3 56.2 431 V -70100600.TIK 2 13.7 1865 -3 772 241 41.1 3.1 -12.2 230 6.7 35.4 55.6 335 V -71022200.JAN 2 12.8 938 -4 930 470 74.7 4.4 -11.8 211 6.7 57.8 77.3 590 V -73052800.MGM 2 16.4 2337 -2 1017 293 53.5 6.0 -7.9 239 6.2 45.6 45.2 386 V -73041600.VCT 2 15.4 2861 -37 1272 385 48.1 6.4 -12.9 231 8.1 35.7 72.2 377 V -74040400.MGM 2 14.8 2955 -2 1017 161 52.0 4.1 -12.8 235 8.2 39.5 59.4 253 V -74040400.BNA 2 14.6 2744 -31 970 209 77.8 5.7 -13.3 238 7.8 57.0 80.2 301 V -74040400.DAY 2 12.8 2185 -7 986 619 90.8 13.5 -13.1 235 7.1 71.9 91.6 919 V -75042500.UMN 2 15.7 5306 -1 837 145 53.3 6.8 -13.8 255 7.3 41.6 61.8 185 V -74060900.UMN 2 17.0 3643 -2 987 363 37.0 8.1 -6.7 231 7.6 41.4 27.5 508 V -75063000.BIS 2 13.6 3158 -76 1566 198 41.8 1.6 -12.3 233 8.6 26.8 55.7 204 V -76042000.SEP 2 13.7 3326 0 1092 305 45.1 6.9 -14.1 240 7.6 33.7 48.9 358 V -77040418.CKL 2 14.1 1633 0 994 247 66.8 4.0 -9.8 231 6.0 52.7 80.0 333 V -78060100.TOP 2 16.2 4279 -1 1160 267 35.7 5.7 -12.7 233 7.6 36.3 57.0 349 V -79041021.SEP 2 12.8 2186 -9 912 345 48.2 6.1 -13.1 228 8.1 42.9 54.3 468 V -79050300.OKC 2 13.9 2775 -4 877 218 73.2 6.0 -12.3 246 7.2 57.7 103.2 279 V -79033000.OMA 2 10.1 1322 -24 1155 223 56.4 2.4 -15.8 232 7.1 49.1 52.9 345 V -80040800.UMN 2 10.2 2256 -3 1473 97 39.6 0.8 -18.5 236 8.4 39.7 92.1 247 V -84060800.TOP 2 16.2 2284 -16 918 560 74.0 12.8 -6.0 237 6.2 49.1 84.6 705 V -84031600.1M1 2 12.2 2339 -1 1056 250 47.1 4.3 -14.9 251 6.9 30.4 55.5 292 V -86072900.OMA 2 16.4 4252 -21 1667 112 48.4 1.3 -10.6 268 8.6 28.2 81.3 151 V -87111600.GGG 2 12.8 1593 -8 723 298 61.9 4.8 -15.3 178 7.9 43.3 65.2 326 V -90061600.LBF 2 16.1 3827 -1 1050 21 42.1 0.5 -10.6 185 8.5 24.5 74.1 95 V -90060300.PAH 2 15.6 2246 -3 1039 274 47.1 4.7 -7.6 251 7.0 57.8 49.8 384 V -91042700.OUN 2 15.8 4387 -8 898 195 50.3 7.2 -11.5 242 7.0 44.2 54.9 370 V -92062800.AMA 2 14.6 3148 -3 1020 83 44.3 1.9 -10.3 249 7.9 32.7 52.7 220 V -92061700.OVN 2 18.7 4878 -1 1119 262 50.4 9.5 -6.5 237 6.9 46.6 64.6 473 V -93042500.OUN 2 11.6 2675 0 1209 113 49.6 2.0 -14.6 235 6.9 35.5 65.5 168 V -93050700.TOP 2 13.7 2046 -7 666 484 58.8 9.7 -13.1 217 7.0 55.4 51.4 644 V -93060700.LBF 2 15.9 4738 0 930 328 59.3 15.3 -8.6 229 7.6 41.9 67.6 583 V -94042600.SEP 2 12.9 2562 -34 1365 201 51.9 2.8 -11.5 258 7.4 41.3 51.0 198 V -95051900.BMX 2 15.7 2868 -5 989 239 39.3 4.5 -9.9 247 6.7 31.9 49.1 230 V -98040900.BMX 2 14.6 2259 -18 642 136 77.9 3.1 -13.9 240 7.9 50.3 100.1 290 V -98041700.BMX 2 14.7 2038 0 704 263 73.4 5.4 -11.9 245 6.8 36.3 98.6 327 V -99050400.OUN 2 13.4 3644 -22 1050 271 41.4 6.5 -14.9 225 8.4 32.0 37.7 343 V -00121618.BMX 2 12.0 1369 -1 737 279 66.9 3.8 -14.1 220 6.7 51.3 90.8 339 V -00092100.ILN 2 12.5 747 -19 1280 611 75.3 3.3 -7.5 240 5.4 64.7 73.0 810 V -01061400.OAX 2 16.8 4639 -1 1278 127 38.6 2.8 -11.3 215 9.0 35.2 48.5 145 V -01112412.JAN 2 13.0 1392 -2 773 366 50.4 4.3 -10.1 225 5.7 52.4 48.8 504 V -01112418.BMX 2 13.4 1498 -1 655 227 52.0 3.0 -11.3 220 6.1 43.1 61.9 319 V -02111018.ILN 2 11.3 1239 0 734 385 54.4 4.3 -13.7 230 6.6 49.5 103.8 417 V -02062400.ABR 2 17.1 4378 0 1112 85 50.6 2.8 -10.5 245 8.2 29.8 57.9 153 V -03050900.OUN 2 17.0 3871 -32 990 336 62.0 13.0 -6.9 235 6.3 53.9 80.1 364 V -94032718.CKL 2 15.5 1965 0 743 344 72.9 6.8 -9.1 233 6.3 54.7 56.0 403 V -81052300.OKC 2 13.1 2411 -70 1142 203 49.1 3.0 -13.7 235 9.0 37.6 49.1 249 V -65041100.LIT 2 12.7 1815 -1 1365 140 52.3 1.4 -11.1 248 7.2 39.4 64.4 212 V -53051121.FWH 2 13.2 1452 -55 1150 122 53.0 1.3 -11.2 248 7.3 40.4 64.4 209 V -90082900.PIA 2 21.0 6470 -2 974 110 33.6 4.0 -7.3 297 7.1 23.3 54.6 147 V -55042411.GUN 2 13.1 1784 -7 917 345 68.7 6.2 -12.7 248 7.1 44.1 85.9 375 V -56040321.HKS 2 13.0 1491 -14 1212 173 82.1 2.0 -12.4 221 7.5 52.1 107.5 267 V -56051221.MTC 2 13.8 2444 -8 1001 124 69.2 3.0 -14.4 266 7.5 25.2 94.3 162 V -60052000.TOP 2 14.3 3120 -23 1112 167 43.1 3.3 -13.3 213 8.2 32.6 58.1 244 V -66060900.TOP 2 15.9 2226 -24 819 296 59.5 6.5 -8.6 223 7.1 47.3 69.8 397 V -68082000.GRB 2 16.1 2780 -11 1217 173 50.0 3.1 -7.3 258 6.4 27.0 43.6 195 V -74040318.BNA 2 13.0 2906 -5 1157 205 63.1 5.0 -15.5 229 8.2 48.6 76.4 333 V -61051500.PIA 2 12.4 1259 -2 817 196 68.7 2.5 -13.0 202 6.6 36.7 80.9 205 V -54050121.TIK 2 13.0 1988 -17 709 242 56.2 4.5 -13.5 203 8.0 39.2 73.2 282 V -55060421.SLN 2 13.4 3594 -5 1422 36 25.3 0.3 -12.7 225 7.9 23.8 30.4 152 V -70061300.COU 2 16.5 3499 -11 949 204 64.2 7.2 -7.8 246 5.5 49.6 57.1 318 V -76032700.1M1 2 11.8 1820 -17 961 187 41.8 2.4 -17.1 230 8.2 57.3 71.8 243 V -04071318.ILX 2 19.0 4958 -10 1102 117 37.5 3.3 -10.9 305 7.9 33.8 45.3 197 V -68051600.LIT 2 15.6 2612 -4 971 250 52.8 5.7 -11.7 260 8.6 45.5 72.5 337 V -65031700.OKC 2 11.1 1628 -3 687 269 91.0 4.4 -17.9 235 7.1 58.8 114.4 325 V -00061300.DIK 1 11.1 1786 -3 1286 88 51.7 1.0 -13.3 237 7.5 40.6 50.2 180 -00061122.MOT 1 11.3 2235 -22 1420 120 55.4 1.4 -14.8 231 7.6 39.0 57.9 252 -00060802.JDN 1 7.4 755 -232 3045 106 49.5 0.0 -10.8 230 8.9 34.6 71.9 282 -00060402.OFK 1 10.0 668 -199 1628 156 44.9 0.0 -11.7 284 7.7 38.1 49.1 406 -00060402.NFW 1 16.8 1734 -9 639 117 28.9 1.0 -7.5 270 5.9 23.5 32.0 202 -00052719.MAR 1 16.0 4104 -12 1610 26 26.6 0.2 -12.4 258 8.8 17.5 43.3 95 -00052700.THK 1 14.7 3226 -62 1771 46 35.7 0.2 -9.0 238 8.3 28.1 55.2 83 -00052700.ADK 1 15.9 4170 -7 1457 60 38.4 0.9 -10.1 248 7.9 22.8 55.2 91 -00051202.LWC 1 16.0 3233 -93 1098 243 43.4 3.7 -7.0 245 6.5 28.2 57.5 246 -00050802.RWF 1 11.7 1550 -17 1609 79 45.4 0.4 -12.5 230 7.1 29.3 54.1 203 -00050702.TOR 1 8.6 1203 -94 1663 106 57.4 0.3 -15.3 235 9.1 39.5 72.5 258 -00042622.ONL 1 6.5 337 -109 1466 129 40.6 0.1 -21.7 284 8.4 30.1 73.0 229 -00042118.EZF 1 10.3 898 -4 877 28 58.9 0.3 -17.2 220 6.6 30.7 62.4 94 -00032902.CRS 1 14.5 2234 -6 743 161 50.8 3.0 -14.0 258 7.8 26.8 92.5 244 -00032823.DTO 1 12.9 2286 -24 1256 75 45.3 1.0 -14.5 246 7.7 20.6 88.2 121 -00032701.BAZ 1 14.1 1797 -31 945 101 61.6 1.8 -10.9 294 7.0 32.6 86.8 184 -00032623.MLC 1 11.7 1998 -24 1176 73 50.5 1.0 -14.4 296 6.9 29.7 68.1 193 -00032221.UPT 1 11.4 2370 -12 1181 167 63.0 3.2 -15.3 196 8.2 44.6 83.1 213 -00032207.ODO 1 11.4 1900 -1 561 280 54.6 4.9 -16.5 195 8.4 45.8 80.2 519 -00032207.DRT 1 13.4 2593 -107 837 215 40.0 2.3 -14.9 225 8.9 40.7 64.3 569 -00032201.DYS 1 9.6 140 -194 1028 77 44.2 0.0 -12.2 197 6.4 33.8 61.9 126 -00031523.END 1 9.1 877 -2 1153 56 37.8 0.3 -16.7 241 6.6 26.4 36.5 119 -00031023.BMQ 1 12.1 2702 -18 1209 70 48.2 1.2 -14.5 275 7.6 28.5 52.2 143 -00030823.MKE 1 11.0 1510 -13 1038 185 54.8 2.5 -16.1 213 6.7 42.7 47.9 221 -00030208.MAF 1 11.4 1969 -62 631 373 64.7 6.7 -16.7 225 8.8 39.2 68.5 410 -00022502.ARN 1 11.3 2487 -19 846 226 54.1 5.1 -16.8 208 8.1 38.3 67.9 247 -00022303.DLF 1 8.7 884 -128 1728 29 68.1 0.0 -16.1 277 7.8 32.4 70.9 86 -01042100.SUX 1 8.8 765 -22 1661 84 43.9 0.2 -16.8 206 7.9 27.0 64.5 204 -01041123.BIV 1 12.3 587 -74 777 368 64.3 1.8 -11.6 220 5.9 42.8 48.1 410 -01041107.ADH 1 11.8 556 -140 952 259 56.9 0.5 -12.1 207 7.2 40.1 68.6 271 -01041100.SUS 1 13.7 2171 -35 926 93 64.4 2.0 -12.3 258 6.5 38.6 74.7 252 -01041022.SZL 1 14.3 2693 -55 696 170 63.3 4.4 -12.9 245 6.7 37.7 83.2 242 -01040923.PIA 1 11.9 2755 -12 1469 63 57.1 0.9 -15.8 272 7.5 28.4 73.8 164 -00111220.HYI 1 15.0 1358 0 575 130 66.4 1.8 -11.5 257 7.0 30.5 99.4 240 -00110822.TUP 1 14.5 1023 -4 743 229 62.2 2.3 -9.9 225 6.6 34.8 71.9 291 -00110121.BIS 1 8.9 739 -22 512 134 42.6 0.7 -21.9 135 8.3 30.9 61.9 177 -00103122.FNB 1 12.8 1776 -6 916 106 37.0 1.2 -13.0 217 6.9 22.0 45.0 157 -00102922.LNK 1 10.2 657 -14 724 192 49.1 1.0 -16.4 188 6.2 32.0 43.8 218 -00102919.AUH 1 8.7 191 -3 740 83 38.8 0.1 -16.4 158 6.1 31.7 39.6 118 -00102900.JCT 1 12.1 704 -63 868 232 49.5 1.2 -10.5 218 7.0 32.5 72.8 338 -00102818.GOV 1 11.9 922 -5 443 156 35.8 0.9 -12.3 192 6.7 29.9 31.1 195 -00102423.ODO 1 12.0 1308 -7 918 73 40.2 0.6 -11.4 215 7.4 30.0 51.0 103 -00102300.TIK 1 13.8 1236 -5 453 143 32.3 1.0 -11.8 212 6.3 24.0 44.2 171 -00102123.WLT 1 12.4 655 -43 561 114 29.4 0.4 -11.7 196 5.0 24.0 39.6 153 -00090201.GXY 1 10.1 1399 -61 1894 64 48.6 0.1 -8.8 219 8.0 24.5 58.2 133 -00081501.OEO 1 16.6 2661 -111 1084 275 47.1 3.1 -7.7 281 7.5 38.3 69.3 408 -00072500.ANW 1 14.5 3660 -50 1579 99 43.1 1.1 -9.2 307 8.3 23.5 62.3 152 -00072302.LAA 1 11.0 1368 -108 1806 33 48.7 0.0 -8.9 325 7.7 25.9 61.1 115 -00072104.P28 1 14.3 1660 -216 1167 146 41.4 0.0 -9.2 286 7.8 30.2 58.9 374 -00072004.GLD 1 12.8 1625 -153 1450 69 50.3 0.2 -8.9 286 8.4 26.3 57.9 113 -00071823.SUS 1 17.9 2488 -23 946 101 35.0 1.5 -7.4 262 6.2 32.7 35.7 194 -00071023.GGW 1 11.5 1838 -22 1490 19 53.5 0.2 -11.1 239 6.6 29.9 73.1 81 -00070823.RPD 1 18.8 4320 -44 798 124 39.2 3.5 -8.3 282 6.7 21.3 43.9 183 -00070802.LJF 1 19.5 4388 -7 680 348 43.9 11.2 -9.0 258 8.4 34.1 50.6 438 -00070600.OVE 1 7.4 115 -46 1571 14 34.5 0.0 -17.8 243 7.0 10.2 60.4 40 -00070400.MCK 1 14.2 1661 -19 1452 131 41.3 0.8 -6.2 236 6.6 26.2 46.5 200 -00070222.RYV 1 15.9 2122 -22 737 96 36.0 1.2 -9.2 288 5.9 30.2 35.4 223 -00062923.GLD 1 11.9 2724 -35 2040 95 44.6 0.0 -10.0 295 8.8 34.1 62.4 180 -00062522.AMA 1 13.7 3217 -9 2155 26 36.2 0.0 -6.9 271 8.3 18.7 36.3 97 -00062501.HAO 1 13.1 422 -35 1552 152 35.2 0.2 -7.7 249 5.7 29.2 32.5 226 -00062019.MTO 1 15.3 938 -10 830 185 29.7 0.9 -7.9 246 6.3 38.8 17.7 268 -00062001.HSI 1 14.0 1763 -84 1164 234 40.3 1.8 -8.2 248 7.0 27.7 49.5 343 -00061621.IPT 1 16.3 2224 -6 898 126 25.2 1.2 -7.2 258 5.6 34.7 21.7 251 -00061323.PRT 1 14.6 3313 -86 1730 52 37.5 0.2 -7.5 265 8.2 21.9 60.1 117 -00061321.RDK 1 17.0 3477 -23 902 260 35.7 5.4 -9.8 237 7.9 30.5 30.4 304 -00061300.LBF 1 10.3 2216 -34 2374 46 34.8 0.0 -10.3 241 8.4 19.0 34.1 135 -00061300.GFK 1 11.1 1031 -80 1371 163 45.4 0.6 -13.5 239 7.2 30.8 40.7 248 -03031919.CSV 1 9.7 329 -12 552 167 68.4 0.6 -16.4 213 7.0 45.4 103.6 306 -03031917.CSV 1 9.6 129 -21 493 196 62.6 0.3 -16.0 222 6.7 61.8 100.8 422 -03031915.HSV 1 10.9 546 0 538 221 80.9 1.2 -16.0 224 6.4 51.0 103.8 393 -03031800.FSI 1 11.0 983 -10 789 157 47.9 1.2 -17.1 242 7.4 21.2 84.6 148 -03031722.SPS 1 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 -03031721.HBR 1 10.6 1028 -46 917 133 27.4 0.6 -15.9 217 7.1 22.3 90.0 154 -01062101.DEN 1 8.5 516 -90 1464 2 57.2 0.0 -10.9 293 7.2 41.8 50.9 136 -01061403.DDC 1 14.7 4480 -83 1698 161 58.3 1.7 -11.1 234 9.3 30.0 58.2 280 -01061323.PQN 1 15.8 3695 -5 1047 117 31.9 2.2 -10.3 212 8.0 28.2 46.4 193 -01061000.MBS 1 8.3 401 -7 1604 78 43.1 0.1 -16.3 312 6.3 19.1 70.0 124 -01060923.BIS 1 13.0 2950 -51 1333 25 50.8 0.4 -12.4 272 7.7 30.4 52.9 158 -01060521.P28 1 15.5 2749 -10 880 99 38.9 1.8 -11.4 241 8.1 28.3 45.3 182 -01060521.CDS 1 15.0 3410 -11 1645 9 34.8 0.1 -9.6 266 8.0 23.5 28.9 110 -01060421.LIC 1 8.2 167 -117 1162 92 45.0 0.1 -12.6 233 7.5 32.1 65.5 170 -01060402.WLD 1 15.9 3250 -135 778 339 39.0 3.1 -9.4 254 8.1 35.7 49.4 535 -01060121.MXO 1 8.9 416 -12 968 81 51.7 0.3 -17.7 275 6.4 33.3 51.6 153 -01053000.CDS 1 13.5 2478 -201 1327 184 58.9 0.0 -9.9 240 8.4 43.6 59.7 269 -01052423.JCT 1 11.1 2121 -41 2081 21 42.8 0.0 -12.9 298 8.3 34.2 39.7 254 -01052423.BHM 1 10.8 1036 -32 1179 118 47.3 0.8 -14.7 258 6.9 44.8 49.5 280 -01051022.OLZ 1 11.3 1843 -33 1200 61 42.2 0.6 -15.7 256 7.4 31.2 46.0 179 -01050823.CNK 1 8.0 560 -40 1902 58 51.8 0.0 -16.7 317 7.3 21.6 51.7 171 -01050621.ILE 1 16.4 3719 -9 838 53 30.9 1.0 -13.1 261 7.0 24.3 54.4 118 -01050621.1F0 1 14.4 2826 -1 776 124 27.7 1.6 -13.9 256 6.8 24.7 55.3 157 -01050602.COT 1 16.2 2790 -11 863 180 42.4 3.6 -10.7 247 7.2 33.3 76.0 223 -01050601.HBR 1 10.8 1071 -47 991 113 60.9 1.2 -14.6 218 6.8 35.4 66.2 149 -01050600.WLD 1 10.9 813 -3 986 94 45.9 0.6 -13.4 211 6.5 34.0 50.5 174 -01050521.ACT 1 14.9 2393 -3 716 65 41.0 1.1 -11.6 229 6.7 21.6 53.3 125 -01050422.FNB 1 13.2 1315 -10 654 80 33.2 0.6 -12.0 205 5.5 25.5 43.0 144 -01050412.SPS 1 13.3 1511 -11 818 233 45.0 2.6 -11.2 211 5.9 37.5 53.7 290 -01050223.CDS 1 12.5 3652 -132 1895 166 31.7 0.2 -13.0 217 9.2 26.5 37.9 210 -01050123.RPD 1 11.7 2374 -31 1338 213 46.8 2.6 -14.3 249 7.2 38.7 54.2 348 -01050123.RGK 1 12.1 2710 -41 1464 239 44.1 2.6 -14.6 250 7.7 37.9 54.3 370 -01050100.TQE 1 9.6 1164 -13 1373 125 29.7 0.5 -16.8 267 7.6 24.5 30.9 158 -01050100.BGD 1 8.6 1497 -7 2135 23 54.7 0.0 -14.0 327 8.0 22.4 64.0 136 -01042300.OAX 1 11.5 527 -10 586 257 62.9 1.4 -12.4 193 5.9 51.0 62.5 288 -03060800.ECG 1 15.9 456 -52 671 256 26.7 0.5 -5.9 244 4.7 33.3 37.0 264 -03060500.CVS 1 8.5 804 -116 2160 108 56.7 0.0 -9.7 295 8.0 53.0 55.1 313 -03060422.TCC 1 10.6 1847 -48 1858 84 47.9 0.2 -10.4 290 8.6 41.0 53.3 227 -03060103.BFF 1 11.3 1434 -103 1288 72 46.7 0.4 -9.1 291 7.2 22.6 47.7 113 -03052820.PIA 1 11.7 1566 -31 860 135 36.1 1.3 -16.6 318 7.2 30.1 54.2 203 -03052323.V#L 1 10.7 657 -22 998 134 47.6 0.7 -13.2 312 7.1 36.4 63.1 269 -03051401.TXK 1 13.6 1354 -97 1023 210 48.8 1.5 -11.3 301 7.8 39.5 74.4 571 -03051323.C04 1 12.3 338 -272 641 212 57.3 0.0 -12.4 299 8.0 32.1 67.8 353 -03050920.FVX 1 13.5 1153 -108 1077 253 59.2 1.6 -11.6 288 7.8 44.4 56.6 335 -03050918.CHO 1 15.0 1961 -22 782 298 58.7 5.7 -11.4 296 7.3 46.4 63.9 473 -03050800.ABI 1 11.7 1368 -77 2113 150 68.5 0.0 -6.9 244 6.8 41.7 79.4 428 -03050721.ANB 1 14.0 798 -104 694 354 51.0 1.5 -9.4 268 6.5 39.0 46.7 422 -03050719.BMX 1 15.8 2069 -6 591 233 43.2 3.5 -10.7 274 6.8 31.7 48.0 302 -03050700.FAM 1 13.4 2397 -56 1026 270 72.9 6.1 -14.5 269 7.6 38.6 77.4 402 -03050518.MKL 1 15.9 2561 0 610 165 70.0 4.2 -11.5 253 7.0 46.3 90.9 195 -03050423.C35 1 15.5 2257 -12 619 309 68.9 7.0 -11.1 234 7.3 35.2 111.6 297 -03050421.ADM 1 16.6 3573 -3 898 108 77.1 3.9 -8.7 238 6.2 51.9 109.7 213 -03050320.BFF 1 7.9 1569 -35 1574 91 55.3 0.6 -17.6 237 9.1 30.0 121.3 150 -03050121.TUL 1 15.3 4038 -2 592 93 35.5 2.2 -13.9 263 7.7 27.5 53.2 205 -03043023.FOE 1 13.9 4015 -6 1059 116 26.7 2.0 -14.3 236 7.7 24.7 34.3 165 -03042821.BYI 1 4.3 220 -74 1877 74 40.4 0.0 -21.3 217 8.4 19.6 47.5 151 -03042522.MGM 1 13.1 2112 -13 1028 106 63.3 2.2 -14.2 266 6.8 41.2 42.5 199 -03042521.LWT 1 6.2 193 -34 1157 84 33.2 0.1 -19.0 194 7.6 23.8 44.0 191 -03042518.TCL 1 11.3 524 -50 815 216 66.5 1.1 -14.0 256 6.7 54.5 74.3 295 -03042423.PIB 1 13.2 710 -91 552 278 47.4 1.1 -13.2 256 7.3 29.9 47.5 367 -03042422.FOE 1 9.2 537 -24 443 119 31.9 0.3 -19.7 184 6.7 33.6 18.6 155 -03042419.BTR 1 14.3 2208 -2 816 43 52.0 0.8 -13.0 244 7.4 27.5 46.2 86 -03041923.MLC 1 12.8 1448 -52 744 271 64.7 3.9 -11.2 230 5.7 51.5 81.0 283 -03040618.JAN 1 12.9 801 -40 747 201 51.3 1.4 -14.4 243 7.5 28.4 87.0 298 -03040614.MLU 1 13.4 517 -86 382 358 50.8 1.2 -13.9 229 7.4 36.9 73.2 428 -03040601.FWD 1 11.1 461 -111 865 325 67.8 0.9 -13.5 245 6.9 40.1 93.4 563 -03040420.SPI 1 11.2 1687 -7 802 102 38.9 1.1 -17.7 252 7.6 39.5 59.0 176 -03032721.PBI 1 12.4 384 -64 873 185 47.9 0.5 -12.0 240 6.3 8.1 99.7 189 -03032720.TMB 1 13.5 878 -5 1007 102 59.6 0.9 -10.7 241 5.9 21.4 97.6 157 -04040822.ROW 1 7.6 885 -35 1457 25 42.6 0.1 -16.3 225 7.7 31.8 52.9 136 -04040616.VCT 1 13.2 671 0 457 159 42.0 0.8 -12.5 228 5.9 29.4 48.5 233 -04040615.CRP 1 14.5 1276 0 405 109 39.2 0.9 -12.3 238 7.0 30.2 44.3 209 -04032723.C33 1 12.5 2394 -14 752 342 44.2 6.0 -15.0 235 7.2 45.6 56.4 529 -04032721.C33 1 12.5 2248 -11 742 183 42.7 2.9 -14.5 230 7.1 29.5 50.7 257 -04032718.GAG 1 11.6 1959 -2 705 243 43.2 3.4 -16.1 217 7.9 33.2 51.9 263 -04020601.TCL 1 11.9 190 -48 628 310 45.1 0.4 -12.7 222 6.4 48.7 58.2 536 -03111803.GLS 1 16.5 1327 -28 566 364 46.5 3.8 -8.7 230 6.1 33.7 77.0 402 -03111722.GLS 1 10.1 1092 -23 682 103 65.1 1.1 -18.5 220 7.2 45.6 115.8 218 -03110520.IAD 1 13.7 626 -17 1058 109 35.5 0.4 -9.7 248 6.0 23.4 50.7 109 -03100923.GLS 1 18.1 1654 -5 454 164 35.3 1.6 -5.9 253 5.5 26.9 46.4 209 -03100523.C10 1 11.8 1332 -9 1262 56 39.6 0.4 -7.5 295 5.6 37.5 47.9 168 -03090807.MAF 1 11.7 777 -160 1418 169 29.0 0.1 -10.5 282 7.9 18.5 32.7 262 -03082523.RAD 1 12.0 1595 -36 1379 139 56.3 1.3 -11.7 280 6.3 16.2 82.0 142 -03080122.MIE 1 14.8 2465 -19 976 39 23.4 0.0 -10.9 251 6.4 10.2 49.8 63 -03072100.SUX 1 21.5 6268 -16 748 130 47.0 6.4 -7.5 313 7.3 28.4 42.4 175 -03072022.SUX 1 20.7 5887 -14 863 100 42.2 4.2 -7.3 304 7.8 47.1 46.8 375 -03072022.OFK 1 19.2 6004 -19 1398 33 31.9 0.6 -7.5 313 8.2 30.8 31.8 166 -03071922.STC 1 15.2 2711 -22 1042 103 46.1 2.1 -10.6 310 7.0 34.7 54.6 221 -03071102.NHK 1 16.5 987 -67 757 159 22.6 0.0 -7.7 240 6.4 20.9 29.8 187 -03070921.RWF 1 13.6 1319 -19 765 52 42.5 0.5 -10.8 262 7.0 23.9 51.9 91 -03070919.P#3 1 13.7 1228 -1 615 65 49.7 0.7 -10.0 258 6.5 18.9 58.3 80 -03070902.ATH 1 11.5 2088 -216 2152 184 48.4 0.0 -8.0 269 9.4 34.4 71.3 315 -03062823.BRD 1 10.3 984 -41 828 98 44.5 0.7 -16.0 285 5.9 30.4 65.1 168 -03062820.BJI 1 8.9 792 -1 1152 76 36.4 0.3 -17.5 276 6.2 21.6 57.0 122 -03062802.C22 1 8.5 251 -78 1075 74 33.2 0.1 -17.0 302 6.9 33.5 39.2 110 -03062800.P11 1 8.9 130 -58 757 94 34.6 0.1 -16.9 294 6.8 32.0 41.6 182 -03062223.GRI 1 18.1 5092 -19 1060 137 41.0 4.5 -7.9 238 8.0 29.8 45.3 215 -03062119.GCC 1 9.0 940 -32 1043 126 52.6 1.0 -13.9 234 7.3 37.7 61.9 271 -03061423.GLD 1 11.1 1240 -11 1151 21 28.6 0.1 -11.5 347 7.2 20.2 27.1 107 -03061202.9V9 1 11.9 1311 -150 1237 252 55.7 0.8 -12.0 277 7.7 34.4 64.5 403 -03061123.PIR 1 12.2 2019 -91 1257 201 52.8 1.9 -12.8 252 7.7 30.1 78.9 352 -03060922.AIH 1 12.2 3211 -62 1638 201 43.3 1.6 -13.0 253 9.0 35.4 67.6 306 -04052223.P#A 1 15.1 2952 -11 774 39 53.1 1.0 -12.0 243 7.6 22.0 68.8 112 -04052223.OAX 1 13.7 2734 -22 1169 83 52.1 1.6 -11.3 232 7.4 29.5 77.9 274 -04052201.OFK 1 14.7 3647 -8 1268 198 35.6 3.1 -11.0 240 7.8 35.9 59.8 310 -04052201.AIH 1 12.5 2491 -49 1041 183 43.4 3.2 -12.7 241 8.1 37.2 66.0 201 -04052122.GEG 1 8.3 1152 -51 831 61 20.9 0.0 -20.3 270 7.3 16.0 22.9 86 -04051821.PIA 1 13.2 1154 -20 811 45 38.0 0.3 -11.1 240 5.6 36.6 42.0 114 -04051701.C07 1 9.6 1682 -36 2011 261 50.5 0.0 -10.9 271 7.9 35.3 62.3 740 -04051700.GRI 1 11.3 1410 -72 1036 313 44.9 2.7 -14.9 227 8.2 36.5 55.1 498 -04051420.MBS 1 13.4 793 -7 834 109 40.9 0.6 -10.0 223 5.5 35.3 48.3 177 -04051416.SBN 1 13.7 499 0 429 86 47.3 0.3 -10.0 213 5.3 45.7 43.4 226 -04051323.G#4 1 15.5 3158 -12 977 153 38.7 3.1 -11.1 260 7.5 26.9 14.0 223 -04051223.C32 1 11.4 2949 -2 1894 52 53.9 0.2 -12.4 230 8.0 35.8 51.2 184 -04051117.VCT 1 16.3 1839 0 387 110 21.6 0.0 -10.4 236 6.4 21.8 22.3 236 -04043018.SPS 1 12.8 1694 -16 674 115 47.0 1.5 -14.9 221 8.0 24.4 40.3 122 -04042921.CDS 1 9.5 1110 -130 1817 -14 26.8 0.0 -14.5 244 8.2 30.9 40.8 112 -04042900.DRT 1 11.7 872 -12 771 192 46.2 1.3 -13.3 241 6.5 37.1 66.5 291 -04042320.SPS 1 14.3 3037 -1 1026 34 40.0 0.7 -13.4 226 7.4 18.9 49.8 60 -04042317.C11 1 10.4 439 -226 1267 41 38.3 0.0 -12.0 218 8.0 22.5 52.0 77 -04042300.FYV 1 11.8 1066 -33 829 252 39.7 1.8 -14.3 264 7.5 32.0 68.1 287 -04042222.TUL 1 13.0 1845 -5 720 136 58.2 2.4 -14.9 261 7.6 42.3 60.4 262 -04042220.P#P 1 13.3 2326 -1 748 134 58.8 3.1 -15.9 266 8.0 37.4 58.0 199 -04042200.GAG 1 10.8 1625 -5 908 47 32.4 0.4 -16.4 262 7.4 23.8 78.1 203 -04042122.G#1 1 7.3 762 -3 1736 51 74.4 0.1 -18.1 267 7.9 29.6 109.6 287 -04042100.TUL 1 10.6 632 -70 1159 363 52.0 1.5 -13.5 244 6.5 34.2 55.8 403 -04042023.GVS 1 10.8 283 0 524 272 32.9 0.4 -14.5 241 5.8 36.7 31.1 351 -04042022.C34 1 11.4 1441 -8 1212 105 50.3 1.0 -12.2 244 6.3 35.5 57.3 152 -04042019.HUF 1 9.9 107 -34 769 282 37.1 0.2 -14.7 239 5.8 35.7 36.3 292 -04042001.G#1 1 10.9 1585 -37 948 193 46.4 2.4 -14.6 237 7.8 39.5 70.5 374 -04041923.AMA 1 10.3 1602 -8 1272 103 41.6 0.8 -12.3 237 6.8 29.9 68.2 173 -04041823.HYR 1 9.5 788 -51 1551 610 67.8 2.1 -14.2 237 6.6 48.6 102.0 685 -04041822.YKN 1 8.5 781 -30 1937 -47 67.4 0.0 -14.5 231 7.3 50.2 99.2 231 -04041820.STC 1 9.5 1332 -37 1772 54 48.6 0.1 -15.2 231 8.6 26.3 87.5 167 -04041803.MCW 1 11.3 1606 -164 1042 529 61.4 2.0 -14.5 249 8.2 51.8 78.3 736 -04041800.FRM 1 6.2 0 -9999 2233 126 60.4 0.0 -15.8 250 8.3 48.2 86.0 376 -04041318.MHX 1 14.5 829 -6 376 471 48.2 3.1 -10.4 209 5.7 50.3 59.5 492 -04041101.HOU 1 14.2 1196 -29 574 -14 42.4 -0.1 -12.2 228 6.1 21.1 49.7 59 -04040922.MLC 1 9.5 826 -4 1253 59 50.6 0.3 -15.2 263 6.2 30.9 65.3 245 -04081001.LIC 1 13.1 2627 -14 833 10 31.8 0.1 -7.6 302 6.9 29.5 39.6 240 -04080923.LIC 1 12.3 2929 -24 1366 16 34.5 0.2 -7.1 291 7.3 33.3 41.5 174 -04080222.BH5 1 9.0 780 -79 2692 -22 40.8 0.0 -7.8 269 8.3 36.1 53.6 117 -04080101.FSD 1 15.5 3162 -71 1296 126 42.1 1.7 -10.0 298 7.7 29.5 43.5 211 -04071502.PWD 1 11.6 1241 -85 1817 -10 41.6 0.0 -9.7 293 7.4 25.5 68.5 104 -04071421.NHK 1 15.8 2262 -34 1229 29 22.0 0.0 -9.0 266 6.6 17.0 40.9 95 -04070822.CDR 1 8.4 1172 -184 2535 65 52.1 0.0 -10.6 252 9.0 39.8 58.2 155 -04070800.RSL 1 16.8 3857 -81 950 330 43.6 7.3 -6.9 302 7.3 32.9 43.0 525 -04062401.MSN 1 11.0 1731 -10 1132 139 52.2 1.8 -15.8 264 6.6 37.4 69.1 149 -04062202.AMA 1 14.9 2631 -32 851 69 48.2 1.5 -9.3 256 8.0 30.2 68.7 322 -04062201.AMA 1 13.9 2569 -24 1161 158 51.4 2.9 -9.1 264 8.2 37.1 79.6 378 -04062123.AMA 1 14.3 3017 -3 1129 34 46.0 0.7 -9.8 253 7.9 30.1 66.4 233 -04062100.LAA 1 13.7 2855 -58 1180 172 53.2 3.4 -9.9 265 8.0 19.8 59.2 173 -04062021.PUB 1 9.4 1660 -152 1943 219 45.3 0.1 -10.7 255 9.0 31.5 55.0 312 -04062019.COS 1 10.8 2562 -34 1009 45 38.2 0.7 -12.0 275 8.7 28.8 54.8 98 -04061501.HYS 1 14.0 3081 -123 1665 173 58.2 0.9 -9.0 287 8.2 39.1 57.5 526 -04061401.RDD 1 12.6 881 -112 1018 143 43.3 0.5 -9.7 283 6.4 45.8 43.1 223 -04061322.LNK 1 10.8 941 -69 1877 47 38.4 0.0 -9.3 287 5.7 33.3 45.8 183 -04061318.RQB 1 13.7 1000 -12 900 139 52.4 1.2 -10.7 233 6.1 36.9 55.2 229 -04061121.FRM 1 16.5 2686 -15 680 177 37.0 2.9 -11.0 219 7.7 18.6 49.4 252 -04061103.HSI 1 12.4 1209 -300 1522 316 36.6 0.0 -10.8 210 9.0 34.1 53.9 333 -04060921.APA 1 8.8 1388 -12 2068 90 27.2 0.0 -10.0 186 8.8 22.9 47.8 104 -04053022.SLO 1 18.2 3905 -16 909 156 45.8 4.6 -9.2 240 6.9 43.6 52.3 241 -04052701.PNC 1 15.4 2665 -48 1261 221 69.9 4.4 -8.5 266 6.3 33.5 88.2 272 -04052623.G011 1 12.4 1626 -109 1852 49 70.8 0.1 -9.9 262 7.1 37.0 94.0 147 -04052622.P#T 1 11.9 1612 -29 2366 155 49.7 0.0 -7.5 252 7.6 30.5 79.4 164 -04052602.ABI 1 14.8 1459 -96 876 180 51.9 1.6 -7.9 237 7.1 20.8 85.8 179 -04052500.FDR 1 16.4 3848 -41 1381 227 52.9 4.8 -10.3 248 8.8 44.6 77.8 373 -04052421.MCI 1 15.5 3926 -27 1068 147 47.7 4.3 -11.9 239 7.8 31.2 69.7 377 -04052421.CDS 1 11.5 2298 -45 2458 72 49.8 0.0 -9.7 246 8.0 26.4 75.8 113 -04052420.HSI 1 15.0 4625 -31 1086 83 34.0 2.0 -15.1 231 9.5 23.3 61.8 166 -04052420.BGM 1 11.0 1383 -50 1291 107 43.0 0.8 -13.2 261 6.4 38.3 57.1 215 -04052400.MKX 1 12.6 2101 -6 936 253 43.7 3.9 -15.6 243 8.0 47.2 76.4 303 -04052302.P#8 1 14.4 3064 -83 1357 338 64.2 5.2 -12.5 243 8.9 33.2 52.0 372 -04052301.P#A 1 15.3 2427 -11 641 38 43.9 0.7 -11.1 235 7.5 24.0 58.7 130 -04052301.OMA 1 15.2 2700 -10 801 171 47.0 3.6 -10.9 219 7.5 25.3 68.4 216 -99060823.N60 1 13.7 3155 -15 1051 78 41.1 1.6 -13.0 219 8.3 21.8 42.4 152 -99060620.MIW 1 16.5 2747 -2 728 95 46.5 2.0 -11.3 215 7.4 25.8 54.4 126 -99060619.DVL 1 13.3 2802 -18 814 23 14.6 0.0 -16.8 148 8.2 13.8 14.2 55 -99060522.LRJ 1 15.2 2964 -17 1289 56 44.7 0.9 -10.3 227 8.2 27.6 63.5 157 -99060405.VTN 1 12.9 2518 -114 1075 129 40.8 1.2 -11.7 252 8.4 33.9 47.9 180 -99060300.GTF 1 7.5 3 -80 1259 78 32.1 0.0 -12.7 166 6.6 32.1 44.8 172 -99060300.AMA 1 12.9 2756 -67 1541 95 38.7 0.7 -10.0 227 8.6 29.5 72.3 208 -99060123.SPI 1 14.9 2287 -19 881 194 49.6 3.7 -12.9 240 7.2 40.7 42.9 303 -99060110.MLC 1 16.0 1956 -157 477 193 43.7 0.8 -10.8 251 8.4 34.4 54.4 257 -99060101.RSL 1 13.0 1705 -20 907 93 50.1 1.3 -12.2 250 8.3 32.2 70.0 179 -99060100.SJT 1 10.8 1391 -136 2395 53 45.7 0.0 -8.1 279 8.0 23.3 44.1 151 -99060100.CSM 1 13.8 2748 -119 1593 116 55.1 0.7 -10.4 262 8.3 31.9 59.4 205 -99053122.LBL 1 12.8 2910 -27 1574 106 61.1 1.3 -11.1 247 8.1 34.8 75.6 204 -99053023.LXN 1 11.3 1917 -2 1506 20 24.9 0.0 -12.7 282 7.1 22.6 26.3 85 -99052700.INK 1 10.3 1701 -31 1781 9 53.5 0.0 -13.0 263 8.4 26.7 60.4 107 -99052521.ROW 1 8.6 1056 -1 2099 26 43.2 0.0 -11.4 250 7.4 17.0 57.8 56 -99051701.P28 1 14.1 3996 -25 1498 52 41.4 0.7 -12.2 235 7.9 28.4 44.1 137 -99050922.P07 1 10.6 1793 -96 2053 72 29.7 0.0 -11.9 197 8.5 25.8 74.2 77 -99050419.EWK 1 9.8 1172 -30 1060 87 56.5 0.9 -17.0 185 7.4 27.6 56.8 112 -99050401.ONL 1 9.2 1561 -17 1532 160 31.3 0.6 -15.4 205 7.3 24.3 33.6 208 -99050220.HDE 1 8.7 687 -3 649 100 31.9 0.4 -19.2 208 7.1 21.5 23.0 124 -99050122.MAF 1 12.3 1710 -9 776 232 56.9 3.8 -11.2 237 6.8 32.4 76.7 295 -99043021.INK 1 13.0 2707 -11 1033 174 50.2 3.8 -11.8 197 7.3 35.6 67.7 236 -99042421.AGS 1 9.7 443 -32 1749 52 54.7 0.1 -12.4 292 6.7 37.3 65.4 176 -99042300.MKO 1 13.6 2181 -13 1003 243 55.3 4.9 -11.4 253 7.8 35.3 67.1 248 -04082522.FOE 1 16.3 3285 -59 1225 128 33.5 1.7 -8.6 243 6.8 34.0 42.4 233 -04082423.DPA 1 15.3 616 -29 685 237 28.3 0.7 -6.6 213 5.2 26.6 21.5 254 -04082401.FOE 1 17.3 2862 -33 582 300 33.1 4.7 -7.7 274 6.8 24.8 34.1 345 -04082200.C07 1 12.4 2025 -24 1364 108 27.4 0.6 -7.7 278 6.6 14.0 41.6 288 -04081522.ATH 1 10.0 1320 -50 1754 133 37.4 0.3 -10.5 325 7.6 38.4 41.5 249 -04081420.HAT 1 16.9 1221 -20 693 281 41.3 2.4 -6.1 204 4.5 32.5 54.5 312 -04081219.FAY 1 15.4 835 -29 887 115 48.5 0.8 -7.1 211 5.4 29.3 50.5 134 -04081215.CAE 1 16.3 1332 -11 579 78 38.5 0.7 -8.3 217 5.9 37.1 28.4 136 -99112300.TUL 1 11.8 1383 -12 847 203 54.3 2.5 -15.7 217 6.9 37.0 60.1 264 -99092823.LAF 1 14.3 1880 -26 925 44 46.4 0.6 -9.8 226 5.9 31.8 53.4 131 -99092700.ICT 1 13.7 1942 -99 1005 119 45.8 1.2 -7.8 271 6.2 28.6 45.7 170 -99092003.OGD 1 5.9 7 -95 1490 6 35.4 0.0 -14.8 306 7.3 17.3 39.8 59 -99091023.OKM 1 14.1 1578 -173 1285 75 38.5 0.1 -9.8 284 6.9 29.7 41.2 205 -99090400.AKO 1 11.6 1401 -21 1298 3 44.8 0.0 -8.1 221 7.3 26.8 60.0 143 -99081920.SME 1 11.4 1158 -29 2080 34 42.9 0.0 -10.2 267 6.9 18.4 33.8 78 -99081621.GLD 1 14.3 3184 -9 1787 78 34.9 0.3 -7.0 231 7.7 23.6 46.0 131 -99081503.JDN 1 7.8 368 -225 2152 37 52.5 0.0 -11.9 242 8.0 36.8 72.2 220 -99080923.MKT 1 16.2 2484 -10 814 229 44.4 4.2 -9.7 289 7.7 38.9 63.1 274 -99073100.DMH 1 14.4 2057 -58 1629 66 38.0 0.3 -8.8 331 7.0 18.2 55.7 83 -99072800.COQ 1 11.9 957 -73 1267 208 61.5 1.2 -12.4 294 7.3 37.9 75.1 349 -99072300.ABR 1 15.9 3073 -48 1643 51 26.1 0.2 -7.9 237 7.7 10.4 43.4 60 -99072201.GGW 1 8.8 1107 -147 2618 58 49.5 0.0 -11.3 230 8.7 27.6 92.9 163 -99072022.OLZ 1 19.5 3709 -2 737 170 42.4 4.4 -5.2 268 5.5 29.8 44.8 294 -99071400.MOT 1 10.3 1025 -92 1759 96 63.9 0.2 -11.0 284 7.1 34.6 66.5 248 -99070300.LBF 1 18.3 5887 -62 1227 118 33.7 2.8 -6.4 235 9.0 23.9 55.3 163 -99070123.IPT 1 14.7 908 -27 884 203 33.0 1.0 -6.8 229 5.6 30.6 31.5 243 -99062922.GUY 1 13.7 3266 -87 2035 154 43.7 0.0 -7.8 283 9.0 32.3 53.8 237 -99062802.OGA 1 12.3 1529 -168 1178 203 64.3 0.5 -9.7 266 8.8 33.4 87.6 253 -99062701.MCK 1 16.5 3830 -43 1226 55 34.0 0.9 -7.8 258 8.2 20.8 57.0 152 -99062700.SNY 1 12.1 2217 -42 1612 24 49.9 0.2 -8.9 251 8.2 28.2 77.8 141 -99062300.MHE 1 14.1 1832 -74 977 196 23.4 0.0 -9.7 239 7.3 17.5 18.0 213 -00050901.AIZ 0 13.1 1987 -68 1453 84 35.7 0.5 -11.3 241 8.5 41.9 28.1 204 -00050722.SNY 0 9.8 2015 -39 1845 23 56.1 0.1 -12.4 245 8.7 34.2 64.8 128 -00050707.OGA 0 11.6 1205 -190 787 34 39.5 0.0 -11.3 236 8.2 22.0 47.2 115 -00050323.RBD 0 11.2 940 -3 1077 54 42.9 0.3 -14.6 290 6.2 28.9 58.4 174 -00043001.ABI 0 11.9 2549 -66 1686 111 39.6 0.5 -11.8 268 8.4 26.8 40.5 228 -00042423.LAA 0 5.4 613 -132 2566 97 54.0 0.0 -16.3 278 8.9 29.1 72.7 192 -00042422.EHA 0 6.7 706 -56 2143 58 53.8 0.0 -15.2 295 8.1 25.8 83.4 159 -00042021.BWG 0 11.2 1126 -13 1162 167 52.1 1.4 -13.5 240 7.4 46.8 53.8 253 -00042021.BNA 0 11.2 989 -26 1114 165 53.6 1.3 -13.7 242 7.7 45.4 65.0 244 -00042001.MCI 0 12.4 2093 -43 1300 141 61.9 2.1 -12.3 226 7.0 33.4 81.4 163 -00042000.JCT 0 13.1 2950 -156 1701 170 51.7 0.4 -9.4 253 8.2 40.5 71.8 240 -00041822.SJT 0 7.1 414 -185 3169 -7 49.4 0.0 -9.5 243 8.2 32.3 60.6 45 -00041620.SUS 0 9.5 579 -1 968 46 41.8 0.2 -18.1 247 6.6 30.2 69.5 154 -00041602.GRA 0 10.2 901 -182 1269 251 56.8 0.2 -17.0 244 8.6 34.1 76.8 276 -00033000.SHV 0 12.6 1635 -14 797 147 57.7 2.3 -15.2 267 7.2 33.9 91.9 219 -00032900.HYI 0 15.8 2875 -10 771 106 60.6 3.0 -11.6 251 7.3 36.4 82.8 192 -00032522.BNA 0 8.3 268 -8 1461 34 37.5 0.0 -16.9 270 6.2 23.2 61.3 60 -00032207.MAF 0 11.5 1952 0 562 249 54.6 4.4 -16.4 196 8.3 45.0 77.8 468 -00031600.CSM 0 8.3 808 -99 1327 59 34.5 0.1 -17.7 251 7.6 25.7 34.3 101 -00031022.BHM 0 10.3 614 -95 1034 103 48.9 0.4 -15.8 238 7.0 33.1 49.4 179 -00030923.LRD 0 13.5 2701 -7 1360 -13 41.3 -0.2 -12.5 256 7.5 20.8 59.4 95 -00030920.GFL 0 7.1 1 -425 1416 88 63.6 0.0 -18.7 242 8.1 39.6 77.0 165 -00030900.UNU 0 9.9 1306 -11 1121 172 50.6 1.7 -17.3 203 6.6 39.6 44.1 206 -00030900.CLI 0 9.4 673 -29 1009 196 53.3 1.2 -16.9 202 6.6 39.4 53.8 226 -00030302.PWG 0 12.0 1469 -17 1106 252 60.9 3.3 -12.2 259 6.1 45.0 75.3 323 -00030222.AFW 0 11.1 999 -6 913 256 68.3 2.6 -13.5 238 6.5 36.9 80.1 345 -00022606.CRS 0 13.3 2158 -10 637 191 48.7 3.3 -14.8 239 6.9 25.4 69.2 184 -00022523.FSD 0 7.3 495 -2 929 82 38.3 0.3 -21.9 172 7.7 30.1 52.5 83 -00022405.FAM 0 9.2 437 -46 772 315 46.8 1.1 -18.0 235 6.3 29.2 42.2 331 -00072222.BBW 0 11.9 1462 -1 1218 36 35.2 0.2 -11.1 328 6.5 26.6 43.9 124 -00072220.GLD 0 10.6 1162 -15 1699 26 39.9 0.1 -10.2 319 7.4 19.8 55.8 82 -00072122.BFF 0 9.8 1738 -8 2036 34 42.0 0.0 -9.9 297 7.7 36.2 48.9 131 -00072022.AKO 0 14.0 3465 -7 1063 22 46.2 0.6 -10.2 278 8.3 29.1 64.7 106 -00072000.BVX 0 17.4 3847 -11 1674 30 36.4 0.2 -7.1 298 6.9 26.0 29.2 130 -00071022.RCA 0 13.2 1916 -28 1452 23 41.1 0.2 -9.2 238 7.6 21.4 68.1 95 -00071001.LBF 0 14.7 2947 -100 1740 24 28.1 0.1 -5.6 239 7.8 23.6 37.9 109 -00070922.MHE 0 16.8 3556 -34 1430 6 40.7 0.1 -6.1 258 6.7 18.8 41.5 109 -00070922.GGW 0 13.3 2242 -12 1039 31 46.6 0.5 -11.4 226 7.4 18.7 71.4 74 -00070901.LWT 0 8.7 874 -65 1998 38 58.4 0.0 -11.5 232 8.1 32.4 92.6 236 -00070805.LVN 0 18.2 2722 -69 530 388 37.6 5.8 -9.2 261 8.1 22.9 53.3 407 -00070803.JDN 0 7.6 57 -220 2275 33 69.9 0.0 -11.7 240 7.8 39.2 84.5 167 -00070601.CUT 0 11.7 2058 -14 1543 37 55.5 0.3 -9.9 245 8.5 28.5 78.8 136 -00070523.MCK 0 16.4 3979 -55 1631 151 45.4 1.6 -6.8 254 8.1 24.5 59.5 231 -00070521.RAP 0 14.5 3135 -2 1289 15 44.0 0.3 -10.0 233 8.0 19.5 68.5 93 -00070501.2WX 0 11.2 1574 -93 1339 -29 47.6 -0.2 -12.4 230 8.6 28.2 78.4 64 -00070421.JDN 0 8.1 1033 -47 1927 -17 41.2 0.0 -15.0 209 7.9 26.2 68.3 49 -00070302.GGW 0 10.6 1484 -86 1685 121 67.7 0.4 -12.6 252 7.9 36.1 78.0 267 -00070222.FOD 0 17.4 3585 -43 1097 53 23.7 0.0 -9.5 292 7.5 16.4 31.4 91 -00070201.ABR 0 14.2 3411 -108 1790 100 24.5 0.0 -10.0 259 8.3 16.6 39.9 145 -00070123.ELO 0 13.3 2835 -49 1339 117 57.8 2.1 -13.1 291 7.7 31.9 66.7 228 -00070122.ABI 0 13.9 1505 -15 1776 40 26.6 0.1 -5.4 261 5.7 21.4 25.5 120 -00070100.JLN 0 15.5 2255 -3 786 81 43.6 1.3 -7.6 313 5.9 25.5 56.4 208 -00062923.ELM 0 8.8 332 -11 1098 19 33.4 0.0 -16.5 253 6.2 19.9 82.5 60 -00062923.D07 0 9.6 1600 -26 1649 30 42.4 0.1 -15.7 295 7.7 30.2 50.5 90 -00062901.LAM 0 11.8 506 -57 1728 28 25.5 0.0 -6.5 268 6.3 18.5 25.2 126 -00062519.AIO 0 14.7 2632 -77 1269 122 38.0 1.2 -10.6 279 7.3 29.0 32.0 250 -00062402.RCA 0 11.5 1507 -76 1200 0 40.3 0.0 -11.0 273 7.9 29.4 67.6 159 -00062322.SDA 0 16.8 4294 -9 1398 56 28.6 0.7 -9.2 284 7.3 21.1 46.7 160 -00061522.OKV 0 14.5 746 -31 749 130 32.3 0.5 -8.8 240 6.0 35.1 29.5 198 -00061323.P28 0 14.3 3106 -53 1734 60 41.3 0.3 -10.0 260 8.0 15.7 31.7 91 -00061122.DFS 0 13.5 3143 -11 1597 67 28.6 0.4 -8.2 251 7.7 28.8 45.0 62 -00060400.GLD 0 9.0 1430 -74 2560 51 35.6 0.0 -10.7 313 8.7 29.0 38.3 146 -00060221.CEF 0 12.1 326 -141 1452 156 38.5 0.1 -9.8 279 6.6 44.9 47.0 277 -00052701.SZL 0 13.7 1477 -23 1157 198 50.0 2.1 -9.7 244 6.7 38.9 69.4 232 -00052501.PPA 0 15.2 3731 -83 1597 78 46.6 0.7 -8.0 249 8.4 33.0 60.7 288 -00052501.ADK 0 16.3 4569 -134 1861 108 40.3 0.2 -7.8 255 8.7 36.4 49.3 291 -00052219.AVC 0 10.1 628 -1 1000 2 52.8 0.0 -13.8 256 5.9 28.0 59.1 95 -00052021.VPC 0 13.0 805 -6 1196 15 39.2 0.1 -9.8 231 6.1 19.7 47.6 87 -00050922.IRS 0 12.0 729 -2 928 68 49.6 0.4 -13.6 230 6.9 46.6 41.5 178 -01041105.JCT 0 14.1 1545 -229 832 346 71.9 0.0 -9.7 230 8.5 44.0 97.0 386 -01041004.IND 0 11.4 1318 -107 1240 185 57.8 1.1 -13.8 292 7.2 35.6 68.3 216 -01040321.UNO 0 12.3 1279 -42 722 107 57.2 1.3 -13.7 270 7.4 36.3 60.7 225 -01040300.BFF 0 5.0 0 -9999 1708 161 63.5 0.0 -17.8 241 7.5 37.7 81.7 433 -01032404.ABI 0 10.8 1700 -61 813 65 27.5 0.5 -18.2 289 8.0 17.4 46.6 180 -01031202.FTW 0 11.7 1341 -9 490 161 53.1 1.9 -17.9 240 7.3 37.5 47.3 201 -01031123.BWD 0 10.1 846 -18 912 76 47.4 0.5 -17.4 245 7.7 31.1 69.7 133 -01022500.TOP 0 7.3 153 -15 715 148 78.6 0.2 -21.3 203 6.8 32.9 92.4 170 -00110907.GZH 0 15.4 1005 -3 768 172 47.3 1.4 -7.8 213 6.0 36.2 52.6 220 -00110906.EET 0 14.9 674 -3 539 277 52.5 1.6 -8.6 217 5.7 41.9 58.8 327 -00110121.CID 0 12.2 1537 -17 1087 164 40.8 1.6 -12.1 210 6.0 36.7 41.3 225 -00102323.ELP 0 9.8 1432 -3 1298 24 68.0 0.2 -14.2 201 7.5 36.8 65.9 132 -00102212.MWL 0 13.4 1016 -7 525 152 31.3 0.8 -11.5 208 6.2 22.4 43.6 149 -00101423.INK 0 8.5 757 -27 2381 63 29.5 0.0 -10.8 243 7.2 27.3 48.1 91 -00101408.CNM 0 11.5 1524 -124 1147 79 34.2 0.3 -10.4 246 7.2 29.4 55.6 119 -00101400.SLN 0 11.5 577 -49 879 26 58.0 0.1 -11.3 234 5.7 28.9 63.6 76 -00100401.GCK 0 8.5 341 -281 1869 -16 53.4 0.0 -11.5 263 8.5 38.0 70.8 124 -00090523.GTF 0 7.6 277 -43 1393 8 65.8 0.0 -15.8 219 7.4 34.7 93.3 112 -00090300.ISN 0 10.7 654 -10 754 62 42.1 0.3 -13.8 225 6.8 27.3 72.5 95 -00090120.SLC 0 5.7 78 -67 2129 29 41.1 0.0 -14.3 198 7.4 15.4 53.6 53 -00081820.BUY 0 15.3 1702 -37 1351 58 34.7 0.4 -8.2 275 6.5 38.7 13.2 134 -00081723.IND 0 19.2 4115 -13 791 158 47.3 5.1 -7.9 275 6.9 37.5 49.8 224 -00081720.LEX 0 16.6 2579 -6 1129 81 36.5 1.1 -6.7 284 5.9 24.9 42.3 141 -00081420.AIT 0 16.2 2299 -120 690 282 52.2 3.0 -9.8 267 8.0 37.9 69.5 368 -00080623.CDJ 0 14.7 1350 -119 1250 43 35.9 0.1 -6.8 272 6.3 24.5 54.6 88 -00080601.HNR 0 18.6 4073 -16 990 54 37.6 1.4 -7.0 271 7.3 25.9 55.8 92 -00080522.AIA 0 7.8 312 -3 2875 0 43.4 0.0 -8.3 272 7.7 22.1 49.4 52 -00080502.PIR 0 14.4 2629 -128 1844 202 48.0 0.3 -7.4 270 7.5 30.4 64.1 318 -00080502.ANW 0 11.5 1035 -228 2157 138 37.9 0.0 -6.3 276 7.6 25.6 46.8 227 -00080222.FKL 0 13.7 1168 -22 892 104 26.2 0.5 -9.1 253 5.9 27.0 55.7 145 -00080202.LWT 0 8.3 700 -130 2701 50 46.5 0.0 -8.4 286 8.6 19.4 78.7 94 -00080202.GGW 0 10.8 1193 -207 1955 94 51.1 0.0 -9.6 293 8.0 25.1 71.3 230 -00072622.AIO 0 16.7 3711 -2 964 67 44.8 1.9 -10.2 324 7.6 29.1 43.1 186 -00072501.HON 0 13.9 2463 -99 1314 85 29.5 0.5 -11.1 271 8.3 13.2 40.3 91 -01060123.LWC 0 11.2 1268 -25 1421 113 62.6 0.8 -13.2 305 6.4 37.6 79.8 249 -01060122.P28 0 11.4 1141 -69 1552 80 51.2 0.3 -9.7 308 6.6 21.4 62.5 156 -01053100.CVN 0 8.5 1309 -86 2195 -18 45.9 0.0 -10.8 289 8.3 24.1 38.5 138 -01052801.END 0 13.1 2369 -85 1258 150 47.1 1.6 -12.5 280 8.2 39.8 67.4 370 -01052400.OKF 0 7.6 314 -55 2200 85 59.2 0.0 -15.3 298 7.1 43.3 63.3 244 -01052022.GRK 0 15.6 2852 -21 1408 32 40.1 0.4 -7.9 242 6.8 30.2 75.1 60 -01051801.RUL 0 11.1 1624 -134 2428 24 25.8 0.0 -8.5 258 8.1 18.9 46.6 76 -01051623.BIE 0 13.4 3208 -41 1905 35 30.0 0.1 -10.4 274 7.5 20.5 32.1 103 -01051218.DDH 0 8.9 325 -25 1493 21 36.4 0.0 -16.2 229 6.4 25.9 46.8 102 -01051000.OLU 0 9.6 2423 -73 2081 70 30.6 0.0 -15.8 265 8.8 23.7 36.8 157 -01050823.GBD 0 8.1 447 -90 1828 55 44.5 0.0 -15.8 323 7.4 25.4 50.6 207 -01050701.COT 0 15.9 3113 -16 1068 4 34.1 0.1 -12.2 267 8.1 10.5 56.5 73 -01050700.ADS 0 14.6 2915 -5 1038 115 37.4 2.0 -13.7 248 7.3 23.1 63.5 148 -01050623.BMQ 0 16.4 4217 -12 955 48 38.2 1.3 -13.0 257 7.5 27.3 64.9 143 -01050501.COT 0 14.3 1453 -9 1075 113 48.9 1.2 -9.9 226 7.0 33.1 73.5 169 -01050200.AUD 0 10.0 1544 -80 1896 85 31.2 0.1 -14.7 266 8.2 22.1 40.9 170 -01050101.SLN 0 10.5 1695 -66 1383 122 37.1 0.7 -16.7 295 8.0 24.3 61.4 188 -01050100.P28 0 9.9 1422 -94 1553 70 45.7 0.2 -15.7 309 7.8 24.3 54.0 188 -01042317.STE 0 9.5 775 -5 970 86 55.4 0.6 -18.0 210 6.8 38.9 110.9 170 -01042304.JCT 0 14.1 2210 -11 659 190 53.5 3.8 -11.8 248 7.8 31.4 55.1 214 -01042222.MWL 0 11.8 1193 -8 1373 116 46.2 0.7 -10.2 212 6.2 33.4 58.0 105 -01042123.PIA 0 12.1 1857 -13 1175 79 41.0 0.8 -13.4 257 7.5 25.7 51.8 94 -01042123.CDS 0 10.3 2000 -70 2105 81 55.8 0.0 -11.8 230 7.9 27.2 70.8 141 -01042102.SLN 0 11.5 2072 -206 1218 280 50.2 0.0 -15.1 239 8.7 44.2 73.5 374 -01041702.SJT 0 13.0 1793 -30 989 96 38.8 1.1 -10.9 296 7.0 26.3 65.2 260 -01041700.LBB 0 8.1 406 -65 1861 42 46.3 0.0 -12.1 288 7.1 32.9 80.6 256 -01041500.ABI 0 12.6 2222 -121 1474 76 59.9 0.5 -13.2 249 8.7 28.8 78.5 130 -01041423.ADM 0 14.2 1613 -86 524 248 67.7 3.1 -14.2 254 8.6 38.9 90.8 310 -01041422.PCS 0 13.6 2872 -90 1455 5 57.7 0.1 -10.8 245 8.2 21.5 77.6 85 -01041422.EMP 0 8.9 652 -15 1486 57 59.4 0.2 -16.8 254 7.2 31.9 84.7 218 -01041421.HBR 0 13.9 2647 -29 786 167 70.6 4.4 -14.3 255 8.2 39.1 91.1 239 -03050100.BRL 0 12.7 2707 -10 1047 121 47.3 2.5 -15.8 247 8.2 27.0 50.9 270 -03043021.AIA 0 12.3 2247 -53 863 158 49.0 2.8 -15.7 243 8.1 37.1 49.5 276 -03043003.LIC 0 8.7 1228 -82 574 264 52.2 2.2 -15.9 216 8.8 43.9 59.2 676 -03042900.APA 0 6.3 1056 -56 1639 56 35.9 0.1 -15.6 239 8.3 10.6 65.7 63 -03042600.HRL 0 12.4 1634 -219 1994 5 43.7 0.0 -11.1 286 8.3 25.0 72.5 36 -03042522.FTY 0 11.2 645 -12 811 160 61.6 1.0 -14.4 253 6.7 33.8 66.6 259 -03042520.ANB 0 11.5 783 -1 777 164 64.0 1.3 -14.0 259 6.2 36.4 64.7 319 -03042400.SEP 0 14.4 2485 -6 558 393 62.4 9.8 -14.6 238 7.9 39.1 92.6 485 -03042022.MKL 0 12.5 1017 -22 789 92 57.6 0.9 -14.3 251 6.9 29.0 70.2 188 -03042019.MEM 0 13.1 1682 -6 857 78 50.6 1.1 -14.2 252 7.3 29.0 57.0 148 -03041922.P#0 0 11.7 1623 -17 730 127 72.6 2.1 -19.4 223 7.9 35.5 102.9 148 -03041920.END 0 10.6 1171 -12 629 144 57.4 1.6 -21.0 215 8.4 39.0 99.4 219 -03041907.FDR 0 12.6 1046 -418 613 365 65.8 0.0 -13.9 207 8.9 40.5 101.8 352 -03040720.HOU 0 16.5 2215 -1 373 67 57.9 1.4 -11.4 231 7.6 30.3 77.2 191 -03040718.BPT 0 13.8 933 -139 741 16 59.0 0.1 -12.1 226 7.4 26.5 91.0 110 -03040717.LFT 0 14.1 780 -168 559 29 50.5 0.0 -12.0 233 7.3 29.3 84.8 74 -03040605.C12 0 11.3 655 -128 639 328 69.4 1.0 -14.6 250 7.3 45.3 111.0 697 -03040601.C11 0 12.1 2056 -4 832 109 75.1 2.2 -15.3 251 7.6 26.4 93.3 198 -03040400.LW1 0 13.3 2761 -1 682 153 54.3 3.8 -15.1 242 7.6 32.9 52.2 224 -03040322.HBR 0 9.5 1315 -38 1655 57 42.4 0.2 -14.8 235 7.5 33.0 47.0 130 -03032821.MBS 0 7.7 95 -1 1423 199 68.1 0.1 -17.6 223 6.6 48.9 65.7 252 -03032819.AZO 0 8.9 146 -2 830 200 60.9 0.3 -17.3 225 6.7 54.5 64.3 255 -03031722.SPS 0 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 -03031720.SPS 0 10.2 947 -44 1140 35 24.3 0.0 -16.7 216 7.4 15.4 100.9 42 -03031221.PBI 0 14.2 1790 -2 1215 21 36.5 0.2 -12.1 258 7.7 2.8 67.6 -23 -03031218.FPR 0 15.8 2760 -2 892 -28 38.6 -0.5 -14.1 256 8.0 11.8 71.6 86 -01062102.ICT 0 13.9 1917 -38 976 89 37.8 1.1 -11.3 291 7.3 26.8 48.8 202 -01061623.JMS 0 8.9 600 -4 1096 41 40.5 0.2 -18.1 283 7.1 25.4 84.9 82 -01061122.RGK 0 14.3 3269 -77 1618 201 51.8 1.8 -10.9 265 8.4 35.2 56.2 397 -01060502.CSM 0 15.8 3992 -79 1412 107 34.9 1.2 -8.4 251 8.1 28.3 40.7 227 -01060501.LHX 0 8.3 615 -248 1957 94 44.0 0.0 -11.2 243 9.0 29.0 49.3 127 -03062823.RST 0 8.8 203 -71 1471 26 40.8 0.0 -12.1 287 4.8 15.4 60.6 57 -03062822.BH4 0 6.7 253 -82 2374 15 53.7 0.0 -12.2 288 8.0 39.8 64.9 352 -03062820.WSC 0 9.5 432 -25 1288 24 38.2 0.1 -13.2 292 5.0 20.7 57.7 45 -03062800.C07 0 9.3 1323 -51 2202 29 36.5 0.0 -9.3 311 7.4 12.9 41.7 81 -03062800.8V7 0 10.5 2208 -13 2023 82 42.3 0.0 -8.2 320 7.8 44.3 44.0 293 -03062722.8V7 0 11.1 2543 -6 1821 66 38.6 0.2 -8.4 315 7.5 40.0 47.0 258 -03062721.C07 0 8.9 1146 -29 2232 32 35.4 0.0 -9.2 306 7.2 11.7 50.1 74 -03062401.CYS 0 10.5 1054 -23 891 146 67.4 1.5 -8.4 210 6.6 44.6 77.5 258 -03062022.ROW 0 10.0 1448 -1 2438 18 41.2 0.0 -8.3 220 7.9 29.6 51.3 74 -03062022.CVS 0 12.0 1680 -21 1220 96 32.9 0.7 -8.5 224 7.2 20.3 41.0 110 -03062020.CVS 0 12.3 2087 -2 1100 14 22.8 0.0 -9.4 233 7.4 10.8 35.9 48 -03061501.CNM 0 11.3 2677 -1 2178 -48 31.4 0.0 -11.2 338 8.5 17.4 38.2 109 -03061423.HOB 0 9.6 1525 -68 2132 7 32.6 0.0 -11.5 330 8.5 14.0 32.3 24 -03061223.C11 0 20.9 5150 -8 501 190 32.5 5.3 -8.9 269 8.0 41.4 58.8 339 -03061221.AGC 0 13.1 691 -9 1032 158 35.1 0.6 -8.8 227 5.9 34.2 44.2 256 -03060401.TCC 0 11.4 1746 -91 1622 -15 59.6 -0.1 -9.6 288 8.2 44.8 48.7 398 -03060322.LBB 0 13.6 2239 -128 1199 80 45.2 0.5 -9.1 302 7.9 31.8 57.3 316 -03060302.LRD 0 17.3 3023 -81 1418 -4 35.4 0.0 -5.0 285 7.3 27.3 67.7 -12 -03053121.ILM 0 13.5 1237 -102 1265 394 58.4 2.3 -10.4 275 6.3 47.7 74.8 576 -03052001.ADM 0 16.8 3033 -19 1155 81 33.3 1.2 -8.4 288 7.5 14.5 61.0 188 -03051922.FSI 0 15.9 2088 -80 836 131 37.4 1.4 -8.3 246 8.1 40.1 50.7 385 -03051409.C12 0 13.9 2056 -415 1151 505 44.5 0.0 -12.7 290 9.5 25.4 80.3 466 -03051406.LW1 0 15.8 3351 -219 819 259 50.4 0.0 -11.8 274 8.3 12.9 74.5 238 -03051401.C11 0 13.9 3239 -178 1774 132 58.3 0.1 -9.9 286 8.2 22.1 60.4 192 -03051322.CDS 0 12.4 3323 -92 2274 79 49.1 0.0 -10.1 280 8.6 18.1 68.8 98 -03051223.MRF 0 11.6 1914 -2 1612 41 42.7 0.2 -6.0 279 6.7 33.9 49.2 174 -03051019.MLC 0 14.5 849 -221 615 158 58.7 0.0 -8.7 240 7.6 34.0 74.3 199 -03051017.P#Q 0 16.5 2801 -34 619 97 68.4 2.7 -9.2 235 7.2 32.3 77.8 168 -03051000.P#J 0 16.2 3929 -21 888 74 55.8 2.7 -12.5 247 7.6 33.6 64.7 227 -03050922.LEX 0 15.5 2304 -3 715 119 55.3 2.5 -9.5 278 7.4 32.8 69.7 185 -03050921.COU 0 16.1 4338 -12 941 67 45.4 2.2 -11.8 246 7.4 35.8 73.5 264 -03050920.SDF 0 15.2 2300 -15 871 88 52.2 1.8 -10.2 268 7.2 36.6 70.7 247 -03050520.MKL 0 15.8 2332 -17 581 247 71.6 5.8 -11.9 263 7.3 40.2 88.1 300 -03050223.BMX 0 15.4 3487 -10 686 61 44.2 1.6 -13.2 283 6.8 21.9 38.7 114 -03050221.HSV 0 13.0 2237 -40 946 139 42.3 2.2 -13.8 264 7.0 27.8 33.8 201 -03050221.ABL 0 13.6 3056 -5 1063 81 40.9 1.6 -14.7 280 7.2 27.0 27.0 130 -03050219.SJT 0 15.1 4252 -2 1189 17 38.9 0.4 -12.5 277 8.1 4.7 61.7 18 -03050219.ABL 0 12.9 2572 -28 1072 45 27.2 0.5 -13.7 261 6.7 22.6 36.0 82 -03050218.MSL 0 13.0 2367 -24 912 19 25.5 0.2 -14.5 257 7.4 24.2 40.8 60 -03050201.ACT 0 13.6 2339 -88 1301 -44 31.1 -0.3 -11.9 280 8.3 21.3 53.8 -77 -03050102.END 0 14.0 3853 -58 1033 227 43.6 5.8 -13.5 250 7.4 27.5 43.5 247 -03071221.AVL 0 11.9 710 -2 1196 56 37.5 0.2 -8.5 266 5.6 31.7 43.3 103 -03071201.FOE 0 16.7 3598 -41 1289 -96 59.4 -2.4 -10.2 313 7.9 33.9 54.8 89 -03071200.FOE 0 16.2 3683 -11 1441 -16 63.8 -0.3 -11.0 315 7.7 31.9 59.2 109 -03071123.P#H 0 12.6 927 -26 1632 97 59.9 0.3 -9.9 322 7.2 45.3 55.0 319 -03070904.PHP 0 14.6 2161 -292 1066 549 72.4 0.0 -8.6 260 8.8 53.5 55.7 683 -03070900.BH3 0 8.3 1108 -106 2627 277 55.8 0.0 -7.9 250 8.4 55.7 68.2 568 -03070723.LVS 0 8.8 850 -179 2135 85 20.0 0.0 -6.4 329 8.7 24.3 27.9 305 -03070720.DSM 0 18.0 4261 -35 1012 20 39.2 0.6 -9.9 262 8.0 13.2 34.7 79 -03070719.LVS 0 9.9 1337 -68 1800 12 22.3 0.0 -7.2 336 8.0 27.0 21.0 98 -03070600.VTN 0 11.6 1572 -201 1584 157 52.8 0.0 -9.5 273 8.2 30.3 50.1 293 -03070521.RAP 0 8.7 803 -208 2327 67 22.6 0.0 -11.2 272 8.5 6.7 33.0 46 -03070521.P#7 0 10.3 1147 -137 2084 84 43.4 0.0 -10.3 249 8.1 22.9 55.2 239 -03070517.BH3 0 8.9 1171 -147 2263 -14 27.2 0.0 -12.5 293 9.1 15.8 39.6 51 -03070305.GDV 0 9.1 634 -206 1972 120 22.6 0.0 -13.9 250 8.7 30.3 58.1 255 -03063018.AUG 0 11.8 1327 -56 1152 60 42.9 0.5 -12.3 267 5.3 24.4 72.0 118 -03081800.BH5 0 9.0 725 -5 2392 -33 27.4 0.0 -9.3 180 7.6 12.2 31.3 76 -03081322.XRW 0 16.6 1031 -16 519 88 21.6 0.0 -6.2 187 5.5 23.7 39.1 164 -03081202.SEP 0 12.7 373 -104 1300 -113 55.9 -0.2 -8.4 345 6.8 38.0 68.0 -12 -03081200.FWD 0 12.2 1050 -51 2135 -30 50.2 0.0 -8.8 339 6.7 35.0 52.7 68 -03081023.P#9 0 13.9 1702 0 1195 30 41.7 0.3 -9.2 346 6.8 25.8 56.8 104 -03080902.P#C 0 15.5 3216 -71 1472 8 27.4 0.1 -6.4 277 7.9 17.3 40.8 199 -03080900.MIB 0 15.0 3325 -48 1477 39 33.2 0.4 -9.0 291 7.7 10.7 43.9 102 -03080900.P#C 0 14.4 3127 -1 1826 10 25.0 0.0 -5.8 262 7.5 12.2 42.3 64 -03080622.GLD 0 12.9 3132 -2 2338 21 28.1 0.0 -7.1 306 8.2 14.7 32.7 115 -03080601.CNU 0 15.8 2262 -28 1629 -18 34.6 -0.1 -5.1 317 6.6 25.1 42.1 49 -03080600.SUX 0 15.5 1945 -3 996 54 38.2 0.7 -8.6 321 7.0 35.9 44.6 171 -03080521.TOP 0 16.0 2857 -24 1592 -7 30.8 0.0 -6.8 308 6.3 19.6 40.9 101 -03080520.DAN 0 15.0 2224 -8 858 8 18.6 0.0 -10.1 275 6.4 27.6 30.4 121 -03080422.P#R 0 15.1 1771 -64 1131 59 51.1 0.7 -8.5 326 6.5 23.7 72.7 144 -03080401.BVX 0 16.9 2856 -38 1072 96 33.8 1.4 -8.7 308 6.7 18.2 47.9 100 -03080202.LUS 0 9.3 520 -170 1828 -21 47.7 0.0 -8.2 291 7.9 30.7 60.7 11 -03080123.CRL 0 13.5 2544 -8 1131 18 35.3 0.2 -12.9 299 7.9 26.6 36.1 109 -03080103.MCW 0 11.0 914 -111 1515 8 24.1 0.0 -12.2 281 7.0 26.6 47.8 60 -03073123.C31 0 8.6 251 -238 2988 79 50.4 0.0 -8.0 311 8.0 29.8 74.4 268 -03073120.TVL 0 10.6 1275 -24 1488 33 34.5 0.1 -7.4 90 7.8 32.3 17.1 170 -03072700.IWD 0 15.1 1598 -19 1386 149 42.6 1.0 -6.1 276 5.9 27.7 60.4 150 -03071802.BH1 0 13.9 2073 -132 1543 52 64.4 0.2 -6.9 291 7.8 47.0 77.9 171 -03071721.RAP 0 14.6 3713 -127 1972 107 39.2 0.0 -6.2 280 8.5 31.5 54.8 181 -03071320.MSL 0 16.4 2839 -21 1060 37 23.4 0.0 -9.3 310 7.1 4.1 36.8 35 -03071320.DIK 0 9.2 2113 -26 3189 -19 27.9 0.0 -9.3 266 9.0 11.0 36.6 31 -04040721.P#U 0 11.2 1509 -10 1060 103 47.1 1.2 -15.7 268 6.4 35.8 60.8 191 -04040702.SPS 0 8.6 230 -53 980 110 36.0 0.2 -17.3 236 6.3 19.0 53.3 110 -04040700.FTW 0 10.4 641 -8 948 43 57.7 0.3 -14.3 228 6.4 22.9 60.1 83 -04040422.LRD 0 13.8 2148 -1 827 171 49.4 3.0 -12.9 244 7.0 31.5 38.8 217 -04040421.ALI 0 13.2 1124 -3 718 10 40.8 0.1 -13.2 238 7.0 18.0 35.9 100 -04032701.DHT 0 9.5 1004 -128 1142 153 30.2 0.3 -13.4 233 8.2 31.2 63.3 235 -04032623.RAP 0 8.7 1651 -52 1568 172 42.5 0.9 -15.5 205 8.0 26.0 46.8 264 -04031802.FSM 0 8.0 442 -99 1939 211 48.0 0.0 -17.1 278 7.5 37.8 72.5 338 -04031800.P#P 0 9.4 1357 -30 1585 127 45.0 0.5 -17.4 288 7.7 34.4 66.4 269 -04030121.ORD 0 7.2 534 -1 908 208 58.9 1.1 -23.3 222 6.6 37.3 72.6 297 -04030120.RFD 0 6.8 505 -7 892 172 55.3 0.8 -24.3 220 6.8 34.8 71.1 256 -04022416.MCO 0 13.1 534 -37 687 121 47.0 0.5 -10.8 255 5.0 28.8 81.9 156 -04022407.G#5 0 10.5 962 -124 801 -16 47.4 -0.1 -18.2 218 7.7 31.4 83.7 14 -04022316.MSY 0 11.3 0 -9999 417 436 51.3 0.0 -11.2 240 6.1 44.9 86.2 531 -04020601.BTR 0 11.7 57 -172 540 186 69.9 0.0 -13.3 214 7.0 48.1 87.1 199 -04020514.LFT 0 11.1 165 -244 1109 583 49.0 0.0 -11.7 217 6.5 46.0 63.5 611 -04020512.LCH 0 13.6 1421 -64 497 282 49.1 3.0 -12.5 222 6.8 41.7 68.1 319 -04011921.VRB 0 10.3 196 -20 878 -16 82.2 0.0 -14.0 242 5.1 46.9 123.3 207 -03112718.RUE 0 10.5 681 0 396 4 92.3 0.0 -20.1 238 7.0 35.8 100.8 153 -03110923.SAC 0 6.9 156 -14 892 38 24.7 0.0 -25.3 234 7.5 14.4 91.8 77 -03102818.CTY 0 16.5 1074 -53 594 181 37.6 1.2 -7.8 217 6.3 23.6 51.5 193 -03100822.VAD 0 14.1 1355 -7 765 -4 27.1 0.0 -11.2 277 6.4 13.9 52.0 68 -03092718.CBE 0 11.6 969 -2 1256 109 40.4 0.5 -12.3 213 6.1 33.1 58.2 137 -03092620.UIN 0 12.7 1139 -3 844 177 50.2 1.7 -14.6 266 7.9 42.7 77.1 266 -03092619.BRL 0 11.1 906 -34 824 125 50.2 1.0 -14.9 256 6.9 40.9 76.6 149 -03091200.MRF 0 9.8 747 -2 1645 9 36.3 0.0 -6.8 276 6.2 25.5 49.1 163 -03090900.MAF 0 9.9 1214 -1 2565 13 32.3 0.0 -8.4 313 7.4 22.4 35.6 163 -03083123.HUF 0 14.8 27 -163 471 268 39.8 0.0 -6.8 243 6.3 41.6 43.2 340 -03082601.P#4 0 12.9 980 -231 1606 140 42.5 0.0 -9.4 277 7.1 39.4 44.3 283 -03082600.ABR 0 14.2 3471 -76 1925 104 37.8 0.1 -11.4 289 8.6 27.8 43.9 143 -03082221.LOL 0 9.6 944 -94 1467 89 64.9 0.3 -12.3 188 8.3 46.4 77.0 299 -03082119.APX 0 14.4 2077 -120 1359 80 36.1 0.3 -8.3 255 7.1 34.1 35.4 132 -03082100.DLH 0 16.1 2503 -11 1009 166 39.5 2.7 -8.1 226 6.2 24.3 46.3 201 -04051501.PUB 0 3.9 204 -85 2585 153 55.2 0.0 -18.2 268 8.8 42.0 78.8 355 -04051423.COS 0 4.6 230 -87 1664 52 57.1 0.0 -18.0 274 8.2 45.2 68.4 179 -04051300.HBR 0 14.0 4148 -28 1710 172 41.2 1.4 -11.1 244 7.8 44.0 46.5 333 -04051100.LUS 0 8.3 917 -69 1429 204 53.5 0.8 -11.5 237 7.4 28.1 44.2 323 -04050923.CVS 0 5.9 554 -61 3040 -32 23.7 0.0 -12.6 309 9.6 17.1 15.5 78 -04050921.STC 0 9.9 1302 -52 1737 185 49.7 0.5 -14.2 264 7.5 46.1 49.8 400 -04050900.P#A 0 13.8 2438 -42 1008 193 29.0 2.3 -12.7 278 7.7 19.9 36.2 251 -04050822.BH3 0 5.3 996 -6 3054 49 48.0 0.0 -15.0 280 9.6 8.9 60.8 58 -04050522.RIC 0 8.3 824 -38 1493 133 43.8 0.4 -20.4 310 7.1 34.9 60.9 251 -04050101.FWD 0 13.9 2471 -39 907 158 44.9 2.9 -14.8 225 8.3 23.0 58.2 185 -04043021.C12 0 13.3 2483 -8 1029 37 45.1 0.7 -14.1 236 7.9 32.8 46.0 48 -04043020.DYS 0 14.1 2950 -10 638 71 52.3 1.8 -14.3 236 7.8 34.1 51.0 143 -04043018.ABI 0 12.0 2372 -1 1211 -3 32.6 0.0 -13.6 230 7.7 22.8 40.3 -22 -04042920.MLU 0 12.9 972 0 744 72 46.0 0.5 -14.5 232 6.6 29.2 45.8 176 -04042821.G#2 0 10.1 747 -3 1175 139 56.7 0.8 -14.7 252 7.4 32.3 53.8 179 -04042521.CDS 0 7.1 679 -5 2042 20 45.4 0.0 -17.7 276 7.7 27.7 76.8 88 -04042300.SGF 0 9.8 113 -134 794 263 69.4 0.1 -15.2 267 7.5 51.1 79.0 572 -04042300.P#P 0 14.6 2114 -9 448 155 49.9 2.7 -13.6 245 7.2 26.3 46.7 258 -04042223.C12 0 12.6 1615 -11 1173 56 54.8 0.7 -10.8 266 6.6 36.5 68.7 191 -04042222.UMN 0 10.5 412 -29 663 220 60.2 0.9 -17.5 254 8.2 45.7 67.6 357 -04042221.C34 0 11.2 1504 -22 1170 72 53.8 0.8 -15.5 265 7.8 38.9 55.3 252 -04042200.ADM 0 11.7 1347 -25 1310 194 51.9 1.6 -13.2 269 6.8 28.4 68.1 339 -04042122.C12 0 11.5 1550 -3 1449 83 53.3 0.6 -13.2 261 6.6 30.3 65.8 168 -04041921.HOB 0 11.3 2173 -1 1395 86 53.9 1.0 -10.9 235 6.7 32.7 83.0 143 -04041801.MFD 0 10.8 1224 -65 1060 185 23.7 0.0 -16.5 288 8.0 29.7 50.0 245 -04041723.MFD 0 11.9 2519 -15 1046 104 26.5 1.1 -15.5 303 7.2 29.2 37.6 184 -04041105.MFE 0 15.8 2222 -37 402 26 39.9 0.4 -11.6 248 7.5 2.1 69.3 23 -04041019.ILM 0 9.2 180 -45 1165 111 41.2 0.1 -16.1 267 6.0 29.7 69.5 345 -04041001.PRX 0 8.8 516 -75 1780 210 42.3 0.1 -14.1 270 6.7 37.6 59.1 314 -04040818.DAB 0 13.2 1058 -19 810 73 56.2 0.7 -15.8 264 7.7 33.6 94.9 186 -04040815.DHN 0 11.9 877 -2 522 78 53.9 0.6 -15.8 257 6.5 30.9 87.6 111 -04071305.CHE 0 17.6 3151 -107 771 181 49.7 2.9 -8.9 301 7.9 29.7 60.2 300 -04070104.HBR 0 15.7 1988 -45 801 174 24.0 0.0 -8.2 259 7.0 25.9 23.7 276 -04062402.FNT 0 10.0 608 -67 1046 219 50.4 1.0 -15.3 260 6.5 32.1 72.4 270 -04062222.BIS 0 7.2 504 -14 1518 9 56.3 0.0 -18.7 301 6.3 28.7 75.6 88 -04062023.DHT 0 8.4 905 -127 2633 107 47.8 0.0 -9.3 270 8.8 36.3 67.8 192 -04061902.G#1 0 13.2 1631 -27 1122 144 35.1 1.2 -8.6 284 7.3 37.4 58.3 408 -04061900.HDN 0 6.4 316 -26 1668 -40 51.4 0.0 -13.3 257 8.3 36.5 73.3 29 -04061820.FAM 0 15.9 1842 -13 923 65 31.0 0.6 -7.0 271 5.7 23.9 35.7 131 -04061800.LHX 0 12.7 2059 -86 777 206 47.3 2.5 -11.2 235 8.4 37.4 49.6 651 -04052700.CHE 0 8.9 347 -4 1255 145 31.1 0.2 -14.7 268 6.1 31.0 44.9 228 -04052623.TYS 0 14.7 1654 -44 919 199 50.1 2.8 -9.7 275 5.9 37.8 71.9 255 -04052623.OKC 0 15.9 3047 -69 1198 124 56.8 2.5 -7.9 261 6.8 24.4 82.9 79 -04052622.FSD 0 9.4 835 -34 1187 143 35.4 0.6 -17.3 267 7.3 33.1 47.2 271 -04052621.CSV 0 14.4 1608 -15 870 176 59.8 2.8 -9.3 268 6.2 35.9 58.7 237 -04052621.C33 0 13.6 2405 -23 1847 104 55.5 0.4 -9.6 256 7.5 30.4 80.9 72 -04052603.CAI 0 15.4 1463 -14 609 129 47.0 1.5 -11.0 277 7.2 31.6 59.9 153 -04052402.P#7 0 7.8 400 -213 1358 246 41.2 0.0 -15.5 247 8.2 35.3 62.4 412 -04052400.STL 0 16.1 3087 -3 604 162 45.4 3.8 -12.7 253 8.0 28.6 58.7 195 -04052400.CDR 0 5.8 117 -187 2181 178 56.7 0.0 -14.5 256 8.0 30.8 66.1 338 -04052323.BGM 0 14.6 2244 0 781 156 41.1 2.4 -11.9 272 7.8 30.1 44.7 249 -04052320.PIN 0 12.0 1300 -3 1376 120 33.7 0.6 -11.8 267 6.7 36.9 31.3 199 -04052300.ELM 0 12.4 1089 -41 1163 226 43.8 1.5 -9.7 281 5.7 46.2 46.0 359 -04052201.G#1 0 12.3 2404 -84 1771 261 33.8 0.6 -8.2 246 7.9 36.9 50.5 385 -04052201.SNY 0 7.0 484 -214 2287 78 62.8 0.0 -12.7 227 9.0 42.4 81.2 214 -04052123.HYS 0 12.7 3460 -27 2109 75 39.7 0.0 -10.8 236 8.6 29.0 45.1 157 -04052100.FKL 0 14.7 2440 -9 772 269 42.7 4.7 -10.6 299 6.4 28.6 49.2 346 -04052100.DEN 0 9.0 1781 -3 1934 76 49.3 0.1 -11.5 231 8.4 30.6 60.1 225 -04051723.DSM 0 13.3 1669 -24 854 23 36.8 0.2 -11.5 251 6.5 26.2 51.1 132 -04051723.PUB 0 9.2 546 -83 1212 147 55.3 0.5 -11.9 251 7.8 44.9 72.1 222 -04051601.9V9 0 7.5 608 -65 1315 120 61.8 0.5 -19.3 286 7.0 35.7 85.8 189 -04051521.PIR 0 6.8 724 -30 1545 91 60.8 0.3 -21.3 289 7.3 36.7 70.4 224 -04051520.Y26 0 7.0 965 -32 1206 89 60.4 0.7 -23.7 287 7.8 40.0 67.1 217 -99053023.P07 0 12.1 2286 -113 1897 53 39.7 0.1 -8.5 315 7.8 22.5 45.3 165 -99052800.FTW 0 12.2 1104 -4 954 41 33.8 0.3 -12.6 256 6.8 24.6 36.5 103 -99052503.FST 0 10.3 1116 -185 1882 122 53.5 0.0 -9.7 271 8.3 44.1 67.4 157 -99052502.INK 0 11.4 1576 -110 1665 119 56.3 0.4 -10.0 270 7.8 39.9 60.4 191 -99052420.ABQ 0 8.1 781 -71 1338 71 34.2 0.2 -13.9 212 8.5 24.7 44.7 132 -99052220.TUL 0 16.0 3471 -3 869 32 31.1 0.6 -12.1 269 7.3 20.4 36.1 91 -99052200.SNY 0 8.7 1439 -7 1674 53 48.7 0.2 -12.8 266 7.7 28.2 65.4 147 -99052123.RAP 0 8.6 1729 -70 1711 131 43.6 0.4 -16.2 256 8.7 23.0 67.0 178 -99052001.MOT 0 8.0 903 -1 1506 2 27.5 0.0 -17.4 240 7.0 14.4 59.7 47 -99051700.LAA 0 7.5 817 -141 1731 124 65.0 0.1 -15.0 234 8.6 43.8 78.0 361 -99050519.MVN 0 12.9 1777 -10 790 108 57.7 1.8 -14.1 237 6.6 41.0 44.8 194 -99043001.INK 0 12.4 2333 -60 967 95 52.8 1.8 -11.4 237 8.1 32.9 71.8 280 -99042900.BIL 0 6.5 60 -143 1109 133 46.8 0.0 -17.8 182 7.5 39.8 84.0 324 -99042800.EVV 0 9.5 305 -3 1146 22 26.2 0.0 -15.6 225 6.4 18.9 38.1 56 -99042701.OKC 0 8.9 873 -24 1056 47 27.4 0.2 -20.3 275 7.9 23.0 44.2 88 -99042322.LOZ 0 12.8 1995 -5 979 77 37.3 1.0 -11.6 287 6.9 30.4 44.4 71 -99042319.EZF 0 10.2 1142 -51 1722 106 57.2 0.3 -14.2 276 6.9 38.0 68.5 172 -99042203.GOK 0 12.3 2307 -132 894 364 53.9 3.4 -16.0 254 8.5 31.2 54.6 401 -99042123.BMI 0 11.6 1687 -24 839 261 53.4 3.9 -16.4 252 7.8 45.9 57.4 408 -04083002.GCK 0 10.7 1029 -108 1687 204 32.5 0.2 -8.1 315 6.8 29.0 26.2 278 -04083000.SUX 0 10.7 779 -7 1471 199 42.6 0.6 -12.9 289 6.7 36.3 45.9 296 -04082622.C23 0 10.2 983 -43 1349 25 41.1 0.1 -15.8 254 7.2 17.8 70.6 46 -04082621.MCW 0 15.4 2478 -27 1087 26 46.1 0.5 -9.9 239 7.0 37.9 68.9 181 -04082522.FSM 0 18.2 3688 -45 1240 101 33.9 1.6 -6.7 244 6.2 16.5 39.6 113 -04082522.BIS 0 10.2 2077 -41 1811 74 38.1 0.2 -15.2 230 8.4 22.8 43.2 103 -04082503.MHK 0 19.2 4217 -59 627 274 31.2 5.7 -7.9 224 7.5 31.4 51.8 392 -04082501.MHK 0 18.9 4262 -45 721 150 29.9 3.2 -7.4 240 7.1 28.3 50.9 241 -04082020.BGM 0 14.6 1425 -21 712 95 53.2 1.2 -9.5 238 5.9 38.1 53.7 106 -04082018.ORH 0 15.1 2067 -19 1051 47 40.0 0.6 -8.9 256 6.1 29.0 39.9 132 -04081918.LBE 0 14.4 1183 -7 597 105 39.9 0.8 -8.7 270 5.6 40.5 44.4 152 -04081901.PIA 0 13.9 1294 -107 1203 377 40.4 1.6 -7.9 277 5.6 39.8 43.3 465 -04081822.BRL 0 15.3 2600 -41 963 377 41.3 6.8 -9.4 276 6.6 42.5 42.9 508 -04081421.LIC 0 9.9 1288 -66 1242 15 32.2 0.1 -10.2 333 7.8 25.5 42.7 65 -04080321.OAX 0 18.7 4816 -44 1389 92 36.9 1.7 -5.9 259 7.0 23.6 38.1 189 -04080202.Y26 0 15.4 3187 -169 1209 336 55.2 1.6 -9.3 291 8.1 28.5 83.2 385 -04080123.Y22 0 8.5 1290 -28 3011 -1 45.9 0.0 -10.5 298 8.6 30.2 71.2 158 -04073101.GAG 0 14.4 2006 -116 1300 54 42.0 0.3 -6.2 308 6.7 14.8 44.7 98 -04072102.FSD 0 19.9 4659 -49 869 261 26.0 5.3 -5.9 278 7.3 28.0 37.4 426 -99081101.HLC 0 17.4 3928 -33 1289 71 38.3 1.3 -5.1 243 6.7 21.0 34.5 152 -99081023.AKO 0 14.9 2910 -32 1271 87 33.9 1.0 -6.5 232 7.6 22.7 45.7 163 -99080901.DIK 0 12.0 2409 -98 1891 48 58.5 0.1 -10.8 267 8.5 29.7 54.5 94 -99080822.2WX 0 10.3 1972 -32 2526 39 44.1 0.0 -8.8 262 8.3 27.2 41.0 117 -99080702.RAP 0 12.7 921 -36 1200 35 33.6 0.1 -6.6 268 6.3 20.0 48.7 72 -99080301.LWT 0 8.5 449 -155 1772 53 48.3 0.0 -10.3 278 7.8 29.4 70.4 131 -99073100.JKL 0 15.8 3605 -30 1833 89 22.3 0.0 -5.9 355 6.7 22.8 19.6 158 -99073020.IPT 0 15.0 2685 -12 1238 32 34.0 0.4 -8.7 319 6.3 16.0 50.7 72 -99072922.FVX 0 14.5 1431 -13 1556 81 34.3 0.3 -6.0 327 5.6 22.6 48.0 117 -99072902.XVG 0 12.7 1459 -186 1710 319 58.3 0.1 -9.5 302 7.7 41.9 73.8 381 -99072900.ADG 0 14.8 1974 -6 1415 63 37.3 0.5 -9.4 298 7.1 21.7 66.3 118 -99072420.MHT 0 14.8 1594 -17 1088 66 27.8 0.5 -9.7 275 6.5 25.2 56.1 134 -99072319.RAP 0 10.6 1320 -19 2145 52 38.7 0.0 -7.5 263 7.3 22.5 54.0 87 -99072300.FAR 0 16.2 2819 -34 1355 81 35.4 0.9 -8.5 247 7.6 27.9 55.9 137 -99071923.GDV 0 11.9 1807 -31 1654 21 41.3 0.1 -11.2 254 7.9 18.9 69.4 67 -99071302.FAR 0 12.1 1948 -48 1552 125 38.2 0.7 -12.5 297 7.2 27.2 61.0 158 -99071302.DVL 0 10.4 1453 -76 1761 69 42.5 0.1 -13.5 288 7.5 28.3 62.4 124 -99071300.OLF 0 9.2 1101 -38 2374 25 49.7 0.0 -10.3 281 7.3 26.5 65.7 106 -99071202.AIA 0 9.4 1094 -73 1844 -8 27.8 0.0 -11.3 327 8.0 26.7 47.0 79 -99070804.GDV 0 14.2 2058 -209 1364 472 61.7 0.0 -7.6 251 8.0 40.8 78.6 551 -99070421.ERY 0 19.1 3756 -61 791 95 32.9 1.8 -6.7 267 8.2 22.2 36.6 98 -99070207.SFD 0 9.5 32 -374 1535 254 82.4 0.0 -10.7 263 7.4 45.0 92.7 464 -99070103.SWO 0 18.3 2994 -18 703 229 51.1 5.8 -4.6 303 6.4 25.9 51.9 297 -99070103.GCK 0 15.2 2113 -124 873 95 73.0 1.0 -6.5 294 7.5 37.6 74.8 319 -99063023.LBF 0 9.7 291 -114 1136 0 76.3 0.0 -12.3 289 6.9 54.3 115.6 214 -99062801.BGD 0 13.8 2864 -63 2251 73 37.7 0.0 -5.0 266 8.5 22.5 43.1 130 -99062522.DIK 0 12.8 2775 -1 1732 -52 57.7 -0.4 -10.3 230 8.2 35.4 58.9 132 -99062501.VTN 0 11.7 1035 -41 1545 55 41.3 0.2 -8.2 282 6.6 23.6 41.7 120 -99062400.BGD 0 12.2 2544 -17 2195 10 13.6 0.0 -6.5 288 7.8 22.6 35.1 91 -99060601.P07 0 11.8 1543 -130 1771 -31 45.2 0.0 -8.7 243 7.9 18.4 58.3 32 -99060523.LBF 0 10.7 2070 -28 1957 91 62.6 0.1 -12.9 197 8.5 25.9 90.4 131 -99060302.IML 0 10.0 869 -198 1657 237 43.7 0.0 -11.0 225 8.5 39.8 66.5 421 -99060202.GCC 0 6.3 226 -83 1883 18 41.3 0.0 -15.4 262 8.3 26.0 42.6 126 -99060200.FTW 0 16.8 3982 -31 1338 62 35.0 1.0 -11.1 275 8.5 25.7 60.3 144 -99053102.MHK 0 11.6 903 -51 1360 108 32.8 0.3 -11.3 270 6.9 30.0 24.5 179 -99120303.ADM 0 9.7 1355 -50 974 250 42.8 2.4 -22.1 217 8.5 35.9 65.7 332 -99112303.RBD 0 13.2 1077 -16 789 138 48.1 1.2 -13.6 235 6.4 25.1 60.9 176 -99112302.HBR 0 8.7 124 -124 660 53 47.7 0.0 -17.1 219 6.7 41.5 75.7 132 -99100823.FSI 0 10.1 649 -14 1313 5 36.2 0.0 -13.6 219 6.3 14.3 67.9 56 -99092600.GKY 0 13.1 1483 -15 1429 43 28.0 0.2 -9.4 340 6.3 21.5 55.3 182 -99092522.D07 0 6.4 163 -199 2219 136 65.7 0.0 -15.8 242 8.3 31.8 105.7 206 -99092004.RRC 0 11.2 292 -200 1044 70 37.2 0.0 -11.2 270 6.7 28.8 60.6 216 -99092000.OKC 0 11.1 1068 -42 1896 56 39.5 0.0 -10.1 290 6.8 29.0 60.9 190 -99091923.CSM 0 11.9 1645 -3 1885 18 41.3 0.0 -9.8 280 7.0 27.5 64.0 178 -99091920.CGZ 0 11.2 802 -16 1905 19 39.1 0.0 -8.7 245 6.5 16.0 60.3 61 -99091207.SLP 0 15.6 2094 -69 507 92 45.4 1.3 -10.8 271 8.2 16.8 55.8 121 -99091200.LBL 0 11.9 1180 -121 1590 31 43.2 0.1 -9.0 275 7.8 25.7 65.5 84 -99091122.HLC 0 12.4 1517 -36 1221 59 37.8 0.4 -11.3 253 7.4 21.0 66.2 94 -99091101.AFW 0 13.1 1250 -24 1970 21 29.5 0.0 -7.4 297 6.2 21.7 52.8 139 -99082300.ABR 0 11.7 1432 -38 1851 61 40.1 0.1 -9.6 289 6.9 20.3 45.5 101 -99082104.HON 0 13.3 1187 -244 1155 197 38.1 0.0 -8.9 281 7.4 31.4 54.2 238 -99082100.LBF 0 9.8 20 -311 1794 44 34.8 0.0 -7.8 321 7.1 19.7 46.1 126 -99082022.DIK 0 11.7 1445 -10 1669 21 33.6 0.1 -7.8 298 6.3 17.8 36.0 58 -99081922.MLS 0 7.1 393 -105 3278 19 33.8 0.0 -10.0 244 8.6 22.0 37.3 120 -99081800.RRT 0 11.4 1524 -26 847 90 49.2 1.1 -17.7 268 7.3 32.2 62.0 126 -99081400.ALB 0 16.8 1843 -4 701 196 38.5 2.3 -6.3 249 5.8 29.9 48.4 252 -99081202.GCC 0 10.6 877 -99 1162 63 34.5 0.2 -10.2 218 7.5 17.7 54.6 98 +FILENAME CAT MLMIXR ML CAPE ML CIN MLCL(MAGL) 0-1SRH 0-6KT STPC 500 T (C) 500DIR 7-5 LR 0-3(KT) 0-9(KT) 0-3 KM SRH (M2/S2) +00042320.TXK 2 12.9 1702 -1 657 134 61.7 2.3 -14.0 250 6.5 32.8 76.6 166 +00042001.PPF 2 13.5 2614 -50 1216 227 59.9 4.7 -12.9 234 7.5 39.7 73.5 244 +00032900.FTW 2 13.1 2058 -42 1069 83 49.7 1.3 -15.2 245 8.0 21.9 87.1 126 +00032304.SJT 2 11.9 1680 -119 896 119 61.1 1.1 -15.5 212 9.1 38.4 66.9 217 +00031622.ATT 2 9.4 1019 -7 1566 12 45.8 0.0 -17.5 249 8.0 34.4 53.7 159 +00021323.LRF 2 9.2 1256 -9 1066 82 46.9 0.8 -21.2 249 7.5 32.3 51.4 114 +00010323.MEI 2 13.4 1148 -15 769 241 57.2 2.6 -10.0 226 6.1 38.8 71.2 288 +00010319.GWO 2 12.8 1168 -9 770 202 66.4 2.4 -13.0 223 7.5 47.3 75.1 246 +03050500.UMN 2 13.8 2392 -10 773 341 66.3 8.2 -13.4 237 7.7 49.1 93.8 411 +03050500.JBR 2 15.7 2713 -22 862 266 57.8 6.9 -10.7 240 7.1 50.5 82.9 440 +03050421.TUL 2 16.1 3621 -15 843 147 63.1 5.3 -11.7 230 7.3 45.6 100.2 160 +03050421.MKC 2 13.7 2002 -67 478 479 68.4 8.5 -14.6 224 7.9 48.1 89.8 508 +03050420.P#F 2 15.7 3397 -1 660 166 58.5 5.5 -12.7 230 7.8 34.3 100.9 195 +03050321.P#T 2 12.7 3156 -2 1967 61 36.2 0.0 -9.8 247 7.5 27.2 67.1 207 +03042503.JAN 2 13.5 2568 -27 924 257 44.3 4.9 -15.4 255 7.7 41.1 76.9 279 +03041922.PNC 2 11.5 1157 -40 665 212 87.9 2.5 -17.9 223 7.3 46.5 111.5 242 +03041523.CDS 2 10.7 1020 -106 1534 326 74.0 1.0 -12.4 234 7.5 56.1 83.8 531 +03041522.LBB 2 8.8 883 -53 1986 116 77.2 0.0 -11.7 243 7.5 48.5 87.4 276 +03040702.CLN 2 13.1 488 -133 780 363 62.7 0.8 -11.4 244 7.1 33.6 74.1 411 +03040623.ESF 2 15.8 1847 -29 621 166 51.8 2.6 -11.0 246 6.8 26.8 50.8 161 +03032722.MIA 2 12.4 299 -31 1074 187 48.8 0.4 -10.5 261 5.8 20.5 87.0 197 +01061900.ROS 2 13.6 2218 -30 1076 140 67.7 2.9 -11.1 250 8.2 40.5 73.6 279 +01061401.LNK 2 17.2 4665 -15 1190 173 39.2 4.3 -10.5 215 8.3 32.6 50.7 217 +01061120.ILL 2 14.7 3400 -120 1255 270 56.1 3.4 -10.8 259 8.6 41.9 54.8 448 +01060222.LOZ 2 9.7 164 -10 898 117 51.4 0.2 -13.4 270 5.3 39.8 66.8 189 +01053000.AMA 2 13.0 2887 -76 1322 166 48.4 2.2 -10.1 246 8.4 38.6 50.6 216 +01052902.LHX 2 10.9 1698 -120 1285 185 52.1 1.0 -10.0 251 8.2 38.9 60.5 365 +01052118.OZW 2 12.5 494 -2 775 133 33.4 0.4 -10.3 188 5.6 34.2 36.9 174 +01052022.MIN 2 16.9 3331 -2 711 122 47.8 3.2 -11.0 244 7.3 36.0 67.7 201 +01051022.MIW 2 12.8 2912 -24 1091 65 36.4 1.0 -16.0 255 7.9 28.8 43.0 141 +01051001.FBL 2 9.5 2106 -90 1776 330 50.0 1.0 -16.6 265 8.2 42.9 50.3 516 +01050200.AUM 2 11.2 1434 -74 1331 179 38.8 0.9 -13.3 251 7.5 36.0 52.3 237 +01042202.GBD 2 12.6 2145 -40 777 165 61.8 3.5 -13.6 229 7.8 41.6 62.6 328 +01041423.P28 2 12.3 2168 -54 827 145 76.4 3.1 -16.2 256 8.3 45.0 89.5 235 +01041117.LWD 2 11.9 968 -3 632 282 77.0 2.7 -15.1 208 7.5 38.2 81.4 327 +01040918.BVI 2 10.7 1326 -11 1210 102 57.2 1.0 -15.4 266 7.7 32.1 32.1 174 +01022422.SGT 2 11.8 1020 -15 967 335 52.8 3.0 -14.3 213 7.7 53.6 64.9 450 +00110820.HEZ 2 15.9 2158 -6 881 236 47.1 4.0 -8.5 204 6.2 29.0 68.5 266 +00103122.HLC 2 11.0 1274 -14 954 110 47.4 1.1 -14.1 202 7.4 32.6 74.4 169 +00092022.DAY 2 13.9 1299 -7 971 215 63.4 2.8 -8.2 237 6.1 37.5 61.0 237 +00072601.OTG 2 14.5 2869 -49 1055 88 42.5 1.7 -12.6 290 7.2 33.4 41.3 161 +00072523.RWF 2 14.6 2791 -13 1068 96 39.4 1.6 -12.0 275 7.0 29.2 35.8 163 +00071122.BKX 2 14.7 1167 -47 944 134 42.8 1.1 -7.8 261 6.8 27.2 67.9 205 +00070601.SNY 2 13.6 2847 -18 1681 52 57.5 0.5 -7.4 248 8.1 19.0 74.4 122 +00052319.BWG 2 13.7 2114 -41 1128 167 38.6 2.0 -11.4 294 6.9 36.9 62.8 278 +00051722.LXN 2 14.0 3552 -16 910 111 27.5 1.8 -13.9 169 8.4 28.1 44.5 170 +00051200.ALO 2 16.5 4382 -13 1110 168 51.1 5.6 -7.9 254 6.7 33.2 51.6 199 +00050101.MWL 2 13.0 2207 -103 1176 253 47.3 2.4 -12.4 227 8.2 40.3 37.8 297 +00042323.SHV 2 13.4 2001 -19 928 216 58.9 4.2 -13.0 261 6.7 41.9 60.0 296 +04051923.GFK 2 11.2 967 -44 828 233 54.9 2.1 -16.6 243 7.2 39.5 86.1 229 +04051302.ICT 2 15.9 3157 -12 538 223 36.4 4.3 -9.4 232 6.4 23.8 51.5 245 +04051101.LIC 2 9.0 1549 -59 1592 233 43.4 1.0 -11.5 244 8.4 35.1 46.6 395 +04042022.PIA 2 12.4 1852 -11 728 320 36.4 3.6 -14.7 235 6.2 38.5 40.1 488 +04032718.DDC 2 10.0 1332 -8 893 190 41.4 1.7 -16.6 206 7.5 30.8 47.5 198 +04030418.ABI 2 10.7 626 -20 1108 319 46.5 1.4 -13.7 196 7.0 40.3 84.2 350 +03111718.HOU 2 16.4 1980 -1 445 137 48.2 2.2 -12.4 207 6.6 24.0 77.0 158 +03111223.MFD 2 8.3 64 -56 890 219 99.1 0.1 -15.7 261 5.7 55.1 123.1 275 +03111220.MIE 2 9.7 388 -1 757 123 91.0 0.5 -15.6 258 5.7 47.1 117.3 205 +03082201.JXN 2 17.2 3046 -36 1091 255 31.0 3.6 -5.9 285 6.6 34.4 33.2 304 +03072122.AVP 2 14.3 1810 -16 1228 162 51.1 1.9 -7.9 239 5.6 45.7 49.9 148 +03072104.CID 2 17.8 2344 -22 462 187 48.9 3.6 -7.0 291 7.0 34.2 63.6 237 +03072101.ALO 2 15.0 1859 -107 921 156 49.6 1.5 -8.0 297 7.0 28.2 58.2 248 +03062500.HON 2 17.0 3737 -23 1021 335 52.2 10.7 -7.4 227 7.5 43.4 61.6 550 +03062422.MHE 2 19.5 5088 -22 717 256 55.5 12.1 -8.0 228 7.9 40.9 58.4 422 +03062421.MHE 2 17.5 3584 -16 768 252 56.0 8.4 -7.9 220 7.8 38.8 57.2 348 +03062302.P#8 2 16.8 3414 -169 1003 367 38.7 1.7 -6.8 227 7.6 30.2 57.1 437 +03062223.P#8 2 17.7 4366 -39 972 253 38.8 7.2 -8.3 246 8.6 34.3 54.7 387 +03061001.P#9 2 12.6 2103 -97 1467 421 51.0 2.8 -11.2 266 7.9 45.5 63.9 651 +03053103.CMI 2 12.6 701 -119 899 482 64.7 1.8 -11.6 292 6.3 36.9 85.1 523 +03053101.ILX 2 12.4 784 -55 1108 474 76.0 3.2 -8.5 294 5.0 45.0 90.9 524 +03051100.UIN 2 14.7 2093 -27 738 302 63.1 6.3 -11.7 240 7.7 43.7 97.9 354 +03051004.C34 2 17.3 3493 -14 749 452 53.6 14.1 -8.8 228 7.7 32.1 77.0 511 +03050923.HBR 2 11.1 1389 -64 2135 137 56.8 0.0 -9.1 231 7.7 35.8 78.1 219 +03050900.C30 2 14.6 1749 -112 819 321 69.8 3.3 -8.9 227 6.8 57.0 72.2 306 +03050823.C34 2 17.9 3605 -25 669 342 65.2 12.3 -7.2 233 7.1 42.3 72.0 318 +03050822.W#N 2 17.4 3730 -13 635 141 70.0 5.3 -10.1 228 7.6 45.5 81.3 173 +03050821.LW1 2 19.1 5309 -6 876 145 63.2 7.7 -8.7 235 7.4 31.6 71.3 182 +03050807.ADM 2 17.1 3114 -53 730 439 47.4 10.6 -9.3 253 8.0 50.2 61.5 608 +03050805.SPS 2 16.0 2409 -148 836 382 44.4 2.4 -9.1 262 7.9 43.1 59.0 798 +03050703.PAH 2 15.8 2873 -49 602 390 36.8 6.9 -13.6 237 7.9 35.3 70.1 454 +03050701.CGI 2 15.1 2935 -47 799 431 61.0 12.6 -14.4 269 7.8 32.8 83.2 580 +03050504.MKL 2 15.6 2334 -16 833 615 59.6 14.3 -9.9 251 7.1 62.0 77.1 842 +03050501.LZK 2 15.9 2390 -18 719 361 67.0 8.6 -11.0 237 7.4 41.7 97.3 397 +99120301.GOK 2 10.2 1811 -12 858 234 47.2 3.3 -21.1 202 8.2 32.4 63.0 262 +99081601.JMS 2 13.6 1255 -165 1044 130 48.5 0.3 -9.9 240 8.1 30.2 89.4 174 +99070900.ONA 2 18.4 3379 -18 992 385 46.0 10.0 -5.8 275 6.5 42.9 49.4 571 +99070400.OSC 2 15.9 1760 -27 1078 101 26.7 0.7 -6.7 320 6.2 28.3 31.6 163 +99060620.HCO 2 14.6 3241 -5 904 65 29.6 1.0 -16.1 175 8.1 26.8 70.8 115 +99060500.IEN 2 12.1 2533 -37 1323 70 52.4 1.0 -11.4 201 8.2 32.9 60.1 191 +99060400.HLC 2 15.7 4348 -16 1101 154 38.3 3.9 -9.3 240 7.5 36.9 40.6 277 +99060200.TBN 2 14.9 2338 -19 838 136 37.3 2.0 -10.3 259 6.5 40.0 21.6 223 +99060123.MKO 2 17.3 3739 0 888 68 38.1 1.6 -10.6 279 7.9 32.2 23.0 135 +99060100.LIC 2 9.1 1877 -49 1439 56 56.8 0.6 -13.7 249 9.2 34.3 62.4 140 +99051621.OMA 2 16.1 4691 0 824 102 38.6 3.1 -14.5 223 8.8 33.7 41.5 176 +99051122.BMQ 2 15.0 3545 -92 1026 40 35.1 0.6 -12.3 259 8.0 21.8 29.6 59 +99050408.JCT 2 13.0 2082 -218 838 355 55.0 0.0 -11.2 254 8.3 46.8 58.7 506 +99050402.GOK 2 13.9 3154 -61 723 366 51.4 9.2 -14.6 240 8.2 36.8 57.5 441 +99050401.ICT 2 12.6 2748 -7 1016 257 31.8 3.7 -14.7 227 7.9 40.5 70.4 415 +99050323.OKC 2 15.2 4117 -15 733 308 43.5 9.2 -13.2 243 7.8 43.2 70.1 401 +99050300.HSI 2 8.0 203 -4 845 168 41.5 0.2 -17.7 222 6.7 28.6 32.1 221 +99042200.END 2 12.7 3301 -34 1156 225 46.1 4.8 -15.4 236 8.1 35.1 48.2 242 +04082700.RDD 2 18.4 3706 -37 940 184 41.0 4.7 -6.9 255 7.1 28.7 60.7 258 +04071823.GFK 2 16.7 3575 -36 1246 117 45.4 2.4 -7.9 310 6.8 35.1 45.5 292 +04071302.GRI 2 15.9 3090 -197 1538 152 29.0 0.0 -7.9 298 8.5 13.8 50.5 173 +04062402.OSH 2 11.1 1428 -30 700 187 62.2 2.7 -16.7 257 6.5 50.9 79.3 234 +04061620.LAA 2 12.3 1494 -63 908 129 51.4 1.5 -9.4 252 7.7 34.1 57.1 369 +04061300.W#N 2 16.4 3866 -17 1255 231 34.6 3.8 -9.2 251 7.9 37.4 44.2 387 +04060701.MOT 2 10.4 295 -316 1541 461 68.3 0.0 -8.4 254 6.7 33.2 82.6 561 +04060621.C02 2 9.9 1824 -59 2285 83 55.5 0.0 -10.8 234 7.9 39.7 69.2 64 +04053023.IND 2 17.3 2618 -10 577 361 58.6 9.2 -9.1 248 6.9 35.7 45.1 369 +04053020.SDF 2 16.6 2653 -2 807 250 52.4 5.8 -9.4 245 6.8 37.1 41.1 317 +04053002.OKC 2 15.5 2559 -32 1162 314 55.7 6.2 -7.3 244 7.0 35.6 70.5 434 +04053002.ICT 2 16.1 3240 -98 992 315 44.2 5.1 -10.4 245 7.9 25.8 56.2 399 +04053000.MCI 2 16.0 3437 -5 863 239 36.5 5.0 -12.8 232 8.3 27.4 42.9 372 +04052922.C33 2 16.5 4081 -4 1356 126 51.4 2.8 -7.8 244 7.4 36.9 74.7 248 +04052921.TOP 2 16.1 3843 -13 936 78 32.5 1.6 -12.5 233 8.0 17.3 39.0 190 +04052421.STJ 2 15.6 3982 -40 991 76 40.4 2.0 -11.9 234 7.7 26.3 67.6 270 +04052300.P#8 2 15.0 3882 -47 1262 228 54.5 5.9 -10.5 233 7.9 34.1 69.9 334 +04052221.MCK 2 13.2 3453 -37 1185 103 72.0 2.9 -12.3 231 8.6 35.5 82.5 224 +04052219.GLD 2 9.9 1898 -54 1700 22 59.0 0.1 -12.7 233 8.4 12.6 69.5 76 +04052122.CID 2 15.4 2960 -48 971 309 36.6 5.6 -11.5 268 7.4 36.1 50.0 390 +53031321.FWH 2 10.8 727 -98 981 119 51.2 0.5 -16.3 248 8.1 30.6 80.9 266 V +55052521.LTS 2 15.0 4060 -25 1509 322 66.4 6.4 -12.3 225 8.6 37.0 53.5 355 V +56041521.GUN 2 11.7 1189 -11 1302 251 72.4 2.1 -13.6 230 7.3 55.7 66.8 370 V +57040221.FWH 2 13.2 3580 -3 942 94 35.8 2.0 -15.8 189 7.9 26.1 52.8 122 V +57052021.TOP 2 14.0 2801 -2 920 142 55.7 3.7 -13.8 207 7.7 48.0 77.2 228 V +57052121.BYH 2 15.7 2854 -5 1106 236 49.7 5.0 -10.9 230 7.2 33.0 92.5 240 V +57061418.PIA 2 15.9 2118 -6 986 394 50.0 7.0 -8.6 252 6.9 52.8 52.1 496 V +59040100.FWH 2 12.6 3068 -26 987 124 42.8 2.7 -17.6 247 9.0 28.0 61.5 142 V +61050800.FSM 2 14.5 2844 -7 1215 261 61.7 5.8 -11.4 240 7.5 42.2 65.9 323 V +61050600.FSM 2 14.3 2667 -12 1121 245 65.5 5.8 -13.1 240 8.3 61.7 43.1 430 V +62052600.OKC 2 14.3 4171 -76 1591 154 33.3 1.2 -12.0 264 8.6 25.3 43.2 228 V +62080700.TOP 2 20.6 6024 -12 1167 160 42.3 5.7 -7.3 250 7.7 32.4 60.6 243 V +64050600.OMA 2 12.7 2395 -61 1048 349 68.6 7.4 -13.8 224 8.8 54.6 89.3 498 V +65041200.FNT 2 11.2 1814 -1 974 166 91.0 3.0 -17.7 250 7.7 46.4 91.6 372 V +66042800.FWH 2 14.1 3342 -17 1291 148 38.0 2.2 -11.8 265 7.2 39.3 49.0 269 V +66030400.HKS 2 12.2 1434 -10 831 138 47.6 1.6 -14.0 234 7.6 49.0 77.8 142 V +67061100.OKC 2 14.4 3497 0 1569 144 32.2 1.2 -11.0 235 8.7 35.0 51.1 260 V +68110400.VPS 2 12.8 1596 -2 812 129 50.5 1.7 -13.4 251 5.9 30.3 72.0 184 V +69041806.VPS 2 15.2 1013 -8 445 370 55.8 3.5 -11.0 248 6.9 42.3 73.3 439 V +69062400.TIK 2 18.4 4403 -4 776 317 37.5 8.7 -9.4 240 7.5 45.3 56.2 431 V +70100600.TIK 2 13.7 1865 -3 772 241 41.1 3.1 -12.2 230 6.7 35.4 55.6 335 V +71022200.JAN 2 12.8 938 -4 930 470 74.7 4.4 -11.8 211 6.7 57.8 77.3 590 V +73052800.MGM 2 16.4 2337 -2 1017 293 53.5 6.0 -7.9 239 6.2 45.6 45.2 386 V +73041600.VCT 2 15.4 2861 -37 1272 385 48.1 6.4 -12.9 231 8.1 35.7 72.2 377 V +74040400.MGM 2 14.8 2955 -2 1017 161 52.0 4.1 -12.8 235 8.2 39.5 59.4 253 V +74040400.BNA 2 14.6 2744 -31 970 209 77.8 5.7 -13.3 238 7.8 57.0 80.2 301 V +74040400.DAY 2 12.8 2185 -7 986 619 90.8 13.5 -13.1 235 7.1 71.9 91.6 919 V +75042500.UMN 2 15.7 5306 -1 837 145 53.3 6.8 -13.8 255 7.3 41.6 61.8 185 V +74060900.UMN 2 17.0 3643 -2 987 363 37.0 8.1 -6.7 231 7.6 41.4 27.5 508 V +75063000.BIS 2 13.6 3158 -76 1566 198 41.8 1.6 -12.3 233 8.6 26.8 55.7 204 V +76042000.SEP 2 13.7 3326 0 1092 305 45.1 6.9 -14.1 240 7.6 33.7 48.9 358 V +77040418.CKL 2 14.1 1633 0 994 247 66.8 4.0 -9.8 231 6.0 52.7 80.0 333 V +78060100.TOP 2 16.2 4279 -1 1160 267 35.7 5.7 -12.7 233 7.6 36.3 57.0 349 V +79041021.SEP 2 12.8 2186 -9 912 345 48.2 6.1 -13.1 228 8.1 42.9 54.3 468 V +79050300.OKC 2 13.9 2775 -4 877 218 73.2 6.0 -12.3 246 7.2 57.7 103.2 279 V +79033000.OMA 2 10.1 1322 -24 1155 223 56.4 2.4 -15.8 232 7.1 49.1 52.9 345 V +80040800.UMN 2 10.2 2256 -3 1473 97 39.6 0.8 -18.5 236 8.4 39.7 92.1 247 V +84060800.TOP 2 16.2 2284 -16 918 560 74.0 12.8 -6.0 237 6.2 49.1 84.6 705 V +84031600.1M1 2 12.2 2339 -1 1056 250 47.1 4.3 -14.9 251 6.9 30.4 55.5 292 V +86072900.OMA 2 16.4 4252 -21 1667 112 48.4 1.3 -10.6 268 8.6 28.2 81.3 151 V +87111600.GGG 2 12.8 1593 -8 723 298 61.9 4.8 -15.3 178 7.9 43.3 65.2 326 V +90061600.LBF 2 16.1 3827 -1 1050 21 42.1 0.5 -10.6 185 8.5 24.5 74.1 95 V +90060300.PAH 2 15.6 2246 -3 1039 274 47.1 4.7 -7.6 251 7.0 57.8 49.8 384 V +91042700.OUN 2 15.8 4387 -8 898 195 50.3 7.2 -11.5 242 7.0 44.2 54.9 370 V +92062800.AMA 2 14.6 3148 -3 1020 83 44.3 1.9 -10.3 249 7.9 32.7 52.7 220 V +92061700.OVN 2 18.7 4878 -1 1119 262 50.4 9.5 -6.5 237 6.9 46.6 64.6 473 V +93042500.OUN 2 11.6 2675 0 1209 113 49.6 2.0 -14.6 235 6.9 35.5 65.5 168 V +93050700.TOP 2 13.7 2046 -7 666 484 58.8 9.7 -13.1 217 7.0 55.4 51.4 644 V +93060700.LBF 2 15.9 4738 0 930 328 59.3 15.3 -8.6 229 7.6 41.9 67.6 583 V +94042600.SEP 2 12.9 2562 -34 1365 201 51.9 2.8 -11.5 258 7.4 41.3 51.0 198 V +95051900.BMX 2 15.7 2868 -5 989 239 39.3 4.5 -9.9 247 6.7 31.9 49.1 230 V +98040900.BMX 2 14.6 2259 -18 642 136 77.9 3.1 -13.9 240 7.9 50.3 100.1 290 V +98041700.BMX 2 14.7 2038 0 704 263 73.4 5.4 -11.9 245 6.8 36.3 98.6 327 V +99050400.OUN 2 13.4 3644 -22 1050 271 41.4 6.5 -14.9 225 8.4 32.0 37.7 343 V +00121618.BMX 2 12.0 1369 -1 737 279 66.9 3.8 -14.1 220 6.7 51.3 90.8 339 V +00092100.ILN 2 12.5 747 -19 1280 611 75.3 3.3 -7.5 240 5.4 64.7 73.0 810 V +01061400.OAX 2 16.8 4639 -1 1278 127 38.6 2.8 -11.3 215 9.0 35.2 48.5 145 V +01112412.JAN 2 13.0 1392 -2 773 366 50.4 4.3 -10.1 225 5.7 52.4 48.8 504 V +01112418.BMX 2 13.4 1498 -1 655 227 52.0 3.0 -11.3 220 6.1 43.1 61.9 319 V +02111018.ILN 2 11.3 1239 0 734 385 54.4 4.3 -13.7 230 6.6 49.5 103.8 417 V +02062400.ABR 2 17.1 4378 0 1112 85 50.6 2.8 -10.5 245 8.2 29.8 57.9 153 V +03050900.OUN 2 17.0 3871 -32 990 336 62.0 13.0 -6.9 235 6.3 53.9 80.1 364 V +94032718.CKL 2 15.5 1965 0 743 344 72.9 6.8 -9.1 233 6.3 54.7 56.0 403 V +81052300.OKC 2 13.1 2411 -70 1142 203 49.1 3.0 -13.7 235 9.0 37.6 49.1 249 V +65041100.LIT 2 12.7 1815 -1 1365 140 52.3 1.4 -11.1 248 7.2 39.4 64.4 212 V +53051121.FWH 2 13.2 1452 -55 1150 122 53.0 1.3 -11.2 248 7.3 40.4 64.4 209 V +90082900.PIA 2 21.0 6470 -2 974 110 33.6 4.0 -7.3 297 7.1 23.3 54.6 147 V +55042411.GUN 2 13.1 1784 -7 917 345 68.7 6.2 -12.7 248 7.1 44.1 85.9 375 V +56040321.HKS 2 13.0 1491 -14 1212 173 82.1 2.0 -12.4 221 7.5 52.1 107.5 267 V +56051221.MTC 2 13.8 2444 -8 1001 124 69.2 3.0 -14.4 266 7.5 25.2 94.3 162 V +60052000.TOP 2 14.3 3120 -23 1112 167 43.1 3.3 -13.3 213 8.2 32.6 58.1 244 V +66060900.TOP 2 15.9 2226 -24 819 296 59.5 6.5 -8.6 223 7.1 47.3 69.8 397 V +68082000.GRB 2 16.1 2780 -11 1217 173 50.0 3.1 -7.3 258 6.4 27.0 43.6 195 V +74040318.BNA 2 13.0 2906 -5 1157 205 63.1 5.0 -15.5 229 8.2 48.6 76.4 333 V +61051500.PIA 2 12.4 1259 -2 817 196 68.7 2.5 -13.0 202 6.6 36.7 80.9 205 V +54050121.TIK 2 13.0 1988 -17 709 242 56.2 4.5 -13.5 203 8.0 39.2 73.2 282 V +55060421.SLN 2 13.4 3594 -5 1422 36 25.3 0.3 -12.7 225 7.9 23.8 30.4 152 V +70061300.COU 2 16.5 3499 -11 949 204 64.2 7.2 -7.8 246 5.5 49.6 57.1 318 V +76032700.1M1 2 11.8 1820 -17 961 187 41.8 2.4 -17.1 230 8.2 57.3 71.8 243 V +04071318.ILX 2 19.0 4958 -10 1102 117 37.5 3.3 -10.9 305 7.9 33.8 45.3 197 V +68051600.LIT 2 15.6 2612 -4 971 250 52.8 5.7 -11.7 260 8.6 45.5 72.5 337 V +65031700.OKC 2 11.1 1628 -3 687 269 91.0 4.4 -17.9 235 7.1 58.8 114.4 325 V +00061300.DIK 1 11.1 1786 -3 1286 88 51.7 1.0 -13.3 237 7.5 40.6 50.2 180 +00061122.MOT 1 11.3 2235 -22 1420 120 55.4 1.4 -14.8 231 7.6 39.0 57.9 252 +00060802.JDN 1 7.4 755 -232 3045 106 49.5 0.0 -10.8 230 8.9 34.6 71.9 282 +00060402.OFK 1 10.0 668 -199 1628 156 44.9 0.0 -11.7 284 7.7 38.1 49.1 406 +00060402.NFW 1 16.8 1734 -9 639 117 28.9 1.0 -7.5 270 5.9 23.5 32.0 202 +00052719.MAR 1 16.0 4104 -12 1610 26 26.6 0.2 -12.4 258 8.8 17.5 43.3 95 +00052700.THK 1 14.7 3226 -62 1771 46 35.7 0.2 -9.0 238 8.3 28.1 55.2 83 +00052700.ADK 1 15.9 4170 -7 1457 60 38.4 0.9 -10.1 248 7.9 22.8 55.2 91 +00051202.LWC 1 16.0 3233 -93 1098 243 43.4 3.7 -7.0 245 6.5 28.2 57.5 246 +00050802.RWF 1 11.7 1550 -17 1609 79 45.4 0.4 -12.5 230 7.1 29.3 54.1 203 +00050702.TOR 1 8.6 1203 -94 1663 106 57.4 0.3 -15.3 235 9.1 39.5 72.5 258 +00042622.ONL 1 6.5 337 -109 1466 129 40.6 0.1 -21.7 284 8.4 30.1 73.0 229 +00042118.EZF 1 10.3 898 -4 877 28 58.9 0.3 -17.2 220 6.6 30.7 62.4 94 +00032902.CRS 1 14.5 2234 -6 743 161 50.8 3.0 -14.0 258 7.8 26.8 92.5 244 +00032823.DTO 1 12.9 2286 -24 1256 75 45.3 1.0 -14.5 246 7.7 20.6 88.2 121 +00032701.BAZ 1 14.1 1797 -31 945 101 61.6 1.8 -10.9 294 7.0 32.6 86.8 184 +00032623.MLC 1 11.7 1998 -24 1176 73 50.5 1.0 -14.4 296 6.9 29.7 68.1 193 +00032221.UPT 1 11.4 2370 -12 1181 167 63.0 3.2 -15.3 196 8.2 44.6 83.1 213 +00032207.ODO 1 11.4 1900 -1 561 280 54.6 4.9 -16.5 195 8.4 45.8 80.2 519 +00032207.DRT 1 13.4 2593 -107 837 215 40.0 2.3 -14.9 225 8.9 40.7 64.3 569 +00032201.DYS 1 9.6 140 -194 1028 77 44.2 0.0 -12.2 197 6.4 33.8 61.9 126 +00031523.END 1 9.1 877 -2 1153 56 37.8 0.3 -16.7 241 6.6 26.4 36.5 119 +00031023.BMQ 1 12.1 2702 -18 1209 70 48.2 1.2 -14.5 275 7.6 28.5 52.2 143 +00030823.MKE 1 11.0 1510 -13 1038 185 54.8 2.5 -16.1 213 6.7 42.7 47.9 221 +00030208.MAF 1 11.4 1969 -62 631 373 64.7 6.7 -16.7 225 8.8 39.2 68.5 410 +00022502.ARN 1 11.3 2487 -19 846 226 54.1 5.1 -16.8 208 8.1 38.3 67.9 247 +00022303.DLF 1 8.7 884 -128 1728 29 68.1 0.0 -16.1 277 7.8 32.4 70.9 86 +01042100.SUX 1 8.8 765 -22 1661 84 43.9 0.2 -16.8 206 7.9 27.0 64.5 204 +01041123.BIV 1 12.3 587 -74 777 368 64.3 1.8 -11.6 220 5.9 42.8 48.1 410 +01041107.ADH 1 11.8 556 -140 952 259 56.9 0.5 -12.1 207 7.2 40.1 68.6 271 +01041100.SUS 1 13.7 2171 -35 926 93 64.4 2.0 -12.3 258 6.5 38.6 74.7 252 +01041022.SZL 1 14.3 2693 -55 696 170 63.3 4.4 -12.9 245 6.7 37.7 83.2 242 +01040923.PIA 1 11.9 2755 -12 1469 63 57.1 0.9 -15.8 272 7.5 28.4 73.8 164 +00111220.HYI 1 15.0 1358 0 575 130 66.4 1.8 -11.5 257 7.0 30.5 99.4 240 +00110822.TUP 1 14.5 1023 -4 743 229 62.2 2.3 -9.9 225 6.6 34.8 71.9 291 +00110121.BIS 1 8.9 739 -22 512 134 42.6 0.7 -21.9 135 8.3 30.9 61.9 177 +00103122.FNB 1 12.8 1776 -6 916 106 37.0 1.2 -13.0 217 6.9 22.0 45.0 157 +00102922.LNK 1 10.2 657 -14 724 192 49.1 1.0 -16.4 188 6.2 32.0 43.8 218 +00102919.AUH 1 8.7 191 -3 740 83 38.8 0.1 -16.4 158 6.1 31.7 39.6 118 +00102900.JCT 1 12.1 704 -63 868 232 49.5 1.2 -10.5 218 7.0 32.5 72.8 338 +00102818.GOV 1 11.9 922 -5 443 156 35.8 0.9 -12.3 192 6.7 29.9 31.1 195 +00102423.ODO 1 12.0 1308 -7 918 73 40.2 0.6 -11.4 215 7.4 30.0 51.0 103 +00102300.TIK 1 13.8 1236 -5 453 143 32.3 1.0 -11.8 212 6.3 24.0 44.2 171 +00102123.WLT 1 12.4 655 -43 561 114 29.4 0.4 -11.7 196 5.0 24.0 39.6 153 +00090201.GXY 1 10.1 1399 -61 1894 64 48.6 0.1 -8.8 219 8.0 24.5 58.2 133 +00081501.OEO 1 16.6 2661 -111 1084 275 47.1 3.1 -7.7 281 7.5 38.3 69.3 408 +00072500.ANW 1 14.5 3660 -50 1579 99 43.1 1.1 -9.2 307 8.3 23.5 62.3 152 +00072302.LAA 1 11.0 1368 -108 1806 33 48.7 0.0 -8.9 325 7.7 25.9 61.1 115 +00072104.P28 1 14.3 1660 -216 1167 146 41.4 0.0 -9.2 286 7.8 30.2 58.9 374 +00072004.GLD 1 12.8 1625 -153 1450 69 50.3 0.2 -8.9 286 8.4 26.3 57.9 113 +00071823.SUS 1 17.9 2488 -23 946 101 35.0 1.5 -7.4 262 6.2 32.7 35.7 194 +00071023.GGW 1 11.5 1838 -22 1490 19 53.5 0.2 -11.1 239 6.6 29.9 73.1 81 +00070823.RPD 1 18.8 4320 -44 798 124 39.2 3.5 -8.3 282 6.7 21.3 43.9 183 +00070802.LJF 1 19.5 4388 -7 680 348 43.9 11.2 -9.0 258 8.4 34.1 50.6 438 +00070600.OVE 1 7.4 115 -46 1571 14 34.5 0.0 -17.8 243 7.0 10.2 60.4 40 +00070400.MCK 1 14.2 1661 -19 1452 131 41.3 0.8 -6.2 236 6.6 26.2 46.5 200 +00070222.RYV 1 15.9 2122 -22 737 96 36.0 1.2 -9.2 288 5.9 30.2 35.4 223 +00062923.GLD 1 11.9 2724 -35 2040 95 44.6 0.0 -10.0 295 8.8 34.1 62.4 180 +00062522.AMA 1 13.7 3217 -9 2155 26 36.2 0.0 -6.9 271 8.3 18.7 36.3 97 +00062501.HAO 1 13.1 422 -35 1552 152 35.2 0.2 -7.7 249 5.7 29.2 32.5 226 +00062019.MTO 1 15.3 938 -10 830 185 29.7 0.9 -7.9 246 6.3 38.8 17.7 268 +00062001.HSI 1 14.0 1763 -84 1164 234 40.3 1.8 -8.2 248 7.0 27.7 49.5 343 +00061621.IPT 1 16.3 2224 -6 898 126 25.2 1.2 -7.2 258 5.6 34.7 21.7 251 +00061323.PRT 1 14.6 3313 -86 1730 52 37.5 0.2 -7.5 265 8.2 21.9 60.1 117 +00061321.RDK 1 17.0 3477 -23 902 260 35.7 5.4 -9.8 237 7.9 30.5 30.4 304 +00061300.LBF 1 10.3 2216 -34 2374 46 34.8 0.0 -10.3 241 8.4 19.0 34.1 135 +00061300.GFK 1 11.1 1031 -80 1371 163 45.4 0.6 -13.5 239 7.2 30.8 40.7 248 +03031919.CSV 1 9.7 329 -12 552 167 68.4 0.6 -16.4 213 7.0 45.4 103.6 306 +03031917.CSV 1 9.6 129 -21 493 196 62.6 0.3 -16.0 222 6.7 61.8 100.8 422 +03031915.HSV 1 10.9 546 0 538 221 80.9 1.2 -16.0 224 6.4 51.0 103.8 393 +03031800.FSI 1 11.0 983 -10 789 157 47.9 1.2 -17.1 242 7.4 21.2 84.6 148 +03031722.SPS 1 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 +03031721.HBR 1 10.6 1028 -46 917 133 27.4 0.6 -15.9 217 7.1 22.3 90.0 154 +01062101.DEN 1 8.5 516 -90 1464 2 57.2 0.0 -10.9 293 7.2 41.8 50.9 136 +01061403.DDC 1 14.7 4480 -83 1698 161 58.3 1.7 -11.1 234 9.3 30.0 58.2 280 +01061323.PQN 1 15.8 3695 -5 1047 117 31.9 2.2 -10.3 212 8.0 28.2 46.4 193 +01061000.MBS 1 8.3 401 -7 1604 78 43.1 0.1 -16.3 312 6.3 19.1 70.0 124 +01060923.BIS 1 13.0 2950 -51 1333 25 50.8 0.4 -12.4 272 7.7 30.4 52.9 158 +01060521.P28 1 15.5 2749 -10 880 99 38.9 1.8 -11.4 241 8.1 28.3 45.3 182 +01060521.CDS 1 15.0 3410 -11 1645 9 34.8 0.1 -9.6 266 8.0 23.5 28.9 110 +01060421.LIC 1 8.2 167 -117 1162 92 45.0 0.1 -12.6 233 7.5 32.1 65.5 170 +01060402.WLD 1 15.9 3250 -135 778 339 39.0 3.1 -9.4 254 8.1 35.7 49.4 535 +01060121.MXO 1 8.9 416 -12 968 81 51.7 0.3 -17.7 275 6.4 33.3 51.6 153 +01053000.CDS 1 13.5 2478 -201 1327 184 58.9 0.0 -9.9 240 8.4 43.6 59.7 269 +01052423.JCT 1 11.1 2121 -41 2081 21 42.8 0.0 -12.9 298 8.3 34.2 39.7 254 +01052423.BHM 1 10.8 1036 -32 1179 118 47.3 0.8 -14.7 258 6.9 44.8 49.5 280 +01051022.OLZ 1 11.3 1843 -33 1200 61 42.2 0.6 -15.7 256 7.4 31.2 46.0 179 +01050823.CNK 1 8.0 560 -40 1902 58 51.8 0.0 -16.7 317 7.3 21.6 51.7 171 +01050621.ILE 1 16.4 3719 -9 838 53 30.9 1.0 -13.1 261 7.0 24.3 54.4 118 +01050621.1F0 1 14.4 2826 -1 776 124 27.7 1.6 -13.9 256 6.8 24.7 55.3 157 +01050602.COT 1 16.2 2790 -11 863 180 42.4 3.6 -10.7 247 7.2 33.3 76.0 223 +01050601.HBR 1 10.8 1071 -47 991 113 60.9 1.2 -14.6 218 6.8 35.4 66.2 149 +01050600.WLD 1 10.9 813 -3 986 94 45.9 0.6 -13.4 211 6.5 34.0 50.5 174 +01050521.ACT 1 14.9 2393 -3 716 65 41.0 1.1 -11.6 229 6.7 21.6 53.3 125 +01050422.FNB 1 13.2 1315 -10 654 80 33.2 0.6 -12.0 205 5.5 25.5 43.0 144 +01050412.SPS 1 13.3 1511 -11 818 233 45.0 2.6 -11.2 211 5.9 37.5 53.7 290 +01050223.CDS 1 12.5 3652 -132 1895 166 31.7 0.2 -13.0 217 9.2 26.5 37.9 210 +01050123.RPD 1 11.7 2374 -31 1338 213 46.8 2.6 -14.3 249 7.2 38.7 54.2 348 +01050123.RGK 1 12.1 2710 -41 1464 239 44.1 2.6 -14.6 250 7.7 37.9 54.3 370 +01050100.TQE 1 9.6 1164 -13 1373 125 29.7 0.5 -16.8 267 7.6 24.5 30.9 158 +01050100.BGD 1 8.6 1497 -7 2135 23 54.7 0.0 -14.0 327 8.0 22.4 64.0 136 +01042300.OAX 1 11.5 527 -10 586 257 62.9 1.4 -12.4 193 5.9 51.0 62.5 288 +03060800.ECG 1 15.9 456 -52 671 256 26.7 0.5 -5.9 244 4.7 33.3 37.0 264 +03060500.CVS 1 8.5 804 -116 2160 108 56.7 0.0 -9.7 295 8.0 53.0 55.1 313 +03060422.TCC 1 10.6 1847 -48 1858 84 47.9 0.2 -10.4 290 8.6 41.0 53.3 227 +03060103.BFF 1 11.3 1434 -103 1288 72 46.7 0.4 -9.1 291 7.2 22.6 47.7 113 +03052820.PIA 1 11.7 1566 -31 860 135 36.1 1.3 -16.6 318 7.2 30.1 54.2 203 +03052323.V#L 1 10.7 657 -22 998 134 47.6 0.7 -13.2 312 7.1 36.4 63.1 269 +03051401.TXK 1 13.6 1354 -97 1023 210 48.8 1.5 -11.3 301 7.8 39.5 74.4 571 +03051323.C04 1 12.3 338 -272 641 212 57.3 0.0 -12.4 299 8.0 32.1 67.8 353 +03050920.FVX 1 13.5 1153 -108 1077 253 59.2 1.6 -11.6 288 7.8 44.4 56.6 335 +03050918.CHO 1 15.0 1961 -22 782 298 58.7 5.7 -11.4 296 7.3 46.4 63.9 473 +03050800.ABI 1 11.7 1368 -77 2113 150 68.5 0.0 -6.9 244 6.8 41.7 79.4 428 +03050721.ANB 1 14.0 798 -104 694 354 51.0 1.5 -9.4 268 6.5 39.0 46.7 422 +03050719.BMX 1 15.8 2069 -6 591 233 43.2 3.5 -10.7 274 6.8 31.7 48.0 302 +03050700.FAM 1 13.4 2397 -56 1026 270 72.9 6.1 -14.5 269 7.6 38.6 77.4 402 +03050518.MKL 1 15.9 2561 0 610 165 70.0 4.2 -11.5 253 7.0 46.3 90.9 195 +03050423.C35 1 15.5 2257 -12 619 309 68.9 7.0 -11.1 234 7.3 35.2 111.6 297 +03050421.ADM 1 16.6 3573 -3 898 108 77.1 3.9 -8.7 238 6.2 51.9 109.7 213 +03050320.BFF 1 7.9 1569 -35 1574 91 55.3 0.6 -17.6 237 9.1 30.0 121.3 150 +03050121.TUL 1 15.3 4038 -2 592 93 35.5 2.2 -13.9 263 7.7 27.5 53.2 205 +03043023.FOE 1 13.9 4015 -6 1059 116 26.7 2.0 -14.3 236 7.7 24.7 34.3 165 +03042821.BYI 1 4.3 220 -74 1877 74 40.4 0.0 -21.3 217 8.4 19.6 47.5 151 +03042522.MGM 1 13.1 2112 -13 1028 106 63.3 2.2 -14.2 266 6.8 41.2 42.5 199 +03042521.LWT 1 6.2 193 -34 1157 84 33.2 0.1 -19.0 194 7.6 23.8 44.0 191 +03042518.TCL 1 11.3 524 -50 815 216 66.5 1.1 -14.0 256 6.7 54.5 74.3 295 +03042423.PIB 1 13.2 710 -91 552 278 47.4 1.1 -13.2 256 7.3 29.9 47.5 367 +03042422.FOE 1 9.2 537 -24 443 119 31.9 0.3 -19.7 184 6.7 33.6 18.6 155 +03042419.BTR 1 14.3 2208 -2 816 43 52.0 0.8 -13.0 244 7.4 27.5 46.2 86 +03041923.MLC 1 12.8 1448 -52 744 271 64.7 3.9 -11.2 230 5.7 51.5 81.0 283 +03040618.JAN 1 12.9 801 -40 747 201 51.3 1.4 -14.4 243 7.5 28.4 87.0 298 +03040614.MLU 1 13.4 517 -86 382 358 50.8 1.2 -13.9 229 7.4 36.9 73.2 428 +03040601.FWD 1 11.1 461 -111 865 325 67.8 0.9 -13.5 245 6.9 40.1 93.4 563 +03040420.SPI 1 11.2 1687 -7 802 102 38.9 1.1 -17.7 252 7.6 39.5 59.0 176 +03032721.PBI 1 12.4 384 -64 873 185 47.9 0.5 -12.0 240 6.3 8.1 99.7 189 +03032720.TMB 1 13.5 878 -5 1007 102 59.6 0.9 -10.7 241 5.9 21.4 97.6 157 +04040822.ROW 1 7.6 885 -35 1457 25 42.6 0.1 -16.3 225 7.7 31.8 52.9 136 +04040616.VCT 1 13.2 671 0 457 159 42.0 0.8 -12.5 228 5.9 29.4 48.5 233 +04040615.CRP 1 14.5 1276 0 405 109 39.2 0.9 -12.3 238 7.0 30.2 44.3 209 +04032723.C33 1 12.5 2394 -14 752 342 44.2 6.0 -15.0 235 7.2 45.6 56.4 529 +04032721.C33 1 12.5 2248 -11 742 183 42.7 2.9 -14.5 230 7.1 29.5 50.7 257 +04032718.GAG 1 11.6 1959 -2 705 243 43.2 3.4 -16.1 217 7.9 33.2 51.9 263 +04020601.TCL 1 11.9 190 -48 628 310 45.1 0.4 -12.7 222 6.4 48.7 58.2 536 +03111803.GLS 1 16.5 1327 -28 566 364 46.5 3.8 -8.7 230 6.1 33.7 77.0 402 +03111722.GLS 1 10.1 1092 -23 682 103 65.1 1.1 -18.5 220 7.2 45.6 115.8 218 +03110520.IAD 1 13.7 626 -17 1058 109 35.5 0.4 -9.7 248 6.0 23.4 50.7 109 +03100923.GLS 1 18.1 1654 -5 454 164 35.3 1.6 -5.9 253 5.5 26.9 46.4 209 +03100523.C10 1 11.8 1332 -9 1262 56 39.6 0.4 -7.5 295 5.6 37.5 47.9 168 +03090807.MAF 1 11.7 777 -160 1418 169 29.0 0.1 -10.5 282 7.9 18.5 32.7 262 +03082523.RAD 1 12.0 1595 -36 1379 139 56.3 1.3 -11.7 280 6.3 16.2 82.0 142 +03080122.MIE 1 14.8 2465 -19 976 39 23.4 0.0 -10.9 251 6.4 10.2 49.8 63 +03072100.SUX 1 21.5 6268 -16 748 130 47.0 6.4 -7.5 313 7.3 28.4 42.4 175 +03072022.SUX 1 20.7 5887 -14 863 100 42.2 4.2 -7.3 304 7.8 47.1 46.8 375 +03072022.OFK 1 19.2 6004 -19 1398 33 31.9 0.6 -7.5 313 8.2 30.8 31.8 166 +03071922.STC 1 15.2 2711 -22 1042 103 46.1 2.1 -10.6 310 7.0 34.7 54.6 221 +03071102.NHK 1 16.5 987 -67 757 159 22.6 0.0 -7.7 240 6.4 20.9 29.8 187 +03070921.RWF 1 13.6 1319 -19 765 52 42.5 0.5 -10.8 262 7.0 23.9 51.9 91 +03070919.P#3 1 13.7 1228 -1 615 65 49.7 0.7 -10.0 258 6.5 18.9 58.3 80 +03070902.ATH 1 11.5 2088 -216 2152 184 48.4 0.0 -8.0 269 9.4 34.4 71.3 315 +03062823.BRD 1 10.3 984 -41 828 98 44.5 0.7 -16.0 285 5.9 30.4 65.1 168 +03062820.BJI 1 8.9 792 -1 1152 76 36.4 0.3 -17.5 276 6.2 21.6 57.0 122 +03062802.C22 1 8.5 251 -78 1075 74 33.2 0.1 -17.0 302 6.9 33.5 39.2 110 +03062800.P11 1 8.9 130 -58 757 94 34.6 0.1 -16.9 294 6.8 32.0 41.6 182 +03062223.GRI 1 18.1 5092 -19 1060 137 41.0 4.5 -7.9 238 8.0 29.8 45.3 215 +03062119.GCC 1 9.0 940 -32 1043 126 52.6 1.0 -13.9 234 7.3 37.7 61.9 271 +03061423.GLD 1 11.1 1240 -11 1151 21 28.6 0.1 -11.5 347 7.2 20.2 27.1 107 +03061202.9V9 1 11.9 1311 -150 1237 252 55.7 0.8 -12.0 277 7.7 34.4 64.5 403 +03061123.PIR 1 12.2 2019 -91 1257 201 52.8 1.9 -12.8 252 7.7 30.1 78.9 352 +03060922.AIH 1 12.2 3211 -62 1638 201 43.3 1.6 -13.0 253 9.0 35.4 67.6 306 +04052223.P#A 1 15.1 2952 -11 774 39 53.1 1.0 -12.0 243 7.6 22.0 68.8 112 +04052223.OAX 1 13.7 2734 -22 1169 83 52.1 1.6 -11.3 232 7.4 29.5 77.9 274 +04052201.OFK 1 14.7 3647 -8 1268 198 35.6 3.1 -11.0 240 7.8 35.9 59.8 310 +04052201.AIH 1 12.5 2491 -49 1041 183 43.4 3.2 -12.7 241 8.1 37.2 66.0 201 +04052122.GEG 1 8.3 1152 -51 831 61 20.9 0.0 -20.3 270 7.3 16.0 22.9 86 +04051821.PIA 1 13.2 1154 -20 811 45 38.0 0.3 -11.1 240 5.6 36.6 42.0 114 +04051701.C07 1 9.6 1682 -36 2011 261 50.5 0.0 -10.9 271 7.9 35.3 62.3 740 +04051700.GRI 1 11.3 1410 -72 1036 313 44.9 2.7 -14.9 227 8.2 36.5 55.1 498 +04051420.MBS 1 13.4 793 -7 834 109 40.9 0.6 -10.0 223 5.5 35.3 48.3 177 +04051416.SBN 1 13.7 499 0 429 86 47.3 0.3 -10.0 213 5.3 45.7 43.4 226 +04051323.G#4 1 15.5 3158 -12 977 153 38.7 3.1 -11.1 260 7.5 26.9 14.0 223 +04051223.C32 1 11.4 2949 -2 1894 52 53.9 0.2 -12.4 230 8.0 35.8 51.2 184 +04051117.VCT 1 16.3 1839 0 387 110 21.6 0.0 -10.4 236 6.4 21.8 22.3 236 +04043018.SPS 1 12.8 1694 -16 674 115 47.0 1.5 -14.9 221 8.0 24.4 40.3 122 +04042921.CDS 1 9.5 1110 -130 1817 -14 26.8 0.0 -14.5 244 8.2 30.9 40.8 112 +04042900.DRT 1 11.7 872 -12 771 192 46.2 1.3 -13.3 241 6.5 37.1 66.5 291 +04042320.SPS 1 14.3 3037 -1 1026 34 40.0 0.7 -13.4 226 7.4 18.9 49.8 60 +04042317.C11 1 10.4 439 -226 1267 41 38.3 0.0 -12.0 218 8.0 22.5 52.0 77 +04042300.FYV 1 11.8 1066 -33 829 252 39.7 1.8 -14.3 264 7.5 32.0 68.1 287 +04042222.TUL 1 13.0 1845 -5 720 136 58.2 2.4 -14.9 261 7.6 42.3 60.4 262 +04042220.P#P 1 13.3 2326 -1 748 134 58.8 3.1 -15.9 266 8.0 37.4 58.0 199 +04042200.GAG 1 10.8 1625 -5 908 47 32.4 0.4 -16.4 262 7.4 23.8 78.1 203 +04042122.G#1 1 7.3 762 -3 1736 51 74.4 0.1 -18.1 267 7.9 29.6 109.6 287 +04042100.TUL 1 10.6 632 -70 1159 363 52.0 1.5 -13.5 244 6.5 34.2 55.8 403 +04042023.GVS 1 10.8 283 0 524 272 32.9 0.4 -14.5 241 5.8 36.7 31.1 351 +04042022.C34 1 11.4 1441 -8 1212 105 50.3 1.0 -12.2 244 6.3 35.5 57.3 152 +04042019.HUF 1 9.9 107 -34 769 282 37.1 0.2 -14.7 239 5.8 35.7 36.3 292 +04042001.G#1 1 10.9 1585 -37 948 193 46.4 2.4 -14.6 237 7.8 39.5 70.5 374 +04041923.AMA 1 10.3 1602 -8 1272 103 41.6 0.8 -12.3 237 6.8 29.9 68.2 173 +04041823.HYR 1 9.5 788 -51 1551 610 67.8 2.1 -14.2 237 6.6 48.6 102.0 685 +04041822.YKN 1 8.5 781 -30 1937 -47 67.4 0.0 -14.5 231 7.3 50.2 99.2 231 +04041820.STC 1 9.5 1332 -37 1772 54 48.6 0.1 -15.2 231 8.6 26.3 87.5 167 +04041803.MCW 1 11.3 1606 -164 1042 529 61.4 2.0 -14.5 249 8.2 51.8 78.3 736 +04041800.FRM 1 6.2 0 -9999 2233 126 60.4 0.0 -15.8 250 8.3 48.2 86.0 376 +04041318.MHX 1 14.5 829 -6 376 471 48.2 3.1 -10.4 209 5.7 50.3 59.5 492 +04041101.HOU 1 14.2 1196 -29 574 -14 42.4 -0.1 -12.2 228 6.1 21.1 49.7 59 +04040922.MLC 1 9.5 826 -4 1253 59 50.6 0.3 -15.2 263 6.2 30.9 65.3 245 +04081001.LIC 1 13.1 2627 -14 833 10 31.8 0.1 -7.6 302 6.9 29.5 39.6 240 +04080923.LIC 1 12.3 2929 -24 1366 16 34.5 0.2 -7.1 291 7.3 33.3 41.5 174 +04080222.BH5 1 9.0 780 -79 2692 -22 40.8 0.0 -7.8 269 8.3 36.1 53.6 117 +04080101.FSD 1 15.5 3162 -71 1296 126 42.1 1.7 -10.0 298 7.7 29.5 43.5 211 +04071502.PWD 1 11.6 1241 -85 1817 -10 41.6 0.0 -9.7 293 7.4 25.5 68.5 104 +04071421.NHK 1 15.8 2262 -34 1229 29 22.0 0.0 -9.0 266 6.6 17.0 40.9 95 +04070822.CDR 1 8.4 1172 -184 2535 65 52.1 0.0 -10.6 252 9.0 39.8 58.2 155 +04070800.RSL 1 16.8 3857 -81 950 330 43.6 7.3 -6.9 302 7.3 32.9 43.0 525 +04062401.MSN 1 11.0 1731 -10 1132 139 52.2 1.8 -15.8 264 6.6 37.4 69.1 149 +04062202.AMA 1 14.9 2631 -32 851 69 48.2 1.5 -9.3 256 8.0 30.2 68.7 322 +04062201.AMA 1 13.9 2569 -24 1161 158 51.4 2.9 -9.1 264 8.2 37.1 79.6 378 +04062123.AMA 1 14.3 3017 -3 1129 34 46.0 0.7 -9.8 253 7.9 30.1 66.4 233 +04062100.LAA 1 13.7 2855 -58 1180 172 53.2 3.4 -9.9 265 8.0 19.8 59.2 173 +04062021.PUB 1 9.4 1660 -152 1943 219 45.3 0.1 -10.7 255 9.0 31.5 55.0 312 +04062019.COS 1 10.8 2562 -34 1009 45 38.2 0.7 -12.0 275 8.7 28.8 54.8 98 +04061501.HYS 1 14.0 3081 -123 1665 173 58.2 0.9 -9.0 287 8.2 39.1 57.5 526 +04061401.RDD 1 12.6 881 -112 1018 143 43.3 0.5 -9.7 283 6.4 45.8 43.1 223 +04061322.LNK 1 10.8 941 -69 1877 47 38.4 0.0 -9.3 287 5.7 33.3 45.8 183 +04061318.RQB 1 13.7 1000 -12 900 139 52.4 1.2 -10.7 233 6.1 36.9 55.2 229 +04061121.FRM 1 16.5 2686 -15 680 177 37.0 2.9 -11.0 219 7.7 18.6 49.4 252 +04061103.HSI 1 12.4 1209 -300 1522 316 36.6 0.0 -10.8 210 9.0 34.1 53.9 333 +04060921.APA 1 8.8 1388 -12 2068 90 27.2 0.0 -10.0 186 8.8 22.9 47.8 104 +04053022.SLO 1 18.2 3905 -16 909 156 45.8 4.6 -9.2 240 6.9 43.6 52.3 241 +04052701.PNC 1 15.4 2665 -48 1261 221 69.9 4.4 -8.5 266 6.3 33.5 88.2 272 +04052623.G011 1 12.4 1626 -109 1852 49 70.8 0.1 -9.9 262 7.1 37.0 94.0 147 +04052622.P#T 1 11.9 1612 -29 2366 155 49.7 0.0 -7.5 252 7.6 30.5 79.4 164 +04052602.ABI 1 14.8 1459 -96 876 180 51.9 1.6 -7.9 237 7.1 20.8 85.8 179 +04052500.FDR 1 16.4 3848 -41 1381 227 52.9 4.8 -10.3 248 8.8 44.6 77.8 373 +04052421.MCI 1 15.5 3926 -27 1068 147 47.7 4.3 -11.9 239 7.8 31.2 69.7 377 +04052421.CDS 1 11.5 2298 -45 2458 72 49.8 0.0 -9.7 246 8.0 26.4 75.8 113 +04052420.HSI 1 15.0 4625 -31 1086 83 34.0 2.0 -15.1 231 9.5 23.3 61.8 166 +04052420.BGM 1 11.0 1383 -50 1291 107 43.0 0.8 -13.2 261 6.4 38.3 57.1 215 +04052400.MKX 1 12.6 2101 -6 936 253 43.7 3.9 -15.6 243 8.0 47.2 76.4 303 +04052302.P#8 1 14.4 3064 -83 1357 338 64.2 5.2 -12.5 243 8.9 33.2 52.0 372 +04052301.P#A 1 15.3 2427 -11 641 38 43.9 0.7 -11.1 235 7.5 24.0 58.7 130 +04052301.OMA 1 15.2 2700 -10 801 171 47.0 3.6 -10.9 219 7.5 25.3 68.4 216 +99060823.N60 1 13.7 3155 -15 1051 78 41.1 1.6 -13.0 219 8.3 21.8 42.4 152 +99060620.MIW 1 16.5 2747 -2 728 95 46.5 2.0 -11.3 215 7.4 25.8 54.4 126 +99060619.DVL 1 13.3 2802 -18 814 23 14.6 0.0 -16.8 148 8.2 13.8 14.2 55 +99060522.LRJ 1 15.2 2964 -17 1289 56 44.7 0.9 -10.3 227 8.2 27.6 63.5 157 +99060405.VTN 1 12.9 2518 -114 1075 129 40.8 1.2 -11.7 252 8.4 33.9 47.9 180 +99060300.GTF 1 7.5 3 -80 1259 78 32.1 0.0 -12.7 166 6.6 32.1 44.8 172 +99060300.AMA 1 12.9 2756 -67 1541 95 38.7 0.7 -10.0 227 8.6 29.5 72.3 208 +99060123.SPI 1 14.9 2287 -19 881 194 49.6 3.7 -12.9 240 7.2 40.7 42.9 303 +99060110.MLC 1 16.0 1956 -157 477 193 43.7 0.8 -10.8 251 8.4 34.4 54.4 257 +99060101.RSL 1 13.0 1705 -20 907 93 50.1 1.3 -12.2 250 8.3 32.2 70.0 179 +99060100.SJT 1 10.8 1391 -136 2395 53 45.7 0.0 -8.1 279 8.0 23.3 44.1 151 +99060100.CSM 1 13.8 2748 -119 1593 116 55.1 0.7 -10.4 262 8.3 31.9 59.4 205 +99053122.LBL 1 12.8 2910 -27 1574 106 61.1 1.3 -11.1 247 8.1 34.8 75.6 204 +99053023.LXN 1 11.3 1917 -2 1506 20 24.9 0.0 -12.7 282 7.1 22.6 26.3 85 +99052700.INK 1 10.3 1701 -31 1781 9 53.5 0.0 -13.0 263 8.4 26.7 60.4 107 +99052521.ROW 1 8.6 1056 -1 2099 26 43.2 0.0 -11.4 250 7.4 17.0 57.8 56 +99051701.P28 1 14.1 3996 -25 1498 52 41.4 0.7 -12.2 235 7.9 28.4 44.1 137 +99050922.P07 1 10.6 1793 -96 2053 72 29.7 0.0 -11.9 197 8.5 25.8 74.2 77 +99050419.EWK 1 9.8 1172 -30 1060 87 56.5 0.9 -17.0 185 7.4 27.6 56.8 112 +99050401.ONL 1 9.2 1561 -17 1532 160 31.3 0.6 -15.4 205 7.3 24.3 33.6 208 +99050220.HDE 1 8.7 687 -3 649 100 31.9 0.4 -19.2 208 7.1 21.5 23.0 124 +99050122.MAF 1 12.3 1710 -9 776 232 56.9 3.8 -11.2 237 6.8 32.4 76.7 295 +99043021.INK 1 13.0 2707 -11 1033 174 50.2 3.8 -11.8 197 7.3 35.6 67.7 236 +99042421.AGS 1 9.7 443 -32 1749 52 54.7 0.1 -12.4 292 6.7 37.3 65.4 176 +99042300.MKO 1 13.6 2181 -13 1003 243 55.3 4.9 -11.4 253 7.8 35.3 67.1 248 +04082522.FOE 1 16.3 3285 -59 1225 128 33.5 1.7 -8.6 243 6.8 34.0 42.4 233 +04082423.DPA 1 15.3 616 -29 685 237 28.3 0.7 -6.6 213 5.2 26.6 21.5 254 +04082401.FOE 1 17.3 2862 -33 582 300 33.1 4.7 -7.7 274 6.8 24.8 34.1 345 +04082200.C07 1 12.4 2025 -24 1364 108 27.4 0.6 -7.7 278 6.6 14.0 41.6 288 +04081522.ATH 1 10.0 1320 -50 1754 133 37.4 0.3 -10.5 325 7.6 38.4 41.5 249 +04081420.HAT 1 16.9 1221 -20 693 281 41.3 2.4 -6.1 204 4.5 32.5 54.5 312 +04081219.FAY 1 15.4 835 -29 887 115 48.5 0.8 -7.1 211 5.4 29.3 50.5 134 +04081215.CAE 1 16.3 1332 -11 579 78 38.5 0.7 -8.3 217 5.9 37.1 28.4 136 +99112300.TUL 1 11.8 1383 -12 847 203 54.3 2.5 -15.7 217 6.9 37.0 60.1 264 +99092823.LAF 1 14.3 1880 -26 925 44 46.4 0.6 -9.8 226 5.9 31.8 53.4 131 +99092700.ICT 1 13.7 1942 -99 1005 119 45.8 1.2 -7.8 271 6.2 28.6 45.7 170 +99092003.OGD 1 5.9 7 -95 1490 6 35.4 0.0 -14.8 306 7.3 17.3 39.8 59 +99091023.OKM 1 14.1 1578 -173 1285 75 38.5 0.1 -9.8 284 6.9 29.7 41.2 205 +99090400.AKO 1 11.6 1401 -21 1298 3 44.8 0.0 -8.1 221 7.3 26.8 60.0 143 +99081920.SME 1 11.4 1158 -29 2080 34 42.9 0.0 -10.2 267 6.9 18.4 33.8 78 +99081621.GLD 1 14.3 3184 -9 1787 78 34.9 0.3 -7.0 231 7.7 23.6 46.0 131 +99081503.JDN 1 7.8 368 -225 2152 37 52.5 0.0 -11.9 242 8.0 36.8 72.2 220 +99080923.MKT 1 16.2 2484 -10 814 229 44.4 4.2 -9.7 289 7.7 38.9 63.1 274 +99073100.DMH 1 14.4 2057 -58 1629 66 38.0 0.3 -8.8 331 7.0 18.2 55.7 83 +99072800.COQ 1 11.9 957 -73 1267 208 61.5 1.2 -12.4 294 7.3 37.9 75.1 349 +99072300.ABR 1 15.9 3073 -48 1643 51 26.1 0.2 -7.9 237 7.7 10.4 43.4 60 +99072201.GGW 1 8.8 1107 -147 2618 58 49.5 0.0 -11.3 230 8.7 27.6 92.9 163 +99072022.OLZ 1 19.5 3709 -2 737 170 42.4 4.4 -5.2 268 5.5 29.8 44.8 294 +99071400.MOT 1 10.3 1025 -92 1759 96 63.9 0.2 -11.0 284 7.1 34.6 66.5 248 +99070300.LBF 1 18.3 5887 -62 1227 118 33.7 2.8 -6.4 235 9.0 23.9 55.3 163 +99070123.IPT 1 14.7 908 -27 884 203 33.0 1.0 -6.8 229 5.6 30.6 31.5 243 +99062922.GUY 1 13.7 3266 -87 2035 154 43.7 0.0 -7.8 283 9.0 32.3 53.8 237 +99062802.OGA 1 12.3 1529 -168 1178 203 64.3 0.5 -9.7 266 8.8 33.4 87.6 253 +99062701.MCK 1 16.5 3830 -43 1226 55 34.0 0.9 -7.8 258 8.2 20.8 57.0 152 +99062700.SNY 1 12.1 2217 -42 1612 24 49.9 0.2 -8.9 251 8.2 28.2 77.8 141 +99062300.MHE 1 14.1 1832 -74 977 196 23.4 0.0 -9.7 239 7.3 17.5 18.0 213 +00050901.AIZ 0 13.1 1987 -68 1453 84 35.7 0.5 -11.3 241 8.5 41.9 28.1 204 +00050722.SNY 0 9.8 2015 -39 1845 23 56.1 0.1 -12.4 245 8.7 34.2 64.8 128 +00050707.OGA 0 11.6 1205 -190 787 34 39.5 0.0 -11.3 236 8.2 22.0 47.2 115 +00050323.RBD 0 11.2 940 -3 1077 54 42.9 0.3 -14.6 290 6.2 28.9 58.4 174 +00043001.ABI 0 11.9 2549 -66 1686 111 39.6 0.5 -11.8 268 8.4 26.8 40.5 228 +00042423.LAA 0 5.4 613 -132 2566 97 54.0 0.0 -16.3 278 8.9 29.1 72.7 192 +00042422.EHA 0 6.7 706 -56 2143 58 53.8 0.0 -15.2 295 8.1 25.8 83.4 159 +00042021.BWG 0 11.2 1126 -13 1162 167 52.1 1.4 -13.5 240 7.4 46.8 53.8 253 +00042021.BNA 0 11.2 989 -26 1114 165 53.6 1.3 -13.7 242 7.7 45.4 65.0 244 +00042001.MCI 0 12.4 2093 -43 1300 141 61.9 2.1 -12.3 226 7.0 33.4 81.4 163 +00042000.JCT 0 13.1 2950 -156 1701 170 51.7 0.4 -9.4 253 8.2 40.5 71.8 240 +00041822.SJT 0 7.1 414 -185 3169 -7 49.4 0.0 -9.5 243 8.2 32.3 60.6 45 +00041620.SUS 0 9.5 579 -1 968 46 41.8 0.2 -18.1 247 6.6 30.2 69.5 154 +00041602.GRA 0 10.2 901 -182 1269 251 56.8 0.2 -17.0 244 8.6 34.1 76.8 276 +00033000.SHV 0 12.6 1635 -14 797 147 57.7 2.3 -15.2 267 7.2 33.9 91.9 219 +00032900.HYI 0 15.8 2875 -10 771 106 60.6 3.0 -11.6 251 7.3 36.4 82.8 192 +00032522.BNA 0 8.3 268 -8 1461 34 37.5 0.0 -16.9 270 6.2 23.2 61.3 60 +00032207.MAF 0 11.5 1952 0 562 249 54.6 4.4 -16.4 196 8.3 45.0 77.8 468 +00031600.CSM 0 8.3 808 -99 1327 59 34.5 0.1 -17.7 251 7.6 25.7 34.3 101 +00031022.BHM 0 10.3 614 -95 1034 103 48.9 0.4 -15.8 238 7.0 33.1 49.4 179 +00030923.LRD 0 13.5 2701 -7 1360 -13 41.3 -0.2 -12.5 256 7.5 20.8 59.4 95 +00030920.GFL 0 7.1 1 -425 1416 88 63.6 0.0 -18.7 242 8.1 39.6 77.0 165 +00030900.UNU 0 9.9 1306 -11 1121 172 50.6 1.7 -17.3 203 6.6 39.6 44.1 206 +00030900.CLI 0 9.4 673 -29 1009 196 53.3 1.2 -16.9 202 6.6 39.4 53.8 226 +00030302.PWG 0 12.0 1469 -17 1106 252 60.9 3.3 -12.2 259 6.1 45.0 75.3 323 +00030222.AFW 0 11.1 999 -6 913 256 68.3 2.6 -13.5 238 6.5 36.9 80.1 345 +00022606.CRS 0 13.3 2158 -10 637 191 48.7 3.3 -14.8 239 6.9 25.4 69.2 184 +00022523.FSD 0 7.3 495 -2 929 82 38.3 0.3 -21.9 172 7.7 30.1 52.5 83 +00022405.FAM 0 9.2 437 -46 772 315 46.8 1.1 -18.0 235 6.3 29.2 42.2 331 +00072222.BBW 0 11.9 1462 -1 1218 36 35.2 0.2 -11.1 328 6.5 26.6 43.9 124 +00072220.GLD 0 10.6 1162 -15 1699 26 39.9 0.1 -10.2 319 7.4 19.8 55.8 82 +00072122.BFF 0 9.8 1738 -8 2036 34 42.0 0.0 -9.9 297 7.7 36.2 48.9 131 +00072022.AKO 0 14.0 3465 -7 1063 22 46.2 0.6 -10.2 278 8.3 29.1 64.7 106 +00072000.BVX 0 17.4 3847 -11 1674 30 36.4 0.2 -7.1 298 6.9 26.0 29.2 130 +00071022.RCA 0 13.2 1916 -28 1452 23 41.1 0.2 -9.2 238 7.6 21.4 68.1 95 +00071001.LBF 0 14.7 2947 -100 1740 24 28.1 0.1 -5.6 239 7.8 23.6 37.9 109 +00070922.MHE 0 16.8 3556 -34 1430 6 40.7 0.1 -6.1 258 6.7 18.8 41.5 109 +00070922.GGW 0 13.3 2242 -12 1039 31 46.6 0.5 -11.4 226 7.4 18.7 71.4 74 +00070901.LWT 0 8.7 874 -65 1998 38 58.4 0.0 -11.5 232 8.1 32.4 92.6 236 +00070805.LVN 0 18.2 2722 -69 530 388 37.6 5.8 -9.2 261 8.1 22.9 53.3 407 +00070803.JDN 0 7.6 57 -220 2275 33 69.9 0.0 -11.7 240 7.8 39.2 84.5 167 +00070601.CUT 0 11.7 2058 -14 1543 37 55.5 0.3 -9.9 245 8.5 28.5 78.8 136 +00070523.MCK 0 16.4 3979 -55 1631 151 45.4 1.6 -6.8 254 8.1 24.5 59.5 231 +00070521.RAP 0 14.5 3135 -2 1289 15 44.0 0.3 -10.0 233 8.0 19.5 68.5 93 +00070501.2WX 0 11.2 1574 -93 1339 -29 47.6 -0.2 -12.4 230 8.6 28.2 78.4 64 +00070421.JDN 0 8.1 1033 -47 1927 -17 41.2 0.0 -15.0 209 7.9 26.2 68.3 49 +00070302.GGW 0 10.6 1484 -86 1685 121 67.7 0.4 -12.6 252 7.9 36.1 78.0 267 +00070222.FOD 0 17.4 3585 -43 1097 53 23.7 0.0 -9.5 292 7.5 16.4 31.4 91 +00070201.ABR 0 14.2 3411 -108 1790 100 24.5 0.0 -10.0 259 8.3 16.6 39.9 145 +00070123.ELO 0 13.3 2835 -49 1339 117 57.8 2.1 -13.1 291 7.7 31.9 66.7 228 +00070122.ABI 0 13.9 1505 -15 1776 40 26.6 0.1 -5.4 261 5.7 21.4 25.5 120 +00070100.JLN 0 15.5 2255 -3 786 81 43.6 1.3 -7.6 313 5.9 25.5 56.4 208 +00062923.ELM 0 8.8 332 -11 1098 19 33.4 0.0 -16.5 253 6.2 19.9 82.5 60 +00062923.D07 0 9.6 1600 -26 1649 30 42.4 0.1 -15.7 295 7.7 30.2 50.5 90 +00062901.LAM 0 11.8 506 -57 1728 28 25.5 0.0 -6.5 268 6.3 18.5 25.2 126 +00062519.AIO 0 14.7 2632 -77 1269 122 38.0 1.2 -10.6 279 7.3 29.0 32.0 250 +00062402.RCA 0 11.5 1507 -76 1200 0 40.3 0.0 -11.0 273 7.9 29.4 67.6 159 +00062322.SDA 0 16.8 4294 -9 1398 56 28.6 0.7 -9.2 284 7.3 21.1 46.7 160 +00061522.OKV 0 14.5 746 -31 749 130 32.3 0.5 -8.8 240 6.0 35.1 29.5 198 +00061323.P28 0 14.3 3106 -53 1734 60 41.3 0.3 -10.0 260 8.0 15.7 31.7 91 +00061122.DFS 0 13.5 3143 -11 1597 67 28.6 0.4 -8.2 251 7.7 28.8 45.0 62 +00060400.GLD 0 9.0 1430 -74 2560 51 35.6 0.0 -10.7 313 8.7 29.0 38.3 146 +00060221.CEF 0 12.1 326 -141 1452 156 38.5 0.1 -9.8 279 6.6 44.9 47.0 277 +00052701.SZL 0 13.7 1477 -23 1157 198 50.0 2.1 -9.7 244 6.7 38.9 69.4 232 +00052501.PPA 0 15.2 3731 -83 1597 78 46.6 0.7 -8.0 249 8.4 33.0 60.7 288 +00052501.ADK 0 16.3 4569 -134 1861 108 40.3 0.2 -7.8 255 8.7 36.4 49.3 291 +00052219.AVC 0 10.1 628 -1 1000 2 52.8 0.0 -13.8 256 5.9 28.0 59.1 95 +00052021.VPC 0 13.0 805 -6 1196 15 39.2 0.1 -9.8 231 6.1 19.7 47.6 87 +00050922.IRS 0 12.0 729 -2 928 68 49.6 0.4 -13.6 230 6.9 46.6 41.5 178 +01041105.JCT 0 14.1 1545 -229 832 346 71.9 0.0 -9.7 230 8.5 44.0 97.0 386 +01041004.IND 0 11.4 1318 -107 1240 185 57.8 1.1 -13.8 292 7.2 35.6 68.3 216 +01040321.UNO 0 12.3 1279 -42 722 107 57.2 1.3 -13.7 270 7.4 36.3 60.7 225 +01040300.BFF 0 5.0 0 -9999 1708 161 63.5 0.0 -17.8 241 7.5 37.7 81.7 433 +01032404.ABI 0 10.8 1700 -61 813 65 27.5 0.5 -18.2 289 8.0 17.4 46.6 180 +01031202.FTW 0 11.7 1341 -9 490 161 53.1 1.9 -17.9 240 7.3 37.5 47.3 201 +01031123.BWD 0 10.1 846 -18 912 76 47.4 0.5 -17.4 245 7.7 31.1 69.7 133 +01022500.TOP 0 7.3 153 -15 715 148 78.6 0.2 -21.3 203 6.8 32.9 92.4 170 +00110907.GZH 0 15.4 1005 -3 768 172 47.3 1.4 -7.8 213 6.0 36.2 52.6 220 +00110906.EET 0 14.9 674 -3 539 277 52.5 1.6 -8.6 217 5.7 41.9 58.8 327 +00110121.CID 0 12.2 1537 -17 1087 164 40.8 1.6 -12.1 210 6.0 36.7 41.3 225 +00102323.ELP 0 9.8 1432 -3 1298 24 68.0 0.2 -14.2 201 7.5 36.8 65.9 132 +00102212.MWL 0 13.4 1016 -7 525 152 31.3 0.8 -11.5 208 6.2 22.4 43.6 149 +00101423.INK 0 8.5 757 -27 2381 63 29.5 0.0 -10.8 243 7.2 27.3 48.1 91 +00101408.CNM 0 11.5 1524 -124 1147 79 34.2 0.3 -10.4 246 7.2 29.4 55.6 119 +00101400.SLN 0 11.5 577 -49 879 26 58.0 0.1 -11.3 234 5.7 28.9 63.6 76 +00100401.GCK 0 8.5 341 -281 1869 -16 53.4 0.0 -11.5 263 8.5 38.0 70.8 124 +00090523.GTF 0 7.6 277 -43 1393 8 65.8 0.0 -15.8 219 7.4 34.7 93.3 112 +00090300.ISN 0 10.7 654 -10 754 62 42.1 0.3 -13.8 225 6.8 27.3 72.5 95 +00090120.SLC 0 5.7 78 -67 2129 29 41.1 0.0 -14.3 198 7.4 15.4 53.6 53 +00081820.BUY 0 15.3 1702 -37 1351 58 34.7 0.4 -8.2 275 6.5 38.7 13.2 134 +00081723.IND 0 19.2 4115 -13 791 158 47.3 5.1 -7.9 275 6.9 37.5 49.8 224 +00081720.LEX 0 16.6 2579 -6 1129 81 36.5 1.1 -6.7 284 5.9 24.9 42.3 141 +00081420.AIT 0 16.2 2299 -120 690 282 52.2 3.0 -9.8 267 8.0 37.9 69.5 368 +00080623.CDJ 0 14.7 1350 -119 1250 43 35.9 0.1 -6.8 272 6.3 24.5 54.6 88 +00080601.HNR 0 18.6 4073 -16 990 54 37.6 1.4 -7.0 271 7.3 25.9 55.8 92 +00080522.AIA 0 7.8 312 -3 2875 0 43.4 0.0 -8.3 272 7.7 22.1 49.4 52 +00080502.PIR 0 14.4 2629 -128 1844 202 48.0 0.3 -7.4 270 7.5 30.4 64.1 318 +00080502.ANW 0 11.5 1035 -228 2157 138 37.9 0.0 -6.3 276 7.6 25.6 46.8 227 +00080222.FKL 0 13.7 1168 -22 892 104 26.2 0.5 -9.1 253 5.9 27.0 55.7 145 +00080202.LWT 0 8.3 700 -130 2701 50 46.5 0.0 -8.4 286 8.6 19.4 78.7 94 +00080202.GGW 0 10.8 1193 -207 1955 94 51.1 0.0 -9.6 293 8.0 25.1 71.3 230 +00072622.AIO 0 16.7 3711 -2 964 67 44.8 1.9 -10.2 324 7.6 29.1 43.1 186 +00072501.HON 0 13.9 2463 -99 1314 85 29.5 0.5 -11.1 271 8.3 13.2 40.3 91 +01060123.LWC 0 11.2 1268 -25 1421 113 62.6 0.8 -13.2 305 6.4 37.6 79.8 249 +01060122.P28 0 11.4 1141 -69 1552 80 51.2 0.3 -9.7 308 6.6 21.4 62.5 156 +01053100.CVN 0 8.5 1309 -86 2195 -18 45.9 0.0 -10.8 289 8.3 24.1 38.5 138 +01052801.END 0 13.1 2369 -85 1258 150 47.1 1.6 -12.5 280 8.2 39.8 67.4 370 +01052400.OKF 0 7.6 314 -55 2200 85 59.2 0.0 -15.3 298 7.1 43.3 63.3 244 +01052022.GRK 0 15.6 2852 -21 1408 32 40.1 0.4 -7.9 242 6.8 30.2 75.1 60 +01051801.RUL 0 11.1 1624 -134 2428 24 25.8 0.0 -8.5 258 8.1 18.9 46.6 76 +01051623.BIE 0 13.4 3208 -41 1905 35 30.0 0.1 -10.4 274 7.5 20.5 32.1 103 +01051218.DDH 0 8.9 325 -25 1493 21 36.4 0.0 -16.2 229 6.4 25.9 46.8 102 +01051000.OLU 0 9.6 2423 -73 2081 70 30.6 0.0 -15.8 265 8.8 23.7 36.8 157 +01050823.GBD 0 8.1 447 -90 1828 55 44.5 0.0 -15.8 323 7.4 25.4 50.6 207 +01050701.COT 0 15.9 3113 -16 1068 4 34.1 0.1 -12.2 267 8.1 10.5 56.5 73 +01050700.ADS 0 14.6 2915 -5 1038 115 37.4 2.0 -13.7 248 7.3 23.1 63.5 148 +01050623.BMQ 0 16.4 4217 -12 955 48 38.2 1.3 -13.0 257 7.5 27.3 64.9 143 +01050501.COT 0 14.3 1453 -9 1075 113 48.9 1.2 -9.9 226 7.0 33.1 73.5 169 +01050200.AUD 0 10.0 1544 -80 1896 85 31.2 0.1 -14.7 266 8.2 22.1 40.9 170 +01050101.SLN 0 10.5 1695 -66 1383 122 37.1 0.7 -16.7 295 8.0 24.3 61.4 188 +01050100.P28 0 9.9 1422 -94 1553 70 45.7 0.2 -15.7 309 7.8 24.3 54.0 188 +01042317.STE 0 9.5 775 -5 970 86 55.4 0.6 -18.0 210 6.8 38.9 110.9 170 +01042304.JCT 0 14.1 2210 -11 659 190 53.5 3.8 -11.8 248 7.8 31.4 55.1 214 +01042222.MWL 0 11.8 1193 -8 1373 116 46.2 0.7 -10.2 212 6.2 33.4 58.0 105 +01042123.PIA 0 12.1 1857 -13 1175 79 41.0 0.8 -13.4 257 7.5 25.7 51.8 94 +01042123.CDS 0 10.3 2000 -70 2105 81 55.8 0.0 -11.8 230 7.9 27.2 70.8 141 +01042102.SLN 0 11.5 2072 -206 1218 280 50.2 0.0 -15.1 239 8.7 44.2 73.5 374 +01041702.SJT 0 13.0 1793 -30 989 96 38.8 1.1 -10.9 296 7.0 26.3 65.2 260 +01041700.LBB 0 8.1 406 -65 1861 42 46.3 0.0 -12.1 288 7.1 32.9 80.6 256 +01041500.ABI 0 12.6 2222 -121 1474 76 59.9 0.5 -13.2 249 8.7 28.8 78.5 130 +01041423.ADM 0 14.2 1613 -86 524 248 67.7 3.1 -14.2 254 8.6 38.9 90.8 310 +01041422.PCS 0 13.6 2872 -90 1455 5 57.7 0.1 -10.8 245 8.2 21.5 77.6 85 +01041422.EMP 0 8.9 652 -15 1486 57 59.4 0.2 -16.8 254 7.2 31.9 84.7 218 +01041421.HBR 0 13.9 2647 -29 786 167 70.6 4.4 -14.3 255 8.2 39.1 91.1 239 +03050100.BRL 0 12.7 2707 -10 1047 121 47.3 2.5 -15.8 247 8.2 27.0 50.9 270 +03043021.AIA 0 12.3 2247 -53 863 158 49.0 2.8 -15.7 243 8.1 37.1 49.5 276 +03043003.LIC 0 8.7 1228 -82 574 264 52.2 2.2 -15.9 216 8.8 43.9 59.2 676 +03042900.APA 0 6.3 1056 -56 1639 56 35.9 0.1 -15.6 239 8.3 10.6 65.7 63 +03042600.HRL 0 12.4 1634 -219 1994 5 43.7 0.0 -11.1 286 8.3 25.0 72.5 36 +03042522.FTY 0 11.2 645 -12 811 160 61.6 1.0 -14.4 253 6.7 33.8 66.6 259 +03042520.ANB 0 11.5 783 -1 777 164 64.0 1.3 -14.0 259 6.2 36.4 64.7 319 +03042400.SEP 0 14.4 2485 -6 558 393 62.4 9.8 -14.6 238 7.9 39.1 92.6 485 +03042022.MKL 0 12.5 1017 -22 789 92 57.6 0.9 -14.3 251 6.9 29.0 70.2 188 +03042019.MEM 0 13.1 1682 -6 857 78 50.6 1.1 -14.2 252 7.3 29.0 57.0 148 +03041922.P#0 0 11.7 1623 -17 730 127 72.6 2.1 -19.4 223 7.9 35.5 102.9 148 +03041920.END 0 10.6 1171 -12 629 144 57.4 1.6 -21.0 215 8.4 39.0 99.4 219 +03041907.FDR 0 12.6 1046 -418 613 365 65.8 0.0 -13.9 207 8.9 40.5 101.8 352 +03040720.HOU 0 16.5 2215 -1 373 67 57.9 1.4 -11.4 231 7.6 30.3 77.2 191 +03040718.BPT 0 13.8 933 -139 741 16 59.0 0.1 -12.1 226 7.4 26.5 91.0 110 +03040717.LFT 0 14.1 780 -168 559 29 50.5 0.0 -12.0 233 7.3 29.3 84.8 74 +03040605.C12 0 11.3 655 -128 639 328 69.4 1.0 -14.6 250 7.3 45.3 111.0 697 +03040601.C11 0 12.1 2056 -4 832 109 75.1 2.2 -15.3 251 7.6 26.4 93.3 198 +03040400.LW1 0 13.3 2761 -1 682 153 54.3 3.8 -15.1 242 7.6 32.9 52.2 224 +03040322.HBR 0 9.5 1315 -38 1655 57 42.4 0.2 -14.8 235 7.5 33.0 47.0 130 +03032821.MBS 0 7.7 95 -1 1423 199 68.1 0.1 -17.6 223 6.6 48.9 65.7 252 +03032819.AZO 0 8.9 146 -2 830 200 60.9 0.3 -17.3 225 6.7 54.5 64.3 255 +03031722.SPS 0 10.7 981 -38 1183 127 34.3 0.6 -15.4 236 7.3 19.3 95.8 139 +03031720.SPS 0 10.2 947 -44 1140 35 24.3 0.0 -16.7 216 7.4 15.4 100.9 42 +03031221.PBI 0 14.2 1790 -2 1215 21 36.5 0.2 -12.1 258 7.7 2.8 67.6 -23 +03031218.FPR 0 15.8 2760 -2 892 -28 38.6 -0.5 -14.1 256 8.0 11.8 71.6 86 +01062102.ICT 0 13.9 1917 -38 976 89 37.8 1.1 -11.3 291 7.3 26.8 48.8 202 +01061623.JMS 0 8.9 600 -4 1096 41 40.5 0.2 -18.1 283 7.1 25.4 84.9 82 +01061122.RGK 0 14.3 3269 -77 1618 201 51.8 1.8 -10.9 265 8.4 35.2 56.2 397 +01060502.CSM 0 15.8 3992 -79 1412 107 34.9 1.2 -8.4 251 8.1 28.3 40.7 227 +01060501.LHX 0 8.3 615 -248 1957 94 44.0 0.0 -11.2 243 9.0 29.0 49.3 127 +03062823.RST 0 8.8 203 -71 1471 26 40.8 0.0 -12.1 287 4.8 15.4 60.6 57 +03062822.BH4 0 6.7 253 -82 2374 15 53.7 0.0 -12.2 288 8.0 39.8 64.9 352 +03062820.WSC 0 9.5 432 -25 1288 24 38.2 0.1 -13.2 292 5.0 20.7 57.7 45 +03062800.C07 0 9.3 1323 -51 2202 29 36.5 0.0 -9.3 311 7.4 12.9 41.7 81 +03062800.8V7 0 10.5 2208 -13 2023 82 42.3 0.0 -8.2 320 7.8 44.3 44.0 293 +03062722.8V7 0 11.1 2543 -6 1821 66 38.6 0.2 -8.4 315 7.5 40.0 47.0 258 +03062721.C07 0 8.9 1146 -29 2232 32 35.4 0.0 -9.2 306 7.2 11.7 50.1 74 +03062401.CYS 0 10.5 1054 -23 891 146 67.4 1.5 -8.4 210 6.6 44.6 77.5 258 +03062022.ROW 0 10.0 1448 -1 2438 18 41.2 0.0 -8.3 220 7.9 29.6 51.3 74 +03062022.CVS 0 12.0 1680 -21 1220 96 32.9 0.7 -8.5 224 7.2 20.3 41.0 110 +03062020.CVS 0 12.3 2087 -2 1100 14 22.8 0.0 -9.4 233 7.4 10.8 35.9 48 +03061501.CNM 0 11.3 2677 -1 2178 -48 31.4 0.0 -11.2 338 8.5 17.4 38.2 109 +03061423.HOB 0 9.6 1525 -68 2132 7 32.6 0.0 -11.5 330 8.5 14.0 32.3 24 +03061223.C11 0 20.9 5150 -8 501 190 32.5 5.3 -8.9 269 8.0 41.4 58.8 339 +03061221.AGC 0 13.1 691 -9 1032 158 35.1 0.6 -8.8 227 5.9 34.2 44.2 256 +03060401.TCC 0 11.4 1746 -91 1622 -15 59.6 -0.1 -9.6 288 8.2 44.8 48.7 398 +03060322.LBB 0 13.6 2239 -128 1199 80 45.2 0.5 -9.1 302 7.9 31.8 57.3 316 +03060302.LRD 0 17.3 3023 -81 1418 -4 35.4 0.0 -5.0 285 7.3 27.3 67.7 -12 +03053121.ILM 0 13.5 1237 -102 1265 394 58.4 2.3 -10.4 275 6.3 47.7 74.8 576 +03052001.ADM 0 16.8 3033 -19 1155 81 33.3 1.2 -8.4 288 7.5 14.5 61.0 188 +03051922.FSI 0 15.9 2088 -80 836 131 37.4 1.4 -8.3 246 8.1 40.1 50.7 385 +03051409.C12 0 13.9 2056 -415 1151 505 44.5 0.0 -12.7 290 9.5 25.4 80.3 466 +03051406.LW1 0 15.8 3351 -219 819 259 50.4 0.0 -11.8 274 8.3 12.9 74.5 238 +03051401.C11 0 13.9 3239 -178 1774 132 58.3 0.1 -9.9 286 8.2 22.1 60.4 192 +03051322.CDS 0 12.4 3323 -92 2274 79 49.1 0.0 -10.1 280 8.6 18.1 68.8 98 +03051223.MRF 0 11.6 1914 -2 1612 41 42.7 0.2 -6.0 279 6.7 33.9 49.2 174 +03051019.MLC 0 14.5 849 -221 615 158 58.7 0.0 -8.7 240 7.6 34.0 74.3 199 +03051017.P#Q 0 16.5 2801 -34 619 97 68.4 2.7 -9.2 235 7.2 32.3 77.8 168 +03051000.P#J 0 16.2 3929 -21 888 74 55.8 2.7 -12.5 247 7.6 33.6 64.7 227 +03050922.LEX 0 15.5 2304 -3 715 119 55.3 2.5 -9.5 278 7.4 32.8 69.7 185 +03050921.COU 0 16.1 4338 -12 941 67 45.4 2.2 -11.8 246 7.4 35.8 73.5 264 +03050920.SDF 0 15.2 2300 -15 871 88 52.2 1.8 -10.2 268 7.2 36.6 70.7 247 +03050520.MKL 0 15.8 2332 -17 581 247 71.6 5.8 -11.9 263 7.3 40.2 88.1 300 +03050223.BMX 0 15.4 3487 -10 686 61 44.2 1.6 -13.2 283 6.8 21.9 38.7 114 +03050221.HSV 0 13.0 2237 -40 946 139 42.3 2.2 -13.8 264 7.0 27.8 33.8 201 +03050221.ABL 0 13.6 3056 -5 1063 81 40.9 1.6 -14.7 280 7.2 27.0 27.0 130 +03050219.SJT 0 15.1 4252 -2 1189 17 38.9 0.4 -12.5 277 8.1 4.7 61.7 18 +03050219.ABL 0 12.9 2572 -28 1072 45 27.2 0.5 -13.7 261 6.7 22.6 36.0 82 +03050218.MSL 0 13.0 2367 -24 912 19 25.5 0.2 -14.5 257 7.4 24.2 40.8 60 +03050201.ACT 0 13.6 2339 -88 1301 -44 31.1 -0.3 -11.9 280 8.3 21.3 53.8 -77 +03050102.END 0 14.0 3853 -58 1033 227 43.6 5.8 -13.5 250 7.4 27.5 43.5 247 +03071221.AVL 0 11.9 710 -2 1196 56 37.5 0.2 -8.5 266 5.6 31.7 43.3 103 +03071201.FOE 0 16.7 3598 -41 1289 -96 59.4 -2.4 -10.2 313 7.9 33.9 54.8 89 +03071200.FOE 0 16.2 3683 -11 1441 -16 63.8 -0.3 -11.0 315 7.7 31.9 59.2 109 +03071123.P#H 0 12.6 927 -26 1632 97 59.9 0.3 -9.9 322 7.2 45.3 55.0 319 +03070904.PHP 0 14.6 2161 -292 1066 549 72.4 0.0 -8.6 260 8.8 53.5 55.7 683 +03070900.BH3 0 8.3 1108 -106 2627 277 55.8 0.0 -7.9 250 8.4 55.7 68.2 568 +03070723.LVS 0 8.8 850 -179 2135 85 20.0 0.0 -6.4 329 8.7 24.3 27.9 305 +03070720.DSM 0 18.0 4261 -35 1012 20 39.2 0.6 -9.9 262 8.0 13.2 34.7 79 +03070719.LVS 0 9.9 1337 -68 1800 12 22.3 0.0 -7.2 336 8.0 27.0 21.0 98 +03070600.VTN 0 11.6 1572 -201 1584 157 52.8 0.0 -9.5 273 8.2 30.3 50.1 293 +03070521.RAP 0 8.7 803 -208 2327 67 22.6 0.0 -11.2 272 8.5 6.7 33.0 46 +03070521.P#7 0 10.3 1147 -137 2084 84 43.4 0.0 -10.3 249 8.1 22.9 55.2 239 +03070517.BH3 0 8.9 1171 -147 2263 -14 27.2 0.0 -12.5 293 9.1 15.8 39.6 51 +03070305.GDV 0 9.1 634 -206 1972 120 22.6 0.0 -13.9 250 8.7 30.3 58.1 255 +03063018.AUG 0 11.8 1327 -56 1152 60 42.9 0.5 -12.3 267 5.3 24.4 72.0 118 +03081800.BH5 0 9.0 725 -5 2392 -33 27.4 0.0 -9.3 180 7.6 12.2 31.3 76 +03081322.XRW 0 16.6 1031 -16 519 88 21.6 0.0 -6.2 187 5.5 23.7 39.1 164 +03081202.SEP 0 12.7 373 -104 1300 -113 55.9 -0.2 -8.4 345 6.8 38.0 68.0 -12 +03081200.FWD 0 12.2 1050 -51 2135 -30 50.2 0.0 -8.8 339 6.7 35.0 52.7 68 +03081023.P#9 0 13.9 1702 0 1195 30 41.7 0.3 -9.2 346 6.8 25.8 56.8 104 +03080902.P#C 0 15.5 3216 -71 1472 8 27.4 0.1 -6.4 277 7.9 17.3 40.8 199 +03080900.MIB 0 15.0 3325 -48 1477 39 33.2 0.4 -9.0 291 7.7 10.7 43.9 102 +03080900.P#C 0 14.4 3127 -1 1826 10 25.0 0.0 -5.8 262 7.5 12.2 42.3 64 +03080622.GLD 0 12.9 3132 -2 2338 21 28.1 0.0 -7.1 306 8.2 14.7 32.7 115 +03080601.CNU 0 15.8 2262 -28 1629 -18 34.6 -0.1 -5.1 317 6.6 25.1 42.1 49 +03080600.SUX 0 15.5 1945 -3 996 54 38.2 0.7 -8.6 321 7.0 35.9 44.6 171 +03080521.TOP 0 16.0 2857 -24 1592 -7 30.8 0.0 -6.8 308 6.3 19.6 40.9 101 +03080520.DAN 0 15.0 2224 -8 858 8 18.6 0.0 -10.1 275 6.4 27.6 30.4 121 +03080422.P#R 0 15.1 1771 -64 1131 59 51.1 0.7 -8.5 326 6.5 23.7 72.7 144 +03080401.BVX 0 16.9 2856 -38 1072 96 33.8 1.4 -8.7 308 6.7 18.2 47.9 100 +03080202.LUS 0 9.3 520 -170 1828 -21 47.7 0.0 -8.2 291 7.9 30.7 60.7 11 +03080123.CRL 0 13.5 2544 -8 1131 18 35.3 0.2 -12.9 299 7.9 26.6 36.1 109 +03080103.MCW 0 11.0 914 -111 1515 8 24.1 0.0 -12.2 281 7.0 26.6 47.8 60 +03073123.C31 0 8.6 251 -238 2988 79 50.4 0.0 -8.0 311 8.0 29.8 74.4 268 +03073120.TVL 0 10.6 1275 -24 1488 33 34.5 0.1 -7.4 90 7.8 32.3 17.1 170 +03072700.IWD 0 15.1 1598 -19 1386 149 42.6 1.0 -6.1 276 5.9 27.7 60.4 150 +03071802.BH1 0 13.9 2073 -132 1543 52 64.4 0.2 -6.9 291 7.8 47.0 77.9 171 +03071721.RAP 0 14.6 3713 -127 1972 107 39.2 0.0 -6.2 280 8.5 31.5 54.8 181 +03071320.MSL 0 16.4 2839 -21 1060 37 23.4 0.0 -9.3 310 7.1 4.1 36.8 35 +03071320.DIK 0 9.2 2113 -26 3189 -19 27.9 0.0 -9.3 266 9.0 11.0 36.6 31 +04040721.P#U 0 11.2 1509 -10 1060 103 47.1 1.2 -15.7 268 6.4 35.8 60.8 191 +04040702.SPS 0 8.6 230 -53 980 110 36.0 0.2 -17.3 236 6.3 19.0 53.3 110 +04040700.FTW 0 10.4 641 -8 948 43 57.7 0.3 -14.3 228 6.4 22.9 60.1 83 +04040422.LRD 0 13.8 2148 -1 827 171 49.4 3.0 -12.9 244 7.0 31.5 38.8 217 +04040421.ALI 0 13.2 1124 -3 718 10 40.8 0.1 -13.2 238 7.0 18.0 35.9 100 +04032701.DHT 0 9.5 1004 -128 1142 153 30.2 0.3 -13.4 233 8.2 31.2 63.3 235 +04032623.RAP 0 8.7 1651 -52 1568 172 42.5 0.9 -15.5 205 8.0 26.0 46.8 264 +04031802.FSM 0 8.0 442 -99 1939 211 48.0 0.0 -17.1 278 7.5 37.8 72.5 338 +04031800.P#P 0 9.4 1357 -30 1585 127 45.0 0.5 -17.4 288 7.7 34.4 66.4 269 +04030121.ORD 0 7.2 534 -1 908 208 58.9 1.1 -23.3 222 6.6 37.3 72.6 297 +04030120.RFD 0 6.8 505 -7 892 172 55.3 0.8 -24.3 220 6.8 34.8 71.1 256 +04022416.MCO 0 13.1 534 -37 687 121 47.0 0.5 -10.8 255 5.0 28.8 81.9 156 +04022407.G#5 0 10.5 962 -124 801 -16 47.4 -0.1 -18.2 218 7.7 31.4 83.7 14 +04022316.MSY 0 11.3 0 -9999 417 436 51.3 0.0 -11.2 240 6.1 44.9 86.2 531 +04020601.BTR 0 11.7 57 -172 540 186 69.9 0.0 -13.3 214 7.0 48.1 87.1 199 +04020514.LFT 0 11.1 165 -244 1109 583 49.0 0.0 -11.7 217 6.5 46.0 63.5 611 +04020512.LCH 0 13.6 1421 -64 497 282 49.1 3.0 -12.5 222 6.8 41.7 68.1 319 +04011921.VRB 0 10.3 196 -20 878 -16 82.2 0.0 -14.0 242 5.1 46.9 123.3 207 +03112718.RUE 0 10.5 681 0 396 4 92.3 0.0 -20.1 238 7.0 35.8 100.8 153 +03110923.SAC 0 6.9 156 -14 892 38 24.7 0.0 -25.3 234 7.5 14.4 91.8 77 +03102818.CTY 0 16.5 1074 -53 594 181 37.6 1.2 -7.8 217 6.3 23.6 51.5 193 +03100822.VAD 0 14.1 1355 -7 765 -4 27.1 0.0 -11.2 277 6.4 13.9 52.0 68 +03092718.CBE 0 11.6 969 -2 1256 109 40.4 0.5 -12.3 213 6.1 33.1 58.2 137 +03092620.UIN 0 12.7 1139 -3 844 177 50.2 1.7 -14.6 266 7.9 42.7 77.1 266 +03092619.BRL 0 11.1 906 -34 824 125 50.2 1.0 -14.9 256 6.9 40.9 76.6 149 +03091200.MRF 0 9.8 747 -2 1645 9 36.3 0.0 -6.8 276 6.2 25.5 49.1 163 +03090900.MAF 0 9.9 1214 -1 2565 13 32.3 0.0 -8.4 313 7.4 22.4 35.6 163 +03083123.HUF 0 14.8 27 -163 471 268 39.8 0.0 -6.8 243 6.3 41.6 43.2 340 +03082601.P#4 0 12.9 980 -231 1606 140 42.5 0.0 -9.4 277 7.1 39.4 44.3 283 +03082600.ABR 0 14.2 3471 -76 1925 104 37.8 0.1 -11.4 289 8.6 27.8 43.9 143 +03082221.LOL 0 9.6 944 -94 1467 89 64.9 0.3 -12.3 188 8.3 46.4 77.0 299 +03082119.APX 0 14.4 2077 -120 1359 80 36.1 0.3 -8.3 255 7.1 34.1 35.4 132 +03082100.DLH 0 16.1 2503 -11 1009 166 39.5 2.7 -8.1 226 6.2 24.3 46.3 201 +04051501.PUB 0 3.9 204 -85 2585 153 55.2 0.0 -18.2 268 8.8 42.0 78.8 355 +04051423.COS 0 4.6 230 -87 1664 52 57.1 0.0 -18.0 274 8.2 45.2 68.4 179 +04051300.HBR 0 14.0 4148 -28 1710 172 41.2 1.4 -11.1 244 7.8 44.0 46.5 333 +04051100.LUS 0 8.3 917 -69 1429 204 53.5 0.8 -11.5 237 7.4 28.1 44.2 323 +04050923.CVS 0 5.9 554 -61 3040 -32 23.7 0.0 -12.6 309 9.6 17.1 15.5 78 +04050921.STC 0 9.9 1302 -52 1737 185 49.7 0.5 -14.2 264 7.5 46.1 49.8 400 +04050900.P#A 0 13.8 2438 -42 1008 193 29.0 2.3 -12.7 278 7.7 19.9 36.2 251 +04050822.BH3 0 5.3 996 -6 3054 49 48.0 0.0 -15.0 280 9.6 8.9 60.8 58 +04050522.RIC 0 8.3 824 -38 1493 133 43.8 0.4 -20.4 310 7.1 34.9 60.9 251 +04050101.FWD 0 13.9 2471 -39 907 158 44.9 2.9 -14.8 225 8.3 23.0 58.2 185 +04043021.C12 0 13.3 2483 -8 1029 37 45.1 0.7 -14.1 236 7.9 32.8 46.0 48 +04043020.DYS 0 14.1 2950 -10 638 71 52.3 1.8 -14.3 236 7.8 34.1 51.0 143 +04043018.ABI 0 12.0 2372 -1 1211 -3 32.6 0.0 -13.6 230 7.7 22.8 40.3 -22 +04042920.MLU 0 12.9 972 0 744 72 46.0 0.5 -14.5 232 6.6 29.2 45.8 176 +04042821.G#2 0 10.1 747 -3 1175 139 56.7 0.8 -14.7 252 7.4 32.3 53.8 179 +04042521.CDS 0 7.1 679 -5 2042 20 45.4 0.0 -17.7 276 7.7 27.7 76.8 88 +04042300.SGF 0 9.8 113 -134 794 263 69.4 0.1 -15.2 267 7.5 51.1 79.0 572 +04042300.P#P 0 14.6 2114 -9 448 155 49.9 2.7 -13.6 245 7.2 26.3 46.7 258 +04042223.C12 0 12.6 1615 -11 1173 56 54.8 0.7 -10.8 266 6.6 36.5 68.7 191 +04042222.UMN 0 10.5 412 -29 663 220 60.2 0.9 -17.5 254 8.2 45.7 67.6 357 +04042221.C34 0 11.2 1504 -22 1170 72 53.8 0.8 -15.5 265 7.8 38.9 55.3 252 +04042200.ADM 0 11.7 1347 -25 1310 194 51.9 1.6 -13.2 269 6.8 28.4 68.1 339 +04042122.C12 0 11.5 1550 -3 1449 83 53.3 0.6 -13.2 261 6.6 30.3 65.8 168 +04041921.HOB 0 11.3 2173 -1 1395 86 53.9 1.0 -10.9 235 6.7 32.7 83.0 143 +04041801.MFD 0 10.8 1224 -65 1060 185 23.7 0.0 -16.5 288 8.0 29.7 50.0 245 +04041723.MFD 0 11.9 2519 -15 1046 104 26.5 1.1 -15.5 303 7.2 29.2 37.6 184 +04041105.MFE 0 15.8 2222 -37 402 26 39.9 0.4 -11.6 248 7.5 2.1 69.3 23 +04041019.ILM 0 9.2 180 -45 1165 111 41.2 0.1 -16.1 267 6.0 29.7 69.5 345 +04041001.PRX 0 8.8 516 -75 1780 210 42.3 0.1 -14.1 270 6.7 37.6 59.1 314 +04040818.DAB 0 13.2 1058 -19 810 73 56.2 0.7 -15.8 264 7.7 33.6 94.9 186 +04040815.DHN 0 11.9 877 -2 522 78 53.9 0.6 -15.8 257 6.5 30.9 87.6 111 +04071305.CHE 0 17.6 3151 -107 771 181 49.7 2.9 -8.9 301 7.9 29.7 60.2 300 +04070104.HBR 0 15.7 1988 -45 801 174 24.0 0.0 -8.2 259 7.0 25.9 23.7 276 +04062402.FNT 0 10.0 608 -67 1046 219 50.4 1.0 -15.3 260 6.5 32.1 72.4 270 +04062222.BIS 0 7.2 504 -14 1518 9 56.3 0.0 -18.7 301 6.3 28.7 75.6 88 +04062023.DHT 0 8.4 905 -127 2633 107 47.8 0.0 -9.3 270 8.8 36.3 67.8 192 +04061902.G#1 0 13.2 1631 -27 1122 144 35.1 1.2 -8.6 284 7.3 37.4 58.3 408 +04061900.HDN 0 6.4 316 -26 1668 -40 51.4 0.0 -13.3 257 8.3 36.5 73.3 29 +04061820.FAM 0 15.9 1842 -13 923 65 31.0 0.6 -7.0 271 5.7 23.9 35.7 131 +04061800.LHX 0 12.7 2059 -86 777 206 47.3 2.5 -11.2 235 8.4 37.4 49.6 651 +04052700.CHE 0 8.9 347 -4 1255 145 31.1 0.2 -14.7 268 6.1 31.0 44.9 228 +04052623.TYS 0 14.7 1654 -44 919 199 50.1 2.8 -9.7 275 5.9 37.8 71.9 255 +04052623.OKC 0 15.9 3047 -69 1198 124 56.8 2.5 -7.9 261 6.8 24.4 82.9 79 +04052622.FSD 0 9.4 835 -34 1187 143 35.4 0.6 -17.3 267 7.3 33.1 47.2 271 +04052621.CSV 0 14.4 1608 -15 870 176 59.8 2.8 -9.3 268 6.2 35.9 58.7 237 +04052621.C33 0 13.6 2405 -23 1847 104 55.5 0.4 -9.6 256 7.5 30.4 80.9 72 +04052603.CAI 0 15.4 1463 -14 609 129 47.0 1.5 -11.0 277 7.2 31.6 59.9 153 +04052402.P#7 0 7.8 400 -213 1358 246 41.2 0.0 -15.5 247 8.2 35.3 62.4 412 +04052400.STL 0 16.1 3087 -3 604 162 45.4 3.8 -12.7 253 8.0 28.6 58.7 195 +04052400.CDR 0 5.8 117 -187 2181 178 56.7 0.0 -14.5 256 8.0 30.8 66.1 338 +04052323.BGM 0 14.6 2244 0 781 156 41.1 2.4 -11.9 272 7.8 30.1 44.7 249 +04052320.PIN 0 12.0 1300 -3 1376 120 33.7 0.6 -11.8 267 6.7 36.9 31.3 199 +04052300.ELM 0 12.4 1089 -41 1163 226 43.8 1.5 -9.7 281 5.7 46.2 46.0 359 +04052201.G#1 0 12.3 2404 -84 1771 261 33.8 0.6 -8.2 246 7.9 36.9 50.5 385 +04052201.SNY 0 7.0 484 -214 2287 78 62.8 0.0 -12.7 227 9.0 42.4 81.2 214 +04052123.HYS 0 12.7 3460 -27 2109 75 39.7 0.0 -10.8 236 8.6 29.0 45.1 157 +04052100.FKL 0 14.7 2440 -9 772 269 42.7 4.7 -10.6 299 6.4 28.6 49.2 346 +04052100.DEN 0 9.0 1781 -3 1934 76 49.3 0.1 -11.5 231 8.4 30.6 60.1 225 +04051723.DSM 0 13.3 1669 -24 854 23 36.8 0.2 -11.5 251 6.5 26.2 51.1 132 +04051723.PUB 0 9.2 546 -83 1212 147 55.3 0.5 -11.9 251 7.8 44.9 72.1 222 +04051601.9V9 0 7.5 608 -65 1315 120 61.8 0.5 -19.3 286 7.0 35.7 85.8 189 +04051521.PIR 0 6.8 724 -30 1545 91 60.8 0.3 -21.3 289 7.3 36.7 70.4 224 +04051520.Y26 0 7.0 965 -32 1206 89 60.4 0.7 -23.7 287 7.8 40.0 67.1 217 +99053023.P07 0 12.1 2286 -113 1897 53 39.7 0.1 -8.5 315 7.8 22.5 45.3 165 +99052800.FTW 0 12.2 1104 -4 954 41 33.8 0.3 -12.6 256 6.8 24.6 36.5 103 +99052503.FST 0 10.3 1116 -185 1882 122 53.5 0.0 -9.7 271 8.3 44.1 67.4 157 +99052502.INK 0 11.4 1576 -110 1665 119 56.3 0.4 -10.0 270 7.8 39.9 60.4 191 +99052420.ABQ 0 8.1 781 -71 1338 71 34.2 0.2 -13.9 212 8.5 24.7 44.7 132 +99052220.TUL 0 16.0 3471 -3 869 32 31.1 0.6 -12.1 269 7.3 20.4 36.1 91 +99052200.SNY 0 8.7 1439 -7 1674 53 48.7 0.2 -12.8 266 7.7 28.2 65.4 147 +99052123.RAP 0 8.6 1729 -70 1711 131 43.6 0.4 -16.2 256 8.7 23.0 67.0 178 +99052001.MOT 0 8.0 903 -1 1506 2 27.5 0.0 -17.4 240 7.0 14.4 59.7 47 +99051700.LAA 0 7.5 817 -141 1731 124 65.0 0.1 -15.0 234 8.6 43.8 78.0 361 +99050519.MVN 0 12.9 1777 -10 790 108 57.7 1.8 -14.1 237 6.6 41.0 44.8 194 +99043001.INK 0 12.4 2333 -60 967 95 52.8 1.8 -11.4 237 8.1 32.9 71.8 280 +99042900.BIL 0 6.5 60 -143 1109 133 46.8 0.0 -17.8 182 7.5 39.8 84.0 324 +99042800.EVV 0 9.5 305 -3 1146 22 26.2 0.0 -15.6 225 6.4 18.9 38.1 56 +99042701.OKC 0 8.9 873 -24 1056 47 27.4 0.2 -20.3 275 7.9 23.0 44.2 88 +99042322.LOZ 0 12.8 1995 -5 979 77 37.3 1.0 -11.6 287 6.9 30.4 44.4 71 +99042319.EZF 0 10.2 1142 -51 1722 106 57.2 0.3 -14.2 276 6.9 38.0 68.5 172 +99042203.GOK 0 12.3 2307 -132 894 364 53.9 3.4 -16.0 254 8.5 31.2 54.6 401 +99042123.BMI 0 11.6 1687 -24 839 261 53.4 3.9 -16.4 252 7.8 45.9 57.4 408 +04083002.GCK 0 10.7 1029 -108 1687 204 32.5 0.2 -8.1 315 6.8 29.0 26.2 278 +04083000.SUX 0 10.7 779 -7 1471 199 42.6 0.6 -12.9 289 6.7 36.3 45.9 296 +04082622.C23 0 10.2 983 -43 1349 25 41.1 0.1 -15.8 254 7.2 17.8 70.6 46 +04082621.MCW 0 15.4 2478 -27 1087 26 46.1 0.5 -9.9 239 7.0 37.9 68.9 181 +04082522.FSM 0 18.2 3688 -45 1240 101 33.9 1.6 -6.7 244 6.2 16.5 39.6 113 +04082522.BIS 0 10.2 2077 -41 1811 74 38.1 0.2 -15.2 230 8.4 22.8 43.2 103 +04082503.MHK 0 19.2 4217 -59 627 274 31.2 5.7 -7.9 224 7.5 31.4 51.8 392 +04082501.MHK 0 18.9 4262 -45 721 150 29.9 3.2 -7.4 240 7.1 28.3 50.9 241 +04082020.BGM 0 14.6 1425 -21 712 95 53.2 1.2 -9.5 238 5.9 38.1 53.7 106 +04082018.ORH 0 15.1 2067 -19 1051 47 40.0 0.6 -8.9 256 6.1 29.0 39.9 132 +04081918.LBE 0 14.4 1183 -7 597 105 39.9 0.8 -8.7 270 5.6 40.5 44.4 152 +04081901.PIA 0 13.9 1294 -107 1203 377 40.4 1.6 -7.9 277 5.6 39.8 43.3 465 +04081822.BRL 0 15.3 2600 -41 963 377 41.3 6.8 -9.4 276 6.6 42.5 42.9 508 +04081421.LIC 0 9.9 1288 -66 1242 15 32.2 0.1 -10.2 333 7.8 25.5 42.7 65 +04080321.OAX 0 18.7 4816 -44 1389 92 36.9 1.7 -5.9 259 7.0 23.6 38.1 189 +04080202.Y26 0 15.4 3187 -169 1209 336 55.2 1.6 -9.3 291 8.1 28.5 83.2 385 +04080123.Y22 0 8.5 1290 -28 3011 -1 45.9 0.0 -10.5 298 8.6 30.2 71.2 158 +04073101.GAG 0 14.4 2006 -116 1300 54 42.0 0.3 -6.2 308 6.7 14.8 44.7 98 +04072102.FSD 0 19.9 4659 -49 869 261 26.0 5.3 -5.9 278 7.3 28.0 37.4 426 +99081101.HLC 0 17.4 3928 -33 1289 71 38.3 1.3 -5.1 243 6.7 21.0 34.5 152 +99081023.AKO 0 14.9 2910 -32 1271 87 33.9 1.0 -6.5 232 7.6 22.7 45.7 163 +99080901.DIK 0 12.0 2409 -98 1891 48 58.5 0.1 -10.8 267 8.5 29.7 54.5 94 +99080822.2WX 0 10.3 1972 -32 2526 39 44.1 0.0 -8.8 262 8.3 27.2 41.0 117 +99080702.RAP 0 12.7 921 -36 1200 35 33.6 0.1 -6.6 268 6.3 20.0 48.7 72 +99080301.LWT 0 8.5 449 -155 1772 53 48.3 0.0 -10.3 278 7.8 29.4 70.4 131 +99073100.JKL 0 15.8 3605 -30 1833 89 22.3 0.0 -5.9 355 6.7 22.8 19.6 158 +99073020.IPT 0 15.0 2685 -12 1238 32 34.0 0.4 -8.7 319 6.3 16.0 50.7 72 +99072922.FVX 0 14.5 1431 -13 1556 81 34.3 0.3 -6.0 327 5.6 22.6 48.0 117 +99072902.XVG 0 12.7 1459 -186 1710 319 58.3 0.1 -9.5 302 7.7 41.9 73.8 381 +99072900.ADG 0 14.8 1974 -6 1415 63 37.3 0.5 -9.4 298 7.1 21.7 66.3 118 +99072420.MHT 0 14.8 1594 -17 1088 66 27.8 0.5 -9.7 275 6.5 25.2 56.1 134 +99072319.RAP 0 10.6 1320 -19 2145 52 38.7 0.0 -7.5 263 7.3 22.5 54.0 87 +99072300.FAR 0 16.2 2819 -34 1355 81 35.4 0.9 -8.5 247 7.6 27.9 55.9 137 +99071923.GDV 0 11.9 1807 -31 1654 21 41.3 0.1 -11.2 254 7.9 18.9 69.4 67 +99071302.FAR 0 12.1 1948 -48 1552 125 38.2 0.7 -12.5 297 7.2 27.2 61.0 158 +99071302.DVL 0 10.4 1453 -76 1761 69 42.5 0.1 -13.5 288 7.5 28.3 62.4 124 +99071300.OLF 0 9.2 1101 -38 2374 25 49.7 0.0 -10.3 281 7.3 26.5 65.7 106 +99071202.AIA 0 9.4 1094 -73 1844 -8 27.8 0.0 -11.3 327 8.0 26.7 47.0 79 +99070804.GDV 0 14.2 2058 -209 1364 472 61.7 0.0 -7.6 251 8.0 40.8 78.6 551 +99070421.ERY 0 19.1 3756 -61 791 95 32.9 1.8 -6.7 267 8.2 22.2 36.6 98 +99070207.SFD 0 9.5 32 -374 1535 254 82.4 0.0 -10.7 263 7.4 45.0 92.7 464 +99070103.SWO 0 18.3 2994 -18 703 229 51.1 5.8 -4.6 303 6.4 25.9 51.9 297 +99070103.GCK 0 15.2 2113 -124 873 95 73.0 1.0 -6.5 294 7.5 37.6 74.8 319 +99063023.LBF 0 9.7 291 -114 1136 0 76.3 0.0 -12.3 289 6.9 54.3 115.6 214 +99062801.BGD 0 13.8 2864 -63 2251 73 37.7 0.0 -5.0 266 8.5 22.5 43.1 130 +99062522.DIK 0 12.8 2775 -1 1732 -52 57.7 -0.4 -10.3 230 8.2 35.4 58.9 132 +99062501.VTN 0 11.7 1035 -41 1545 55 41.3 0.2 -8.2 282 6.6 23.6 41.7 120 +99062400.BGD 0 12.2 2544 -17 2195 10 13.6 0.0 -6.5 288 7.8 22.6 35.1 91 +99060601.P07 0 11.8 1543 -130 1771 -31 45.2 0.0 -8.7 243 7.9 18.4 58.3 32 +99060523.LBF 0 10.7 2070 -28 1957 91 62.6 0.1 -12.9 197 8.5 25.9 90.4 131 +99060302.IML 0 10.0 869 -198 1657 237 43.7 0.0 -11.0 225 8.5 39.8 66.5 421 +99060202.GCC 0 6.3 226 -83 1883 18 41.3 0.0 -15.4 262 8.3 26.0 42.6 126 +99060200.FTW 0 16.8 3982 -31 1338 62 35.0 1.0 -11.1 275 8.5 25.7 60.3 144 +99053102.MHK 0 11.6 903 -51 1360 108 32.8 0.3 -11.3 270 6.9 30.0 24.5 179 +99120303.ADM 0 9.7 1355 -50 974 250 42.8 2.4 -22.1 217 8.5 35.9 65.7 332 +99112303.RBD 0 13.2 1077 -16 789 138 48.1 1.2 -13.6 235 6.4 25.1 60.9 176 +99112302.HBR 0 8.7 124 -124 660 53 47.7 0.0 -17.1 219 6.7 41.5 75.7 132 +99100823.FSI 0 10.1 649 -14 1313 5 36.2 0.0 -13.6 219 6.3 14.3 67.9 56 +99092600.GKY 0 13.1 1483 -15 1429 43 28.0 0.2 -9.4 340 6.3 21.5 55.3 182 +99092522.D07 0 6.4 163 -199 2219 136 65.7 0.0 -15.8 242 8.3 31.8 105.7 206 +99092004.RRC 0 11.2 292 -200 1044 70 37.2 0.0 -11.2 270 6.7 28.8 60.6 216 +99092000.OKC 0 11.1 1068 -42 1896 56 39.5 0.0 -10.1 290 6.8 29.0 60.9 190 +99091923.CSM 0 11.9 1645 -3 1885 18 41.3 0.0 -9.8 280 7.0 27.5 64.0 178 +99091920.CGZ 0 11.2 802 -16 1905 19 39.1 0.0 -8.7 245 6.5 16.0 60.3 61 +99091207.SLP 0 15.6 2094 -69 507 92 45.4 1.3 -10.8 271 8.2 16.8 55.8 121 +99091200.LBL 0 11.9 1180 -121 1590 31 43.2 0.1 -9.0 275 7.8 25.7 65.5 84 +99091122.HLC 0 12.4 1517 -36 1221 59 37.8 0.4 -11.3 253 7.4 21.0 66.2 94 +99091101.AFW 0 13.1 1250 -24 1970 21 29.5 0.0 -7.4 297 6.2 21.7 52.8 139 +99082300.ABR 0 11.7 1432 -38 1851 61 40.1 0.1 -9.6 289 6.9 20.3 45.5 101 +99082104.HON 0 13.3 1187 -244 1155 197 38.1 0.0 -8.9 281 7.4 31.4 54.2 238 +99082100.LBF 0 9.8 20 -311 1794 44 34.8 0.0 -7.8 321 7.1 19.7 46.1 126 +99082022.DIK 0 11.7 1445 -10 1669 21 33.6 0.1 -7.8 298 6.3 17.8 36.0 58 +99081922.MLS 0 7.1 393 -105 3278 19 33.8 0.0 -10.0 244 8.6 22.0 37.3 120 +99081800.RRT 0 11.4 1524 -26 847 90 49.2 1.1 -17.7 268 7.3 32.2 62.0 126 +99081400.ALB 0 16.8 1843 -4 701 196 38.5 2.3 -6.3 249 5.8 29.9 48.4 252 +99081202.GCC 0 10.6 877 -99 1162 63 34.5 0.2 -10.2 218 7.5 17.7 54.6 98 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/basics.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/basics.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/basics.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/basics.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/decoder.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/decoder.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/decoder.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/decoder.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_acars_times.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_acars_times.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_gem_times.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_gem_times.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_mdl_time.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_mdl_time.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_pfc_snd.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/get_pfc_snd.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapdraw.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapdraw.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapmark.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapmark.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapw.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/mapw.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/nsharp.mk b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/nsharp.mk old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/readdata.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/readdata.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/readdata.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/readdata.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/sharp95.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/sharp95.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/skparams.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/skparams.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/skparams.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/skparams.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/sndata.f b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/sndata.f old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/so_new.csh b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/so_new.csh old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/thermo.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/thermo.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/thermo.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/thermo.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/winds.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/winds.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/winds.h b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/winds.h old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid1.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid1.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid2.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid2.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid3.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid3.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid4.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid4.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid5.c b/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/xwvid5.c old mode 100644 new mode 100755 diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/NsharpConstants.java b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/NsharpConstants.java index 9af9a2a1e1..37dc254ac4 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/NsharpConstants.java +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/NsharpConstants.java @@ -18,8 +18,8 @@ package gov.noaa.nws.ncep.ui.nsharp; * @author Chin Chen * @version 1.0 */ -//import gov.noaa.nws.ncep.viz.localization.NcPathManager; -//import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; +import gov.noaa.nws.ncep.viz.localization.NcPathManager; +import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; import java.text.DecimalFormat; import javax.measure.converter.UnitConverter; @@ -376,12 +376,12 @@ public class NsharpConstants { public static int filelistHeight = 100; public static int dsiplayPanelSize = 2; -// public static String getNlistFile() { -// return NcPathManager.getInstance().getStaticFile( -// NcPathConstants.NSHARP_NLIST_FILE ).getAbsolutePath(); -// } -// public static String getSupFile() { -// return NcPathManager.getInstance().getStaticFile( -// NcPathConstants.NSHARP_SUP_FILE ).getAbsolutePath(); -// } + public static String getNlistFile() { + return NcPathManager.getInstance().getStaticFile( + NcPathConstants.NSHARP_NLIST_FILE ).getAbsolutePath(); + } + public static String getSupFile() { + return NcPathManager.getInstance().getStaticFile( + NcPathConstants.NSHARP_SUP_FILE ).getAbsolutePath(); + } } diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapMouseHandler.java b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapMouseHandler.java index a77ffc8ac2..b40bc4566a 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapMouseHandler.java +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapMouseHandler.java @@ -22,6 +22,7 @@ package gov.noaa.nws.ncep.ui.nsharp.maprsc; import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer; import gov.noaa.nws.ncep.ui.nsharp.NsharpStationInfo; +import gov.noaa.nws.ncep.ui.nsharp.SurfaceStationPointData; import gov.noaa.nws.ncep.ui.nsharp.menu.ModelSoundingDialogContents; import gov.noaa.nws.ncep.ui.nsharp.menu.NsharpLoadDialog; import gov.noaa.nws.ncep.ui.nsharp.skewt.NsharpSkewTDisplay; @@ -29,7 +30,6 @@ import gov.noaa.nws.ncep.ui.nsharp.skewt.NsharpSkewTEditor; import gov.noaa.nws.ncep.ui.nsharp.skewt.rsc.NsharpSkewTResource; import gov.noaa.nws.ncep.ui.pgen.tools.InputHandlerDefaultImpl; import gov.noaa.nws.ncep.viz.ui.display.NCMapEditor; -import gov.noaa.nws.ncep.viz.ui.locator.resource.SurfaceStationPointData; import java.util.ArrayList; import java.util.HashMap; diff --git a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapResource.java b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapResource.java index 554ed9e3ca..ff4950a554 100644 --- a/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapResource.java +++ b/ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/maprsc/NsharpMapResource.java @@ -44,8 +44,8 @@ import com.raytheon.uf.viz.core.rsc.ResourceList.RemoveListener; import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.viz.ui.EditorUtil; -//import gov.noaa.nws.ncep.viz.localization.NcPathManager; -//import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; +import gov.noaa.nws.ncep.viz.localization.NcPathManager; +import gov.noaa.nws.ncep.viz.localization.NcPathManager.NcPathConstants; import gov.noaa.nws.ncep.viz.resources.manager.RbdBundle; import gov.noaa.nws.ncep.viz.resources.manager.ResourceBndlLoader; @@ -124,8 +124,8 @@ public class NsharpMapResource extends AbstractVizResource + + ++ +@@ -209,7 +219,7 @@ id="gov.noaa.nws.ncep.ui.pgen.fileManage" name="Manage Product File"> - @@ -222,16 +232,16 @@ name="Start PGEN Layering"> + id="gov.noaa.nws.ncep.ui.pgen.activityManage" + name="Manage PGEN Activities"> + id="gov.noaa.nws.ncep.ui.pgen.activityProduct" + name="Launch PGEN Activities"> + id="gov.noaa.nws.ncep.ui.pgen.activityConfigure" + name="Configure PGEN Acitivities"> - - + + @@ -290,6 +304,10 @@ class="gov.noaa.nws.ncep.ui.pgen.tools.PgenMultiPointDrawingTool" commandId="gov.noaa.nws.ncep.ui.pgen.rsc.PgenMultiDraw"> + + @@ -440,11 +458,11 @@ + commandId="gov.noaa.nws.ncep.ui.pgen.activityManage"> + commandId="gov.noaa.nws.ncep.ui.pgen.activityConfigure"> + + @@ -540,16 +562,17 @@ name="Open" label="Open MetObject File" commandId="gov.noaa.nws.ncep.ui.pgen.fileManage" + alwaysVisible="true" icon="icons/open.gif" /> + id="gov.noaa.nws.ncep.ui.pgen.PGEN.activityLaunch"> -- ++ locationURI="menu:gov.noaa.nws.ncep.ui.pgen.PGEN.activityLaunch"> + id="gov.noaa.nws.ncep.ui.pgen.productManage.activityLauncher"> @@ -583,8 +606,9 @@ --> + + icon="icons/distance.gif" /> + + @@ -2611,12 +2647,7 @@ className="Track" commandId="gov.noaa.nws.ncep.ui.pgen.rsc.PgenMultiDraw" icon="icons/trkstorm.gif" /> - + + icon="icons/textturb.gif" /> +