diff --git a/.Rbuildignore b/.Rbuildignore index b09480d4..c38c689f 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -8,9 +8,12 @@ ^travis.yml$ ^FishNCo$ ^\.github$ +^\.vscode$ ^.DS_Store$ ^docs$ ^doc$ ^Meta$ package_overview.Rmd ^.pptx$ +^_pkgdown\.yml$ +^pkgdown$ diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 00000000..bfc9f4db --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,49 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + release: + types: [published] + workflow_dispatch: + +name: pkgdown.yaml + +permissions: read-all + +jobs: + pkgdown: + runs-on: ubuntu-latest + # Only restrict concurrency for non-PR jobs + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::pkgdown, local::. + needs: website + + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + shell: Rscript {0} + + - name: Deploy to GitHub pages 🚀 + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@v4.5.0 + with: + clean: false + branch: gh-pages + folder: docs diff --git a/.gitignore b/.gitignore index 1767c054..37912496 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,11 @@ FishNCo/testData/RegionalTestData/* /doc/ /Meta/ +<<<<<<< Updated upstream +.vscode/ +docs +======= + +# Data to develop fun +/NLdata/ +>>>>>>> Stashed changes diff --git a/DESCRIPTION b/DESCRIPTION index c0f09e31..ae242e48 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: RDBEScore Type: Package Title: Functions for the ICES Regional Database and Estimation System (RDBES) -Version: 0.3.3 +Version: 0.3.4 Author: c( person(given = "David", family = "Currie", @@ -106,8 +106,7 @@ Maintainer: Colin Millar Description: The RDBEScore package provides functions to import and work with fisheries data downloaded from the ICES RDBES database. It also contains functions to perform estimation analysis using the resulting objects. -URL: https://github.com/ices-tools-dev/RDBEScore, - https://rdbes.ices.dk +URL: https://github.com/ices-tools-dev/RDBEScore, https://rdbes.ices.dk, https://ices-tools-dev.github.io/RDBEScore/ License: GPL-3 + file LICENSE Encoding: UTF-8 LazyData: true diff --git a/NEWS.md b/NEWS.md index 92eb7412..2752c99e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +# RDBEScore 0.3.4 + +- Defaults: `createRDBESDataObject()` now runs validation by default +- Estimation object: added `incDesignVariables` to `createRDBESEstObject()` to optionally drop design variables; convert character columns to factors to reduce size. +- SA sub-sampling: replaced recursive logic with a self-join + lookup (`prepareSubSampleLevelLookup`), with warnings for missing or non‑unique matches. +- Memory: added frequent `gc()` calls across estimation/join steps for large data. +- Joins: improved field selection for hierarchy 7 in `procRDBESEstObjUppHier()`; clarified logic for selecting `VDid` fields. +- Docs/CI: added pkgdown GitHub Actions workflow; improved function docs (params/returns); updated `.Rbuildignore` and package URLs. +- Vignettes: updated estimation workflow and sub-sampling sections; added memory tips, minimal examples, and brief benchmarking notes. +- Performance: `filterRDBESDataObject()` now uses `data.table` for faster filtering. + # RDBEScore 0.3.3 * Update to work with with the 2025 RDBES data call format diff --git a/R/createRDBESDataObject.R b/R/createRDBESDataObject.R index cc0fefc7..74c8a7bf 100644 --- a/R/createRDBESDataObject.R +++ b/R/createRDBESDataObject.R @@ -57,7 +57,7 @@ #' @param verbose (Optional) Set to TRUE if you want informative text printed #' out, or FALSE if you don't. The default is FALSE. #' @param ... parameters passed to validateRDBESDataObject -#' if input is list of data frames e.g.`strict=FALSE` +#' e.g.`strict=FALSE` #' @importFrom utils file_test #' #' @return A RDBESDataObject @@ -106,7 +106,7 @@ createRDBESDataObject <- function(input = NULL, if(import.type == "csv") output <- importRDBESDataCSV(rdbesExtractPath = input, listOfFileNames = listOfFileNames, - castToCorrectDataTypes = castToCorrectDataTypes) + castToCorrectDataTypes = castToCorrectDataTypes, ...) if(import.type == "list.of.dfs" || import.type == "list.of.dts") { @@ -121,5 +121,6 @@ createRDBESDataObject <- function(input = NULL, output <- newRDBESDataObject() } + return(output) } diff --git a/R/createRDBESEstObject.R b/R/createRDBESEstObject.R index 618d6c05..4bdd7597 100644 --- a/R/createRDBESEstObject.R +++ b/R/createRDBESEstObject.R @@ -1,31 +1,9 @@ -#' Creates an rdbesEStObject from prepared RDBES data +#' Creates an RDBESEstObject from RDBES data #' -#' @param rdbesPrepObject The prepared RDBES object that should be used to -#' create an estimation object -#' @param hierarchyToUse (Optional) The upper RDBES hierarchy to use. An integer value -#' between 1 and 13. If NULL, the hierarchy will be determined from the DE table -#' -#' @param stopTable (Optional) The table to stop at in the RDBES hierarchy. -#' If specified, only tables up to and including this table will be included in the -#' resulting RDBESEstObject. The default is NULL, which means all tables in the hierarchy -#' will be included. -#' @param verbose (Optional) Set to TRUE if you want informative text printed -#' out, or FALSE if you don't. The default is FALSE. -#' @param strict (Optional) This function validates its input data - should -#' the validation be strict? The default is TRUE. -#' -#' @return An object of class RDBESEstObject ready for use in design based -#' estimation -#' @export -#' -#' @examples -#' #Creates an rdbesEStObject from prepared RDBES data -#' myH1EstObj <- createRDBESEstObject(H1Example, 1, "SA") #' -#' -#' @param rdbesPrepObject The prepared RDBES object that should be used to +#' @param rdbesPrepObject The RDBES object that should be used to #' create an estimation object -#' @param hierarchyToUse The upper RDBES hiearchy to use +#' @param hierarchyToUse The upper RDBES hierarchy to use #' #' @param stopTable (Optional) The table to stop at in the RDBES hierarchy. #' If specified, only tables up to and including this table will be included in the @@ -35,6 +13,8 @@ #' out, or FALSE if you don't. The default is FALSE. #' @param strict (Optional) This function validates its input data - should #' the validation be strict? The default is TRUE. +#' @param incDesignVariables (Optional) Should the design variables be included? +#' The default is TRUE. #' #' @return An object of class RDBESEstObject ready for use in design based #' estimation @@ -46,9 +26,10 @@ createRDBESEstObject <- function(rdbesPrepObject, hierarchyToUse =NULL, stopTable = NULL, verbose = FALSE, - strict = TRUE) { + strict = TRUE, + incDesignVariables = TRUE) { - DEhierarchy <- summary(rdbesPrepObject)$hierarchy + DEhierarchy <- summary(rdbesPrepObject)$hierarchy if(is.null(hierarchyToUse)){ hierarchyToUse <- DEhierarchy if(length(hierarchyToUse) > 1){ @@ -77,12 +58,40 @@ createRDBESEstObject <- function(rdbesPrepObject, # Copy the input data table so we don't change the original data rdbesPrepObjectCopy <- data.table::copy(rdbesPrepObject) + # Try and make the data smaller by changing character columns to factors + # and removing the design variables if we don't need them + for (tableName in names(rdbesPrepObjectCopy)) { + dt <- rdbesPrepObjectCopy[[tableName]] + if (is.data.table(dt)) { + + # Change text columns to factors to try and reduce final RDBESEstObject size + char_cols <- names(dt)[sapply(dt, is.character)] + if (length(char_cols) > 0) { + dt[, (char_cols) := lapply(.SD, as.factor), .SDcols = char_cols] + } + # Get rid of design variables if we don't need them + if (!incDesignVariables){ + # Check for columns that are in designVariables and remove them + columns_to_remove <- + intersect(names(dt), paste(tableName,RDBEScore::designVariables,sep="")) + if (length(columns_to_remove) > 0) { + dt[, (columns_to_remove) := NULL] + } + } - # See if the user has specified a table to stop at - #take out the optional as this messes up est object creation + rdbesPrepObjectCopy[[tableName]] <- dt + + } + } + + + #take out the optional tables as this messes up est object creation targetTables <- - RDBEScore::getTablesInRDBESHierarchy(hierarchyToUse, includeOptTables = F) + RDBEScore::getTablesInRDBESHierarchy(hierarchyToUse, + includeOptTables = FALSE) + + # See if the user has specified a table to stop at if (length(is.null(stopTable)) == 1 && !is.null(stopTable)) { stopTableLoc <- which(targetTables == stopTable) @@ -91,6 +100,7 @@ createRDBESEstObject <- function(rdbesPrepObject, } } + gc() # See if we need to process the lower hieriarchy tables - this # needs to be done before any changes required due to sub-sampling if (any(targetTables %in% c("FM", "BV"))) { @@ -129,23 +139,62 @@ createRDBESEstObject <- function(rdbesPrepObject, # using the SAparentSequenceNumber if (!"SAparentID" %in% names(rdbesPrepObjectCopy[["SA"]])){ # Find the SAid for a given value of SAparSequNum - myResults <- sapply(rdbesPrepObjectCopy[["SA"]]$SAparSequNum,function(x){ - valueToReturn <- NA - if (!is.na(x)){ - valueToReturn <- - rdbesPrepObjectCopy[["SA"]][rdbesPrepObjectCopy[["SA"]]$SAseqNum == - x,] - if (nrow(valueToReturn) == 1){ - valueToReturn <- valueToReturn$SAid - } else { - warning(paste0("Could not find unique matching parent sequence ", - "number - sub-sampling has not been processed correctly")) - valueToReturn <- NA - } - } - valueToReturn - }) - rdbesPrepObjectCopy[["SA"]]$SAparentID <- myResults + # myResults <- sapply(rdbesPrepObjectCopy[["SA"]]$SAparSequNum,function(x){ + # valueToReturn <- NA + # if (!is.na(x)){ + # # TODO - I don't think we can assume that SAparSequNum is unique + # valueToReturn <- + # rdbesPrepObjectCopy[["SA"]][rdbesPrepObjectCopy[["SA"]]$SAseqNum == + # x,] + # if (nrow(valueToReturn) == 1){ + # valueToReturn <- valueToReturn$SAid + # } else { + # warning(paste0("Could not find unique matching parent sequence ", + # "number - sub-sampling has not been processed correctly")) + # valueToReturn <- NA + # } + # } + # valueToReturn + # }) + # For easier reference + SA <- rdbesPrepObjectCopy[["SA"]] + + # Self-join: child.SAparSequNum matches parent.SAseqNum, and SSid matches + # The sequence number is not unique so we also use SSid to match the child rows to parent rows + SA_with_parent <- SA[ + SA, + on = .(SAseqNum = SAparSequNum, SSid), + allow.cartesian = TRUE, + nomatch = NA + ] + + # Count matches per child row (i.SAid = child row's SAid) + match_counts <- SA_with_parent[, .(n_matches=.N), by = .(i.SAid)] + + # Warn about no match + no_match_ids <- SA[!SAid %in% match_counts$i.SAid, SAid] + if (length(no_match_ids) > 0) { + warning(paste("No parent match found for SAid(s):", paste(no_match_ids, collapse = ", "))) + } + + # Warn about non-unique matches + non_unique_ids <- match_counts[n_matches > 1, i.SAid] + if (length(non_unique_ids) > 0) { + warning(paste("Multiple parent matches found for SAid(s):", paste(non_unique_ids, collapse = ", "))) + } + + # Filter to only rows where there's exactly one match + unique_matches <- match_counts[n_matches == 1] + unique_links <- SA_with_parent[i.SAid %in% unique_matches$i.SAid] + + # Add the parent SAid to the child row as SAparentID + SA[unique_links, on = .(SAid = i.SAid), SAparentID := SAid] + + # Save back + rdbesPrepObjectCopy[["SA"]] <- SA + + #rdbesPrepObjectCopy[["SA"]]$SAparentID <- myResults + gc() } if (verbose) print("Sub-sampling: checking for SAid self-references") @@ -157,11 +206,15 @@ createRDBESEstObject <- function(rdbesPrepObject, "SAparentID" ] <- NA - subSampleLevels <- lapply(rdbesPrepObjectCopy[["SA"]][, SAid], - getSubSampleLevel, - SAdata = rdbesPrepObjectCopy[["SA"]] - ) - subSampleLevels <- do.call(rbind, subSampleLevels) + # Find the top level SAid and sampling level for each SAid + SAdata <- rdbesPrepObjectCopy[["SA"]] + # Calculate the lookup table which contains the top level SAid and sampling level for each SAid + # (much faster than the recursive "getSubSampleLevel()" function it was using before) + lookupDT <- prepareSubSampleLevelLookup(SAdata) + # Apply it + subSampleLevels <- dplyr::left_join(SAdata, lookupDT, by = "SAid") + subSampleLevels <- subSampleLevels[,c("SAid","topLevelSAid","subSampleLevel")] + rdbesPrepObjectCopy[["SA"]][, "SAtopLevelSAid"] <- subSampleLevels$topLevelSAid rdbesPrepObjectCopy[["SA"]][, "SAsubSampleLevel"] <- @@ -327,7 +380,7 @@ createRDBESEstObject <- function(rdbesPrepObject, } # Choose which VDid field to keep - to avoid confusion - vdIDFields <- names(myRDBESEstObj)[grepl("^VDid", names(myRDBESEstObj))] + vdIDFields <- names(myRDBESEstObj)[grepl("^.*VDid", names(myRDBESEstObj))] vdIDFieldToKeep <- NA if (length(vdIDFields) > 1) { # read through all the VDid fields and note the name of the first @@ -382,7 +435,7 @@ createRDBESEstObject <- function(rdbesPrepObject, procRDBESEstObjLowHier <- function(rdbesPrepObject, verbose = FALSE) { - +gc() # Check if we have any SA data - if not we'll just stop now if (length(is.null(rdbesPrepObject[["SA"]])) == 1 && is.null(rdbesPrepObject[["SA"]])) { @@ -426,6 +479,7 @@ procRDBESEstObjLowHier <- function(rdbesPrepObject, # Just BV is null fMBV <- rdbesPrepObject[["FM"]] } else { + gc() # if we have both FM and BV data - join them together fMBV <- dplyr::left_join(rdbesPrepObject[["FM"]], @@ -433,6 +487,7 @@ procRDBESEstObjLowHier <- function(rdbesPrepObject, by = "FMid", multiple = "all" ) + gc() # sort out the wrong SAid column name after the join names(fMBV)[names(fMBV) == "SAid.x"] <- "SAid" fMBV[, "SAid.y" := NULL] @@ -465,7 +520,7 @@ procRDBESEstObjLowHier <- function(rdbesPrepObject, # Just FM is null bVFM <- rdbesPrepObject[["BV"]] } else { - +gc() # if we have both FM and BV data - join them together bVFM <- dplyr::right_join(rdbesPrepObject[["FM"]], rdbesPrepObject[["BV"]], @@ -513,13 +568,13 @@ procRDBESEstObjLowHier <- function(rdbesPrepObject, #' the RDBESEstObject #' #' @param myRDBESEstObj An RDBESEstObj to add data to -#' @param rdbesPrepObject A prepared RDBESRawObj +#' @param rdbesPrepObject A prepared RDBESDataObject #' @param hierarchyToUse The hierarchy we are using #' @param targetTables The RDBES tables we are interested in #' @param i Integer to keep track of where we are in the list of tables #' @param verbose logical. Output messages to console. #' -#' @return Whoever revises this function please specify what it returns here +#' @return A partial RDBESEstObject with the data from the upper hierarchy #' procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, rdbesPrepObject, @@ -528,7 +583,7 @@ procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, targetTables, verbose = FALSE) { thisTable <- targetTables[i] - +gc() if (thisTable %in% c("FM", "BV") || (i > length(targetTables))) { # if we've got to FM or BV, or we've reached the end of the target tables # we're done so lets stop @@ -553,7 +608,11 @@ procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, grepl("^SA.+$", "SA2") if (i > 1) { - joinField <- paste0(targetTables[i - 1], "id") + if (hierarchyToUse == 7 && thisTable == 'SA') { + joinField <- paste0(targetTables[i - 2], "id") + } else{ + joinField <- paste0(targetTables[i - 1], "id") + } } else { joinField <- NA } @@ -607,7 +666,7 @@ procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, suTable <- paste0(suLevel, "table") rdbesPrepObject[[thisTable]][, suTable] <- thisTable } - + gc() # Join this new table to the existing data myRDBESEstObj <- dplyr::left_join(myRDBESEstObj, @@ -615,8 +674,15 @@ procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, by = joinField , multiple = "all" ) + # TODO Should be able to use data.table to do a left join instead of dplyr + # but the two lines below were both wrong. The first gives the columns back in the + # wrong order. The second gives the columns in the right order but doesn't + # include all the rows :-( + #myRDBESEstObj <- rdbesPrepObject[[thisTable]][myRDBESEstObj, on = joinField] + # (the order of the tables is to ensure the columns are returned in the right order) + #myRDBESEstObj <- myRDBESEstObj[rdbesPrepObject[[thisTable]], on = joinField] } - + gc() # recursively call this function procRDBESEstObjUppHier(myRDBESEstObj, rdbesPrepObject = rdbesPrepObject, @@ -632,40 +698,69 @@ procRDBESEstObjUppHier <- function(myRDBESEstObj = NULL, #' Private function to get sub-sample level and top-level SAid for SA data #' #' @param SAdata The SA data to check -#' @param SAidToCheck The SAid to check -#' @param subSampleLevel The currrent level of sampling #' -#' @return Whoever revises this function please specify what it returns here +#' @returns A data.table with SAid, topLevelSAid and subSampleLevel #' -getSubSampleLevel <- function(SAdata, SAidToCheck, subSampleLevel = 1) { - - # Fix in case the parentID is not numeric - this can be the case if it was - # empty when it was imported - if (!is.numeric(SAdata$SAparentID)) { - SAdata$SAparentID <- as.numeric(SAdata$SAparentID) - } +prepareSubSampleLevelLookup <- function(SAdata) { - dataToCheck <- SAdata[SAdata$SAid == SAidToCheck, ] + # Make a shallow copy to avoid modifying the original + SA <- data.table::copy(SAdata) - # If we have mutiple matches we probably don't have unique SAid values - if (nrow(dataToCheck) > 1) { - warning("There is a problem with non-unique SAid values- check your data") - # Just use the first match - dataToCheck <- dataToCheck[1, ] + # Ensure SAparentID is numeric + if (!is.numeric(SA$SAparentID)) { + SA[, SAparentID := as.numeric(SAparentID)] } - if (nrow(dataToCheck) == 0) { - return(NA) - } else if (is.na(dataToCheck$SAparentID)) { - return(data.frame( - "topLevelSAid" = SAidToCheck, - "subSampleLevel" = subSampleLevel - )) - } else { - return(getSubSampleLevel( - SAdata = SAdata, - SAidToCheck = dataToCheck$SAparentID, - subSampleLevel = subSampleLevel + 1 - )) + # Get rid of uneeded columns + SA <- SA[,SAid, SAparentID] + + # Build an index for fast lookup + #setkey(SA, SAid) + + # Set inital values + SA$subSampleLevel <- 1L + SA$topLevelSAid <- SA$SAid + + # Initially, unresolved rows (those with non-NA parent) + unresolved <- SA[!is.na(SA$SAparentID),] + + while (nrow(unresolved) > 0) { + + #SA_tmp <- dplyr::inner_join(unresolved, SA, by = c("SAparentID" = "SAid")) + #SA_tmp$subSampleLevel <- SA_tmp$subSampleLevel.x + 1L + #SA_tmp$topLevelSAid <- SA_tmp$SAparentID + #SA_tmp$SAparentID <- SA_tmp$SAparentID.y + # Do an inner join using data.table + SA_tmp <- SA[unresolved, on = .(SAid = SAparentID), nomatch = 0, + .( + unresolved_SAparentID = i.SAparentID, # from unresolved + unresolved_SAid = i.SAid, + unresolved_subSampleLevel = i.subSampleLevel, + unresolved_topLevelSAid = i.topLevelSAid, + SA_SAparentID = SAparentID, # from SA + SA_SAid = SAid, # I'm not sure this value appears correctly - I don't actually use it anyway + SA_subSampleLevel = subSampleLevel, + SA_topLevelSAid = topLevelSAid + )] + SA_tmp$SAid <- SA_tmp$unresolved_SAid + SA_tmp$subSampleLevel <- SA_tmp$unresolved_subSampleLevel + 1L + SA_tmp$topLevelSAid <- SA_tmp$SA_topLevelSAid + SA_tmp$SAparentID <- SA_tmp$SA_SAparentID + SA_tmp <- SA_tmp[, c("SAid", "SAparentID", "subSampleLevel", "topLevelSAid")] + + if (nrow(SA_tmp) == 0) break + + # Update main table + SA[SA_tmp, `:=`( + subSampleLevel = i.subSampleLevel, + topLevelSAid = i.topLevelSAid + ), on = .(SAid)] + + # Prepare next set of unresolved rows (moving up one level) + unresolved <- SA_tmp[!is.na(SA_tmp$SAparentID),] } + + return(SA[, .(SAid, topLevelSAid, subSampleLevel)]) } + + diff --git a/R/data.R b/R/data.R index 11c9cbd3..affcc6cf 100644 --- a/R/data.R +++ b/R/data.R @@ -48,20 +48,23 @@ #' @source \url{https://sboxrdbes.ices.dk} "designVariables" -#' A dataset containing a copy of the icesSpecWoRMS code list. The latest -#' code list data can be downloaded from https://vocab.ices.dk/ +#' ICES Species (WoRMS) code list snapshot #' -#' @format A data frame +#' A dataset containing a copy of the ICES 'Species (WoRMS)' code list. +#' The latest code list can be downloaded from https://vocab.ices.dk/. +#' +#' @format A data frame with the following columns: #' \describe{ -#' \item{GUID}{Globally unique identifier assigned by ICES} -#' \item{Key}{AphiaID} -#' \item{Description}{Scientific name} -#' \item{LongDescription}{Ignore} -#' \item{Modified}{Date when the code was last updated} -#' \item{Deprecated}{IS this still a valid code. If FALSE the code is -#' no longer valid within ICES.} -#' \item{DateDownloaded}{E.g. "2023-10-18" } -#' ... +#' \item{CodeTypeGUID}{GUID of the code type in ICES Vocabulary (e.g. the 'Species (WoRMS)' list).} +#' \item{CodeTypeID}{Numeric ID of the code type.} +#' \item{Guid}{GUID identifying this code record.} +#' \item{Id}{Numeric ID of this code record.} +#' \item{Key}{AphiaID (numeric key from WoRMS).} +#' \item{Description}{Scientific name.} +#' \item{LongDescription}{(If present) additional description; often not used.} +#' \item{Modified}{Datetime the record was last modified at ICES.} +#' \item{Deprecated}{Logical; whether this code is deprecated at ICES.} +#' \item{DateDownloaded}{Date the snapshot was downloaded, e.g. "2023-10-18".} #' } #' @source \url{https://vocab.ices.dk/} "icesSpecWoRMS" @@ -88,7 +91,7 @@ #' \item{order}{E.g. "Spirularia" } #' \item{family}{E.g. "Cerianthidae" } #' \item{genus}{E.g. NA "Cerianthus"} -#' \item{citation }{E.g. "Molodtsova, T. (2023). World List of Ceriantharia. +#' \item{citation}{E.g. "Molodtsova, T. (2023). World List of Ceriantharia. #' Cerianthidae Milne Edwards & Haime, 1851. Accessed through: "... } #' \item{lsid}{internal database identifier} #' \item{isMarine}{E.g. 1 } @@ -130,9 +133,32 @@ #' \item{BV}{the Biological Variable data table} #' \item{VD}{the Vessel Details data table} #' \item{SL}{the Species List data table} +#' \item{IS}{the Individual Species table} #' } "H1Example" +#' A dataset containing test RDBES data for H7 in the RDBESDataObject structure +#' +#' This dataset does not have passed the RDBES upload checks, +#' hence the object might be somewhat invalid, however it resembles real data +#' from the Estonian Market Sampling for 2022 for 2 species +#' +#' @format A list containing entries required for H7 RDBES data: +#' \describe{ +#' \item{DE}{the Design data table} +#' \item{SD}{the Sampling Details data table} +#' \item{OS}{the Onshore Sample data table} +#' \item{LE}{the Landing Event data table} +#' \item{SS}{the Species Selection data table} +#' \item{SA}{the Sample data table} +#' \item{BV}{the Biological Variable data table} +#' \item{SL}{the Species List data table} +#' \item{IS}{the Individual Species table} + +#' } +#' #' @source Richard Meitern @ Estonian Marine Institute, 2025 +"H7Example" + #' A dataset containing test RDBES data for H8 in the RDBESDataObject structure #' #' This dataset does not have passed the RDBES upload checks, @@ -152,10 +178,11 @@ #' \item{BV}{the Biological Variable data table} #' \item{VD}{the Vessel Details data table} #' \item{SL}{the Species List data table} +#' \item{IS}{the Individual Species} #' \item{CL}{the Commertial Landing data table} #' \item{CE}{the Commertial Effort data table} #' } -#' #' @source Richard Meitern @ Estonian Marine Institute, 2023 +#' #' @source Richard Meitern @ Estonian Marine Institute, 2025 "H8ExampleEE1" #' A dataset containing test RDBES data for H5 in the RDBESDataObject structure @@ -173,6 +200,7 @@ #' \item{BV}{the Biological Variable data table} #' \item{VD}{the Vessel Details data table} #' \item{SL}{the Species List data table} +#' \item{IS}{the Individual Species table} #' } "H5Example" @@ -201,64 +229,12 @@ #' \item{BV}{the Biological Variable data table} #' \item{VD}{the Vessel Details data table} #' \item{SL}{the Species List data table} +#' \item{IS}{the Individual Species table} #' } #' @source \url{https://CRAN.R-project.org/package=survey} "Pckg_survey_apiclus2_H1" -#' A RDBESDataObject converted from package survey dataset apiclus1 -#' -#' This data set is derived from the Academic Performance Index computed for all -#' California schools based on standardized testing of students. The original -#' data sets contain information for all schools with at least 100 students and -#' for various probability samples of the data. The design is 1-stage cluster -#' sampling with clusters of unequal sizes. An SRS of 15 districts is selected -#' (psus) from the 757 districts in the population. All schools within district -#' are selected (ssus). The weights (pw) do not match 757/15 probably because -#' they have been calibrated. The target variable is enroll. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with DEstratumName == "Pckg_SDAResources_apiclus1_v2_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 183 child rows (the 186 schools finally observed), each associated to its cluster (dname), VSnumberTotalClusters is 757, VSnumberTotal is the number of schools in the cluster (census), calibrated weights are provided as 1/pw in VSinclusionProbCluster} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final data (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the final data (in SA)} -#' \item{SA}{the Sample data table. SAsampleWeightMeasured is enroll} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=survey} -"Pckg_survey_apiclus1_v2_H1" -#' A Clustered RDBESDataObject converted from package survey dataset apiclus2 -#' -#' This data set is derived from the Academic Performance Index computed for all -#' California schools based on standardized testing of students. The original -#' data sets contain information for all schools with at least 100 students and -#' for various probability samples of the data. The design is 2-stage cluster -#' sampling with clusters of unequal sizes. An SRS of 40 districts is selected -#' (psus) from the 757 districts in the population and then up to 5 schools (min -#' 1) were selected from each district (ssus). The target variable is enroll - note that it contains 4 NA values. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with DEstratumName == "Pckg_SDAResources_apiclus2_v2_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 126 child rows (the 126 schools finally observed), each associated to its cluster (dname), VSnumberTotalClusters is 757, VSnumberTotal is 1...5 schools sampled} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final data (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the final data (in SA)} -#' \item{SA}{the Sample data table. SAsampleWeightMeasured is enroll (note the 4 NAs)} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=survey} -"Pckg_survey_apiclus2_v2_H1" #' A RDBESDataObject converted from package survey dataset apistrat #' @@ -284,6 +260,7 @@ #' \item{BV}{the Biological Variable data table} #' \item{VD}{the Vessel Details data table. Contains 311 child rows} #' \item{SL}{the Species List data table. Contains 1 child row} +#' \item{IS}{the Individual Species table} #' } #' @source \url{https://CRAN.R-project.org/package=survey} "Pckg_survey_apistrat_H1" @@ -293,45 +270,6 @@ ##------H1 Data from SDAResources package------------------- -#' A RDBESDataObject converted from package SDAResources dataset agsrs -#' -#' This data set is derived from the data(agsrs) used in Lohr examples 2.6, 2.7 -#' and 2.11 of SDA book. Information required for example 4.8 -#' (domain estimation) is also added to SA (farmcat <=> SAarea). -#' VSnumberSampled and VSnumberTotal set according to agsrs and book pop -#' values. VSunitName is set to a combination of original agsrs$county, -#' agsrs$state, agsrs$region and row numbers. Table SA contains the variable -#' measured agsrs$acres92 in SAtotalWeightMeasured, SAsampleWeightMeasured and -#' SAconversionFactorMeasLive set to 1. Table SA also contains the domain -#' information, coded in SAarea. Table DE, SD, FT and FO are for the most -#' dummy tables inserted to meet RDBES model requirements to be aggregated -#' during estimation tests. Values of mandatory fields have dummy values with -#' exception of Design-Variables in VS that match the book. BV, FM, CL, and CE -#' are not provided. SL and VD are subset to the essential rows. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains dummy values with exception of -#' Design-Variables in VS that match the book} -#' \item{SD}{the Sampling Details data table. Contains dummy values} -#' \item{VS}{the Vessel Selection data table. Contains core information of -#' data(agsrs), VSnumberSampled and VSnumberTotal set according to agsrs -#' and book pop values, VSunitName is set to a combination of original -#' agsrs$county, agsrs$state, agsrs$region and row numbers} -#' \item{FT}{the Fishing Trip data table. Contains dummy values} -#' \item{FO}{the Fishing Operation data table. Contains dummy values} -#' \item{SS}{the Species Selection data table. Contains dummy values} -#' \item{SA}{the Sample data table. Contains the variable measured -#' agsrs$acres92 in SAtotalWeightMeasured, SAsampleWeightMeasured and -#' SAconversionFactorMeasLive set to 1, and the domain information, -#' coded in SAarea} -#' \item{FM}{the Frequency Measure data table. Not provided} -#' \item{BV}{the Biological Variable data table. Not provided} -#' \item{VD}{the Vessel Details data table. Subset to the essential rows} -#' \item{SL}{the Species List data table. Subset to the essential rows} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_agsrs_H1" #' A RDBESDataObject converted from package SDAResources dataset agstrat #' @@ -368,205 +306,12 @@ #' \item{BV}{the Biological Variable data table. Not provided} #' \item{VD}{the Vessel Details data table. Subset to the essential rows} #' \item{SL}{the Species List data table. Subset to the essential rows} +#' \item{IS}{the Individual Species table} #' } #' @source \url{https://CRAN.R-project.org/package=SDAResources} "Pckg_SDAResources_agstrat_H1" -#' A RDBESDataObject converted from package SDAResources dataset algebra -#' -#' This data set is derived from a fictional data for an SRS of 12 algebra -#' classes in a city, from a population of 187 classes. The design is 1-stage -#' cluster sampling with clusters of unequal sizes. Clusters are classes (class). -#' Clusters (psu) are unequal sized (Mi). In each cluster, all students are -#' selected (ssus, nrows). The total number of psus is known (187). The target -#' variable is score. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with -#' DEstratumName == "Pckg_SDAResources_algebra_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 299 child rows -#' (the 299 students observed), each associated to its cluster (class), -#' VSnumberTotalClusters is 187, VSnumberSampledClusters is 12, -#' VSnumberTotal is Missing} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SA}{the Sample data table. Each score is a SAsampleWeightMeasured} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_algebra_H1" - -#' A RDBESDataObject converted from package SDAResources dataset coots -#' -#' This data set is derived from the data(coots). The design is 2-stage cluster -#' sampling with clusters of unequal sizes and Npsu not known. Clusters are -#' clutches of eggs (nests) with at least 2 eggs. In each cluster, the volume -#' of two eggs is measured. Clusters (psu) are unequal sized. In each cluster, -#' 2 eggs are selected (ssus) and measured. The total number of psus is not -#' known (a drawback in this example). It is assumed very large (fpc negligible). -#' The target variable is volume (others are available). -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with -#' DEstratumName == "Pckg_SDAResources_coots_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 368 child rows -#' (the 368 eggs/psus observed), each associated to its cluster (clutch), -#' VSnumberTotalClusters is not known, VSnumberTotal is csize} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -#' (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the -#' final data (in SA)} -#' \item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured. -#' ATT volumes are *100000000 to meet type requirement (integer)} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_coots_H1" - -#' A Multi-stage RDBESDataObject from package SDAResources dataset coots -#' -#' This data set is derived from the data(coots). The design is 2-stage cluster -#' sampling with clusters of unequal sizes and Npsu not known. Clusters are -#' clutches of eggs (nests) with at least 2 eggs. In each cluster, the volume -#' of two eggs is measured. Clusters (psu) are unequal sized. In each cluster, -#' 2 eggs are selected (ssus) and measured. The total number of psus is not -#' known (a drawback in this example). It is assumed very large (fpc negligible). -#' The target variable is volume. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with -#' DEstratumName == "Pckg_SDAResources_coots_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 184 child rows -#' (the 184 clutches/psus observed), each associated to its cluster (clutch), -#' VSnumberTotal is not known, VSnumberSampled is 184} -#' \item{FT}{the Fishing Trip data table. Contains 368 child rows -#' (the 368 eggs/ssus measured), each associated to its vessel (clutch), -#' FTnumbersampled is 2, FTnumberTotal is csize} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured. -#' ATT volumes are *100000000 to meet type requirement (integer)} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_coots_multistage_H1" - -#' A RDBESDataObject converted from package SDAResources dataset gpa -#' -#' This data set is derived from the data(gpa). The design is 1-stage cluster -#' sampling with clusters of equal sizes. Each cluster (suite) has 4 elements -#' with the same weight. The target variable is gpa. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with -#' DEstratumName == "Pckg_SDAResources_gpa_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 20 child rows -#' (the 20 observations), each associated to its cluster (suite), -#' VSnumberTotalClusters is 100, VSnumberTotal is 4 because all elements in -#' cluster are sampled} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -#' (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the final -#' data (in SA)} -#' \item{SA}{the Sample data table. Each gpa score is a -#' SAsampleWeightMeasured. ATT gpa scores are *100 to meet type requirement -#' (integer)} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_gpa_H1" - -#' A RDBESDataObject converted from package SDAResources dataset schools -#' -#' This data set is derived from the data(schools). The design is 2-stage cluster -#' sampling with clusters of unequal sizes and Npsu not known. Clusters are -#' schools (schoolid). Clusters (psu) are unequal sized (Mi). In each cluster, -#' 20 students are selected (ssus) and measured (nrows). The total number of -#' psus is known (75). The target variable is mathlevel. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table. Contains 1 DE row with -#' DEstratumName == "Pckg_SDAResources_schools_H1"} -#' \item{SD}{the Sampling Details data table. Contains 1 child SD row} -#' \item{VS}{the Vessel Selection data table. Contains 200 child rows -#' (the 200 students observed), each associated to its cluster (schoolid), -#' VSnumberTotalClusters is 100, VSnumberTotal is Mi} -#' \item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -#' (in SA)} -#' \item{FO}{the Fishing Operation data table. Just 1:1 links to the -#' final data (in SA)} -#' \item{SS}{the Species Selection data table. Just 1:1 links to the -#' final data (in SA)} -#' \item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table} -#' } -#' @source \url{https://CRAN.R-project.org/package=SDAResources} -"Pckg_SDAResources_schools_H1" -##---------------Made Up data--------------- - -#' A made-up dataset for testing manipulations of SA based on SL -#' -#' This data set is created for testing the idea of manipulating Sample data (SA) -#' based on Species List (SL). It represents the simplest case for testing this -#' idea. The data set contains two species in SL for the same SLcountry, -#' SLinstitute, SLspeciesListName, SLyear, SLcatchFraction, SLcommercialTaxon, -#' SLspeciesCode & SLcommercialTaxon == SLspeciesCode. There is one species in -#' SA - one row in SS with keys equal to the SL keys. -#' -#' @format A list containing entries required for H1 RDBES data: -#' \describe{ -#' \item{DE}{the Design data table} -#' \item{SD}{the Sampling Details data table} -#' \item{VS}{the Vessel Selection data table} -#' \item{FT}{the Fishing Trip data table} -#' \item{FO}{the Fishing Operation data table} -#' \item{SS}{the Species Selection data table. -#' Contains one row with keys equal to the SL keys} -#' \item{SA}{the Sample data table. Contains one species} -#' \item{FM}{the Frequency Measure data table} -#' \item{BV}{the Biological Variable data table} -#' \item{VD}{the Vessel Details data table} -#' \item{SL}{the Species List data table. -#' Contains two species for the same SLcountry, SLinstitute, -#' SLspeciesListName, SLyear, SLcatchFraction, SLcommercialTaxon, -#' SLspeciesCode & SLcommercialTaxon == SLspeciesCode} -#' } -"MadeUpData_for_SL_SA_tests_v1" #-------Other example data---------- diff --git a/R/doEstimationRatio.R b/R/doEstimationRatio.R index 7476eb1d..73cf5c79 100644 --- a/R/doEstimationRatio.R +++ b/R/doEstimationRatio.R @@ -4,6 +4,7 @@ #' #' @param RDBESDataObj A validated RDBESDataObject containing hierarchical sampling and biological data. Must include appropriate tables (e.g., CL, CE, SA, FM, or BV) depending on estimation requirements. #' @param targetValue A character string specifying the type of composition to estimate. Options are "LengthComp" or "AgeComp". +#' @param raiseVar The variable used to construct the ratio. #' @param classUnits Units of the class intervals for length or age, typically "mm" for millimeters or "cm" for centimeters. Used in defining class intervals. #' @param classBreaks A numeric vector of three values: minimum value, maximum value, and class width (e.g., c(100, 300, 10)). Defines the class intervals for grouping lengths or ages. #' @param LWparam A numeric vector of length two specifying parameters (a, b) for the weight-length relationship (W = a * L^b). Used if no direct weights are available but lengths are provided. @@ -27,27 +28,62 @@ # TODO add check for unique sampling scheme # TODO add an argument to toggle stratification in estimation on/off # TODO need to implement the BV conversion from typeMeas to typeAssess +# TODO add info about the strata (species, area, season, metier/gear/fleet) #' @importFrom utils tail doEstimationRatio <- function(RDBESDataObj, targetValue = "LengthComp", + raiseVar = "Weight", classUnits = "mm", classBreaks = c(100, 300, 10), # cut LWparam = NULL, # vector of two values lowerAux = NULL, # you can use a strongly correlated value present in your data for the estimation of the values of interest verbose = FALSE){ - + raiseVar <- "Weight" RDBESDataObj <- H8ExampleEE1 # Check we have a valid RDBESEstObject before doing anything else RDBEScore::validateRDBESDataObject(RDBESDataObj, verbose = FALSE) + # RDBESDataObj <- createRDBESDataObject(input = c("./NLdata/2025_10_14_093927.zip", + # "./NLdata/HCL_2025_10_06_102840215.zip")) + # validateRDBESDataObject(h1, verbose = TRUE) + # Check upper hierarchy + DEhierarchy <- unique(RDBESDataObj$DE$DEhierarchy) + if(length(unique(DEhierarchy )) > 1){ + stop("Multiple upper hierarchies not yet implemented")} + # Check lower hierarchy + if(length(unique(RDBESDataObj$SA$SAlowHierarchy)) > 1){ + stop("Multiple lower hierarchies not allowed") + } -# TODO implement for a combination of lower hierarchies -# For now only works on one lower hierarchy at a time + RDBESEstRatioObj <- RDBESDataObj[c("CL", "CE", RDBEScore::getTablesInRDBESHierarchy(DEhierarchy))] - if(length(unique(RDBESDataObj$SA$SAlowHierarchy)) > 1){ - stop("Multiple lower hierarchies not yet implemented")} + # Filter out NULL tables + RDBESEstRatioObj <- Filter(Negate(is.null), RDBESEstRatioObj) + +#---------------------- + if(raiseVar == "Weight"){ + if(unique(RDBESDataObj$SA$SAlowHierarchy) == "B" ){ + stop("Lower hierarchy B not yet implemented for weight") + }else{ + weightVar <- grep("(?i)weight", unique(RDBESDataObj$BV$BVtypeMeas), value = TRUE) + # weightVar <- c("WeightLive", "WeightGutted", "WeightMeasured") + if (interactive()) { + if(length(unique(weightVar)) > 1) { + # Print a numbered menu and get user's selection + idx <- utils::menu(weightVar, title = "Select the BV weight type to use:") + if (idx == 0L) stop("Selection cancelled.") + wcol <- weightVar[idx] + weightName <- paste0("BV", wcol) + } else { + message("Only one weight type present. Using: ", weightVar[1L]) + wcol <- weightVar[1L] + weightName <- paste0("BV", wcol) + } + } + } + } # Do we need both CL and CE? Allow the user to define the population (i.e. effort or landings or both)? @@ -57,16 +93,6 @@ doEstimationRatio <- function(RDBESDataObj, # stop("The object does not have population data") # } -# Order table based on hierarchy - it's a bottom up estimation - DEhierarchy <- unique(RDBESDataObj$DE$DEhierarchy) - if(length(unique(DEhierarchy )) > 1){ - stop("Multiple upper hierarchies not yet implemented")} - - RDBESEstRatioObj <- RDBESDataObj[c("CL", "CE", RDBEScore::getTablesInRDBESHierarchy(DEhierarchy))] - -# Filter out NULL tables - RDBESEstRatioObj <- Filter(Negate(is.null), RDBESEstRatioObj) - # Check which tables exist after SA # Does anything exist after SA? @@ -84,6 +110,11 @@ doEstimationRatio <- function(RDBESDataObj, # LH A & B ---------------------------------------------------------------- if(unique(RDBESEstRatioObj$SA$SAlowHierarchy) %in% c("A", "B")){ + # bv <- setDT(RDBESEstRatioObj$BV) + # fm <- setDT(RDBESEstRatioObj$FM) + # bv <- bv[, unique(.SD), .SDcols = c( "FMid","BVfishId", "BVtypeMeas", "BVvalueMeas")] + # bv <- dcast(bv, ... ~ BVtypeMeas , value.var = c("BVvalueMeas"), drop = TRUE) + # bv[, `:=`(LengthTotal = as.numeric(LengthTotal), WeightMeasured = as.numeric(WeightMeasured))] # Select only FM data for now - BV possibly used for ALK warning("Only FM table used. BV is not yet implemented") @@ -95,22 +126,15 @@ doEstimationRatio <- function(RDBESDataObj, - # if aux exist use aux - if(all(!is.na(RDBESDataObj[[paste0(substr(tail(suLevels, n = 1), 1, 3), "auxVarValue")]]))){ - - + if(!is.null(LWparam)){ + stop("Not yet implemented") - # else LW relationship: give a, b parameters - }else if(!is.null(LWparam)){ - stop("Not yet implemented") - - - }else{ - # else stop - stop("Nor an auxiliary variable nor lw params are provided. Not possible to produce the mean weight at length ") - } + }else{ + # else stop + stop("Nor an auxiliary variable nor lw params are provided. Not possible to produce the mean weight at length") + } # otherwise check if you can calculate it # otherwise stop @@ -127,51 +151,82 @@ doEstimationRatio <- function(RDBESDataObj, bv <- setDT(RDBESEstRatioObj$BV) bv <- bv[, unique(.SD), .SDcols = c("SAid", "BVfishId", "BVtypeMeas", "BVvalueMeas")] bv <- dcast(bv, ... ~ BVtypeMeas , value.var = c("BVvalueMeas"), drop = TRUE) - bv[, `:=`(LengthTotal = as.numeric(LengthTotal), WeightMeasured = as.numeric(WeightMeasured))] + bv[, (weightName) := as.numeric(get(wcol))] # TODO this probably needs to be an argument # or needs to be defined later on? - bv$LengthClass <- floor(bv$LengthTotal/10) # or ceiling option? Half cm? + bv$LengthClass <- floor(bv$LengthTotal/10) # TODO This needs to be defined by the user - bv1 <- bv[, .(BVMeanWeight = mean(WeightMeasured, na.rm = TRUE), - BVNumbersAtLength = .N), - by = .(SAid, LengthClass)][, TotCount := sum(BVNumbersAtLength), by = SAid] - bv1$BVLengthClassProp <- bv1$BVNumbersAtLength/bv1$TotCount + bv1 <- bv[ + , .(BVMeanWeight = mean(get(wcol), na.rm = TRUE), + BVNumbersAtLength = .N), + by = .(SAid, LengthClass) + ][ + # add total count per SAid + , BVTotCount := sum(BVNumbersAtLength), by = SAid + ][ + # add total weight per SAid + bv[, .(BVTotWeight = sum(get(wcol), na.rm = TRUE)), by = SAid], + on = "SAid" + ] + # bv1$BVLengthClassProp <- bv1$BVNumbersAtLength/bv1$TotCount - sa <- setDT(RDBESEstRatioObj$SA) - sa <- sa[, unique(.SD), .SDcols = c("SSid","SAid", "SAspeCode","SAlowHierarchy", "SAauxVarValue")] + sa <- setDT(RDBESEstRatioObj$SA) + sa <- sa[, unique(.SD), .SDcols = c("SAid", "SAlowHierarchy", "SAtotalWtMes" , "SAsampWtMes", "SAnumTotal", "SAnumSamp", "SAauxVarValue", "SAauxVarUnit" )] # Do not need the + # species, the filtering of the "strata" variables will be done before the estimation # To test sa[, SAauxVarValue := as.numeric(SAauxVarValue )] sa$SAauxVarValue <- 10 - # TODO add check for subsampling STOP it does not work + # TODO add check for subsampling su <- merge(bv1, sa, by = c("SAid")) - su$SANumbersAtLength <- su$BVNumbersAtLength * su$SAauxVarValue + if(raiseVar == "Weight"){ - # From here onwards need the column names + su$raiseFactor <- su$SAtotalWtMes/su$SAsampWtMes + su$NumbersAtLength <- su$raiseFactor*su$BVNumbersAtLength + + }else if(raiseVar == "Count"){ + + su$raiseFactor <- su$SAnumTotal/su$SAnumSamp + su$NumbersAtLength <- su$raiseFactor*su$BVNumbersAtLength + + }else{ + + su$NumbersAtLength <- su$SAauxVarValue*su$BVNumbersAtLength + + } + + return(su) - s <- RDBEScore::getTablesInRDBESHierarchy(DEhierarchy) - keywords <- c("SA|FM|BV") - hierarchyTabs <-s[!is.na(gsub(keywords, NA, s))] - # Get the table before the SA (most likely SS) - nextTab <- tail(hierarchyTabs, n = 1) - # Get table SA - 2 - nextTab1 <- tail(hierarchyTabs, n = ) - upperHier1 <- setDT(RDBESEstRatioObj[[nextTab]]) - cnames1 <- paste0(nextTab, "year") - upperHier1 <- upperHier1[, unique(.SD), .SDcols = c("SAid", "SAspeCode","SAlowHierarchy", "SAauxVarValue")] + # su$SANumbersAtLength <- su$BVNumbersAtLength * su$SAauxVarValue + + # From here onwards need the column names + + # s <- RDBEScore::getTablesInRDBESHierarchy(DEhierarchy) + # keywords <- c("SA|FM|BV") + # hierarchyTabs <-s[!is.na(gsub(keywords, NA, s))] + # # Get the table before the SA (most likely SS) + # nextTab <- tail(hierarchyTabs, n = 1) + # # Get table SA - 2 + # nextTab1 <- tail(hierarchyTabs, n = ) + # + # + # upperHier1 <- setDT(RDBESEstRatioObj[[nextTab]]) + # cnames1 <- paste0(nextTab, "year") + # upperHier1 <- upperHier1[, unique(.SD), .SDcols = c("SAid", "SAspeCode","SAlowHierarchy", "SAauxVarValue")] # if both lengths and weight exist # if(isTRUE(any(grepl("Length", RDBESEstRatioObj$BV$BVtypeAssess)) & any(grepl("Weight", RDBESEstRatioObj$BV$BVtypeAssess)))){ # - # + # su$Wratio <- su$SAtotalWtMes/su$SAsampWtMes + # su$SANumbersAtLength <- su$BVNumbersAtLength * su$Wratio # # }else{ # stop("Not yet implemented") @@ -185,10 +240,63 @@ doEstimationRatio <- function(RDBESDataObj, }else if(targetValue == "AgeComp"){ + # LH C -------------------------------------------------------------------- if(unique(RDBESDataObj$SA$SAlowHierarchy) == "C"){ + + bv <- setDT(RDBESEstRatioObj$BV) + bv <- bv[, unique(.SD), .SDcols = c("SAid", "BVfishId", "BVtypeMeas", "BVvalueMeas")] + bv <- dcast(bv, ... ~ BVtypeMeas , value.var = c("BVvalueMeas"), drop = TRUE) + bv[, `:=`( WeightMeasured = as.numeric(get(wcol)))] + # TODO this probably needs to be an argument + # or needs to be defined later on? + + bv1 <- bv[ + , .(BVMeanWeight = mean(get(wcol), na.rm = TRUE), + BVNumbersAtAge = .N), + by = .(SAid, Age) + ][ + # add total count per SAid + , BVTotCount := sum(BVNumbersAtAge), by = SAid + ][ + # add total weight per SAid + bv[, .(BVTotWeight = sum(get(wcol), na.rm = TRUE)), by = SAid], + on = "SAid" + ] + + # bv1$BVLengthClassProp <- bv1$BVNumbersAtLength/bv1$TotCount + + + sa <- setDT(RDBESEstRatioObj$SA) + sa <- sa[, unique(.SD), .SDcols = c("SAid", "SAlowHierarchy", "SAtotalWtMes" , "SAsampWtMes", "SAnumTotal", "SAnumSamp", "SAauxVarValue", "SAauxVarUnit" )] # Do not need the + # species, the filtering of the "strata" variables will be done before the estimation + # To test + sa[, SAauxVarValue := as.numeric(SAauxVarValue )] + sa$SAauxVarValue <- 10 + + # TODO add check for subsampling + + su <- merge(bv1, sa, by = c("SAid")) + + if(raiseVar == "Weight"){ + + su$raiseFactor <- su$SAtotalWtMes/su$SAsampWtMes + su$NumbersAtAge <- su$raiseFactor*su$BVNumbersAtAge + + }else if(raiseVar == "Count"){ + + su$raiseFactor <- su$SAnumTotal/su$SAnumSamp + su$NumbersAtAge <- su$raiseFactor*su$BVNumbersAtAge + + }else{ + + su$NumbersAtAge <- su$SAauxVarValue*su$BVNumbersAtAge + + } + + return(su) # Check which biol data are present # if age exists @@ -211,7 +319,11 @@ doEstimationRatio <- function(RDBESDataObj, }else if(unique(RDBESDataObj$SA$SAlowHierarchy) == "A"){ - + bv <- setDT(RDBESEstRatioObj$BV) + fm <- setDT(RDBESEstRatioObj$FM) + bv <- bv[, unique(.SD), .SDcols = c( "FMid","BVfishId", "BVtypeMeas", "BVvalueMeas")] + bv <- dcast(bv, ... ~ BVtypeMeas , value.var = c("BVvalueMeas"), drop = TRUE) + bv[, `:=`(wcol = as.numeric(wcol ))] # if age exists diff --git a/R/filterRDBESDataObject.R b/R/filterRDBESDataObject.R index c7ec0432..2c00b547 100644 --- a/R/filterRDBESDataObject.R +++ b/R/filterRDBESDataObject.R @@ -65,14 +65,14 @@ filterRDBESDataObject <- function(RDBESDataObjectToFilter, tblNames <- names(RDBESDataObjectToFilter) alteredObject <- mapply(function(x, name) { - #do not search id columns that are not ids of this table - #see issue #183 + # do not search id columns that are not ids of this table + # see issue #183 idCols <- names(x)[grepl("id$", names(x))] - searchNames <- c(setdiff(names(x), idCols), paste0(name,"id")) + searchNames <- c(setdiff(names(x), idCols), paste0(name, "id")) foundNames <- searchNames[which(searchNames %in% fieldsToFilter)] if (length(foundNames) > 0) { - x <- - dplyr::filter(x, dplyr::if_all(all_of(foundNames), ~ .x %in% valuesToFilter)) + keep <- x[, Reduce(`&`, lapply(.SD, function(col) col %in% valuesToFilter)), .SDcols = foundNames] + x <- x[keep] } x }, RDBESDataObjectToFilter, tblNames, SIMPLIFY = FALSE) diff --git a/R/fixSLids.R b/R/fixSLids.R index 7265c353..482b78ae 100644 --- a/R/fixSLids.R +++ b/R/fixSLids.R @@ -11,7 +11,9 @@ #' @param RDBESDataObject A valid RDBESDataObject #' @param verbose (Optional) Set to TRUE if you want informative text printed #' out, or FALSE if you don't. The default is FALSE. -#' @param strict (Optional) This function validates its input data - should +#' @param validate (Optional) Should the function validate its input data? +#' The default is TRUE. +#' @param strict (Optional) If the function validates its input data - should #' the validation be strict? The default is TRUE. #' #' @return an RDBESDataObject with SL ids reworked @@ -21,13 +23,15 @@ #' # To add -fixSLids<-function(RDBESDataObject, verbose = FALSE, strict = TRUE){ +fixSLids<-function(RDBESDataObject, verbose = FALSE, validate = TRUE, strict = TRUE){ # Check we have a valid RDBESDataObject before doing anything else + if(validate == T){ validateRDBESDataObject(RDBESDataObject, verbose = verbose, strict = strict ) + } # issues error if fixSLids already been run if("SLtaxaId" %in% colnames(RDBESDataObject[["SL"]])){ diff --git a/R/generateNAsUsingSL.R b/R/generateNAsUsingSL.R index ba0f3fa4..1b2b68df 100644 --- a/R/generateNAsUsingSL.R +++ b/R/generateNAsUsingSL.R @@ -35,8 +35,8 @@ if(validate){ # Take a copy of SA and SL since we'll change some column data types and # we don't want to update the original version tmpSS <- data.table::copy(RDBESDataObject[["SS"]]) - tmpSL <- data.table::copy(fixSLids(RDBESDataObject)$SL) - tmpIS <- data.table::copy(fixSLids(RDBESDataObject)$IS) + tmpSL <- data.table::copy(fixSLids(RDBESDataObject, validate = validate, strict = strict)$SL) + tmpIS <- data.table::copy(fixSLids(RDBESDataObject, validate = validate, strict = strict)$IS) tmpSA <- data.table::copy(RDBESDataObject[["SA"]]) tmpSSwithSL<-merge(tmpSS, tmpSL, by="SLid", all.x=T) diff --git a/R/importRDBESDataCSV.R b/R/importRDBESDataCSV.R index f6e0c05d..9ae3e114 100644 --- a/R/importRDBESDataCSV.R +++ b/R/importRDBESDataCSV.R @@ -32,7 +32,8 @@ importRDBESDataCSV <- function(rdbesExtractPath = NULL, listOfFileNames = NULL, - castToCorrectDataTypes = TRUE) { + castToCorrectDataTypes = TRUE, + ...) { # If we have not been passed a list of file names use a default @@ -72,17 +73,46 @@ importRDBESDataCSV <- function(rdbesExtractPath = NULL, " - an empty object will be created")) } else { - # Read the files which exist - for (myFile in filesWhichExist) { - # Read the file - myList[[myFile]] <- + # Read the files which exist + for (myFile in filesWhichExist) { + # define R data types. Nessesary is to present fields whith characters + #longer than 20. Use colClasses to define the data types. If you don't + #use colClasses BVfishId is convert to scientific format and present as + #character, when whole information about BVfishId is cutting. + fieldsFormat <- RDBEScore::mapColNamesFieldR[ + RDBEScore::mapColNamesFieldR$Table.Prefix == myFile, "RDataType"] + + # Read the file with error handling so we can raise a clear message + filePath <- paste(rdbesExtractPath, "/", fileNames[myFile], sep = "") + csvBaseName <- sub("\\.csv$", "", fileNames[myFile]) + readResult <- try( utils::read.csv( - paste(rdbesExtractPath, "/", fileNames[myFile], sep = ""), - header = TRUE, sep = ",", quote = "", stringsAsFactors = FALSE + filePath, + header = TRUE, + sep = ",", + quote = "", + stringsAsFactors = FALSE, + colClasses = fieldsFormat + ), + silent = TRUE + ) + + if (inherits(readResult, "try-error")) { + stop( + paste0( + "The input file has unexpected structure in the table ", + myFile, + " (", + csvBaseName, + ")" + ), + call. = FALSE ) + } - # Change each entry to a data table - #myList[[myFile]] <- + myList[[myFile]] <- readResult + + # Change each entry to a data table data.table::setDT(myList[[myFile]]) # Change database field names to R names where we can @@ -142,6 +172,11 @@ importRDBESDataCSV <- function(rdbesExtractPath = NULL, } } + #check the data + validateRDBESDataObject(myRDBESDataObject, + checkDataTypes = castToCorrectDataTypes, + ...) + # Return the object myRDBESDataObject } diff --git a/R/importRDBESDataZIP.R b/R/importRDBESDataZIP.R index f3231238..94d66a40 100644 --- a/R/importRDBESDataZIP.R +++ b/R/importRDBESDataZIP.R @@ -28,7 +28,7 @@ importRDBESDataZIP <- function(filenames, castToCorrectDataTypes = TRUE, - Hierarchy = NULL) { + Hierarchy = NULL, ...) { # Generates random number for the temp import folder name randInt <- paste0(sample(1:100, 3), collapse = "") @@ -44,7 +44,15 @@ importRDBESDataZIP <- function(filenames, if (is.zip(x)) { unzipped <- utils::unzip(x, exdir= tmp) - unzipped <- basename(unzipped) + if(as.character(Sys.info()["sysname"]) == "Linux"){ + files <- list.files(tmp) + newNames <- sub(".*\\\\", "", files) + file.rename(file.path(tmp, files), file.path(tmp, newNames)) + unzipped <- list.files(tmp) + } + if(as.character(Sys.info()["sysname"]) != "Linux" ){ + unzipped <- basename(unzipped) + } unzipped <- unzipped[grep("*.csv", unzipped)] intersected <- intersect(unzipped, all_unzipped) if(length(intersected) != 0) { @@ -92,7 +100,8 @@ importRDBESDataZIP <- function(filenames, } res <- importRDBESDataCSV(tmp, - castToCorrectDataTypes = castToCorrectDataTypes) + castToCorrectDataTypes = castToCorrectDataTypes, + ...) unlink(tmp, recursive = T) return(res) diff --git a/R/upperTblData.R b/R/upperTblData.R index 21fe4405..9bb62ad9 100644 --- a/R/upperTblData.R +++ b/R/upperTblData.R @@ -22,7 +22,6 @@ #' provided values for the specified field. #' #' @examples -#' #' # it is important to run these functions only on sorted RDBESDataObject #' RDBEScore:::upperTblData("SAid", c(1), sort(H8ExampleEE1), "DE", verbose = TRUE) #' DE <- data.table::data.table(DEid = c(1, 2)) diff --git a/R/utils.R b/R/utils.R index 51db73b0..8a1e7741 100644 --- a/R/utils.R +++ b/R/utils.R @@ -28,7 +28,11 @@ evenMoreUsedVars <- c("Weightg", "Lengthmm", "Group", "WeightIndexSum", "WeightIndex", "H8ExampleEE1", "suLevels", "LengthTotal", "WeightMeasured", "LengthClass", "TotCount", "BVNumbersAtLength", "SAauxVarValue", "ISid", - "ISrecType", "..x") + "ISrecType", "..x","n_matches", + "SAparSequNum", "i.SAid", "SAparentID", + "BVTotCount", "Age", "BVNumbersAtAge", + "i.SAparentID", "i.subSampleLevel", "i.topLevelSAid", + "subSampleLevel", "topLevelSAid") globalVariables(unique(c(usedVars, moreUsedVars, evenMoreUsedVars))) diff --git a/R/validateRDBESDataObject.R b/R/validateRDBESDataObject.R index 1bf7829b..2686816c 100644 --- a/R/validateRDBESDataObject.R +++ b/R/validateRDBESDataObject.R @@ -19,9 +19,9 @@ #' care. Default value is FALSE. #' @param verbose (Optional) Set to TRUE if you want informative text printed #' out, or FALSE if you don't. The default is FALSE. -#' @param strict (Optional) Set to TRUE if you want to be sure all columns -#' are present in the data, set to FALSE if you only want to check that -#' essential columns are present. The default is TRUE. +#' @param strict (Optional) Set to TRUE if you want an error if validation +#' fails, set to FALSE if you want only a warning to be issued. The default +#' is TRUE. #' #' @return Returns objectToCheck #' @md @@ -63,14 +63,16 @@ validateRDBESDataObject <- function(objectToCheck, } # CHECK 4 Does this list have any names that aren't required? - # (this is now only an error if we being strict) + # (this is now only an error if we are being strict) if (!all(names(objectToCheck) %in% allowedNamesInList)) { if (strict){ stop(paste("objectToCheck is a list but has extra names ", paste(names(objectToCheck), collapse = ","), sep = "" )) - } + } else paste("warning: objectToCheck is a list but has extra names ", + paste(names(objectToCheck), collapse = ","), + sep = "") } # CHECK 5 Does the list have an entry for all the required names? @@ -83,6 +85,8 @@ validateRDBESDataObject <- function(objectToCheck, sep = "" )) } + + # STEP 2 OF CHECKS # Get any objectToCheck entries which aren't null or data tables @@ -136,6 +140,17 @@ validateRDBESDataObject <- function(objectToCheck, warningText <- "" validRDBESDataObject <- TRUE + # CHECK 5b if there is an SL table, is there also a non-empty IS table + if (!is.null(objectToCheck[['SL']]) && nrow(objectToCheck[['SL']]) > 0) { + if (is.null(objectToCheck[['IS']]) || nrow(objectToCheck[['IS']]) == 0) { + validRDBESDataObject <- FALSE + warningText <- paste0( + "objectToCheck contains a non-empty SL table but the IS table ", + "is either NULL or empty." + ) + } + } + # CHECK 6 Check that keys are set on the data tables for(aTable in names(nonNullEntries)){ if (is.null(key(nonNullEntries[[aTable]]))){ diff --git a/_pkgdown.yml b/_pkgdown.yml new file mode 100644 index 00000000..4625943f --- /dev/null +++ b/_pkgdown.yml @@ -0,0 +1,4 @@ +url: https://ices-tools-dev.github.io/RDBEScore/ +template: + bootstrap: 5 + diff --git a/data-raw/create_H1_ExampleData.R b/data-raw/create_H1_ExampleData.R index 8a16813c..723c98b4 100644 --- a/data-raw/create_H1_ExampleData.R +++ b/data-raw/create_H1_ExampleData.R @@ -56,7 +56,7 @@ dir.create(paste0(tmp, "/HVD")) dir.create(paste0(tmp, "/HSL")) #put files to the folders hsl_file <- "SpeciesList.csv" -his_file <- "IndividualSpecies.csv" +his_file <- "IndividualSpeciesInSpeciesList.csv" hvd_file <- "VesselDetails.csv" file.copy(paste0(tmp, "/", hsl_file), paste0(tmp, "/HSL"), overwrite = TRUE) file.copy(paste0(tmp, "/", his_file), paste0(tmp, "/HSL"), overwrite = TRUE) diff --git a/data-raw/create_H7_ExampleData.R b/data-raw/create_H7_ExampleData.R new file mode 100644 index 00000000..9eba855a --- /dev/null +++ b/data-raw/create_H7_ExampleData.R @@ -0,0 +1,20 @@ +## Load the csv files from our data-raw +ddir <- "./data-raw/exampleData/" + +#this data is created by Richard Meitern (contact: richard.meitern@ut.ee) +# internally it resembles Estonian onshore sampling data +H7Example <- readRDS(paste0(ddir, "H7_2025_10_13.rds")) + +H7Example$VD <- NULL +H7Example$DE$DEsampScheme <- gsub("EST_","", H7Example$DE$DEsampScheme) +H7Example$SL <- H7Example$SL[H7Example$SL$SLspeclistName %in% + unique(H7Example$SS$SSspecListName),] + +H7Example$IS <- H7Example$IS[H7Example$IS$SLid %in% H7Example$SL$SLid,] +#add 0 row VD +H7Example$VD <- data.table::copy(H1Example$VD[F,]) + + +RDBEScore::validateRDBESDataObject(H7Example) +# Save the data +usethis::use_data(H7Example, overwrite = TRUE) diff --git a/data-raw/defaultRDBESFileNames.R b/data-raw/defaultRDBESFileNames.R index 80570ab4..9b8a021b 100644 --- a/data-raw/defaultRDBESFileNames.R +++ b/data-raw/defaultRDBESFileNames.R @@ -15,7 +15,7 @@ DefaultFileNames <- list( "BV" = "BiologicalVariable", "VD" = "VesselDetails", "SL" = "SpeciesList", - "IS" = "IndividualSpecies", + "IS" = "IndividualSpeciesInSpeciesList", "CL" = "CommercialLanding", "CE" = "CommercialEffort" ) diff --git a/data-raw/exampleData/H1_2025_02_11.zip b/data-raw/exampleData/H1_2025_02_11.zip index 60f4b6a0..ece83310 100644 Binary files a/data-raw/exampleData/H1_2025_02_11.zip and b/data-raw/exampleData/H1_2025_02_11.zip differ diff --git a/data-raw/exampleData/H5_2025_02_11.zip b/data-raw/exampleData/H5_2025_02_11.zip index 39b9b24d..6fa56fa8 100644 Binary files a/data-raw/exampleData/H5_2025_02_11.zip and b/data-raw/exampleData/H5_2025_02_11.zip differ diff --git a/data-raw/exampleData/H7_2025_10_13.rds b/data-raw/exampleData/H7_2025_10_13.rds new file mode 100644 index 00000000..5ec55615 Binary files /dev/null and b/data-raw/exampleData/H7_2025_10_13.rds differ diff --git a/data-raw/exampleData/TextBookExamples/Migrate_Pckg_SDAResources_agstrat_H1_to_new_format.R b/data-raw/exampleData/TextBookExamples/Migrate_Pckg_SDAResources_agstrat_H1_to_new_format.R new file mode 100644 index 00000000..f559e4da --- /dev/null +++ b/data-raw/exampleData/TextBookExamples/Migrate_Pckg_SDAResources_agstrat_H1_to_new_format.R @@ -0,0 +1,50 @@ +# 15/10/2025 +# Update "Pckg_SDAResources_agstrat_H1" to the new data format + +library(RDBEScore) +# Get aux data +load(file='./data/Pckg_survey_apiclus2_H1.rda') +# Get the data +load(file='./data/Pckg_SDAResources_agstrat_H1.rda') +validateRDBESDataObject(Pckg_SDAResources_agstrat_H1, strict = FALSE, verbose = TRUE) +newH1 <- Pckg_SDAResources_agstrat_H1 + +# Add an entry for IS and create the entries using SL +newH1$IS <- readRDS(paste0(baseDir,"aux_TextBookExamples/IS_base.rds")) +names(newH1$IS) <- c("ISrecordType","IScommTaxon","ISsppCode") +#head(newH1$IS) +newH1[["IS"]]$ISrecType <- "IS" +newH1[["IS"]]$SLid <- newH1[["SL"]]$SLid +newH1[["IS"]]$ISid <- 1001 +newH1$IS <- newH1$IS[,c("ISid", "SLid", "ISrecType", "IScommTaxon", "ISsppCode")] +data.table::setkey(newH1[["IS"]],ISid) +# Remove the unneccessary columns from SL +#newH1$SL <- newH1$SL[,c("SLid","SLrecType","SLcou","SLinst","SLspeclistName","SLyear","SLcatchFrac")] +# Add column to FT +#newH1[["FT"]]$FTdomLanDate <- NA +# Add columns to FO +#newH1[["FO"]]$FOfishDuraDatBas <- NA +#newH1[["FO"]]$FOgeoDatBas <- NA +#newH1[["FO"]]$FOgeoSou <- NA +#newH1[["FO"]]$FOgeaDatBas <- NA +#newH1[["FO"]]$FOgearSou <- NA +# Add columns to SS +#newH1[["SS"]]$SStimeTotalDatBas <- NA +#newH1[["SS"]]$SSnumTotalDatBas <- NA +# Add columns to SA +#newH1[["SA"]]$SAgeoDatBas <- NA +#newH1[["SA"]]$SAgeoSou <- NA +#newH1[["SA"]]$SAgeaDatBas <- NA +#newH1[["SA"]]$SAgearSou <- NA +#newH1[["SA"]]$SAtotWtMeaDatBas <- NA +# generate empty BV and FM +newH1[["FM"]]<-Pckg_survey_apiclus2_H1$FM +newH1[["BV"]]<-Pckg_survey_apiclus2_H1$BV + + +validateRDBESDataObject(newH1, strict = TRUE, verbose = TRUE) + +# Save the data +Pckg_SDAResources_agstrat_H1 <- newH1 +usethis::use_data(Pckg_SDAResources_agstrat_H1, overwrite = TRUE) + diff --git a/data-raw/getTablesInHierarchies.r b/data-raw/getTablesInHierarchies.r index ad5b5653..7f1d00b9 100644 --- a/data-raw/getTablesInHierarchies.r +++ b/data-raw/getTablesInHierarchies.r @@ -15,7 +15,8 @@ myHierarchyTables[["H6"]] <- c("DE", "SD", "OS", "FT", "FO", "LE", "SS", "SA", " #myHierarchyTables[["H7"]] <- c("DE", "SD", "OS", "LE", "SS", "SA", "FM", "BV") myHierarchyTables[["H7"]]<- c("DE", "SD", "OS", "SS", "LE", "SA", "FM", "BV") myHierarchyTables[["H8"]] <- c("DE", "SD", "TE", "VS", "FT", "LE", "SS", "SA", "FM", "BV") -myHierarchyTables[["H9"]] <- c("DE", "SD", "LO", "TE", "SS", "LE", "SA", "FM", "BV") +#myHierarchyTables[["H9"]] <- c("DE", "SD", "LO", "TE", "SS", "LE", "SA", "FM", "BV") +myHierarchyTables[["H9"]] <- c("DE", "SD", "LO", "TE", "SS", "SA" ,"LE" ,"FM", "BV") myHierarchyTables[["H10"]] <- c("DE", "SD", "VS", "TE", "FT", "FO", "SS", "SA", "FM", "BV") myHierarchyTables[["H11"]] <- c("DE", "SD", "LO", "TE", "FT", "LE", "SS", "SA", "FM", "BV") #myHierarchyTables[["H12"]] <- c("DE", "SD", "LO", "TE", "FT", "LE", "SS", "SA", "FM", "BV") diff --git a/data/DefaultFileNames.rda b/data/DefaultFileNames.rda index 5a14dc19..4c9f005b 100644 Binary files a/data/DefaultFileNames.rda and b/data/DefaultFileNames.rda differ diff --git a/data/H1Example.rda b/data/H1Example.rda index 3fad7c96..65e2f6ee 100644 Binary files a/data/H1Example.rda and b/data/H1Example.rda differ diff --git a/data/H7Example.rda b/data/H7Example.rda new file mode 100644 index 00000000..3350f8c7 Binary files /dev/null and b/data/H7Example.rda differ diff --git a/data/MadeUpData_for_SL_SA_tests_v1.rda b/data/MadeUpData_for_SL_SA_tests_v1.rda deleted file mode 100644 index 6383d973..00000000 Binary files a/data/MadeUpData_for_SL_SA_tests_v1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_agsrs_H1.rda b/data/Pckg_SDAResources_agsrs_H1.rda deleted file mode 100644 index 1e182f82..00000000 Binary files a/data/Pckg_SDAResources_agsrs_H1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_agstrat_H1.rda b/data/Pckg_SDAResources_agstrat_H1.rda index 9896086f..09d22092 100644 Binary files a/data/Pckg_SDAResources_agstrat_H1.rda and b/data/Pckg_SDAResources_agstrat_H1.rda differ diff --git a/data/Pckg_SDAResources_algebra_H1.rda b/data/Pckg_SDAResources_algebra_H1.rda deleted file mode 100644 index e3807e23..00000000 Binary files a/data/Pckg_SDAResources_algebra_H1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_coots_H1.rda b/data/Pckg_SDAResources_coots_H1.rda deleted file mode 100644 index 491ffe61..00000000 Binary files a/data/Pckg_SDAResources_coots_H1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_coots_multistage_H1.rda b/data/Pckg_SDAResources_coots_multistage_H1.rda deleted file mode 100644 index 12584f1f..00000000 Binary files a/data/Pckg_SDAResources_coots_multistage_H1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_gpa_H1.rda b/data/Pckg_SDAResources_gpa_H1.rda deleted file mode 100644 index cf7205a3..00000000 Binary files a/data/Pckg_SDAResources_gpa_H1.rda and /dev/null differ diff --git a/data/Pckg_SDAResources_schools_H1.rda b/data/Pckg_SDAResources_schools_H1.rda deleted file mode 100644 index 321f3172..00000000 Binary files a/data/Pckg_SDAResources_schools_H1.rda and /dev/null differ diff --git a/data/Pckg_survey_apiclus1_v2_H1.rda b/data/Pckg_survey_apiclus1_v2_H1.rda deleted file mode 100644 index ce88e9bd..00000000 Binary files a/data/Pckg_survey_apiclus1_v2_H1.rda and /dev/null differ diff --git a/data/Pckg_survey_apiclus2_v2_H1.rda b/data/Pckg_survey_apiclus2_v2_H1.rda deleted file mode 100644 index d8453b1e..00000000 Binary files a/data/Pckg_survey_apiclus2_v2_H1.rda and /dev/null differ diff --git a/data/icesSpecWoRMS.rda b/data/icesSpecWoRMS.rda index 2fc2875b..24694998 100644 Binary files a/data/icesSpecWoRMS.rda and b/data/icesSpecWoRMS.rda differ diff --git a/data/tablesInRDBESHierarchies.rda b/data/tablesInRDBESHierarchies.rda index bc40789f..f55710be 100644 Binary files a/data/tablesInRDBESHierarchies.rda and b/data/tablesInRDBESHierarchies.rda differ diff --git a/data/wormsAphiaRecord.rda b/data/wormsAphiaRecord.rda index 36d56b47..0cb02709 100644 Binary files a/data/wormsAphiaRecord.rda and b/data/wormsAphiaRecord.rda differ diff --git a/inst/extdata/H1_Example.zip b/inst/extdata/H1_Example.zip index 5fe4879d..473fc183 100644 Binary files a/inst/extdata/H1_Example.zip and b/inst/extdata/H1_Example.zip differ diff --git a/inst/extdata/HSL_Example.zip b/inst/extdata/HSL_Example.zip index d1122bd6..0c721354 100644 Binary files a/inst/extdata/HSL_Example.zip and b/inst/extdata/HSL_Example.zip differ diff --git a/man/H1Example.Rd b/man/H1Example.Rd index 1c18c7c1..c0e3f133 100644 --- a/man/H1Example.Rd +++ b/man/H1Example.Rd @@ -18,6 +18,7 @@ A list containing entries required for H1 RDBES data: \item{BV}{the Biological Variable data table} \item{VD}{the Vessel Details data table} \item{SL}{the Species List data table} +\item{IS}{the Individual Species table} } } \usage{ diff --git a/man/H5Example.Rd b/man/H5Example.Rd index b0163bcd..f8487000 100644 --- a/man/H5Example.Rd +++ b/man/H5Example.Rd @@ -18,6 +18,7 @@ A list containing entries required for H5 RDBES data: \item{BV}{the Biological Variable data table} \item{VD}{the Vessel Details data table} \item{SL}{the Species List data table} +\item{IS}{the Individual Species table} } } \usage{ diff --git a/man/H7Example.Rd b/man/H7Example.Rd new file mode 100644 index 00000000..f2aecf75 --- /dev/null +++ b/man/H7Example.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{H7Example} +\alias{H7Example} +\title{A dataset containing test RDBES data for H7 in the RDBESDataObject structure} +\format{ +A list containing entries required for H7 RDBES data: +\describe{ +\item{DE}{the Design data table} +\item{SD}{the Sampling Details data table} +\item{OS}{the Onshore Sample data table} +\item{LE}{the Landing Event data table} +\item{SS}{the Species Selection data table} +\item{SA}{the Sample data table} +\item{BV}{the Biological Variable data table} +\item{SL}{the Species List data table} +\item{IS}{the Individual Species table} +} +#' @source Richard Meitern @ Estonian Marine Institute, 2025 +} +\usage{ +H7Example +} +\description{ +This dataset does not have passed the RDBES upload checks, +hence the object might be somewhat invalid, however it resembles real data +from the Estonian Market Sampling for 2022 for 2 species +} +\keyword{datasets} diff --git a/man/H8ExampleEE1.Rd b/man/H8ExampleEE1.Rd index f65dd29e..3e2fa96a 100644 --- a/man/H8ExampleEE1.Rd +++ b/man/H8ExampleEE1.Rd @@ -17,10 +17,11 @@ A list containing entries required for H8 RDBES data: \item{BV}{the Biological Variable data table} \item{VD}{the Vessel Details data table} \item{SL}{the Species List data table} +\item{IS}{the Individual Species} \item{CL}{the Commertial Landing data table} \item{CE}{the Commertial Effort data table} } -#' @source Richard Meitern @ Estonian Marine Institute, 2023 +#' @source Richard Meitern @ Estonian Marine Institute, 2025 } \usage{ H8ExampleEE1 diff --git a/man/MadeUpData_for_SL_SA_tests_v1.Rd b/man/MadeUpData_for_SL_SA_tests_v1.Rd deleted file mode 100644 index e9589864..00000000 --- a/man/MadeUpData_for_SL_SA_tests_v1.Rd +++ /dev/null @@ -1,38 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{MadeUpData_for_SL_SA_tests_v1} -\alias{MadeUpData_for_SL_SA_tests_v1} -\title{A made-up dataset for testing manipulations of SA based on SL} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table} -\item{SD}{the Sampling Details data table} -\item{VS}{the Vessel Selection data table} -\item{FT}{the Fishing Trip data table} -\item{FO}{the Fishing Operation data table} -\item{SS}{the Species Selection data table. -Contains one row with keys equal to the SL keys} -\item{SA}{the Sample data table. Contains one species} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table. -Contains two species for the same SLcountry, SLinstitute, -SLspeciesListName, SLyear, SLcatchFraction, SLcommercialTaxon, -SLspeciesCode & SLcommercialTaxon == SLspeciesCode} -} -} -\usage{ -MadeUpData_for_SL_SA_tests_v1 -} -\description{ -This data set is created for testing the idea of manipulating Sample data (SA) -based on Species List (SL). It represents the simplest case for testing this -idea. The data set contains two species in SL for the same SLcountry, -SLinstitute, SLspeciesListName, SLyear, SLcatchFraction, SLcommercialTaxon, -SLspeciesCode & SLcommercialTaxon == SLspeciesCode. There is one species in -SA - one row in SS with keys equal to the SL keys. -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_agsrs_H1.Rd b/man/Pckg_SDAResources_agsrs_H1.Rd deleted file mode 100644 index bc075c0d..00000000 --- a/man/Pckg_SDAResources_agsrs_H1.Rd +++ /dev/null @@ -1,51 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_agsrs_H1} -\alias{Pckg_SDAResources_agsrs_H1} -\title{A RDBESDataObject converted from package SDAResources dataset agsrs} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains dummy values with exception of -Design-Variables in VS that match the book} -\item{SD}{the Sampling Details data table. Contains dummy values} -\item{VS}{the Vessel Selection data table. Contains core information of -data(agsrs), VSnumberSampled and VSnumberTotal set according to agsrs -and book pop values, VSunitName is set to a combination of original -agsrs$county, agsrs$state, agsrs$region and row numbers} -\item{FT}{the Fishing Trip data table. Contains dummy values} -\item{FO}{the Fishing Operation data table. Contains dummy values} -\item{SS}{the Species Selection data table. Contains dummy values} -\item{SA}{the Sample data table. Contains the variable measured -agsrs$acres92 in SAtotalWeightMeasured, SAsampleWeightMeasured and -SAconversionFactorMeasLive set to 1, and the domain information, -coded in SAarea} -\item{FM}{the Frequency Measure data table. Not provided} -\item{BV}{the Biological Variable data table. Not provided} -\item{VD}{the Vessel Details data table. Subset to the essential rows} -\item{SL}{the Species List data table. Subset to the essential rows} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_agsrs_H1 -} -\description{ -This data set is derived from the data(agsrs) used in Lohr examples 2.6, 2.7 -and 2.11 of SDA book. Information required for example 4.8 -(domain estimation) is also added to SA (farmcat <=> SAarea). -VSnumberSampled and VSnumberTotal set according to agsrs and book pop -values. VSunitName is set to a combination of original agsrs$county, -agsrs$state, agsrs$region and row numbers. Table SA contains the variable -measured agsrs$acres92 in SAtotalWeightMeasured, SAsampleWeightMeasured and -SAconversionFactorMeasLive set to 1. Table SA also contains the domain -information, coded in SAarea. Table DE, SD, FT and FO are for the most -dummy tables inserted to meet RDBES model requirements to be aggregated -during estimation tests. Values of mandatory fields have dummy values with -exception of Design-Variables in VS that match the book. BV, FM, CL, and CE -are not provided. SL and VD are subset to the essential rows. -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_agstrat_H1.Rd b/man/Pckg_SDAResources_agstrat_H1.Rd index 4738d4ed..6e2accf8 100644 --- a/man/Pckg_SDAResources_agstrat_H1.Rd +++ b/man/Pckg_SDAResources_agstrat_H1.Rd @@ -25,6 +25,7 @@ SAconversionFactorMeasLive set to 1} \item{BV}{the Biological Variable data table. Not provided} \item{VD}{the Vessel Details data table. Subset to the essential rows} \item{SL}{the Species List data table. Subset to the essential rows} +\item{IS}{the Individual Species table} } } \source{ diff --git a/man/Pckg_SDAResources_algebra_H1.Rd b/man/Pckg_SDAResources_algebra_H1.Rd deleted file mode 100644 index 36fcf056..00000000 --- a/man/Pckg_SDAResources_algebra_H1.Rd +++ /dev/null @@ -1,44 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_algebra_H1} -\alias{Pckg_SDAResources_algebra_H1} -\title{A RDBESDataObject converted from package SDAResources dataset algebra} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with -DEstratumName == "Pckg_SDAResources_algebra_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 299 child rows -(the 299 students observed), each associated to its cluster (class), -VSnumberTotalClusters is 187, VSnumberSampledClusters is 12, -VSnumberTotal is Missing} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final -data (in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final -data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the final -data (in SA)} -\item{SA}{the Sample data table. Each score is a SAsampleWeightMeasured} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_algebra_H1 -} -\description{ -This data set is derived from a fictional data for an SRS of 12 algebra -classes in a city, from a population of 187 classes. The design is 1-stage -cluster sampling with clusters of unequal sizes. Clusters are classes (class). -Clusters (psu) are unequal sized (Mi). In each cluster, all students are -selected (ssus, nrows). The total number of psus is known (187). The target -variable is score. -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_coots_H1.Rd b/man/Pckg_SDAResources_coots_H1.Rd deleted file mode 100644 index b22e636b..00000000 --- a/man/Pckg_SDAResources_coots_H1.Rd +++ /dev/null @@ -1,45 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_coots_H1} -\alias{Pckg_SDAResources_coots_H1} -\title{A RDBESDataObject converted from package SDAResources dataset coots} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with -DEstratumName == "Pckg_SDAResources_coots_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 368 child rows -(the 368 eggs/psus observed), each associated to its cluster (clutch), -VSnumberTotalClusters is not known, VSnumberTotal is csize} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -(in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final -data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the -final data (in SA)} -\item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured. -ATT volumes are *100000000 to meet type requirement (integer)} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_coots_H1 -} -\description{ -This data set is derived from the data(coots). The design is 2-stage cluster -sampling with clusters of unequal sizes and Npsu not known. Clusters are -clutches of eggs (nests) with at least 2 eggs. In each cluster, the volume -of two eggs is measured. Clusters (psu) are unequal sized. In each cluster, -2 eggs are selected (ssus) and measured. The total number of psus is not -known (a drawback in this example). It is assumed very large (fpc negligible). -The target variable is volume (others are available). -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_coots_multistage_H1.Rd b/man/Pckg_SDAResources_coots_multistage_H1.Rd deleted file mode 100644 index 87de17b1..00000000 --- a/man/Pckg_SDAResources_coots_multistage_H1.Rd +++ /dev/null @@ -1,46 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_coots_multistage_H1} -\alias{Pckg_SDAResources_coots_multistage_H1} -\title{A Multi-stage RDBESDataObject from package SDAResources dataset coots} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with -DEstratumName == "Pckg_SDAResources_coots_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 184 child rows -(the 184 clutches/psus observed), each associated to its cluster (clutch), -VSnumberTotal is not known, VSnumberSampled is 184} -\item{FT}{the Fishing Trip data table. Contains 368 child rows -(the 368 eggs/ssus measured), each associated to its vessel (clutch), -FTnumbersampled is 2, FTnumberTotal is csize} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final -data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the final -data (in SA)} -\item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured. -ATT volumes are *100000000 to meet type requirement (integer)} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_coots_multistage_H1 -} -\description{ -This data set is derived from the data(coots). The design is 2-stage cluster -sampling with clusters of unequal sizes and Npsu not known. Clusters are -clutches of eggs (nests) with at least 2 eggs. In each cluster, the volume -of two eggs is measured. Clusters (psu) are unequal sized. In each cluster, -2 eggs are selected (ssus) and measured. The total number of psus is not -known (a drawback in this example). It is assumed very large (fpc negligible). -The target variable is volume. -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_gpa_H1.Rd b/man/Pckg_SDAResources_gpa_H1.Rd deleted file mode 100644 index ac9e2b4a..00000000 --- a/man/Pckg_SDAResources_gpa_H1.Rd +++ /dev/null @@ -1,43 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_gpa_H1} -\alias{Pckg_SDAResources_gpa_H1} -\title{A RDBESDataObject converted from package SDAResources dataset gpa} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with -DEstratumName == "Pckg_SDAResources_gpa_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 20 child rows -(the 20 observations), each associated to its cluster (suite), -VSnumberTotalClusters is 100, VSnumberTotal is 4 because all elements in -cluster are sampled} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -(in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final -data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the final -data (in SA)} -\item{SA}{the Sample data table. Each gpa score is a -SAsampleWeightMeasured. ATT gpa scores are *100 to meet type requirement -(integer)} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_gpa_H1 -} -\description{ -This data set is derived from the data(gpa). The design is 1-stage cluster -sampling with clusters of equal sizes. Each cluster (suite) has 4 elements -with the same weight. The target variable is gpa. -} -\keyword{datasets} diff --git a/man/Pckg_SDAResources_schools_H1.Rd b/man/Pckg_SDAResources_schools_H1.Rd deleted file mode 100644 index 2c394a95..00000000 --- a/man/Pckg_SDAResources_schools_H1.Rd +++ /dev/null @@ -1,42 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_SDAResources_schools_H1} -\alias{Pckg_SDAResources_schools_H1} -\title{A RDBESDataObject converted from package SDAResources dataset schools} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with -DEstratumName == "Pckg_SDAResources_schools_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 200 child rows -(the 200 students observed), each associated to its cluster (schoolid), -VSnumberTotalClusters is 100, VSnumberTotal is Mi} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final data -(in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the -final data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the -final data (in SA)} -\item{SA}{the Sample data table. Each volume is a SAsampleWeightMeasured} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=SDAResources} -} -\usage{ -Pckg_SDAResources_schools_H1 -} -\description{ -This data set is derived from the data(schools). The design is 2-stage cluster -sampling with clusters of unequal sizes and Npsu not known. Clusters are -schools (schoolid). Clusters (psu) are unequal sized (Mi). In each cluster, -20 students are selected (ssus) and measured (nrows). The total number of -psus is known (75). The target variable is mathlevel. -} -\keyword{datasets} diff --git a/man/Pckg_survey_apiclus1_v2_H1.Rd b/man/Pckg_survey_apiclus1_v2_H1.Rd deleted file mode 100644 index 75560b10..00000000 --- a/man/Pckg_survey_apiclus1_v2_H1.Rd +++ /dev/null @@ -1,39 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_survey_apiclus1_v2_H1} -\alias{Pckg_survey_apiclus1_v2_H1} -\title{A RDBESDataObject converted from package survey dataset apiclus1} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with DEstratumName == "Pckg_SDAResources_apiclus1_v2_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 183 child rows (the 186 schools finally observed), each associated to its cluster (dname), VSnumberTotalClusters is 757, VSnumberTotal is the number of schools in the cluster (census), calibrated weights are provided as 1/pw in VSinclusionProbCluster} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final data (in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the final data (in SA)} -\item{SA}{the Sample data table. SAsampleWeightMeasured is enroll} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=survey} -} -\usage{ -Pckg_survey_apiclus1_v2_H1 -} -\description{ -This data set is derived from the Academic Performance Index computed for all -California schools based on standardized testing of students. The original -data sets contain information for all schools with at least 100 students and -for various probability samples of the data. The design is 1-stage cluster -sampling with clusters of unequal sizes. An SRS of 15 districts is selected -(psus) from the 757 districts in the population. All schools within district -are selected (ssus). The weights (pw) do not match 757/15 probably because -they have been calibrated. The target variable is enroll. -} -\keyword{datasets} diff --git a/man/Pckg_survey_apiclus2_H1.Rd b/man/Pckg_survey_apiclus2_H1.Rd index a6da46c1..65554feb 100644 --- a/man/Pckg_survey_apiclus2_H1.Rd +++ b/man/Pckg_survey_apiclus2_H1.Rd @@ -18,6 +18,7 @@ A list containing entries required for H1 RDBES data: \item{BV}{the Biological Variable data table} \item{VD}{the Vessel Details data table} \item{SL}{the Species List data table} +\item{IS}{the Individual Species table} } } \source{ diff --git a/man/Pckg_survey_apiclus2_v2_H1.Rd b/man/Pckg_survey_apiclus2_v2_H1.Rd deleted file mode 100644 index 312d608b..00000000 --- a/man/Pckg_survey_apiclus2_v2_H1.Rd +++ /dev/null @@ -1,40 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/data.R -\docType{data} -\name{Pckg_survey_apiclus2_v2_H1} -\alias{Pckg_survey_apiclus2_v2_H1} -\title{A Clustered RDBESDataObject converted from package survey dataset apiclus2} -\format{ -A list containing entries required for H1 RDBES data: -\describe{ -\item{DE}{the Design data table. Contains 1 DE row with DEstratumName == "Pckg_SDAResources_apiclus2_v2_H1"} -\item{SD}{the Sampling Details data table. Contains 1 child SD row} -\item{VS}{the Vessel Selection data table. Contains 126 child rows (the 126 schools finally observed), each associated to its cluster (dname), VSnumberTotalClusters is 757, VSnumberTotal is 1...5 schools sampled} -\item{FT}{the Fishing Trip data table. Just 1:1 links to the final data (in SA)} -\item{FO}{the Fishing Operation data table. Just 1:1 links to the final data (in SA)} -\item{SS}{the Species Selection data table. Just 1:1 links to the final data (in SA)} -\item{SA}{the Sample data table. SAsampleWeightMeasured is enroll (note the 4 NAs)} -\item{FM}{the Frequency Measure data table} -\item{BV}{the Biological Variable data table} -\item{VD}{the Vessel Details data table} -\item{SL}{the Species List data table} -} -} -\source{ -\url{https://CRAN.R-project.org/package=survey} -} -\usage{ -Pckg_survey_apiclus2_v2_H1 -} -\description{ -This data set is derived from the Academic Performance Index computed for all -California schools based on standardized testing of students. The original -data sets contain information for all schools with at least 100 students and -for various probability samples of the data. The design is 2-stage cluster -sampling with clusters of unequal sizes. An SRS of 40 districts is selected -(psus) from the 757 districts in the population and then up to 5 schools (min -\enumerate{ -\item were selected from each district (ssus). The target variable is enroll - note that it contains 4 NA values. -} -} -\keyword{datasets} diff --git a/man/Pckg_survey_apistrat_H1.Rd b/man/Pckg_survey_apistrat_H1.Rd index faec1cf0..daf65ad3 100644 --- a/man/Pckg_survey_apistrat_H1.Rd +++ b/man/Pckg_survey_apistrat_H1.Rd @@ -25,6 +25,7 @@ final data (in SA)} \item{BV}{the Biological Variable data table} \item{VD}{the Vessel Details data table. Contains 311 child rows} \item{SL}{the Species List data table. Contains 1 child row} +\item{IS}{the Individual Species table} } } \source{ diff --git a/man/createRDBESDataObject.Rd b/man/createRDBESDataObject.Rd index 8cddf99d..783496f5 100644 --- a/man/createRDBESDataObject.Rd +++ b/man/createRDBESDataObject.Rd @@ -34,7 +34,7 @@ in. Default is \code{TRUE}.} out, or FALSE if you don't. The default is FALSE.} \item{...}{parameters passed to validateRDBESDataObject -if input is list of data frames e.g.\code{strict=FALSE}} +e.g.\code{strict=FALSE}} } \value{ A RDBESDataObject diff --git a/man/createRDBESEstObject.Rd b/man/createRDBESEstObject.Rd index fd88f4a4..c4d6672a 100644 --- a/man/createRDBESEstObject.Rd +++ b/man/createRDBESEstObject.Rd @@ -2,21 +2,22 @@ % Please edit documentation in R/createRDBESEstObject.R \name{createRDBESEstObject} \alias{createRDBESEstObject} -\title{Creates an rdbesEStObject from prepared RDBES data} +\title{Creates an RDBESEstObject from RDBES data} \usage{ createRDBESEstObject( rdbesPrepObject, hierarchyToUse = NULL, stopTable = NULL, verbose = FALSE, - strict = TRUE + strict = TRUE, + incDesignVariables = TRUE ) } \arguments{ -\item{rdbesPrepObject}{The prepared RDBES object that should be used to +\item{rdbesPrepObject}{The RDBES object that should be used to create an estimation object} -\item{hierarchyToUse}{The upper RDBES hiearchy to use} +\item{hierarchyToUse}{The upper RDBES hierarchy to use} \item{stopTable}{(Optional) The table to stop at in the RDBES hierarchy. If specified, only tables up to and including this table will be included in the @@ -28,21 +29,17 @@ out, or FALSE if you don't. The default is FALSE.} \item{strict}{(Optional) This function validates its input data - should the validation be strict? The default is TRUE.} + +\item{incDesignVariables}{(Optional) Should the design variables be included? +The default is TRUE.} } \value{ -An object of class RDBESEstObject ready for use in design based -estimation - An object of class RDBESEstObject ready for use in design based estimation } \description{ -Creates an rdbesEStObject from prepared RDBES data +Creates an RDBESEstObject from RDBES data } \examples{ -#Creates an rdbesEStObject from prepared RDBES data -myH1EstObj <- createRDBESEstObject(H1Example, 1, "SA") - - myH1EstObj <- createRDBESEstObject(H1Example, 1, "SA") } diff --git a/man/doEstimationRatio.Rd b/man/doEstimationRatio.Rd index c38a2005..215d75a3 100644 --- a/man/doEstimationRatio.Rd +++ b/man/doEstimationRatio.Rd @@ -7,6 +7,7 @@ doEstimationRatio( RDBESDataObj, targetValue = "LengthComp", + raiseVar = "Weight", classUnits = "mm", classBreaks = c(100, 300, 10), LWparam = NULL, @@ -19,6 +20,8 @@ doEstimationRatio( \item{targetValue}{A character string specifying the type of composition to estimate. Options are "LengthComp" or "AgeComp".} +\item{raiseVar}{The variable used to construct the ratio.} + \item{classUnits}{Units of the class intervals for length or age, typically "mm" for millimeters or "cm" for centimeters. Used in defining class intervals.} \item{classBreaks}{A numeric vector of three values: minimum value, maximum value, and class width (e.g., c(100, 300, 10)). Defines the class intervals for grouping lengths or ages.} diff --git a/man/fixSLids.Rd b/man/fixSLids.Rd index 64020b14..69d5b7f5 100644 --- a/man/fixSLids.Rd +++ b/man/fixSLids.Rd @@ -4,7 +4,7 @@ \alias{fixSLids} \title{Fixes SLid in SL table (facilitating SS-SL joins).} \usage{ -fixSLids(RDBESDataObject, verbose = FALSE, strict = TRUE) +fixSLids(RDBESDataObject, verbose = FALSE, validate = TRUE, strict = TRUE) } \arguments{ \item{RDBESDataObject}{A valid RDBESDataObject} @@ -12,7 +12,10 @@ fixSLids(RDBESDataObject, verbose = FALSE, strict = TRUE) \item{verbose}{(Optional) Set to TRUE if you want informative text printed out, or FALSE if you don't. The default is FALSE.} -\item{strict}{(Optional) This function validates its input data - should +\item{validate}{(Optional) Should the function validate its input data? +The default is TRUE.} + +\item{strict}{(Optional) If the function validates its input data - should the validation be strict? The default is TRUE.} } \value{ diff --git a/man/icesSpecWoRMS.Rd b/man/icesSpecWoRMS.Rd index a9157b27..7a8e96fe 100644 --- a/man/icesSpecWoRMS.Rd +++ b/man/icesSpecWoRMS.Rd @@ -3,20 +3,20 @@ \docType{data} \name{icesSpecWoRMS} \alias{icesSpecWoRMS} -\title{A dataset containing a copy of the icesSpecWoRMS code list. The latest -code list data can be downloaded from https://vocab.ices.dk/} +\title{ICES Species (WoRMS) code list snapshot} \format{ -A data frame +A data frame with the following columns: \describe{ -\item{GUID}{Globally unique identifier assigned by ICES} -\item{Key}{AphiaID} -\item{Description}{Scientific name} -\item{LongDescription}{Ignore} -\item{Modified}{Date when the code was last updated} -\item{Deprecated}{IS this still a valid code. If FALSE the code is -no longer valid within ICES.} -\item{DateDownloaded}{E.g. "2023-10-18" } -... +\item{CodeTypeGUID}{GUID of the code type in ICES Vocabulary (e.g. the 'Species (WoRMS)' list).} +\item{CodeTypeID}{Numeric ID of the code type.} +\item{Guid}{GUID identifying this code record.} +\item{Id}{Numeric ID of this code record.} +\item{Key}{AphiaID (numeric key from WoRMS).} +\item{Description}{Scientific name.} +\item{LongDescription}{(If present) additional description; often not used.} +\item{Modified}{Datetime the record was last modified at ICES.} +\item{Deprecated}{Logical; whether this code is deprecated at ICES.} +\item{DateDownloaded}{Date the snapshot was downloaded, e.g. "2023-10-18".} } } \source{ @@ -26,7 +26,7 @@ no longer valid within ICES.} icesSpecWoRMS } \description{ -A dataset containing a copy of the icesSpecWoRMS code list. The latest -code list data can be downloaded from https://vocab.ices.dk/ +A dataset containing a copy of the ICES 'Species (WoRMS)' code list. +The latest code list can be downloaded from https://vocab.ices.dk/. } \keyword{datasets} diff --git a/man/importRDBESDataCSV.Rd b/man/importRDBESDataCSV.Rd index 055fc825..9d564a49 100644 --- a/man/importRDBESDataCSV.Rd +++ b/man/importRDBESDataCSV.Rd @@ -7,7 +7,8 @@ importRDBESDataCSV( rdbesExtractPath = NULL, listOfFileNames = NULL, - castToCorrectDataTypes = TRUE + castToCorrectDataTypes = TRUE, + ... ) } \arguments{ diff --git a/man/importRDBESDataZIP.Rd b/man/importRDBESDataZIP.Rd index 27646b57..d1263717 100644 --- a/man/importRDBESDataZIP.Rd +++ b/man/importRDBESDataZIP.Rd @@ -4,7 +4,12 @@ \alias{importRDBESDataZIP} \title{Import RDBES Downloaded Data} \usage{ -importRDBESDataZIP(filenames, castToCorrectDataTypes = TRUE, Hierarchy = NULL) +importRDBESDataZIP( + filenames, + castToCorrectDataTypes = TRUE, + Hierarchy = NULL, + ... +) } \arguments{ \item{filenames}{\itemize{ diff --git a/man/getSubSampleLevel.Rd b/man/prepareSubSampleLevelLookup.Rd similarity index 55% rename from man/getSubSampleLevel.Rd rename to man/prepareSubSampleLevelLookup.Rd index 29c6951c..6e42f3b8 100644 --- a/man/getSubSampleLevel.Rd +++ b/man/prepareSubSampleLevelLookup.Rd @@ -1,20 +1,16 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/createRDBESEstObject.R -\name{getSubSampleLevel} -\alias{getSubSampleLevel} +\name{prepareSubSampleLevelLookup} +\alias{prepareSubSampleLevelLookup} \title{Private function to get sub-sample level and top-level SAid for SA data} \usage{ -getSubSampleLevel(SAdata, SAidToCheck, subSampleLevel = 1) +prepareSubSampleLevelLookup(SAdata) } \arguments{ \item{SAdata}{The SA data to check} - -\item{SAidToCheck}{The SAid to check} - -\item{subSampleLevel}{The currrent level of sampling} } \value{ -Whoever revises this function please specify what it returns here +A data.table with SAid, topLevelSAid and subSampleLevel } \description{ Private function to get sub-sample level and top-level SAid for SA data diff --git a/man/procRDBESEstObjUppHier.Rd b/man/procRDBESEstObjUppHier.Rd index 7a4dca81..d06a2843 100644 --- a/man/procRDBESEstObjUppHier.Rd +++ b/man/procRDBESEstObjUppHier.Rd @@ -17,7 +17,7 @@ procRDBESEstObjUppHier( \arguments{ \item{myRDBESEstObj}{An RDBESEstObj to add data to} -\item{rdbesPrepObject}{A prepared RDBESRawObj} +\item{rdbesPrepObject}{A prepared RDBESDataObject} \item{hierarchyToUse}{The hierarchy we are using} @@ -28,7 +28,7 @@ procRDBESEstObjUppHier( \item{verbose}{logical. Output messages to console.} } \value{ -Whoever revises this function please specify what it returns here +A partial RDBESEstObject with the data from the upper hierarchy } \description{ Private function to process the upper hierarchies when creating diff --git a/man/upperTblData.Rd b/man/upperTblData.Rd index 8c94136d..1ae01aae 100644 --- a/man/upperTblData.Rd +++ b/man/upperTblData.Rd @@ -35,7 +35,6 @@ NB! running on the RDBESDataObject will work properly if it is sorted by default in the correct order for a spesific hierarchy. } \examples{ - # it is important to run these functions only on sorted RDBESDataObject RDBEScore:::upperTblData("SAid", c(1), sort(H8ExampleEE1), "DE", verbose = TRUE) DE <- data.table::data.table(DEid = c(1, 2)) diff --git a/man/validateRDBESDataObject.Rd b/man/validateRDBESDataObject.Rd index d28a5ff7..5bbe314d 100644 --- a/man/validateRDBESDataObject.Rd +++ b/man/validateRDBESDataObject.Rd @@ -29,9 +29,9 @@ care. Default value is FALSE.} \item{verbose}{(Optional) Set to TRUE if you want informative text printed out, or FALSE if you don't. The default is FALSE.} -\item{strict}{(Optional) Set to TRUE if you want to be sure all columns -are present in the data, set to FALSE if you only want to check that -essential columns are present. The default is TRUE.} +\item{strict}{(Optional) Set to TRUE if you want an error if validation +fails, set to FALSE if you want only a warning to be issued. The default +is TRUE.} } \value{ Returns objectToCheck diff --git a/man/wormsAphiaRecord.Rd b/man/wormsAphiaRecord.Rd index 4305a292..12cfc251 100644 --- a/man/wormsAphiaRecord.Rd +++ b/man/wormsAphiaRecord.Rd @@ -25,7 +25,7 @@ A data frame \item{order}{E.g. "Spirularia" } \item{family}{E.g. "Cerianthidae" } \item{genus}{E.g. NA "Cerianthus"} -\item{citation }{E.g. "Molodtsova, T. (2023). World List of Ceriantharia. +\item{citation}{E.g. "Molodtsova, T. (2023). World List of Ceriantharia. Cerianthidae Milne Edwards & Haime, 1851. Accessed through: "... } \item{lsid}{internal database identifier} \item{isMarine}{E.g. 1 } diff --git a/package_overview.Rmd b/package_overview.Rmd index fdd051ee..f1570360 100644 --- a/package_overview.Rmd +++ b/package_overview.Rmd @@ -63,7 +63,7 @@ browseVignettes(package = "RDBEScore") It can directly import the `.zip` archive from the RDBES download containing all mandatory hierarchy tables plus VD and SL: ```{r} -importedH1 <- createRDBESDataObject(input = "./vignettes/vignetteData/H1_2023_10_16.zip") +importedH1 <- createRDBESDataObject(input = "./data-raw/exampleData/H1_2025_02_11.zip") #print the not NULL table names names(importedH1[!unlist(lapply(importedH1, is.null))]) ``` @@ -84,9 +84,9 @@ importedH1 It can import the CL, CE, VD or SL tables `.zip` archives, but will include all other tables as `NULL`: ```{r} -importedSL <- createRDBESDataObject(input = "./vignettes/vignetteData/HSL_2023_10_16.zip") +importedH5 <- createRDBESDataObject(input = "./data-raw/exampleData/H5_2025_02_11.zip") #print the not NULL table names -importedSL +importedH5 ``` ## Importing a List of Data Frames @@ -95,8 +95,10 @@ It can also import a `list` object containing data frames (or data.tables). Howe ```{r} #list of data frames -listOfDfsH1 <- readRDS("./vignettes/vignetteData/H1_2023_10_19.rds") +listOfDfsH1 <- list(DE = as.data.frame(H1Example$DE), + SD = as.data.frame(H1Example$SD)) importedList <- createRDBESDataObject(listOfDfsH1) + ``` ## Object class RDBESDataObject @@ -125,12 +127,10 @@ myValues <- c("ZW","ZWBZH","ZWVFA" ) myFilteredObject <- filterRDBESDataObject(H1Example, fieldsToFilter = myFields, - valuesToFilter = myValues ) + valuesToFilter = myValues) # Number of rows in each non-null table -unlist(summary(myFilteredObject)$rows) - -validateRDBESDataObject(myFilteredObject, verbose = FALSE) +myFilteredObject ``` ## Remowing Unlinked Data diff --git a/tests/testthat/h1_v_20250211/H1_Example.zip b/tests/testthat/h1_v_20250211/H1_Example.zip index 60f4b6a0..ece83310 100644 Binary files a/tests/testthat/h1_v_20250211/H1_Example.zip and b/tests/testthat/h1_v_20250211/H1_Example.zip differ diff --git a/tests/testthat/h1_v_20250211/H1_Example_fd.zip b/tests/testthat/h1_v_20250211/H1_Example_fd.zip index 5fe4879d..6ef83961 100644 Binary files a/tests/testthat/h1_v_20250211/H1_Example_fd.zip and b/tests/testthat/h1_v_20250211/H1_Example_fd.zip differ diff --git a/tests/testthat/h1_v_20250211/H1_H2_Example_fd.zip b/tests/testthat/h1_v_20250211/H1_H2_Example_fd.zip index 07d85290..b057c19b 100644 Binary files a/tests/testthat/h1_v_20250211/H1_H2_Example_fd.zip and b/tests/testthat/h1_v_20250211/H1_H2_Example_fd.zip differ diff --git a/tests/testthat/h1_v_20250211/HSL_Example.zip b/tests/testthat/h1_v_20250211/HSL_Example.zip index d1122bd6..76ac4658 100644 Binary files a/tests/testthat/h1_v_20250211/HSL_Example.zip and b/tests/testthat/h1_v_20250211/HSL_Example.zip differ diff --git a/tests/testthat/h1_v_20250211/HVD_Example.zip b/tests/testthat/h1_v_20250211/HVD_Example.zip index c2922663..e559a045 100644 Binary files a/tests/testthat/h1_v_20250211/HVD_Example.zip and b/tests/testthat/h1_v_20250211/HVD_Example.zip differ diff --git a/tests/testthat/h1_v_20250211/IndividualSpecies.csv b/tests/testthat/h1_v_20250211/IndividualSpeciesInSpeciesList.csv similarity index 100% rename from tests/testthat/h1_v_20250211/IndividualSpecies.csv rename to tests/testthat/h1_v_20250211/IndividualSpeciesInSpeciesList.csv diff --git a/tests/testthat/h1_v_20250211/ZW_1965_WGRDBES-EST_TEST_1/IndividualSpecies.csv b/tests/testthat/h1_v_20250211/ZW_1965_WGRDBES-EST_TEST_1/IndividualSpeciesInSpeciesList.csv similarity index 100% rename from tests/testthat/h1_v_20250211/ZW_1965_WGRDBES-EST_TEST_1/IndividualSpecies.csv rename to tests/testthat/h1_v_20250211/ZW_1965_WGRDBES-EST_TEST_1/IndividualSpeciesInSpeciesList.csv diff --git a/tests/testthat/h5_v_20250211/IndividualSpecies.csv b/tests/testthat/h5_v_20250211/IndividualSpeciesInSpeciesList.csv similarity index 100% rename from tests/testthat/h5_v_20250211/IndividualSpecies.csv rename to tests/testthat/h5_v_20250211/IndividualSpeciesInSpeciesList.csv diff --git a/tests/testthat/h7_v_1_19_18/2022_FPN_FPE_H7.zip b/tests/testthat/h7_v_1_19_18/2022_FPN_FPE_H7.zip deleted file mode 100644 index c6dbb406..00000000 Binary files a/tests/testthat/h7_v_1_19_18/2022_FPN_FPE_H7.zip and /dev/null differ diff --git a/tests/testthat/h7_v_1_19_18/2023_10_16_112208.zip b/tests/testthat/h7_v_1_19_18/2023_10_16_112208.zip deleted file mode 100644 index c39848fc..00000000 Binary files a/tests/testthat/h7_v_1_19_18/2023_10_16_112208.zip and /dev/null differ diff --git a/tests/testthat/h7_v_1_19_18/BiologicalVariable.csv b/tests/testthat/h7_v_1_19_18/BiologicalVariable.csv deleted file mode 100644 index 2239bb42..00000000 --- a/tests/testthat/h7_v_1_19_18/BiologicalVariable.csv +++ /dev/null @@ -1,541 +0,0 @@ -BVid,SAid,FMid,BVrecordType,BVnationalUniqueFishId,BVstateOfProcessing,BVpresentation,BVstratification,BVstratumName,BVtypeMeasured,BVvalueMeasured,BVvalueUnitOrScale,BVmethod,BVmeasurementEquipment,BVaccuracy,BVcertaintyQualitative,BVcertaintyQuantitative,BVconversionFactorAssessment,BVtypeAssessment,BVnumberTotal,BVnumberSampled,BVselectionProb,BVinclusionProb,BVselectionMethod,BVunitName,BVsampler -7363787,,4040142,BV,1,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363788,,4040142,BV,2,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363789,,4040143,BV,19,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363790,,4040143,BV,20,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363791,,4040144,BV,3,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363792,,4040144,BV,4,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363793,,4040145,BV,5,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363794,,4040145,BV,6,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363795,,4040146,BV,7,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363796,,4040146,BV,8,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363797,,4040147,BV,10,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363798,,4040147,BV,9,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363799,,4040148,BV,11,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363800,,4040148,BV,12,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363801,,4040149,BV,13,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363802,,4040149,BV,14,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363803,,4040150,BV,15,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363804,,4040150,BV,16,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363805,,4040151,BV,17,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363806,,4040151,BV,18,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363807,,4040152,BV,21,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363808,,4040152,BV,22,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363809,,4040153,BV,23,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363810,,4040153,BV,24,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363811,,4040154,BV,25,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363812,,4040154,BV,26,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363813,,4040155,BV,27,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363814,,4040155,BV,28,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363815,,4040156,BV,29,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363816,,4040156,BV,30,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363817,,4040157,BV,31,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363818,,4040157,BV,32,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363819,,4040158,BV,33,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363820,,4040158,BV,34,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363821,,4040159,BV,35,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363822,,4040159,BV,36,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363823,,4040160,BV,37,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363824,,4040160,BV,38,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363825,,4040161,BV,39,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363826,,4040161,BV,40,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363827,,4040162,BV,41,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363828,,4040162,BV,42,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363829,,4040163,BV,43,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363830,,4040163,BV,44,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363831,,4040164,BV,45,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363832,,4040164,BV,46,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363833,,4040165,BV,47,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363834,,4040165,BV,48,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363835,,4040166,BV,49,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363836,,4040166,BV,50,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363837,,4040167,BV,51,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363838,,4040167,BV,52,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363839,,4040168,BV,53,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363840,,4040168,BV,54,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363841,,4040169,BV,55,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363842,,4040169,BV,56,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363843,,4040170,BV,57,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363844,,4040170,BV,58,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363845,,4040171,BV,59,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363846,,4040171,BV,60,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363847,,4040172,BV,61,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363848,,4040172,BV,62,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363849,,4040173,BV,63,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363850,,4040173,BV,64,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363851,,4040174,BV,65,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363852,,4040174,BV,66,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363853,,4040175,BV,67,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363854,,4040175,BV,68,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363855,,4040176,BV,69,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363856,,4040176,BV,70,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363857,,4040177,BV,71,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363858,,4040177,BV,72,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363859,,4040178,BV,73,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363860,,4040178,BV,74,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363861,,4040179,BV,75,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363862,,4040179,BV,76,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363863,,4040180,BV,77,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363864,,4040180,BV,78,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363865,,4040181,BV,79,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363866,,4040181,BV,80,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363867,,4040182,BV,81,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363868,,4040182,BV,82,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363869,,4040183,BV,83,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363870,,4040183,BV,84,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363871,,4040184,BV,85,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363872,,4040184,BV,86,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363873,,4040185,BV,87,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363874,,4040185,BV,88,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363875,,4040186,BV,89,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363876,,4040186,BV,90,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363877,,4040187,BV,91,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363878,,4040187,BV,92,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363879,,4040188,BV,93,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363880,,4040188,BV,94,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363881,,4040189,BV,95,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363882,,4040189,BV,96,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363883,,4040190,BV,97,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363884,,4040190,BV,98,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363885,,4040191,BV,100,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363886,,4040191,BV,99,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363887,,4040192,BV,101,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363888,,4040192,BV,102,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363889,,4040193,BV,103,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363890,,4040193,BV,104,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363891,,4040194,BV,105,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363892,,4040194,BV,106,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363893,,4040195,BV,107,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363894,,4040195,BV,108,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363895,,4040196,BV,109,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363896,,4040196,BV,110,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363897,,4040197,BV,111,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363898,,4040197,BV,112,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363899,,4040198,BV,113,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363900,,4040198,BV,114,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363901,,4040199,BV,115,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363902,,4040199,BV,116,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363903,,4040200,BV,117,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363904,,4040200,BV,118,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363905,,4040201,BV,119,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363906,,4040201,BV,120,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363907,,4040202,BV,121,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363908,,4040202,BV,122,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363909,,4040203,BV,123,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363910,,4040203,BV,124,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363911,,4040204,BV,125,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363912,,4040204,BV,126,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363913,,4040205,BV,127,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363914,,4040205,BV,128,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363915,,4040206,BV,129,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363916,,4040206,BV,130,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363917,,4040207,BV,131,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363918,,4040207,BV,132,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363919,,4040208,BV,133,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363920,,4040208,BV,134,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363921,,4040209,BV,135,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363922,,4040209,BV,136,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363923,,4040210,BV,137,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363924,,4040210,BV,138,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363925,,4040211,BV,139,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363926,,4040211,BV,140,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363927,,4040212,BV,141,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363928,,4040212,BV,142,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363929,,4040213,BV,143,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363930,,4040213,BV,144,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363931,,4040214,BV,145,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363932,,4040214,BV,146,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363933,,4040215,BV,147,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363934,,4040215,BV,148,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363935,,4040216,BV,149,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363936,,4040216,BV,150,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363937,,4040217,BV,151,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363938,,4040217,BV,152,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363939,,4040218,BV,153,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363940,,4040218,BV,154,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363941,,4040219,BV,155,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363942,,4040219,BV,156,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363943,,4040220,BV,157,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363944,,4040220,BV,158,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363945,,4040221,BV,159,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363946,,4040221,BV,160,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363947,,4040222,BV,161,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363948,,4040222,BV,162,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363949,,4040223,BV,163,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363950,,4040223,BV,164,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363951,,4040224,BV,165,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363952,,4040224,BV,166,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363953,,4040225,BV,167,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363954,,4040225,BV,168,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363955,,4040226,BV,169,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363956,,4040226,BV,170,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363957,,4040227,BV,171,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363958,,4040227,BV,172,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363959,,4040228,BV,173,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363960,,4040228,BV,174,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363961,,4040229,BV,175,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363962,,4040229,BV,176,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363963,,4040230,BV,177,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363964,,4040230,BV,178,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363965,,4040231,BV,179,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363966,,4040231,BV,180,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363967,,4040232,BV,199,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363968,,4040232,BV,200,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363969,,4040233,BV,181,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363970,,4040233,BV,182,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363971,,4040234,BV,183,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363972,,4040234,BV,184,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363973,,4040235,BV,185,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363974,,4040235,BV,186,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363975,,4040236,BV,187,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363976,,4040236,BV,188,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363977,,4040237,BV,189,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363978,,4040237,BV,190,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363979,,4040238,BV,191,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363980,,4040238,BV,192,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363981,,4040239,BV,193,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363982,,4040239,BV,194,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363983,,4040240,BV,195,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363984,,4040240,BV,196,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363985,,4040241,BV,197,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363986,,4040241,BV,198,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363987,,4040242,BV,201,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363988,,4040242,BV,202,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363989,,4040243,BV,203,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363990,,4040243,BV,204,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363991,,4040244,BV,205,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363992,,4040244,BV,206,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363993,,4040245,BV,207,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363994,,4040245,BV,208,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363995,,4040246,BV,209,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363996,,4040246,BV,210,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363997,,4040247,BV,211,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363998,,4040247,BV,212,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363999,,4040248,BV,213,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364000,,4040248,BV,214,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364001,,4040249,BV,215,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364002,,4040249,BV,216,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364003,,4040250,BV,217,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364004,,4040250,BV,218,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364005,,4040251,BV,219,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364006,,4040251,BV,220,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364007,,4040252,BV,221,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364008,,4040252,BV,222,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364009,,4040253,BV,223,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364010,,4040253,BV,224,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364011,,4040254,BV,225,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364012,,4040254,BV,226,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364013,,4040255,BV,227,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364014,,4040255,BV,228,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364015,,4040256,BV,229,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364016,,4040256,BV,230,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364017,,4040257,BV,231,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364018,,4040257,BV,232,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364019,,4040258,BV,233,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364020,,4040258,BV,234,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364021,,4040259,BV,235,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364022,,4040259,BV,236,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364023,,4040260,BV,237,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364024,,4040260,BV,238,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364025,,4040261,BV,239,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364026,,4040261,BV,240,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364027,,4040262,BV,241,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364028,,4040262,BV,242,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364029,,4040263,BV,243,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364030,,4040263,BV,244,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364031,,4040264,BV,245,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364032,,4040264,BV,246,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364033,,4040265,BV,247,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364034,,4040265,BV,248,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364035,,4040266,BV,249,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364036,,4040266,BV,250,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364037,,4040267,BV,251,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364038,,4040267,BV,252,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364039,,4040268,BV,253,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364040,,4040268,BV,254,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364041,,4040269,BV,255,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364042,,4040269,BV,256,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364043,,4040270,BV,257,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364044,,4040270,BV,258,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364045,,4040271,BV,259,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364046,,4040271,BV,260,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364047,,4040272,BV,261,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364048,,4040272,BV,262,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364049,,4040273,BV,263,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364050,,4040273,BV,264,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364051,,4040274,BV,265,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364052,,4040274,BV,266,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364053,,4040275,BV,267,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364054,,4040275,BV,268,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364055,,4040276,BV,269,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364056,,4040276,BV,270,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364057,,4040277,BV,271,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364058,,4040277,BV,272,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364059,,4040278,BV,273,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364060,,4040278,BV,274,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364061,,4040279,BV,275,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364062,,4040279,BV,276,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364063,,4040280,BV,277,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364064,,4040280,BV,278,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364065,,4040281,BV,279,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364066,,4040281,BV,280,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364067,,4040282,BV,281,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364068,,4040282,BV,282,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364069,,4040283,BV,283,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364070,,4040283,BV,284,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364071,,4040284,BV,285,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364072,,4040284,BV,286,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364073,,4040285,BV,287,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364074,,4040285,BV,288,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364075,,4040286,BV,289,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364076,,4040286,BV,290,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364077,,4040287,BV,291,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364078,,4040287,BV,292,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364079,,4040288,BV,293,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364080,,4040288,BV,294,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364081,,4040289,BV,295,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364082,,4040289,BV,296,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364083,,4040290,BV,297,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364084,,4040290,BV,298,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364085,,4040291,BV,299,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364086,,4040291,BV,300,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364087,,4040292,BV,301,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364088,,4040292,BV,302,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364089,,4040293,BV,303,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364090,,4040293,BV,304,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364091,,4040294,BV,305,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364092,,4040294,BV,306,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364093,,4040295,BV,307,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364094,,4040295,BV,308,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364095,,4040296,BV,309,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364096,,4040296,BV,310,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364097,,4040297,BV,311,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364098,,4040297,BV,312,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364099,,4040298,BV,313,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364100,,4040298,BV,314,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364101,,4040299,BV,315,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364102,,4040299,BV,316,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364103,,4040300,BV,317,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364104,,4040300,BV,318,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364105,,4040301,BV,319,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364106,,4040301,BV,320,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364107,,4040302,BV,321,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364108,,4040302,BV,322,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364109,,4040303,BV,323,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364110,,4040303,BV,324,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364111,,4040304,BV,325,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364112,,4040304,BV,326,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364113,,4040305,BV,327,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364114,,4040305,BV,328,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364115,,4040306,BV,329,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364116,,4040306,BV,330,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364117,,4040307,BV,331,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364118,,4040307,BV,332,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364119,,4040308,BV,333,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364120,,4040308,BV,334,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364121,,4040309,BV,335,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364122,,4040309,BV,336,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364123,,4040310,BV,337,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364124,,4040310,BV,338,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364125,,4040311,BV,339,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364126,,4040311,BV,340,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364127,,4040312,BV,341,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364128,,4040312,BV,342,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364129,,4040313,BV,343,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364130,,4040313,BV,344,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364131,,4040314,BV,345,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364132,,4040314,BV,346,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364133,,4040315,BV,347,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364134,,4040315,BV,348,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364135,,4040316,BV,349,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364136,,4040316,BV,350,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364137,,4040317,BV,351,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364138,,4040317,BV,352,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364139,,4040318,BV,353,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364140,,4040318,BV,354,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364141,,4040319,BV,355,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364142,,4040319,BV,356,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364143,,4040320,BV,357,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364144,,4040320,BV,358,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364145,,4040321,BV,359,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364146,,4040321,BV,360,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364147,,4040322,BV,361,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364148,,4040322,BV,362,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364149,,4040323,BV,363,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364150,,4040323,BV,364,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364151,,4040324,BV,365,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364152,,4040324,BV,366,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364153,,4040325,BV,367,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364154,,4040325,BV,368,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364155,,4040326,BV,369,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364156,,4040326,BV,370,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364157,,4040327,BV,371,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364158,,4040327,BV,372,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364159,,4040328,BV,373,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364160,,4040328,BV,374,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364161,,4040329,BV,375,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364162,,4040329,BV,376,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364163,,4040330,BV,377,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364164,,4040330,BV,378,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364165,,4040331,BV,379,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364166,,4040331,BV,380,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364167,,4040332,BV,381,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364168,,4040332,BV,382,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364169,,4040333,BV,383,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364170,,4040333,BV,384,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364171,,4040334,BV,385,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364172,,4040334,BV,386,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364173,,4040335,BV,387,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364174,,4040335,BV,388,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364175,,4040336,BV,389,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364176,,4040336,BV,390,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364177,,4040337,BV,391,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364178,,4040337,BV,392,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364179,,4040338,BV,393,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364180,,4040338,BV,394,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364181,,4040339,BV,395,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364182,,4040339,BV,396,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364183,,4040340,BV,397,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364184,,4040340,BV,398,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364185,,4040341,BV,399,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364186,,4040341,BV,400,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364187,,4040342,BV,401,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364188,,4040342,BV,402,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364189,,4040343,BV,403,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364190,,4040343,BV,404,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364191,,4040344,BV,405,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364192,,4040344,BV,406,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364193,,4040345,BV,407,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364194,,4040345,BV,408,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364195,,4040346,BV,409,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364196,,4040346,BV,410,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364197,,4040347,BV,411,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364198,,4040347,BV,412,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364199,,4040348,BV,413,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364200,,4040348,BV,414,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364201,,4040349,BV,415,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364202,,4040349,BV,416,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364203,,4040350,BV,417,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364204,,4040350,BV,418,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364205,,4040351,BV,419,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364206,,4040351,BV,420,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364207,,4040352,BV,421,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364208,,4040352,BV,422,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364209,,4040353,BV,423,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364210,,4040353,BV,424,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364211,,4040354,BV,425,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364212,,4040354,BV,426,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364213,,4040355,BV,427,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364214,,4040355,BV,428,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364215,,4040356,BV,429,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364216,,4040356,BV,430,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364217,,4040357,BV,431,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364218,,4040357,BV,432,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364219,,4040358,BV,433,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364220,,4040358,BV,434,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364221,,4040359,BV,435,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364222,,4040359,BV,436,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364223,,4040360,BV,437,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364224,,4040360,BV,438,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364225,,4040361,BV,439,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364226,,4040361,BV,440,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364227,,4040362,BV,441,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364228,,4040362,BV,442,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364229,,4040363,BV,443,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364230,,4040363,BV,444,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364231,,4040364,BV,445,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364232,,4040364,BV,446,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364233,,4040365,BV,447,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364234,,4040365,BV,448,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364235,,4040366,BV,449,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364236,,4040366,BV,450,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364237,,4040367,BV,451,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364238,,4040367,BV,452,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364239,,4040368,BV,453,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364240,,4040368,BV,454,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364241,,4040369,BV,455,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364242,,4040369,BV,456,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364243,,4040370,BV,457,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364244,,4040370,BV,458,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364245,,4040371,BV,459,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364246,,4040371,BV,460,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364247,,4040372,BV,461,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364248,,4040372,BV,462,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364249,,4040373,BV,463,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364250,,4040373,BV,464,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364251,,4040374,BV,465,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364252,,4040374,BV,466,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364253,,4040375,BV,467,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364254,,4040375,BV,468,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364255,,4040376,BV,469,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364256,,4040376,BV,470,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364257,,4040377,BV,471,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364258,,4040377,BV,472,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364259,,4040378,BV,473,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364260,,4040378,BV,474,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364261,,4040379,BV,475,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364262,,4040379,BV,476,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364263,,4040380,BV,477,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364264,,4040380,BV,478,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364265,,4040381,BV,479,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364266,,4040381,BV,480,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364267,,4040382,BV,481,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364268,,4040382,BV,482,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364269,,4040383,BV,483,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364270,,4040383,BV,484,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364271,,4040384,BV,485,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364272,,4040384,BV,486,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364273,,4040385,BV,487,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364274,,4040385,BV,488,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364275,,4040386,BV,489,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364276,,4040386,BV,490,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364277,,4040387,BV,491,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364278,,4040387,BV,492,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364279,,4040388,BV,493,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364280,,4040388,BV,494,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364281,,4040389,BV,495,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364282,,4040389,BV,496,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364283,,4040390,BV,497,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364284,,4040390,BV,498,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364285,,4040391,BV,499,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364286,,4040391,BV,500,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364287,,4040392,BV,501,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364288,,4040392,BV,502,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364289,,4040393,BV,503,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364290,,4040393,BV,504,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364291,,4040394,BV,505,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364292,,4040394,BV,506,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364293,,4040395,BV,507,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364294,,4040395,BV,508,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364295,,4040396,BV,509,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364296,,4040396,BV,510,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364297,,4040397,BV,511,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364298,,4040397,BV,512,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364299,,4040398,BV,513,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364300,,4040398,BV,514,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364301,,4040399,BV,515,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364302,,4040399,BV,516,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364303,,4040400,BV,517,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364304,,4040400,BV,518,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364305,,4040401,BV,519,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364306,,4040401,BV,520,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364307,,4040402,BV,521,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364308,,4040402,BV,522,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364309,,4040403,BV,523,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364310,,4040403,BV,524,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364311,,4040404,BV,525,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364312,,4040404,BV,526,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364313,,4040405,BV,527,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364314,,4040405,BV,528,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364315,,4040406,BV,529,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364316,,4040406,BV,530,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364317,,4040407,BV,531,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364318,,4040407,BV,532,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364319,,4040408,BV,533,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364320,,4040408,BV,534,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364321,,4040409,BV,535,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364322,,4040409,BV,536,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364323,,4040410,BV,537,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364324,,4040410,BV,538,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364325,,4040411,BV,539,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364326,,4040411,BV,540,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, diff --git a/tests/testthat/h7_v_1_19_18/CommercialEffort.csv b/tests/testthat/h7_v_1_19_18/CommercialEffort.csv deleted file mode 100644 index 61ba400f..00000000 --- a/tests/testthat/h7_v_1_19_18/CommercialEffort.csv +++ /dev/null @@ -1,100 +0,0 @@ -CEid,CErecordType,CEdataTypeForScientificEffort,CEdataSourceForScientificEffort,CEsamplingScheme,CEvesselFlagCountry,CEyear,CEquarter,CEmonth,CEarea,CEstatisticalRectangle,CEdataSourceOfStatisticalRectangle,CEfisheriesManagementUnit,CEgsaSubarea,CEjurisdictionArea,CEfishingAreaCategory,CEfreshWaterName,CEexclusiveEconomicZone,CEexclusiveEconomicZoneIndicator,CEnationalFishingActivity,CEmetier6,CEincidentalByCatchMitigationDevice,CElandingLocation,CEvesselLengthCategory,CEfishingTechnique,CEmeshSizeRange,CEsupraRegion,CEgeoIndicator,CEspecificConditionsTechnical,CEdeepSeaRegulation,CEofficialVesselHoursAtSea,CEnumberOfFractionTrips,CEnumberOfDominantTrips,CEofficialDaysAtSea,CEscientificDaysAtSea,CEofficialFishingDays,CEscientificFishingDays,CEofficialNumberOfHaulsOrSets,CEscientificNumberOfHaulsOrSets,CEofficialVesselFishingHour,CEscientificVesselFishingHour,CEofficialSoakingMeterHour,CEscientificSoakingMeterHour,CEofficialkWDaysAtSea,CEscientifickWDaysAtSea,CEofficialkWFishingDays,CEscientifickWFishingDays,CEofficialkWFishingHours,CEscientifickWFishingHours,CEgTDaysAtSea,CEgTFishingDays,CEgTFishingHours,CEnumberOfUniqueVessels,CEgearDimensions,CEnumberOfFAD,CEnumberofSupVes,CEfishingDaysErrorMeasureValueType,CEfishingDaystErrorMeasureValueFirst,CEfishingDaysErrorMeasureValueSecond,CEscientificFishingDaysQualitativeBias,CEconfidentialityFlag,CEencryptedVesselIds -324307,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,9.00,9,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,7,,,,,,,,N,abc -324308,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,41.00,41,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,12,,,,,,,,N,abc -324309,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26.00,26,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,20,,,,,,,,N,abc -324310,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,11.00,11,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,7,,,,,,,,N,abc -324311,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,27E3,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,23.00,23.00,23.00,23.00,,,,,,,2300,2300,2300,2300,,,460,460,,21,,,,,,,,N,abc -324312,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,7.00,7,46.00,46.00,46.00,46.00,,,,,,,4600,4600,4600,4600,,,920,920,,6,,,,,,,,N,abc -324313,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32E0,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17.00,17,15.00,15.00,15.00,15.00,,,,,,,1500,1500,1500,1500,,,300,300,,4,,,,,,,,N,abc -324314,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,15.00,15,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,13,,,,,,,,N,abc -324315,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,7.00,7,37.00,37.00,37.00,37.00,,,,,,,3700,3700,3700,3700,,,740,740,,11,,,,,,,,N,abc -324316,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2.00,2,2.00,2.00,2.00,2.00,,,,,,,200,200,200,200,,,40,40,,4,,,,,,,,N,abc -324317,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,3.00,3,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,19,,,,,,,,N,abc -324318,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,50.00,50,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,19,,,,,,,,N,abc -324319,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24.00,24,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,10,,,,,,,,N,abc -324320,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,45.00,45,31.00,31.00,31.00,31.00,,,,,,,3100,3100,3100,3100,,,620,620,,21,,,,,,,,N,abc -324321,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,45.00,45,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,8,,,,,,,,N,abc -324322,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,27D4,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,46.00,46,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,15,,,,,,,,N,abc -324323,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,43.00,43,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,10,,,,,,,,N,abc -324324,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,33.00,33,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,12,,,,,,,,N,abc -324325,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,31E3,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,32.00,32,48.00,48.00,48.00,48.00,,,,,,,4800,4800,4800,4800,,,960,960,,13,,,,,,,,N,abc -324326,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,34D5,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,42.00,42,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,4,,,,,,,,N,abc -324327,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2.00,2,6.00,6.00,6.00,6.00,,,,,,,600,600,600,600,,,120,120,,11,,,,,,,,N,abc -324328,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,47.00,47,38.00,38.00,38.00,38.00,,,,,,,3800,3800,3800,3800,,,760,760,,16,,,,,,,,N,abc -324329,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,40.00,40,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,20,,,,,,,,N,abc -324330,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,12.00,12,37.00,37.00,37.00,37.00,,,,,,,3700,3700,3700,3700,,,740,740,,11,,,,,,,,N,abc -324331,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,9.00,9,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,19,,,,,,,,N,abc -324332,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16.00,16,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,23,,,,,,,,N,abc -324333,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32D8,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24.00,24,48.00,48.00,48.00,48.00,,,,,,,4800,4800,4800,4800,,,960,960,,18,,,,,,,,N,abc -324334,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,32D3,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44.00,44,13.00,13.00,13.00,13.00,,,,,,,1300,1300,1300,1300,,,260,260,,19,,,,,,,,N,abc -324335,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15.00,15,27.00,27.00,27.00,27.00,,,,,,,2700,2700,2700,2700,,,540,540,,5,,,,,,,,N,abc -324336,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,22.00,22,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,8,,,,,,,,N,abc -324337,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27.00,27,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,21,,,,,,,,N,abc -324338,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,31D8,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,21.00,21,32.00,32.00,32.00,32.00,,,,,,,3200,3200,3200,3200,,,640,640,,16,,,,,,,,N,abc -324339,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,33D7,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,47.00,47,5.00,5.00,5.00,5.00,,,,,,,500,500,500,500,,,100,100,,8,,,,,,,,N,abc -324340,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9.00,9,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,22,,,,,,,,N,abc -324341,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,27.00,27,41.00,41.00,41.00,41.00,,,,,,,4100,4100,4100,4100,,,820,820,,20,,,,,,,,N,abc -324342,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5.00,5,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,19,,,,,,,,N,abc -324343,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,33.00,33,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,4,,,,,,,,N,abc -324344,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15.00,15,7.00,7.00,7.00,7.00,,,,,,,700,700,700,700,,,140,140,,19,,,,,,,,N,abc -324345,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,25E0,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23.00,23,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,15,,,,,,,,N,abc -324346,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,33E3,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23.00,23,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,12,,,,,,,,N,abc -324347,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,5.00,5,18.00,18.00,18.00,18.00,,,,,,,1800,1800,1800,1800,,,360,360,,19,,,,,,,,N,abc -324348,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,33D3,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,35.00,35,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,12,,,,,,,,N,abc -324349,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9.00,9,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,21,,,,,,,,N,abc -324350,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,30.00,30,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,14,,,,,,,,N,abc -324351,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,35D4,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,48.00,48,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,9,,,,,,,,N,abc -324352,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,10.00,10,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,4,,,,,,,,N,abc -324353,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25.00,25,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,19,,,,,,,,N,abc -324354,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,27.00,27,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,21,,,,,,,,N,abc -324355,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,27.00,27,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,18,,,,,,,,N,abc -324356,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,14.00,14,31.00,31.00,31.00,31.00,,,,,,,3100,3100,3100,3100,,,620,620,,9,,,,,,,,N,abc -324357,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,35D2,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27.00,27,17.00,17.00,17.00,17.00,,,,,,,1700,1700,1700,1700,,,340,340,,15,,,,,,,,N,abc -324358,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,2.00,2,39.00,39.00,39.00,39.00,,,,,,,3900,3900,3900,3900,,,780,780,,22,,,,,,,,N,abc -324359,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,30.00,30,39.00,39.00,39.00,39.00,,,,,,,3900,3900,3900,3900,,,780,780,,12,,,,,,,,N,abc -324360,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,32.00,32,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,15,,,,,,,,N,abc -324361,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,33.00,33,40.00,40.00,40.00,40.00,,,,,,,4000,4000,4000,4000,,,800,800,,14,,,,,,,,N,abc -324362,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9.00,9,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,17,,,,,,,,N,abc -324363,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,12.00,12.00,12.00,12.00,,,,,,,1200,1200,1200,1200,,,240,240,,16,,,,,,,,N,abc -324364,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12.00,12,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,8,,,,,,,,N,abc -324365,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,29D6,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,48.00,48,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,18,,,,,,,,N,abc -324366,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,45.00,45,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,13,,,,,,,,N,abc -324367,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,41.00,41,6.00,6.00,6.00,6.00,,,,,,,600,600,600,600,,,120,120,,15,,,,,,,,N,abc -324368,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,2.00,2,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,4,,,,,,,,N,abc -324369,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32D9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,7.00,7,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,20,,,,,,,,N,abc -324370,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,29D3,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,4.00,4,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,7,,,,,,,,N,abc -324371,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29.00,29,24.00,24.00,24.00,24.00,,,,,,,2400,2400,2400,2400,,,480,480,,6,,,,,,,,N,abc -324372,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,38.00,38,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,23,,,,,,,,N,abc -324373,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,42.00,42,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,19,,,,,,,,N,abc -324374,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,35.00,35,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,16,,,,,,,,N,abc -324375,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24.00,24,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,15,,,,,,,,N,abc -324376,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,36E6,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48.00,48,10.00,10.00,10.00,10.00,,,,,,,1000,1000,1000,1000,,,200,200,,9,,,,,,,,N,abc -324377,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,25.00,25,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,12,,,,,,,,N,abc -324378,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,30E3,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,16.00,16,41.00,41.00,41.00,41.00,,,,,,,4100,4100,4100,4100,,,820,820,,4,,,,,,,,N,abc -324379,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2.00,2,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,6,,,,,,,,N,abc -324380,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,4.00,4,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,21,,,,,,,,N,abc -324381,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,10.00,10,49.00,49.00,49.00,49.00,,,,,,,4900,4900,4900,4900,,,980,980,,13,,,,,,,,N,abc -324382,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,19.00,19,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,7,,,,,,,,N,abc -324383,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,28D9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38.00,38,15.00,15.00,15.00,15.00,,,,,,,1500,1500,1500,1500,,,300,300,,19,,,,,,,,N,abc -324384,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,20.00,20,49.00,49.00,49.00,49.00,,,,,,,4900,4900,4900,4900,,,980,980,,20,,,,,,,,N,abc -324385,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,35E3,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,27.00,27,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,6,,,,,,,,N,abc -324386,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,27.00,27,47.00,47.00,47.00,47.00,,,,,,,4700,4700,4700,4700,,,940,940,,12,,,,,,,,N,abc -324387,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,27D9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12.00,12,32.00,32.00,32.00,32.00,,,,,,,3200,3200,3200,3200,,,640,640,,11,,,,,,,,N,abc -324388,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,21,,,,,,,,N,abc -324389,CE,Estimate,Combcd,,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,35.00,35,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,9,,,,,,,,N,abc -324390,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,28.00,28,47.00,47.00,47.00,47.00,,,,,,,4700,4700,4700,4700,,,940,940,,8,,,,,,,,N,abc -324391,CE,Estimate,Combcd,,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,24.00,24,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,16,,,,,,,,N,abc -324392,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,37D9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27.00,27,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,17,,,,,,,,N,abc -324393,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,27F0,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,19.00,19,38.00,38.00,38.00,38.00,,,,,,,3800,3800,3800,3800,,,760,760,,5,,,,,,,,N,abc -324394,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,46.00,46,46.00,46.00,46.00,46.00,,,,,,,4600,4600,4600,4600,,,920,920,,4,,,,,,,,N,abc -324395,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,26D8,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,19.00,19,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,4,,,,,,,,N,abc -324396,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32.00,32,9.00,9.00,9.00,9.00,,,,,,,900,900,900,900,,,180,180,,18,,,,,,,,N,abc -324397,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,47.00,47,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,22,,,,,,,,N,abc -324398,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,20.00,20,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,6,,,,,,,,N,abc -324399,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,23.00,23,23.00,23.00,23.00,23.00,,,,,,,2300,2300,2300,2300,,,460,460,,18,,,,,,,,N,abc -324400,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,37E5,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48.00,48,9.00,9.00,9.00,9.00,,,,,,,900,900,900,900,,,180,180,,6,,,,,,,,N,abc -324401,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12.00,12,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,10,,,,,,,,N,abc -324402,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,47.00,47,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,19,,,,,,,,N,abc -324403,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,34E4,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,30.00,30,17.00,17.00,17.00,17.00,,,,,,,1700,1700,1700,1700,,,340,340,,14,,,,,,,,N,abc -324404,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,12.00,12,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,5,,,,,,,,N,abc -324405,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23.00,23,24.00,24.00,24.00,24.00,,,,,,,2400,2400,2400,2400,,,480,480,,14,,,,,,,,N,abc diff --git a/tests/testthat/h7_v_1_19_18/CommercialLanding.csv b/tests/testthat/h7_v_1_19_18/CommercialLanding.csv deleted file mode 100644 index 736e20b2..00000000 --- a/tests/testthat/h7_v_1_19_18/CommercialLanding.csv +++ /dev/null @@ -1,498 +0,0 @@ -CLid,CLrecordType,CLdataTypeOfScientificWeight,CLdataSourceOfScientificWeight,CLsamplingScheme,CLdataSourceLandingsValue,CLlandingCountry,CLvesselFlagCountry,CLyear,CLquarter,CLmonth,CLarea,CLstatisticalRectangle,CLdataSourceOfStatisticalRectangle,CLfisheriesManagementUnit,CLgsaSubarea,CLjurisdictionArea,CLfishingAreaCategory,CLfreshWaterName,CLexclusiveEconomicZone,CLexclusiveEconomicZoneIndicator,CLspeciesCode,CLspeciesFaoCode,CLlandingCategory,CLcatchCategory,CLregDisCategory,CLcommercialSizeCategoryScale,CLcommercialSizeCategory,CLnationalFishingActivity,CLmetier6,CLincidentalByCatchMitigationDevice,CLlandingLocation,CLvesselLengthCategory,CLfishingTechnique,CLmeshSizeRange,CLsupraRegion,CLgeoIndicator,CLspecificConditionsTechnical,CLdeepSeaRegulation,CLFDIconfidentialityCode,CLofficialWeight,CLscientificWeight,CLexplainDifference,CLtotalOfficialLandingsValue,CLtotalNumberFish,CLnumberOfUniqueVessels,CLscientificWeightErrorMeasureValueType,CLscientificWeightErrorMeasureValueFirst,CLscientificWeightErrorMeasureValueSecond,CLvalueErrorMeasureValueType,CLvalueErrorMeasureValueFirst,CLvalueErrorMeasureValueSecond,CLnumberFishInCatchErrorMeasureValueType,CLnumberFishInCatchErrorMeasureValueFirst,CLnumberFishInCatchErrorMeasureValueSecond,CLcomment,CLscientificWeightQualitativeBias,CLconfidentialityFlag,CLencryptedVesselIds -2660651,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,11,,,,,,,,,,,,N,abc -2660653,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,20,,,,,,,,,,,,N,abc -2660655,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,17,,,,,,,,,,,,N,abc -2660657,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,17,,,,,,,,,,,,N,abc -2660659,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,39E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,23,,,,,,,,,,,,N,abc -2660661,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,11,,,,,,,,,,,,N,abc -2660663,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,22,,,,,,,,,,,,N,abc -2660665,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,16,,,,,,,,,,,,N,abc -2660667,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,13,,,,,,,,,,,,N,abc -2660669,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,18,,,,,,,,,,,,N,abc -2660671,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,29D8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,19,,,,,,,,,,,,N,abc -2660673,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,15,,,,,,,,,,,,N,abc -2660675,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,15,,,,,,,,,,,,N,abc -2660677,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,10,,,,,,,,,,,,N,abc -2660679,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,10,,,,,,,,,,,,N,abc -2660681,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E7,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660683,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,35E7,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,16,,,,,,,,,,,,N,abc -2660685,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E7,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2660687,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E1,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,14,,,,,,,,,,,,N,abc -2660689,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,19,,,,,,,,,,,,N,abc -2660691,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E3,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,17,,,,,,,,,,,,N,abc -2660693,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,7,,,,,,,,,,,,N,abc -2660695,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,13,,,,,,,,,,,,N,abc -2660697,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,17,,,,,,,,,,,,N,abc -2660699,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,23,,,,,,,,,,,,N,abc -2660701,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,18,,,,,,,,,,,,N,abc -2660703,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30E9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,7,,,,,,,,,,,,N,abc -2660705,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,31D6,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660707,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,21,,,,,,,,,,,,N,abc -2660709,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,21,,,,,,,,,,,,N,abc -2660711,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,27E8,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660713,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,22,,,,,,,,,,,,N,abc -2660715,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E5,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660717,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,12,,,,,,,,,,,,N,abc -2660719,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,7,,,,,,,,,,,,N,abc -2660721,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2660723,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,9,,,,,,,,,,,,N,abc -2660725,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2660727,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,18,,,,,,,,,,,,N,abc -2660729,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,21,,,,,,,,,,,,N,abc -2660731,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,19,,,,,,,,,,,,N,abc -2660733,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,15,,,,,,,,,,,,N,abc -2660735,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D5,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,5,,,,,,,,,,,,N,abc -2660737,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,5,,,,,,,,,,,,N,abc -2660739,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D3,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,6,,,,,,,,,,,,N,abc -2660741,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,20,,,,,,,,,,,,N,abc -2660743,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,20,,,,,,,,,,,,N,abc -2660745,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,20,,,,,,,,,,,,N,abc -2660747,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,23,,,,,,,,,,,,N,abc -2660749,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,20,,,,,,,,,,,,N,abc -2660751,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,4,,,,,,,,,,,,N,abc -2660753,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,6,,,,,,,,,,,,N,abc -2660755,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,8,,,,,,,,,,,,N,abc -2660757,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660759,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660761,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2660763,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,13,,,,,,,,,,,,N,abc -2660765,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,32E5,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,20,,,,,,,,,,,,N,abc -2660767,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,16,,,,,,,,,,,,N,abc -2660769,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,9,,,,,,,,,,,,N,abc -2660771,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,27D6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,8,,,,,,,,,,,,N,abc -2660773,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,5,,,,,,,,,,,,N,abc -2660775,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,13,,,,,,,,,,,,N,abc -2660777,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D2,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,5,,,,,,,,,,,,N,abc -2660779,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,6,,,,,,,,,,,,N,abc -2660781,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E8,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,15,,,,,,,,,,,,N,abc -2660783,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660785,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,14,,,,,,,,,,,,N,abc -2660787,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,19,,,,,,,,,,,,N,abc -2660789,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,8,,,,,,,,,,,,N,abc -2660791,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,8,,,,,,,,,,,,N,abc -2660793,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,7,,,,,,,,,,,,N,abc -2660795,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D5,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,14,,,,,,,,,,,,N,abc -2660797,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,32D9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,18,,,,,,,,,,,,N,abc -2660799,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,17,,,,,,,,,,,,N,abc -2660801,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,16,,,,,,,,,,,,N,abc -2660803,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,20,,,,,,,,,,,,N,abc -2660805,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E2,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,9,,,,,,,,,,,,N,abc -2660807,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,5,,,,,,,,,,,,N,abc -2660809,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660811,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,12,,,,,,,,,,,,N,abc -2660813,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,4,,,,,,,,,,,,N,abc -2660815,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34E1,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,8,,,,,,,,,,,,N,abc -2660817,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,9,,,,,,,,,,,,N,abc -2660819,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E8,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,17,,,,,,,,,,,,N,abc -2660821,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,21,,,,,,,,,,,,N,abc -2660823,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,13,,,,,,,,,,,,N,abc -2660825,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660827,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,7,,,,,,,,,,,,N,abc -2660829,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,23,,,,,,,,,,,,N,abc -2660831,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,23,,,,,,,,,,,,N,abc -2660833,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,4,,,,,,,,,,,,N,abc -2660835,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,7,,,,,,,,,,,,N,abc -2660837,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,6,,,,,,,,,,,,N,abc -2660839,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,21,,,,,,,,,,,,N,abc -2660841,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,5,,,,,,,,,,,,N,abc -2660843,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E3,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,17,,,,,,,,,,,,N,abc -2660845,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,10,,,,,,,,,,,,N,abc -2660847,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,20,,,,,,,,,,,,N,abc -2660849,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,27E6,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,11,,,,,,,,,,,,N,abc -2660851,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,23,,,,,,,,,,,,N,abc -2660853,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,9,,,,,,,,,,,,N,abc -2660855,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,21,,,,,,,,,,,,N,abc -2660857,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,8,,,,,,,,,,,,N,abc -2660859,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,6,,,,,,,,,,,,N,abc -2660861,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E8,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,18,,,,,,,,,,,,N,abc -2660863,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,25E5,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,20,,,,,,,,,,,,N,abc -2660865,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,11,,,,,,,,,,,,N,abc -2660867,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,14,,,,,,,,,,,,N,abc -2660869,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,6,,,,,,,,,,,,N,abc -2660871,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,39E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,7,,,,,,,,,,,,N,abc -2660873,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,22,,,,,,,,,,,,N,abc -2660875,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,17,,,,,,,,,,,,N,abc -2660877,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,4,,,,,,,,,,,,N,abc -2660879,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,19,,,,,,,,,,,,N,abc -2660881,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,22,,,,,,,,,,,,N,abc -2660883,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,19,,,,,,,,,,,,N,abc -2660885,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660887,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,17,,,,,,,,,,,,N,abc -2660889,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,22,,,,,,,,,,,,N,abc -2660891,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660893,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,23,,,,,,,,,,,,N,abc -2660895,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660897,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,14,,,,,,,,,,,,N,abc -2660899,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,13,,,,,,,,,,,,N,abc -2660901,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,5,,,,,,,,,,,,N,abc -2660903,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,6,,,,,,,,,,,,N,abc -2660905,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,19,,,,,,,,,,,,N,abc -2660907,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660909,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,23,,,,,,,,,,,,N,abc -2660911,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,13,,,,,,,,,,,,N,abc -2660913,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,19,,,,,,,,,,,,N,abc -2660915,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,14,,,,,,,,,,,,N,abc -2660917,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,7,,,,,,,,,,,,N,abc -2660919,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,22,,,,,,,,,,,,N,abc -2660921,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,20,,,,,,,,,,,,N,abc -2660923,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,16,,,,,,,,,,,,N,abc -2660925,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,19,,,,,,,,,,,,N,abc -2660927,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2660929,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,9,,,,,,,,,,,,N,abc -2660931,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,11,,,,,,,,,,,,N,abc -2660933,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,7,,,,,,,,,,,,N,abc -2660935,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,9,,,,,,,,,,,,N,abc -2660937,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,7,,,,,,,,,,,,N,abc -2660939,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,5,,,,,,,,,,,,N,abc -2660941,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,7,,,,,,,,,,,,N,abc -2660943,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,10,,,,,,,,,,,,N,abc -2660945,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E4,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,14,,,,,,,,,,,,N,abc -2660947,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,14,,,,,,,,,,,,N,abc -2660949,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25D8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,9,,,,,,,,,,,,N,abc -2660951,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,7,,,,,,,,,,,,N,abc -2660953,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,22,,,,,,,,,,,,N,abc -2660955,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E3,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,22,,,,,,,,,,,,N,abc -2660957,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,9,,,,,,,,,,,,N,abc -2660959,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D6,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,12,,,,,,,,,,,,N,abc -2660961,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,13,,,,,,,,,,,,N,abc -2660963,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,16,,,,,,,,,,,,N,abc -2660965,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660967,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,19,,,,,,,,,,,,N,abc -2660969,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D5,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,16,,,,,,,,,,,,N,abc -2660971,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,9,,,,,,,,,,,,N,abc -2660973,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E3,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,7,,,,,,,,,,,,N,abc -2660975,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,10,,,,,,,,,,,,N,abc -2660977,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E4,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660979,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,4,,,,,,,,,,,,N,abc -2660981,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,10,,,,,,,,,,,,N,abc -2660983,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2660985,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,9,,,,,,,,,,,,N,abc -2660987,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,11,,,,,,,,,,,,N,abc -2660989,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,18,,,,,,,,,,,,N,abc -2660991,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,17,,,,,,,,,,,,N,abc -2660993,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,10,,,,,,,,,,,,N,abc -2660995,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,22,,,,,,,,,,,,N,abc -2660997,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,12,,,,,,,,,,,,N,abc -2660999,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,11,,,,,,,,,,,,N,abc -2661001,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,17,,,,,,,,,,,,N,abc -2661003,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E3,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,15,,,,,,,,,,,,N,abc -2661005,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,4,,,,,,,,,,,,N,abc -2661007,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25D9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,8,,,,,,,,,,,,N,abc -2661009,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2661011,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,15,,,,,,,,,,,,N,abc -2661013,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,18,,,,,,,,,,,,N,abc -2661015,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,23,,,,,,,,,,,,N,abc -2661017,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,6,,,,,,,,,,,,N,abc -2661019,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,4,,,,,,,,,,,,N,abc -2661021,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,10,,,,,,,,,,,,N,abc -2661023,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,19,,,,,,,,,,,,N,abc -2661025,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,16,,,,,,,,,,,,N,abc -2661027,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,10,,,,,,,,,,,,N,abc -2660694,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,7,,,,,,,,,,,,N,abc -2660696,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,12,,,,,,,,,,,,N,abc -2660698,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,11,,,,,,,,,,,,N,abc -2660700,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,15,,,,,,,,,,,,N,abc -2660702,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,21,,,,,,,,,,,,N,abc -2660704,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E3,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,8,,,,,,,,,,,,N,abc -2660706,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,11,,,,,,,,,,,,N,abc -2660708,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D5,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,6,,,,,,,,,,,,N,abc -2660710,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,19,,,,,,,,,,,,N,abc -2660712,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,22,,,,,,,,,,,,N,abc -2660714,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660716,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,9,,,,,,,,,,,,N,abc -2660718,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,13,,,,,,,,,,,,N,abc -2660720,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660722,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,11,,,,,,,,,,,,N,abc -2660724,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,13,,,,,,,,,,,,N,abc -2660726,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,16,,,,,,,,,,,,N,abc -2660728,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,4,,,,,,,,,,,,N,abc -2660730,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660732,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660734,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,14,,,,,,,,,,,,N,abc -2660736,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,6,,,,,,,,,,,,N,abc -2660738,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,8,,,,,,,,,,,,N,abc -2660740,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,14,,,,,,,,,,,,N,abc -2660742,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,21,,,,,,,,,,,,N,abc -2660744,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,26D8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,21,,,,,,,,,,,,N,abc -2660746,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660748,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,14,,,,,,,,,,,,N,abc -2660750,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,17,,,,,,,,,,,,N,abc -2660752,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D3,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,6,,,,,,,,,,,,N,abc -2660754,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,6,,,,,,,,,,,,N,abc -2660756,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,5,,,,,,,,,,,,N,abc -2660758,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,9,,,,,,,,,,,,N,abc -2660760,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,22,,,,,,,,,,,,N,abc -2660762,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,8,,,,,,,,,,,,N,abc -2660764,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,38E5,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2660766,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,23,,,,,,,,,,,,N,abc -2660768,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,15,,,,,,,,,,,,N,abc -2660770,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D3,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,17,,,,,,,,,,,,N,abc -2660772,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,22,,,,,,,,,,,,N,abc -2660774,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660776,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D5,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,16,,,,,,,,,,,,N,abc -2660778,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,22,,,,,,,,,,,,N,abc -2660780,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,21,,,,,,,,,,,,N,abc -2660782,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,16,,,,,,,,,,,,N,abc -2660784,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,4,,,,,,,,,,,,N,abc -2660786,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,6,,,,,,,,,,,,N,abc -2660788,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,22,,,,,,,,,,,,N,abc -2660790,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,23,,,,,,,,,,,,N,abc -2660792,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,7,,,,,,,,,,,,N,abc -2660794,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,7,,,,,,,,,,,,N,abc -2660796,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,8,,,,,,,,,,,,N,abc -2660798,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,8,,,,,,,,,,,,N,abc -2660800,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,8,,,,,,,,,,,,N,abc -2660802,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,14,,,,,,,,,,,,N,abc -2660804,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,17,,,,,,,,,,,,N,abc -2660806,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,15,,,,,,,,,,,,N,abc -2660808,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,13,,,,,,,,,,,,N,abc -2660810,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,22,,,,,,,,,,,,N,abc -2660812,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,13,,,,,,,,,,,,N,abc -2660814,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,16,,,,,,,,,,,,N,abc -2660816,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660818,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,14,,,,,,,,,,,,N,abc -2660820,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,18,,,,,,,,,,,,N,abc -2660822,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,9,,,,,,,,,,,,N,abc -2660824,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,13,,,,,,,,,,,,N,abc -2660826,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E4,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,23,,,,,,,,,,,,N,abc -2660828,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,17,,,,,,,,,,,,N,abc -2660830,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,10,,,,,,,,,,,,N,abc -2660832,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,10,,,,,,,,,,,,N,abc -2660834,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,20,,,,,,,,,,,,N,abc -2660836,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,26D9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,21,,,,,,,,,,,,N,abc -2660838,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,20,,,,,,,,,,,,N,abc -2660840,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,5,,,,,,,,,,,,N,abc -2660842,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,23,,,,,,,,,,,,N,abc -2660844,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,19,,,,,,,,,,,,N,abc -2660846,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,11,,,,,,,,,,,,N,abc -2660848,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,10,,,,,,,,,,,,N,abc -2660850,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,7,,,,,,,,,,,,N,abc -2660852,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,11,,,,,,,,,,,,N,abc -2660854,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,23,,,,,,,,,,,,N,abc -2660856,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,5,,,,,,,,,,,,N,abc -2660858,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,15,,,,,,,,,,,,N,abc -2660860,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660862,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,4,,,,,,,,,,,,N,abc -2660864,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,12,,,,,,,,,,,,N,abc -2660866,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,14,,,,,,,,,,,,N,abc -2660868,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,16,,,,,,,,,,,,N,abc -2660870,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,4,,,,,,,,,,,,N,abc -2660872,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,20,,,,,,,,,,,,N,abc -2660874,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,18,,,,,,,,,,,,N,abc -2660876,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,20,,,,,,,,,,,,N,abc -2660878,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,35E5,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,9,,,,,,,,,,,,N,abc -2660880,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,20,,,,,,,,,,,,N,abc -2660882,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,19,,,,,,,,,,,,N,abc -2660884,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,13,,,,,,,,,,,,N,abc -2660886,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28E9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,12,,,,,,,,,,,,N,abc -2660888,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,19,,,,,,,,,,,,N,abc -2660890,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,6,,,,,,,,,,,,N,abc -2660892,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,10,,,,,,,,,,,,N,abc -2660894,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,17,,,,,,,,,,,,N,abc -2660896,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,15,,,,,,,,,,,,N,abc -2660898,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,9,,,,,,,,,,,,N,abc -2660900,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E5,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,4,,,,,,,,,,,,N,abc -2660902,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30E9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,22,,,,,,,,,,,,N,abc -2660904,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,13,,,,,,,,,,,,N,abc -2660906,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,15,,,,,,,,,,,,N,abc -2660908,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25E0,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,23,,,,,,,,,,,,N,abc -2660910,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,9,,,,,,,,,,,,N,abc -2660912,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,22,,,,,,,,,,,,N,abc -2660914,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,9,,,,,,,,,,,,N,abc -2660916,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,11,,,,,,,,,,,,N,abc -2660918,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,14,,,,,,,,,,,,N,abc -2660920,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,20,,,,,,,,,,,,N,abc -2660922,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,5,,,,,,,,,,,,N,abc -2660924,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,5,,,,,,,,,,,,N,abc -2660926,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,29D8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,18,,,,,,,,,,,,N,abc -2660928,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,19,,,,,,,,,,,,N,abc -2660930,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,15,,,,,,,,,,,,N,abc -2660932,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,8,,,,,,,,,,,,N,abc -2660934,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,13,,,,,,,,,,,,N,abc -2660936,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2660938,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,14,,,,,,,,,,,,N,abc -2660940,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,19,,,,,,,,,,,,N,abc -2660942,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,14,,,,,,,,,,,,N,abc -2660944,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27E0,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,21,,,,,,,,,,,,N,abc -2660946,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D5,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,19,,,,,,,,,,,,N,abc -2660948,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,15,,,,,,,,,,,,N,abc -2660950,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,16,,,,,,,,,,,,N,abc -2660952,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,19,,,,,,,,,,,,N,abc -2660954,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,15,,,,,,,,,,,,N,abc -2660956,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660958,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,22,,,,,,,,,,,,N,abc -2660960,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,12,,,,,,,,,,,,N,abc -2660962,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,6,,,,,,,,,,,,N,abc -2660964,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,19,,,,,,,,,,,,N,abc -2660966,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,15,,,,,,,,,,,,N,abc -2660968,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,9,,,,,,,,,,,,N,abc -2660970,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,8,,,,,,,,,,,,N,abc -2660972,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,20,,,,,,,,,,,,N,abc -2660974,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,14,,,,,,,,,,,,N,abc -2660976,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660978,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,30E0,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,5,,,,,,,,,,,,N,abc -2660980,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28E8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,16,,,,,,,,,,,,N,abc -2660982,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D4,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,10,,,,,,,,,,,,N,abc -2660984,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2660986,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D7,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,22,,,,,,,,,,,,N,abc -2660988,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,17,,,,,,,,,,,,N,abc -2660990,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660992,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,31D9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,16,,,,,,,,,,,,N,abc -2660994,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,20,,,,,,,,,,,,N,abc -2660996,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,18,,,,,,,,,,,,N,abc -2660998,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,13,,,,,,,,,,,,N,abc -2661000,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,22,,,,,,,,,,,,N,abc -2661002,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,23,,,,,,,,,,,,N,abc -2661004,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,5,,,,,,,,,,,,N,abc -2661006,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D5,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,20,,,,,,,,,,,,N,abc -2661008,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D3,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,20,,,,,,,,,,,,N,abc -2661010,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2661012,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,7,,,,,,,,,,,,N,abc -2661014,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,16,,,,,,,,,,,,N,abc -2661016,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,26D3,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,16,,,,,,,,,,,,N,abc -2661018,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,12,,,,,,,,,,,,N,abc -2661020,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,5,,,,,,,,,,,,N,abc -2661022,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,22,,,,,,,,,,,,N,abc -2661024,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2661026,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,17,,,,,,,,,,,,N,abc -2661028,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,31E0,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,8,,,,,,,,,,,,N,abc -2660652,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,31D4,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,17,,,,,,,,,,,,N,abc -2660654,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,13,,,,,,,,,,,,N,abc -2660656,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E3,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,12,,,,,,,,,,,,N,abc -2660658,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,22,,,,,,,,,,,,N,abc -2660660,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2660662,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,7,,,,,,,,,,,,N,abc -2660664,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,12,,,,,,,,,,,,N,abc -2660666,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E7,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,8,,,,,,,,,,,,N,abc -2660668,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,19,,,,,,,,,,,,N,abc -2660670,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,15,,,,,,,,,,,,N,abc -2660672,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,11,,,,,,,,,,,,N,abc -2660674,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660676,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37D9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,8,,,,,,,,,,,,N,abc -2660678,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,4,,,,,,,,,,,,N,abc -2660680,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,4,,,,,,,,,,,,N,abc -2660682,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,4,,,,,,,,,,,,N,abc -2660684,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2660686,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,15,,,,,,,,,,,,N,abc -2660688,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,9,,,,,,,,,,,,N,abc -2660690,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,14,,,,,,,,,,,,N,abc -2660692,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D4,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,16,,,,,,,,,,,,N,abc -2661029,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,18,,,,,,,,,,,,N,abc -2661031,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661033,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,22,,,,,,,,,,,,N,abc -2661035,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D6,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,5,,,,,,,,,,,,N,abc -2661037,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,20,,,,,,,,,,,,N,abc -2661039,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,18,,,,,,,,,,,,N,abc -2661041,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E3,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,4,,,,,,,,,,,,N,abc -2661043,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,15,,,,,,,,,,,,N,abc -2661045,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,21,,,,,,,,,,,,N,abc -2661047,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D6,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,18,,,,,,,,,,,,N,abc -2661049,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D7,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,19,,,,,,,,,,,,N,abc -2661051,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,17,,,,,,,,,,,,N,abc -2661053,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,5,,,,,,,,,,,,N,abc -2661055,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,10,,,,,,,,,,,,N,abc -2661057,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,7,,,,,,,,,,,,N,abc -2661059,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,12,,,,,,,,,,,,N,abc -2661061,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D6,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,17,,,,,,,,,,,,N,abc -2661063,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,4,,,,,,,,,,,,N,abc -2661065,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,13,,,,,,,,,,,,N,abc -2661067,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,7,,,,,,,,,,,,N,abc -2661069,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,20,,,,,,,,,,,,N,abc -2661071,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,8,,,,,,,,,,,,N,abc -2661073,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,18,,,,,,,,,,,,N,abc -2661075,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E1,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,15,,,,,,,,,,,,N,abc -2661077,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,23,,,,,,,,,,,,N,abc -2661079,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,17,,,,,,,,,,,,N,abc -2661081,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,18,,,,,,,,,,,,N,abc -2661083,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,13,,,,,,,,,,,,N,abc -2661085,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,22,,,,,,,,,,,,N,abc -2661087,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,16,,,,,,,,,,,,N,abc -2661089,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,28D9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,22,,,,,,,,,,,,N,abc -2661091,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,9,,,,,,,,,,,,N,abc -2661093,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,15,,,,,,,,,,,,N,abc -2661095,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,30E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,5,,,,,,,,,,,,N,abc -2661097,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,7,,,,,,,,,,,,N,abc -2661099,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,5,,,,,,,,,,,,N,abc -2661101,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,15,,,,,,,,,,,,N,abc -2661103,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,16,,,,,,,,,,,,N,abc -2661105,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,13,,,,,,,,,,,,N,abc -2661107,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,10,,,,,,,,,,,,N,abc -2661109,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,22,,,,,,,,,,,,N,abc -2661111,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,5,,,,,,,,,,,,N,abc -2661113,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,12,,,,,,,,,,,,N,abc -2661115,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,4,,,,,,,,,,,,N,abc -2661117,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,18,,,,,,,,,,,,N,abc -2661119,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2661121,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,11,,,,,,,,,,,,N,abc -2661123,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,14,,,,,,,,,,,,N,abc -2661125,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,17,,,,,,,,,,,,N,abc -2661127,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,13,,,,,,,,,,,,N,abc -2661129,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,4,,,,,,,,,,,,N,abc -2661131,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,12,,,,,,,,,,,,N,abc -2661133,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,4,,,,,,,,,,,,N,abc -2661135,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,18,,,,,,,,,,,,N,abc -2661137,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,5,,,,,,,,,,,,N,abc -2661139,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,28D8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,7,,,,,,,,,,,,N,abc -2661141,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,14,,,,,,,,,,,,N,abc -2661143,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,5,,,,,,,,,,,,N,abc -2661145,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2661147,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,6,,,,,,,,,,,,N,abc -2661030,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D7,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,5,,,,,,,,,,,,N,abc -2661032,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D6,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,15,,,,,,,,,,,,N,abc -2661034,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2661036,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2661038,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D7,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,23,,,,,,,,,,,,N,abc -2661040,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,9,,,,,,,,,,,,N,abc -2661042,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,11,,,,,,,,,,,,N,abc -2661044,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,5,,,,,,,,,,,,N,abc -2661046,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,18,,,,,,,,,,,,N,abc -2661048,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,19,,,,,,,,,,,,N,abc -2661050,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,11,,,,,,,,,,,,N,abc -2661052,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E7,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,12,,,,,,,,,,,,N,abc -2661054,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,17,,,,,,,,,,,,N,abc -2661056,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,17,,,,,,,,,,,,N,abc -2661058,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,9,,,,,,,,,,,,N,abc -2661060,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,17,,,,,,,,,,,,N,abc -2661062,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,9,,,,,,,,,,,,N,abc -2661064,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,18,,,,,,,,,,,,N,abc -2661066,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,22,,,,,,,,,,,,N,abc -2661068,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,9,,,,,,,,,,,,N,abc -2661070,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,18,,,,,,,,,,,,N,abc -2661072,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,6,,,,,,,,,,,,N,abc -2661074,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,4,,,,,,,,,,,,N,abc -2661076,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,5,,,,,,,,,,,,N,abc -2661078,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661080,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,30D5,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,22,,,,,,,,,,,,N,abc -2661082,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,18,,,,,,,,,,,,N,abc -2661084,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,7,,,,,,,,,,,,N,abc -2661086,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,6,,,,,,,,,,,,N,abc -2661088,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,10,,,,,,,,,,,,N,abc -2661090,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E7,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2661092,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2661094,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,11,,,,,,,,,,,,N,abc -2661096,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E2,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,7,,,,,,,,,,,,N,abc -2661098,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,12,,,,,,,,,,,,N,abc -2661100,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,10,,,,,,,,,,,,N,abc -2661102,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D3,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,6,,,,,,,,,,,,N,abc -2661104,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E0,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,9,,,,,,,,,,,,N,abc -2661106,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,7,,,,,,,,,,,,N,abc -2661108,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,21,,,,,,,,,,,,N,abc -2661110,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,23,,,,,,,,,,,,N,abc -2661112,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,13,,,,,,,,,,,,N,abc -2661114,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,18,,,,,,,,,,,,N,abc -2661116,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2661118,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,16,,,,,,,,,,,,N,abc -2661120,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,5,,,,,,,,,,,,N,abc -2661122,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,19,,,,,,,,,,,,N,abc -2661124,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,22,,,,,,,,,,,,N,abc -2661126,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,12,,,,,,,,,,,,N,abc -2661128,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,8,,,,,,,,,,,,N,abc -2661130,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,11,,,,,,,,,,,,N,abc -2661132,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2661134,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,26D4,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,17,,,,,,,,,,,,N,abc -2661136,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2661138,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,16,,,,,,,,,,,,N,abc -2661140,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,19,,,,,,,,,,,,N,abc -2661142,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,13,,,,,,,,,,,,N,abc -2661144,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661146,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E3,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,14,,,,,,,,,,,,N,abc diff --git a/tests/testthat/h7_v_1_19_18/Design.csv b/tests/testthat/h7_v_1_19_18/Design.csv deleted file mode 100644 index 05f8e074..00000000 --- a/tests/testthat/h7_v_1_19_18/Design.csv +++ /dev/null @@ -1,4 +0,0 @@ -DEid,DErecordType,DEsamplingScheme,DEsamplingSchemeType,DEyear,DEstratumName,DEhierarchyCorrect,DEhierarchy,DEsampled,DEreasonNotSampled,DEnonResponseCollected,DEauxiliaryVariableTotal,DEauxiliaryVariableValue,DEauxiliaryVariableName,DEauxiliaryVariableUnit -5409,DE,National Routine,NatPilCF,1965,DE_stratum1_H5,Y,5,Y,,,,,, -5410,DE,National Routine,NatPilCF,1965,DE_stratum2_H5,Y,5,Y,,,,,, -5411,DE,National Routine,NatPilCF,1965,DE_stratum3_H5,Y,5,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/FishingTrip.csv b/tests/testthat/h7_v_1_19_18/FishingTrip.csv deleted file mode 100644 index 4b010b4c..00000000 --- a/tests/testthat/h7_v_1_19_18/FishingTrip.csv +++ /dev/null @@ -1,28 +0,0 @@ -FTid,OSid,VSid,VDid,SDid,FOid,TEid,LEid,FTrecordType,FTencryptedVesselCode,FTsequenceNumber,FTstratification,FTstratumName,FTclustering,FTclusterName,FTsampler,FTsamplingType,FTnumberOfHaulsOrSets,FTdepartureLocation,FTdepartureDate,FTdepartureTime,FTarrivalLocation,FTarrivalDate,FTarrivalTime,FTnumberTotal,FTnumberSampled,FTselectionProb,FTinclusionProb,FTselectionMethod,FTunitName,FTselectionMethodCluster,FTnumberTotalClusters,FTnumberSampledClusters,FTselectionProbCluster,FTinclusionProbCluster,FTsampled,FTreasonNotSampled,FTnonResponseCollected,FTauxiliaryVariableTotal,FTauxiliaryVariableValue,FTauxiliaryVariableName,FTauxiliaryVariableUnit -21920,,,428063,,,,24751,FT,VDcode_2,1,N,U,N,U,,AtSea,,ZWCHJ,1965-09-16,,ZWCHJ,1965-10-08,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21921,,,428066,,,,24752,FT,VDcode_5,2,N,U,N,U,,AtSea,,ZWHWN,1965-03-03,,ZWHWN,1965-03-07,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21922,,,428062,,,,24753,FT,VDcode_1,3,N,U,N,U,,AtSea,,ZWMVZ,1965-03-12,,ZWMVZ,1965-03-30,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21923,,,428067,,,,24754,FT,VDcode_6,4,N,U,N,U,,AtSea,,ZWMVZ,1965-09-13,,ZWMVZ,1965-10-01,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21924,,,428062,,,,24755,FT,VDcode_1,5,N,U,N,U,,AtSea,,ZWCHJ,1965-01-10,,ZWCHJ,1965-01-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21925,,,428066,,,,24756,FT,VDcode_5,6,N,U,N,U,,AtSea,,ZWCHJ,1965-03-15,,ZWCHJ,1965-03-16,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21926,,,428066,,,,24757,FT,VDcode_5,7,N,U,N,U,,AtSea,,ZWHRE,1965-02-28,,ZWHRE,1965-03-12,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21927,,,428064,,,,24758,FT,VDcode_3,8,N,U,N,U,,AtSea,,ZWHWN,1965-06-06,,ZWHWN,1965-06-14,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21928,,,428070,,,,24759,FT,VDcode_9,9,N,U,N,U,,AtSea,,ZWBFO,1965-06-07,,ZWBFO,1965-06-20,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21929,,,428062,,,,24760,FT,VDcode_1,10,N,U,N,U,,AtSea,,ZWHRE,1965-02-12,,ZWHRE,1965-02-23,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21930,,,428063,,,,24761,FT,VDcode_2,11,N,U,N,U,,AtSea,,ZWUTA,1965-10-21,,ZWUTA,1965-11-03,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21931,,,428069,,,,24762,FT,VDcode_8,12,N,U,N,U,,AtSea,,ZWMJW,1965-10-08,,ZWMJW,1965-10-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21932,,,428063,,,,24763,FT,VDcode_2,13,N,U,N,U,,AtSea,,ZWMJW,1965-03-06,,ZWMJW,1965-03-13,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21933,,,428066,,,,24764,FT,VDcode_5,14,N,U,N,U,,AtSea,,ZWBZH,1965-09-06,,ZWBZH,1965-09-26,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21934,,,428068,,,,24765,FT,VDcode_7,15,N,U,N,U,,AtSea,,ZWWKI,1965-03-10,,ZWWKI,1965-04-08,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21935,,,428071,,,,24766,FT,VDcode_10,16,N,U,N,U,,AtSea,,ZWWKI,1965-05-27,,ZWWKI,1965-06-06,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21936,,,428062,,,,24767,FT,VDcode_1,17,N,U,N,U,,AtSea,,ZWWKI,1965-05-14,,ZWWKI,1965-05-29,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21937,,,428065,,,,24768,FT,VDcode_4,18,N,U,N,U,,AtSea,,ZWHRE,1965-05-18,,ZWHRE,1965-06-13,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21938,,,428063,,,,24769,FT,VDcode_2,19,N,U,N,U,,AtSea,,ZWMJW,1965-10-12,,ZWMJW,1965-10-27,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21939,,,428064,,,,24770,FT,VDcode_3,20,N,U,N,U,,AtSea,,ZWBUQ,1965-04-24,,ZWBUQ,1965-04-28,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21940,,,428068,,,,24771,FT,VDcode_7,21,N,U,N,U,,AtSea,,ZWHRE,1965-02-16,,ZWHRE,1965-03-07,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21941,,,428068,,,,24772,FT,VDcode_7,22,N,U,N,U,,AtSea,,ZWMVZ,1965-06-22,,ZWMVZ,1965-07-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21942,,,428068,,,,24773,FT,VDcode_7,23,N,U,N,U,,AtSea,,ZWMVZ,1965-05-05,,ZWMVZ,1965-05-06,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21943,,,428062,,,,24774,FT,VDcode_1,24,N,U,N,U,,AtSea,,ZWHWN,1965-03-18,,ZWHWN,1965-03-27,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21944,,,428070,,,,24775,FT,VDcode_9,25,N,U,N,U,,AtSea,,ZWMJW,1965-06-07,,ZWMJW,1965-06-19,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21945,,,428066,,,,24776,FT,VDcode_5,26,N,U,N,U,,AtSea,,ZWWKI,1965-02-06,,ZWWKI,1965-03-04,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21946,,,428070,,,,24777,FT,VDcode_9,27,N,U,N,U,,AtSea,,ZWBZH,1965-05-03,,ZWBZH,1965-05-26,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/FrequencyMeasure.csv b/tests/testthat/h7_v_1_19_18/FrequencyMeasure.csv deleted file mode 100644 index dfb66f90..00000000 --- a/tests/testthat/h7_v_1_19_18/FrequencyMeasure.csv +++ /dev/null @@ -1,271 +0,0 @@ -FMid,SAid,FMrecordType,FMstateOfProcessing,FMpresentation,FMclassMeasured,FMnumberAtUnit,FMtypeMeasured,FMmethod,FMmeasurementEquipment,FMaccuracy,FMconversionFactorAssessment,FMtypeAssessment,FMsampler,FMaddGrpMeasurement,FMaddGrpMeasurementType -4040142,549589,FM,BAF,CBF,240,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040143,549589,FM,BAF,CBF,330,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040144,549589,FM,BAF,CBF,250,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040145,549589,FM,BAF,CBF,260,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040146,549589,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040147,549589,FM,BAF,CBF,280,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040148,549589,FM,BAF,CBF,290,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040149,549589,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040150,549589,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040151,549589,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040152,549590,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040153,549590,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040154,549590,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040155,549590,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040156,549590,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040157,549590,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040158,549590,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040159,549590,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040160,549590,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040161,549590,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040162,549591,FM,BAF,CBF,110,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040163,549591,FM,BAF,CBF,120,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040164,549591,FM,BAF,CBF,130,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040165,549591,FM,BAF,CBF,140,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040166,549591,FM,BAF,CBF,150,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040167,549591,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040168,549591,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040169,549591,FM,BAF,CBF,180,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040170,549591,FM,BAF,CBF,190,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040171,549591,FM,BAF,CBF,200,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040172,549592,FM,BAF,CBF,330,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040173,549592,FM,BAF,CBF,340,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040174,549592,FM,BAF,CBF,350,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040175,549592,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040176,549592,FM,BAF,CBF,370,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040177,549592,FM,BAF,CBF,380,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040178,549592,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040179,549592,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040180,549592,FM,BAF,CBF,410,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040181,549592,FM,BAF,CBF,420,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040182,549593,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040183,549593,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040184,549593,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040185,549593,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040186,549593,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040187,549593,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040188,549593,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040189,549593,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040190,549593,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040191,549593,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040192,549594,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040193,549594,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040194,549594,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040195,549594,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040196,549594,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040197,549594,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040198,549594,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040199,549594,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040200,549594,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040201,549594,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040202,549595,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040203,549595,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040204,549595,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040205,549595,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040206,549595,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040207,549595,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040208,549595,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040209,549595,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040210,549595,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040211,549595,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040212,549596,FM,BAF,CBF,360,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040213,549596,FM,BAF,CBF,370,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040214,549596,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040215,549596,FM,BAF,CBF,390,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040216,549596,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040217,549596,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040218,549596,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040219,549596,FM,BAF,CBF,430,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040220,549596,FM,BAF,CBF,440,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040221,549596,FM,BAF,CBF,450,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040222,549597,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040223,549597,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040224,549597,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040225,549597,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040226,549597,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040227,549597,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040228,549597,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040229,549597,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040230,549597,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040231,549597,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040232,549598,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040233,549598,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040234,549598,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040235,549598,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040236,549598,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040237,549598,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040238,549598,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040239,549598,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040240,549598,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040241,549598,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040242,549599,FM,BAF,CBF,370,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040243,549599,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040244,549599,FM,BAF,CBF,390,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040245,549599,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040246,549599,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040247,549599,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040248,549599,FM,BAF,CBF,430,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040249,549599,FM,BAF,CBF,440,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040250,549599,FM,BAF,CBF,450,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040251,549599,FM,BAF,CBF,460,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040252,549600,FM,BAF,CBF,290,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040253,549600,FM,BAF,CBF,300,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040254,549600,FM,BAF,CBF,310,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040255,549600,FM,BAF,CBF,320,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040256,549600,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040257,549600,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040258,549600,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040259,549600,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040260,549600,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040261,549600,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040262,549601,FM,BAF,CBF,350,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040263,549601,FM,BAF,CBF,360,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040264,549601,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040265,549601,FM,BAF,CBF,380,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040266,549601,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040267,549601,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040268,549601,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040269,549601,FM,BAF,CBF,420,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040270,549601,FM,BAF,CBF,430,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040271,549601,FM,BAF,CBF,440,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040272,549602,FM,BAF,CBF,290,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040273,549602,FM,BAF,CBF,300,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040274,549602,FM,BAF,CBF,310,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040275,549602,FM,BAF,CBF,320,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040276,549602,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040277,549602,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040278,549602,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040279,549602,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040280,549602,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040281,549602,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040282,549603,FM,BAF,CBF,280,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040283,549603,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040284,549603,FM,BAF,CBF,300,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040285,549603,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040286,549603,FM,BAF,CBF,320,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040287,549603,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040288,549603,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040289,549603,FM,BAF,CBF,350,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040290,549603,FM,BAF,CBF,360,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040291,549603,FM,BAF,CBF,370,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040292,549604,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040293,549604,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040294,549604,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040295,549604,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040296,549604,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040297,549604,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040298,549604,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040299,549604,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040300,549604,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040301,549604,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040302,549605,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040303,549605,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040304,549605,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040305,549605,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040306,549605,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040307,549605,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040308,549605,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040309,549605,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040310,549605,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040311,549605,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040312,549606,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040313,549606,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040314,549606,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040315,549606,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040316,549606,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040317,549606,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040318,549606,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040319,549606,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040320,549606,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040321,549606,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040322,549607,FM,BAF,CBF,350,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040323,549607,FM,BAF,CBF,360,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040324,549607,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040325,549607,FM,BAF,CBF,380,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040326,549607,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040327,549607,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040328,549607,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040329,549607,FM,BAF,CBF,420,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040330,549607,FM,BAF,CBF,430,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040331,549607,FM,BAF,CBF,440,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040332,549608,FM,BAF,CBF,400,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040333,549608,FM,BAF,CBF,410,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040334,549608,FM,BAF,CBF,420,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040335,549608,FM,BAF,CBF,430,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040336,549608,FM,BAF,CBF,440,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040337,549608,FM,BAF,CBF,450,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040338,549608,FM,BAF,CBF,460,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040339,549608,FM,BAF,CBF,470,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040340,549608,FM,BAF,CBF,480,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040341,549608,FM,BAF,CBF,490,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040342,549609,FM,BAF,CBF,240,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040343,549609,FM,BAF,CBF,250,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040344,549609,FM,BAF,CBF,260,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040345,549609,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040346,549609,FM,BAF,CBF,280,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040347,549609,FM,BAF,CBF,290,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040348,549609,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040349,549609,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040350,549609,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040351,549609,FM,BAF,CBF,330,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040352,549610,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040353,549610,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040354,549610,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040355,549610,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040356,549610,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040357,549610,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040358,549610,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040359,549610,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040360,549610,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040361,549610,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040362,549611,FM,BAF,CBF,370,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040363,549611,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040364,549611,FM,BAF,CBF,390,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040365,549611,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040366,549611,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040367,549611,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040368,549611,FM,BAF,CBF,430,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040369,549611,FM,BAF,CBF,440,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040370,549611,FM,BAF,CBF,450,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040371,549611,FM,BAF,CBF,460,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040372,549612,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040373,549612,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040374,549612,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040375,549612,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040376,549612,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040377,549612,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040378,549612,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040379,549612,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040380,549612,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040381,549612,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040382,549613,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040383,549613,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040384,549613,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040385,549613,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040386,549613,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040387,549613,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040388,549613,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040389,549613,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040390,549613,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040391,549613,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040392,549614,FM,BAF,CBF,260,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040393,549614,FM,BAF,CBF,270,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040394,549614,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040395,549614,FM,BAF,CBF,290,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040396,549614,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040397,549614,FM,BAF,CBF,310,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040398,549614,FM,BAF,CBF,320,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040399,549614,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040400,549614,FM,BAF,CBF,340,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040401,549614,FM,BAF,CBF,350,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040402,549615,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040403,549615,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040404,549615,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040405,549615,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040406,549615,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040407,549615,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040408,549615,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040409,549615,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040410,549615,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040411,549615,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, diff --git a/tests/testthat/h7_v_1_19_18/LandingEvent.csv b/tests/testthat/h7_v_1_19_18/LandingEvent.csv deleted file mode 100644 index a80b2c83..00000000 --- a/tests/testthat/h7_v_1_19_18/LandingEvent.csv +++ /dev/null @@ -1,28 +0,0 @@ -LEid,OSid,FTid,VSid,TEid,SAid,VDid,FOid,SSid,LErecordType,LEencryptedVesselCode,LEstratification,LEsequenceNumber,LEhaulNumber,LEstratumName,LEclustering,LEclusterName,LEsampler,LEmixedTrip,LEcatchReg,LElocode,LElocationName,LElocationType,LEcountry,LEdate,LEtime,LEexclusiveEconomicZoneIndicator,LEarea,LErectangle,LEfisheriesManagementUnit,LEgsaSubarea,LEjurisdictionArea,LEnationalFishingActivity,LEmetier5,LEmetier6,LEgear,LEmeshSize,LEselectionDevice,LEselectionDeviceMeshSize,LEtargetSpecies,LEmitigationDevice,LEgearDimensions,LEnumberTotal,LEnumberSampled,LEselectionProb,LEinclusionProb,LEselectionMethod,LEunitName,LEselectionMethodCluster,LEnumberTotalClusters,LEnumberSampledClusters,LEselectionProbCluster,LEinclusionProbCluster,LEsampled,LEreasonNotSampled,LEnonResponseCollected,LEfullTripAvailable,LEauxiliaryVariableTotal,LEauxiliaryVariableValue,LEauxiliaryVariableName,LEauxiliaryVariableUnit -24751,21002,,,,,428069,,,LE,VDcode_8,N,1,,U,N,U,,N,All,,,,ZW,1965-03-10,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24752,21003,,,,,428067,,,LE,VDcode_6,N,2,,U,N,U,,N,All,,,,ZW,1965-01-28,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24753,21004,,,,,428069,,,LE,VDcode_8,N,3,,U,N,U,,N,All,,,,ZW,1965-01-23,,,27.7.f,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24754,21005,,,,,428068,,,LE,VDcode_7,N,4,,U,N,U,,N,All,,,,ZW,1965-05-25,,,27.7.f,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24755,21006,,,,,428063,,,LE,VDcode_2,N,5,,U,N,U,,N,All,,,,ZW,1965-10-13,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24756,21007,,,,,428067,,,LE,VDcode_6,N,6,,U,N,U,,N,All,,,,ZW,1965-02-12,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24757,21008,,,,,428069,,,LE,VDcode_8,N,7,,U,N,U,,N,All,,,,ZW,1965-08-16,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24758,21009,,,,,428067,,,LE,VDcode_6,N,8,,U,N,U,,N,All,,,,ZW,1965-04-18,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24759,21010,,,,,428066,,,LE,VDcode_5,N,9,,U,N,U,,N,All,,,,ZW,1965-06-06,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24760,21011,,,,,428070,,,LE,VDcode_9,N,10,,U,N,U,,N,All,,,,ZW,1965-08-23,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24761,21012,,,,,428068,,,LE,VDcode_7,N,11,,U,N,U,,N,All,,,,ZW,1965-02-20,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24762,21013,,,,,428063,,,LE,VDcode_2,N,12,,U,N,U,,N,All,,,,ZW,1965-03-15,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24763,21014,,,,,428070,,,LE,VDcode_9,N,13,,U,N,U,,N,All,,,,ZW,1965-11-13,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24764,21015,,,,,428066,,,LE,VDcode_5,N,14,,U,N,U,,N,All,,,,ZW,1965-08-03,,,27.7.f,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24765,21016,,,,,428069,,,LE,VDcode_8,N,15,,U,N,U,,N,All,,,,ZW,1965-05-06,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24766,21017,,,,,428068,,,LE,VDcode_7,N,16,,U,N,U,,N,All,,,,ZW,1965-06-20,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24767,21018,,,,,428070,,,LE,VDcode_9,N,17,,U,N,U,,N,All,,,,ZW,1965-07-29,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24768,21019,,,,,428070,,,LE,VDcode_9,N,18,,U,N,U,,N,All,,,,ZW,1965-02-22,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24769,21020,,,,,428064,,,LE,VDcode_3,N,19,,U,N,U,,N,All,,,,ZW,1965-07-16,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24770,21021,,,,,428066,,,LE,VDcode_5,N,20,,U,N,U,,N,All,,,,ZW,1965-11-15,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24771,21022,,,,,428062,,,LE,VDcode_1,N,21,,U,N,U,,N,All,,,,ZW,1965-05-28,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24772,21023,,,,,428068,,,LE,VDcode_7,N,22,,U,N,U,,N,All,,,,ZW,1965-07-18,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24773,21024,,,,,428067,,,LE,VDcode_6,N,23,,U,N,U,,N,All,,,,ZW,1965-06-24,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24774,21025,,,,,428067,,,LE,VDcode_6,N,24,,U,N,U,,N,All,,,,ZW,1965-01-03,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24775,21026,,,,,428064,,,LE,VDcode_3,N,25,,U,N,U,,N,All,,,,ZW,1965-11-04,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24776,21027,,,,,428064,,,LE,VDcode_3,N,26,,U,N,U,,N,All,,,,ZW,1965-01-04,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24777,21028,,,,,428063,,,LE,VDcode_2,N,27,,U,N,U,,N,All,,,,ZW,1965-04-09,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/OnshoreEvent.csv b/tests/testthat/h7_v_1_19_18/OnshoreEvent.csv deleted file mode 100644 index ecfcb2eb..00000000 --- a/tests/testthat/h7_v_1_19_18/OnshoreEvent.csv +++ /dev/null @@ -1,28 +0,0 @@ -OSid,SDid,OSrecordType,OSsequenceNumber,OSstratification,OSlocode,OSlocationName,OSlocationType,OSsamplingDate,OSsamplingTime,OSstratumName,OSclustering,OSclusterName,OSsampler,OStimeUnit,OStimeValue,OSnumberTotal,OSnumberSampled,OSselectionProb,OSinclusionProb,OSselectionMethod,OSunitName,OSselectionMethodCluster,OSnumberTotalClusters,OSnumberSampledClusters,OSselectionProbCluster,OSinclusionProbCluster,OSsampled,OSreasonNotSampled,OSnonResponseCollected,OSauxiliaryVariableTotal,OSauxiliaryVariableValue,OSauxiliaryVariableName,OSauxiliaryVariableUnit -21002,5441,OS,1,Y,ZWMJW,1234567891,,1965-11-11,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21003,5441,OS,2,Y,ZWUTA,1234567892,,1965-09-20,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21004,5441,OS,3,Y,ZWBZH,1234567893,,1965-12-01,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21005,5441,OS,4,Y,ZWBUQ,1234567894,,1965-09-12,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21006,5441,OS,5,Y,ZWHWN,1234567895,,1965-08-09,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21007,5441,OS,6,Y,ZWHRE,1234567896,,1965-01-25,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21008,5441,OS,7,Y,ZWGWE,1234567897,,1965-04-27,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21009,5441,OS,8,Y,ZWMJW,1234567898,,1965-04-09,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21010,5441,OS,9,Y,ZWMVZ,1234567899,,1965-03-27,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, -21011,5442,OS,1,Y,ZWHWN,12345678910,,1965-09-19,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21012,5442,OS,2,Y,ZWUTA,12345678911,,1965-07-28,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21013,5442,OS,3,Y,ZWGWE,12345678912,,1965-10-08,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21014,5442,OS,4,Y,ZWBUQ,12345678913,,1965-11-15,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21015,5442,OS,5,Y,ZWWKI,12345678914,,1965-04-02,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21016,5442,OS,6,Y,ZWKAB,12345678915,,1965-03-12,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21017,5442,OS,7,Y,ZWCHJ,12345678916,,1965-04-21,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21018,5442,OS,8,Y,ZWCHJ,12345678917,,1965-03-22,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21019,5442,OS,9,Y,ZWVFA,12345678918,,1965-06-28,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, -21020,5443,OS,1,Y,ZWWKI,12345678919,,1965-04-08,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21021,5443,OS,2,Y,ZWBFO,12345678920,,1965-03-22,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21022,5443,OS,3,Y,ZWHWN,12345678921,,1965-03-20,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21023,5443,OS,4,Y,ZWCHJ,12345678922,,1965-11-18,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21024,5443,OS,5,Y,ZWBUQ,12345678923,,1965-08-02,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21025,5443,OS,6,Y,ZWBZH,12345678924,,1965-05-08,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21026,5443,OS,7,Y,ZWCHJ,12345678925,,1965-03-21,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21027,5443,OS,8,Y,ZWCHJ,12345678926,,1965-02-25,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21028,5443,OS,9,Y,ZWBFO,12345678927,,1965-09-03,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/Sample.csv b/tests/testthat/h7_v_1_19_18/Sample.csv deleted file mode 100644 index d9a4c202..00000000 --- a/tests/testthat/h7_v_1_19_18/Sample.csv +++ /dev/null @@ -1,28 +0,0 @@ -SAid,SSid,LEid,SArecordType,SAsequenceNumber,SAparentSequenceNumber,SAstratification,SAstratumName,SAspeciesCode,SAspeciesCodeFAO,SAstateOfProcessing,SApresentation,SAspecimensState,SAcatchCategory,SAlandingCategory,SAcommSizeCatScale,SAcommSizeCat,SAsex,SAexclusiveEconomicZoneIndicator,SAarea,SArectangle,SAfisheriesManagementUnit,SAgsaSubarea,SAjurisdictionArea,SAnationalFishingActivity,SAmetier5,SAmetier6,SAgear,SAmeshSize,SAselectionDevice,SAselectionDeviceMeshSize,SAunitType,SAtotalWeightLive,SAsampleWeightLive,SAnumberTotal,SAnumberSampled,SAselectionProb,SAinclusionProb,SAselectionMethod,SAunitName,SAlowerHierarchy,SAsampler,SAsampled,SAreasonNotSampled,SAnonResponseCollected,SAreasonNotSampledFM,SAreasonNotSampledBV,SAtotalWeightMeasured,SAsampleWeightMeasured,SAconversionFactorMeasLive,SAauxiliaryVariableTotal,SAauxiliaryVariableValue,SAauxiliaryVariableName,SAauxiliaryVariableUnit -549589,225791,,SA,1,,N,U,100930,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549590,225792,,SA,2,,N,U,1016062,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549591,225793,,SA,3,,N,U,101170,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549592,225794,,SA,4,,N,U,101167,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549593,225795,,SA,5,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549594,225796,,SA,6,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549595,225797,,SA,7,,N,U,1019159,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549596,225798,,SA,8,,N,U,101174,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549597,225799,,SA,9,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549598,225800,,SA,10,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549599,225801,,SA,11,,N,U,100684,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549600,225802,,SA,12,,N,U,100782,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549601,225803,,SA,13,,N,U,101380,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549602,225804,,SA,14,,N,U,100782,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549603,225805,,SA,15,,N,U,101,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549604,225806,,SA,16,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549605,225807,,SA,17,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549606,225808,,SA,18,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549607,225809,,SA,19,,N,U,101380,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549608,225810,,SA,20,,N,U,101800,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549609,225811,,SA,21,,N,U,100930,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549610,225812,,SA,22,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549611,225813,,SA,23,,N,U,100684,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549612,225814,,SA,24,,N,U,101519,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549613,225815,,SA,25,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549614,225816,,SA,26,,N,U,101013,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549615,225817,,SA,27,,N,U,1016062,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/SamplingDetails.csv b/tests/testthat/h7_v_1_19_18/SamplingDetails.csv deleted file mode 100644 index 504c35ce..00000000 --- a/tests/testthat/h7_v_1_19_18/SamplingDetails.csv +++ /dev/null @@ -1,4 +0,0 @@ -SDid,DEid,SDrecordType,SDcountry,SDinstitution -5441,5409,SD,ZW,1051 -5442,5410,SD,ZW,1051 -5443,5411,SD,ZW,1051 diff --git a/tests/testthat/h7_v_1_19_18/SpeciesList.csv b/tests/testthat/h7_v_1_19_18/SpeciesList.csv deleted file mode 100644 index 3e8e727d..00000000 --- a/tests/testthat/h7_v_1_19_18/SpeciesList.csv +++ /dev/null @@ -1,171 +0,0 @@ -SLid,SLrecordType,SLcountry,SLinstitute,SLspeciesListName,SLyear,SLcatchFraction,SLcommercialTaxon,SLspeciesCode -34533,SL,ZW,396,testString1,1965,Catch,131649,1016062 -34591,SL,ZW,1570,testString19,1965,Lan,156103,273146 -34605,SL,ZW,5284,testString13,1965,Lan,125956,125311 -34614,SL,ZW,714,testString7,1965,Catch,1056519,126714 -34637,SL,ZW,583,testString2,1965,Lan,107579,283150 -34657,SL,ZW,1000,testString7,1965,Dis,236488,105814 -34832,SL,ZW,249,testString1,1965,Dis,272087,117302 -34870,SL,ZW,1351,testString13,1965,Catch,158913,107268 -34990,SL,ZW,542,testString14,1965,Catch,286092,159040 -35024,SL,ZW,583,testString6,1965,Dis,105730,154210 -35031,SL,ZW,1478,testString5,1965,Lan,286092,136979 -35054,SL,ZW,1478,testString17,1965,Dis,123878,290118 -35200,SL,ZW,1622,testString13,1965,Dis,132102,127151 -35206,SL,ZW,3288,testString3,1965,Catch,137113,151520 -35278,SL,ZW,583,testString16,1965,Catch,127141,154165 -35369,SL,ZW,2135,testString2,1965,Catch,212611,126497 -35390,SL,ZW,5014,testString6,1965,Catch,275008,105814 -35421,SL,ZW,2135,testString18,1965,Lan,158291,126736 -35454,SL,ZW,1051,testString3,1965,Dis,119916,127405 -35570,SL,ZW,583,testString11,1965,Lan,271684,127320 -35680,SL,ZW,714,testString19,1965,Catch,127271,236462 -35853,SL,ZW,2135,testString14,1965,Dis,131629,159097 -36036,SL,ZW,1570,testString4,1965,Lan,159168,159023 -36081,SL,ZW,3288,testString11,1965,Catch,125604,125895 -36087,SL,ZW,353,testString6,1965,Lan,141443,126749 -36120,SL,ZW,353,testString15,1965,Dis,117962,140301 -36142,SL,ZW,3140,testString14,1965,Lan,1056510,127247 -36182,SL,ZW,353,testString6,1965,Dis,1019159,138483 -36247,SL,ZW,353,testString6,1965,Lan,137080,125277 -36282,SL,ZW,2195,testString5,1965,Catch,298167,131591 -36307,SL,ZW,1385,testString2,1965,Catch,137233,126175 -36411,SL,ZW,1385,testString11,1965,Lan,370776,126751 -36543,SL,ZW,28,testString17,1965,Catch,125802,107345 -36551,SL,ZW,3857,testString14,1965,Catch,154210,126733 -36564,SL,ZW,1340,testString2,1965,Catch,126858,1383416 -36581,SL,ZW,194,testString6,1965,Dis,989153,853816 -36642,SL,ZW,194,testString13,1965,Catch,234519,275247 -36656,SL,ZW,3857,testString4,1965,Catch,128498,445503 -36727,SL,ZW,1340,testString10,1965,Dis,125285,127337 -36731,SL,ZW,583,testString15,1965,Lan,137086,325305 -36754,SL,ZW,1000,testString18,1965,Dis,127222,286574 -36787,SL,ZW,249,testString17,1965,Dis,105869,105901 -36804,SL,ZW,1340,testString4,1965,Catch,105711,106393 -36842,SL,ZW,5284,testString7,1965,Lan,139429,125603 -36870,SL,ZW,396,testString18,1965,Dis,137095,125794 -37017,SL,ZW,3140,testString19,1965,Dis,137172,126792 -37038,SL,ZW,2135,testString1,1965,Catch,126431,140624 -37072,SL,ZW,583,testString12,1965,Catch,126178,127057 -37111,SL,ZW,396,testString15,1965,Catch,164811,273962 -37145,SL,ZW,5014,testString7,1965,Dis,10295,125700 -37161,SL,ZW,1340,testString11,1965,Catch,254316,125581 -37178,SL,ZW,353,testString7,1965,Lan,140733,275830 -37207,SL,ZW,714,testString18,1965,Lan,275008,137167 -37322,SL,ZW,1000,testString11,1965,Lan,343897,153087 -37408,SL,ZW,583,testString2,1965,Lan,137179,158326 -37434,SL,ZW,353,testString11,1965,Dis,126950,275180 -37517,SL,ZW,5014,testString15,1965,Catch,159177,137182 -37606,SL,ZW,2135,testString1,1965,Catch,126417,126621 -37609,SL,ZW,5284,testString17,1965,Catch,514087,159197 -37611,SL,ZW,249,testString6,1965,Dis,135304,138878 -37662,SL,ZW,194,testString1,1965,Dis,181381,125355 -37684,SL,ZW,1570,testString4,1965,Lan,127379,126328 -37703,SL,ZW,5284,testString13,1965,Catch,468742,159172 -37958,SL,ZW,1000,testString10,1965,Dis,137094,126580 -37972,SL,ZW,583,testString19,1965,Lan,137189,169682 -38021,SL,ZW,1051,testString11,1965,Dis,137084,195837 -38044,SL,ZW,5284,testString13,1965,Dis,170671,103308 -38120,SL,ZW,1385,testString5,1965,Lan,126291,106847 -38156,SL,ZW,1444,testString6,1965,Dis,370776,125903 -38163,SL,ZW,353,testString1,1965,Dis,113,154343 -38184,SL,ZW,1351,testString6,1965,Catch,137071,137793 -38211,SL,ZW,3857,testString2,1965,Dis,126303,141548 -38253,SL,ZW,1351,testString17,1965,Lan,105913,132063 -38420,SL,ZW,353,testString15,1965,Dis,254993,126738 -38457,SL,ZW,1444,testString14,1965,Dis,368412,137160 -38486,SL,ZW,353,testString1,1965,Dis,126349,125409 -38489,SL,ZW,1622,testString11,1965,Catch,107275,22612 -38497,SL,ZW,1385,testString13,1965,Dis,110671,137074 -38546,SL,ZW,249,testString17,1965,Dis,126415,127138 -38660,SL,ZW,542,testString10,1965,Lan,126153,127334 -38718,SL,ZW,1340,testString2,1965,Catch,126707,125888 -38750,SL,ZW,1622,testString14,1965,Catch,151802,127160 -38786,SL,ZW,3857,testString18,1965,Lan,989619,126642 -38840,SL,ZW,1051,testString5,1965,Catch,271743,105841 -38996,SL,ZW,1051,testString3,1965,Lan,137138,123803 -39038,SL,ZW,1051,testString15,1965,Catch,137174,126783 -39076,SL,ZW,3140,testString16,1965,Lan,274304,126160 -39114,SL,ZW,1574,testString15,1965,Dis,137111,126307 -39150,SL,ZW,1444,testString11,1965,Dis,134214,110678 -39314,SL,ZW,1478,testString10,1965,Dis,103331,140658 -39533,SL,ZW,3857,testString7,1965,Dis,163921,127060 -39562,SL,ZW,1444,testString13,1965,Dis,137089,127203 -39564,SL,ZW,28,testString10,1965,Dis,125493,125815 -39570,SL,ZW,1622,testString16,1965,Catch,107094,123083 -39596,SL,ZW,1351,testString15,1965,Catch,154298,125317 -39648,SL,ZW,542,testString15,1965,Lan,275247,135191 -47806,SL,ZW,4484,WGRDBES-EST_TEST_Pckg_survey_data_apistrat_H1,1965,Lan,107254,107254 -47864,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_agsrs_H1,1965,Lan,107254,107254 -47865,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_agstrat_H1,1965,Lan,107254,107254 -47866,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_gpa_H1,1965,Lan,107254,107254 -47867,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_coots_H1,1965,Lan,107254,107254 -47868,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_schools_H1,1965,Lan,107254,107254 -47869,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_algebra_H1,1965,Lan,107254,107254 -47870,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100684,100684 -47871,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100782,100782 -47872,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100930,100930 -47873,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101,101 -47874,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101013,101013 -47875,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101167,101167 -47876,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101170,101170 -47877,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101172,101172 -47878,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101174,101174 -47879,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101380,101380 -47880,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101417,101417 -47881,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101519,101519 -47882,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1015724,1015724 -47883,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1016062,1016062 -47884,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101798,101798 -47885,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101800,101800 -47886,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101804,101804 -47887,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1019159,1019159 -47888,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,10193,10193 -47889,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,10194,10194 -31853,SL,ZW,194,testString17,1965,Catch,136980,126029 -31886,SL,ZW,714,testString13,1965,Lan,131950,137793 -31894,SL,ZW,2135,testString19,1965,Catch,125815,126361 -31935,SL,ZW,5284,testString1,1965,Dis,105693,125317 -31986,SL,ZW,353,testString1,1965,Lan,105876,139472 -32238,SL,ZW,3288,testString3,1965,Catch,127022,107451 -32252,SL,ZW,583,testString6,1965,Lan,126029,125613 -32257,SL,ZW,28,testString11,1965,Lan,125293,272698 -32392,SL,ZW,1622,testString13,1965,Dis,293252,127101 -32396,SL,ZW,4484,testString4,1965,Catch,128490,126698 -32446,SL,ZW,1444,testString17,1965,Dis,126227,342104 -32509,SL,ZW,542,testString17,1965,Catch,107381,101417 -32548,SL,ZW,1385,testString6,1965,Dis,289447,137107 -32628,SL,ZW,1000,testString13,1965,Dis,105839,125284 -32766,SL,ZW,714,testString18,1965,Lan,126171,140625 -32769,SL,ZW,1340,testString7,1965,Catch,368412,128498 -32839,SL,ZW,353,testString11,1965,Dis,153063,125831 -32912,SL,ZW,1570,testString19,1965,Catch,126534,283935 -32917,SL,ZW,542,testString19,1965,Lan,158796,134034 -33062,SL,ZW,4484,testString4,1965,Dis,290178,127055 -33138,SL,ZW,4484,testString15,1965,Lan,127082,137203 -33155,SL,ZW,714,testString2,1965,Dis,106731,111374 -33201,SL,ZW,3288,testString15,1965,Lan,128497,126740 -33218,SL,ZW,353,testString3,1965,Dis,137131,107044 -33243,SL,ZW,714,testString5,1965,Dis,154659,140625 -33284,SL,ZW,2195,testString11,1965,Lan,158559,137113 -33333,SL,ZW,1385,testString5,1965,Dis,100930,137134 -33388,SL,ZW,1444,testString5,1965,Lan,125819,159115 -33395,SL,ZW,3288,testString11,1965,Lan,126328,127147 -33452,SL,ZW,1351,testString17,1965,Dis,107157,125357 -33486,SL,ZW,1000,testString15,1965,Dis,465358,126460 -33505,SL,ZW,2195,testString4,1965,Lan,126913,325342 -33575,SL,ZW,3140,testString1,1965,Dis,135171,117212 -33576,SL,ZW,5284,testString19,1965,Lan,127204,558 -33670,SL,ZW,1385,testString19,1965,Lan,154165,127332 -33676,SL,ZW,2195,testString10,1965,Catch,133205,134034 -33709,SL,ZW,1000,testString14,1965,Dis,138122,105914 -33747,SL,ZW,1570,testString2,1965,Dis,105881,125306 -33758,SL,ZW,28,testString19,1965,Dis,127059,125936 -33760,SL,ZW,583,testString5,1965,Dis,125739,125915 -33927,SL,ZW,1622,testString19,1965,Catch,140112,127251 -34086,SL,ZW,1351,testString1,1965,Catch,125603,126977 -34155,SL,ZW,194,testString14,1965,Lan,159176,567480 -34209,SL,ZW,1574,testString4,1965,Dis,151523,127405 -34216,SL,ZW,5014,testString7,1965,Catch,126632,127246 -34389,SL,ZW,3857,testString2,1965,Dis,254991,125324 -34521,SL,ZW,1444,testString14,1965,Catch,105896,101172 diff --git a/tests/testthat/h7_v_1_19_18/SpeciesSelection.csv b/tests/testthat/h7_v_1_19_18/SpeciesSelection.csv deleted file mode 100644 index a1e0df79..00000000 --- a/tests/testthat/h7_v_1_19_18/SpeciesSelection.csv +++ /dev/null @@ -1,28 +0,0 @@ -SSid,LEid,FOid,TEid,FTid,SLid,OSid,SSrecordType,SSsequenceNumber,SSstratification,SSstratumName,SSclustering,SSclusterName,SSobservationActivityType,SScatchFraction,SSobservationType,SSsampler,SSspeciesListName,SSuseForCalculateZero,SStimeTotal,SStimeSampled,SSnumberTotal,SSnumberSampled,SSselectionProb,SSinclusionProb,SSselectionMethod,SSunitName,SSselectionMethodCluster,SSnumberTotalClusters,SSnumberSampledClusters,SSselectionProbCluster,SSinclusionProbCluster,SSsampled,SSreasonNotSampled,SSnonResponseCollected,SSauxiliaryVariableTotal,SSauxiliaryVariableValue,SSauxiliaryVariableName,SSauxiliaryVariableUnit -225791,24751,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225792,24752,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225793,24753,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225794,24754,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225795,24755,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225796,24756,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225797,24757,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225798,24758,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225799,24759,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225800,24760,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225801,24761,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225802,24762,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225803,24763,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225804,24764,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225805,24765,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225806,24766,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225807,24767,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225808,24768,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225809,24769,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225810,24770,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225811,24771,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225812,24772,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225813,24773,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225814,24774,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225815,24775,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225816,24776,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225817,24777,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_18/VesselDetails.csv b/tests/testthat/h7_v_1_19_18/VesselDetails.csv deleted file mode 100644 index 8c0a9a6c..00000000 --- a/tests/testthat/h7_v_1_19_18/VesselDetails.csv +++ /dev/null @@ -1,312 +0,0 @@ -VDid,VDrecordType,VDencryptedVesselCode,VDyear,VDcountry,VDhomePort,VDflagCountry,VDlength,VDlengthCategory,VDpower,VDtonnage,VDtonUnit -415656,VD,testString6,1965,ZW,INMYQ,EH,,VL1518,1461,4011,GT -427762,VD,26820,1965,ZW,,ZW,14.00,VL1215,294,24,GT -427763,VD,43412,1965,ZW,,ZW,19.00,VL1824,400,110,GT -427764,VD,42060,1965,ZW,,ZW,18.00,VL1824,386,71,GT -427765,VD,46770,1965,ZW,,ZW,17.00,VL1518,339,62,GT -427766,VD,50796,1965,ZW,,ZW,16.00,VL1518,235,33,GT -427767,VD,43048,1965,ZW,,ZW,15.00,VL1215,245,36,GT -427768,VD,50708,1965,ZW,,ZW,24.00,VL1824,441,149,GT -427769,VD,50654,1965,ZW,,ZW,17.00,VL1518,367,68,GT -427770,VD,51104,1965,ZW,,ZW,12.00,VL1215,165,19,GT -427771,VD,32376,1965,ZW,,ZW,35.00,VL2440,735,358,GT -427772,VD,31356,1965,ZW,,ZW,32.00,VL2440,596,273,GT -427773,VD,17418,1965,ZW,,ZW,15.00,VL1215,280,25,GT -427774,VD,50358,1965,ZW,,ZW,15.00,VL1215,280,25,GT -427775,VD,51358,1965,ZW,,ZW,14.00,VL1215,175,19,GT -427776,VD,51168,1965,ZW,,ZW,20.00,VL1824,258,86,GT -427777,VD,52004,1965,ZW,,ZW,19.00,VL1824,345,146,GT -427778,VD,38728,1965,ZW,,ZW,19.00,VL1824,345,146,GT -427779,VD,34008,1965,ZW,,ZW,15.00,VL1215,375,55,GT -427780,VD,23088,1965,ZW,,ZW,15.00,VL1518,257,38,GT -427781,VD,50348,1965,ZW,,ZW,10.00,VL1012,66,11,GT -427782,VD,41920,1965,ZW,,ZW,15.00,VL1215,293,43,GT -427783,VD,33640,1965,ZW,,ZW,10.00,VL0810,92,8,GT -427784,VD,45906,1965,ZW,,ZW,7.00,VL0608,15,1,GT -427785,VD,47050,1965,ZW,,ZW,8.00,VL0608,22,10,GT -427786,VD,19344,1965,ZW,,ZW,7.00,VL0608,25,,GT -427787,VD,50248,1965,ZW,,ZW,9.00,VL0810,62,5,GT -427788,VD,52332,1965,ZW,,ZW,8.00,VL0810,26,2,GT -427789,VD,51882,1965,ZW,,ZW,8.00,VL0810,29,,GT -427790,VD,50268,1965,ZW,,ZW,7.00,VL0608,18,1,GT -427791,VD,20204,1965,ZW,,ZW,9.00,VL0810,66,4,GT -427792,VD,51364,1965,ZW,,ZW,8.00,VL0810,55,,GT -427793,VD,47862,1965,ZW,,ZW,10.00,VL0810,63,10,GT -427794,VD,34554,1965,ZW,,ZW,8.00,VL0810,59,2,GT -427795,VD,51626,1965,ZW,,ZW,9.00,VL0810,90,3,GT -427796,VD,41428,1965,ZW,,ZW,9.00,VL0810,177,3,GT -427797,VD,31426,1965,ZW,,ZW,11.00,VL1012,81,8,GT -427798,VD,46230,1965,ZW,,ZW,9.00,VL0810,61,2,GT -427799,VD,50870,1965,ZW,,ZW,10.00,VL0810,79,8,GT -427800,VD,50278,1965,ZW,,ZW,11.00,VL1012,60,7,GT -427801,VD,38250,1965,ZW,,ZW,10.00,VL0810,22,8,GT -427802,VD,15212,1965,ZW,,ZW,10.00,VL1012,78,16,GT -427803,VD,42620,1965,ZW,,ZW,10.00,VL0810,22,8,GT -427804,VD,20902,1965,ZW,,ZW,11.00,VL1012,61,9,GT -427805,VD,51342,1965,ZW,,ZW,8.00,VL0810,31,3,GT -427806,VD,50214,1965,ZW,,ZW,3.00,VL0006,18,,GT -427807,VD,31238,1965,ZW,,ZW,6.00,VL0608,7,,GT -427808,VD,33216,1965,ZW,,ZW,9.00,VL0810,66,3,GT -427809,VD,52644,1965,ZW,,ZW,6.00,VL0608,6,,GT -427810,VD,40420,1965,ZW,,ZW,9.00,VL0810,22,4,GT -427811,VD,46286,1965,ZW,,ZW,10.00,VL0810,88,6,GT -427812,VD,51920,1965,ZW,,ZW,7.00,VL0608,13,1,GT -427813,VD,41124,1965,ZW,,ZW,8.00,VL0608,55,,GT -427814,VD,33962,1965,ZW,,ZW,7.00,VL0608,4,,GT -427815,VD,51144,1965,ZW,,ZW,7.00,VL0608,7,1,GT -427816,VD,51402,1965,ZW,,ZW,6.00,VL0608,16,,GT -427817,VD,20646,1965,ZW,,ZW,9.00,VL0810,62,6,GT -427818,VD,50702,1965,ZW,,ZW,8.00,VL0810,37,5,GT -427819,VD,51872,1965,ZW,,ZW,12.00,VL1012,35,10,GT -427820,VD,46664,1965,ZW,,ZW,6.00,VL0608,9,,GT -427821,VD,20076,1965,ZW,,ZW,6.00,VL0608,7,,GT -427822,VD,52360,1965,ZW,,ZW,7.00,VL0608,15,2,GT -427823,VD,46362,1965,ZW,,ZW,10.00,VL0810,185,10,GT -427824,VD,50552,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427825,VD,52098,1965,ZW,,ZW,10.00,VL1012,18,9,GT -427826,VD,40470,1965,ZW,,ZW,9.00,VL0810,11,3,GT -427827,VD,22260,1965,ZW,,ZW,9.00,VL0810,53,6,GT -427828,VD,52368,1965,ZW,,ZW,10.00,VL1012,59,12,GT -427829,VD,44578,1965,ZW,,ZW,10.00,VL0810,96,4,GT -427830,VD,42616,1965,ZW,,ZW,7.00,VL0608,43,,GT -427831,VD,43656,1965,ZW,,ZW,10.00,VL0810,160,11,GT -427832,VD,51276,1965,ZW,,ZW,7.00,VL0608,22,1,GT -427833,VD,20580,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427834,VD,46066,1965,ZW,,ZW,8.00,VL0608,18,1,GT -427835,VD,43830,1965,ZW,,ZW,7.00,VL0608,33,1,GT -427836,VD,44600,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427837,VD,38744,1965,ZW,,ZW,12.00,VL1012,184,19,GT -427838,VD,24994,1965,ZW,,ZW,9.00,VL0810,35,4,GT -427839,VD,52316,1965,ZW,,ZW,7.00,VL0608,26,4,GT -427840,VD,46930,1965,ZW,,ZW,7.00,VL0608,26,4,GT -427841,VD,50648,1965,ZW,,ZW,11.00,VL1012,147,7,GT -427842,VD,29824,1965,ZW,,ZW,11.00,VL1012,110,12,GT -427843,VD,40866,1965,ZW,,ZW,10.00,VL0810,112,9,GT -427844,VD,52002,1965,ZW,,ZW,9.00,VL0810,71,4,GT -427845,VD,15672,1965,ZW,,ZW,6.00,VL0006,9,,GT -427846,VD,51740,1965,ZW,,ZW,10.00,VL1012,66,6,GT -427847,VD,41966,1965,ZW,,ZW,6.00,VL0608,16,,GT -427848,VD,34544,1965,ZW,,ZW,9.00,VL0810,154,3,GT -427849,VD,43536,1965,ZW,,ZW,6.00,VL0608,20,,GT -427850,VD,31036,1965,ZW,,ZW,9.00,VL0810,59,4,GT -427851,VD,50714,1965,ZW,,ZW,6.00,VL0608,9,1,GT -427852,VD,27462,1965,ZW,,ZW,10.00,VL0810,184,7,GT -427853,VD,19462,1965,ZW,,ZW,10.00,VL0810,50,5,GT -427854,VD,39520,1965,ZW,,ZW,9.00,VL0810,59,7,GT -427855,VD,25202,1965,ZW,,ZW,7.00,VL0608,26,1,GT -427856,VD,52130,1965,ZW,,ZW,7.00,VL0608,30,2,GT -427857,VD,52318,1965,ZW,,ZW,7.00,VL0608,16,2,GT -427858,VD,44524,1965,ZW,,ZW,9.00,VL0810,59,4,GT -427859,VD,45260,1965,ZW,,ZW,9.00,VL0810,54,5,GT -427860,VD,32464,1965,ZW,,ZW,10.00,VL1012,88,5,GT -427861,VD,29208,1965,ZW,,ZW,7.00,VL0608,46,1,GT -427862,VD,38570,1965,ZW,,ZW,10.00,VL1012,141,7,GT -427863,VD,51540,1965,ZW,,ZW,8.00,VL0608,53,2,GT -427864,VD,42928,1965,ZW,,ZW,11.00,VL1012,93,14,GT -427865,VD,31828,1965,ZW,,ZW,10.00,VL0810,99,6,GT -427866,VD,39066,1965,ZW,,ZW,9.00,VL0810,96,2,GT -427867,VD,41574,1965,ZW,,ZW,9.00,VL0810,22,6,GT -427868,VD,28864,1965,ZW,,ZW,7.00,VL0608,16,,GT -427869,VD,29556,1965,ZW,,ZW,9.00,VL0810,39,4,GT -427870,VD,46450,1965,ZW,,ZW,8.00,VL0608,55,3,GT -427871,VD,44060,1965,ZW,,ZW,9.00,VL0810,66,6,GT -427872,VD,26654,1965,ZW,,ZW,11.00,VL1012,109,14,GT -427873,VD,45832,1965,ZW,,ZW,7.00,VL0608,44,1,GT -427874,VD,18810,1965,ZW,,ZW,9.00,VL0810,74,6,GT -427875,VD,29566,1965,ZW,,ZW,8.00,VL0810,59,3,GT -427876,VD,40948,1965,ZW,,ZW,10.00,VL1012,66,6,GT -427877,VD,42184,1965,ZW,,ZW,8.00,VL0810,24,3,GT -427878,VD,50134,1965,ZW,,ZW,10.00,VL0810,101,3,GT -427879,VD,51890,1965,ZW,,ZW,11.00,VL1012,110,8,GT -427880,VD,43208,1965,ZW,,ZW,12.00,VL1012,141,11,GT -427881,VD,47182,1965,ZW,,ZW,11.00,VL1012,88,7,GT -427882,VD,51476,1965,ZW,,ZW,11.00,VL1012,81,,GT -427883,VD,51036,1965,ZW,,ZW,8.00,VL0608,22,2,GT -427884,VD,47290,1965,ZW,,ZW,6.00,VL0608,13,,GT -427885,VD,43882,1965,ZW,,ZW,7.00,VL0608,29,1,GT -427886,VD,28846,1965,ZW,,ZW,12.00,VL1012,184,7,GT -427887,VD,50164,1965,ZW,,ZW,7.00,VL0608,38,1,GT -427888,VD,20166,1965,ZW,,ZW,10.00,VL0810,53,6,GT -427889,VD,47484,1965,ZW,,ZW,12.00,VL1012,88,12,GT -427890,VD,43946,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427891,VD,39562,1965,ZW,,ZW,8.00,VL0608,32,3,GT -427892,VD,46988,1965,ZW,,ZW,8.00,VL0810,26,2,GT -427893,VD,23406,1965,ZW,,ZW,7.00,VL0608,24,1,GT -427894,VD,30682,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427895,VD,50668,1965,ZW,,ZW,11.00,VL1012,60,12,GT -427896,VD,26254,1965,ZW,,ZW,11.00,VL1012,59,6,GT -427897,VD,39802,1965,ZW,,ZW,7.00,VL0608,14,,GT -427898,VD,51768,1965,ZW,,ZW,12.00,VL1012,261,33,GT -427899,VD,39828,1965,ZW,,ZW,12.00,VL1012,110,13,GT -427900,VD,50812,1965,ZW,,ZW,10.00,VL0810,147,5,GT -427901,VD,42704,1965,ZW,,ZW,8.00,VL0608,22,2,GT -427902,VD,40820,1965,ZW,,ZW,9.00,VL0810,67,6,GT -427903,VD,47446,1965,ZW,,ZW,9.00,VL0810,78,9,GT -427904,VD,40476,1965,ZW,,ZW,10.00,VL0810,56,6,GT -427905,VD,17258,1965,ZW,,ZW,13.00,VL1215,294,14,GT -427906,VD,33832,1965,ZW,,ZW,11.00,VL1012,66,11,GT -427907,VD,45572,1965,ZW,,ZW,11.00,VL1012,66,11,GT -427908,VD,46852,1965,ZW,,ZW,10.00,VL0810,66,9,GT -427909,VD,50776,1965,ZW,,ZW,7.00,VL0608,21,1,GT -427910,VD,39486,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427911,VD,46204,1965,ZW,,ZW,12.00,VL1012,107,12,GT -427912,VD,28752,1965,ZW,,ZW,11.00,VL1012,184,10,GT -427913,VD,45524,1965,ZW,,ZW,9.00,VL0810,55,3,GT -427914,VD,51486,1965,ZW,,ZW,6.00,VL0608,20,,GT -427915,VD,38764,1965,ZW,,ZW,8.00,VL0810,110,2,GT -427916,VD,24374,1965,ZW,,ZW,8.00,VL0608,18,1,GT -427917,VD,47848,1965,ZW,,ZW,7.00,VL0608,28,1,GT -427918,VD,51174,1965,ZW,,ZW,12.00,VL1012,250,14,GT -427919,VD,23000,1965,ZW,,ZW,10.00,VL0810,162,6,GT -427920,VD,46252,1965,ZW,,ZW,8.00,VL0810,96,2,GT -427921,VD,38374,1965,ZW,,ZW,10.00,VL1012,272,7,GT -427922,VD,46288,1965,ZW,,ZW,8.00,VL0608,96,2,GT -427923,VD,50502,1965,ZW,,ZW,8.00,VL0608,59,2,GT -427924,VD,32408,1965,ZW,,ZW,6.00,VL0608,13,,GT -427925,VD,21974,1965,ZW,,ZW,10.00,VL0810,78,15,GT -427926,VD,46440,1965,ZW,,ZW,8.00,VL0608,24,3,GT -427927,VD,39878,1965,ZW,,ZW,8.00,VL0608,63,2,GT -427928,VD,34250,1965,ZW,,ZW,9.00,VL0810,26,5,GT -427929,VD,24244,1965,ZW,,ZW,11.00,VL1012,110,13,GT -427930,VD,32766,1965,ZW,,ZW,12.00,VL1012,294,18,GT -427931,VD,40382,1965,ZW,,ZW,9.00,VL0810,26,,GT -427932,VD,46960,1965,ZW,,ZW,10.00,VL1012,225,7,GT -427933,VD,20156,1965,ZW,,ZW,11.00,VL1012,74,15,GT -427934,VD,24346,1965,ZW,,ZW,6.00,VL0608,18,,GT -427935,VD,47938,1965,ZW,,ZW,11.00,VL1012,154,10,GT -427936,VD,43126,1965,ZW,,ZW,12.00,VL1012,115,11,GT -427937,VD,51988,1965,ZW,,ZW,9.00,VL0810,88,4,GT -427938,VD,46504,1965,ZW,,ZW,10.00,VL1012,107,9,GT -427939,VD,41312,1965,ZW,,ZW,10.00,VL1012,107,9,GT -427940,VD,41652,1965,ZW,,ZW,11.00,VL1012,110,6,GT -427941,VD,27156,1965,ZW,,ZW,8.00,VL0608,85,8,GT -427942,VD,46942,1965,ZW,,ZW,12.00,VL1012,130,12,GT -427943,VD,51510,1965,ZW,,ZW,11.00,VL1012,147,13,GT -427944,VD,25556,1965,ZW,,ZW,10.00,VL0810,50,6,GT -427945,VD,22838,1965,ZW,,ZW,10.00,VL0810,115,15,GT -427946,VD,44776,1965,ZW,,ZW,12.00,VL1012,147,13,GT -427947,VD,52134,1965,ZW,,ZW,11.00,VL1012,221,20,GT -427948,VD,23462,1965,ZW,,ZW,8.00,VL0810,62,3,GT -427949,VD,51148,1965,ZW,,ZW,9.00,VL0810,110,15,GT -427950,VD,42482,1965,ZW,,ZW,11.00,VL1012,79,10,GT -427951,VD,47268,1965,ZW,,ZW,8.00,VL0608,41,2,GT -427952,VD,24764,1965,ZW,,ZW,10.00,VL0810,199,9,GT -427953,VD,52352,1965,ZW,,ZW,10.00,VL0810,184,7,GT -427954,VD,51744,1965,ZW,,ZW,12.00,VL1012,160,14,GT -427955,VD,41458,1965,ZW,,ZW,8.00,VL0608,16,2,GT -427956,VD,47872,1965,ZW,,ZW,9.00,VL0810,64,4,GT -427957,VD,34936,1965,ZW,,ZW,9.00,VL0810,64,6,GT -427958,VD,44616,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427959,VD,24330,1965,ZW,,ZW,10.00,VL0810,59,6,GT -427960,VD,34102,1965,ZW,,ZW,12.00,VL1012,221,14,GT -427961,VD,44534,1965,ZW,,ZW,10.00,VL0810,48,6,GT -427962,VD,50980,1965,ZW,,ZW,11.00,VL1012,146,15,GT -427963,VD,50564,1965,ZW,,ZW,10.00,VL0810,51,6,GT -427964,VD,51932,1965,ZW,,ZW,9.00,VL0810,79,4,GT -427965,VD,51380,1965,ZW,,ZW,12.00,VL1012,113,18,GT -427966,VD,44486,1965,ZW,,ZW,7.00,VL0608,16,3,GT -427967,VD,42080,1965,ZW,,ZW,8.00,VL0810,46,3,GT -427968,VD,50698,1965,ZW,,ZW,6.00,VL0608,29,,GT -427969,VD,51200,1965,ZW,,ZW,11.00,VL1012,58,9,GT -427970,VD,33718,1965,ZW,,ZW,9.00,VL0810,54,3,GT -427971,VD,33798,1965,ZW,,ZW,9.00,VL0810,54,3,GT -427972,VD,47206,1965,ZW,,ZW,9.00,VL0810,125,4,GT -427973,VD,52338,1965,ZW,,ZW,12.00,VL1012,162,19,GT -427974,VD,18958,1965,ZW,,ZW,7.00,VL0608,38,1,GT -427975,VD,23558,1965,ZW,,ZW,9.00,VL0810,90,4,GT -427976,VD,41100,1965,ZW,,ZW,11.00,VL1012,110,11,GT -427977,VD,24392,1965,ZW,,ZW,11.00,VL1012,78,9,GT -427978,VD,41974,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427979,VD,50308,1965,ZW,,ZW,8.00,VL0810,44,2,GT -427980,VD,34410,1965,ZW,,ZW,8.00,VL0810,59,3,GT -427981,VD,43358,1965,ZW,,ZW,8.00,VL0608,48,1,GT -427982,VD,50600,1965,ZW,,ZW,11.00,VL1012,78,9,GT -427983,VD,51818,1965,ZW,,ZW,10.00,VL1012,46,7,GT -427984,VD,43706,1965,ZW,,ZW,8.00,VL0810,121,3,GT -427985,VD,33396,1965,ZW,,ZW,11.00,VL1012,203,10,GT -427986,VD,39648,1965,ZW,,ZW,9.00,VL0810,24,4,GT -427987,VD,50790,1965,ZW,,ZW,11.00,VL1012,78,,GT -427988,VD,50184,1965,ZW,,ZW,11.00,VL1012,184,15,GT -427989,VD,27816,1965,ZW,,ZW,10.00,VL0810,91,6,GT -427990,VD,29868,1965,ZW,,ZW,9.00,VL0810,96,2,GT -427991,VD,51150,1965,ZW,,ZW,8.00,VL0810,46,3,GT -427992,VD,26476,1965,ZW,,ZW,11.00,VL1012,81,12,GT -427993,VD,41022,1965,ZW,,ZW,8.00,VL0810,43,3,GT -427994,VD,30570,1965,ZW,,ZW,11.00,VL1012,84,17,GT -427995,VD,31124,1965,ZW,,ZW,10.00,VL0810,51,,GT -427996,VD,51312,1965,ZW,,ZW,8.00,VL0608,88,2,GT -427997,VD,43640,1965,ZW,,ZW,9.00,VL0810,125,3,GT -427998,VD,45482,1965,ZW,,ZW,12.00,VL1012,176,17,GT -427999,VD,29644,1965,ZW,,ZW,9.00,VL0810,130,5,GT -428000,VD,46772,1965,ZW,,ZW,11.00,VL1012,101,27,GT -428001,VD,50940,1965,ZW,,ZW,11.00,VL1012,176,10,GT -428002,VD,34374,1965,ZW,,ZW,11.00,VL1012,176,10,GT -428003,VD,43702,1965,ZW,,ZW,12.00,VL1012,125,14,GT -428004,VD,50718,1965,ZW,,ZW,7.00,VL0608,22,1,GT -428005,VD,32760,1965,ZW,,ZW,11.00,VL1012,101,8,GT -428006,VD,21992,1965,ZW,,ZW,12.00,VL1012,160,7,GT -428007,VD,28568,1965,ZW,,ZW,9.00,VL0810,107,3,GT -428008,VD,44638,1965,ZW,,ZW,8.00,VL0608,36,2,GT -428009,VD,51960,1965,ZW,,ZW,8.00,VL0810,70,3,GT -428010,VD,32994,1965,ZW,,ZW,11.00,VL1012,169,9,GT -428011,VD,24968,1965,ZW,,ZW,10.00,VL1012,68,8,GT -428012,VD,18300,1965,ZW,,ZW,10.00,VL0810,184,14,GT -428013,VD,26542,1965,ZW,,ZW,8.00,VL0608,48,5,GT -428014,VD,44440,1965,ZW,,ZW,10.00,VL0810,48,5,GT -428015,VD,46318,1965,ZW,,ZW,9.00,VL0810,58,4,GT -428016,VD,23782,1965,ZW,,ZW,8.00,VL0608,37,2,GT -428017,VD,52200,1965,ZW,,ZW,11.00,VL1012,70,10,GT -428018,VD,19514,1965,ZW,,ZW,7.00,VL0608,16,,GT -428019,VD,46798,1965,ZW,,ZW,7.00,VL0608,63,2,GT -428020,VD,51062,1965,ZW,,ZW,9.00,VL0810,68,4,GT -428021,VD,40846,1965,ZW,,ZW,7.00,VL0608,110,,GT -428022,VD,51160,1965,ZW,,ZW,10.00,VL0810,100,6,GT -428023,VD,34112,1965,ZW,,ZW,10.00,VL1012,121,13,GT -428024,VD,27244,1965,ZW,,ZW,11.00,VL1012,124,14,GT -428025,VD,52284,1965,ZW,,ZW,8.00,VL0810,55,3,GT -428026,VD,43800,1965,ZW,,ZW,9.00,VL0810,53,3,GT -428027,VD,46118,1965,ZW,,ZW,10.00,VL0810,66,6,GT -428028,VD,52128,1965,ZW,,ZW,11.00,VL1012,85,19,GT -428029,VD,50938,1965,ZW,,ZW,13.00,VL1215,353,10,GT -428030,VD,27530,1965,ZW,,ZW,12.00,VL1012,270,23,GT -428031,VD,22546,1965,ZW,,ZW,12.00,VL1012,202,15,GT -428032,VD,33678,1965,ZW,,ZW,12.00,VL1012,246,23,GT -428033,VD,43298,1965,ZW,,ZW,10.00,VL1012,115,10,GT -428034,VD,51316,1965,ZW,,ZW,12.00,VL1012,154,13,GT -428035,VD,43490,1965,ZW,,ZW,9.00,VL0810,68,3,GT -428036,VD,50466,1965,ZW,,ZW,8.00,VL0810,69,3,GT -428037,VD,44952,1965,ZW,,ZW,9.00,VL0810,53,2,GT -428038,VD,32998,1965,ZW,,ZW,12.00,VL1012,147,20,GT -428039,VD,34388,1965,ZW,,ZW,9.00,VL0810,26,4,GT -428040,VD,27742,1965,ZW,,ZW,9.00,VL0810,74,3,GT -428041,VD,45804,1965,ZW,,ZW,9.00,VL0810,74,3,GT -428042,VD,22456,1965,ZW,,ZW,12.00,VL1215,162,,GT -428043,VD,19696,1965,ZW,,ZW,9.00,VL0810,96,3,GT -428044,VD,52350,1965,ZW,,ZW,9.00,VL0810,46,4,GT -428045,VD,20760,1965,ZW,,ZW,12.00,VL1012,96,10,GT -428046,VD,52260,1965,ZW,,ZW,11.00,VL1012,88,13,GT -428047,VD,50696,1965,ZW,,ZW,9.00,VL0810,162,3,GT -428048,VD,33944,1965,ZW,,ZW,7.00,VL0608,9,1,GT -428049,VD,52274,1965,ZW,,ZW,9.00,VL0810,105,3,GT -428050,VD,51934,1965,ZW,,ZW,11.00,VL1012,154,9,GT -428051,VD,47144,1965,ZW,,ZW,12.00,VL1012,176,13,GT -428052,VD,51732,1965,ZW,,ZW,6.00,VL0006,16,,GT -428053,VD,51366,1965,ZW,,ZW,10.00,VL1012,147,10,GT -428054,VD,43162,1965,ZW,,ZW,8.00,VL0810,138,3,GT -428055,VD,32256,1965,ZW,,ZW,8.00,VL0810,69,2,GT -428056,VD,43576,1965,ZW,,ZW,8.00,VL0810,44,3,GT -428057,VD,51840,1965,ZW,,ZW,11.00,VL1012,184,14,GT -428058,VD,25538,1965,ZW,,ZW,7.00,VL0608,22,1,GT -428059,VD,43138,1965,ZW,,ZW,12.00,VL1012,221,18,GT -428060,VD,51318,1965,ZW,,ZW,10.00,VL0810,94,8,GT -428061,VD,42092,1965,ZW,,ZW,10.00,VL0810,213,5,GT -428062,VD,VDcode_1,1965,ZW,,ZW,,VL1518,,, -428063,VD,VDcode_2,1965,ZW,,ZW,,VL1518,,, -428064,VD,VDcode_3,1965,ZW,,ZW,,VL1518,,, -428065,VD,VDcode_4,1965,ZW,,ZW,,VL1518,,, -428066,VD,VDcode_5,1965,ZW,,ZW,,VL1518,,, -428067,VD,VDcode_6,1965,ZW,,ZW,,VL1518,,, -428068,VD,VDcode_7,1965,ZW,,ZW,,VL1518,,, -428069,VD,VDcode_8,1965,ZW,,ZW,,VL1518,,, -428070,VD,VDcode_9,1965,ZW,,ZW,,VL1518,,, -428071,VD,VDcode_10,1965,ZW,,ZW,,VL1518,,, diff --git a/tests/testthat/h7_v_1_19_26/2022_FPN_FPE_H7.zip b/tests/testthat/h7_v_1_19_26/2022_FPN_FPE_H7.zip deleted file mode 100644 index c6dbb406..00000000 Binary files a/tests/testthat/h7_v_1_19_26/2022_FPN_FPE_H7.zip and /dev/null differ diff --git a/tests/testthat/h7_v_1_19_26/2023_10_16_112208.zip b/tests/testthat/h7_v_1_19_26/2023_10_16_112208.zip deleted file mode 100644 index c39848fc..00000000 Binary files a/tests/testthat/h7_v_1_19_26/2023_10_16_112208.zip and /dev/null differ diff --git a/tests/testthat/h7_v_1_19_26/BiologicalVariable.csv b/tests/testthat/h7_v_1_19_26/BiologicalVariable.csv deleted file mode 100644 index 2239bb42..00000000 --- a/tests/testthat/h7_v_1_19_26/BiologicalVariable.csv +++ /dev/null @@ -1,541 +0,0 @@ -BVid,SAid,FMid,BVrecordType,BVnationalUniqueFishId,BVstateOfProcessing,BVpresentation,BVstratification,BVstratumName,BVtypeMeasured,BVvalueMeasured,BVvalueUnitOrScale,BVmethod,BVmeasurementEquipment,BVaccuracy,BVcertaintyQualitative,BVcertaintyQuantitative,BVconversionFactorAssessment,BVtypeAssessment,BVnumberTotal,BVnumberSampled,BVselectionProb,BVinclusionProb,BVselectionMethod,BVunitName,BVsampler -7363787,,4040142,BV,1,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363788,,4040142,BV,2,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363789,,4040143,BV,19,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363790,,4040143,BV,20,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363791,,4040144,BV,3,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363792,,4040144,BV,4,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363793,,4040145,BV,5,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363794,,4040145,BV,6,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363795,,4040146,BV,7,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363796,,4040146,BV,8,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363797,,4040147,BV,10,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363798,,4040147,BV,9,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363799,,4040148,BV,11,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363800,,4040148,BV,12,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363801,,4040149,BV,13,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363802,,4040149,BV,14,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363803,,4040150,BV,15,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363804,,4040150,BV,16,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363805,,4040151,BV,17,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363806,,4040151,BV,18,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363807,,4040152,BV,21,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363808,,4040152,BV,22,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363809,,4040153,BV,23,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363810,,4040153,BV,24,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363811,,4040154,BV,25,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363812,,4040154,BV,26,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363813,,4040155,BV,27,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363814,,4040155,BV,28,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363815,,4040156,BV,29,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363816,,4040156,BV,30,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363817,,4040157,BV,31,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363818,,4040157,BV,32,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363819,,4040158,BV,33,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363820,,4040158,BV,34,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363821,,4040159,BV,35,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363822,,4040159,BV,36,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363823,,4040160,BV,37,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363824,,4040160,BV,38,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363825,,4040161,BV,39,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363826,,4040161,BV,40,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363827,,4040162,BV,41,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363828,,4040162,BV,42,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363829,,4040163,BV,43,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363830,,4040163,BV,44,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363831,,4040164,BV,45,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363832,,4040164,BV,46,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363833,,4040165,BV,47,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363834,,4040165,BV,48,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363835,,4040166,BV,49,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363836,,4040166,BV,50,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363837,,4040167,BV,51,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363838,,4040167,BV,52,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363839,,4040168,BV,53,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363840,,4040168,BV,54,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363841,,4040169,BV,55,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363842,,4040169,BV,56,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363843,,4040170,BV,57,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363844,,4040170,BV,58,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363845,,4040171,BV,59,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363846,,4040171,BV,60,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363847,,4040172,BV,61,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363848,,4040172,BV,62,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363849,,4040173,BV,63,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363850,,4040173,BV,64,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363851,,4040174,BV,65,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363852,,4040174,BV,66,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363853,,4040175,BV,67,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363854,,4040175,BV,68,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363855,,4040176,BV,69,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363856,,4040176,BV,70,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363857,,4040177,BV,71,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363858,,4040177,BV,72,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363859,,4040178,BV,73,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363860,,4040178,BV,74,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363861,,4040179,BV,75,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363862,,4040179,BV,76,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363863,,4040180,BV,77,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363864,,4040180,BV,78,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363865,,4040181,BV,79,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363866,,4040181,BV,80,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363867,,4040182,BV,81,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363868,,4040182,BV,82,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363869,,4040183,BV,83,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363870,,4040183,BV,84,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363871,,4040184,BV,85,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363872,,4040184,BV,86,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363873,,4040185,BV,87,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363874,,4040185,BV,88,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363875,,4040186,BV,89,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363876,,4040186,BV,90,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363877,,4040187,BV,91,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363878,,4040187,BV,92,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363879,,4040188,BV,93,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363880,,4040188,BV,94,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363881,,4040189,BV,95,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363882,,4040189,BV,96,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363883,,4040190,BV,97,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363884,,4040190,BV,98,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363885,,4040191,BV,100,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363886,,4040191,BV,99,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363887,,4040192,BV,101,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363888,,4040192,BV,102,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363889,,4040193,BV,103,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363890,,4040193,BV,104,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363891,,4040194,BV,105,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363892,,4040194,BV,106,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363893,,4040195,BV,107,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363894,,4040195,BV,108,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363895,,4040196,BV,109,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363896,,4040196,BV,110,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363897,,4040197,BV,111,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363898,,4040197,BV,112,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363899,,4040198,BV,113,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363900,,4040198,BV,114,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363901,,4040199,BV,115,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363902,,4040199,BV,116,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363903,,4040200,BV,117,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363904,,4040200,BV,118,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363905,,4040201,BV,119,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363906,,4040201,BV,120,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363907,,4040202,BV,121,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363908,,4040202,BV,122,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363909,,4040203,BV,123,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363910,,4040203,BV,124,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363911,,4040204,BV,125,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363912,,4040204,BV,126,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363913,,4040205,BV,127,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363914,,4040205,BV,128,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363915,,4040206,BV,129,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363916,,4040206,BV,130,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363917,,4040207,BV,131,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363918,,4040207,BV,132,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363919,,4040208,BV,133,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363920,,4040208,BV,134,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363921,,4040209,BV,135,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363922,,4040209,BV,136,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363923,,4040210,BV,137,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363924,,4040210,BV,138,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363925,,4040211,BV,139,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363926,,4040211,BV,140,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363927,,4040212,BV,141,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363928,,4040212,BV,142,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363929,,4040213,BV,143,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363930,,4040213,BV,144,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363931,,4040214,BV,145,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363932,,4040214,BV,146,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363933,,4040215,BV,147,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363934,,4040215,BV,148,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363935,,4040216,BV,149,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363936,,4040216,BV,150,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363937,,4040217,BV,151,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363938,,4040217,BV,152,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363939,,4040218,BV,153,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363940,,4040218,BV,154,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363941,,4040219,BV,155,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363942,,4040219,BV,156,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363943,,4040220,BV,157,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363944,,4040220,BV,158,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363945,,4040221,BV,159,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363946,,4040221,BV,160,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363947,,4040222,BV,161,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363948,,4040222,BV,162,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363949,,4040223,BV,163,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363950,,4040223,BV,164,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363951,,4040224,BV,165,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363952,,4040224,BV,166,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363953,,4040225,BV,167,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363954,,4040225,BV,168,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363955,,4040226,BV,169,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363956,,4040226,BV,170,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363957,,4040227,BV,171,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363958,,4040227,BV,172,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363959,,4040228,BV,173,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363960,,4040228,BV,174,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363961,,4040229,BV,175,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363962,,4040229,BV,176,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363963,,4040230,BV,177,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363964,,4040230,BV,178,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363965,,4040231,BV,179,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363966,,4040231,BV,180,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363967,,4040232,BV,199,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363968,,4040232,BV,200,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363969,,4040233,BV,181,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363970,,4040233,BV,182,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363971,,4040234,BV,183,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363972,,4040234,BV,184,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363973,,4040235,BV,185,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363974,,4040235,BV,186,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363975,,4040236,BV,187,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363976,,4040236,BV,188,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363977,,4040237,BV,189,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363978,,4040237,BV,190,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363979,,4040238,BV,191,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363980,,4040238,BV,192,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363981,,4040239,BV,193,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363982,,4040239,BV,194,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363983,,4040240,BV,195,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363984,,4040240,BV,196,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363985,,4040241,BV,197,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363986,,4040241,BV,198,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363987,,4040242,BV,201,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363988,,4040242,BV,202,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363989,,4040243,BV,203,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363990,,4040243,BV,204,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363991,,4040244,BV,205,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363992,,4040244,BV,206,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363993,,4040245,BV,207,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363994,,4040245,BV,208,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363995,,4040246,BV,209,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363996,,4040246,BV,210,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363997,,4040247,BV,211,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7363998,,4040247,BV,212,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7363999,,4040248,BV,213,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364000,,4040248,BV,214,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364001,,4040249,BV,215,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364002,,4040249,BV,216,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364003,,4040250,BV,217,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364004,,4040250,BV,218,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364005,,4040251,BV,219,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364006,,4040251,BV,220,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364007,,4040252,BV,221,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364008,,4040252,BV,222,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364009,,4040253,BV,223,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364010,,4040253,BV,224,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364011,,4040254,BV,225,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364012,,4040254,BV,226,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364013,,4040255,BV,227,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364014,,4040255,BV,228,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364015,,4040256,BV,229,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364016,,4040256,BV,230,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364017,,4040257,BV,231,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364018,,4040257,BV,232,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364019,,4040258,BV,233,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364020,,4040258,BV,234,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364021,,4040259,BV,235,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364022,,4040259,BV,236,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364023,,4040260,BV,237,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364024,,4040260,BV,238,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364025,,4040261,BV,239,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364026,,4040261,BV,240,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364027,,4040262,BV,241,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364028,,4040262,BV,242,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364029,,4040263,BV,243,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364030,,4040263,BV,244,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364031,,4040264,BV,245,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364032,,4040264,BV,246,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364033,,4040265,BV,247,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364034,,4040265,BV,248,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364035,,4040266,BV,249,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364036,,4040266,BV,250,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364037,,4040267,BV,251,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364038,,4040267,BV,252,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364039,,4040268,BV,253,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364040,,4040268,BV,254,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364041,,4040269,BV,255,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364042,,4040269,BV,256,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364043,,4040270,BV,257,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364044,,4040270,BV,258,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364045,,4040271,BV,259,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364046,,4040271,BV,260,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364047,,4040272,BV,261,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364048,,4040272,BV,262,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364049,,4040273,BV,263,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364050,,4040273,BV,264,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364051,,4040274,BV,265,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364052,,4040274,BV,266,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364053,,4040275,BV,267,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364054,,4040275,BV,268,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364055,,4040276,BV,269,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364056,,4040276,BV,270,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364057,,4040277,BV,271,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364058,,4040277,BV,272,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364059,,4040278,BV,273,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364060,,4040278,BV,274,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364061,,4040279,BV,275,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364062,,4040279,BV,276,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364063,,4040280,BV,277,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364064,,4040280,BV,278,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364065,,4040281,BV,279,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364066,,4040281,BV,280,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364067,,4040282,BV,281,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364068,,4040282,BV,282,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364069,,4040283,BV,283,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364070,,4040283,BV,284,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364071,,4040284,BV,285,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364072,,4040284,BV,286,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364073,,4040285,BV,287,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364074,,4040285,BV,288,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364075,,4040286,BV,289,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364076,,4040286,BV,290,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364077,,4040287,BV,291,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364078,,4040287,BV,292,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364079,,4040288,BV,293,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364080,,4040288,BV,294,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364081,,4040289,BV,295,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364082,,4040289,BV,296,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364083,,4040290,BV,297,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364084,,4040290,BV,298,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364085,,4040291,BV,299,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364086,,4040291,BV,300,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364087,,4040292,BV,301,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364088,,4040292,BV,302,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364089,,4040293,BV,303,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364090,,4040293,BV,304,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364091,,4040294,BV,305,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364092,,4040294,BV,306,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364093,,4040295,BV,307,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364094,,4040295,BV,308,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364095,,4040296,BV,309,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364096,,4040296,BV,310,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364097,,4040297,BV,311,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364098,,4040297,BV,312,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364099,,4040298,BV,313,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364100,,4040298,BV,314,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364101,,4040299,BV,315,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364102,,4040299,BV,316,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364103,,4040300,BV,317,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364104,,4040300,BV,318,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364105,,4040301,BV,319,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364106,,4040301,BV,320,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364107,,4040302,BV,321,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364108,,4040302,BV,322,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364109,,4040303,BV,323,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364110,,4040303,BV,324,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364111,,4040304,BV,325,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364112,,4040304,BV,326,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364113,,4040305,BV,327,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364114,,4040305,BV,328,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364115,,4040306,BV,329,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364116,,4040306,BV,330,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364117,,4040307,BV,331,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364118,,4040307,BV,332,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364119,,4040308,BV,333,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364120,,4040308,BV,334,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364121,,4040309,BV,335,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364122,,4040309,BV,336,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364123,,4040310,BV,337,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364124,,4040310,BV,338,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364125,,4040311,BV,339,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364126,,4040311,BV,340,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364127,,4040312,BV,341,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364128,,4040312,BV,342,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364129,,4040313,BV,343,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364130,,4040313,BV,344,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364131,,4040314,BV,345,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364132,,4040314,BV,346,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364133,,4040315,BV,347,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364134,,4040315,BV,348,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364135,,4040316,BV,349,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364136,,4040316,BV,350,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364137,,4040317,BV,351,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364138,,4040317,BV,352,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364139,,4040318,BV,353,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364140,,4040318,BV,354,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364141,,4040319,BV,355,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364142,,4040319,BV,356,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364143,,4040320,BV,357,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364144,,4040320,BV,358,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364145,,4040321,BV,359,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364146,,4040321,BV,360,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364147,,4040322,BV,361,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364148,,4040322,BV,362,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364149,,4040323,BV,363,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364150,,4040323,BV,364,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364151,,4040324,BV,365,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364152,,4040324,BV,366,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364153,,4040325,BV,367,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364154,,4040325,BV,368,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364155,,4040326,BV,369,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364156,,4040326,BV,370,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364157,,4040327,BV,371,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364158,,4040327,BV,372,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364159,,4040328,BV,373,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364160,,4040328,BV,374,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364161,,4040329,BV,375,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364162,,4040329,BV,376,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364163,,4040330,BV,377,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364164,,4040330,BV,378,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364165,,4040331,BV,379,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364166,,4040331,BV,380,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364167,,4040332,BV,381,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364168,,4040332,BV,382,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364169,,4040333,BV,383,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364170,,4040333,BV,384,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364171,,4040334,BV,385,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364172,,4040334,BV,386,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364173,,4040335,BV,387,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364174,,4040335,BV,388,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364175,,4040336,BV,389,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364176,,4040336,BV,390,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364177,,4040337,BV,391,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364178,,4040337,BV,392,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364179,,4040338,BV,393,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364180,,4040338,BV,394,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364181,,4040339,BV,395,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364182,,4040339,BV,396,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364183,,4040340,BV,397,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364184,,4040340,BV,398,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364185,,4040341,BV,399,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364186,,4040341,BV,400,BAF,CBF,N,U,Age,10,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364187,,4040342,BV,401,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364188,,4040342,BV,402,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364189,,4040343,BV,403,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364190,,4040343,BV,404,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364191,,4040344,BV,405,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364192,,4040344,BV,406,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364193,,4040345,BV,407,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364194,,4040345,BV,408,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364195,,4040346,BV,409,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364196,,4040346,BV,410,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364197,,4040347,BV,411,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364198,,4040347,BV,412,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364199,,4040348,BV,413,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364200,,4040348,BV,414,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364201,,4040349,BV,415,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364202,,4040349,BV,416,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364203,,4040350,BV,417,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364204,,4040350,BV,418,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364205,,4040351,BV,419,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364206,,4040351,BV,420,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364207,,4040352,BV,421,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364208,,4040352,BV,422,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364209,,4040353,BV,423,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364210,,4040353,BV,424,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364211,,4040354,BV,425,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364212,,4040354,BV,426,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364213,,4040355,BV,427,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364214,,4040355,BV,428,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364215,,4040356,BV,429,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364216,,4040356,BV,430,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364217,,4040357,BV,431,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364218,,4040357,BV,432,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364219,,4040358,BV,433,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364220,,4040358,BV,434,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364221,,4040359,BV,435,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364222,,4040359,BV,436,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364223,,4040360,BV,437,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364224,,4040360,BV,438,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364225,,4040361,BV,439,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364226,,4040361,BV,440,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364227,,4040362,BV,441,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364228,,4040362,BV,442,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364229,,4040363,BV,443,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364230,,4040363,BV,444,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364231,,4040364,BV,445,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364232,,4040364,BV,446,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364233,,4040365,BV,447,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364234,,4040365,BV,448,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364235,,4040366,BV,449,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364236,,4040366,BV,450,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364237,,4040367,BV,451,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364238,,4040367,BV,452,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364239,,4040368,BV,453,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364240,,4040368,BV,454,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364241,,4040369,BV,455,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364242,,4040369,BV,456,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364243,,4040370,BV,457,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364244,,4040370,BV,458,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364245,,4040371,BV,459,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364246,,4040371,BV,460,BAF,CBF,N,U,Age,9,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364247,,4040372,BV,461,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364248,,4040372,BV,462,BAF,CBF,N,U,Age,2,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364249,,4040373,BV,463,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364250,,4040373,BV,464,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364251,,4040374,BV,465,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364252,,4040374,BV,466,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364253,,4040375,BV,467,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364254,,4040375,BV,468,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364255,,4040376,BV,469,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364256,,4040376,BV,470,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364257,,4040377,BV,471,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364258,,4040377,BV,472,BAF,CBF,N,U,Age,3,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364259,,4040378,BV,473,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364260,,4040378,BV,474,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364261,,4040379,BV,475,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364262,,4040379,BV,476,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364263,,4040380,BV,477,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364264,,4040380,BV,478,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364265,,4040381,BV,479,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364266,,4040381,BV,480,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364267,,4040382,BV,481,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364268,,4040382,BV,482,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364269,,4040383,BV,483,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364270,,4040383,BV,484,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364271,,4040384,BV,485,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364272,,4040384,BV,486,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364273,,4040385,BV,487,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364274,,4040385,BV,488,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364275,,4040386,BV,489,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364276,,4040386,BV,490,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364277,,4040387,BV,491,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364278,,4040387,BV,492,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364279,,4040388,BV,493,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364280,,4040388,BV,494,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364281,,4040389,BV,495,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364282,,4040389,BV,496,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364283,,4040390,BV,497,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364284,,4040390,BV,498,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364285,,4040391,BV,499,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364286,,4040391,BV,500,BAF,CBF,N,U,Age,8,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364287,,4040392,BV,501,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364288,,4040392,BV,502,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364289,,4040393,BV,503,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364290,,4040393,BV,504,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364291,,4040394,BV,505,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364292,,4040394,BV,506,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364293,,4040395,BV,507,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364294,,4040395,BV,508,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364295,,4040396,BV,509,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364296,,4040396,BV,510,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364297,,4040397,BV,511,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364298,,4040397,BV,512,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364299,,4040398,BV,513,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364300,,4040398,BV,514,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364301,,4040399,BV,515,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364302,,4040399,BV,516,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364303,,4040400,BV,517,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364304,,4040400,BV,518,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364305,,4040401,BV,519,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364306,,4040401,BV,520,BAF,CBF,N,U,Age,7,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364307,,4040402,BV,521,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364308,,4040402,BV,522,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364309,,4040403,BV,523,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364310,,4040403,BV,524,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364311,,4040404,BV,525,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364312,,4040404,BV,526,BAF,CBF,N,U,Age,4,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364313,,4040405,BV,527,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364314,,4040405,BV,528,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364315,,4040406,BV,529,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364316,,4040406,BV,530,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364317,,4040407,BV,531,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364318,,4040407,BV,532,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364319,,4040408,BV,533,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364320,,4040408,BV,534,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364321,,4040409,BV,535,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364322,,4040409,BV,536,BAF,CBF,N,U,Age,5,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364323,,4040410,BV,537,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364324,,4040410,BV,538,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, -7364325,,4040411,BV,539,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_1, -7364326,,4040411,BV,540,BAF,CBF,N,U,Age,6,Ageyear,,,,AQ1,,0.1001,Age,2,2,,,SRSWR,BV_unit_2, diff --git a/tests/testthat/h7_v_1_19_26/CommercialEffort.csv b/tests/testthat/h7_v_1_19_26/CommercialEffort.csv deleted file mode 100644 index 71fd7c93..00000000 --- a/tests/testthat/h7_v_1_19_26/CommercialEffort.csv +++ /dev/null @@ -1,100 +0,0 @@ -CEid,CErecordType,CEdataTypeOfScientificEffort,CEdataSourceOfScientificEffort,CEsamplingScheme,CEvesselFlagCountry,CEyear,CEquarter,CEmonth,CEarea,CEstatisticalRectangle,CEdataSourceOfStatisticalRectangle,CEfisheriesManagementUnit,CEgsaSubarea,CEjurisdictionArea,CEfishingAreaCategory,CEfreshWaterName,CEexclusiveEconomicZone,CEexclusiveEconomicZoneIndicator,CEnationalFishingActivity,CEmetier6,CEincidentalByCatchMitigationDevice,CElandingLocation,CEvesselLengthCategory,CEfishingTechnique,CEmeshSizeRange,CEsupraRegion,CEgeoIndicator,CEspecificConditionsTechnical,CEdeepSeaRegulation,CEofficialVesselHoursAtSea,CEnumberOfFractionalTrips,CEnumberOfDominantTrips,CEofficialDaysAtSea,CEscientificDaysAtSea,CEofficialFishingDays,CEscientificFishingDays,CEofficialNumberOfHaulsOrSets,CEscientificNumberOfHaulsOrSets,CEofficialVesselFishingHour,CEscientificVesselFishingHour,CEofficialSoakingMeterHour,CEscientificSoakingMeterHour,CEofficialkWDaysAtSea,CEscientifickWDaysAtSea,CEofficialkWFishingDays,CEscientifickWFishingDays,CEofficialkWFishingHours,CEscientifickWFishingHours,CEgTDaysAtSea,CEgTFishingDays,CEgTFishingHours,CEnumberOfUniqueVessels,CEgearDimensions,CEnumberOfFAD,CEnumberofSupVes,CEfishingDaysErrorMeasureValueType,CEfishingDaystErrorMeasureValueFirst,CEfishingDaysErrorMeasureValueSecond,CEscientificFishingDaysQualitativeBias,CEconfidentialityFlag,CEencryptedVesselIds -324307,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,9.00,9,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,7,,,,,,,,N,abc -324308,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,41.00,41,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,12,,,,,,,,N,abc -324309,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26.00,26,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,20,,,,,,,,N,abc -324310,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,11.00,11,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,7,,,,,,,,N,abc -324311,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,27E3,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,23.00,23.00,23.00,23.00,,,,,,,2300,2300,2300,2300,,,460,460,,21,,,,,,,,N,abc -324312,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,7.00,7,46.00,46.00,46.00,46.00,,,,,,,4600,4600,4600,4600,,,920,920,,6,,,,,,,,N,abc -324313,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32E0,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17.00,17,15.00,15.00,15.00,15.00,,,,,,,1500,1500,1500,1500,,,300,300,,4,,,,,,,,N,abc -324314,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,15.00,15,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,13,,,,,,,,N,abc -324315,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,7.00,7,37.00,37.00,37.00,37.00,,,,,,,3700,3700,3700,3700,,,740,740,,11,,,,,,,,N,abc -324316,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2.00,2,2.00,2.00,2.00,2.00,,,,,,,200,200,200,200,,,40,40,,4,,,,,,,,N,abc -324317,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,3.00,3,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,19,,,,,,,,N,abc -324318,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,50.00,50,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,19,,,,,,,,N,abc -324319,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24.00,24,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,10,,,,,,,,N,abc -324320,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,45.00,45,31.00,31.00,31.00,31.00,,,,,,,3100,3100,3100,3100,,,620,620,,21,,,,,,,,N,abc -324321,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,45.00,45,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,8,,,,,,,,N,abc -324322,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,27D4,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,46.00,46,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,15,,,,,,,,N,abc -324323,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,43.00,43,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,10,,,,,,,,N,abc -324324,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,33.00,33,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,12,,,,,,,,N,abc -324325,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,31E3,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,32.00,32,48.00,48.00,48.00,48.00,,,,,,,4800,4800,4800,4800,,,960,960,,13,,,,,,,,N,abc -324326,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,34D5,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,42.00,42,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,4,,,,,,,,N,abc -324327,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2.00,2,6.00,6.00,6.00,6.00,,,,,,,600,600,600,600,,,120,120,,11,,,,,,,,N,abc -324328,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,47.00,47,38.00,38.00,38.00,38.00,,,,,,,3800,3800,3800,3800,,,760,760,,16,,,,,,,,N,abc -324329,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,40.00,40,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,20,,,,,,,,N,abc -324330,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,12.00,12,37.00,37.00,37.00,37.00,,,,,,,3700,3700,3700,3700,,,740,740,,11,,,,,,,,N,abc -324331,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,9.00,9,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,19,,,,,,,,N,abc -324332,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16.00,16,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,23,,,,,,,,N,abc -324333,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32D8,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24.00,24,48.00,48.00,48.00,48.00,,,,,,,4800,4800,4800,4800,,,960,960,,18,,,,,,,,N,abc -324334,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,32D3,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44.00,44,13.00,13.00,13.00,13.00,,,,,,,1300,1300,1300,1300,,,260,260,,19,,,,,,,,N,abc -324335,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15.00,15,27.00,27.00,27.00,27.00,,,,,,,2700,2700,2700,2700,,,540,540,,5,,,,,,,,N,abc -324336,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,22.00,22,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,8,,,,,,,,N,abc -324337,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27.00,27,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,21,,,,,,,,N,abc -324338,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,31D8,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,21.00,21,32.00,32.00,32.00,32.00,,,,,,,3200,3200,3200,3200,,,640,640,,16,,,,,,,,N,abc -324339,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,33D7,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,47.00,47,5.00,5.00,5.00,5.00,,,,,,,500,500,500,500,,,100,100,,8,,,,,,,,N,abc -324340,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9.00,9,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,22,,,,,,,,N,abc -324341,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,27.00,27,41.00,41.00,41.00,41.00,,,,,,,4100,4100,4100,4100,,,820,820,,20,,,,,,,,N,abc -324342,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5.00,5,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,19,,,,,,,,N,abc -324343,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,33.00,33,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,4,,,,,,,,N,abc -324344,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15.00,15,7.00,7.00,7.00,7.00,,,,,,,700,700,700,700,,,140,140,,19,,,,,,,,N,abc -324345,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,25E0,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23.00,23,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,15,,,,,,,,N,abc -324346,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,33E3,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23.00,23,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,12,,,,,,,,N,abc -324347,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,5.00,5,18.00,18.00,18.00,18.00,,,,,,,1800,1800,1800,1800,,,360,360,,19,,,,,,,,N,abc -324348,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,33D3,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,35.00,35,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,12,,,,,,,,N,abc -324349,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9.00,9,11.00,11.00,11.00,11.00,,,,,,,1100,1100,1100,1100,,,220,220,,21,,,,,,,,N,abc -324350,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,30.00,30,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,14,,,,,,,,N,abc -324351,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,35D4,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,48.00,48,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,9,,,,,,,,N,abc -324352,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,10.00,10,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,4,,,,,,,,N,abc -324353,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25.00,25,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,19,,,,,,,,N,abc -324354,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,27.00,27,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,21,,,,,,,,N,abc -324355,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,27.00,27,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,18,,,,,,,,N,abc -324356,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,14.00,14,31.00,31.00,31.00,31.00,,,,,,,3100,3100,3100,3100,,,620,620,,9,,,,,,,,N,abc -324357,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,35D2,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27.00,27,17.00,17.00,17.00,17.00,,,,,,,1700,1700,1700,1700,,,340,340,,15,,,,,,,,N,abc -324358,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,2.00,2,39.00,39.00,39.00,39.00,,,,,,,3900,3900,3900,3900,,,780,780,,22,,,,,,,,N,abc -324359,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,30.00,30,39.00,39.00,39.00,39.00,,,,,,,3900,3900,3900,3900,,,780,780,,12,,,,,,,,N,abc -324360,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,32.00,32,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,15,,,,,,,,N,abc -324361,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,33.00,33,40.00,40.00,40.00,40.00,,,,,,,4000,4000,4000,4000,,,800,800,,14,,,,,,,,N,abc -324362,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9.00,9,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,17,,,,,,,,N,abc -324363,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,12.00,12.00,12.00,12.00,,,,,,,1200,1200,1200,1200,,,240,240,,16,,,,,,,,N,abc -324364,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12.00,12,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,8,,,,,,,,N,abc -324365,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,29D6,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,48.00,48,22.00,22.00,22.00,22.00,,,,,,,2200,2200,2200,2200,,,440,440,,18,,,,,,,,N,abc -324366,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,45.00,45,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,13,,,,,,,,N,abc -324367,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,41.00,41,6.00,6.00,6.00,6.00,,,,,,,600,600,600,600,,,120,120,,15,,,,,,,,N,abc -324368,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,2.00,2,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,4,,,,,,,,N,abc -324369,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,32D9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,7.00,7,36.00,36.00,36.00,36.00,,,,,,,3600,3600,3600,3600,,,720,720,,20,,,,,,,,N,abc -324370,CE,Estimate,Combcd,,ZW,1965,1,,27.7.k,29D3,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,4.00,4,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,7,,,,,,,,N,abc -324371,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29.00,29,24.00,24.00,24.00,24.00,,,,,,,2400,2400,2400,2400,,,480,480,,6,,,,,,,,N,abc -324372,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,38.00,38,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,23,,,,,,,,N,abc -324373,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,42.00,42,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,19,,,,,,,,N,abc -324374,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,35.00,35,3.00,3.00,3.00,3.00,,,,,,,300,300,300,300,,,60,60,,16,,,,,,,,N,abc -324375,CE,Estimate,Combcd,,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24.00,24,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,15,,,,,,,,N,abc -324376,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,36E6,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48.00,48,10.00,10.00,10.00,10.00,,,,,,,1000,1000,1000,1000,,,200,200,,9,,,,,,,,N,abc -324377,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,25.00,25,16.00,16.00,16.00,16.00,,,,,,,1600,1600,1600,1600,,,320,320,,12,,,,,,,,N,abc -324378,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,30E3,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,16.00,16,41.00,41.00,41.00,41.00,,,,,,,4100,4100,4100,4100,,,820,820,,4,,,,,,,,N,abc -324379,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2.00,2,21.00,21.00,21.00,21.00,,,,,,,2100,2100,2100,2100,,,420,420,,6,,,,,,,,N,abc -324380,CE,Estimate,Combcd,,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,4.00,4,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,21,,,,,,,,N,abc -324381,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,10.00,10,49.00,49.00,49.00,49.00,,,,,,,4900,4900,4900,4900,,,980,980,,13,,,,,,,,N,abc -324382,CE,Estimate,Combcd,,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,19.00,19,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,7,,,,,,,,N,abc -324383,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,28D9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38.00,38,15.00,15.00,15.00,15.00,,,,,,,1500,1500,1500,1500,,,300,300,,19,,,,,,,,N,abc -324384,CE,Estimate,Combcd,,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,20.00,20,49.00,49.00,49.00,49.00,,,,,,,4900,4900,4900,4900,,,980,980,,20,,,,,,,,N,abc -324385,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,35E3,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,27.00,27,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,6,,,,,,,,N,abc -324386,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,27.00,27,47.00,47.00,47.00,47.00,,,,,,,4700,4700,4700,4700,,,940,940,,12,,,,,,,,N,abc -324387,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,27D9,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12.00,12,32.00,32.00,32.00,32.00,,,,,,,3200,3200,3200,3200,,,640,640,,11,,,,,,,,N,abc -324388,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26.00,26,25.00,25.00,25.00,25.00,,,,,,,2500,2500,2500,2500,,,500,500,,21,,,,,,,,N,abc -324389,CE,Estimate,Combcd,,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,35.00,35,28.00,28.00,28.00,28.00,,,,,,,2800,2800,2800,2800,,,560,560,,9,,,,,,,,N,abc -324390,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,28.00,28,47.00,47.00,47.00,47.00,,,,,,,4700,4700,4700,4700,,,940,940,,8,,,,,,,,N,abc -324391,CE,Estimate,Combcd,,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,24.00,24,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,16,,,,,,,,N,abc -324392,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,37D9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27.00,27,35.00,35.00,35.00,35.00,,,,,,,3500,3500,3500,3500,,,700,700,,17,,,,,,,,N,abc -324393,CE,Estimate,Combcd,,ZW,1965,1,,27.7.d,27F0,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,19.00,19,38.00,38.00,38.00,38.00,,,,,,,3800,3800,3800,3800,,,760,760,,5,,,,,,,,N,abc -324394,CE,Estimate,Combcd,,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,46.00,46,46.00,46.00,46.00,46.00,,,,,,,4600,4600,4600,4600,,,920,920,,4,,,,,,,,N,abc -324395,CE,Estimate,Combcd,,ZW,1965,1,,27.7.j,26D8,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,19.00,19,26.00,26.00,26.00,26.00,,,,,,,2600,2600,2600,2600,,,520,520,,4,,,,,,,,N,abc -324396,CE,Estimate,Combcd,,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32.00,32,9.00,9.00,9.00,9.00,,,,,,,900,900,900,900,,,180,180,,18,,,,,,,,N,abc -324397,CE,Estimate,Combcd,,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,47.00,47,42.00,42.00,42.00,42.00,,,,,,,4200,4200,4200,4200,,,840,840,,22,,,,,,,,N,abc -324398,CE,Estimate,Combcd,,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,20.00,20,14.00,14.00,14.00,14.00,,,,,,,1400,1400,1400,1400,,,280,280,,6,,,,,,,,N,abc -324399,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,23.00,23,23.00,23.00,23.00,23.00,,,,,,,2300,2300,2300,2300,,,460,460,,18,,,,,,,,N,abc -324400,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,37E5,AdjPosData,,NotApplicable,,MO,NA,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48.00,48,9.00,9.00,9.00,9.00,,,,,,,900,900,900,900,,,180,180,,6,,,,,,,,N,abc -324401,CE,Estimate,Combcd,,ZW,1965,1,,27.7.c,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12.00,12,43.00,43.00,43.00,43.00,,,,,,,4300,4300,4300,4300,,,860,860,,10,,,,,,,,N,abc -324402,CE,Estimate,Combcd,,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,47.00,47,45.00,45.00,45.00,45.00,,,,,,,4500,4500,4500,4500,,,900,900,,19,,,,,,,,N,abc -324403,CE,Estimate,Combcd,,ZW,1965,1,,27.7.a,34E4,AdjPosData,,NotApplicable,,MO,NA,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,30.00,30,17.00,17.00,17.00,17.00,,,,,,,1700,1700,1700,1700,,,340,340,,14,,,,,,,,N,abc -324404,CE,Estimate,Combcd,,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,12.00,12,29.00,29.00,29.00,29.00,,,,,,,2900,2900,2900,2900,,,580,580,,5,,,,,,,,N,abc -324405,CE,Estimate,Combcd,,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23.00,23,24.00,24.00,24.00,24.00,,,,,,,2400,2400,2400,2400,,,480,480,,14,,,,,,,,N,abc diff --git a/tests/testthat/h7_v_1_19_26/CommercialLanding.csv b/tests/testthat/h7_v_1_19_26/CommercialLanding.csv deleted file mode 100644 index 9b97b676..00000000 --- a/tests/testthat/h7_v_1_19_26/CommercialLanding.csv +++ /dev/null @@ -1,498 +0,0 @@ -CLid,CLrecordType,CLdataTypeOfScientificWeight,CLdataSourceOfScientificWeight,CLsamplingScheme,CLdataSourceLandingsValue,CLlandingCountry,CLvesselFlagCountry,CLyear,CLquarter,CLmonth,CLarea,CLstatisticalRectangle,CLdataSourceOfStatisticalRectangle,CLfisheriesManagementUnit,CLgsaSubarea,CLjurisdictionArea,CLfishingAreaCategory,CLfreshWaterName,CLexclusiveEconomicZone,CLexclusiveEconomicZoneIndicator,CLspeciesCode,CLspeciesFaoCode,CLlandingCategory,CLcatchCategory,CLregDisCategory,CLcommercialSizeCategoryScale,CLcommercialSizeCategory,CLnationalFishingActivity,CLmetier6,CLincidentalByCatchMitigationDevice,CLlandingLocation,CLvesselLengthCategory,CLfishingTechnique,CLmeshSizeRange,CLsupraRegion,CLgeoIndicator,CLspecificConditionsTechnical,CLdeepSeaRegulation,CLFDIconfidentialityCode,CLofficialWeight,CLscientificWeight,CLexplainDifference,CLlandingsValue,CLtotalNumberFish,CLnumberOfUniqueVessels,CLscientificWeightErrorMeasureValueType,CLscientificWeightErrorMeasureValueFirst,CLscientificWeightErrorMeasureValueSecond,CLvalueErrorMeasureValueType,CLvalueErrorMeasureValueFirst,CLvalueErrorMeasureValueSecond,CLnumberFishInCatchErrorMeasureValueType,CLnumberFishInCatchErrorMeasureValueFirst,CLnumberFishInCatchErrorMeasureValueSecond,CLcomment,CLscientificWeightQualitativeBias,CLconfidentialityFlag,CLencryptedVesselIds -2660651,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,11,,,,,,,,,,,,N,abc -2660653,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,20,,,,,,,,,,,,N,abc -2660655,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,17,,,,,,,,,,,,N,abc -2660657,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,17,,,,,,,,,,,,N,abc -2660659,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,39E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,23,,,,,,,,,,,,N,abc -2660661,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,11,,,,,,,,,,,,N,abc -2660663,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,22,,,,,,,,,,,,N,abc -2660665,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,16,,,,,,,,,,,,N,abc -2660667,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,13,,,,,,,,,,,,N,abc -2660669,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,18,,,,,,,,,,,,N,abc -2660671,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,29D8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,19,,,,,,,,,,,,N,abc -2660673,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,15,,,,,,,,,,,,N,abc -2660675,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,15,,,,,,,,,,,,N,abc -2660677,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,10,,,,,,,,,,,,N,abc -2660679,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,10,,,,,,,,,,,,N,abc -2660681,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E7,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660683,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,35E7,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,16,,,,,,,,,,,,N,abc -2660685,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E7,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2660687,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E1,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,14,,,,,,,,,,,,N,abc -2660689,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,19,,,,,,,,,,,,N,abc -2660691,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E3,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,17,,,,,,,,,,,,N,abc -2660693,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,7,,,,,,,,,,,,N,abc -2660695,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,13,,,,,,,,,,,,N,abc -2660697,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,17,,,,,,,,,,,,N,abc -2660699,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,23,,,,,,,,,,,,N,abc -2660701,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,18,,,,,,,,,,,,N,abc -2660703,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30E9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,7,,,,,,,,,,,,N,abc -2660705,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,31D6,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660707,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,21,,,,,,,,,,,,N,abc -2660709,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,21,,,,,,,,,,,,N,abc -2660711,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,27E8,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660713,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,22,,,,,,,,,,,,N,abc -2660715,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E5,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660717,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,12,,,,,,,,,,,,N,abc -2660719,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,7,,,,,,,,,,,,N,abc -2660721,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2660723,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,9,,,,,,,,,,,,N,abc -2660725,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2660727,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,18,,,,,,,,,,,,N,abc -2660729,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,21,,,,,,,,,,,,N,abc -2660731,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,19,,,,,,,,,,,,N,abc -2660733,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,15,,,,,,,,,,,,N,abc -2660735,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D5,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,5,,,,,,,,,,,,N,abc -2660737,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,5,,,,,,,,,,,,N,abc -2660739,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D3,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,6,,,,,,,,,,,,N,abc -2660741,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,20,,,,,,,,,,,,N,abc -2660743,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,20,,,,,,,,,,,,N,abc -2660745,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,20,,,,,,,,,,,,N,abc -2660747,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,23,,,,,,,,,,,,N,abc -2660749,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,20,,,,,,,,,,,,N,abc -2660751,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,4,,,,,,,,,,,,N,abc -2660753,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,6,,,,,,,,,,,,N,abc -2660755,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,8,,,,,,,,,,,,N,abc -2660757,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660759,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660761,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2660763,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,13,,,,,,,,,,,,N,abc -2660765,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,32E5,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,20,,,,,,,,,,,,N,abc -2660767,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,16,,,,,,,,,,,,N,abc -2660769,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,9,,,,,,,,,,,,N,abc -2660771,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,27D6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,8,,,,,,,,,,,,N,abc -2660773,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,5,,,,,,,,,,,,N,abc -2660775,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,13,,,,,,,,,,,,N,abc -2660777,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D2,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,5,,,,,,,,,,,,N,abc -2660779,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,6,,,,,,,,,,,,N,abc -2660781,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E8,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,15,,,,,,,,,,,,N,abc -2660783,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660785,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,14,,,,,,,,,,,,N,abc -2660787,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,19,,,,,,,,,,,,N,abc -2660789,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,8,,,,,,,,,,,,N,abc -2660791,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,8,,,,,,,,,,,,N,abc -2660793,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,7,,,,,,,,,,,,N,abc -2660795,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D5,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,14,,,,,,,,,,,,N,abc -2660797,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,32D9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,18,,,,,,,,,,,,N,abc -2660799,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,17,,,,,,,,,,,,N,abc -2660801,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,16,,,,,,,,,,,,N,abc -2660803,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,20,,,,,,,,,,,,N,abc -2660805,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E2,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,9,,,,,,,,,,,,N,abc -2660807,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,5,,,,,,,,,,,,N,abc -2660809,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660811,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,12,,,,,,,,,,,,N,abc -2660813,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,4,,,,,,,,,,,,N,abc -2660815,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34E1,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,8,,,,,,,,,,,,N,abc -2660817,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,9,,,,,,,,,,,,N,abc -2660819,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E8,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,17,,,,,,,,,,,,N,abc -2660821,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,21,,,,,,,,,,,,N,abc -2660823,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,13,,,,,,,,,,,,N,abc -2660825,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660827,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,7,,,,,,,,,,,,N,abc -2660829,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,23,,,,,,,,,,,,N,abc -2660831,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,23,,,,,,,,,,,,N,abc -2660833,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,4,,,,,,,,,,,,N,abc -2660835,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,7,,,,,,,,,,,,N,abc -2660837,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,6,,,,,,,,,,,,N,abc -2660839,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,21,,,,,,,,,,,,N,abc -2660841,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,5,,,,,,,,,,,,N,abc -2660843,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E3,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,17,,,,,,,,,,,,N,abc -2660845,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,10,,,,,,,,,,,,N,abc -2660847,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,20,,,,,,,,,,,,N,abc -2660849,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,27E6,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,11,,,,,,,,,,,,N,abc -2660851,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,23,,,,,,,,,,,,N,abc -2660853,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,9,,,,,,,,,,,,N,abc -2660855,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,21,,,,,,,,,,,,N,abc -2660857,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,8,,,,,,,,,,,,N,abc -2660859,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,6,,,,,,,,,,,,N,abc -2660861,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E8,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,18,,,,,,,,,,,,N,abc -2660863,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,25E5,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,20,,,,,,,,,,,,N,abc -2660865,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,11,,,,,,,,,,,,N,abc -2660867,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,14,,,,,,,,,,,,N,abc -2660869,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,6,,,,,,,,,,,,N,abc -2660871,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,39E6,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,7,,,,,,,,,,,,N,abc -2660873,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,22,,,,,,,,,,,,N,abc -2660875,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,17,,,,,,,,,,,,N,abc -2660877,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,4,,,,,,,,,,,,N,abc -2660879,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,19,,,,,,,,,,,,N,abc -2660881,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,22,,,,,,,,,,,,N,abc -2660883,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,19,,,,,,,,,,,,N,abc -2660885,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660887,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,17,,,,,,,,,,,,N,abc -2660889,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,22,,,,,,,,,,,,N,abc -2660891,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660893,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,23,,,,,,,,,,,,N,abc -2660895,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660897,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,14,,,,,,,,,,,,N,abc -2660899,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,13,,,,,,,,,,,,N,abc -2660901,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,5,,,,,,,,,,,,N,abc -2660903,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,6,,,,,,,,,,,,N,abc -2660905,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,19,,,,,,,,,,,,N,abc -2660907,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660909,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,23,,,,,,,,,,,,N,abc -2660911,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,13,,,,,,,,,,,,N,abc -2660913,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,19,,,,,,,,,,,,N,abc -2660915,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,14,,,,,,,,,,,,N,abc -2660917,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,7,,,,,,,,,,,,N,abc -2660919,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,22,,,,,,,,,,,,N,abc -2660921,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,20,,,,,,,,,,,,N,abc -2660923,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E7,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,16,,,,,,,,,,,,N,abc -2660925,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,19,,,,,,,,,,,,N,abc -2660927,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2660929,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,9,,,,,,,,,,,,N,abc -2660931,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,11,,,,,,,,,,,,N,abc -2660933,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,7,,,,,,,,,,,,N,abc -2660935,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,9,,,,,,,,,,,,N,abc -2660937,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,7,,,,,,,,,,,,N,abc -2660939,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,5,,,,,,,,,,,,N,abc -2660941,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,7,,,,,,,,,,,,N,abc -2660943,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,10,,,,,,,,,,,,N,abc -2660945,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E4,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,14,,,,,,,,,,,,N,abc -2660947,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,14,,,,,,,,,,,,N,abc -2660949,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25D8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,9,,,,,,,,,,,,N,abc -2660951,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,7,,,,,,,,,,,,N,abc -2660953,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,22,,,,,,,,,,,,N,abc -2660955,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E3,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,22,,,,,,,,,,,,N,abc -2660957,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,9,,,,,,,,,,,,N,abc -2660959,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D6,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,12,,,,,,,,,,,,N,abc -2660961,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,13,,,,,,,,,,,,N,abc -2660963,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,16,,,,,,,,,,,,N,abc -2660965,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660967,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,19,,,,,,,,,,,,N,abc -2660969,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D5,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,16,,,,,,,,,,,,N,abc -2660971,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,9,,,,,,,,,,,,N,abc -2660973,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E3,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,7,,,,,,,,,,,,N,abc -2660975,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,10,,,,,,,,,,,,N,abc -2660977,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E4,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,18,,,,,,,,,,,,N,abc -2660979,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,4,,,,,,,,,,,,N,abc -2660981,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,10,,,,,,,,,,,,N,abc -2660983,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2660985,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,9,,,,,,,,,,,,N,abc -2660987,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,11,,,,,,,,,,,,N,abc -2660989,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,18,,,,,,,,,,,,N,abc -2660991,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,17,,,,,,,,,,,,N,abc -2660993,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D7,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,10,,,,,,,,,,,,N,abc -2660995,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,22,,,,,,,,,,,,N,abc -2660997,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,12,,,,,,,,,,,,N,abc -2660999,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,11,,,,,,,,,,,,N,abc -2661001,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,17,,,,,,,,,,,,N,abc -2661003,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,37E3,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,15,,,,,,,,,,,,N,abc -2661005,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,4,,,,,,,,,,,,N,abc -2661007,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25D9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,8,,,,,,,,,,,,N,abc -2661009,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2661011,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,15,,,,,,,,,,,,N,abc -2661013,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,18,,,,,,,,,,,,N,abc -2661015,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,23,,,,,,,,,,,,N,abc -2661017,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,6,,,,,,,,,,,,N,abc -2661019,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,4,,,,,,,,,,,,N,abc -2661021,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,10,,,,,,,,,,,,N,abc -2661023,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,19,,,,,,,,,,,,N,abc -2661025,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,16,,,,,,,,,,,,N,abc -2661027,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,10,,,,,,,,,,,,N,abc -2660694,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,7,,,,,,,,,,,,N,abc -2660696,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,12,,,,,,,,,,,,N,abc -2660698,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,11,,,,,,,,,,,,N,abc -2660700,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,15,,,,,,,,,,,,N,abc -2660702,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,21,,,,,,,,,,,,N,abc -2660704,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E3,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,8,,,,,,,,,,,,N,abc -2660706,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,11,,,,,,,,,,,,N,abc -2660708,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D5,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,6,,,,,,,,,,,,N,abc -2660710,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,19,,,,,,,,,,,,N,abc -2660712,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,22,,,,,,,,,,,,N,abc -2660714,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660716,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,9,,,,,,,,,,,,N,abc -2660718,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E6,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,13,,,,,,,,,,,,N,abc -2660720,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,13,,,,,,,,,,,,N,abc -2660722,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,11,,,,,,,,,,,,N,abc -2660724,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,13,,,,,,,,,,,,N,abc -2660726,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,16,,,,,,,,,,,,N,abc -2660728,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,4,,,,,,,,,,,,N,abc -2660730,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660732,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660734,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D3,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,14,,,,,,,,,,,,N,abc -2660736,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,6,,,,,,,,,,,,N,abc -2660738,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,8,,,,,,,,,,,,N,abc -2660740,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,14,,,,,,,,,,,,N,abc -2660742,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,21,,,,,,,,,,,,N,abc -2660744,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,26D8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,21,,,,,,,,,,,,N,abc -2660746,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660748,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,14,,,,,,,,,,,,N,abc -2660750,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,17,,,,,,,,,,,,N,abc -2660752,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D3,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,6,,,,,,,,,,,,N,abc -2660754,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E6,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,6,,,,,,,,,,,,N,abc -2660756,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,5,,,,,,,,,,,,N,abc -2660758,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,9,,,,,,,,,,,,N,abc -2660760,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,22,,,,,,,,,,,,N,abc -2660762,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,8,,,,,,,,,,,,N,abc -2660764,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,38E5,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2660766,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,23,,,,,,,,,,,,N,abc -2660768,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,15,,,,,,,,,,,,N,abc -2660770,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D3,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,17,,,,,,,,,,,,N,abc -2660772,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,22,,,,,,,,,,,,N,abc -2660774,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,11,,,,,,,,,,,,N,abc -2660776,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D5,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,16,,,,,,,,,,,,N,abc -2660778,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,22,,,,,,,,,,,,N,abc -2660780,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,21,,,,,,,,,,,,N,abc -2660782,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,16,,,,,,,,,,,,N,abc -2660784,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,4,,,,,,,,,,,,N,abc -2660786,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,6,,,,,,,,,,,,N,abc -2660788,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,22,,,,,,,,,,,,N,abc -2660790,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,23,,,,,,,,,,,,N,abc -2660792,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E4,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,7,,,,,,,,,,,,N,abc -2660794,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,7,,,,,,,,,,,,N,abc -2660796,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,8,,,,,,,,,,,,N,abc -2660798,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,8,,,,,,,,,,,,N,abc -2660800,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,8,,,,,,,,,,,,N,abc -2660802,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,14,,,,,,,,,,,,N,abc -2660804,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E7,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,17,,,,,,,,,,,,N,abc -2660806,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,15,,,,,,,,,,,,N,abc -2660808,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,13,,,,,,,,,,,,N,abc -2660810,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,22,,,,,,,,,,,,N,abc -2660812,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,13,,,,,,,,,,,,N,abc -2660814,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27D8,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,16,,,,,,,,,,,,N,abc -2660816,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660818,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,14,,,,,,,,,,,,N,abc -2660820,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E4,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,18,,,,,,,,,,,,N,abc -2660822,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,9,,,,,,,,,,,,N,abc -2660824,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,13,,,,,,,,,,,,N,abc -2660826,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E4,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,23,,,,,,,,,,,,N,abc -2660828,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,17,,,,,,,,,,,,N,abc -2660830,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,10,,,,,,,,,,,,N,abc -2660832,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,10,,,,,,,,,,,,N,abc -2660834,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,20,,,,,,,,,,,,N,abc -2660836,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,26D9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,21,,,,,,,,,,,,N,abc -2660838,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,20,,,,,,,,,,,,N,abc -2660840,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,5,,,,,,,,,,,,N,abc -2660842,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,23,,,,,,,,,,,,N,abc -2660844,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,19,,,,,,,,,,,,N,abc -2660846,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,11,,,,,,,,,,,,N,abc -2660848,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,10,,,,,,,,,,,,N,abc -2660850,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,7,,,,,,,,,,,,N,abc -2660852,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,11,,,,,,,,,,,,N,abc -2660854,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,27E9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,23,,,,,,,,,,,,N,abc -2660856,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,5,,,,,,,,,,,,N,abc -2660858,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,15,,,,,,,,,,,,N,abc -2660860,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,20,,,,,,,,,,,,N,abc -2660862,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,4,,,,,,,,,,,,N,abc -2660864,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,12,,,,,,,,,,,,N,abc -2660866,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,14,,,,,,,,,,,,N,abc -2660868,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,16,,,,,,,,,,,,N,abc -2660870,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D2,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,4,,,,,,,,,,,,N,abc -2660872,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,20,,,,,,,,,,,,N,abc -2660874,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,18,,,,,,,,,,,,N,abc -2660876,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E3,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,20,,,,,,,,,,,,N,abc -2660878,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,35E5,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,9,,,,,,,,,,,,N,abc -2660880,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,20,,,,,,,,,,,,N,abc -2660882,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,19,,,,,,,,,,,,N,abc -2660884,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,13,,,,,,,,,,,,N,abc -2660886,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28E9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,12,,,,,,,,,,,,N,abc -2660888,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,19,,,,,,,,,,,,N,abc -2660890,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,6,,,,,,,,,,,,N,abc -2660892,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,10,,,,,,,,,,,,N,abc -2660894,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,17,,,,,,,,,,,,N,abc -2660896,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,15,,,,,,,,,,,,N,abc -2660898,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,9,,,,,,,,,,,,N,abc -2660900,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E5,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,4,,,,,,,,,,,,N,abc -2660902,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30E9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,22,,,,,,,,,,,,N,abc -2660904,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,13,,,,,,,,,,,,N,abc -2660906,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,15,,,,,,,,,,,,N,abc -2660908,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,25E0,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,23,,,,,,,,,,,,N,abc -2660910,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,9,,,,,,,,,,,,N,abc -2660912,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,22,,,,,,,,,,,,N,abc -2660914,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,9,,,,,,,,,,,,N,abc -2660916,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,33E2,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,11,,,,,,,,,,,,N,abc -2660918,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,14,,,,,,,,,,,,N,abc -2660920,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,20,,,,,,,,,,,,N,abc -2660922,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,5,,,,,,,,,,,,N,abc -2660924,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,5,,,,,,,,,,,,N,abc -2660926,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,29D8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,18,,,,,,,,,,,,N,abc -2660928,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,19,,,,,,,,,,,,N,abc -2660930,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E5,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,15,,,,,,,,,,,,N,abc -2660932,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,8,,,,,,,,,,,,N,abc -2660934,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,13,,,,,,,,,,,,N,abc -2660936,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2660938,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,14,,,,,,,,,,,,N,abc -2660940,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D8,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,19,,,,,,,,,,,,N,abc -2660942,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D5,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,14,,,,,,,,,,,,N,abc -2660944,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27E0,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,21,,,,,,,,,,,,N,abc -2660946,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D5,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,7000.0,7000.0,NoDiff,14000,,19,,,,,,,,,,,,N,abc -2660948,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,15,,,,,,,,,,,,N,abc -2660950,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,27E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,16,,,,,,,,,,,,N,abc -2660952,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,19,,,,,,,,,,,,N,abc -2660954,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,15,,,,,,,,,,,,N,abc -2660956,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,21,,,,,,,,,,,,N,abc -2660958,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E5,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,22,,,,,,,,,,,,N,abc -2660960,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,12,,,,,,,,,,,,N,abc -2660962,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,6,,,,,,,,,,,,N,abc -2660964,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,19,,,,,,,,,,,,N,abc -2660966,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,15,,,,,,,,,,,,N,abc -2660968,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,19000.0,19000.0,NoDiff,38000,,9,,,,,,,,,,,,N,abc -2660970,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,8,,,,,,,,,,,,N,abc -2660972,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,20,,,,,,,,,,,,N,abc -2660974,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,14,,,,,,,,,,,,N,abc -2660976,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,14,,,,,,,,,,,,N,abc -2660978,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,30E0,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,5,,,,,,,,,,,,N,abc -2660980,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28E8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,16,,,,,,,,,,,,N,abc -2660982,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D4,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,10,,,,,,,,,,,,N,abc -2660984,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2660986,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D7,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,22,,,,,,,,,,,,N,abc -2660988,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,17,,,,,,,,,,,,N,abc -2660990,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,20,,,,,,,,,,,,N,abc -2660992,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,31D9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,16,,,,,,,,,,,,N,abc -2660994,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,20,,,,,,,,,,,,N,abc -2660996,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,18,,,,,,,,,,,,N,abc -2660998,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,13,,,,,,,,,,,,N,abc -2661000,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,22,,,,,,,,,,,,N,abc -2661002,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,23,,,,,,,,,,,,N,abc -2661004,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,5,,,,,,,,,,,,N,abc -2661006,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D5,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,20,,,,,,,,,,,,N,abc -2661008,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D3,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,20,,,,,,,,,,,,N,abc -2661010,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2661012,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,7,,,,,,,,,,,,N,abc -2661014,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,16,,,,,,,,,,,,N,abc -2661016,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,26D3,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,16,,,,,,,,,,,,N,abc -2661018,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,12,,,,,,,,,,,,N,abc -2661020,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,5,,,,,,,,,,,,N,abc -2661022,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E5,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,22,,,,,,,,,,,,N,abc -2661024,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,11,,,,,,,,,,,,N,abc -2661026,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,17,,,,,,,,,,,,N,abc -2661028,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,31E0,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,8,,,,,,,,,,,,N,abc -2660652,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,31D4,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,17,,,,,,,,,,,,N,abc -2660654,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,13,,,,,,,,,,,,N,abc -2660656,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E3,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,12,,,,,,,,,,,,N,abc -2660658,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,22,,,,,,,,,,,,N,abc -2660660,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2660662,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,7,,,,,,,,,,,,N,abc -2660664,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,30000.0,30000.0,NoDiff,60000,,12,,,,,,,,,,,,N,abc -2660666,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E7,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,8,,,,,,,,,,,,N,abc -2660668,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,19,,,,,,,,,,,,N,abc -2660670,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,15,,,,,,,,,,,,N,abc -2660672,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,11,,,,,,,,,,,,N,abc -2660674,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,9,,,,,,,,,,,,N,abc -2660676,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37D9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,8,,,,,,,,,,,,N,abc -2660678,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,4,,,,,,,,,,,,N,abc -2660680,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,4,,,,,,,,,,,,N,abc -2660682,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,4,,,,,,,,,,,,N,abc -2660684,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,28F0,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2660686,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,15,,,,,,,,,,,,N,abc -2660688,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,9,,,,,,,,,,,,N,abc -2660690,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,14,,,,,,,,,,,,N,abc -2660692,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D4,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,16,,,,,,,,,,,,N,abc -2661029,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,33000.0,33000.0,NoDiff,66000,,18,,,,,,,,,,,,N,abc -2661031,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661033,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,22,,,,,,,,,,,,N,abc -2661035,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D6,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,5,,,,,,,,,,,,N,abc -2661037,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,20,,,,,,,,,,,,N,abc -2661039,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E1,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,18,,,,,,,,,,,,N,abc -2661041,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E3,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,4,,,,,,,,,,,,N,abc -2661043,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,30E4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,15,,,,,,,,,,,,N,abc -2661045,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,27E2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,21,,,,,,,,,,,,N,abc -2661047,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,35D6,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,18,,,,,,,,,,,,N,abc -2661049,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,34D7,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,19,,,,,,,,,,,,N,abc -2661051,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,17,,,,,,,,,,,,N,abc -2661053,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,5,,,,,,,,,,,,N,abc -2661055,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,32000.0,32000.0,NoDiff,64000,,10,,,,,,,,,,,,N,abc -2661057,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,36D4,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,7,,,,,,,,,,,,N,abc -2661059,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E1,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,12,,,,,,,,,,,,N,abc -2661061,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D6,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,17,,,,,,,,,,,,N,abc -2661063,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,4,,,,,,,,,,,,N,abc -2661065,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,13,,,,,,,,,,,,N,abc -2661067,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,7,,,,,,,,,,,,N,abc -2661069,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,20,,,,,,,,,,,,N,abc -2661071,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,37000.0,37000.0,NoDiff,74000,,8,,,,,,,,,,,,N,abc -2661073,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,48000.0,48000.0,NoDiff,96000,,18,,,,,,,,,,,,N,abc -2661075,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,30E1,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,15,,,,,,,,,,,,N,abc -2661077,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,23,,,,,,,,,,,,N,abc -2661079,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,17,,,,,,,,,,,,N,abc -2661081,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,18,,,,,,,,,,,,N,abc -2661083,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F1,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,13,,,,,,,,,,,,N,abc -2661085,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,22,,,,,,,,,,,,N,abc -2661087,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,16,,,,,,,,,,,,N,abc -2661089,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,28D9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,22,,,,,,,,,,,,N,abc -2661091,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,9,,,,,,,,,,,,N,abc -2661093,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,15,,,,,,,,,,,,N,abc -2661095,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,30E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,9000.0,9000.0,NoDiff,18000,,5,,,,,,,,,,,,N,abc -2661097,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,34D9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,7,,,,,,,,,,,,N,abc -2661099,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,5,,,,,,,,,,,,N,abc -2661101,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,15,,,,,,,,,,,,N,abc -2661103,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,31E2,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,16,,,,,,,,,,,,N,abc -2661105,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,29E2,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,13,,,,,,,,,,,,N,abc -2661107,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,33D4,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,10,,,,,,,,,,,,N,abc -2661109,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E6,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,22,,,,,,,,,,,,N,abc -2661111,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,5,,,,,,,,,,,,N,abc -2661113,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,12,,,,,,,,,,,,N,abc -2661115,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101013,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,35000.0,35000.0,NoDiff,70000,,4,,,,,,,,,,,,N,abc -2661117,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,31E6,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,18,,,,,,,,,,,,N,abc -2661119,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2661121,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,11,,,,,,,,,,,,N,abc -2661123,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,3000.0,3000.0,NoDiff,6000,,14,,,,,,,,,,,,N,abc -2661125,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E5,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,17,,,,,,,,,,,,N,abc -2661127,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.a,36E4,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,14000.0,14000.0,NoDiff,28000,,13,,,,,,,,,,,,N,abc -2661129,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F0,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,47000.0,47000.0,NoDiff,94000,,4,,,,,,,,,,,,N,abc -2661131,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.c,37D2,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,12,,,,,,,,,,,,N,abc -2661133,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,4,,,,,,,,,,,,N,abc -2661135,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,18000.0,18000.0,NoDiff,36000,,18,,,,,,,,,,,,N,abc -2661137,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,41000.0,41000.0,NoDiff,82000,,5,,,,,,,,,,,,N,abc -2661139,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.j,28D8,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,31000.0,31000.0,NoDiff,62000,,7,,,,,,,,,,,,N,abc -2661141,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,15000.0,15000.0,NoDiff,30000,,14,,,,,,,,,,,,N,abc -2661143,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,5,,,,,,,,,,,,N,abc -2661145,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,22,,,,,,,,,,,,N,abc -2661147,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,6,,,,,,,,,,,,N,abc -2661030,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D7,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,5,,,,,,,,,,,,N,abc -2661032,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,25D6,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,15,,,,,,,,,,,,N,abc -2661034,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E1,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2661036,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,24000.0,24000.0,NoDiff,48000,,10,,,,,,,,,,,,N,abc -2661038,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,29D7,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,27000.0,27000.0,NoDiff,54000,,23,,,,,,,,,,,,N,abc -2661040,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,4000.0,4000.0,NoDiff,8000,,9,,,,,,,,,,,,N,abc -2661042,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.8,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,11,,,,,,,,,,,,N,abc -2661044,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,5,,,,,,,,,,,,N,abc -2661046,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,18,,,,,,,,,,,,N,abc -2661048,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,23000.0,23000.0,NoDiff,46000,,19,,,,,,,,,,,,N,abc -2661050,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,17000.0,17000.0,NoDiff,34000,,11,,,,,,,,,,,,N,abc -2661052,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E7,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,12,,,,,,,,,,,,N,abc -2661054,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,17,,,,,,,,,,,,N,abc -2661056,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,29000.0,29000.0,NoDiff,58000,,17,,,,,,,,,,,,N,abc -2661058,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36D9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,9,,,,,,,,,,,,N,abc -2661060,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101798,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,17,,,,,,,,,,,,N,abc -2661062,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,36E0,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,9,,,,,,,,,,,,N,abc -2661064,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,32E5,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,36000.0,36000.0,NoDiff,72000,,18,,,,,,,,,,,,N,abc -2661066,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWVFA,VL1518,,,,,,,,25000.0,25000.0,NoDiff,50000,,22,,,,,,,,,,,,N,abc -2661068,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,9,,,,,,,,,,,,N,abc -2661070,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,12000.0,12000.0,NoDiff,24000,,18,,,,,,,,,,,,N,abc -2661072,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101804,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,39000.0,39000.0,NoDiff,78000,,6,,,,,,,,,,,,N,abc -2661074,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,29E8,AdjPosData,,NotApplicable,,MO,NA,,,101417,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,4,,,,,,,,,,,,N,abc -2661076,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,6000.0,6000.0,NoDiff,12000,,5,,,,,,,,,,,,N,abc -2661078,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,25E2,AdjPosData,,NotApplicable,,MO,NA,,,10194,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661080,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,30D5,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,22,,,,,,,,,,,,N,abc -2661082,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWBUQ,VL1518,,,,,,,,10000.0,10000.0,NoDiff,20000,,18,,,,,,,,,,,,N,abc -2661084,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,7,,,,,,,,,,,,N,abc -2661086,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,28E3,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,42000.0,42000.0,NoDiff,84000,,6,,,,,,,,,,,,N,abc -2661088,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.6,-9,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,DRB_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,10,,,,,,,,,,,,N,abc -2661090,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E7,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,16,,,,,,,,,,,,N,abc -2661092,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.9,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,PTM_SPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2661094,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,46000.0,46000.0,NoDiff,92000,,11,,,,,,,,,,,,N,abc -2661096,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E2,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,8000.0,8000.0,NoDiff,16000,,7,,,,,,,,,,,,N,abc -2661098,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,43000.0,43000.0,NoDiff,86000,,12,,,,,,,,,,,,N,abc -2661100,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E1,AdjPosData,,NotApplicable,,MO,NA,,,10193,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,45000.0,45000.0,NoDiff,90000,,10,,,,,,,,,,,,N,abc -2661102,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,28D3,AdjPosData,,NotApplicable,,MO,NA,,,100930,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,49000.0,49000.0,NoDiff,98000,,6,,,,,,,,,,,,N,abc -2661104,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,37E0,AdjPosData,,NotApplicable,,MO,NA,,,100782,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWCHJ,VL1518,,,,,,,,21000.0,21000.0,NoDiff,42000,,9,,,,,,,,,,,,N,abc -2661106,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35E0,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,11000.0,11000.0,NoDiff,22000,,7,,,,,,,,,,,,N,abc -2661108,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWBZH,VL1518,,,,,,,,20000.0,20000.0,NoDiff,40000,,21,,,,,,,,,,,,N,abc -2661110,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,30F1,AdjPosData,,NotApplicable,,MO,NA,,,101380,,HuC,Lan,,,,,OTM_LPF_>0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,23,,,,,,,,,,,,N,abc -2661112,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,28E2,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,13,,,,,,,,,,,,N,abc -2661114,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.1,-9,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,18,,,,,,,,,,,,N,abc -2661116,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.h,26E1,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,FPO_CRU_>0_0_0,AttAcoustic,ZWHWN,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,8,,,,,,,,,,,,N,abc -2661118,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F1,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,16000.0,16000.0,NoDiff,32000,,16,,,,,,,,,,,,N,abc -2661120,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1019159,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,5,,,,,,,,,,,,N,abc -2661122,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,38000.0,38000.0,NoDiff,76000,,19,,,,,,,,,,,,N,abc -2661124,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7,-9,AdjPosData,,NotApplicable,,MO,NA,,,1016062,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWKAB,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,22,,,,,,,,,,,,N,abc -2661126,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,30E6,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,FPO_MOL_>0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,40000.0,40000.0,NoDiff,80000,,12,,,,,,,,,,,,N,abc -2661128,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,5000.0,5000.0,NoDiff,10000,,8,,,,,,,,,,,,N,abc -2661130,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.2,-9,AdjPosData,,NotApplicable,,MO,NA,,,101170,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWGWE,VL1518,,,,,,,,1000.0,1000.0,NoDiff,2000,,11,,,,,,,,,,,,N,abc -2661132,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,31F2,AdjPosData,,NotApplicable,,MO,NA,,,101174,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,44000.0,44000.0,NoDiff,88000,,21,,,,,,,,,,,,N,abc -2661134,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.k,26D4,AdjPosData,,NotApplicable,,MO,NA,,,101172,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMJW,VL1518,,,,,,,,13000.0,13000.0,NoDiff,26000,,17,,,,,,,,,,,,N,abc -2661136,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.e,26E7,AdjPosData,,NotApplicable,,MO,NA,,,100684,,HuC,Lan,,,,,LLS_FIF_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,50000.0,50000.0,NoDiff,100000,,19,,,,,,,,,,,,N,abc -2661138,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.4,-9,AdjPosData,,NotApplicable,,MO,NA,,,1015724,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWBFO,VL1518,,,,,,,,26000.0,26000.0,NoDiff,52000,,16,,,,,,,,,,,,N,abc -2661140,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.d,29F0,AdjPosData,,NotApplicable,,MO,NA,,,101167,,HuC,Lan,,,,,LHP_DEF_0_0_0,AttAcoustic,ZWHRE,VL1518,,,,,,,,28000.0,28000.0,NoDiff,56000,,19,,,,,,,,,,,,N,abc -2661142,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.g,32E1,AdjPosData,,NotApplicable,,MO,NA,,,101,,HuC,Lan,,,,,MIS_MIS_0_0_0,AttAcoustic,ZWUTA,VL1518,,,,,,,,34000.0,34000.0,NoDiff,68000,,13,,,,,,,,,,,,N,abc -2661144,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.b,35D8,AdjPosData,,NotApplicable,,MO,NA,,,101800,,HuC,Lan,,,,,LHP_SPF_0_0_0,AttAcoustic,ZWWKI,VL1518,,,,,,,,2000.0,2000.0,NoDiff,4000,,16,,,,,,,,,,,,N,abc -2661146,CL,Estimate,Combcd,,Avgp,ZW,ZW,1965,1,,27.7.f,29E3,AdjPosData,,NotApplicable,,MO,NA,,,101519,,HuC,Lan,,,,,OTB_DEF_70-99_0_0,AttAcoustic,ZWMVZ,VL1518,,,,,,,,22000.0,22000.0,NoDiff,44000,,14,,,,,,,,,,,,N,abc diff --git a/tests/testthat/h7_v_1_19_26/Design.csv b/tests/testthat/h7_v_1_19_26/Design.csv deleted file mode 100644 index 05f8e074..00000000 --- a/tests/testthat/h7_v_1_19_26/Design.csv +++ /dev/null @@ -1,4 +0,0 @@ -DEid,DErecordType,DEsamplingScheme,DEsamplingSchemeType,DEyear,DEstratumName,DEhierarchyCorrect,DEhierarchy,DEsampled,DEreasonNotSampled,DEnonResponseCollected,DEauxiliaryVariableTotal,DEauxiliaryVariableValue,DEauxiliaryVariableName,DEauxiliaryVariableUnit -5409,DE,National Routine,NatPilCF,1965,DE_stratum1_H5,Y,5,Y,,,,,, -5410,DE,National Routine,NatPilCF,1965,DE_stratum2_H5,Y,5,Y,,,,,, -5411,DE,National Routine,NatPilCF,1965,DE_stratum3_H5,Y,5,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/FishingTrip.csv b/tests/testthat/h7_v_1_19_26/FishingTrip.csv deleted file mode 100644 index 4b010b4c..00000000 --- a/tests/testthat/h7_v_1_19_26/FishingTrip.csv +++ /dev/null @@ -1,28 +0,0 @@ -FTid,OSid,VSid,VDid,SDid,FOid,TEid,LEid,FTrecordType,FTencryptedVesselCode,FTsequenceNumber,FTstratification,FTstratumName,FTclustering,FTclusterName,FTsampler,FTsamplingType,FTnumberOfHaulsOrSets,FTdepartureLocation,FTdepartureDate,FTdepartureTime,FTarrivalLocation,FTarrivalDate,FTarrivalTime,FTnumberTotal,FTnumberSampled,FTselectionProb,FTinclusionProb,FTselectionMethod,FTunitName,FTselectionMethodCluster,FTnumberTotalClusters,FTnumberSampledClusters,FTselectionProbCluster,FTinclusionProbCluster,FTsampled,FTreasonNotSampled,FTnonResponseCollected,FTauxiliaryVariableTotal,FTauxiliaryVariableValue,FTauxiliaryVariableName,FTauxiliaryVariableUnit -21920,,,428063,,,,24751,FT,VDcode_2,1,N,U,N,U,,AtSea,,ZWCHJ,1965-09-16,,ZWCHJ,1965-10-08,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21921,,,428066,,,,24752,FT,VDcode_5,2,N,U,N,U,,AtSea,,ZWHWN,1965-03-03,,ZWHWN,1965-03-07,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21922,,,428062,,,,24753,FT,VDcode_1,3,N,U,N,U,,AtSea,,ZWMVZ,1965-03-12,,ZWMVZ,1965-03-30,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21923,,,428067,,,,24754,FT,VDcode_6,4,N,U,N,U,,AtSea,,ZWMVZ,1965-09-13,,ZWMVZ,1965-10-01,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21924,,,428062,,,,24755,FT,VDcode_1,5,N,U,N,U,,AtSea,,ZWCHJ,1965-01-10,,ZWCHJ,1965-01-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21925,,,428066,,,,24756,FT,VDcode_5,6,N,U,N,U,,AtSea,,ZWCHJ,1965-03-15,,ZWCHJ,1965-03-16,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21926,,,428066,,,,24757,FT,VDcode_5,7,N,U,N,U,,AtSea,,ZWHRE,1965-02-28,,ZWHRE,1965-03-12,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21927,,,428064,,,,24758,FT,VDcode_3,8,N,U,N,U,,AtSea,,ZWHWN,1965-06-06,,ZWHWN,1965-06-14,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21928,,,428070,,,,24759,FT,VDcode_9,9,N,U,N,U,,AtSea,,ZWBFO,1965-06-07,,ZWBFO,1965-06-20,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21929,,,428062,,,,24760,FT,VDcode_1,10,N,U,N,U,,AtSea,,ZWHRE,1965-02-12,,ZWHRE,1965-02-23,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21930,,,428063,,,,24761,FT,VDcode_2,11,N,U,N,U,,AtSea,,ZWUTA,1965-10-21,,ZWUTA,1965-11-03,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21931,,,428069,,,,24762,FT,VDcode_8,12,N,U,N,U,,AtSea,,ZWMJW,1965-10-08,,ZWMJW,1965-10-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21932,,,428063,,,,24763,FT,VDcode_2,13,N,U,N,U,,AtSea,,ZWMJW,1965-03-06,,ZWMJW,1965-03-13,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21933,,,428066,,,,24764,FT,VDcode_5,14,N,U,N,U,,AtSea,,ZWBZH,1965-09-06,,ZWBZH,1965-09-26,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21934,,,428068,,,,24765,FT,VDcode_7,15,N,U,N,U,,AtSea,,ZWWKI,1965-03-10,,ZWWKI,1965-04-08,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21935,,,428071,,,,24766,FT,VDcode_10,16,N,U,N,U,,AtSea,,ZWWKI,1965-05-27,,ZWWKI,1965-06-06,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21936,,,428062,,,,24767,FT,VDcode_1,17,N,U,N,U,,AtSea,,ZWWKI,1965-05-14,,ZWWKI,1965-05-29,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21937,,,428065,,,,24768,FT,VDcode_4,18,N,U,N,U,,AtSea,,ZWHRE,1965-05-18,,ZWHRE,1965-06-13,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21938,,,428063,,,,24769,FT,VDcode_2,19,N,U,N,U,,AtSea,,ZWMJW,1965-10-12,,ZWMJW,1965-10-27,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21939,,,428064,,,,24770,FT,VDcode_3,20,N,U,N,U,,AtSea,,ZWBUQ,1965-04-24,,ZWBUQ,1965-04-28,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21940,,,428068,,,,24771,FT,VDcode_7,21,N,U,N,U,,AtSea,,ZWHRE,1965-02-16,,ZWHRE,1965-03-07,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21941,,,428068,,,,24772,FT,VDcode_7,22,N,U,N,U,,AtSea,,ZWMVZ,1965-06-22,,ZWMVZ,1965-07-15,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21942,,,428068,,,,24773,FT,VDcode_7,23,N,U,N,U,,AtSea,,ZWMVZ,1965-05-05,,ZWMVZ,1965-05-06,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21943,,,428062,,,,24774,FT,VDcode_1,24,N,U,N,U,,AtSea,,ZWHWN,1965-03-18,,ZWHWN,1965-03-27,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21944,,,428070,,,,24775,FT,VDcode_9,25,N,U,N,U,,AtSea,,ZWMJW,1965-06-07,,ZWMJW,1965-06-19,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21945,,,428066,,,,24776,FT,VDcode_5,26,N,U,N,U,,AtSea,,ZWWKI,1965-02-06,,ZWWKI,1965-03-04,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, -21946,,,428070,,,,24777,FT,VDcode_9,27,N,U,N,U,,AtSea,,ZWBZH,1965-05-03,,ZWBZH,1965-05-26,,1,1,,,SRSWR,FT_unit_1,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/FrequencyMeasure.csv b/tests/testthat/h7_v_1_19_26/FrequencyMeasure.csv deleted file mode 100644 index dfb66f90..00000000 --- a/tests/testthat/h7_v_1_19_26/FrequencyMeasure.csv +++ /dev/null @@ -1,271 +0,0 @@ -FMid,SAid,FMrecordType,FMstateOfProcessing,FMpresentation,FMclassMeasured,FMnumberAtUnit,FMtypeMeasured,FMmethod,FMmeasurementEquipment,FMaccuracy,FMconversionFactorAssessment,FMtypeAssessment,FMsampler,FMaddGrpMeasurement,FMaddGrpMeasurementType -4040142,549589,FM,BAF,CBF,240,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040143,549589,FM,BAF,CBF,330,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040144,549589,FM,BAF,CBF,250,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040145,549589,FM,BAF,CBF,260,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040146,549589,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040147,549589,FM,BAF,CBF,280,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040148,549589,FM,BAF,CBF,290,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040149,549589,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040150,549589,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040151,549589,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040152,549590,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040153,549590,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040154,549590,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040155,549590,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040156,549590,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040157,549590,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040158,549590,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040159,549590,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040160,549590,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040161,549590,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040162,549591,FM,BAF,CBF,110,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040163,549591,FM,BAF,CBF,120,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040164,549591,FM,BAF,CBF,130,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040165,549591,FM,BAF,CBF,140,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040166,549591,FM,BAF,CBF,150,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040167,549591,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040168,549591,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040169,549591,FM,BAF,CBF,180,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040170,549591,FM,BAF,CBF,190,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040171,549591,FM,BAF,CBF,200,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040172,549592,FM,BAF,CBF,330,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040173,549592,FM,BAF,CBF,340,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040174,549592,FM,BAF,CBF,350,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040175,549592,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040176,549592,FM,BAF,CBF,370,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040177,549592,FM,BAF,CBF,380,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040178,549592,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040179,549592,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040180,549592,FM,BAF,CBF,410,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040181,549592,FM,BAF,CBF,420,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040182,549593,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040183,549593,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040184,549593,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040185,549593,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040186,549593,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040187,549593,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040188,549593,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040189,549593,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040190,549593,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040191,549593,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040192,549594,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040193,549594,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040194,549594,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040195,549594,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040196,549594,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040197,549594,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040198,549594,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040199,549594,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040200,549594,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040201,549594,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040202,549595,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040203,549595,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040204,549595,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040205,549595,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040206,549595,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040207,549595,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040208,549595,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040209,549595,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040210,549595,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040211,549595,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040212,549596,FM,BAF,CBF,360,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040213,549596,FM,BAF,CBF,370,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040214,549596,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040215,549596,FM,BAF,CBF,390,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040216,549596,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040217,549596,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040218,549596,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040219,549596,FM,BAF,CBF,430,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040220,549596,FM,BAF,CBF,440,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040221,549596,FM,BAF,CBF,450,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040222,549597,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040223,549597,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040224,549597,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040225,549597,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040226,549597,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040227,549597,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040228,549597,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040229,549597,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040230,549597,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040231,549597,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040232,549598,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040233,549598,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040234,549598,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040235,549598,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040236,549598,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040237,549598,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040238,549598,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040239,549598,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040240,549598,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040241,549598,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040242,549599,FM,BAF,CBF,370,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040243,549599,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040244,549599,FM,BAF,CBF,390,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040245,549599,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040246,549599,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040247,549599,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040248,549599,FM,BAF,CBF,430,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040249,549599,FM,BAF,CBF,440,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040250,549599,FM,BAF,CBF,450,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040251,549599,FM,BAF,CBF,460,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040252,549600,FM,BAF,CBF,290,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040253,549600,FM,BAF,CBF,300,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040254,549600,FM,BAF,CBF,310,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040255,549600,FM,BAF,CBF,320,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040256,549600,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040257,549600,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040258,549600,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040259,549600,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040260,549600,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040261,549600,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040262,549601,FM,BAF,CBF,350,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040263,549601,FM,BAF,CBF,360,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040264,549601,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040265,549601,FM,BAF,CBF,380,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040266,549601,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040267,549601,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040268,549601,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040269,549601,FM,BAF,CBF,420,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040270,549601,FM,BAF,CBF,430,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040271,549601,FM,BAF,CBF,440,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040272,549602,FM,BAF,CBF,290,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040273,549602,FM,BAF,CBF,300,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040274,549602,FM,BAF,CBF,310,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040275,549602,FM,BAF,CBF,320,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040276,549602,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040277,549602,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040278,549602,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040279,549602,FM,BAF,CBF,360,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040280,549602,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040281,549602,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040282,549603,FM,BAF,CBF,280,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040283,549603,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040284,549603,FM,BAF,CBF,300,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040285,549603,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040286,549603,FM,BAF,CBF,320,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040287,549603,FM,BAF,CBF,330,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040288,549603,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040289,549603,FM,BAF,CBF,350,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040290,549603,FM,BAF,CBF,360,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040291,549603,FM,BAF,CBF,370,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040292,549604,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040293,549604,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040294,549604,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040295,549604,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040296,549604,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040297,549604,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040298,549604,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040299,549604,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040300,549604,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040301,549604,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040302,549605,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040303,549605,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040304,549605,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040305,549605,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040306,549605,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040307,549605,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040308,549605,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040309,549605,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040310,549605,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040311,549605,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040312,549606,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040313,549606,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040314,549606,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040315,549606,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040316,549606,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040317,549606,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040318,549606,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040319,549606,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040320,549606,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040321,549606,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040322,549607,FM,BAF,CBF,350,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040323,549607,FM,BAF,CBF,360,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040324,549607,FM,BAF,CBF,370,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040325,549607,FM,BAF,CBF,380,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040326,549607,FM,BAF,CBF,390,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040327,549607,FM,BAF,CBF,400,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040328,549607,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040329,549607,FM,BAF,CBF,420,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040330,549607,FM,BAF,CBF,430,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040331,549607,FM,BAF,CBF,440,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040332,549608,FM,BAF,CBF,400,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040333,549608,FM,BAF,CBF,410,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040334,549608,FM,BAF,CBF,420,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040335,549608,FM,BAF,CBF,430,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040336,549608,FM,BAF,CBF,440,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040337,549608,FM,BAF,CBF,450,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040338,549608,FM,BAF,CBF,460,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040339,549608,FM,BAF,CBF,470,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040340,549608,FM,BAF,CBF,480,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040341,549608,FM,BAF,CBF,490,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040342,549609,FM,BAF,CBF,240,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040343,549609,FM,BAF,CBF,250,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040344,549609,FM,BAF,CBF,260,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040345,549609,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040346,549609,FM,BAF,CBF,280,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040347,549609,FM,BAF,CBF,290,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040348,549609,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040349,549609,FM,BAF,CBF,310,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040350,549609,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040351,549609,FM,BAF,CBF,330,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040352,549610,FM,BAF,CBF,130,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040353,549610,FM,BAF,CBF,140,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040354,549610,FM,BAF,CBF,150,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040355,549610,FM,BAF,CBF,160,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040356,549610,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040357,549610,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040358,549610,FM,BAF,CBF,190,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040359,549610,FM,BAF,CBF,200,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040360,549610,FM,BAF,CBF,210,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040361,549610,FM,BAF,CBF,220,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040362,549611,FM,BAF,CBF,370,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040363,549611,FM,BAF,CBF,380,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040364,549611,FM,BAF,CBF,390,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040365,549611,FM,BAF,CBF,400,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040366,549611,FM,BAF,CBF,410,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040367,549611,FM,BAF,CBF,420,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040368,549611,FM,BAF,CBF,430,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040369,549611,FM,BAF,CBF,440,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040370,549611,FM,BAF,CBF,450,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040371,549611,FM,BAF,CBF,460,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040372,549612,FM,BAF,CBF,120,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040373,549612,FM,BAF,CBF,130,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040374,549612,FM,BAF,CBF,140,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040375,549612,FM,BAF,CBF,150,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040376,549612,FM,BAF,CBF,160,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040377,549612,FM,BAF,CBF,170,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040378,549612,FM,BAF,CBF,180,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040379,549612,FM,BAF,CBF,190,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040380,549612,FM,BAF,CBF,200,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040381,549612,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040382,549613,FM,BAF,CBF,300,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040383,549613,FM,BAF,CBF,310,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040384,549613,FM,BAF,CBF,320,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040385,549613,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040386,549613,FM,BAF,CBF,340,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040387,549613,FM,BAF,CBF,350,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040388,549613,FM,BAF,CBF,360,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040389,549613,FM,BAF,CBF,370,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040390,549613,FM,BAF,CBF,380,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040391,549613,FM,BAF,CBF,390,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040392,549614,FM,BAF,CBF,260,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040393,549614,FM,BAF,CBF,270,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040394,549614,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040395,549614,FM,BAF,CBF,290,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040396,549614,FM,BAF,CBF,300,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040397,549614,FM,BAF,CBF,310,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040398,549614,FM,BAF,CBF,320,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040399,549614,FM,BAF,CBF,330,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040400,549614,FM,BAF,CBF,340,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040401,549614,FM,BAF,CBF,350,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040402,549615,FM,BAF,CBF,200,6,LengthTotal,,,,0.1001,LengthTotal,,, -4040403,549615,FM,BAF,CBF,210,7,LengthTotal,,,,0.1001,LengthTotal,,, -4040404,549615,FM,BAF,CBF,220,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040405,549615,FM,BAF,CBF,230,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040406,549615,FM,BAF,CBF,240,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040407,549615,FM,BAF,CBF,250,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040408,549615,FM,BAF,CBF,260,10,LengthTotal,,,,0.1001,LengthTotal,,, -4040409,549615,FM,BAF,CBF,270,9,LengthTotal,,,,0.1001,LengthTotal,,, -4040410,549615,FM,BAF,CBF,280,8,LengthTotal,,,,0.1001,LengthTotal,,, -4040411,549615,FM,BAF,CBF,290,7,LengthTotal,,,,0.1001,LengthTotal,,, diff --git a/tests/testthat/h7_v_1_19_26/LandingEvent.csv b/tests/testthat/h7_v_1_19_26/LandingEvent.csv deleted file mode 100644 index a80b2c83..00000000 --- a/tests/testthat/h7_v_1_19_26/LandingEvent.csv +++ /dev/null @@ -1,28 +0,0 @@ -LEid,OSid,FTid,VSid,TEid,SAid,VDid,FOid,SSid,LErecordType,LEencryptedVesselCode,LEstratification,LEsequenceNumber,LEhaulNumber,LEstratumName,LEclustering,LEclusterName,LEsampler,LEmixedTrip,LEcatchReg,LElocode,LElocationName,LElocationType,LEcountry,LEdate,LEtime,LEexclusiveEconomicZoneIndicator,LEarea,LErectangle,LEfisheriesManagementUnit,LEgsaSubarea,LEjurisdictionArea,LEnationalFishingActivity,LEmetier5,LEmetier6,LEgear,LEmeshSize,LEselectionDevice,LEselectionDeviceMeshSize,LEtargetSpecies,LEmitigationDevice,LEgearDimensions,LEnumberTotal,LEnumberSampled,LEselectionProb,LEinclusionProb,LEselectionMethod,LEunitName,LEselectionMethodCluster,LEnumberTotalClusters,LEnumberSampledClusters,LEselectionProbCluster,LEinclusionProbCluster,LEsampled,LEreasonNotSampled,LEnonResponseCollected,LEfullTripAvailable,LEauxiliaryVariableTotal,LEauxiliaryVariableValue,LEauxiliaryVariableName,LEauxiliaryVariableUnit -24751,21002,,,,,428069,,,LE,VDcode_8,N,1,,U,N,U,,N,All,,,,ZW,1965-03-10,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24752,21003,,,,,428067,,,LE,VDcode_6,N,2,,U,N,U,,N,All,,,,ZW,1965-01-28,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24753,21004,,,,,428069,,,LE,VDcode_8,N,3,,U,N,U,,N,All,,,,ZW,1965-01-23,,,27.7.f,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24754,21005,,,,,428068,,,LE,VDcode_7,N,4,,U,N,U,,N,All,,,,ZW,1965-05-25,,,27.7.f,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24755,21006,,,,,428063,,,LE,VDcode_2,N,5,,U,N,U,,N,All,,,,ZW,1965-10-13,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24756,21007,,,,,428067,,,LE,VDcode_6,N,6,,U,N,U,,N,All,,,,ZW,1965-02-12,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24757,21008,,,,,428069,,,LE,VDcode_8,N,7,,U,N,U,,N,All,,,,ZW,1965-08-16,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24758,21009,,,,,428067,,,LE,VDcode_6,N,8,,U,N,U,,N,All,,,,ZW,1965-04-18,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24759,21010,,,,,428066,,,LE,VDcode_5,N,9,,U,N,U,,N,All,,,,ZW,1965-06-06,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24760,21011,,,,,428070,,,LE,VDcode_9,N,10,,U,N,U,,N,All,,,,ZW,1965-08-23,,,27.7.f,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24761,21012,,,,,428068,,,LE,VDcode_7,N,11,,U,N,U,,N,All,,,,ZW,1965-02-20,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24762,21013,,,,,428063,,,LE,VDcode_2,N,12,,U,N,U,,N,All,,,,ZW,1965-03-15,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24763,21014,,,,,428070,,,LE,VDcode_9,N,13,,U,N,U,,N,All,,,,ZW,1965-11-13,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24764,21015,,,,,428066,,,LE,VDcode_5,N,14,,U,N,U,,N,All,,,,ZW,1965-08-03,,,27.7.f,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24765,21016,,,,,428069,,,LE,VDcode_8,N,15,,U,N,U,,N,All,,,,ZW,1965-05-06,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24766,21017,,,,,428068,,,LE,VDcode_7,N,16,,U,N,U,,N,All,,,,ZW,1965-06-20,,,27.7.f,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24767,21018,,,,,428070,,,LE,VDcode_9,N,17,,U,N,U,,N,All,,,,ZW,1965-07-29,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24768,21019,,,,,428070,,,LE,VDcode_9,N,18,,U,N,U,,N,All,,,,ZW,1965-02-22,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24769,21020,,,,,428064,,,LE,VDcode_3,N,19,,U,N,U,,N,All,,,,ZW,1965-07-16,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24770,21021,,,,,428066,,,LE,VDcode_5,N,20,,U,N,U,,N,All,,,,ZW,1965-11-15,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24771,21022,,,,,428062,,,LE,VDcode_1,N,21,,U,N,U,,N,All,,,,ZW,1965-05-28,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24772,21023,,,,,428068,,,LE,VDcode_7,N,22,,U,N,U,,N,All,,,,ZW,1965-07-18,,,27.7.f,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24773,21024,,,,,428067,,,LE,VDcode_6,N,23,,U,N,U,,N,All,,,,ZW,1965-06-24,,,27.7.f,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24774,21025,,,,,428067,,,LE,VDcode_6,N,24,,U,N,U,,N,All,,,,ZW,1965-01-03,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24775,21026,,,,,428064,,,LE,VDcode_3,N,25,,U,N,U,,N,All,,,,ZW,1965-11-04,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24776,21027,,,,,428064,,,LE,VDcode_3,N,26,,U,N,U,,N,All,,,,ZW,1965-01-04,,,27.7.f,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, -24777,21028,,,,,428063,,,LE,VDcode_2,N,27,,U,N,U,,N,All,,,,ZW,1965-04-09,,,27.7.f,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,,AttAcoustic,,2,1,,,SRSWR,LE_unit_1,,,,,,Y,,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/OnshoreEvent.csv b/tests/testthat/h7_v_1_19_26/OnshoreEvent.csv deleted file mode 100644 index ecfcb2eb..00000000 --- a/tests/testthat/h7_v_1_19_26/OnshoreEvent.csv +++ /dev/null @@ -1,28 +0,0 @@ -OSid,SDid,OSrecordType,OSsequenceNumber,OSstratification,OSlocode,OSlocationName,OSlocationType,OSsamplingDate,OSsamplingTime,OSstratumName,OSclustering,OSclusterName,OSsampler,OStimeUnit,OStimeValue,OSnumberTotal,OSnumberSampled,OSselectionProb,OSinclusionProb,OSselectionMethod,OSunitName,OSselectionMethodCluster,OSnumberTotalClusters,OSnumberSampledClusters,OSselectionProbCluster,OSinclusionProbCluster,OSsampled,OSreasonNotSampled,OSnonResponseCollected,OSauxiliaryVariableTotal,OSauxiliaryVariableValue,OSauxiliaryVariableName,OSauxiliaryVariableUnit -21002,5441,OS,1,Y,ZWMJW,1234567891,,1965-11-11,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21003,5441,OS,2,Y,ZWUTA,1234567892,,1965-09-20,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21004,5441,OS,3,Y,ZWBZH,1234567893,,1965-12-01,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21005,5441,OS,4,Y,ZWBUQ,1234567894,,1965-09-12,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21006,5441,OS,5,Y,ZWHWN,1234567895,,1965-08-09,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21007,5441,OS,6,Y,ZWHRE,1234567896,,1965-01-25,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21008,5441,OS,7,Y,ZWGWE,1234567897,,1965-04-27,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21009,5441,OS,8,Y,ZWMJW,1234567898,,1965-04-09,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21010,5441,OS,9,Y,ZWMVZ,1234567899,,1965-03-27,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, -21011,5442,OS,1,Y,ZWHWN,12345678910,,1965-09-19,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21012,5442,OS,2,Y,ZWUTA,12345678911,,1965-07-28,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21013,5442,OS,3,Y,ZWGWE,12345678912,,1965-10-08,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21014,5442,OS,4,Y,ZWBUQ,12345678913,,1965-11-15,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21015,5442,OS,5,Y,ZWWKI,12345678914,,1965-04-02,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21016,5442,OS,6,Y,ZWKAB,12345678915,,1965-03-12,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21017,5442,OS,7,Y,ZWCHJ,12345678916,,1965-04-21,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21018,5442,OS,8,Y,ZWCHJ,12345678917,,1965-03-22,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21019,5442,OS,9,Y,ZWVFA,12345678918,,1965-06-28,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, -21020,5443,OS,1,Y,ZWWKI,12345678919,,1965-04-08,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_1,,,,,,Y,,,,,, -21021,5443,OS,2,Y,ZWBFO,12345678920,,1965-03-22,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_2,,,,,,Y,,,,,, -21022,5443,OS,3,Y,ZWHWN,12345678921,,1965-03-20,,OS_stratum1,N,U,,,,100,3,,,SRSWR,OS_unit_3,,,,,,Y,,,,,, -21023,5443,OS,4,Y,ZWCHJ,12345678922,,1965-11-18,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_4,,,,,,Y,,,,,, -21024,5443,OS,5,Y,ZWBUQ,12345678923,,1965-08-02,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_5,,,,,,Y,,,,,, -21025,5443,OS,6,Y,ZWBZH,12345678924,,1965-05-08,,OS_stratum2,N,U,,,,100,3,,,SRSWR,OS_unit_6,,,,,,Y,,,,,, -21026,5443,OS,7,Y,ZWCHJ,12345678925,,1965-03-21,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_7,,,,,,Y,,,,,, -21027,5443,OS,8,Y,ZWCHJ,12345678926,,1965-02-25,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_8,,,,,,Y,,,,,, -21028,5443,OS,9,Y,ZWBFO,12345678927,,1965-09-03,,OS_stratum3,N,U,,,,100,3,,,SRSWR,OS_unit_9,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/Sample.csv b/tests/testthat/h7_v_1_19_26/Sample.csv deleted file mode 100644 index d9a4c202..00000000 --- a/tests/testthat/h7_v_1_19_26/Sample.csv +++ /dev/null @@ -1,28 +0,0 @@ -SAid,SSid,LEid,SArecordType,SAsequenceNumber,SAparentSequenceNumber,SAstratification,SAstratumName,SAspeciesCode,SAspeciesCodeFAO,SAstateOfProcessing,SApresentation,SAspecimensState,SAcatchCategory,SAlandingCategory,SAcommSizeCatScale,SAcommSizeCat,SAsex,SAexclusiveEconomicZoneIndicator,SAarea,SArectangle,SAfisheriesManagementUnit,SAgsaSubarea,SAjurisdictionArea,SAnationalFishingActivity,SAmetier5,SAmetier6,SAgear,SAmeshSize,SAselectionDevice,SAselectionDeviceMeshSize,SAunitType,SAtotalWeightLive,SAsampleWeightLive,SAnumberTotal,SAnumberSampled,SAselectionProb,SAinclusionProb,SAselectionMethod,SAunitName,SAlowerHierarchy,SAsampler,SAsampled,SAreasonNotSampled,SAnonResponseCollected,SAreasonNotSampledFM,SAreasonNotSampledBV,SAtotalWeightMeasured,SAsampleWeightMeasured,SAconversionFactorMeasLive,SAauxiliaryVariableTotal,SAauxiliaryVariableValue,SAauxiliaryVariableName,SAauxiliaryVariableUnit -549589,225791,,SA,1,,N,U,100930,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549590,225792,,SA,2,,N,U,1016062,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549591,225793,,SA,3,,N,U,101170,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549592,225794,,SA,4,,N,U,101167,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549593,225795,,SA,5,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549594,225796,,SA,6,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549595,225797,,SA,7,,N,U,1019159,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549596,225798,,SA,8,,N,U,101174,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_MOL_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549597,225799,,SA,9,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549598,225800,,SA,10,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,PTM_SPF_>0_0_0,PTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549599,225801,,SA,11,,N,U,100684,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549600,225802,,SA,12,,N,U,100782,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549601,225803,,SA,13,,N,U,101380,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549602,225804,,SA,14,,N,U,100782,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549603,225805,,SA,15,,N,U,101,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549604,225806,,SA,16,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,LLS_FIF_0_0_0,LLS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549605,225807,,SA,17,,N,U,101172,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549606,225808,,SA,18,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549607,225809,,SA,19,,N,U,101380,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549608,225810,,SA,20,,N,U,101800,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTM_LPF_>0_0_0,OTM,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549609,225811,,SA,21,,N,U,100930,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549610,225812,,SA,22,,N,U,101798,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,FPO_CRU_>0_0_0,FPO,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549611,225813,,SA,23,,N,U,100684,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549612,225814,,SA,24,,N,U,101519,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,OTB_DEF_70-99_0_0,OTB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549613,225815,,SA,25,,N,U,101417,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549614,225816,,SA,26,,N,U,101013,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,DRB_MOL_>0_0_0,DRB,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, -549615,225817,,SA,27,,N,U,1016062,,BAF,CBF,AliveHighProbSurvival,Lan,HuC,,,F,,27.7.a,,,NotApplicable,,,,MIS_MIS_0_0_0,MIS,,,,Basket,,,2.0,1.0,,,SRSWR,SA_unit_1,A,,Y,,,,,,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/SamplingDetails.csv b/tests/testthat/h7_v_1_19_26/SamplingDetails.csv deleted file mode 100644 index 504c35ce..00000000 --- a/tests/testthat/h7_v_1_19_26/SamplingDetails.csv +++ /dev/null @@ -1,4 +0,0 @@ -SDid,DEid,SDrecordType,SDcountry,SDinstitution -5441,5409,SD,ZW,1051 -5442,5410,SD,ZW,1051 -5443,5411,SD,ZW,1051 diff --git a/tests/testthat/h7_v_1_19_26/SpeciesList.csv b/tests/testthat/h7_v_1_19_26/SpeciesList.csv deleted file mode 100644 index 3e8e727d..00000000 --- a/tests/testthat/h7_v_1_19_26/SpeciesList.csv +++ /dev/null @@ -1,171 +0,0 @@ -SLid,SLrecordType,SLcountry,SLinstitute,SLspeciesListName,SLyear,SLcatchFraction,SLcommercialTaxon,SLspeciesCode -34533,SL,ZW,396,testString1,1965,Catch,131649,1016062 -34591,SL,ZW,1570,testString19,1965,Lan,156103,273146 -34605,SL,ZW,5284,testString13,1965,Lan,125956,125311 -34614,SL,ZW,714,testString7,1965,Catch,1056519,126714 -34637,SL,ZW,583,testString2,1965,Lan,107579,283150 -34657,SL,ZW,1000,testString7,1965,Dis,236488,105814 -34832,SL,ZW,249,testString1,1965,Dis,272087,117302 -34870,SL,ZW,1351,testString13,1965,Catch,158913,107268 -34990,SL,ZW,542,testString14,1965,Catch,286092,159040 -35024,SL,ZW,583,testString6,1965,Dis,105730,154210 -35031,SL,ZW,1478,testString5,1965,Lan,286092,136979 -35054,SL,ZW,1478,testString17,1965,Dis,123878,290118 -35200,SL,ZW,1622,testString13,1965,Dis,132102,127151 -35206,SL,ZW,3288,testString3,1965,Catch,137113,151520 -35278,SL,ZW,583,testString16,1965,Catch,127141,154165 -35369,SL,ZW,2135,testString2,1965,Catch,212611,126497 -35390,SL,ZW,5014,testString6,1965,Catch,275008,105814 -35421,SL,ZW,2135,testString18,1965,Lan,158291,126736 -35454,SL,ZW,1051,testString3,1965,Dis,119916,127405 -35570,SL,ZW,583,testString11,1965,Lan,271684,127320 -35680,SL,ZW,714,testString19,1965,Catch,127271,236462 -35853,SL,ZW,2135,testString14,1965,Dis,131629,159097 -36036,SL,ZW,1570,testString4,1965,Lan,159168,159023 -36081,SL,ZW,3288,testString11,1965,Catch,125604,125895 -36087,SL,ZW,353,testString6,1965,Lan,141443,126749 -36120,SL,ZW,353,testString15,1965,Dis,117962,140301 -36142,SL,ZW,3140,testString14,1965,Lan,1056510,127247 -36182,SL,ZW,353,testString6,1965,Dis,1019159,138483 -36247,SL,ZW,353,testString6,1965,Lan,137080,125277 -36282,SL,ZW,2195,testString5,1965,Catch,298167,131591 -36307,SL,ZW,1385,testString2,1965,Catch,137233,126175 -36411,SL,ZW,1385,testString11,1965,Lan,370776,126751 -36543,SL,ZW,28,testString17,1965,Catch,125802,107345 -36551,SL,ZW,3857,testString14,1965,Catch,154210,126733 -36564,SL,ZW,1340,testString2,1965,Catch,126858,1383416 -36581,SL,ZW,194,testString6,1965,Dis,989153,853816 -36642,SL,ZW,194,testString13,1965,Catch,234519,275247 -36656,SL,ZW,3857,testString4,1965,Catch,128498,445503 -36727,SL,ZW,1340,testString10,1965,Dis,125285,127337 -36731,SL,ZW,583,testString15,1965,Lan,137086,325305 -36754,SL,ZW,1000,testString18,1965,Dis,127222,286574 -36787,SL,ZW,249,testString17,1965,Dis,105869,105901 -36804,SL,ZW,1340,testString4,1965,Catch,105711,106393 -36842,SL,ZW,5284,testString7,1965,Lan,139429,125603 -36870,SL,ZW,396,testString18,1965,Dis,137095,125794 -37017,SL,ZW,3140,testString19,1965,Dis,137172,126792 -37038,SL,ZW,2135,testString1,1965,Catch,126431,140624 -37072,SL,ZW,583,testString12,1965,Catch,126178,127057 -37111,SL,ZW,396,testString15,1965,Catch,164811,273962 -37145,SL,ZW,5014,testString7,1965,Dis,10295,125700 -37161,SL,ZW,1340,testString11,1965,Catch,254316,125581 -37178,SL,ZW,353,testString7,1965,Lan,140733,275830 -37207,SL,ZW,714,testString18,1965,Lan,275008,137167 -37322,SL,ZW,1000,testString11,1965,Lan,343897,153087 -37408,SL,ZW,583,testString2,1965,Lan,137179,158326 -37434,SL,ZW,353,testString11,1965,Dis,126950,275180 -37517,SL,ZW,5014,testString15,1965,Catch,159177,137182 -37606,SL,ZW,2135,testString1,1965,Catch,126417,126621 -37609,SL,ZW,5284,testString17,1965,Catch,514087,159197 -37611,SL,ZW,249,testString6,1965,Dis,135304,138878 -37662,SL,ZW,194,testString1,1965,Dis,181381,125355 -37684,SL,ZW,1570,testString4,1965,Lan,127379,126328 -37703,SL,ZW,5284,testString13,1965,Catch,468742,159172 -37958,SL,ZW,1000,testString10,1965,Dis,137094,126580 -37972,SL,ZW,583,testString19,1965,Lan,137189,169682 -38021,SL,ZW,1051,testString11,1965,Dis,137084,195837 -38044,SL,ZW,5284,testString13,1965,Dis,170671,103308 -38120,SL,ZW,1385,testString5,1965,Lan,126291,106847 -38156,SL,ZW,1444,testString6,1965,Dis,370776,125903 -38163,SL,ZW,353,testString1,1965,Dis,113,154343 -38184,SL,ZW,1351,testString6,1965,Catch,137071,137793 -38211,SL,ZW,3857,testString2,1965,Dis,126303,141548 -38253,SL,ZW,1351,testString17,1965,Lan,105913,132063 -38420,SL,ZW,353,testString15,1965,Dis,254993,126738 -38457,SL,ZW,1444,testString14,1965,Dis,368412,137160 -38486,SL,ZW,353,testString1,1965,Dis,126349,125409 -38489,SL,ZW,1622,testString11,1965,Catch,107275,22612 -38497,SL,ZW,1385,testString13,1965,Dis,110671,137074 -38546,SL,ZW,249,testString17,1965,Dis,126415,127138 -38660,SL,ZW,542,testString10,1965,Lan,126153,127334 -38718,SL,ZW,1340,testString2,1965,Catch,126707,125888 -38750,SL,ZW,1622,testString14,1965,Catch,151802,127160 -38786,SL,ZW,3857,testString18,1965,Lan,989619,126642 -38840,SL,ZW,1051,testString5,1965,Catch,271743,105841 -38996,SL,ZW,1051,testString3,1965,Lan,137138,123803 -39038,SL,ZW,1051,testString15,1965,Catch,137174,126783 -39076,SL,ZW,3140,testString16,1965,Lan,274304,126160 -39114,SL,ZW,1574,testString15,1965,Dis,137111,126307 -39150,SL,ZW,1444,testString11,1965,Dis,134214,110678 -39314,SL,ZW,1478,testString10,1965,Dis,103331,140658 -39533,SL,ZW,3857,testString7,1965,Dis,163921,127060 -39562,SL,ZW,1444,testString13,1965,Dis,137089,127203 -39564,SL,ZW,28,testString10,1965,Dis,125493,125815 -39570,SL,ZW,1622,testString16,1965,Catch,107094,123083 -39596,SL,ZW,1351,testString15,1965,Catch,154298,125317 -39648,SL,ZW,542,testString15,1965,Lan,275247,135191 -47806,SL,ZW,4484,WGRDBES-EST_TEST_Pckg_survey_data_apistrat_H1,1965,Lan,107254,107254 -47864,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_agsrs_H1,1965,Lan,107254,107254 -47865,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_agstrat_H1,1965,Lan,107254,107254 -47866,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_gpa_H1,1965,Lan,107254,107254 -47867,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_coots_H1,1965,Lan,107254,107254 -47868,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_schools_H1,1965,Lan,107254,107254 -47869,SL,ZW,4484,WGRDBES-EST_TEST_1_Pckg_SDAResources_algebra_H1,1965,Lan,107254,107254 -47870,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100684,100684 -47871,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100782,100782 -47872,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,100930,100930 -47873,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101,101 -47874,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101013,101013 -47875,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101167,101167 -47876,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101170,101170 -47877,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101172,101172 -47878,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101174,101174 -47879,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101380,101380 -47880,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101417,101417 -47881,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101519,101519 -47882,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1015724,1015724 -47883,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1016062,1016062 -47884,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101798,101798 -47885,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101800,101800 -47886,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,101804,101804 -47887,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,1019159,1019159 -47888,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,10193,10193 -47889,SL,ZW,1051,ZW_1965_SpeciesList,1965,Lan,10194,10194 -31853,SL,ZW,194,testString17,1965,Catch,136980,126029 -31886,SL,ZW,714,testString13,1965,Lan,131950,137793 -31894,SL,ZW,2135,testString19,1965,Catch,125815,126361 -31935,SL,ZW,5284,testString1,1965,Dis,105693,125317 -31986,SL,ZW,353,testString1,1965,Lan,105876,139472 -32238,SL,ZW,3288,testString3,1965,Catch,127022,107451 -32252,SL,ZW,583,testString6,1965,Lan,126029,125613 -32257,SL,ZW,28,testString11,1965,Lan,125293,272698 -32392,SL,ZW,1622,testString13,1965,Dis,293252,127101 -32396,SL,ZW,4484,testString4,1965,Catch,128490,126698 -32446,SL,ZW,1444,testString17,1965,Dis,126227,342104 -32509,SL,ZW,542,testString17,1965,Catch,107381,101417 -32548,SL,ZW,1385,testString6,1965,Dis,289447,137107 -32628,SL,ZW,1000,testString13,1965,Dis,105839,125284 -32766,SL,ZW,714,testString18,1965,Lan,126171,140625 -32769,SL,ZW,1340,testString7,1965,Catch,368412,128498 -32839,SL,ZW,353,testString11,1965,Dis,153063,125831 -32912,SL,ZW,1570,testString19,1965,Catch,126534,283935 -32917,SL,ZW,542,testString19,1965,Lan,158796,134034 -33062,SL,ZW,4484,testString4,1965,Dis,290178,127055 -33138,SL,ZW,4484,testString15,1965,Lan,127082,137203 -33155,SL,ZW,714,testString2,1965,Dis,106731,111374 -33201,SL,ZW,3288,testString15,1965,Lan,128497,126740 -33218,SL,ZW,353,testString3,1965,Dis,137131,107044 -33243,SL,ZW,714,testString5,1965,Dis,154659,140625 -33284,SL,ZW,2195,testString11,1965,Lan,158559,137113 -33333,SL,ZW,1385,testString5,1965,Dis,100930,137134 -33388,SL,ZW,1444,testString5,1965,Lan,125819,159115 -33395,SL,ZW,3288,testString11,1965,Lan,126328,127147 -33452,SL,ZW,1351,testString17,1965,Dis,107157,125357 -33486,SL,ZW,1000,testString15,1965,Dis,465358,126460 -33505,SL,ZW,2195,testString4,1965,Lan,126913,325342 -33575,SL,ZW,3140,testString1,1965,Dis,135171,117212 -33576,SL,ZW,5284,testString19,1965,Lan,127204,558 -33670,SL,ZW,1385,testString19,1965,Lan,154165,127332 -33676,SL,ZW,2195,testString10,1965,Catch,133205,134034 -33709,SL,ZW,1000,testString14,1965,Dis,138122,105914 -33747,SL,ZW,1570,testString2,1965,Dis,105881,125306 -33758,SL,ZW,28,testString19,1965,Dis,127059,125936 -33760,SL,ZW,583,testString5,1965,Dis,125739,125915 -33927,SL,ZW,1622,testString19,1965,Catch,140112,127251 -34086,SL,ZW,1351,testString1,1965,Catch,125603,126977 -34155,SL,ZW,194,testString14,1965,Lan,159176,567480 -34209,SL,ZW,1574,testString4,1965,Dis,151523,127405 -34216,SL,ZW,5014,testString7,1965,Catch,126632,127246 -34389,SL,ZW,3857,testString2,1965,Dis,254991,125324 -34521,SL,ZW,1444,testString14,1965,Catch,105896,101172 diff --git a/tests/testthat/h7_v_1_19_26/SpeciesSelection.csv b/tests/testthat/h7_v_1_19_26/SpeciesSelection.csv deleted file mode 100644 index a1e0df79..00000000 --- a/tests/testthat/h7_v_1_19_26/SpeciesSelection.csv +++ /dev/null @@ -1,28 +0,0 @@ -SSid,LEid,FOid,TEid,FTid,SLid,OSid,SSrecordType,SSsequenceNumber,SSstratification,SSstratumName,SSclustering,SSclusterName,SSobservationActivityType,SScatchFraction,SSobservationType,SSsampler,SSspeciesListName,SSuseForCalculateZero,SStimeTotal,SStimeSampled,SSnumberTotal,SSnumberSampled,SSselectionProb,SSinclusionProb,SSselectionMethod,SSunitName,SSselectionMethodCluster,SSnumberTotalClusters,SSnumberSampledClusters,SSselectionProbCluster,SSinclusionProbCluster,SSsampled,SSreasonNotSampled,SSnonResponseCollected,SSauxiliaryVariableTotal,SSauxiliaryVariableValue,SSauxiliaryVariableName,SSauxiliaryVariableUnit -225791,24751,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225792,24752,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225793,24753,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225794,24754,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225795,24755,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225796,24756,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225797,24757,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225798,24758,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225799,24759,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225800,24760,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225801,24761,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225802,24762,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225803,24763,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225804,24764,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225805,24765,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225806,24766,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225807,24767,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225808,24768,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225809,24769,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225810,24770,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225811,24771,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225812,24772,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225813,24773,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225814,24774,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225815,24775,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225816,24776,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, -225817,24777,,,,47870,,SS,1,N,U,N,U,Drop,Lan,Imagery,,ZW_1965_SpeciesList,N,,,4,1,,,SRSWR,SS_unit_1,,,,,,Y,,,,,, diff --git a/tests/testthat/h7_v_1_19_26/VesselDetails.csv b/tests/testthat/h7_v_1_19_26/VesselDetails.csv deleted file mode 100644 index 8c0a9a6c..00000000 --- a/tests/testthat/h7_v_1_19_26/VesselDetails.csv +++ /dev/null @@ -1,312 +0,0 @@ -VDid,VDrecordType,VDencryptedVesselCode,VDyear,VDcountry,VDhomePort,VDflagCountry,VDlength,VDlengthCategory,VDpower,VDtonnage,VDtonUnit -415656,VD,testString6,1965,ZW,INMYQ,EH,,VL1518,1461,4011,GT -427762,VD,26820,1965,ZW,,ZW,14.00,VL1215,294,24,GT -427763,VD,43412,1965,ZW,,ZW,19.00,VL1824,400,110,GT -427764,VD,42060,1965,ZW,,ZW,18.00,VL1824,386,71,GT -427765,VD,46770,1965,ZW,,ZW,17.00,VL1518,339,62,GT -427766,VD,50796,1965,ZW,,ZW,16.00,VL1518,235,33,GT -427767,VD,43048,1965,ZW,,ZW,15.00,VL1215,245,36,GT -427768,VD,50708,1965,ZW,,ZW,24.00,VL1824,441,149,GT -427769,VD,50654,1965,ZW,,ZW,17.00,VL1518,367,68,GT -427770,VD,51104,1965,ZW,,ZW,12.00,VL1215,165,19,GT -427771,VD,32376,1965,ZW,,ZW,35.00,VL2440,735,358,GT -427772,VD,31356,1965,ZW,,ZW,32.00,VL2440,596,273,GT -427773,VD,17418,1965,ZW,,ZW,15.00,VL1215,280,25,GT -427774,VD,50358,1965,ZW,,ZW,15.00,VL1215,280,25,GT -427775,VD,51358,1965,ZW,,ZW,14.00,VL1215,175,19,GT -427776,VD,51168,1965,ZW,,ZW,20.00,VL1824,258,86,GT -427777,VD,52004,1965,ZW,,ZW,19.00,VL1824,345,146,GT -427778,VD,38728,1965,ZW,,ZW,19.00,VL1824,345,146,GT -427779,VD,34008,1965,ZW,,ZW,15.00,VL1215,375,55,GT -427780,VD,23088,1965,ZW,,ZW,15.00,VL1518,257,38,GT -427781,VD,50348,1965,ZW,,ZW,10.00,VL1012,66,11,GT -427782,VD,41920,1965,ZW,,ZW,15.00,VL1215,293,43,GT -427783,VD,33640,1965,ZW,,ZW,10.00,VL0810,92,8,GT -427784,VD,45906,1965,ZW,,ZW,7.00,VL0608,15,1,GT -427785,VD,47050,1965,ZW,,ZW,8.00,VL0608,22,10,GT -427786,VD,19344,1965,ZW,,ZW,7.00,VL0608,25,,GT -427787,VD,50248,1965,ZW,,ZW,9.00,VL0810,62,5,GT -427788,VD,52332,1965,ZW,,ZW,8.00,VL0810,26,2,GT -427789,VD,51882,1965,ZW,,ZW,8.00,VL0810,29,,GT -427790,VD,50268,1965,ZW,,ZW,7.00,VL0608,18,1,GT -427791,VD,20204,1965,ZW,,ZW,9.00,VL0810,66,4,GT -427792,VD,51364,1965,ZW,,ZW,8.00,VL0810,55,,GT -427793,VD,47862,1965,ZW,,ZW,10.00,VL0810,63,10,GT -427794,VD,34554,1965,ZW,,ZW,8.00,VL0810,59,2,GT -427795,VD,51626,1965,ZW,,ZW,9.00,VL0810,90,3,GT -427796,VD,41428,1965,ZW,,ZW,9.00,VL0810,177,3,GT -427797,VD,31426,1965,ZW,,ZW,11.00,VL1012,81,8,GT -427798,VD,46230,1965,ZW,,ZW,9.00,VL0810,61,2,GT -427799,VD,50870,1965,ZW,,ZW,10.00,VL0810,79,8,GT -427800,VD,50278,1965,ZW,,ZW,11.00,VL1012,60,7,GT -427801,VD,38250,1965,ZW,,ZW,10.00,VL0810,22,8,GT -427802,VD,15212,1965,ZW,,ZW,10.00,VL1012,78,16,GT -427803,VD,42620,1965,ZW,,ZW,10.00,VL0810,22,8,GT -427804,VD,20902,1965,ZW,,ZW,11.00,VL1012,61,9,GT -427805,VD,51342,1965,ZW,,ZW,8.00,VL0810,31,3,GT -427806,VD,50214,1965,ZW,,ZW,3.00,VL0006,18,,GT -427807,VD,31238,1965,ZW,,ZW,6.00,VL0608,7,,GT -427808,VD,33216,1965,ZW,,ZW,9.00,VL0810,66,3,GT -427809,VD,52644,1965,ZW,,ZW,6.00,VL0608,6,,GT -427810,VD,40420,1965,ZW,,ZW,9.00,VL0810,22,4,GT -427811,VD,46286,1965,ZW,,ZW,10.00,VL0810,88,6,GT -427812,VD,51920,1965,ZW,,ZW,7.00,VL0608,13,1,GT -427813,VD,41124,1965,ZW,,ZW,8.00,VL0608,55,,GT -427814,VD,33962,1965,ZW,,ZW,7.00,VL0608,4,,GT -427815,VD,51144,1965,ZW,,ZW,7.00,VL0608,7,1,GT -427816,VD,51402,1965,ZW,,ZW,6.00,VL0608,16,,GT -427817,VD,20646,1965,ZW,,ZW,9.00,VL0810,62,6,GT -427818,VD,50702,1965,ZW,,ZW,8.00,VL0810,37,5,GT -427819,VD,51872,1965,ZW,,ZW,12.00,VL1012,35,10,GT -427820,VD,46664,1965,ZW,,ZW,6.00,VL0608,9,,GT -427821,VD,20076,1965,ZW,,ZW,6.00,VL0608,7,,GT -427822,VD,52360,1965,ZW,,ZW,7.00,VL0608,15,2,GT -427823,VD,46362,1965,ZW,,ZW,10.00,VL0810,185,10,GT -427824,VD,50552,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427825,VD,52098,1965,ZW,,ZW,10.00,VL1012,18,9,GT -427826,VD,40470,1965,ZW,,ZW,9.00,VL0810,11,3,GT -427827,VD,22260,1965,ZW,,ZW,9.00,VL0810,53,6,GT -427828,VD,52368,1965,ZW,,ZW,10.00,VL1012,59,12,GT -427829,VD,44578,1965,ZW,,ZW,10.00,VL0810,96,4,GT -427830,VD,42616,1965,ZW,,ZW,7.00,VL0608,43,,GT -427831,VD,43656,1965,ZW,,ZW,10.00,VL0810,160,11,GT -427832,VD,51276,1965,ZW,,ZW,7.00,VL0608,22,1,GT -427833,VD,20580,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427834,VD,46066,1965,ZW,,ZW,8.00,VL0608,18,1,GT -427835,VD,43830,1965,ZW,,ZW,7.00,VL0608,33,1,GT -427836,VD,44600,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427837,VD,38744,1965,ZW,,ZW,12.00,VL1012,184,19,GT -427838,VD,24994,1965,ZW,,ZW,9.00,VL0810,35,4,GT -427839,VD,52316,1965,ZW,,ZW,7.00,VL0608,26,4,GT -427840,VD,46930,1965,ZW,,ZW,7.00,VL0608,26,4,GT -427841,VD,50648,1965,ZW,,ZW,11.00,VL1012,147,7,GT -427842,VD,29824,1965,ZW,,ZW,11.00,VL1012,110,12,GT -427843,VD,40866,1965,ZW,,ZW,10.00,VL0810,112,9,GT -427844,VD,52002,1965,ZW,,ZW,9.00,VL0810,71,4,GT -427845,VD,15672,1965,ZW,,ZW,6.00,VL0006,9,,GT -427846,VD,51740,1965,ZW,,ZW,10.00,VL1012,66,6,GT -427847,VD,41966,1965,ZW,,ZW,6.00,VL0608,16,,GT -427848,VD,34544,1965,ZW,,ZW,9.00,VL0810,154,3,GT -427849,VD,43536,1965,ZW,,ZW,6.00,VL0608,20,,GT -427850,VD,31036,1965,ZW,,ZW,9.00,VL0810,59,4,GT -427851,VD,50714,1965,ZW,,ZW,6.00,VL0608,9,1,GT -427852,VD,27462,1965,ZW,,ZW,10.00,VL0810,184,7,GT -427853,VD,19462,1965,ZW,,ZW,10.00,VL0810,50,5,GT -427854,VD,39520,1965,ZW,,ZW,9.00,VL0810,59,7,GT -427855,VD,25202,1965,ZW,,ZW,7.00,VL0608,26,1,GT -427856,VD,52130,1965,ZW,,ZW,7.00,VL0608,30,2,GT -427857,VD,52318,1965,ZW,,ZW,7.00,VL0608,16,2,GT -427858,VD,44524,1965,ZW,,ZW,9.00,VL0810,59,4,GT -427859,VD,45260,1965,ZW,,ZW,9.00,VL0810,54,5,GT -427860,VD,32464,1965,ZW,,ZW,10.00,VL1012,88,5,GT -427861,VD,29208,1965,ZW,,ZW,7.00,VL0608,46,1,GT -427862,VD,38570,1965,ZW,,ZW,10.00,VL1012,141,7,GT -427863,VD,51540,1965,ZW,,ZW,8.00,VL0608,53,2,GT -427864,VD,42928,1965,ZW,,ZW,11.00,VL1012,93,14,GT -427865,VD,31828,1965,ZW,,ZW,10.00,VL0810,99,6,GT -427866,VD,39066,1965,ZW,,ZW,9.00,VL0810,96,2,GT -427867,VD,41574,1965,ZW,,ZW,9.00,VL0810,22,6,GT -427868,VD,28864,1965,ZW,,ZW,7.00,VL0608,16,,GT -427869,VD,29556,1965,ZW,,ZW,9.00,VL0810,39,4,GT -427870,VD,46450,1965,ZW,,ZW,8.00,VL0608,55,3,GT -427871,VD,44060,1965,ZW,,ZW,9.00,VL0810,66,6,GT -427872,VD,26654,1965,ZW,,ZW,11.00,VL1012,109,14,GT -427873,VD,45832,1965,ZW,,ZW,7.00,VL0608,44,1,GT -427874,VD,18810,1965,ZW,,ZW,9.00,VL0810,74,6,GT -427875,VD,29566,1965,ZW,,ZW,8.00,VL0810,59,3,GT -427876,VD,40948,1965,ZW,,ZW,10.00,VL1012,66,6,GT -427877,VD,42184,1965,ZW,,ZW,8.00,VL0810,24,3,GT -427878,VD,50134,1965,ZW,,ZW,10.00,VL0810,101,3,GT -427879,VD,51890,1965,ZW,,ZW,11.00,VL1012,110,8,GT -427880,VD,43208,1965,ZW,,ZW,12.00,VL1012,141,11,GT -427881,VD,47182,1965,ZW,,ZW,11.00,VL1012,88,7,GT -427882,VD,51476,1965,ZW,,ZW,11.00,VL1012,81,,GT -427883,VD,51036,1965,ZW,,ZW,8.00,VL0608,22,2,GT -427884,VD,47290,1965,ZW,,ZW,6.00,VL0608,13,,GT -427885,VD,43882,1965,ZW,,ZW,7.00,VL0608,29,1,GT -427886,VD,28846,1965,ZW,,ZW,12.00,VL1012,184,7,GT -427887,VD,50164,1965,ZW,,ZW,7.00,VL0608,38,1,GT -427888,VD,20166,1965,ZW,,ZW,10.00,VL0810,53,6,GT -427889,VD,47484,1965,ZW,,ZW,12.00,VL1012,88,12,GT -427890,VD,43946,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427891,VD,39562,1965,ZW,,ZW,8.00,VL0608,32,3,GT -427892,VD,46988,1965,ZW,,ZW,8.00,VL0810,26,2,GT -427893,VD,23406,1965,ZW,,ZW,7.00,VL0608,24,1,GT -427894,VD,30682,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427895,VD,50668,1965,ZW,,ZW,11.00,VL1012,60,12,GT -427896,VD,26254,1965,ZW,,ZW,11.00,VL1012,59,6,GT -427897,VD,39802,1965,ZW,,ZW,7.00,VL0608,14,,GT -427898,VD,51768,1965,ZW,,ZW,12.00,VL1012,261,33,GT -427899,VD,39828,1965,ZW,,ZW,12.00,VL1012,110,13,GT -427900,VD,50812,1965,ZW,,ZW,10.00,VL0810,147,5,GT -427901,VD,42704,1965,ZW,,ZW,8.00,VL0608,22,2,GT -427902,VD,40820,1965,ZW,,ZW,9.00,VL0810,67,6,GT -427903,VD,47446,1965,ZW,,ZW,9.00,VL0810,78,9,GT -427904,VD,40476,1965,ZW,,ZW,10.00,VL0810,56,6,GT -427905,VD,17258,1965,ZW,,ZW,13.00,VL1215,294,14,GT -427906,VD,33832,1965,ZW,,ZW,11.00,VL1012,66,11,GT -427907,VD,45572,1965,ZW,,ZW,11.00,VL1012,66,11,GT -427908,VD,46852,1965,ZW,,ZW,10.00,VL0810,66,9,GT -427909,VD,50776,1965,ZW,,ZW,7.00,VL0608,21,1,GT -427910,VD,39486,1965,ZW,,ZW,7.00,VL0608,16,1,GT -427911,VD,46204,1965,ZW,,ZW,12.00,VL1012,107,12,GT -427912,VD,28752,1965,ZW,,ZW,11.00,VL1012,184,10,GT -427913,VD,45524,1965,ZW,,ZW,9.00,VL0810,55,3,GT -427914,VD,51486,1965,ZW,,ZW,6.00,VL0608,20,,GT -427915,VD,38764,1965,ZW,,ZW,8.00,VL0810,110,2,GT -427916,VD,24374,1965,ZW,,ZW,8.00,VL0608,18,1,GT -427917,VD,47848,1965,ZW,,ZW,7.00,VL0608,28,1,GT -427918,VD,51174,1965,ZW,,ZW,12.00,VL1012,250,14,GT -427919,VD,23000,1965,ZW,,ZW,10.00,VL0810,162,6,GT -427920,VD,46252,1965,ZW,,ZW,8.00,VL0810,96,2,GT -427921,VD,38374,1965,ZW,,ZW,10.00,VL1012,272,7,GT -427922,VD,46288,1965,ZW,,ZW,8.00,VL0608,96,2,GT -427923,VD,50502,1965,ZW,,ZW,8.00,VL0608,59,2,GT -427924,VD,32408,1965,ZW,,ZW,6.00,VL0608,13,,GT -427925,VD,21974,1965,ZW,,ZW,10.00,VL0810,78,15,GT -427926,VD,46440,1965,ZW,,ZW,8.00,VL0608,24,3,GT -427927,VD,39878,1965,ZW,,ZW,8.00,VL0608,63,2,GT -427928,VD,34250,1965,ZW,,ZW,9.00,VL0810,26,5,GT -427929,VD,24244,1965,ZW,,ZW,11.00,VL1012,110,13,GT -427930,VD,32766,1965,ZW,,ZW,12.00,VL1012,294,18,GT -427931,VD,40382,1965,ZW,,ZW,9.00,VL0810,26,,GT -427932,VD,46960,1965,ZW,,ZW,10.00,VL1012,225,7,GT -427933,VD,20156,1965,ZW,,ZW,11.00,VL1012,74,15,GT -427934,VD,24346,1965,ZW,,ZW,6.00,VL0608,18,,GT -427935,VD,47938,1965,ZW,,ZW,11.00,VL1012,154,10,GT -427936,VD,43126,1965,ZW,,ZW,12.00,VL1012,115,11,GT -427937,VD,51988,1965,ZW,,ZW,9.00,VL0810,88,4,GT -427938,VD,46504,1965,ZW,,ZW,10.00,VL1012,107,9,GT -427939,VD,41312,1965,ZW,,ZW,10.00,VL1012,107,9,GT -427940,VD,41652,1965,ZW,,ZW,11.00,VL1012,110,6,GT -427941,VD,27156,1965,ZW,,ZW,8.00,VL0608,85,8,GT -427942,VD,46942,1965,ZW,,ZW,12.00,VL1012,130,12,GT -427943,VD,51510,1965,ZW,,ZW,11.00,VL1012,147,13,GT -427944,VD,25556,1965,ZW,,ZW,10.00,VL0810,50,6,GT -427945,VD,22838,1965,ZW,,ZW,10.00,VL0810,115,15,GT -427946,VD,44776,1965,ZW,,ZW,12.00,VL1012,147,13,GT -427947,VD,52134,1965,ZW,,ZW,11.00,VL1012,221,20,GT -427948,VD,23462,1965,ZW,,ZW,8.00,VL0810,62,3,GT -427949,VD,51148,1965,ZW,,ZW,9.00,VL0810,110,15,GT -427950,VD,42482,1965,ZW,,ZW,11.00,VL1012,79,10,GT -427951,VD,47268,1965,ZW,,ZW,8.00,VL0608,41,2,GT -427952,VD,24764,1965,ZW,,ZW,10.00,VL0810,199,9,GT -427953,VD,52352,1965,ZW,,ZW,10.00,VL0810,184,7,GT -427954,VD,51744,1965,ZW,,ZW,12.00,VL1012,160,14,GT -427955,VD,41458,1965,ZW,,ZW,8.00,VL0608,16,2,GT -427956,VD,47872,1965,ZW,,ZW,9.00,VL0810,64,4,GT -427957,VD,34936,1965,ZW,,ZW,9.00,VL0810,64,6,GT -427958,VD,44616,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427959,VD,24330,1965,ZW,,ZW,10.00,VL0810,59,6,GT -427960,VD,34102,1965,ZW,,ZW,12.00,VL1012,221,14,GT -427961,VD,44534,1965,ZW,,ZW,10.00,VL0810,48,6,GT -427962,VD,50980,1965,ZW,,ZW,11.00,VL1012,146,15,GT -427963,VD,50564,1965,ZW,,ZW,10.00,VL0810,51,6,GT -427964,VD,51932,1965,ZW,,ZW,9.00,VL0810,79,4,GT -427965,VD,51380,1965,ZW,,ZW,12.00,VL1012,113,18,GT -427966,VD,44486,1965,ZW,,ZW,7.00,VL0608,16,3,GT -427967,VD,42080,1965,ZW,,ZW,8.00,VL0810,46,3,GT -427968,VD,50698,1965,ZW,,ZW,6.00,VL0608,29,,GT -427969,VD,51200,1965,ZW,,ZW,11.00,VL1012,58,9,GT -427970,VD,33718,1965,ZW,,ZW,9.00,VL0810,54,3,GT -427971,VD,33798,1965,ZW,,ZW,9.00,VL0810,54,3,GT -427972,VD,47206,1965,ZW,,ZW,9.00,VL0810,125,4,GT -427973,VD,52338,1965,ZW,,ZW,12.00,VL1012,162,19,GT -427974,VD,18958,1965,ZW,,ZW,7.00,VL0608,38,1,GT -427975,VD,23558,1965,ZW,,ZW,9.00,VL0810,90,4,GT -427976,VD,41100,1965,ZW,,ZW,11.00,VL1012,110,11,GT -427977,VD,24392,1965,ZW,,ZW,11.00,VL1012,78,9,GT -427978,VD,41974,1965,ZW,,ZW,8.00,VL0608,26,2,GT -427979,VD,50308,1965,ZW,,ZW,8.00,VL0810,44,2,GT -427980,VD,34410,1965,ZW,,ZW,8.00,VL0810,59,3,GT -427981,VD,43358,1965,ZW,,ZW,8.00,VL0608,48,1,GT -427982,VD,50600,1965,ZW,,ZW,11.00,VL1012,78,9,GT -427983,VD,51818,1965,ZW,,ZW,10.00,VL1012,46,7,GT -427984,VD,43706,1965,ZW,,ZW,8.00,VL0810,121,3,GT -427985,VD,33396,1965,ZW,,ZW,11.00,VL1012,203,10,GT -427986,VD,39648,1965,ZW,,ZW,9.00,VL0810,24,4,GT -427987,VD,50790,1965,ZW,,ZW,11.00,VL1012,78,,GT -427988,VD,50184,1965,ZW,,ZW,11.00,VL1012,184,15,GT -427989,VD,27816,1965,ZW,,ZW,10.00,VL0810,91,6,GT -427990,VD,29868,1965,ZW,,ZW,9.00,VL0810,96,2,GT -427991,VD,51150,1965,ZW,,ZW,8.00,VL0810,46,3,GT -427992,VD,26476,1965,ZW,,ZW,11.00,VL1012,81,12,GT -427993,VD,41022,1965,ZW,,ZW,8.00,VL0810,43,3,GT -427994,VD,30570,1965,ZW,,ZW,11.00,VL1012,84,17,GT -427995,VD,31124,1965,ZW,,ZW,10.00,VL0810,51,,GT -427996,VD,51312,1965,ZW,,ZW,8.00,VL0608,88,2,GT -427997,VD,43640,1965,ZW,,ZW,9.00,VL0810,125,3,GT -427998,VD,45482,1965,ZW,,ZW,12.00,VL1012,176,17,GT -427999,VD,29644,1965,ZW,,ZW,9.00,VL0810,130,5,GT -428000,VD,46772,1965,ZW,,ZW,11.00,VL1012,101,27,GT -428001,VD,50940,1965,ZW,,ZW,11.00,VL1012,176,10,GT -428002,VD,34374,1965,ZW,,ZW,11.00,VL1012,176,10,GT -428003,VD,43702,1965,ZW,,ZW,12.00,VL1012,125,14,GT -428004,VD,50718,1965,ZW,,ZW,7.00,VL0608,22,1,GT -428005,VD,32760,1965,ZW,,ZW,11.00,VL1012,101,8,GT -428006,VD,21992,1965,ZW,,ZW,12.00,VL1012,160,7,GT -428007,VD,28568,1965,ZW,,ZW,9.00,VL0810,107,3,GT -428008,VD,44638,1965,ZW,,ZW,8.00,VL0608,36,2,GT -428009,VD,51960,1965,ZW,,ZW,8.00,VL0810,70,3,GT -428010,VD,32994,1965,ZW,,ZW,11.00,VL1012,169,9,GT -428011,VD,24968,1965,ZW,,ZW,10.00,VL1012,68,8,GT -428012,VD,18300,1965,ZW,,ZW,10.00,VL0810,184,14,GT -428013,VD,26542,1965,ZW,,ZW,8.00,VL0608,48,5,GT -428014,VD,44440,1965,ZW,,ZW,10.00,VL0810,48,5,GT -428015,VD,46318,1965,ZW,,ZW,9.00,VL0810,58,4,GT -428016,VD,23782,1965,ZW,,ZW,8.00,VL0608,37,2,GT -428017,VD,52200,1965,ZW,,ZW,11.00,VL1012,70,10,GT -428018,VD,19514,1965,ZW,,ZW,7.00,VL0608,16,,GT -428019,VD,46798,1965,ZW,,ZW,7.00,VL0608,63,2,GT -428020,VD,51062,1965,ZW,,ZW,9.00,VL0810,68,4,GT -428021,VD,40846,1965,ZW,,ZW,7.00,VL0608,110,,GT -428022,VD,51160,1965,ZW,,ZW,10.00,VL0810,100,6,GT -428023,VD,34112,1965,ZW,,ZW,10.00,VL1012,121,13,GT -428024,VD,27244,1965,ZW,,ZW,11.00,VL1012,124,14,GT -428025,VD,52284,1965,ZW,,ZW,8.00,VL0810,55,3,GT -428026,VD,43800,1965,ZW,,ZW,9.00,VL0810,53,3,GT -428027,VD,46118,1965,ZW,,ZW,10.00,VL0810,66,6,GT -428028,VD,52128,1965,ZW,,ZW,11.00,VL1012,85,19,GT -428029,VD,50938,1965,ZW,,ZW,13.00,VL1215,353,10,GT -428030,VD,27530,1965,ZW,,ZW,12.00,VL1012,270,23,GT -428031,VD,22546,1965,ZW,,ZW,12.00,VL1012,202,15,GT -428032,VD,33678,1965,ZW,,ZW,12.00,VL1012,246,23,GT -428033,VD,43298,1965,ZW,,ZW,10.00,VL1012,115,10,GT -428034,VD,51316,1965,ZW,,ZW,12.00,VL1012,154,13,GT -428035,VD,43490,1965,ZW,,ZW,9.00,VL0810,68,3,GT -428036,VD,50466,1965,ZW,,ZW,8.00,VL0810,69,3,GT -428037,VD,44952,1965,ZW,,ZW,9.00,VL0810,53,2,GT -428038,VD,32998,1965,ZW,,ZW,12.00,VL1012,147,20,GT -428039,VD,34388,1965,ZW,,ZW,9.00,VL0810,26,4,GT -428040,VD,27742,1965,ZW,,ZW,9.00,VL0810,74,3,GT -428041,VD,45804,1965,ZW,,ZW,9.00,VL0810,74,3,GT -428042,VD,22456,1965,ZW,,ZW,12.00,VL1215,162,,GT -428043,VD,19696,1965,ZW,,ZW,9.00,VL0810,96,3,GT -428044,VD,52350,1965,ZW,,ZW,9.00,VL0810,46,4,GT -428045,VD,20760,1965,ZW,,ZW,12.00,VL1012,96,10,GT -428046,VD,52260,1965,ZW,,ZW,11.00,VL1012,88,13,GT -428047,VD,50696,1965,ZW,,ZW,9.00,VL0810,162,3,GT -428048,VD,33944,1965,ZW,,ZW,7.00,VL0608,9,1,GT -428049,VD,52274,1965,ZW,,ZW,9.00,VL0810,105,3,GT -428050,VD,51934,1965,ZW,,ZW,11.00,VL1012,154,9,GT -428051,VD,47144,1965,ZW,,ZW,12.00,VL1012,176,13,GT -428052,VD,51732,1965,ZW,,ZW,6.00,VL0006,16,,GT -428053,VD,51366,1965,ZW,,ZW,10.00,VL1012,147,10,GT -428054,VD,43162,1965,ZW,,ZW,8.00,VL0810,138,3,GT -428055,VD,32256,1965,ZW,,ZW,8.00,VL0810,69,2,GT -428056,VD,43576,1965,ZW,,ZW,8.00,VL0810,44,3,GT -428057,VD,51840,1965,ZW,,ZW,11.00,VL1012,184,14,GT -428058,VD,25538,1965,ZW,,ZW,7.00,VL0608,22,1,GT -428059,VD,43138,1965,ZW,,ZW,12.00,VL1012,221,18,GT -428060,VD,51318,1965,ZW,,ZW,10.00,VL0810,94,8,GT -428061,VD,42092,1965,ZW,,ZW,10.00,VL0810,213,5,GT -428062,VD,VDcode_1,1965,ZW,,ZW,,VL1518,,, -428063,VD,VDcode_2,1965,ZW,,ZW,,VL1518,,, -428064,VD,VDcode_3,1965,ZW,,ZW,,VL1518,,, -428065,VD,VDcode_4,1965,ZW,,ZW,,VL1518,,, -428066,VD,VDcode_5,1965,ZW,,ZW,,VL1518,,, -428067,VD,VDcode_6,1965,ZW,,ZW,,VL1518,,, -428068,VD,VDcode_7,1965,ZW,,ZW,,VL1518,,, -428069,VD,VDcode_8,1965,ZW,,ZW,,VL1518,,, -428070,VD,VDcode_9,1965,ZW,,ZW,,VL1518,,, -428071,VD,VDcode_10,1965,ZW,,ZW,,VL1518,,, diff --git a/tests/testthat/test-createRDBESDataObject.R b/tests/testthat/test-createRDBESDataObject.R index bd176a77..6feb1eec 100644 --- a/tests/testthat/test-createRDBESDataObject.R +++ b/tests/testthat/test-createRDBESDataObject.R @@ -8,8 +8,6 @@ capture.output({ ## suppresses printing of console output when running test() dirH1 <- "./h1_v_20250211/" # H5 directory dirH5 <- "./h5_v_20250211/" - # H7 directory - dirH7 <- "./h7_v_1_19_26/" # H1 object for comparison expObjH1 <- H1Example @@ -388,55 +386,19 @@ capture.output({ ## suppresses printing of console output when running test() }) - test_that("createRDBESDataObject creates an H7 object with keys on the data tables", { - csvFilesH7 <- dirH7 - - myRDBESDataObject <- createRDBESDataObject(input = csvFilesH7) - - # Not all of the RDBES table types are in the sample data - expectedNumberOfTablesWithKeys <- 13 - actualNumberOfTablesWithKeys <- 0 - - for(aTable in names(myRDBESDataObject)){ - if ('data.table' %in% class(myRDBESDataObject[[aTable]])){ - if (!is.null(data.table::key(myRDBESDataObject[[aTable]]))){ - actualNumberOfTablesWithKeys <- actualNumberOfTablesWithKeys + 1 - } - } - } - - expect_equal(expectedNumberOfTablesWithKeys,actualNumberOfTablesWithKeys) - - }) - - - test_that("createRDBESDataObject can create an object from a H1 data extract - with the right number of rows, when CL has partially quoted vessel identifiers (issue #210)", { + test_that("createRDBESDataObject errors clearly when CL has unquoted comma-separated vessel identifiers (issue #210)", { # Test related to following issue - #https://github.com/ices-tools-dev/RDBEScore/issues/210 + # https://github.com/ices-tools-dev/RDBEScore/issues/210 csvFilesH1 <- paste0(dirH1, "BadVesselIdentifiers/") - print(csvFilesH1) - - myH1 <- createRDBESDataObject(input = csvFilesH1) - print(myH1) - # Get the default file names - fileNames <- RDBEScore::DefaultFileNames - # Remove any unnecessary files - fileNames[!names(fileNames) %in% c("CL")] <- NULL - # Append the right path - fileNames <-lapply(fileNames, function(x){paste(csvFilesH1,x,".csv",sep="")}) - # Read the number of rows in each file - fileNumberOfRows <- lapply(fileNames, function(x){length(readLines(x))-1}) - - # For each file - for(x in names(fileNumberOfRows)){ - # check if the value of nrow is equal to the length of readlines()-1 - expect_true(nrow(myH1[[x]]) == fileNumberOfRows[x]) - } + # Expect the new clear error message identifying the offending table and file base name + expect_error( + createRDBESDataObject(input = csvFilesH1), + "The input file has unexpected structure in the table CL" + ) }) diff --git a/tests/testthat/test-createRDBESEstObject.R b/tests/testthat/test-createRDBESEstObject.R index 834d2fe5..e1a85c77 100644 --- a/tests/testthat/test-createRDBESEstObject.R +++ b/tests/testthat/test-createRDBESEstObject.R @@ -79,7 +79,9 @@ test_that("createRDBESEstObject can create an object from an H1 data extract wit #myRawObject[["SA"]][, SAparentID:= NULL] # Generate some new parent ids myRawObject[["SA"]][51:100,"SAparSequNum"] <- myRawObject[["SA"]][1:50,"SAseqNum"] + myRawObject[["SA"]][51:100,"SSid"] <- myRawObject[["SA"]][1:50,"SSid"] myRawObject[["SA"]][101:125,"SAparSequNum"] <- myRawObject[["SA"]][51:75,"SAseqNum"] + myRawObject[["SA"]][101:125,"SSid"] <- myRawObject[["SA"]][51:75,"SSid"] # Fix the column order #setcolorder(myRawObject[["SA"]], # c("SAid","SAparentID", setdiff(names(myRawObject[["SA"]]), c("SAid","SAparentID")) ) diff --git a/tests/testthat/test-importRDBESDataCSV.R b/tests/testthat/test-importRDBESDataCSV.R new file mode 100644 index 00000000..63d7e52a --- /dev/null +++ b/tests/testthat/test-importRDBESDataCSV.R @@ -0,0 +1,57 @@ +capture.output({ ## suppresses printing of console output when running test() + + + + + # common parameters + # H1 directory + dirH1 <- "./h1_v_20250211/" + # H5 directory + dirH5 <- "./h5_v_20250211/" + + # H1 object for comparison + expObjH1 <- H1Example + + + # Test CSV inputs --------------------------------------------------------- + + + test_that("importRDBESDataCSV can create an object from a H1 data extract + without errors or warnings", { + + + expect_warning(importRDBESDataCSV(rdbesExtractPath = dirH1), NA) + expect_error(importRDBESDataCSV(rdbesExtractPath = dirH1), NA) + + + }) + + + + + + test_that("importRDBESDataCSV can create an object from an H1 data extract by specifying file names without errors or warnings", { + + myFileNames <- list("DE"="DE.csv","SD"="SD.csv") + + myObject <- expect_warning(importRDBESDataCSV(rdbesExtractPath = dirH1, listOfFileNames = myFileNames), NA) + myObject <- expect_error(importRDBESDataCSV(rdbesExtractPath = dirH1, listOfFileNames = myFileNames), NA) + + }) + + test_that("importRDBESDataCSV Errors if SL is present but IS is missing", { + + + expect_error(importRDBESDataCSV(rdbesExtractPath = dirH1, listOfFileNames = list("DE"="DE.csv","SL"="SpeciesList.csv")), + "objectToCheck contains a non-empty SL table but the IS table is either NULL or empty.") + + }) + + + + + +}) ## end capture.output + + + diff --git a/tests/testthat/test-importRDBESDataZIP.R b/tests/testthat/test-importRDBESDataZIP.R new file mode 100644 index 00000000..f2d56b6b --- /dev/null +++ b/tests/testthat/test-importRDBESDataZIP.R @@ -0,0 +1,51 @@ +capture.output({ ## suppresses printing of console output when running test() + + + + + # common parameters + # H1 directory + dirH1 <- "./h1_v_20250211/" + + + # H1 object for comparison + expObjH1 <- H1Example + +test_that("createRDBESDataObject will throw an error when given multiple inputs", { + zipFiles <- c( + "H1_Example.zip" + ) + H1 <- paste0(dirH1, zipFiles) + df <- as.data.frame(1) + + expect_error(createRDBESDataObject(input = c(H1, df, dirH1)), "Input type not recognised. Should be a RDBES zip file, folder of csv files, or list of data frames.") + +}) +test_that("importing foldered zipped H1 example data works", { + zipFiles <- c( + "H1_Example_fd.zip" + ) + + genObj <- createRDBESDataObject(paste0(dirH1, zipFiles), + castToCorrectDataTypes = TRUE) + + expect_equal(genObj, expObjH1) + + +}) + +test_that("importing foldered zipped H1 example data tables have non 0 rows on DE table", { + zipFiles <- c( + "H1_Example_fd.zip" + ) + + genObj <- createRDBESDataObject(paste0(dirH1, zipFiles), + castToCorrectDataTypes = TRUE) + + expect_equal(nrow(genObj$DE),8) + + +}) + + +}) diff --git a/tests/testthat/test-validateRDBESDataObject.R b/tests/testthat/test-validateRDBESDataObject.R index 3b37dfd9..6fd4fbb6 100644 --- a/tests/testthat/test-validateRDBESDataObject.R +++ b/tests/testthat/test-validateRDBESDataObject.R @@ -1,4 +1,4 @@ -capture.output({ ## suppresses printing of console output when running test() + capture.output({ ## suppresses printing of console output when running test() test_that("validateRDBESobject does not produce errors or warnings", { @@ -215,5 +215,30 @@ test_that("validateRDBESDataObject produces correct text output", { }) +# Tests for CHECK 5b: SL non-empty requires non-empty IS +test_that("validateRDBESDataObject errors when SL has rows and IS is NULL", { + # Build minimal object: non-empty SL, NULL IS + myObject <- H1Example + + myObject["IS"]<- list(NULL) + + expect_error( + validateRDBESDataObject(objectToCheck = myObject, verbose = FALSE), + regexp = "objectToCheck contains a non-empty SL table but the IS table is either NULL or empty." + ) +}) + +test_that("validateRDBESDataObject errors when SL has rows and IS is empty", { + # Build minimal object: non-empty SL, empty IS + myObject <- H1Example + + myObject$IS <- myObject$IS[FALSE,] + + expect_error( + validateRDBESDataObject(objectToCheck = myObject, verbose = FALSE), + regexp = "objectToCheck contains a non-empty SL table but the IS table is either NULL or empty." + ) +}) + }) ## end capture.output diff --git a/vignettes/raw-data-import.Rmd b/vignettes/v01a-data-import.Rmd similarity index 82% rename from vignettes/raw-data-import.Rmd rename to vignettes/v01a-data-import.Rmd index 304b2559..2e644549 100644 --- a/vignettes/raw-data-import.Rmd +++ b/vignettes/v01a-data-import.Rmd @@ -1,8 +1,8 @@ --- -title: "Raw Data Import" +title: "01a Data import" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Raw Data Import} + %\VignetteIndexEntry{01a Data import} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -114,15 +114,22 @@ validateRDBESDataObject(importedTables, verbose = TRUE) ``` -To see what you can do with the imported **RDBESDataObject** see other vignettes like [Manipulating RDBESDataObjects](manipulating-rdbesdataobjects.html). +To see what you can do with the imported **RDBESDataObject** see other vignettes like [01b Manipulating RDBESDataObjects](01b-manipulating-rdbesdataobjects.html). -Other vignettes: +See also other package vignettes: -```{r echo=FALSE, results='asis'} -vignettes <- as.data.frame(browseVignettes(package = "RDBEScore")$RDBEScore) -for (i in seq_along(vignettes$PDF)) { - cat(sprintf("- [%s](%s)\n", vignettes$Title[i], vignettes$PDF[i])) +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) } +} +``` #END -``` + diff --git a/vignettes/manipulating-rdbesdataobjects.Rmd b/vignettes/v01b-manipulating-rdbesdataobjects.Rmd similarity index 91% rename from vignettes/manipulating-rdbesdataobjects.Rmd rename to vignettes/v01b-manipulating-rdbesdataobjects.Rmd index aa1a21fd..fe8ce108 100644 --- a/vignettes/manipulating-rdbesdataobjects.Rmd +++ b/vignettes/v01b-manipulating-rdbesdataobjects.Rmd @@ -1,9 +1,9 @@ --- -title: "Manipulating RDBESDataObjects" +title: "01b Manipulating RDBESDataObjects" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Manipulating RDBESDataObjects} + %\VignetteIndexEntry{01b Manipulating RDBESDataObjects} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -218,12 +218,18 @@ If some table is missing it is skipped if possible. If it is not possible to ski See also other package vignettes: -```{r echo=FALSE, results='asis'} -vignettes <- as.data.frame(browseVignettes(package = "RDBEScore")$RDBEScore) -for (i in seq_along(vignettes$PDF)) { - cat(sprintf("- [%s](%s)\n", vignettes$Title[i], vignettes$PDF[i])) +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) } +} +``` #END -``` diff --git a/vignettes/generating-probabilities.Rmd b/vignettes/v02a-generating-probabilities.Rmd similarity index 92% rename from vignettes/generating-probabilities.Rmd rename to vignettes/v02a-generating-probabilities.Rmd index 7d1feb1f..df991b65 100644 --- a/vignettes/generating-probabilities.Rmd +++ b/vignettes/v02a-generating-probabilities.Rmd @@ -1,8 +1,8 @@ --- -title: "Generating probabilities" +title: "02a Generating probabilities" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Generating probabilities} + %\VignetteIndexEntry{02a Generating probabilities} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -187,3 +187,23 @@ We could use `probType = "selection"` to further complete the data with selectio ## The `overwrite` argument To be completed + + +See also other package vignettes: + +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} +``` + +#END + + diff --git a/vignettes/generating-zeros-using-the-species-list.Rmd b/vignettes/v02b-Generating-zeros-for-species-not-observed.Rmd similarity index 85% rename from vignettes/generating-zeros-using-the-species-list.Rmd rename to vignettes/v02b-Generating-zeros-for-species-not-observed.Rmd index 628912af..d236f233 100644 --- a/vignettes/generating-zeros-using-the-species-list.Rmd +++ b/vignettes/v02b-Generating-zeros-for-species-not-observed.Rmd @@ -1,8 +1,8 @@ --- -title: "Generating Zeros using the Species List" +title: "02b Generating zeros for species not observed" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Generating Zeros using the Species List} + %\VignetteIndexEntry{02b Generating zeros for species not observed} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -90,7 +90,20 @@ print(myH1DataObject1updte[['SA']]$SAunitName) ``` -## ... +See also other package vignettes: +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} +``` +#END diff --git a/vignettes/generating-NAs-using-the-species-list.Rmd b/vignettes/v02c-Generating-NAs-for-species-not-targeted-by-sampling.Rmd similarity index 79% rename from vignettes/generating-NAs-using-the-species-list.Rmd rename to vignettes/v02c-Generating-NAs-for-species-not-targeted-by-sampling.Rmd index e34fbd51..a0a063f6 100644 --- a/vignettes/generating-NAs-using-the-species-list.Rmd +++ b/vignettes/v02c-Generating-NAs-for-species-not-targeted-by-sampling.Rmd @@ -1,8 +1,8 @@ --- -title: "Generating NAs using the Species List" +title: "02c Generating NAs for species not targeted by sampling" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Generating NAs using the Species List} + %\VignetteIndexEntry{02c Generating NAs for species not targeted by sampling} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -53,7 +53,7 @@ Examining a print of the Species Selection table (SS), one can confirm that only ```{r} myH1DataObject1[[c("SS")]][,1:15] ``` -Given the previous, it is expected that if *Nephrops norvegicus* was sampled it will appear in the RDBES Sample table (SA). One can confirm that happened by printing that table (for simplicity only a subset of columns is printed). +Given the previous, it is expected that if *Nephrops norvegicus* was sampled it will appear in the RDBES Sample table (SA). One can confirm that happened by printing that table (for simplicity only a subset of columns is printed). ```{r} myH1DataObject1[[c("SA")]][,c(1:9,48:49)] ``` @@ -69,7 +69,7 @@ myH1DataObject1updte<-generateNAsUsingSL(myH1DataObject1, targetAphiaId = c("126 myH1DataObject1updte$SA[,c(1:9,48:49)] ``` -Note that the new rows have floating points values for SAid, and SAseqNum (we use sprintf to ensure the decimal places are displayed). This facilitates the ordering of the samples and prevenes overlaps when different datasets are joined. Also a SAunitName was created for the new row that builds on the SAid and helps to make the row more readily identifiable. +Note that the new rows have floating points values for SAid, and SAseqNum (we use sprintf to ensure the decimal places are displayed). This facilitates the ordering of the samples and prevents overlaps when different datasets are joined. Also a SAunitName was created for the new row that builds on the SAid and helps to make the row more readily identifiable. ```{r} sprintf(myH1DataObject1updte[['SA']]$SAid, fmt = '%.3f') sprintf(myH1DataObject1updte[['SA']]$SAseqNum, fmt = '%.3f') @@ -89,12 +89,13 @@ In many practical situations, diligent observers sometimes record more species t The difference between these two cases can be specified via the argument `overwriteSampled` in the function `generateNAsUsingSL`. By default (estimation case) the argument is set to TRUE which makes `generateNAsUsingSL` set the weights of these extra species to NA. But, by explicitly setting that argument as `overwriteSampled=FALSE` the information collected can also kept. -To demonstrate this we carry out a small alteration of the example data, removing the *Nephrops norvegicus* from the Species List. This creates a somewhat atypical situation (it configures a case where of a haul where nothing was supposed to be looked for but still *Nephrops norvegicus* was registered) that is used here for sake of simplifying the example. +To demonstrate this we carry out a small alteration of the example data, removing the *Nephrops norvegicus* from the Species List. This creates a somewhat atypical situation: a haul where nothing was supposed to be looked for but still *Nephrops norvegicus* was registered. We use such situation here for sake of a simple example. ```{r} # we remove *Nephrops norvegicus* myH1DataObject1$IS<-myH1DataObject1$IS[-1,] -validateRDBESDataObject(myH1DataObject1) +# Note that because IS has 0 rows, the object stopped validating +validateRDBESDataObject(myH1DataObject1, strict = FALSE) ``` @@ -102,7 +103,7 @@ Now we call `generateNAsUsingSL` for *Nephrops norvegicus* with its implicit def ```{r} myH1DataObject1updte<-generateNAsUsingSL(myH1DataObject1, - targetAphiaId = c("107254")) + targetAphiaId = c("107254"), validate = FALSE) myH1DataObject1updte$SA[,c(1:9,48:49)] ``` @@ -110,9 +111,23 @@ If, on the other hand, we are interested in keeping all available data, we set ` ```{r} myH1DataObject1updte<-generateNAsUsingSL(myH1DataObject1, - targetAphiaId = c("107254"), + targetAphiaId = c("107254"), validate = FALSE, overwriteSampled=FALSE) myH1DataObject1updte$SA[,c(1:9,48:49)] ``` +See also other package vignettes: + +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} +``` - +#END diff --git a/vignettes/update-SA-with-taxon-from-SL.Rmd b/vignettes/v02d-update-SA-with-taxon-from-SL.Rmd similarity index 85% rename from vignettes/update-SA-with-taxon-from-SL.Rmd rename to vignettes/v02d-update-SA-with-taxon-from-SL.Rmd index 3393e2ab..e102d60f 100644 --- a/vignettes/update-SA-with-taxon-from-SL.Rmd +++ b/vignettes/v02d-update-SA-with-taxon-from-SL.Rmd @@ -1,8 +1,8 @@ --- -title: "Update SA with taxon from SL" +title: "02d Update SA with taxon from SL" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Update SA with taxon from SL} + %\VignetteIndexEntry{02d Update SA with taxon from SL} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -120,3 +120,20 @@ In the SA results we can see that 126425 - `Clupea harengus` has been changed to ```{r} myObjectnew$SA[,c(1,2,9,14,48,49)] ``` + +See also other package vignettes: + +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} +``` + +#END diff --git a/vignettes/estimating-rdbesdataobjects.Rmd b/vignettes/v03a-Estimating-population-parameters-unbiased-estimator.Rmd similarity index 92% rename from vignettes/estimating-rdbesdataobjects.Rmd rename to vignettes/v03a-Estimating-population-parameters-unbiased-estimator.Rmd index 9de369e2..3f6289de 100644 --- a/vignettes/estimating-rdbesdataobjects.Rmd +++ b/vignettes/v03a-Estimating-population-parameters-unbiased-estimator.Rmd @@ -1,9 +1,9 @@ --- -title: "Estimating Population parameters from RDBESDataObjects" +title: "03a Estimating population parameters: unbiased estimator" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Estimating Population parameters from RDBESDataObjects} + %\VignetteIndexEntry{03a Estimating population parameters: unbiased estimator} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -189,20 +189,18 @@ How to interpret these results in the above example? See also other package vignettes: -- [Raw Data Import](raw-data-import.html) -- [Manipulating RDBESDataObjects](manipulating-rdbesdataobjects.html) -- [Generating probabilities](generating-probabilities.html) -- [Generating NAs using the Species List](generating-NAs-using-the-species-list.html) -- [Generating Zeros using the Species List](generating-zeros-using-the-species-list.html) - - - -```{r eval=FALSE, include=FALSE, results='asis'} -vignettes <- as.data.frame(browseVignettes(package = "RDBEScore")$RDBEScore) -for (i in seq_along(vignettes$PDF)) { - cat(sprintf("- [%s](%s)\n", vignettes$Title[i], vignettes$PDF[i])) +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) } +} +``` #END -``` diff --git a/vignettes/ratio-estimating-rdbesdataobjects.Rmd b/vignettes/v03b-Estimating-population-parameters-ratio-estimator.Rmd similarity index 87% rename from vignettes/ratio-estimating-rdbesdataobjects.Rmd rename to vignettes/v03b-Estimating-population-parameters-ratio-estimator.Rmd index ebcac7d3..3751f025 100644 --- a/vignettes/ratio-estimating-rdbesdataobjects.Rmd +++ b/vignettes/v03b-Estimating-population-parameters-ratio-estimator.Rmd @@ -1,9 +1,9 @@ --- -title: "Ratio Estimation of Length Composition from RDBESDataObjects" +title: "03b Estimating population parameters: ratio estimator" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Ratio Estimation of Length Composition from RDBESDataObjects} + %\VignetteIndexEntry{03b Estimating population parameters: ratio estimator} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -135,13 +135,19 @@ ageCANUM The output table should be enough to populate a classic Intercatch data call table. +See also other package vignettes: - - - - -```{r} - -#END +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} ``` +#END diff --git a/vignettes/create-IC-output-from-estimation-results.Rmd b/vignettes/v04-Create-IC-format-from-estimation-results.Rmd similarity index 87% rename from vignettes/create-IC-output-from-estimation-results.Rmd rename to vignettes/v04-Create-IC-format-from-estimation-results.Rmd index 1993c50e..f57511b9 100644 --- a/vignettes/create-IC-output-from-estimation-results.Rmd +++ b/vignettes/v04-Create-IC-format-from-estimation-results.Rmd @@ -1,8 +1,8 @@ --- -title: "Create IC format from doEstimationForAllStrata() output" +title: "04 Create IC format from estimation results" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Create IC format from doEstimationForAllStrata} + %\VignetteIndexEntry{04 Create IC format from estimation results} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -130,3 +130,19 @@ tempIC <- exportEstimationResultsToInterCatchFormat(dataToOutput) print(tempIC) ``` +See also other package vignettes: + +```{r,echo=F, results='asis', eval=T} +# note: vignettes are first compiled and only then html, R and Rmd are moved to folder doc +vignettes <- data.frame(Rmd=dir()[grepl(dir(), pat=".Rmd")]) +# determines index of vignette being compiled +thisVignetteRmd<-paste0(gsub(":","",gsub(" ", "-",as.character(rmarkdown::metadata$title))),".Rmd") +# prints list with links +for (i in seq_along(vignettes$Rmd)) { + if(tolower(vignettes$Rmd[i])!=tolower(thisVignetteRmd)){ + cat(sprintf("- [%s](%s)\n", gsub("-"," ",gsub(".Rmd","",vignettes$Rmd[i])), gsub(".Rmd",".html",vignettes$Rmd[i]))) +} +} +``` + +#END