diff --git a/aplicaciones/procesador/fuente/aplicacion.ts b/aplicaciones/procesador/fuente/aplicacion.ts index 6188c33..3a298f1 100644 --- a/aplicaciones/procesador/fuente/aplicacion.ts +++ b/aplicaciones/procesador/fuente/aplicacion.ts @@ -3,6 +3,7 @@ import { readdir, rm } from 'fs/promises'; import { rutaEstaticosDatos, rutaEstaticosDescarga } from './utilidades/constantes'; import calcularPesos from './datosDescarga'; import JuegoCategorias from './modulos/JuegoCategorias'; +import VariableDoble from './modulos/VariableDoble'; async function inicio() { await vaciarProcesados(); @@ -68,6 +69,8 @@ async function procesarDatos() { await ya25.procesar('2.5: porcentaje marco integral', 'YA_2.5', 'Sheet 1', 'ya2-5'); const ya26 = new VariableSingular('educ_inicial_icbf', true, 'conteo'); await ya26.procesar('2.6: educación inicial icbf', 'YA_2.6', 'Sheet 1', 'ya2-6'); + const ya27 = new VariableDoble('#_estudiantes', true, 'conteo', 1); + await ya27.procesar('2.7: matriculados', 'YA_2.7', 'Sheet1', 'ya2-7'); /** 3 */ const ya31 = new VariableSingular('promedio_matematicas', true, 'promedio'); diff --git a/aplicaciones/procesador/fuente/modulos/VariableDoble.ts b/aplicaciones/procesador/fuente/modulos/VariableDoble.ts new file mode 100644 index 0000000..dc069fc --- /dev/null +++ b/aplicaciones/procesador/fuente/modulos/VariableDoble.ts @@ -0,0 +1,291 @@ +import { limpiarDepartamento, limpiarMunicipio } from '../limpieza/lugar'; +import type { + Departamento, + Errata, + Municipio, + RespuestaPorcentaje2, + VariableDoble, + VariableValorSingular, +} from '@/tipos'; +import { esNumero, guardarJSON, redondearDecimal } from '../utilidades/ayudas'; +import maquinaXlsx from '../utilidades/maquinaXlsx'; +import { departamentos } from '../utilidades/lugaresColombia'; +import { DatosIndicadorNal, TiposEstructura } from '../../../../tipos/compartidos'; + +export default class { + datosNacionales: DatosIndicadorNal; + datosDepartamentos: RespuestaPorcentaje2; + datosMunicipios: RespuestaPorcentaje2; + errata: { fila: number; error: string }[]; + nombreVariableValor: VariableValorSingular; + estructura: TiposEstructura; + exportarMunicipios: boolean; + + constructor( + nombreVariable: VariableValorSingular, + ascendente: boolean, + estructura: TiposEstructura, + unidadMedida = 100 + ) { + this.datosNacionales = { + ascendente, + estructura, + unidadMedida, + datos: {}, + datosMunicipio: true, + maxNal: 0, + minNal: Infinity, + maxDep: 0, + minDep: Infinity, + maxMun: 0, + minMun: Infinity, + }; + this.errata = []; + this.datosMunicipios = {}; + this.datosDepartamentos = {}; + this.nombreVariableValor = nombreVariable; + this.estructura = estructura; + this.exportarMunicipios = true; + } + + async procesar(nombreReferencia: string, nombreArchivo: string, hoja: string, nombreParaArchivo: string) { + await maquinaXlsx(nombreReferencia, nombreArchivo, hoja, this.procesarMunicipios); + this.procesarDepartamentos(); + this.procesarNacional(); + + if (!this.exportarMunicipios) this.datosNacionales.datosMunicipio = false; + guardarJSON(this.datosMunicipios, `${nombreParaArchivo}-mun`); + guardarJSON(this.datosDepartamentos, `${nombreParaArchivo}-dep`); + guardarJSON(this.datosNacionales, `${nombreParaArchivo}-nal`); + + if (this.errata.length) guardarJSON(this.errata, `Errata ${nombreParaArchivo}`); + } + + validarValor(valor: number, numeroFila: number) { + if (valor && isNaN(valor)) { + this.errata.push({ fila: numeroFila, error: `el valor no es un número: ${valor}` }); + return false; + } + + return true; + } + + procesarMunicipios = (fila: VariableDoble, numeroFila: number) => { + const valor = fila['#_estudiantes']; + const categoria = fila.sector; + + if (fila.hasOwnProperty('codmpio')) { + const municipio = limpiarMunicipio(+fila.codmpio); + const tieneValor = this.validarValor(valor, numeroFila); + if (!tieneValor) return; + + // Si no existe el municipio + if (municipio.hasOwnProperty('error') && valor) { + // El código de datos nacionales es 1001 entonces lo podemos comparar directo. + if (fila.codmpio == 1001) { + this.datosNacionales.datos[fila.anno] = valor; + return; + } + // Si termina en 00 y no lo encontró antes significa que es el dato del departamento. + // else if (`${fila.codmpio}`.slice(-2) === '00') { + // // Poner ceros al principio y convertir a texto para que quede bien al comparar con código departamento. + // const codigoCompleto = `${fila.codmpio}`.padStart(5, '0'); + // const codigoDep = codigoCompleto.slice(0, 2); // sacar los primeros dos números. + // const dep = departamentos.datos.find((obj) => obj[0] === codigoDep); // buscar el departamento. + + // // agregar datos del departamento si existen. + // if (dep) { + // if (!this.datosDepartamentos[fila.anno]) { + // this.datosDepartamentos[fila.anno] = []; + // } + + // this.datosDepartamentos[fila.anno].push([(dep as Departamento)[0], valor]); + // return; + // } else { + // this.errata.push({ fila: numeroFila, error: `No existe departamento con código: ${codigoDep}` }); + // } + // } + + // No pasó ninguna prueba, registrar en errata para revisar el caso. + this.errata.push({ fila: numeroFila, error: (municipio as Errata).mensaje }); + return; + } + + this.registrarAño(numeroFila, fila.anno, { datos: municipio, valor, categoria }); + } else { + // if (fila.hasOwnProperty('coddepto') && fila.coddepto) { + // const departamento = limpiarDepartamento(+fila.coddepto); + // const tieneValor = this.validarValor(valor, numeroFila); + // if (!tieneValor) return; + // this.revisarMinMax(valor, 'maxDep', 'minDep'); + // this.exportarMunicipios = false; + // this.registrarAño(numeroFila, fila.anno, null, { datos: departamento, valor }); + // } else { + // this.errata.push({ fila: numeroFila, error: `No hay valor en coddepto` }); + // } + } + }; + + procesarDepartamentos() { + if (this.exportarMunicipios) { + for (const año in this.datosMunicipios) { + const datosAño = this.datosMunicipios[año]; + const deps: { [codDep: string]: [total: number, noOficial: number, oficial: number][] } = {}; + + datosAño.forEach((municipio) => { + const codDepartamento = municipio[0].slice(0, 2); + if (!deps[codDepartamento]) { + deps[codDepartamento] = []; + } + + deps[codDepartamento].push([municipio[1], municipio[2], municipio[3]]); + }); + + for (const codDep in deps) { + const yaExiste = + this.datosDepartamentos[año] && this.datosDepartamentos[año].find(([codigo]) => codigo === codDep); + + if (yaExiste) { + // Ya existen datos departamentales, no hacer nada. + } else { + // No hay datos de este departamento en la tabla original, procesarlos con los datos que tenemos de los municipios. + const departamento = limpiarDepartamento(+codDep); + + if (departamento.hasOwnProperty('error')) { + this.errata.push({ fila: Infinity, error: (departamento as Errata).mensaje }); + } else { + if (!this.datosDepartamentos[año]) { + this.datosDepartamentos[año] = []; + } + + const suma = deps[codDep].reduce( + (valorAnterior, valorActual) => [ + valorAnterior[0] + valorActual[0], + valorAnterior[1] + valorActual[1], + valorAnterior[2] + valorActual[2], + ], + [0, 0, 0] + ); + if (this.estructura === 'conteo') { + this.revisarMinMax(suma[0], 'maxDep', 'minDep'); + this.datosDepartamentos[año].push([(departamento as Departamento)[0], suma[0], suma[1], suma[2]]); + } else { + // const porcentaje = redondearDecimal(suma / deps[codDep].length, 1, 2); + // this.revisarMinMax(porcentaje, 'maxDep', 'minDep'); + // this.datosDepartamentos[año].push([(departamento as Departamento)[0], porcentaje]); + } + } + } + } + } + } + } + + procesarNacional() { + for (const año in this.datosDepartamentos) { + if (this.datosNacionales.datos[año]) { + this.revisarMinMax(this.datosNacionales.datos[año] as number, 'maxNal', 'minNal'); + // Ya existen datos a nivel nacional para este año + } else { + // No hay datos nacionales, sacarlos a partir de los datos departamentales. + const datosAño = this.datosDepartamentos[año]; + const suma = datosAño.reduce( + (depAnterior, valorActual) => [ + '', + depAnterior[1] + valorActual[1], + depAnterior[2] + valorActual[2], + depAnterior[3] + valorActual[3], + ], + ['', 0, 0, 0] + ); + + if (this.estructura === 'conteo') { + this.revisarMinMax(suma[1], 'maxNal', 'minNal'); + this.datosNacionales.datos[año] = [suma[1], suma[2], suma[3]]; + } else { + // const porcentaje = redondearDecimal(suma[1] / datosAño.length, 1, 2); + // this.revisarMinMax(porcentaje, 'maxNal', 'minNal'); + // this.datosNacionales.datos[año] = porcentaje; + } + } + } + } + + registrarAño( + numeroFila: number, + año: number | string, + municipio: { datos: Municipio | Errata; valor?: number; categoria?: string } | null, + departamento?: { datos: Departamento | Errata; valor?: number; categoria?: string } + ) { + if (año) { + if (esNumero(`${año}`)) { + const indice = parseInt(`${año}`.replace(',', '')); + + if (!indice) { + console.log(año, indice, parseInt(`${año}`), esNumero(`${año}`)); + } + + if (!this.datosMunicipios[indice]) { + this.datosMunicipios[indice] = []; + } + + if (!this.exportarMunicipios) { + if (!this.datosDepartamentos[indice]) { + this.datosDepartamentos[indice] = []; + } + } + + if (municipio && municipio.valor) { + const codMunicipio = (municipio.datos as Municipio)[3]; + let existe = this.datosMunicipios[indice].find(([lugar]) => lugar === codMunicipio); + + if (!existe) { + existe = [(municipio.datos as Municipio)[3], 0, 0, 0]; + + if (municipio.categoria && municipio.categoria === 'NO_OFICIAL') { + existe[3] = redondearDecimal(municipio.valor, 1, 2); + } else if (municipio.categoria && municipio.categoria === 'OFICIAL') { + existe[2] = redondearDecimal(municipio.valor, 1, 2); + } + + existe[1] = existe[3] + existe[2]; + this.revisarMinMax(existe[1], 'maxMun', 'minMun'); + + this.datosMunicipios[indice].push(existe); + } else { + if (municipio.categoria && municipio.categoria === 'NO_OFICIAL') { + existe[3] = redondearDecimal(municipio.valor, 1, 2); + } else if (municipio.categoria && municipio.categoria === 'OFICIAL') { + existe[2] = redondearDecimal(municipio.valor, 1, 2); + } + + existe[1] = existe[3] + existe[2]; + + this.revisarMinMax(existe[1], 'maxMun', 'minMun'); + } + } + + if (departamento && departamento.valor) { + // this.datosDepartamentos[indice].push([ + // (departamento.datos as Departamento)[0], + // redondearDecimal(departamento.valor, 1, 2), + // ]); + } + } else { + this.errata.push({ fila: numeroFila, error: `El año ${año} no es número.` }); + } + } else { + this.errata.push({ fila: numeroFila, error: `No hay año en esta fila, sino ${año}` }); + } + } + + revisarMinMax(valor: number, llaveMax: 'maxNal' | 'maxDep' | 'maxMun', llaveMin: 'minNal' | 'minDep' | 'minMun') { + if (this.datosNacionales[llaveMax] < valor) { + this.datosNacionales[llaveMax] = valor; + } + + if (this.datosNacionales[llaveMin] > valor) { + this.datosNacionales[llaveMin] = valor; + } + } +} diff --git a/aplicaciones/procesador/fuente/tipos.ts b/aplicaciones/procesador/fuente/tipos.ts index 2c5a304..292d19e 100644 --- a/aplicaciones/procesador/fuente/tipos.ts +++ b/aplicaciones/procesador/fuente/tipos.ts @@ -49,6 +49,10 @@ export type RespuestaPorcentaje = { [año: string]: [lugar: string, porcentaje: number, variable2?: number][]; }; +export type RespuestaPorcentaje2 = { + [año: string]: [lugar: string, total: number, noOficial: number, oficial: number][]; +}; + export type RespuestaCategorias = { [año: string]: [lugar: string, valor: { [categoria: string]: number }][]; }; @@ -126,12 +130,21 @@ export type VariableValorSingular = | 'porcentaje' | 'P51' | 'educ_inicial_icbf' - | 'porcentaje_nacidos_vivos_personal_calificado'; + | 'porcentaje_nacidos_vivos_personal_calificado' + | '#_estudiantes'; export type VariablesSingulares = { [llave in VariableValorSingular]: number; }; +export type VariableDoble = { + '#_estudiantes': number; + sector: string; + codmpio: number; + anno: number; + coddepto?: number; +}; + export type VariablesNumDen = { anno: string; departamento: string; diff --git a/aplicaciones/www/estaticos/datos/descarga/ya2-7-inicial-marco.xlsx b/aplicaciones/www/estaticos/datos/descarga/ya2-7-inicial-marco.xlsx deleted file mode 100644 index e714c16..0000000 Binary files a/aplicaciones/www/estaticos/datos/descarga/ya2-7-inicial-marco.xlsx and /dev/null differ diff --git a/aplicaciones/www/estaticos/datos/descarga/ya2-7-matriculados-tipo.xlsx b/aplicaciones/www/estaticos/datos/descarga/ya2-7-matriculados-tipo.xlsx new file mode 100644 index 0000000..d5fdd75 Binary files /dev/null and b/aplicaciones/www/estaticos/datos/descarga/ya2-7-matriculados-tipo.xlsx differ diff --git a/aplicaciones/www/estaticos/datos/ya2-7-dep.json b/aplicaciones/www/estaticos/datos/ya2-7-dep.json new file mode 100644 index 0000000..626d149 --- /dev/null +++ b/aplicaciones/www/estaticos/datos/ya2-7-dep.json @@ -0,0 +1 @@ +{"2012":[["11",926593,818163,108430],["13",454802,423276,31526],["15",264833,262294,2539],["17",177125,177125,0],["18",117870,117723,147],["19",313467,311608,1859],["20",253256,250853,2403],["23",417893,412871,5022],["25",460374,435830,24544],["27",143595,143595,0],["41",247928,247791,137],["44",201408,200632,776],["47",325943,322831,3112],["50",196494,186920,9574],["52",354974,353857,1117],["54",271258,268455,2803],["63",105514,105514,0],["66",186592,184846,1746],["68",371382,364050,7332],["70",208855,208099,756],["73",278607,276363,2244],["76",716351,589574,126777],["81",59947,59947,0],["85",95122,95122,0],["86",85159,85159,0],["88",9997,9997,0],["91",20481,19871,610],["94",10215,10215,0],["95",21745,21745,0],["97",9237,9237,0],["99",15489,15489,0],["05",1203211,1079651,123560],["08",413486,363998,49488]],"2020":[["11",1306724,797970,508754],["13",523545,421016,102529],["15",248020,201034,46986],["17",158181,137141,21040],["18",100859,90518,10341],["19",285440,256187,29253],["20",306096,256900,49196],["23",408436,356926,51510],["25",626289,409604,216685],["27",136167,133518,2649],["41",254030,219710,34320],["44",266943,245038,21905],["47",368756,321485,47271],["50",234258,189269,44989],["52",301235,271890,29345],["54",326862,268950,57912],["63",90879,78780,12099],["66",181560,152018,29542],["68",442253,347043,95210],["70",224737,198759,25978],["73",278118,231581,46537],["76",797949,528058,269891],["81",71004,66418,4586],["85",100054,91046,9008],["86",77515,75274,2241],["88",11606,8753,2853],["91",21505,20773,732],["94",13256,13122,134],["95",21874,20276,1598],["97",10031,9925,106],["99",22272,21937,335],["05",1245126,1013554,231572],["08",561076,381435,179641]],"2021":[["11",1263840,805425,458415],["13",526471,432599,93872],["15",248350,205505,42845],["17",157444,137133,20311],["18",96489,87890,8599],["19",289130,262287,26843],["20",305487,262944,42543],["23",406104,361354,44750],["25",619040,416537,202503],["27",143813,141157,2656],["41",254037,223644,30393],["44",286666,268720,17946],["47",372835,333287,39548],["50",232792,190926,41866],["52",294817,267538,27279],["54",336605,282101,54504],["63",88677,77376,11301],["66",180998,154895,26103],["68",441962,351767,90195],["70",224351,202846,21505],["73",276969,235986,40983],["76",784786,534261,250525],["81",73309,68794,4515],["85",100050,92466,7584],["86",78218,76016,2202],["88",11184,8923,2261],["91",21838,21118,720],["94",14599,14204,395],["95",22028,20353,1675],["97",10785,10659,126],["99",24307,23997,310],["05",1224285,1001356,222929],["08",567005,390001,177004]],"2022":[["11",1237299,775856,461443],["13",532729,428685,104044],["15",245151,199003,46148],["17",152316,131653,20663],["18",93279,83873,9406],["19",289294,260326,28968],["20",306962,258047,48915],["23",402462,350729,51733],["25",627651,413055,214596],["27",151008,147959,3049],["41",254010,218048,35962],["44",292976,272325,20651],["47",393798,346741,47057],["50",237315,189633,47682],["52",288779,258021,30758],["54",340730,281076,59654],["63",87829,75917,11912],["66",179029,150432,28597],["68",444630,345473,99157],["70",222240,197358,24882],["73",274933,227467,47466],["76",774534,513503,261031],["81",70629,65317,5312],["85",99325,90440,8885],["86",74638,72156,2482],["88",11486,8847,2639],["91",21165,20343,822],["94",13007,12651,356],["95",21862,19803,2059],["97",10328,10181,147],["99",25192,24868,324],["05",1211860,986159,225701],["08",577765,378829,198936]],"2023":[["11",1214728,761651,453077],["13",531175,418359,112816],["15",240085,192786,47299],["17",146606,125594,21012],["18",91373,82054,9319],["19",285888,255605,30283],["20",304519,252468,52051],["23",395214,345382,49832],["25",622118,407517,214601],["27",152328,148738,3590],["41",251103,213127,37976],["44",294449,271327,23122],["47",380227,329152,51075],["50",236086,185026,51060],["52",277830,246652,31178],["54",339440,277353,62087],["63",85337,73285,12052],["66",172555,143961,28594],["68",439372,337362,102010],["70",216903,189851,27052],["73",267222,217964,49258],["76",750687,490414,260273],["81",69866,64009,5857],["85",98893,89355,9538],["86",75154,72435,2719],["88",11408,8449,2959],["91",20348,19498,850],["94",13855,13571,284],["95",21582,19502,2080],["97",10156,10023,133],["99",25556,25219,337],["05",1181738,960389,221349],["08",576333,372713,203620]]} \ No newline at end of file diff --git a/aplicaciones/www/estaticos/datos/ya2-7-mun.json b/aplicaciones/www/estaticos/datos/ya2-7-mun.json new file mode 100644 index 0000000..bbf9298 --- /dev/null +++ b/aplicaciones/www/estaticos/datos/ya2-7-mun.json @@ -0,0 +1 @@ +{"2012":[["05001",395896,319971,75925],["05002",4298,3994,304],["05004",453,409,44],["05021",901,690,211],["05030",5614,5599,15],["05031",5849,5849,0],["05034",9539,9318,221],["05036",1344,1344,0],["05038",2886,2632,254],["05040",3934,3619,315],["05042",6254,6100,154],["05044",1755,1600,155],["05045",34007,27740,6267],["05051",10869,9937,932],["05055",2447,1935,512],["05059",998,998,0],["05079",8661,8426,235],["05086",1635,1635,0],["05088",72984,55644,17340],["05091",2423,2353,70],["05093",4278,4257,21],["05101",5829,5819,10],["05107",2450,2450,0],["05113",1844,1732,112],["05120",8673,8538,135],["05125",1927,1783,144],["05129",12224,12224,0],["05134",2203,2049,154],["05138",4219,4044,175],["05142",1104,930,174],["05145",1042,973,69],["05147",14668,14608,60],["05148",9499,9067,432],["05150",958,958,0],["05154",21593,20854,739],["05172",18549,17820,729],["05190",2158,2002,156],["05197",3602,3371,231],["05206",907,622,285],["05209",4679,4275,404],["05212",12097,12097,0],["05234",6543,6524,19],["05237",4101,4026,75],["05240",2793,2758,35],["05250",15794,15504,290],["05264",2166,2041,125],["05266",20484,18159,2325],["05282",4748,4708,40],["05284",5778,5730,48],["05306",1172,1172,0],["05308",7544,7256,288],["05310",2161,2057,104],["05313",2016,1948,68],["05315",1490,1307,183],["05318",7352,7246,106],["05321",1547,1492,55],["05347",1425,1311,114],["05353",1314,1314,0],["05360",37109,37109,0],["05361",7075,6662,413],["05364",3221,3178,43],["05368",2777,2777,0],["05376",9876,9702,174],["05380",7058,7058,0],["05390",2032,2032,0],["05400",4242,3982,260],["05411",2591,2356,235],["05425",2302,2302,0],["05440",10804,10216,588],["05467",1476,1221,255],["05475",1059,1059,0],["05480",4452,4452,0],["05483",2602,2289,313],["05490",17015,16842,173],["05495",6972,6972,0],["05501",722,690,32],["05541",3894,3296,598],["05543",2348,2256,92],["05576",1969,1843,126],["05579",9284,9144,140],["05585",3783,3783,0],["05591",4881,4881,0],["05604",7592,7592,0],["05607",2935,2898,37],["05615",20855,20855,0],["05628",2452,2269,183],["05631",6993,6993,0],["05642",3915,3879,36],["05647",1879,1731,148],["05649",3818,3579,239],["05652",1570,1413,157],["05656",3373,3264,109],["05658",778,778,0],["05659",7808,7347,461],["05660",3183,3093,90],["05664",5574,5397,177],["05665",10574,9873,701],["05667",3474,2895,579],["05670",4569,4569,0],["05674",4222,3879,343],["05679",5101,4705,396],["05686",8920,8197,723],["05690",2940,2894,46],["05697",6125,5789,336],["05736",8932,8932,0],["05756",9264,8441,823],["05761",3823,3766,57],["05789",3629,3471,158],["05790",10400,10289,111],["05792",1396,1380,16],["05809",2232,2178,54],["05819",1510,1381,129],["05837",43904,41831,2073],["05842",1866,1733,133],["05847",7628,7231,397],["05854",4207,4192,15],["05856",1264,1161,103],["05858",3760,3760,0],["05861",2579,2579,0],["05873",3079,3079,0],["05885",1454,1380,74],["05887",10523,10321,202],["05890",5103,4950,153],["05893",4481,4481,0],["05895",8305,8305,0],["08001",204343,193240,11103],["08078",12256,12256,0],["08137",4384,4384,0],["08141",3046,2908,138],["08296",8325,8135,190],["08372",3491,3491,0],["08421",6701,6701,0],["08433",22454,15586,6868],["08436",4392,4392,0],["08520",5746,5746,0],["08549",1270,1270,0],["08558",3186,3186,0],["08560",4983,4983,0],["08573",5224,5224,0],["08606",6556,6556,0],["08634",6633,6460,173],["08638",18421,18221,200],["08675",2505,2505,0],["08685",4378,4378,0],["08758",78730,47914,30816],["08770",2420,2420,0],["08832",2334,2334,0],["08849",1708,1708,0],["11001",926593,818163,108430],["13001",182319,153662,28657],["13006",7225,7225,0],["13030",2582,2582,0],["13042",2107,2107,0],["13052",15955,14991,964],["13062",1731,1731,0],["13074",5164,5164,0],["13140",7076,7076,0],["13160",2172,2172,0],["13188",3586,3586,0],["13212",4783,4783,0],["13222",3557,3557,0],["13244",16804,16024,780],["13248",1647,1647,0],["13268",2450,2450,0],["13300",3897,3897,0],["13430",31616,31597,19],["13433",7059,7059,0],["13440",2516,2516,0],["13442",14643,14643,0],["13458",3431,3431,0],["13468",12760,12760,0],["13473",5324,5324,0],["13490",1839,1839,0],["13549",7148,7148,0],["13580",1654,1654,0],["13600",1956,1956,0],["13620",1834,1834,0],["13647",3648,3648,0],["13650",2708,2708,0],["13654",7527,7527,0],["13655",3086,3086,0],["13657",10058,8952,1106],["13667",5068,5068,0],["13670",7365,7365,0],["13673",3653,3653,0],["13683",4605,4605,0],["13688",8770,8770,0],["13744",4677,4677,0],["13760",1894,1894,0],["13780",3647,3647,0],["13810",5983,5983,0],["13836",15318,15318,0],["13838",3398,3398,0],["13873",5030,5030,0],["13894",3532,3532,0],["15001",27654,27653,1],["15022",401,401,0],["15047",3705,3705,0],["15051",1108,1108,0],["15087",2042,2042,0],["15090",392,392,0],["15092",423,423,0],["15097",1514,1514,0],["15104",1124,1124,0],["15106",650,650,0],["15109",1208,1208,0],["15114",96,96,0],["15131",910,910,0],["15135",692,692,0],["15162",860,860,0],["15172",711,711,0],["15176",14105,14105,0],["15180",1113,1113,0],["15183",3179,3179,0],["15185",1282,1282,0],["15187",624,624,0],["15189",1349,1349,0],["15204",1887,1887,0],["15212",862,862,0],["15215",503,503,0],["15218",833,833,0],["15223",1265,1265,0],["15224",936,936,0],["15226",682,682,0],["15232",1138,1138,0],["15236",507,507,0],["15238",21987,19449,2538],["15244",1149,1149,0],["15248",970,970,0],["15272",1023,1023,0],["15276",683,683,0],["15293",748,748,0],["15296",1019,1019,0],["15299",3214,3214,0],["15317",468,468,0],["15322",2328,2328,0],["15325",691,691,0],["15332",1200,1200,0],["15362",386,386,0],["15367",1568,1568,0],["15368",908,908,0],["15377",622,622,0],["15380",571,571,0],["15401",294,294,0],["15403",743,743,0],["15407",2601,2601,0],["15425",930,930,0],["15442",2008,2008,0],["15455",1895,1895,0],["15464",1180,1180,0],["15466",1438,1438,0],["15469",5712,5712,0],["15476",1284,1284,0],["15480",2672,2672,0],["15491",2883,2883,0],["15494",1308,1308,0],["15500",588,588,0],["15507",2229,2229,0],["15511",380,380,0],["15514",739,739,0],["15516",6742,6742,0],["15518",556,556,0],["15522",616,616,0],["15531",2201,2201,0],["15533",745,745,0],["15537",916,916,0],["15542",1999,1999,0],["15550",504,504,0],["15572",13548,13548,0],["15580",1673,1673,0],["15599",2218,2218,0],["15600",1268,1268,0],["15621",565,565,0],["15632",3474,3474,0],["15638",815,815,0],["15646",4226,4226,0],["15660",441,441,0],["15664",1119,1119,0],["15667",1316,1316,0],["15673",1101,1101,0],["15676",771,771,0],["15681",2108,2108,0],["15686",1867,1867,0],["15690",883,883,0],["15693",2727,2727,0],["15696",715,715,0],["15720",807,807,0],["15723",376,376,0],["15740",2153,2153,0],["15753",2258,2258,0],["15755",1931,1931,0],["15757",2063,2063,0],["15759",23354,23354,0],["15761",721,721,0],["15762",791,791,0],["15763",1835,1835,0],["15764",1624,1624,0],["15774",640,640,0],["15776",1182,1182,0],["15778",838,838,0],["15790",1632,1632,0],["15798",869,869,0],["15804",1962,1962,0],["15806",2397,2397,0],["15808",579,579,0],["15810",914,914,0],["15814",2343,2343,0],["15816",1111,1111,0],["15820",974,974,0],["15822",1372,1372,0],["15832",392,392,0],["15835",1764,1764,0],["15837",2736,2736,0],["15839",530,530,0],["15842",1730,1730,0],["15861",3742,3742,0],["15879",704,704,0],["15897",1221,1221,0],["17001",57115,57115,0],["17013",4907,4907,0],["17042",7478,7478,0],["17050",2696,2696,0],["17088",2681,2681,0],["17174",9989,9989,0],["17272",2409,2409,0],["17380",15673,15673,0],["17388",1729,1729,0],["17433",4282,4282,0],["17442",2226,2226,0],["17444",3615,3615,0],["17446",560,560,0],["17486",4662,4662,0],["17495",1681,1681,0],["17513",3020,3020,0],["17524",3694,3694,0],["17541",5083,5083,0],["17614",10623,10623,0],["17616",2720,2720,0],["17653",4077,4077,0],["17662",4931,4931,0],["17665",1192,1192,0],["17777",6142,6142,0],["17867",2391,2391,0],["17873",8393,8393,0],["17877",3156,3156,0],["18001",40676,40676,0],["18029",1294,1294,0],["18094",3521,3521,0],["18150",9931,9931,0],["18205",2906,2906,0],["18247",5828,5828,0],["18256",4015,4015,0],["18410",5142,5142,0],["18460",3297,3297,0],["18479",1153,1153,0],["18592",9246,9246,0],["18610",4831,4684,147],["18753",17087,17087,0],["18756",4159,4159,0],["18785",2488,2488,0],["18860",2296,2296,0],["19001",51511,49733,1778],["19022",3885,3885,0],["19050",6530,6530,0],["19075",5574,5574,0],["19100",11455,11455,0],["19110",6349,6349,0],["19130",8009,8009,0],["19137",9363,9346,17],["19142",6942,6942,0],["19212",6750,6750,0],["19256",11672,11608,64],["19290",1253,1253,0],["19300",4633,4633,0],["19318",12163,12163,0],["19355",7177,7177,0],["19364",4325,4325,0],["19392",3226,3226,0],["19397",5635,5635,0],["19418",6819,6819,0],["19450",4348,4348,0],["19455",7037,7037,0],["19473",6769,6769,0],["19513",3471,3471,0],["19517",9826,9826,0],["19532",9216,9216,0],["19533",2229,2229,0],["19548",9723,9723,0],["19573",10278,10278,0],["19585",3338,3338,0],["19622",2184,2184,0],["19693",2073,2073,0],["19698",20230,20230,0],["19701",1386,1386,0],["19743",8237,8237,0],["19760",2129,2129,0],["19780",4690,4690,0],["19785",1516,1516,0],["19807",7282,7282,0],["19809",7671,7671,0],["19821",7903,7903,0],["19824",4364,4364,0],["19845",4296,4296,0],["20001",79645,77242,2403],["20011",21573,21573,0],["20013",17752,17752,0],["20032",6071,6071,0],["20045",5935,5935,0],["20060",9806,9806,0],["20175",11294,11294,0],["20178",7906,7906,0],["20228",9193,9193,0],["20238",7975,7975,0],["20250",8902,8902,0],["20295",2622,2622,0],["20310",1060,1060,0],["20383",3897,3897,0],["20400",9182,9182,0],["20443",3339,3339,0],["20517",4835,4835,0],["20550",5332,5332,0],["20570",6406,6406,0],["20614",3776,3776,0],["20621",6587,6587,0],["20710",5268,5268,0],["20750",4573,4573,0],["20770",5358,5358,0],["20787",4969,4969,0],["23001",100657,97678,2979],["23068",13609,13609,0],["23079",6046,6046,0],["23090",5395,5395,0],["23162",19418,19418,0],["23168",3553,3553,0],["23182",10237,10237,0],["23189",15516,15516,0],["23300",4285,4285,0],["23350",3791,3791,0],["23417",30441,28696,1745],["23419",4955,4955,0],["23464",3740,3740,0],["23466",18542,18542,0],["23500",7898,7898,0],["23555",17905,17905,0],["23570",8036,8036,0],["23574",7570,7570,0],["23580",10680,10680,0],["23586",4103,4103,0],["23660",22709,22709,0],["23670",10869,10869,0],["23672",8301,8301,0],["23675",8524,8524,0],["23678",7098,7098,0],["23682",3588,3588,0],["23686",9670,9670,0],["23807",28934,28934,0],["23815",9654,9654,0],["23855",12169,11871,298],["25001",1972,1972,0],["25019",1370,1370,0],["25035",2539,2539,0],["25040",3187,3187,0],["25053",2514,2514,0],["25086",577,577,0],["25095",448,448,0],["25099",1998,1998,0],["25120",1194,1194,0],["25123",1578,1578,0],["25126",8361,8361,0],["25148",2678,2678,0],["25151",3452,3452,0],["25154",1650,1650,0],["25168",698,698,0],["25175",14198,14198,0],["25178",1930,1930,0],["25181",2631,2631,0],["25183",4401,4401,0],["25200",3665,3665,0],["25214",3326,3326,0],["25224",1709,1709,0],["25245",4971,4971,0],["25258",942,942,0],["25260",3384,3384,0],["25269",21614,21614,0],["25279",2369,2369,0],["25281",1490,1490,0],["25286",10130,10130,0],["25288",1459,1459,0],["25290",19584,19584,0],["25293",1149,1149,0],["25295",2086,2086,0],["25297",2383,2383,0],["25299",629,629,0],["25307",13781,13781,0],["25312",1591,1591,0],["25317",3046,3046,0],["25320",5140,5140,0],["25322",3704,3704,0],["25324",592,592,0],["25326",1273,1273,0],["25328",986,986,0],["25335",1470,1248,222],["25339",849,849,0],["25368",562,562,0],["25372",1378,1378,0],["25377",3392,3392,0],["25386",5108,5108,0],["25394",1898,1898,0],["25398",1223,1223,0],["25402",3442,3442,0],["25407",1950,1950,0],["25426",1330,1330,0],["25430",12015,11397,618],["25436",792,792,0],["25438",1983,1983,0],["25473",14345,14345,0],["25483",496,496,0],["25486",2503,2503,0],["25488",1461,1461,0],["25489",771,771,0],["25491",1239,1239,0],["25506",1168,1168,0],["25513",5928,5928,0],["25518",1131,1131,0],["25524",912,912,0],["25530",2178,2178,0],["25535",3010,3010,0],["25572",3756,3756,0],["25580",677,677,0],["25592",961,961,0],["25594",1413,1413,0],["25596",1766,1766,0],["25599",1419,1419,0],["25612",1693,1693,0],["25645",2352,2352,0],["25649",2452,2452,0],["25653",1142,1142,0],["25658",1807,1807,0],["25662",2033,2033,0],["25718",2569,2569,0],["25736",2346,2346,0],["25740",5758,5758,0],["25743",4471,4471,0],["25745",2408,2408,0],["25754",91714,68010,23704],["25758",4410,4410,0],["25769",3145,3145,0],["25772",3363,3363,0],["25777",1186,1186,0],["25779",1328,1328,0],["25781",1398,1398,0],["25785",3305,3305,0],["25793",1809,1809,0],["25797",1778,1778,0],["25799",3506,3506,0],["25805",1295,1295,0],["25807",518,518,0],["25815",2917,2917,0],["25817",6944,6944,0],["25823",1001,1001,0],["25839",2219,2219,0],["25841",1371,1371,0],["25843",7915,7915,0],["25845",1510,1510,0],["25851",871,871,0],["25862",1249,1249,0],["25867",887,887,0],["25871",458,458,0],["25873",4629,4629,0],["25875",5146,5146,0],["25878",3558,3558,0],["25885",3170,3170,0],["25898",1062,1062,0],["25899",16776,16776,0],["27001",37559,37559,0],["27006",3079,3079,0],["27025",8024,8024,0],["27050",1811,1811,0],["27073",3974,3974,0],["27075",3330,3330,0],["27077",6747,6747,0],["27099",4182,4182,0],["27135",1619,1619,0],["27150",2769,2769,0],["27160",1188,1188,0],["27205",3884,3884,0],["27245",2183,2183,0],["27250",4667,4667,0],["27361",9666,9666,0],["27372",1425,1425,0],["27413",3283,3283,0],["27425",2093,2093,0],["27430",4416,4416,0],["27450",4358,4358,0],["27491",2001,2001,0],["27495",2249,2249,0],["27580",1672,1672,0],["27600",2765,2765,0],["27615",9313,9313,0],["27660",1473,1473,0],["27745",1060,1060,0],["27787",7015,7015,0],["27800",3963,3963,0],["27810",1827,1827,0],["41001",61827,61827,0],["41006",8386,8386,0],["41013",2389,2389,0],["41016",4730,4730,0],["41020",6000,6000,0],["41026",804,804,0],["41078",1678,1678,0],["41132",6749,6749,0],["41206",1714,1714,0],["41244",882,882,0],["41298",16358,16358,0],["41306",7267,7267,0],["41319",5151,5151,0],["41349",1849,1849,0],["41357",2590,2590,0],["41359",6580,6580,0],["41378",3739,3739,0],["41396",16014,16014,0],["41483",1727,1727,0],["41503",2838,2838,0],["41518",1574,1574,0],["41524",5849,5849,0],["41530",3062,3062,0],["41548",3347,3347,0],["41551",30831,30831,0],["41615",4925,4925,0],["41660",2998,2998,0],["41668",7673,7673,0],["41676",2623,2623,0],["41770",5140,5003,137],["41791",5044,5044,0],["41797",2604,2604,0],["41799",3058,3058,0],["41801",1881,1881,0],["41807",4911,4911,0],["41872",1424,1424,0],["41885",1712,1712,0],["44001",49843,49843,0],["44035",5727,5727,0],["44078",7244,7244,0],["44090",7171,7171,0],["44098",2495,2495,0],["44110",1308,1308,0],["44279",9000,9000,0],["44378",3529,3529,0],["44420",668,668,0],["44430",46593,45817,776],["44560",20196,20196,0],["44650",10576,10576,0],["44847",29508,29508,0],["44855",2209,2209,0],["44874",5341,5341,0],["47001",96761,93649,3112],["47030",4326,4326,0],["47053",11113,11113,0],["47058",9413,9413,0],["47161",2037,2037,0],["47170",4607,4607,0],["47189",25453,25453,0],["47205",3622,3622,0],["47245",17697,17697,0],["47258",4442,4442,0],["47268",7172,7172,0],["47288",18337,18337,0],["47318",7703,7703,0],["47460",6113,6113,0],["47541",2577,2577,0],["47545",4283,4283,0],["47551",9229,9229,0],["47555",18095,18095,0],["47570",7525,7525,0],["47605",1868,1868,0],["47660",4852,4852,0],["47675",2070,2070,0],["47692",6525,6525,0],["47703",3297,3297,0],["47707",7249,7249,0],["47720",3311,3311,0],["47745",6030,6030,0],["47798",5149,5149,0],["47960",2574,2574,0],["47980",22513,22513,0],["50001",88473,78899,9574],["50006",16955,16955,0],["50110",1531,1531,0],["50124",1314,1314,0],["50150",2783,2783,0],["50223",1349,1349,0],["50226",4901,4901,0],["50245",537,537,0],["50251",1712,1712,0],["50270",977,977,0],["50287",3411,3411,0],["50313",15274,15274,0],["50318",2490,2490,0],["50325",2078,2078,0],["50330",2455,2455,0],["50350",4299,4299,0],["50370",2110,2110,0],["50400",2553,2553,0],["50450",2377,2377,0],["50568",7906,7906,0],["50573",8012,8012,0],["50577",1975,1975,0],["50590",2488,2488,0],["50606",3510,3510,0],["50680",3020,3020,0],["50683",1964,1964,0],["50686",406,406,0],["50689",5215,5215,0],["50711",4419,4419,0],["52001",69757,69757,0],["52019",2138,2138,0],["52022",1749,1749,0],["52036",1592,1592,0],["52051",2288,2288,0],["52079",14268,14268,0],["52083",1429,1429,0],["52110",4526,4526,0],["52203",2080,2080,0],["52207",2442,2442,0],["52210",951,951,0],["52215",3373,3373,0],["52224",1476,1476,0],["52227",7581,7581,0],["52233",2169,2169,0],["52240",2636,2636,0],["52250",9665,9665,0],["52254",1376,1376,0],["52256",1702,1702,0],["52258",3364,3364,0],["52260",3160,3160,0],["52287",1540,1540,0],["52317",3670,3670,0],["52320",2469,2469,0],["52323",1385,1385,0],["52352",1710,1710,0],["52354",1544,1544,0],["52356",23600,22701,899],["52378",4014,4014,0],["52381",1946,1946,0],["52385",1050,1050,0],["52390",2947,2947,0],["52399",6801,6801,0],["52405",2401,2401,0],["52411",2087,2087,0],["52418",2760,2760,0],["52427",3953,3953,0],["52435",1880,1880,0],["52473",3371,3371,0],["52480",744,744,0],["52490",7866,7866,0],["52506",1225,1225,0],["52520",2675,2675,0],["52540",3304,3304,0],["52560",2183,2183,0],["52565",1007,1007,0],["52573",1794,1794,0],["52585",3696,3696,0],["52612",4826,4826,0],["52621",5595,5595,0],["52678",7569,7569,0],["52683",4343,4343,0],["52685",1486,1486,0],["52687",4186,4186,0],["52693",3578,3578,0],["52694",1248,1248,0],["52696",3554,3554,0],["52699",2081,2081,0],["52720",1266,1266,0],["52786",4482,4482,0],["52788",2350,2350,0],["52835",63503,63285,218],["52838",9285,9285,0],["52885",2278,2278,0],["54001",117202,114399,2803],["54003",8197,8197,0],["54051",2061,2061,0],["54099",1658,1658,0],["54109",1490,1490,0],["54125",621,621,0],["54128",2397,2397,0],["54172",3444,3444,0],["54174",2167,2167,0],["54206",4929,4929,0],["54223",2033,2033,0],["54239",989,989,0],["54245",4197,4197,0],["54250",4338,4338,0],["54261",5821,5821,0],["54313",1108,1108,0],["54344",2683,2683,0],["54347",472,472,0],["54377",1353,1353,0],["54385",3445,3445,0],["54398",2066,2066,0],["54405",11322,11322,0],["54418",884,884,0],["54480",928,928,0],["54498",21749,21749,0],["54518",8937,8937,0],["54520",1148,1148,0],["54553",1973,1973,0],["54599",924,924,0],["54660",2521,2521,0],["54670",4292,4292,0],["54673",1223,1223,0],["54680",702,702,0],["54720",5812,5812,0],["54743",1008,1008,0],["54800",4202,4202,0],["54810",10495,10495,0],["54820",4157,4157,0],["54871",1061,1061,0],["54874",15249,15249,0],["63001",50754,50754,0],["63111",786,786,0],["63130",15076,15076,0],["63190",5461,5461,0],["63212",1391,1391,0],["63272",2767,2767,0],["63302",1979,1979,0],["63401",8407,8407,0],["63470",8555,8555,0],["63548",1905,1905,0],["63594",7027,7027,0],["63690",1406,1406,0],["66001",93049,93049,0],["66045",2887,2887,0],["66075",1716,1716,0],["66088",6345,6345,0],["66170",32531,30785,1746],["66318",3100,3100,0],["66383",1780,1780,0],["66400",7307,7307,0],["66440",4050,4050,0],["66456",4568,4568,0],["66572",4342,4342,0],["66594",7204,7204,0],["66682",14526,14526,0],["66687",3187,3187,0],["68001",81929,81771,158],["68013",326,315,11],["68020",802,787,15],["68051",2023,2011,12],["68077",4914,4824,90],["68079",1428,1372,56],["68081",41843,41843,0],["68092",1396,1396,0],["68101",2663,2519,144],["68121",405,351,54],["68132",443,344,99],["68147",1349,1253,96],["68152",932,814,118],["68160",504,411,93],["68162",1262,1218,44],["68167",3006,2956,50],["68169",411,411,0],["68176",600,567,33],["68179",837,834,3],["68190",8503,8420,83],["68207",1142,1007,135],["68209",554,519,35],["68211",937,837,100],["68217",1214,1142,72],["68229",2524,2295,229],["68235",3380,3284,96],["68245",400,400,0],["68250",1297,1243,54],["68255",3453,3403,50],["68264",565,516,49],["68266",871,788,83],["68271",1441,1403,38],["68276",33372,32971,401],["68296",559,537,22],["68298",853,820,33],["68307",22793,21444,1349],["68318",1323,1179,144],["68320",1275,1241,34],["68322",492,478,14],["68324",730,702,28],["68327",978,941,37],["68344",490,442,48],["68368",809,787,22],["68370",339,321,18],["68377",1561,1487,74],["68385",2986,2893,93],["68397",1008,995,13],["68406",7495,7313,182],["68418",2941,2912,29],["68425",688,595,93],["68432",5063,4913,150],["68444",1349,1304,45],["68464",2600,2499,101],["68468",1033,950,83],["68498",1107,1042,65],["68500",2558,2411,147],["68502",1037,900,137],["68522",377,377,0],["68524",483,470,13],["68533",955,955,0],["68547",25800,25616,184],["68549",812,760,52],["68572",3944,3906,38],["68573",1826,1826,0],["68575",9008,8910,98],["68615",6368,6347,21],["68655",6545,6545,0],["68669",2154,2039,115],["68673",591,562,29],["68679",9222,9038,184],["68682",534,497,37],["68684",853,762,91],["68686",615,583,32],["68689",7746,7637,109],["68705",488,488,0],["68720",978,921,57],["68745",2045,1856,189],["68755",5753,5535,218],["68770",2194,2086,108],["68773",1900,1882,18],["68780",784,784,0],["68820",1499,1481,18],["68855",1159,1112,47],["68861",4286,4242,44],["68867",392,355,37],["68872",1383,1332,51],["68895",1895,1815,80],["70001",52530,51774,756],["70110",2486,2486,0],["70124",3577,3577,0],["70204",1931,1931,0],["70215",16205,16205,0],["70221",4172,4172,0],["70230",1611,1611,0],["70233",2555,2555,0],["70235",5825,5825,0],["70265",4407,4407,0],["70400",3524,3524,0],["70418",5258,5258,0],["70429",10910,10910,0],["70473",3122,3122,0],["70508",5848,5848,0],["70523",3655,3655,0],["70670",10640,10640,0],["70678",7438,7438,0],["70702",3247,3247,0],["70708",14589,14589,0],["70713",15070,15070,0],["70717",4624,4624,0],["70742",7038,7038,0],["70771",5780,5780,0],["70820",7503,7503,0],["70823",5310,5310,0],["73001",91493,89250,2243],["73024",934,934,0],["73026",2043,2043,0],["73030",1582,1582,0],["73043",2406,2406,0],["73055",3024,3024,0],["73067",5699,5699,0],["73124",4140,4140,0],["73148",2004,2004,0],["73152",1338,1338,0],["73168",12513,12512,1],["73200",1902,1902,0],["73217",7243,7243,0],["73226",2142,2142,0],["73236",1975,1975,0],["73268",13135,13135,0],["73270",2249,2249,0],["73275",4542,4542,0],["73283",7113,7113,0],["73319",7220,7220,0],["73347",1823,1823,0],["73349",4928,4928,0],["73352",3033,3033,0],["73408",3944,3944,0],["73411",9639,9639,0],["73443",7560,7560,0],["73449",7811,7811,0],["73461",1023,1023,0],["73483",3773,3773,0],["73504",8369,8369,0],["73520",1876,1876,0],["73547",1272,1272,0],["73555",7619,7619,0],["73563",2181,2181,0],["73585",4789,4789,0],["73616",5606,5606,0],["73622",1583,1583,0],["73624",6500,6500,0],["73671",2958,2958,0],["73675",3915,3915,0],["73678",3143,3143,0],["73686",1692,1692,0],["73770",736,736,0],["73854",1616,1616,0],["73861",2941,2941,0],["73870",2212,2212,0],["73873",1368,1368,0],["76001",304357,199682,104675],["76020",2749,2749,0],["76036",3247,3247,0],["76041",3982,3982,0],["76054",1351,1351,0],["76100",3427,3427,0],["76109",78982,56880,22102],["76111",19809,19809,0],["76113",4553,4553,0],["76122",6002,6002,0],["76126",3400,3400,0],["76130",13441,13441,0],["76147",22998,22998,0],["76233",8006,8006,0],["76243",2387,2387,0],["76246",1599,1599,0],["76248",9736,9736,0],["76250",2259,2259,0],["76275",12452,12452,0],["76306",4340,4340,0],["76318",6463,6463,0],["76364",19995,19995,0],["76377",2833,2833,0],["76400",6838,6838,0],["76403",2815,2815,0],["76497",2702,2702,0],["76520",47512,47512,0],["76563",11343,11343,0],["76606",3816,3816,0],["76616",3860,3860,0],["76622",6666,6666,0],["76670",3214,3214,0],["76736",8581,8581,0],["76823",3358,3358,0],["76828",3864,3864,0],["76834",36856,36856,0],["76845",1088,1088,0],["76863",1577,1577,0],["76869",2231,2231,0],["76890",3355,3355,0],["76892",19453,19453,0],["76895",8854,8854,0],["81001",17599,17599,0],["81065",9540,9540,0],["81220",753,753,0],["81300",5125,5125,0],["81591",999,999,0],["81736",12502,12502,0],["81794",13429,13429,0],["85001",33909,33909,0],["85010",9275,9275,0],["85015",476,476,0],["85125",3728,3728,0],["85136",381,381,0],["85139",3675,3675,0],["85162",4220,4220,0],["85225",2193,2193,0],["85230",2874,2874,0],["85250",9296,9296,0],["85263",2489,2489,0],["85279",365,365,0],["85300",1149,1149,0],["85315",340,340,0],["85325",1748,1748,0],["85400",1784,1784,0],["85410",6066,6066,0],["85430",3810,3810,0],["85440",7344,7344,0],["86001",12971,12971,0],["86219",1050,1050,0],["86320",11195,11195,0],["86568",16897,16897,0],["86569",2961,2961,0],["86571",6172,6172,0],["86573",6681,6681,0],["86749",3941,3941,0],["86755",1256,1256,0],["86757",4540,4540,0],["86760",1713,1713,0],["86865",9534,9534,0],["86885",6248,6248,0],["88001",9030,9030,0],["88564",967,967,0],["91001",13784,13784,0],["91263",533,533,0],["91405",713,713,0],["91407",1174,744,430],["91460",180,0,180],["91530",178,178,0],["91536",210,210,0],["91540",2292,2292,0],["91669",434,434,0],["91798",983,983,0],["94001",6555,6555,0],["94343",1809,1809,0],["94663",398,398,0],["94883",426,426,0],["94884",443,443,0],["94885",64,64,0],["94886",195,195,0],["94887",167,167,0],["94888",158,158,0],["95001",14390,14390,0],["95015",2290,2290,0],["95025",3523,3523,0],["95200",1542,1542,0],["97001",6842,6842,0],["97161",719,719,0],["97511",938,938,0],["97666",389,389,0],["97889",349,349,0],["99001",4355,4355,0],["99524",2408,2408,0],["99624",883,883,0],["99773",7843,7843,0]],"2020":[["05001",436498,316990,119508],["05002",3337,3337,0],["05004",353,353,0],["05021",818,818,0],["05030",4705,4472,233],["05031",5040,5040,0],["05034",7864,7718,146],["05036",1193,1193,0],["05038",2155,2155,0],["05040",4438,4438,0],["05042",5362,5108,254],["05044",1429,1429,0],["05045",32768,30350,2418],["05051",8994,8948,46],["05055",1507,1507,0],["05059",577,577,0],["05079",8257,7727,530],["05086",1578,1578,0],["05088",89550,57197,32353],["05091",1607,1607,0],["05093",3331,3331,0],["05101",4948,4624,324],["05107",1729,1729,0],["05113",1907,1907,0],["05120",7603,7603,0],["05125",1872,1872,0],["05129",12770,10635,2135],["05134",1922,1922,0],["05138",3230,3230,0],["05142",805,805,0],["05145",743,743,0],["05147",13400,13190,210],["05148",10901,10131,770],["05150",642,642,0],["05154",22973,20954,2019],["05172",15653,15063,590],["05190",1574,1574,0],["05197",3329,3323,6],["05206",665,665,0],["05209",3443,3443,0],["05212",13803,11180,2623],["05234",6386,6386,0],["05237",4208,3770,438],["05240",1714,1714,0],["05250",15119,14555,564],["05264",2101,1600,501],["05266",32605,15595,17010],["05282",3193,3183,10],["05284",5281,5281,0],["05306",1317,1317,0],["05308",8726,6438,2288],["05310",1508,1508,0],["05313",1850,1850,0],["05315",1218,1218,0],["05318",7401,6437,964],["05321",1540,1540,0],["05347",936,936,0],["05353",1108,1108,0],["05360",43291,33858,9433],["05361",4721,4721,0],["05364",2614,2614,0],["05368",2079,2079,0],["05376",11210,9392,1818],["05380",15155,6969,8186],["05390",1570,1570,0],["05400",4195,3710,485],["05411",1922,1922,0],["05425",1861,1861,0],["05440",12738,10797,1941],["05467",1079,1079,0],["05475",1319,1319,0],["05480",5921,5921,0],["05483",1901,1901,0],["05490",15602,15602,0],["05495",7394,7372,22],["05501",512,512,0],["05541",3612,3569,43],["05543",1620,1620,0],["05576",1468,1468,0],["05579",8067,7675,392],["05585",2685,2685,0],["05591",4271,4271,0],["05604",7995,7963,32],["05607",4813,2913,1900],["05615",25153,19857,5296],["05628",1814,1814,0],["05631",12007,7457,4550],["05642",3224,3224,0],["05647",1528,1525,3],["05649",3332,3332,0],["05652",1319,1319,0],["05656",2806,2806,0],["05658",631,631,0],["05659",6506,6506,0],["05660",3079,3079,0],["05664",5391,5083,308],["05665",8900,8900,0],["05667",2597,2597,0],["05670",3972,3972,0],["05674",3485,3485,0],["05679",3844,3844,0],["05686",8467,7359,1108],["05690",2803,2740,63],["05697",7358,6279,1079],["05736",9032,8347,685],["05756",6818,6818,0],["05761",2988,2932,56],["05789",2885,2885,0],["05790",6729,6653,76],["05792",950,950,0],["05809",1391,1391,0],["05819",1228,1228,0],["05837",44651,37904,6747],["05842",1534,1534,0],["05847",7232,7165,67],["05854",3515,3515,0],["05856",868,868,0],["05858",3008,3008,0],["05861",1964,1892,72],["05873",2451,2451,0],["05885",1307,1307,0],["05887",9565,8817,748],["05890",4370,4370,0],["05893",4327,4023,304],["05895",8998,8780,218],["08001",270304,202209,68095],["08078",13584,11590,1994],["08137",5588,5554,34],["08141",3623,3393,230],["08296",12564,9624,2940],["08372",3943,3560,383],["08421",6318,6006,312],["08433",29312,15810,13502],["08436",4582,4573,9],["08520",6516,6087,429],["08549",1032,1032,0],["08558",3443,3343,100],["08560",5459,5277,182],["08573",16752,6001,10751],["08606",5818,5818,0],["08634",7284,6596,688],["08638",22041,18965,3076],["08675",3111,3111,0],["08685",4871,4027,844],["08758",128075,52127,75948],["08770",2739,2739,0],["08832",2458,2356,102],["08849",1659,1637,22],["11001",1306724,797970,508754],["13001",242454,160043,82411],["13006",6715,6715,0],["13030",2682,2682,0],["13042",2145,2145,0],["13052",18048,15213,2835],["13062",2013,2013,0],["13074",5061,5061,0],["13140",7028,6734,294],["13160",2318,2277,41],["13188",3717,3717,0],["13212",4240,4240,0],["13222",3474,3395,79],["13244",18964,17573,1391],["13248",1631,1631,0],["13268",2130,2130,0],["13300",3484,3484,0],["13430",32893,28709,4184],["13433",6892,6786,106],["13440",2520,2520,0],["13442",13313,13313,0],["13458",3321,3321,0],["13468",12776,11826,950],["13473",5245,5245,0],["13490",2156,2156,0],["13549",6582,6582,0],["13580",1533,1533,0],["13600",2289,2289,0],["13620",1902,1902,0],["13647",3957,3957,0],["13650",2573,2573,0],["13654",5687,5653,34],["13655",2605,2605,0],["13657",8475,8175,300],["13667",4869,4869,0],["13670",7732,7654,78],["13673",3879,3698,181],["13683",4459,4459,0],["13688",9707,9458,249],["13744",4035,4035,0],["13760",1946,1946,0],["13780",3587,3587,0],["13810",6509,6509,0],["13836",23574,15024,8550],["13838",3644,3604,40],["13873",5680,5176,504],["13894",3101,2799,302],["15001",39027,24014,15013],["15022",213,213,0],["15047",3212,3091,121],["15051",1115,1115,0],["15087",1563,1470,93],["15090",277,277,0],["15092",233,233,0],["15097",963,963,0],["15104",803,803,0],["15106",394,394,0],["15109",826,826,0],["15114",117,117,0],["15131",485,485,0],["15135",460,460,0],["15162",601,601,0],["15172",470,470,0],["15176",12882,9968,2914],["15180",637,637,0],["15183",1893,1893,0],["15185",997,997,0],["15187",489,489,0],["15189",885,885,0],["15204",3424,2965,459],["15212",586,586,0],["15215",428,428,0],["15218",492,492,0],["15223",1651,1651,0],["15224",790,790,0],["15226",326,326,0],["15232",789,789,0],["15236",339,339,0],["15238",25780,17015,8765],["15244",900,851,49],["15248",498,498,0],["15272",844,829,15],["15276",528,528,0],["15293",619,619,0],["15296",944,944,0],["15299",2875,2397,478],["15317",272,272,0],["15322",1908,1744,164],["15325",477,477,0],["15332",760,760,0],["15362",387,387,0],["15367",1198,1198,0],["15368",740,740,0],["15377",537,537,0],["15380",378,378,0],["15401",200,200,0],["15403",442,442,0],["15407",3370,2648,722],["15425",645,645,0],["15442",943,943,0],["15455",1464,1381,83],["15464",840,840,0],["15466",905,905,0],["15469",4082,3675,407],["15476",946,884,62],["15480",1654,1587,67],["15491",3172,1923,1249],["15494",926,878,48],["15500",415,374,41],["15507",1444,1444,0],["15511",303,303,0],["15514",518,518,0],["15516",7142,5223,1919],["15518",454,454,0],["15522",325,325,0],["15531",1348,1348,0],["15533",466,466,0],["15537",695,589,106],["15542",1252,1252,0],["15550",329,329,0],["15572",11333,9912,1421],["15580",951,951,0],["15599",2058,1747,311],["15600",1258,1258,0],["15621",393,393,0],["15632",2448,2223,225],["15638",946,742,204],["15646",4884,4063,821],["15660",254,254,0],["15664",764,764,0],["15667",971,933,38],["15673",633,633,0],["15676",668,668,0],["15681",1253,1253,0],["15686",1402,1328,74],["15690",657,611,46],["15693",1911,1588,323],["15696",558,558,0],["15720",364,364,0],["15723",229,229,0],["15740",1644,1610,34],["15753",1667,1661,6],["15755",1529,1529,0],["15757",2047,1792,255],["15759",29064,19585,9479],["15761",508,508,0],["15762",572,572,0],["15763",1348,1348,0],["15764",1819,1578,241],["15774",352,352,0],["15776",960,960,0],["15778",466,466,0],["15790",1093,1093,0],["15798",549,549,0],["15804",1477,1477,0],["15806",2160,1955,205],["15808",527,517,10],["15810",619,619,0],["15814",2041,1946,95],["15816",917,917,0],["15820",726,726,0],["15822",994,994,0],["15832",313,313,0],["15835",1423,1423,0],["15837",2079,1940,139],["15839",356,356,0],["15842",1213,1213,0],["15861",3062,2778,284],["15879",396,396,0],["15897",872,872,0],["17001",58896,44107,14789],["17013",3841,3841,0],["17042",5645,5506,139],["17050",2075,2075,0],["17088",1992,1992,0],["17174",9140,8206,934],["17272",1543,1543,0],["17380",13588,12008,1580],["17388",1072,1072,0],["17433",3074,3074,0],["17442",1818,1818,0],["17444",2573,2573,0],["17446",341,341,0],["17486",3982,3912,70],["17495",1421,1421,0],["17513",2257,2257,0],["17524",2937,2937,0],["17541",3599,3599,0],["17614",9203,8978,225],["17616",1974,1974,0],["17653",2739,2739,0],["17662",3901,3901,0],["17665",997,997,0],["17777",5178,5069,109],["17867",1850,1850,0],["17873",10329,7199,3130],["17877",2216,2152,64],["18001",42618,33093,9525],["18029",970,970,0],["18094",2465,2465,0],["18150",8523,8523,0],["18205",2091,2091,0],["18247",4534,4401,133],["18256",3345,3345,0],["18410",3661,3661,0],["18460",2281,2281,0],["18479",861,861,0],["18592",6404,6404,0],["18610",3434,3434,0],["18753",13953,13270,683],["18756",2610,2610,0],["18785",1621,1621,0],["18860",1488,1488,0],["19001",62794,44034,18760],["19022",2683,2683,0],["19050",6419,6341,78],["19075",3744,3744,0],["19100",5977,5977,0],["19110",5805,5805,0],["19130",7327,7006,321],["19137",9874,9874,0],["19142",6648,6249,399],["19212",5286,5077,209],["19256",9246,8848,398],["19290",1093,1093,0],["19300",3636,3563,73],["19318",8545,8545,0],["19355",7123,7123,0],["19364",3900,3900,0],["19392",1814,1814,0],["19397",2949,2949,0],["19418",5611,5611,0],["19450",2873,2873,0],["19455",6386,5904,482],["19473",6668,6668,0],["19513",1809,1809,0],["19517",9337,9337,0],["19532",6739,6377,362],["19533",1915,1915,0],["19548",8281,7510,771],["19573",9803,6762,3041],["19585",2741,2741,0],["19622",1674,1674,0],["19693",1286,1286,0],["19698",22561,19356,3205],["19701",1002,1002,0],["19743",6759,6759,0],["19760",1634,1634,0],["19780",4488,4488,0],["19785",1071,1071,0],["19807",6058,5644,414],["19809",7534,7534,0],["19821",6512,6512,0],["19824",4354,4304,50],["19845",3481,2791,690],["20001",121231,86727,34504],["20011",24976,20446,4530],["20013",17796,16095,1701],["20032",5420,5420,0],["20045",6427,5898,529],["20060",11156,9771,1385],["20175",10045,9968,77],["20178",7808,7329,479],["20228",9655,9125,530],["20238",8378,7762,616],["20250",11872,10634,1238],["20295",2586,2586,0],["20310",857,857,0],["20383",3859,3859,0],["20400",12703,11536,1167],["20443",2897,2897,0],["20517",4102,3766,336],["20550",5290,4977,313],["20570",6847,6847,0],["20614",3506,3506,0],["20621",7733,7100,633],["20710",5838,5377,461],["20750",4844,4532,312],["20770",5840,5455,385],["20787",4430,4430,0],["23001",108811,80358,28453],["23068",11929,11323,606],["23079",5590,5100,490],["23090",4420,4420,0],["23162",22306,17974,4332],["23168",2868,2868,0],["23182",10726,9553,1173],["23189",13545,13337,208],["23300",3264,3221,43],["23350",3371,3219,152],["23417",27204,23514,3690],["23419",4323,4208,115],["23464",3464,3321,143],["23466",22239,18675,3564],["23500",6843,6771,72],["23555",16622,14592,2030],["23570",7374,7374,0],["23574",5512,5398,114],["23580",10929,10471,458],["23586",3887,3761,126],["23660",22723,20543,2180],["23670",10577,9946,631],["23672",7619,7222,397],["23675",7718,7548,170],["23678",5826,5622,204],["23682",3109,3088,21],["23686",8326,8162,164],["23807",27740,25766,1974],["23815",10586,10586,0],["23855",8985,8985,0],["25001",1923,1601,322],["25019",1110,1110,0],["25035",2794,2597,197],["25040",2693,2458,235],["25053",1991,1956,35],["25086",408,408,0],["25095",405,405,0],["25099",2201,1881,320],["25120",956,956,0],["25123",1678,1483,195],["25126",16123,8232,7891],["25148",2125,2125,0],["25151",3474,3075,399],["25154",1343,1343,0],["25168",514,514,0],["25175",31086,15566,15520],["25178",1818,1818,0],["25181",2340,2130,210],["25183",4312,3969,343],["25200",4845,3869,976],["25214",14653,3251,11402],["25224",1571,1571,0],["25245",4777,4575,202],["25258",740,740,0],["25260",5654,3239,2415],["25269",30459,18704,11755],["25279",2168,2162,6],["25281",1286,1286,0],["25286",20490,10363,10127],["25288",1581,1581,0],["25290",27467,18583,8884],["25293",821,821,0],["25295",3559,2511,1048],["25297",1701,1701,0],["25299",546,546,0],["25307",22664,11668,10996],["25312",1686,1572,114],["25317",3150,3150,0],["25320",6135,4345,1790],["25322",3376,3232,144],["25324",457,457,0],["25326",1172,1137,35],["25328",773,773,0],["25335",1382,1242,140],["25339",699,699,0],["25368",434,434,0],["25372",911,911,0],["25377",9750,3400,6350],["25386",5866,4553,1313],["25394",1679,1679,0],["25398",956,956,0],["25402",3380,3238,142],["25407",2107,2013,94],["25426",1113,1080,33],["25430",23257,11881,11376],["25436",534,534,0],["25438",1759,1759,0],["25473",28335,17742,10593],["25483",354,354,0],["25486",3212,2587,625],["25488",1941,1527,414],["25489",553,553,0],["25491",1214,1214,0],["25506",913,913,0],["25513",5054,4785,269],["25518",738,738,0],["25524",948,948,0],["25530",2230,2230,0],["25535",2486,2486,0],["25572",3900,3358,542],["25580",536,536,0],["25592",804,804,0],["25594",1627,1627,0],["25596",1267,1267,0],["25599",1274,1259,15],["25612",1879,1681,198],["25645",2030,1892,138],["25649",1888,1888,0],["25653",938,938,0],["25658",2014,1947,67],["25662",1740,1727,13],["25718",2206,2206,0],["25736",2724,2344,380],["25740",7522,5382,2140],["25743",4234,4016,218],["25745",2663,2250,413],["25754",136251,68955,67296],["25758",5737,3788,1949],["25769",4236,2315,1921],["25772",3155,2942,213],["25777",1024,1024,0],["25779",1051,1027,24],["25781",1306,1280,26],["25785",4675,3055,1620],["25793",1969,1969,0],["25797",1729,1560,169],["25799",7137,3099,4038],["25805",924,924,0],["25807",412,412,0],["25815",2550,2448,102],["25817",9783,7858,1925],["25823",756,756,0],["25839",1690,1690,0],["25841",1205,1205,0],["25843",10648,7098,3550],["25845",1206,1206,0],["25851",651,651,0],["25862",1119,1119,0],["25867",712,712,0],["25871",368,368,0],["25873",4644,3659,985],["25875",6045,5025,1020],["25878",2878,2878,0],["25885",2476,2476,0],["25898",852,852,0],["25899",27024,16211,10813],["27001",38469,36082,2387],["27006",3443,3443,0],["27025",7780,7780,0],["27050",1407,1407,0],["27073",3854,3854,0],["27075",2972,2972,0],["27077",5532,5532,0],["27099",4220,4220,0],["27135",1461,1461,0],["27150",3394,3394,0],["27160",1202,1202,0],["27205",3174,3174,0],["27245",2403,2403,0],["27250",4166,4166,0],["27361",9254,8992,262],["27372",1335,1335,0],["27413",3426,3426,0],["27425",1861,1861,0],["27430",3033,3033,0],["27450",2509,2509,0],["27491",1982,1982,0],["27495",2315,2315,0],["27580",1620,1620,0],["27600",2261,2261,0],["27615",10406,10406,0],["27660",1084,1084,0],["27745",813,813,0],["27787",5773,5773,0],["27800",3385,3385,0],["27810",1633,1633,0],["41001",78415,57118,21297],["41006",7873,7651,222],["41013",2092,2092,0],["41016",3470,3470,0],["41020",5116,5018,98],["41026",648,648,0],["41078",1266,1266,0],["41132",6490,5436,1054],["41206",1368,1368,0],["41244",789,789,0],["41298",17145,14895,2250],["41306",5779,5749,30],["41319",4254,4150,104],["41349",1501,1501,0],["41357",2337,2337,0],["41359",6005,5845,160],["41378",3185,3166,19],["41396",14828,13846,982],["41483",1635,1635,0],["41503",2670,2575,95],["41518",1338,1338,0],["41524",6699,5038,1661],["41530",2610,2610,0],["41548",3398,3179,219],["41551",33189,29016,4173],["41615",5220,4247,973],["41660",2615,2615,0],["41668",6797,6524,273],["41676",2358,2358,0],["41770",5300,5144,156],["41791",4029,3965,64],["41797",2251,2244,7],["41799",2594,2594,0],["41801",1536,1536,0],["41807",4484,4001,483],["41872",1343,1343,0],["41885",1403,1403,0],["44001",63444,53405,10039],["44035",8846,7304,1542],["44078",8170,7515,655],["44090",8565,8305,260],["44098",2767,2767,0],["44110",1660,1355,305],["44279",12659,11422,1237],["44378",5111,4356,755],["44420",712,712,0],["44430",52809,49100,3709],["44560",30335,30335,0],["44650",12027,10281,1746],["44847",50570,50508,62],["44855",2492,2232,260],["44874",6776,5441,1335],["47001",131297,99279,32018],["47030",4799,4580,219],["47053",9840,9327,513],["47058",8781,8330,451],["47161",2099,2099,0],["47170",5563,5420,143],["47189",31359,24913,6446],["47205",2931,2931,0],["47245",20816,19744,1072],["47258",4272,4272,0],["47268",6707,6638,69],["47288",21037,17870,3167],["47318",7412,7412,0],["47460",6120,6120,0],["47541",2311,2311,0],["47545",4663,4592,71],["47551",9977,9209,768],["47555",16129,15386,743],["47570",7086,6984,102],["47605",1833,1833,0],["47660",5842,5805,37],["47675",2167,2167,0],["47692",6565,6565,0],["47703",3420,3420,0],["47707",6641,6571,70],["47720",3430,3430,0],["47745",6601,6208,393],["47798",4352,4352,0],["47960",2358,2358,0],["47980",22348,21359,989],["50001",114588,80516,34072],["50006",19553,15444,4109],["50110",1546,1546,0],["50124",1377,1377,0],["50150",3327,3027,300],["50223",1389,1389,0],["50226",5418,4839,579],["50245",468,468,0],["50251",1747,1747,0],["50270",946,946,0],["50287",2642,2619,23],["50313",16518,15505,1013],["50318",3378,2208,1170],["50325",2095,2095,0],["50330",2279,2173,106],["50350",4625,4625,0],["50370",2351,2351,0],["50400",2516,2351,165],["50450",2167,2167,0],["50568",13566,12511,1055],["50573",8434,7730,704],["50577",1837,1780,57],["50590",2577,2577,0],["50606",4614,3788,826],["50680",2740,2740,0],["50683",1555,1555,0],["50686",333,333,0],["50689",5363,4898,465],["50711",4309,3964,345],["52001",74343,53983,20360],["52019",1412,1412,0],["52022",1461,1461,0],["52036",1085,1085,0],["52051",1208,1208,0],["52079",11453,11453,0],["52083",991,991,0],["52110",3783,3564,219],["52203",1320,1320,0],["52207",1529,1529,0],["52210",796,796,0],["52215",2577,2518,59],["52224",1180,1180,0],["52227",6319,6271,48],["52233",1500,1500,0],["52240",2485,2206,279],["52250",7630,7630,0],["52254",942,942,0],["52256",1157,1157,0],["52258",2278,2278,0],["52260",2151,2151,0],["52287",938,938,0],["52317",2698,2626,72],["52320",1567,1567,0],["52323",1110,1110,0],["52352",1277,1277,0],["52354",1039,1039,0],["52356",25745,20551,5194],["52378",3232,3232,0],["52381",1432,1432,0],["52385",932,932,0],["52390",2028,2028,0],["52399",5455,5306,149],["52405",1863,1863,0],["52411",1436,1436,0],["52418",1835,1835,0],["52427",3182,3182,0],["52435",1564,1564,0],["52473",1920,1920,0],["52480",550,550,0],["52490",7077,7077,0],["52506",962,962,0],["52520",2011,2011,0],["52540",2544,2544,0],["52560",1998,1998,0],["52565",729,729,0],["52573",1384,1381,3],["52585",3196,3110,86],["52612",4273,4228,45],["52621",3414,3414,0],["52678",4688,4688,0],["52683",3192,3192,0],["52685",1221,1221,0],["52687",2923,2923,0],["52693",2345,2345,0],["52694",995,995,0],["52696",2696,2696,0],["52699",1409,1409,0],["52720",987,987,0],["52786",2868,2868,0],["52788",1495,1495,0],["52835",51850,49093,2757],["52838",7970,7896,74],["52885",1605,1605,0],["54001",159661,116410,43251],["54003",7561,7316,245],["54051",1693,1693,0],["54099",1434,1434,0],["54109",1137,1137,0],["54125",543,543,0],["54128",1900,1900,0],["54172",3544,3252,292],["54174",2205,2205,0],["54206",5066,5066,0],["54223",1390,1390,0],["54239",867,867,0],["54245",2733,2733,0],["54250",6228,6228,0],["54261",6212,5885,327],["54313",1120,1120,0],["54344",2564,2564,0],["54347",530,530,0],["54377",1027,1027,0],["54385",2838,2838,0],["54398",1692,1692,0],["54405",15805,11891,3914],["54418",698,698,0],["54480",760,760,0],["54498",23905,20314,3591],["54518",9584,7645,1939],["54520",1081,1081,0],["54553",2253,2091,162],["54599",1071,1071,0],["54660",2083,2083,0],["54670",2646,2646,0],["54673",1441,1441,0],["54680",629,629,0],["54720",5707,5586,121],["54743",1296,1296,0],["54800",4567,4525,42],["54810",16937,16457,480],["54820",3472,3472,0],["54871",996,996,0],["54874",19986,16438,3548],["63001",47487,38368,9119],["63111",506,506,0],["63130",12433,11273,1160],["63190",4211,3857,354],["63212",1029,1029,0],["63272",2128,2128,0],["63302",1376,1376,0],["63401",6014,6014,0],["63470",6507,6507,0],["63548",1390,1390,0],["63594",5288,5202,86],["63690",2510,1130,1380],["66001",95112,73365,21747],["66045",2023,2023,0],["66075",1151,1151,0],["66088",4614,4614,0],["66170",34945,28510,6435],["66318",2340,2340,0],["66383",1344,1344,0],["66400",5751,5693,58],["66440",3233,3128,105],["66456",3727,3727,0],["66572",5437,5437,0],["66594",6011,6011,0],["66682",13558,12361,1197],["66687",2314,2314,0],["68001",110284,78356,31928],["68013",252,252,0],["68020",622,609,13],["68051",1646,1571,75],["68077",6674,4355,2319],["68079",1476,1240,236],["68081",55759,42353,13406],["68092",1193,1125,68],["68101",2098,2031,67],["68121",291,291,0],["68132",428,402,26],["68147",1053,1007,46],["68152",851,798,53],["68160",430,362,68],["68162",1517,1431,86],["68167",2481,2449,32],["68169",445,419,26],["68176",459,451,8],["68179",657,648,9],["68190",7486,7080,406],["68207",1031,943,88],["68209",537,537,0],["68211",621,611,10],["68217",946,914,32],["68229",2144,2055,89],["68235",3273,3159,114],["68245",333,333,0],["68250",930,895,35],["68255",2877,2835,42],["68264",369,369,0],["68266",679,635,44],["68271",1046,1012,34],["68276",50570,31672,18898],["68296",557,541,16],["68298",797,771,26],["68307",32892,26346,6546],["68318",1133,1052,81],["68320",929,910,19],["68322",377,351,26],["68324",431,431,0],["68327",822,791,31],["68344",439,406,33],["68368",554,535,19],["68370",321,312,9],["68377",1242,1218,24],["68385",2360,2300,60],["68397",640,633,7],["68406",8775,6631,2144],["68418",2557,2491,66],["68425",401,377,24],["68432",4910,4552,358],["68444",1271,1214,57],["68464",2236,2125,111],["68468",659,611,48],["68498",842,827,15],["68500",2169,2130,39],["68502",711,661,50],["68522",251,251,0],["68524",506,501,5],["68533",871,818,53],["68547",35221,28399,6822],["68549",682,667,15],["68572",3325,3245,80],["68573",1698,1647,51],["68575",8656,8464,192],["68615",5767,5708,59],["68655",8395,7375,1020],["68669",1663,1589,74],["68673",398,394,4],["68679",14060,8905,5155],["68682",424,399,25],["68684",631,587,44],["68686",440,406,34],["68689",6413,6230,183],["68705",399,373,26],["68720",734,726,8],["68745",1979,1826,153],["68755",6412,4665,1747],["68770",1943,1873,70],["68773",1315,1315,0],["68780",689,665,24],["68820",1473,1342,131],["68855",1073,966,107],["68861",3761,3202,559],["68867",287,275,12],["68872",1285,1150,135],["68895",2019,1664,355],["70001",69596,52918,16678],["70110",2314,2068,246],["70124",3149,3149,0],["70204",2118,2118,0],["70215",16551,14161,2390],["70221",4323,4086,237],["70230",941,941,0],["70233",2351,2338,13],["70235",5471,5249,222],["70265",4577,4392,185],["70400",3137,3137,0],["70418",5290,4794,496],["70429",10768,10501,267],["70473",3163,3052,111],["70508",5950,5543,407],["70523",3632,3632,0],["70670",12065,11031,1034],["70678",6695,6695,0],["70702",2827,2656,171],["70708",14632,13660,972],["70713",14540,14226,314],["70717",4341,4341,0],["70742",6821,6178,643],["70771",5920,5920,0],["70820",8297,6898,1399],["70823",5268,5075,193],["73001",109129,80810,28319],["73024",764,764,0],["73026",1467,1467,0],["73030",1011,1011,0],["73043",1949,1864,85],["73055",2333,2333,0],["73067",4762,4674,88],["73124",3767,3429,338],["73148",2086,1730,356],["73152",1125,1125,0],["73168",11689,10496,1193],["73200",1472,1472,0],["73217",5598,5521,77],["73226",1836,1818,18],["73236",1660,1629,31],["73268",15936,10549,5387],["73270",1809,1809,0],["73275",5259,3667,1592],["73283",6243,5580,663],["73319",5911,5262,649],["73347",1342,1342,0],["73349",4569,3690,879],["73352",2584,2490,94],["73408",3562,3277,285],["73411",7800,7236,564],["73443",7647,6476,1171],["73449",9343,6900,2443],["73461",778,763,15],["73483",3148,2638,510],["73504",6505,6367,138],["73520",1679,1664,15],["73547",976,976,0],["73555",7228,7028,200],["73563",1833,1735,98],["73585",4748,3796,952],["73616",5392,5279,113],["73622",1181,1181,0],["73624",5326,5254,72],["73671",2633,2467,166],["73675",3117,3117,0],["73678",2567,2567,0],["73686",1302,1302,0],["73770",577,577,0],["73854",975,975,0],["73861",2658,2658,0],["73870",1879,1879,0],["73873",963,937,26],["76001",371932,192111,179821],["76020",2321,2321,0],["76036",3271,2789,482],["76041",3206,3048,158],["76054",1051,1051,0],["76100",2983,2983,0],["76109",79904,60626,19278],["76111",22659,15822,6837],["76113",4177,3515,662],["76122",4397,4192,205],["76126",3180,3016,164],["76130",17700,12270,5430],["76147",22599,19246,3353],["76233",7850,6559,1291],["76243",1646,1646,0],["76246",1112,1112,0],["76248",11415,7696,3719],["76250",2059,2059,0],["76275",11528,9104,2424],["76306",4342,3830,512],["76318",6124,5354,770],["76364",27199,19330,7869],["76377",2471,2415,56],["76400",5820,5513,307],["76403",2121,2070,51],["76497",1820,1820,0],["76520",59666,45398,14268],["76563",9526,8296,1230],["76606",3385,3270,115],["76616",2805,2805,0],["76622",6561,5323,1238],["76670",3010,2548,462],["76736",6620,5984,636],["76823",2489,2489,0],["76828",3468,3468,0],["76834",37056,26811,10245],["76845",905,905,0],["76863",1107,1107,0],["76869",1892,1892,0],["76890",2775,2712,63],["76892",24055,16688,7367],["76895",7742,6864,878],["81001",23663,20523,3140],["81065",10347,10115,232],["81220",901,901,0],["81300",5834,5772,62],["81591",883,883,0],["81736",13600,13092,508],["81794",15776,15132,644],["85001",41806,34860,6946],["85010",8368,7792,576],["85015",427,427,0],["85125",3592,3592,0],["85136",275,275,0],["85139",3454,3405,49],["85162",3864,3706,158],["85225",1865,1865,0],["85230",2948,2948,0],["85250",9194,8997,197],["85263",2542,2542,0],["85279",175,175,0],["85300",691,691,0],["85315",302,302,0],["85325",1670,1670,0],["85400",1679,1679,0],["85410",5951,5492,459],["85430",3325,3286,39],["85440",7926,7342,584],["86001",12066,11275,791],["86219",866,866,0],["86320",9616,9483,133],["86568",16544,15855,689],["86569",2426,2426,0],["86571",5502,5502,0],["86573",6195,6195,0],["86749",3445,3386,59],["86755",1041,1041,0],["86757",4338,4322,16],["86760",1330,1330,0],["86865",7538,7375,163],["86885",6608,6218,390],["88001",10646,7793,2853],["88564",960,960,0],["91001",15336,14604,732],["91263",408,408,0],["91405",726,726,0],["91407",1052,1052,0],["91430",26,26,0],["91460",261,261,0],["91530",207,207,0],["91536",253,253,0],["91540",1924,1924,0],["91669",472,472,0],["91798",840,840,0],["94001",8454,8320,134],["94343",2888,2888,0],["94883",471,471,0],["94884",526,526,0],["94885",75,75,0],["94886",353,353,0],["94887",287,287,0],["94888",202,202,0],["95001",15520,13922,1598],["95015",2094,2094,0],["95025",3297,3297,0],["95200",963,963,0],["97001",8253,8147,106],["97161",255,255,0],["97511",1083,1083,0],["97666",137,137,0],["97889",303,303,0],["99001",6435,6100,335],["99524",2734,2734,0],["99624",1126,1126,0],["99773",11977,11977,0]],"2021":[["05001",425983,312755,113228],["05002",3284,3284,0],["05004",381,381,0],["05021",786,786,0],["05030",4632,4411,221],["05031",4998,4998,0],["05034",7725,7593,132],["05036",1129,1129,0],["05038",2094,2094,0],["05040",4382,4382,0],["05042",5331,5095,236],["05044",1454,1454,0],["05045",32771,30252,2519],["05051",8747,8684,63],["05055",1524,1524,0],["05059",527,527,0],["05079",8231,7703,528],["05086",1515,1515,0],["05088",85293,54883,30410],["05091",1618,1618,0],["05093",3288,3288,0],["05101",4922,4591,331],["05107",1740,1740,0],["05113",1844,1844,0],["05120",7633,7633,0],["05125",1830,1830,0],["05129",12642,10518,2124],["05134",1947,1947,0],["05138",3097,3097,0],["05142",699,699,0],["05145",765,765,0],["05147",13568,13335,233],["05148",10999,10191,808],["05150",649,649,0],["05154",22538,20556,1982],["05172",15760,15189,571],["05190",1559,1559,0],["05197",3450,3446,4],["05206",679,679,0],["05209",3353,3353,0],["05212",13522,11148,2374],["05234",6424,6424,0],["05237",4200,3745,455],["05240",1761,1761,0],["05250",14965,14509,456],["05264",2161,1582,579],["05266",32426,15661,16765],["05282",2947,2947,0],["05284",5437,5437,0],["05306",1364,1364,0],["05308",8750,6477,2273],["05310",1405,1405,0],["05313",1930,1930,0],["05315",1133,1133,0],["05318",7693,6756,937],["05321",1569,1569,0],["05347",934,934,0],["05353",1055,1055,0],["05360",42522,33509,9013],["05361",4612,4612,0],["05364",2578,2578,0],["05368",2057,2057,0],["05376",11287,9334,1953],["05380",14715,6821,7894],["05390",1500,1500,0],["05400",4134,3656,478],["05411",1872,1872,0],["05425",1913,1913,0],["05440",12435,10832,1603],["05467",1057,1057,0],["05475",1338,1338,0],["05480",4534,4534,0],["05483",1885,1885,0],["05490",15525,15525,0],["05495",7178,7146,32],["05501",502,502,0],["05541",3820,3770,50],["05543",1741,1741,0],["05576",1479,1479,0],["05579",7744,7367,377],["05585",2745,2745,0],["05591",5016,5016,0],["05604",8050,8045,5],["05607",4909,2910,1999],["05615",24698,19339,5359],["05628",1817,1817,0],["05631",12211,7530,4681],["05642",3009,3009,0],["05647",1494,1494,0],["05649",3457,3457,0],["05652",1315,1315,0],["05656",2771,2771,0],["05658",608,608,0],["05659",6549,6549,0],["05660",3180,3180,0],["05664",5276,5001,275],["05665",8775,8775,0],["05667",2649,2649,0],["05670",4206,4206,0],["05674",3516,3516,0],["05679",3783,3783,0],["05686",8621,7186,1435],["05690",2769,2737,32],["05697",7428,6337,1091],["05736",8035,7277,758],["05756",6813,6813,0],["05761",2975,2947,28],["05789",2672,2672,0],["05790",6697,6613,84],["05792",978,978,0],["05809",1367,1367,0],["05819",1202,1202,0],["05837",44945,37673,7272],["05842",1534,1534,0],["05847",6967,6944,23],["05854",3649,3649,0],["05856",832,832,0],["05858",3109,3109,0],["05861",1971,1912,59],["05873",2668,2668,0],["05885",1288,1288,0],["05887",9285,8514,771],["05890",4351,4351,0],["05893",4148,3942,206],["05895",8476,8254,222],["08001",267875,207234,60641],["08078",13621,11887,1734],["08137",5746,5691,55],["08141",3736,3548,188],["08296",12736,9940,2796],["08372",3988,3711,277],["08421",6486,6209,277],["08433",30452,16082,14370],["08436",4701,4701,0],["08520",6449,6093,356],["08549",1049,1049,0],["08558",3481,3455,26],["08560",5220,5126,94],["08573",16444,6283,10161],["08606",5949,5949,0],["08634",7322,6798,524],["08638",22265,19691,2574],["08675",3159,3159,0],["08685",4780,4165,615],["08758",134727,52523,82204],["08770",2744,2744,0],["08832",2406,2322,84],["08849",1669,1641,28],["11001",1263840,805425,458415],["13001",240933,165409,75524],["13006",6846,6846,0],["13030",2663,2663,0],["13042",2141,2141,0],["13052",18454,15901,2553],["13062",2038,2038,0],["13074",4972,4972,0],["13140",6865,6699,166],["13160",2358,2358,0],["13188",3808,3808,0],["13212",4251,4251,0],["13222",3489,3427,62],["13244",19551,18298,1253],["13248",1615,1615,0],["13268",2057,2057,0],["13300",3654,3654,0],["13430",32458,29362,3096],["13433",6986,6930,56],["13440",2531,2531,0],["13442",13552,13546,6],["13458",3355,3355,0],["13468",13134,12299,835],["13473",5653,5653,0],["13490",2404,2404,0],["13549",6455,6455,0],["13580",1595,1595,0],["13600",2306,2306,0],["13620",1861,1861,0],["13647",3987,3987,0],["13650",2615,2615,0],["13654",5988,5988,0],["13655",2527,2527,0],["13657",8890,8564,326],["13667",5135,5135,0],["13670",8046,7956,90],["13673",4084,3807,277],["13683",4550,4550,0],["13688",9956,9765,191],["13744",4061,4061,0],["13760",1947,1947,0],["13780",3664,3664,0],["13810",6256,6256,0],["13836",23659,15608,8051],["13838",3615,3585,30],["13873",5736,5286,450],["13894",3770,2864,906],["15001",36996,23751,13245],["15022",216,216,0],["15047",3145,3046,99],["15051",1134,1134,0],["15087",1554,1471,83],["15090",266,266,0],["15092",239,239,0],["15097",978,978,0],["15104",779,779,0],["15106",405,405,0],["15109",851,851,0],["15114",133,133,0],["15131",491,491,0],["15135",467,467,0],["15162",572,572,0],["15172",453,453,0],["15176",12834,10267,2567],["15180",651,651,0],["15183",1925,1925,0],["15185",1096,1096,0],["15187",495,495,0],["15189",858,858,0],["15204",3528,3065,463],["15212",584,584,0],["15215",420,420,0],["15218",548,548,0],["15223",1780,1780,0],["15224",786,786,0],["15226",354,354,0],["15232",787,787,0],["15236",347,347,0],["15238",25391,17536,7855],["15244",870,813,57],["15248",485,485,0],["15272",877,877,0],["15276",531,531,0],["15293",609,609,0],["15296",930,930,0],["15299",2865,2396,469],["15317",238,238,0],["15322",1865,1693,172],["15325",499,499,0],["15332",751,751,0],["15362",397,397,0],["15367",1206,1206,0],["15368",817,817,0],["15377",505,505,0],["15380",395,395,0],["15401",194,194,0],["15403",445,445,0],["15407",3361,2681,680],["15425",648,648,0],["15442",937,937,0],["15455",1494,1403,91],["15464",843,843,0],["15466",920,920,0],["15469",4266,3905,361],["15476",968,872,96],["15480",1640,1570,70],["15491",3260,1934,1326],["15494",924,910,14],["15500",437,397,40],["15507",1475,1475,0],["15511",311,311,0],["15514",549,549,0],["15516",7212,5447,1765],["15518",396,396,0],["15522",320,320,0],["15531",1396,1396,0],["15533",468,468,0],["15537",714,619,95],["15542",1284,1284,0],["15550",354,354,0],["15572",11099,9984,1115],["15580",916,916,0],["15599",2114,1740,374],["15600",1293,1293,0],["15621",460,460,0],["15632",2538,2297,241],["15638",929,750,179],["15646",5054,4370,684],["15660",260,260,0],["15664",764,764,0],["15667",940,894,46],["15673",672,672,0],["15676",692,692,0],["15681",1335,1335,0],["15686",1551,1470,81],["15690",633,591,42],["15693",1965,1654,311],["15696",594,594,0],["15720",346,346,0],["15723",203,203,0],["15740",1648,1610,38],["15753",1645,1630,15],["15755",1578,1578,0],["15757",1951,1749,202],["15759",30122,21103,9019],["15761",569,569,0],["15762",554,554,0],["15763",1365,1365,0],["15764",1926,1618,308],["15774",351,351,0],["15776",954,954,0],["15778",490,490,0],["15790",1080,1080,0],["15798",581,581,0],["15804",1456,1456,0],["15806",2161,1987,174],["15808",528,515,13],["15810",614,614,0],["15814",2116,2006,110],["15816",917,917,0],["15820",735,735,0],["15822",1029,1029,0],["15832",327,327,0],["15835",1460,1460,0],["15837",2148,2037,111],["15839",383,383,0],["15842",1190,1190,0],["15861",3083,2849,234],["15879",406,406,0],["15897",906,906,0],["17001",57376,43298,14078],["17013",3898,3895,3],["17042",5652,5508,144],["17050",2082,2082,0],["17088",2088,2088,0],["17174",8897,8139,758],["17272",1530,1530,0],["17380",13695,12275,1420],["17388",1119,1119,0],["17433",3098,3074,24],["17442",1881,1881,0],["17444",2724,2724,0],["17446",375,375,0],["17486",3871,3778,93],["17495",1421,1421,0],["17513",2370,2370,0],["17524",2957,2957,0],["17541",3637,3637,0],["17614",9262,8864,398],["17616",2072,2072,0],["17653",2807,2807,0],["17662",3939,3939,0],["17665",910,910,0],["17777",5201,5071,130],["17867",1964,1964,0],["17873",10283,7126,3157],["17877",2335,2229,106],["18001",39570,31854,7716],["18029",941,941,0],["18094",2464,2464,0],["18150",8223,8223,0],["18205",2029,2029,0],["18247",4469,4328,141],["18256",3345,3345,0],["18410",3449,3449,0],["18460",2287,2287,0],["18479",748,748,0],["18592",6233,6233,0],["18610",3264,3264,0],["18753",13646,12904,742],["18756",2758,2758,0],["18785",1498,1498,0],["18860",1565,1565,0],["19001",61307,44426,16881],["19022",2805,2805,0],["19050",6369,6318,51],["19075",3701,3701,0],["19100",6348,6348,0],["19110",5938,5938,0],["19130",7430,7082,348],["19137",10234,10234,0],["19142",6535,6322,213],["19212",5347,5131,216],["19256",9381,8948,433],["19290",1016,1016,0],["19300",3674,3584,90],["19318",9051,9051,0],["19355",7324,7324,0],["19364",4099,4099,0],["19392",1774,1774,0],["19397",3096,3079,17],["19418",5882,5882,0],["19450",2827,2827,0],["19455",6281,5775,506],["19473",7110,7110,0],["19513",1765,1765,0],["19517",9884,9884,0],["19532",7060,6743,317],["19533",1868,1868,0],["19548",8221,7617,604],["19573",9583,6620,2963],["19585",2894,2894,0],["19622",1676,1676,0],["19693",1266,1266,0],["19698",22721,19443,3278],["19701",1021,1021,0],["19743",6806,6806,0],["19760",1630,1630,0],["19780",5020,5020,0],["19785",1199,1199,0],["19807",5960,5588,372],["19809",7993,7993,0],["19821",7226,7226,0],["19824",4335,4283,52],["19845",3473,2971,502],["20001",117125,87599,29526],["20011",24539,20457,4082],["20013",18475,17010,1465],["20032",5469,5469,0],["20045",6708,6342,366],["20060",11510,10146,1364],["20175",10467,10396,71],["20178",8113,7717,396],["20228",9600,9134,466],["20238",8787,8196,591],["20250",12215,11208,1007],["20295",2641,2641,0],["20310",866,866,0],["20383",3950,3950,0],["20400",12420,11557,863],["20443",3123,3123,0],["20517",4350,3950,400],["20550",5446,5106,340],["20570",7069,7069,0],["20614",3534,3534,0],["20621",8055,7562,493],["20710",5922,5477,445],["20750",4744,4437,307],["20770",5864,5503,361],["20787",4495,4495,0],["23001",105963,80837,25126],["23068",11948,11367,581],["23079",5779,5250,529],["23090",4463,4449,14],["23162",22060,18604,3456],["23168",2903,2903,0],["23182",10606,9665,941],["23189",13540,13361,179],["23300",3325,3307,18],["23350",3443,3303,140],["23417",26575,23847,2728],["23419",4169,4091,78],["23464",3457,3341,116],["23466",21942,18713,3229],["23500",6850,6850,0],["23555",16450,14604,1846],["23570",7401,7401,0],["23574",5641,5585,56],["23580",10744,10349,395],["23586",3932,3834,98],["23660",23266,21364,1902],["23670",10805,10220,585],["23672",7887,7608,279],["23675",7888,7690,198],["23678",5731,5565,166],["23682",3165,3165,0],["23686",8401,8248,153],["23807",28338,26401,1937],["23815",10402,10402,0],["23855",9030,9030,0],["25001",1786,1521,265],["25019",1172,1172,0],["25035",2710,2521,189],["25040",2797,2561,236],["25053",1996,1965,31],["25086",418,418,0],["25095",453,453,0],["25099",2230,1927,303],["25120",923,923,0],["25123",1687,1519,168],["25126",15579,8089,7490],["25148",2358,2358,0],["25151",3457,3138,319],["25154",1345,1345,0],["25168",559,559,0],["25175",30263,15630,14633],["25178",1876,1876,0],["25181",2254,2106,148],["25183",4355,4057,298],["25200",4938,3974,964],["25214",14817,3422,11395],["25224",1641,1641,0],["25245",4793,4657,136],["25258",820,820,0],["25260",5179,3187,1992],["25269",29268,18568,10700],["25279",2161,2129,32],["25281",1304,1304,0],["25286",19624,9983,9641],["25288",1610,1610,0],["25290",27321,19245,8076],["25293",818,818,0],["25295",3585,2606,979],["25297",1636,1636,0],["25299",570,570,0],["25307",21839,12028,9811],["25312",1617,1525,92],["25317",3091,3091,0],["25320",5753,4476,1277],["25322",3372,3253,119],["25324",481,481,0],["25326",1159,1137,22],["25328",783,783,0],["25335",1435,1290,145],["25339",732,732,0],["25368",443,443,0],["25372",879,879,0],["25377",9612,3418,6194],["25386",5977,4686,1291],["25394",1987,1987,0],["25398",1009,1009,0],["25402",3340,3248,92],["25407",2091,1923,168],["25426",1121,1075,46],["25430",23467,12271,11196],["25436",552,552,0],["25438",1716,1716,0],["25473",28042,17904,10138],["25483",359,359,0],["25486",3202,2709,493],["25488",1688,1363,325],["25489",611,611,0],["25491",1204,1204,0],["25506",1032,1032,0],["25513",5229,5033,196],["25518",686,686,0],["25524",1025,1025,0],["25530",2316,2316,0],["25535",2612,2612,0],["25572",3798,3316,482],["25580",513,513,0],["25592",885,885,0],["25594",1642,1642,0],["25596",1354,1354,0],["25599",1352,1352,0],["25612",1873,1700,173],["25645",2006,1903,103],["25649",1925,1925,0],["25653",912,912,0],["25658",1996,1943,53],["25662",1903,1883,20],["25718",2277,2277,0],["25736",2753,2453,300],["25740",7228,5341,1887],["25743",4247,4045,202],["25745",2580,2308,272],["25754",134364,70591,63773],["25758",5477,3733,1744],["25769",4113,2249,1864],["25772",3217,3044,173],["25777",1078,1078,0],["25779",1059,1042,17],["25781",1362,1323,39],["25785",4650,3131,1519],["25793",1993,1993,0],["25797",1815,1659,156],["25799",6959,3064,3895],["25805",974,974,0],["25807",413,413,0],["25815",2537,2484,53],["25817",9538,7955,1583],["25823",739,739,0],["25839",1752,1752,0],["25841",1203,1203,0],["25843",10429,7246,3183],["25845",1229,1229,0],["25851",737,737,0],["25862",1193,1193,0],["25867",748,748,0],["25871",373,373,0],["25873",4568,3640,928],["25875",5927,5017,910],["25878",3110,3110,0],["25885",2647,2647,0],["25898",862,862,0],["25899",25965,16391,9574],["27001",37910,35552,2358],["27006",3179,3179,0],["27025",8373,8373,0],["27050",1419,1419,0],["27073",4203,4203,0],["27075",3102,3102,0],["27077",5969,5969,0],["27099",4620,4620,0],["27135",1558,1558,0],["27150",3833,3833,0],["27160",1293,1293,0],["27205",3247,3247,0],["27245",2726,2726,0],["27250",4923,4923,0],["27361",9674,9376,298],["27372",1477,1477,0],["27413",3686,3686,0],["27425",2022,2022,0],["27430",3513,3513,0],["27450",2773,2773,0],["27491",2085,2085,0],["27495",2385,2385,0],["27580",1661,1661,0],["27600",2315,2315,0],["27615",13312,13312,0],["27660",1080,1080,0],["27745",813,813,0],["27787",5740,5740,0],["27800",3256,3256,0],["27810",1666,1666,0],["41001",76980,58304,18676],["41006",8326,8171,155],["41013",2265,2265,0],["41016",3736,3736,0],["41020",5127,5014,113],["41026",643,643,0],["41078",1316,1316,0],["41132",6305,5382,923],["41206",1424,1424,0],["41244",807,807,0],["41298",17068,15168,1900],["41306",6031,6018,13],["41319",4369,4260,109],["41349",1565,1565,0],["41357",2522,2522,0],["41359",6127,6009,118],["41378",3220,3196,24],["41396",14907,14057,850],["41483",1738,1738,0],["41503",2690,2598,92],["41518",1362,1362,0],["41524",6770,5231,1539],["41530",2572,2572,0],["41548",3535,3311,224],["41551",31981,28139,3842],["41615",5349,4426,923],["41660",2736,2736,0],["41668",7034,6730,304],["41676",2266,2266,0],["41770",5432,5312,120],["41791",4085,4011,74],["41797",2258,2257,1],["41799",2701,2701,0],["41801",1600,1600,0],["41807",4458,4065,393],["41872",1332,1332,0],["41885",1400,1400,0],["44001",65039,56403,8636],["44035",8518,7511,1007],["44078",8443,7906,537],["44090",8732,8513,219],["44098",2834,2834,0],["44110",1697,1510,187],["44279",12687,11626,1061],["44378",5244,4687,557],["44420",725,725,0],["44430",54695,51665,3030],["44560",32876,32876,0],["44650",12226,10856,1370],["44847",63751,63690,61],["44855",2392,2211,181],["44874",6807,5707,1100],["47001",130573,104306,26267],["47030",4931,4843,88],["47053",10367,9629,738],["47058",8927,8551,376],["47161",2148,2148,0],["47170",5972,5884,88],["47189",31428,26191,5237],["47205",2830,2830,0],["47245",21834,20694,1140],["47258",4187,4187,0],["47268",7267,7218,49],["47288",21283,18727,2556],["47318",7680,7680,0],["47460",5906,5906,0],["47541",2344,2344,0],["47545",4670,4668,2],["47551",10031,9519,512],["47555",16917,16228,689],["47570",7053,6980,73],["47605",1892,1892,0],["47660",5594,5583,11],["47675",2124,2124,0],["47692",6724,6724,0],["47703",3402,3402,0],["47707",6636,6542,94],["47720",3303,3303,0],["47745",6835,6538,297],["47798",4343,4343,0],["47960",2370,2370,0],["47980",23264,21933,1331],["50001",110789,79172,31617],["50006",19585,15786,3799],["50110",1687,1687,0],["50124",1445,1445,0],["50150",3213,2993,220],["50223",1398,1398,0],["50226",5510,4844,666],["50245",462,462,0],["50251",1864,1864,0],["50270",983,983,0],["50287",2584,2561,23],["50313",16799,15967,832],["50318",3320,2283,1037],["50325",1974,1974,0],["50330",2444,2336,108],["50350",4656,4656,0],["50370",2411,2411,0],["50400",2675,2515,160],["50450",2405,2405,0],["50568",14431,13456,975],["50573",8502,7820,682],["50577",1888,1799,89],["50590",2745,2745,0],["50606",4421,3753,668],["50680",2863,2789,74],["50683",1620,1620,0],["50686",350,350,0],["50689",5269,4850,419],["50711",4499,4002,497],["52001",70935,52835,18100],["52019",1371,1371,0],["52022",1490,1490,0],["52036",1038,1038,0],["52051",1201,1201,0],["52079",10958,10958,0],["52083",922,922,0],["52110",3764,3604,160],["52203",1312,1312,0],["52207",1489,1489,0],["52210",804,804,0],["52215",2490,2436,54],["52224",1152,1152,0],["52227",6411,6364,47],["52233",1518,1518,0],["52240",2459,2199,260],["52250",7352,7352,0],["52254",914,914,0],["52256",1186,1186,0],["52258",2295,2295,0],["52260",2073,2073,0],["52287",906,906,0],["52317",2695,2638,57],["52320",1568,1568,0],["52323",1135,1135,0],["52352",1264,1264,0],["52354",1001,1001,0],["52356",25918,21095,4823],["52378",3122,3122,0],["52381",1371,1371,0],["52385",958,958,0],["52390",1974,1974,0],["52399",5425,5283,142],["52405",1769,1769,0],["52411",1350,1350,0],["52418",1790,1790,0],["52427",2869,2869,0],["52435",1497,1497,0],["52473",1895,1895,0],["52480",527,527,0],["52490",6170,6170,0],["52506",940,940,0],["52520",2087,2087,0],["52540",2392,2392,0],["52560",1980,1980,0],["52565",744,744,0],["52573",1383,1383,0],["52585",3265,3172,93],["52612",4317,4317,0],["52621",3485,3485,0],["52678",4493,4493,0],["52683",3091,3091,0],["52685",1182,1182,0],["52687",2821,2821,0],["52693",2289,2289,0],["52694",993,993,0],["52696",2670,2670,0],["52699",1422,1422,0],["52720",1002,1002,0],["52786",2719,2719,0],["52788",1462,1462,0],["52835",52322,49278,3044],["52838",7826,7327,499],["52885",1594,1594,0],["54001",162765,121813,40952],["54003",7795,7625,170],["54051",1797,1797,0],["54099",1499,1499,0],["54109",1212,1212,0],["54125",604,604,0],["54128",2043,2043,0],["54172",3663,3425,238],["54174",2206,2206,0],["54206",5674,5674,0],["54223",1413,1413,0],["54239",883,883,0],["54245",2978,2978,0],["54250",6790,6790,0],["54261",6446,6201,245],["54313",1146,1146,0],["54344",2919,2919,0],["54347",595,595,0],["54377",1087,1087,0],["54385",2956,2956,0],["54398",1768,1768,0],["54405",15735,12233,3502],["54418",699,699,0],["54480",803,803,0],["54498",24177,20892,3285],["54518",9700,7716,1984],["54520",1128,1128,0],["54553",2194,2088,106],["54599",1194,1194,0],["54660",2163,2163,0],["54670",2719,2719,0],["54673",1536,1536,0],["54680",682,682,0],["54720",6095,6000,95],["54743",1319,1319,0],["54800",5182,5103,79],["54810",18305,17831,474],["54820",3538,3538,0],["54871",1022,1022,0],["54874",20175,16801,3374],["63001",45511,37152,8359],["63111",484,484,0],["63130",12319,11219,1100],["63190",4227,3764,463],["63212",1069,1069,0],["63272",2017,2017,0],["63302",1414,1414,0],["63401",6144,6144,0],["63470",6514,6500,14],["63548",1334,1334,0],["63594",5291,5217,74],["63690",2353,1062,1291],["66001",93398,74148,19250],["66045",2107,2107,0],["66075",1094,1094,0],["66088",4728,4728,0],["66170",34113,28327,5786],["66318",2306,2306,0],["66383",1371,1371,0],["66400",5962,5919,43],["66440",3184,3153,31],["66456",4702,4702,0],["66572",6201,6201,0],["66594",6136,6136,0],["66682",13335,12342,993],["66687",2361,2361,0],["68001",107645,79391,28254],["68013",258,253,5],["68020",649,641,8],["68051",1690,1592,98],["68077",6580,4421,2159],["68079",1485,1295,190],["68081",54462,42849,11613],["68092",1194,1139,55],["68101",2080,2037,43],["68121",286,286,0],["68132",398,386,12],["68147",1087,1033,54],["68152",829,797,32],["68160",453,383,70],["68162",1526,1494,32],["68167",2584,2537,47],["68169",491,482,9],["68176",497,488,9],["68179",667,658,9],["68190",7608,7279,329],["68207",989,950,39],["68209",577,577,0],["68211",633,616,17],["68217",951,917,34],["68229",2263,2092,171],["68235",3435,3272,163],["68245",326,326,0],["68250",932,904,28],["68255",2959,2935,24],["68264",394,383,11],["68266",661,635,26],["68271",1016,994,22],["68276",48871,31373,17498],["68296",606,580,26],["68298",829,788,41],["68307",32547,27152,5395],["68318",1111,1073,38],["68320",961,915,46],["68322",397,375,22],["68324",504,504,0],["68327",842,817,25],["68344",456,395,61],["68368",571,555,16],["68370",347,337,10],["68377",1233,1215,18],["68385",2367,2308,59],["68397",653,649,4],["68406",8682,6635,2047],["68418",2560,2528,32],["68425",421,397,24],["68432",5017,4632,385],["68444",1262,1214,48],["68464",2254,2131,123],["68468",643,599,44],["68498",852,837,15],["68500",2181,2100,81],["68502",730,676,54],["68522",254,254,0],["68524",508,503,5],["68533",917,851,66],["68547",34969,28188,6781],["68549",717,694,23],["68572",3416,3349,67],["68573",1814,1794,20],["68575",8791,8636,155],["68615",5790,5711,79],["68655",8332,7553,779],["68669",1654,1594,60],["68673",384,381,3],["68679",14531,9030,5501],["68682",440,411,29],["68684",621,598,23],["68686",476,447,29],["68689",6493,6337,156],["68705",393,387,6],["68720",784,765,19],["68745",2031,1863,168],["68755",10105,4939,5166],["68770",1917,1848,69],["68773",1292,1292,0],["68780",741,719,22],["68820",1552,1432,120],["68855",1097,977,120],["68861",3718,3201,517],["68867",292,285,7],["68872",1242,1139,103],["68895",2189,1762,427],["70001",68053,54409,13644],["70110",2383,2177,206],["70124",3197,3197,0],["70204",2178,2178,0],["70215",16480,14463,2017],["70221",4233,4035,198],["70230",956,956,0],["70233",2358,2345,13],["70235",5528,5377,151],["70265",4709,4546,163],["70400",3109,3109,0],["70418",5334,4926,408],["70429",11198,11021,177],["70473",3175,3121,54],["70508",6169,5704,465],["70523",3750,3750,0],["70670",12088,11258,830],["70678",6899,6899,0],["70702",2811,2683,128],["70708",14905,14022,883],["70713",14338,13923,415],["70717",4182,4182,0],["70742",6799,6247,552],["70771",6016,6016,0],["70820",8191,7158,1033],["70823",5312,5144,168],["73001",105879,80985,24894],["73024",803,803,0],["73026",1583,1583,0],["73030",997,997,0],["73043",1938,1880,58],["73055",2429,2429,0],["73067",5088,4967,121],["73124",3796,3525,271],["73148",2226,1884,342],["73152",1147,1147,0],["73168",12233,11054,1179],["73200",1457,1457,0],["73217",5835,5702,133],["73226",1889,1884,5],["73236",1679,1659,20],["73268",15097,10413,4684],["73270",1854,1854,0],["73275",5043,3840,1203],["73283",6258,5719,539],["73319",5958,5382,576],["73347",1351,1351,0],["73349",4677,3929,748],["73352",2527,2428,99],["73408",3555,3267,288],["73411",7857,7255,602],["73443",7459,6528,931],["73449",9528,7299,2229],["73461",768,768,0],["73483",3120,2676,444],["73504",6817,6680,137],["73520",1804,1794,10],["73547",960,960,0],["73555",7572,7386,186],["73563",1851,1703,148],["73585",4733,3906,827],["73616",5510,5464,46],["73622",1146,1146,0],["73624",5377,5263,114],["73671",2563,2440,123],["73675",3239,3239,0],["73678",2636,2636,0],["73686",1455,1455,0],["73770",578,578,0],["73854",1011,1011,0],["73861",2737,2737,0],["73870",1954,1954,0],["73873",995,969,26],["76001",359190,193280,165910],["76020",2418,2418,0],["76036",3393,2899,494],["76041",3249,3100,149],["76054",1120,1120,0],["76100",3325,3325,0],["76109",79310,59331,19979],["76111",22615,16024,6591],["76113",4166,3499,667],["76122",4454,4246,208],["76126",3149,2959,190],["76130",17840,12825,5015],["76147",22085,19010,3075],["76233",7820,6592,1228],["76243",1677,1677,0],["76246",1158,1158,0],["76248",10733,7476,3257],["76250",2083,2083,0],["76275",11531,9346,2185],["76306",4492,4001,491],["76318",6141,5506,635],["76364",29909,22621,7288],["76377",2571,2473,98],["76400",5708,5375,333],["76403",2174,2146,28],["76497",1824,1824,0],["76520",58499,45845,12654],["76563",9397,8362,1035],["76606",3480,3354,126],["76616",2878,2878,0],["76622",6492,5489,1003],["76670",3139,2694,445],["76736",6594,6024,570],["76823",2458,2458,0],["76828",3464,3464,0],["76834",35827,26537,9290],["76845",948,948,0],["76863",1089,1089,0],["76869",2022,2022,0],["76890",2877,2877,0],["76892",23672,16905,6767],["76895",7815,7001,814],["81001",24359,21639,2720],["81065",11045,10730,315],["81220",963,963,0],["81300",5971,5917,54],["81591",912,912,0],["81736",13741,13118,623],["81794",16318,15515,803],["85001",40505,34341,6164],["85010",8413,7957,456],["85015",434,434,0],["85125",3939,3939,0],["85136",369,369,0],["85139",3584,3563,21],["85162",3822,3716,106],["85225",1993,1993,0],["85230",2978,2978,0],["85250",9521,9406,115],["85263",2696,2696,0],["85279",196,196,0],["85300",724,724,0],["85315",311,311,0],["85325",1802,1802,0],["85400",1783,1783,0],["85410",5928,5676,252],["85430",3467,3467,0],["85440",7585,7115,470],["86001",11491,10878,613],["86219",875,875,0],["86320",10004,9902,102],["86568",16634,15793,841],["86569",2485,2485,0],["86571",5408,5408,0],["86573",6094,6094,0],["86749",3430,3351,79],["86755",1289,1289,0],["86757",4657,4632,25],["86760",1299,1299,0],["86865",7909,7725,184],["86885",6643,6285,358],["88001",10281,8020,2261],["88564",903,903,0],["91001",15333,14613,720],["91263",411,411,0],["91405",844,844,0],["91407",1033,1033,0],["91430",24,24,0],["91460",358,358,0],["91530",204,204,0],["91536",249,249,0],["91540",2016,2016,0],["91669",473,473,0],["91798",893,893,0],["94001",9067,8672,395],["94343",3219,3219,0],["94883",639,639,0],["94884",620,620,0],["94885",92,92,0],["94886",439,439,0],["94887",290,290,0],["94888",233,233,0],["95001",15548,13873,1675],["95015",2143,2143,0],["95025",3439,3439,0],["95200",898,898,0],["97001",8935,8809,126],["97161",263,263,0],["97511",1103,1103,0],["97666",151,151,0],["97889",333,333,0],["99001",6948,6638,310],["99524",2724,2724,0],["99624",1147,1147,0],["99773",13488,13488,0]],"2022":[["05001",423127,311678,111449],["05002",3149,3149,0],["05004",370,370,0],["05021",746,746,0],["05030",4581,4363,218],["05031",4805,4805,0],["05034",7383,7227,156],["05036",1024,1024,0],["05038",1940,1940,0],["05040",4060,4060,0],["05042",5300,5020,280],["05044",1407,1407,0],["05045",31100,28468,2632],["05051",8420,8338,82],["05055",1472,1472,0],["05059",505,505,0],["05079",8120,7564,556],["05086",1358,1358,0],["05088",88890,56381,32509],["05091",1516,1516,0],["05093",3167,3167,0],["05101",4637,4293,344],["05107",1729,1729,0],["05113",1873,1873,0],["05120",8051,8051,0],["05125",1847,1847,0],["05129",12671,10443,2228],["05134",1809,1809,0],["05138",2991,2991,0],["05142",717,717,0],["05145",708,708,0],["05147",13086,12768,318],["05148",11156,10253,903],["05150",533,533,0],["05154",22328,20407,1921],["05172",14994,14299,695],["05190",1553,1553,0],["05197",3362,3351,11],["05206",671,671,0],["05209",3078,3078,0],["05212",13643,11183,2460],["05234",6002,6002,0],["05237",4097,3565,532],["05240",1656,1656,0],["05250",14877,14240,637],["05264",2098,1508,590],["05266",32878,15409,17469],["05282",2961,2961,0],["05284",5123,5123,0],["05306",1382,1382,0],["05308",8706,6424,2282],["05310",1401,1401,0],["05313",1904,1904,0],["05315",1029,1029,0],["05318",7964,6934,1030],["05321",1632,1632,0],["05347",885,885,0],["05353",1069,1069,0],["05360",42671,33246,9425],["05361",4395,4395,0],["05364",2470,2470,0],["05368",1951,1951,0],["05376",11947,9353,2594],["05380",14877,6768,8109],["05390",1479,1479,0],["05400",4078,3541,537],["05411",1785,1785,0],["05425",1848,1848,0],["05440",12972,10934,2038],["05467",1005,1005,0],["05475",1330,1330,0],["05480",4311,4311,0],["05483",1616,1616,0],["05490",14870,14870,0],["05495",7210,7131,79],["05501",480,480,0],["05541",4046,3954,92],["05543",1635,1635,0],["05576",1360,1360,0],["05579",7826,7413,413],["05585",2590,2590,0],["05591",4651,4651,0],["05604",8359,8346,13],["05607",5088,2928,2160],["05615",24303,18646,5657],["05628",1751,1751,0],["05631",12701,7718,4983],["05642",2805,2805,0],["05647",1436,1436,0],["05649",3386,3386,0],["05652",1214,1214,0],["05656",2685,2685,0],["05658",526,526,0],["05659",6408,6408,0],["05660",3098,3098,0],["05664",5168,4902,266],["05665",8412,8412,0],["05667",2590,2590,0],["05670",4049,4049,0],["05674",3427,3427,0],["05679",3484,3484,0],["05686",8253,7042,1211],["05690",2622,2622,0],["05697",7608,6368,1240],["05736",8662,7883,779],["05756",6658,6658,0],["05761",2985,2946,39],["05789",2477,2477,0],["05790",6938,6836,102],["05792",845,845,0],["05809",1310,1310,0],["05819",1157,1157,0],["05837",41577,36318,5259],["05842",1462,1462,0],["05847",6634,6601,33],["05854",3249,3249,0],["05856",868,868,0],["05858",3044,3044,0],["05861",1853,1789,64],["05873",2702,2702,0],["05885",1298,1298,0],["05887",9059,8295,764],["05890",4099,4099,0],["05893",4475,4196,279],["05895",8191,7928,263],["08001",266330,201251,65079],["08078",13610,11425,2185],["08137",5704,5668,36],["08141",3618,3396,222],["08296",12555,9548,3007],["08372",4025,3567,458],["08421",6362,6029,333],["08433",31526,15534,15992],["08436",4553,4553,0],["08520",6432,6104,328],["08549",1016,1004,12],["08558",3421,3310,111],["08560",5122,4950,172],["08573",16858,6346,10512],["08606",5881,5881,0],["08634",7335,6710,625],["08638",22189,19269,2920],["08675",2946,2946,0],["08685",4869,4195,674],["08758",146690,50586,96104],["08770",2698,2698,0],["08832",2366,2280,86],["08849",1659,1579,80],["11001",1237299,775856,461443],["13001",245829,165558,80271],["13006",6752,6752,0],["13030",2739,2739,0],["13042",2212,2212,0],["13052",18992,15619,3373],["13062",1980,1980,0],["13074",5023,5023,0],["13140",6920,6684,236],["13160",2379,2379,0],["13188",3687,3687,0],["13212",4114,4114,0],["13222",3662,3588,74],["13244",19510,18161,1349],["13248",1705,1705,0],["13268",1930,1930,0],["13300",3550,3550,0],["13430",32042,28221,3821],["13433",6949,6741,208],["13440",2434,2434,0],["13442",13358,13288,70],["13458",3585,3585,0],["13468",12783,11847,936],["13473",5644,5644,0],["13490",2469,2469,0],["13549",6186,6186,0],["13580",1691,1691,0],["13600",2167,2167,0],["13620",1739,1739,0],["13647",3886,3886,0],["13650",2581,2581,0],["13654",5710,5625,85],["13655",2496,2496,0],["13657",8708,8375,333],["13667",4924,4924,0],["13670",7789,7713,76],["13673",3876,3597,279],["13683",4476,4476,0],["13688",10435,10146,289],["13744",4167,4167,0],["13760",2001,2001,0],["13780",3650,3650,0],["13810",6253,6253,0],["13836",26619,15485,11134],["13838",3653,3536,117],["13873",5730,5290,440],["13894",3744,2791,953],["15001",37656,23312,14344],["15022",203,203,0],["15047",2968,2853,115],["15051",1112,1112,0],["15087",1500,1418,82],["15090",251,251,0],["15092",235,235,0],["15097",963,963,0],["15104",750,750,0],["15106",418,418,0],["15109",796,796,0],["15114",131,131,0],["15131",457,457,0],["15135",467,467,0],["15162",569,569,0],["15172",443,443,0],["15176",12437,9659,2778],["15180",651,651,0],["15183",1850,1850,0],["15185",1042,1042,0],["15187",473,473,0],["15189",918,918,0],["15204",3463,2932,531],["15212",502,502,0],["15215",394,394,0],["15218",456,456,0],["15223",1651,1651,0],["15224",763,763,0],["15226",335,335,0],["15232",719,719,0],["15236",328,328,0],["15238",25913,17649,8264],["15244",794,731,63],["15248",534,534,0],["15272",842,842,0],["15276",505,505,0],["15293",592,592,0],["15296",908,908,0],["15299",2946,2445,501],["15317",278,278,0],["15322",1888,1675,213],["15325",468,468,0],["15332",754,754,0],["15362",380,380,0],["15367",1224,1224,0],["15368",757,757,0],["15377",512,512,0],["15380",385,385,0],["15401",185,185,0],["15403",518,518,0],["15407",3568,2757,811],["15425",600,600,0],["15442",914,914,0],["15455",1453,1385,68],["15464",786,786,0],["15466",929,929,0],["15469",4302,3814,488],["15476",961,853,108],["15480",1584,1517,67],["15491",3411,1883,1528],["15494",910,898,12],["15500",430,379,51],["15507",1425,1425,0],["15511",292,292,0],["15514",549,549,0],["15516",7222,5375,1847],["15518",388,388,0],["15522",308,308,0],["15531",1277,1277,0],["15533",459,459,0],["15537",713,617,96],["15542",1194,1194,0],["15550",330,330,0],["15572",10538,9400,1138],["15580",879,879,0],["15599",2032,1568,464],["15600",1320,1320,0],["15621",367,367,0],["15632",2404,2148,256],["15638",991,777,214],["15646",4950,4205,745],["15660",258,258,0],["15664",736,736,0],["15667",875,828,47],["15673",652,652,0],["15676",701,701,0],["15681",1273,1273,0],["15686",1462,1381,81],["15690",612,561,51],["15693",2054,1687,367],["15696",587,587,0],["15720",345,345,0],["15723",195,195,0],["15740",1577,1535,42],["15753",1639,1616,23],["15755",1561,1561,0],["15757",2131,1904,227],["15759",29101,19720,9381],["15761",531,531,0],["15762",545,545,0],["15763",1394,1394,0],["15764",1898,1532,366],["15774",318,318,0],["15776",922,922,0],["15778",421,421,0],["15790",1108,1108,0],["15798",508,508,0],["15804",1381,1381,0],["15806",2105,1908,197],["15808",563,508,55],["15810",550,550,0],["15814",2152,2033,119],["15816",901,901,0],["15820",744,744,0],["15822",980,980,0],["15832",347,347,0],["15835",1402,1402,0],["15837",2186,2044,142],["15839",356,356,0],["15842",1155,1155,0],["15861",2951,2685,266],["15879",359,359,0],["15897",845,845,0],["17001",56031,41911,14120],["17013",3710,3705,5],["17042",5469,5306,163],["17050",2062,2062,0],["17088",1914,1914,0],["17174",8617,7846,771],["17272",1378,1378,0],["17380",13413,11782,1631],["17388",968,968,0],["17433",2917,2906,11],["17442",1859,1859,0],["17444",2671,2671,0],["17446",346,346,0],["17486",3637,3530,107],["17495",1424,1424,0],["17513",2273,2273,0],["17524",2770,2770,0],["17541",3439,3439,0],["17614",9050,8646,404],["17616",1902,1902,0],["17653",2602,2602,0],["17662",3744,3744,0],["17665",870,870,0],["17777",5149,4956,193],["17867",1815,1815,0],["17873",10111,6966,3145],["17877",2175,2062,113],["18001",40242,31759,8483],["18029",860,860,0],["18094",2185,2185,0],["18150",7929,7929,0],["18205",1809,1809,0],["18247",4076,3907,169],["18256",3194,3194,0],["18410",3095,3095,0],["18460",2078,2078,0],["18479",665,665,0],["18592",5519,5519,0],["18610",3111,3111,0],["18753",13326,12572,754],["18756",2517,2517,0],["18785",1307,1307,0],["18860",1366,1366,0],["19001",62358,44992,17366],["19022",2692,2692,0],["19050",6437,6364,73],["19075",3674,3674,0],["19100",6016,6016,0],["19110",6085,6085,0],["19130",7331,6980,351],["19137",10241,10241,0],["19142",6718,6407,311],["19212",5256,4949,307],["19256",9390,8879,511],["19290",1018,1018,0],["19300",3465,3411,54],["19318",8173,8173,0],["19355",7217,7217,0],["19364",3965,3965,0],["19392",1799,1799,0],["19397",2784,2771,13],["19418",5752,5752,0],["19450",2715,2715,0],["19455",6296,5690,606],["19473",7429,7429,0],["19513",1764,1764,0],["19517",9979,9979,0],["19532",6917,6538,379],["19533",1961,1961,0],["19548",8216,7446,770],["19573",9512,6467,3045],["19585",2817,2817,0],["19622",1628,1628,0],["19693",1211,1211,0],["19698",23453,19285,4168],["19701",1007,1007,0],["19743",6848,6848,0],["19760",1511,1511,0],["19780",5267,5267,0],["19785",1082,1082,0],["19807",6042,5649,393],["19809",8098,8098,0],["19821",7332,7332,0],["19824",4282,4223,59],["19845",3556,2994,562],["20001",118693,85316,33377],["20011",24977,20184,4793],["20013",18699,16864,1835],["20032",5529,5529,0],["20045",6729,6303,426],["20060",11543,9980,1563],["20175",10395,10325,70],["20178",8427,7934,493],["20228",9551,8914,637],["20238",8389,7581,808],["20250",12126,10930,1196],["20295",2536,2536,0],["20310",867,867,0],["20383",3809,3809,0],["20400",12386,11448,938],["20443",2990,2990,0],["20517",4197,3767,430],["20550",5411,4927,484],["20570",7047,7047,0],["20614",3430,3430,0],["20621",8109,7552,557],["20710",5943,5368,575],["20750",4841,4499,342],["20770",5876,5485,391],["20787",4462,4462,0],["23001",108589,79635,28954],["23068",11878,11090,788],["23079",5556,4954,602],["23090",4208,4188,20],["23162",22183,18106,4077],["23168",2766,2766,0],["23182",10642,9488,1154],["23189",13097,12906,191],["23300",3205,3178,27],["23350",3267,3150,117],["23417",26519,23003,3516],["23419",4031,3950,81],["23464",3393,3241,152],["23466",21591,18052,3539],["23500",6672,6617,55],["23555",16016,13903,2113],["23570",6829,6829,0],["23574",5448,5440,8],["23580",10769,10311,458],["23586",3880,3747,133],["23660",22379,20284,2095],["23670",10533,9872,661],["23672",7716,7314,402],["23675",7714,7483,231],["23678",5579,5338,241],["23682",3132,3132,0],["23686",8016,7865,151],["23807",28028,26061,1967],["23815",10059,10059,0],["23855",8767,8767,0],["25001",1807,1495,312],["25019",1144,1144,0],["25035",2793,2547,246],["25040",2769,2542,227],["25053",1922,1876,46],["25086",387,387,0],["25095",445,445,0],["25099",2228,1915,313],["25120",928,928,0],["25123",1783,1567,216],["25126",16054,8118,7936],["25148",2142,2142,0],["25151",3429,3256,173],["25154",1281,1281,0],["25168",531,531,0],["25175",30673,15495,15178],["25178",1884,1884,0],["25181",2237,2021,216],["25183",4229,3894,335],["25200",4926,3874,1052],["25214",14596,3270,11326],["25224",1629,1629,0],["25245",4786,4615,171],["25258",787,787,0],["25260",5100,3188,1912],["25269",28090,18369,9721],["25279",2174,2152,22],["25281",1251,1251,0],["25286",20276,10157,10119],["25288",1583,1583,0],["25290",27552,18864,8688],["25293",750,750,0],["25295",4092,2819,1273],["25297",1586,1586,0],["25299",525,525,0],["25307",21489,12024,9465],["25312",1623,1515,108],["25317",3089,3030,59],["25320",5317,4199,1118],["25322",3212,3037,175],["25324",465,465,0],["25326",1117,1090,27],["25328",740,740,0],["25335",1363,1219,144],["25339",713,713,0],["25368",422,422,0],["25372",825,825,0],["25377",9901,3353,6548],["25386",6161,4663,1498],["25394",1513,1513,0],["25398",944,944,0],["25402",3324,3214,110],["25407",2199,2006,193],["25426",1089,1029,60],["25430",25733,13098,12635],["25436",538,538,0],["25438",1668,1668,0],["25473",29039,17823,11216],["25483",344,344,0],["25486",3504,2913,591],["25488",1816,1403,413],["25489",543,543,0],["25491",1101,1101,0],["25506",902,902,0],["25513",4989,4749,240],["25518",637,637,0],["25524",1041,1041,0],["25530",2201,2201,0],["25535",2453,2453,0],["25572",3828,3314,514],["25580",466,466,0],["25592",845,845,0],["25594",1534,1534,0],["25596",1237,1237,0],["25599",1361,1361,0],["25612",1908,1699,209],["25645",1964,1842,122],["25649",1794,1794,0],["25653",848,848,0],["25658",1796,1708,88],["25662",1724,1720,4],["25718",2347,2320,27],["25736",2818,2363,455],["25740",7457,5301,2156],["25743",4225,3955,270],["25745",2562,2136,426],["25754",139713,71536,68177],["25758",5439,3614,1825],["25769",4046,2231,1815],["25772",3101,2984,117],["25777",1060,1060,0],["25779",1050,997,53],["25781",1358,1302,56],["25785",5077,3227,1850],["25793",2066,2066,0],["25797",1780,1642,138],["25799",7115,3183,3932],["25805",879,879,0],["25807",414,414,0],["25815",2542,2429,113],["25817",10271,8417,1854],["25823",680,680,0],["25839",1625,1625,0],["25841",1156,1156,0],["25843",10914,7394,3520],["25845",1178,1152,26],["25851",602,602,0],["25862",1074,1074,0],["25867",734,734,0],["25871",309,309,0],["25873",4516,3465,1051],["25875",5846,4831,1015],["25878",2923,2923,0],["25885",2228,2228,0],["25898",866,866,0],["25899",27991,17290,10701],["27001",37904,35181,2723],["27006",3698,3698,0],["27025",8983,8983,0],["27050",1518,1518,0],["27073",4544,4544,0],["27075",3461,3461,0],["27077",6068,6068,0],["27099",5319,5319,0],["27135",1840,1840,0],["27150",4126,4126,0],["27160",1253,1253,0],["27205",3264,3264,0],["27245",3037,3037,0],["27250",4997,4997,0],["27361",10358,10032,326],["27372",1533,1533,0],["27413",4037,4037,0],["27425",2285,2285,0],["27430",4136,4136,0],["27450",2866,2866,0],["27491",2165,2165,0],["27495",2536,2536,0],["27580",1616,1616,0],["27600",2327,2327,0],["27615",13676,13676,0],["27660",1082,1082,0],["27745",887,887,0],["27787",6048,6048,0],["27800",3639,3639,0],["27810",1805,1805,0],["41001",77736,55913,21823],["41006",8078,7844,234],["41013",2155,2155,0],["41016",3712,3712,0],["41020",5044,4897,147],["41026",611,611,0],["41078",1199,1199,0],["41132",6275,5234,1041],["41206",1469,1469,0],["41244",851,851,0],["41298",16979,14782,2197],["41306",5762,5734,28],["41319",4355,4221,134],["41349",1552,1552,0],["41357",2378,2378,0],["41359",6149,5942,207],["41378",3143,3143,0],["41396",14830,13904,926],["41483",1715,1715,0],["41503",2629,2568,61],["41518",1383,1383,0],["41524",6863,5116,1747],["41530",2586,2586,0],["41548",3575,3234,341],["41551",32921,28206,4715],["41615",5553,4331,1222],["41660",2669,2669,0],["41668",6766,6427,339],["41676",2179,2179,0],["41770",5563,5361,202],["41791",3982,3870,112],["41797",2159,2159,0],["41799",2561,2561,0],["41801",1495,1495,0],["41807",4401,3915,486],["41872",1355,1355,0],["41885",1377,1377,0],["44001",66880,56907,9973],["44035",8798,7393,1405],["44078",8188,7571,617],["44090",8715,8369,346],["44098",2859,2859,0],["44110",1746,1493,253],["44279",12519,11332,1187],["44378",5203,4465,738],["44420",728,728,0],["44430",56529,53349,3180],["44560",32185,32185,0],["44650",12313,10806,1507],["44847",67508,67431,77],["44855",2285,2065,220],["44874",6520,5372,1148],["47001",132079,101055,31024],["47030",5252,5103,149],["47053",11100,10221,879],["47058",9418,8867,551],["47161",2778,2778,0],["47170",6419,6309,110],["47189",33410,27348,6062],["47205",3718,3718,0],["47245",22089,20741,1348],["47258",4945,4945,0],["47268",7853,7739,114],["47288",22123,19331,2792],["47318",8124,8124,0],["47460",6455,6455,0],["47541",2660,2660,0],["47545",5091,4845,246],["47551",11778,11133,645],["47555",17887,16975,912],["47570",8003,7961,42],["47605",2411,2411,0],["47660",6124,6124,0],["47675",2390,2390,0],["47692",6785,6785,0],["47703",3774,3774,0],["47707",7227,7119,108],["47720",3508,3508,0],["47745",8137,7801,336],["47798",4897,4897,0],["47960",2953,2953,0],["47980",24410,22671,1739],["50001",114844,79185,35659],["50006",20096,15771,4325],["50110",1660,1660,0],["50124",1506,1506,0],["50150",3139,2870,269],["50223",1374,1374,0],["50226",5608,4897,711],["50245",442,442,0],["50251",1816,1816,0],["50270",911,911,0],["50287",2464,2385,79],["50313",16821,15830,991],["50318",3547,2350,1197],["50325",2159,2159,0],["50330",2380,2289,91],["50350",4322,4310,12],["50370",2420,2377,43],["50400",2641,2460,181],["50450",2425,2425,0],["50568",15172,13852,1320],["50573",8318,7599,719],["50577",1781,1692,89],["50590",2653,2653,0],["50606",4550,3687,863],["50680",2709,2617,92],["50683",1532,1532,0],["50686",343,343,0],["50689",5316,4859,457],["50711",4366,3782,584],["52001",70391,50615,19776],["52019",1260,1260,0],["52022",1371,1371,0],["52036",975,975,0],["52051",1128,1128,0],["52079",10987,10987,0],["52083",872,872,0],["52110",3666,3462,204],["52203",1183,1183,0],["52207",1443,1443,0],["52210",746,746,0],["52215",2367,2271,96],["52224",1091,1091,0],["52227",6178,6124,54],["52233",1568,1568,0],["52240",2382,2098,284],["52250",7094,7094,0],["52254",779,779,0],["52256",1142,1142,0],["52258",2114,2114,0],["52260",1911,1911,0],["52287",857,857,0],["52317",2578,2508,70],["52320",1434,1434,0],["52323",1027,1027,0],["52352",1184,1184,0],["52354",947,947,0],["52356",26288,20193,6095],["52378",2956,2956,0],["52381",1333,1333,0],["52385",880,880,0],["52390",1890,1890,0],["52399",5291,5108,183],["52405",1756,1756,0],["52411",1221,1221,0],["52418",1721,1721,0],["52427",2741,2741,0],["52435",1463,1463,0],["52473",1823,1823,0],["52480",487,487,0],["52490",6280,6266,14],["52506",874,874,0],["52520",2024,2024,0],["52540",2590,2590,0],["52560",1860,1860,0],["52565",671,671,0],["52573",1304,1304,0],["52585",3025,2899,126],["52612",4120,4066,54],["52621",3200,3200,0],["52678",4323,4287,36],["52683",2925,2925,0],["52685",1140,1140,0],["52687",2670,2670,0],["52693",2199,2199,0],["52694",904,904,0],["52696",2631,2631,0],["52699",1394,1394,0],["52720",964,964,0],["52786",2583,2583,0],["52788",1376,1376,0],["52835",52348,49043,3305],["52838",7339,6878,461],["52885",1510,1510,0],["54001",164874,121684,43190],["54003",7860,7517,343],["54051",1758,1758,0],["54099",1596,1596,0],["54109",1124,1124,0],["54125",558,558,0],["54128",1893,1893,0],["54172",3775,3421,354],["54174",2218,2218,0],["54206",5414,5414,0],["54223",1344,1344,0],["54239",879,879,0],["54245",3111,3111,0],["54250",6918,6918,0],["54261",6406,6076,330],["54313",1187,1187,0],["54344",3140,3061,79],["54347",581,581,0],["54377",1059,1059,0],["54385",2903,2903,0],["54398",1761,1761,0],["54405",16255,11879,4376],["54418",675,675,0],["54480",735,735,0],["54498",24278,20441,3837],["54518",9737,7603,2134],["54520",1164,1164,0],["54553",2012,1893,119],["54599",1229,1229,0],["54660",2180,2180,0],["54670",2815,2815,0],["54673",1622,1622,0],["54680",631,631,0],["54720",6242,6097,145],["54743",1314,1314,0],["54800",5310,5186,124],["54810",18567,18048,519],["54820",3889,3889,0],["54871",983,983,0],["54874",20733,16629,4104],["63001",45562,36877,8685],["63111",473,473,0],["63130",12318,11179,1139],["63190",4101,3617,484],["63212",993,993,0],["63272",1935,1935,0],["63302",1335,1335,0],["63401",5790,5790,0],["63470",6282,6263,19],["63548",1227,1227,0],["63594",5215,5129,86],["63690",2598,1099,1499],["66001",93157,72045,21112],["66045",1956,1956,0],["66075",1032,1032,0],["66088",4492,4492,0],["66170",34742,28390,6352],["66318",2230,2230,0],["66383",1361,1361,0],["66400",5809,5748,61],["66440",2964,2952,12],["66456",3939,3939,0],["66572",5986,5986,0],["66594",5952,5952,0],["66682",13216,12156,1060],["66687",2193,2193,0],["68001",107675,77367,30308],["68013",243,236,7],["68020",607,597,10],["68051",1590,1543,47],["68077",6677,4207,2470],["68079",1543,1332,211],["68081",55206,42472,12734],["68092",1157,1069,88],["68101",1981,1958,23],["68121",275,275,0],["68132",416,409,7],["68147",1108,1040,68],["68152",794,740,54],["68160",389,367,22],["68162",1607,1507,100],["68167",2561,2530,31],["68169",463,454,9],["68176",487,486,1],["68179",631,627,4],["68190",7503,7139,364],["68207",1038,967,71],["68209",571,571,0],["68211",628,605,23],["68217",1008,984,24],["68229",2231,2083,148],["68235",3424,3282,142],["68245",312,312,0],["68250",885,862,23],["68255",2997,2943,54],["68264",397,382,15],["68266",602,597,5],["68271",917,906,11],["68276",49639,30686,18953],["68296",595,576,19],["68298",787,752,35],["68307",33690,27213,6477],["68318",1100,997,103],["68320",908,879,29],["68322",377,369,8],["68324",461,461,0],["68327",809,765,44],["68344",439,379,60],["68368",532,524,8],["68370",333,333,0],["68377",1153,1122,31],["68385",2268,2160,108],["68397",575,572,3],["68406",8770,6414,2356],["68418",2605,2577,28],["68425",374,351,23],["68432",4780,4339,441],["68444",1216,1179,37],["68464",2230,2153,77],["68468",618,580,38],["68498",769,759,10],["68500",2124,2081,43],["68502",707,681,26],["68522",246,246,0],["68524",496,496,0],["68533",924,872,52],["68547",35777,27532,8245],["68549",727,716,11],["68572",3327,3304,23],["68573",1744,1734,10],["68575",8773,8626,147],["68615",5975,5866,109],["68655",8681,7602,1079],["68669",1566,1530,36],["68673",389,389,0],["68679",14800,9134,5666],["68682",412,390,22],["68684",633,609,24],["68686",438,408,30],["68689",6291,6126,165],["68705",402,397,5],["68720",748,716,32],["68745",1936,1871,65],["68755",10918,4791,6127],["68770",1884,1805,79],["68773",1162,1162,0],["68780",739,719,20],["68820",1459,1348,111],["68855",1096,962,134],["68861",3637,3227,410],["68867",274,270,4],["68872",1317,1229,88],["68895",2077,1645,432],["70001",69370,53976,15394],["70110",2347,2084,263],["70124",3060,3060,0],["70204",2063,2063,0],["70215",16717,14256,2461],["70221",4459,4213,246],["70230",901,901,0],["70233",2326,2316,10],["70235",5404,5208,196],["70265",4417,4223,194],["70400",3129,3062,67],["70418",5292,4793,499],["70429",10587,10356,231],["70473",3135,3079,56],["70508",5963,5464,499],["70523",3756,3756,0],["70670",11843,10935,908],["70678",6343,6343,0],["70702",2722,2556,166],["70708",14490,13358,1132],["70713",14149,13810,339],["70717",4230,4230,0],["70742",6650,6019,631],["70771",5555,5555,0],["70820",8253,6874,1379],["70823",5079,4868,211],["73001",108565,80218,28347],["73024",875,717,158],["73026",1455,1455,0],["73030",983,983,0],["73043",1909,1859,50],["73055",2356,2356,0],["73067",4927,4776,151],["73124",3686,3307,379],["73148",2269,1890,379],["73152",1172,1172,0],["73168",11577,10272,1305],["73200",1445,1445,0],["73217",5586,5441,145],["73226",1742,1721,21],["73236",1541,1527,14],["73268",15526,10055,5471],["73270",1632,1632,0],["73275",5286,3790,1496],["73283",6108,5445,663],["73319",6013,5215,798],["73347",1287,1287,0],["73349",4305,3468,837],["73352",2446,2295,151],["73408",3363,3030,333],["73411",7649,6869,780],["73443",7386,6234,1152],["73449",9664,7174,2490],["73461",662,662,0],["73483",3053,2526,527],["73504",6231,6082,149],["73520",1727,1706,21],["73547",916,916,0],["73555",7387,7175,212],["73563",1751,1654,97],["73585",4610,3623,987],["73616",5221,5175,46],["73622",1028,1028,0],["73624",5158,5052,106],["73671",2571,2374,197],["73675",3133,3133,0],["73678",2579,2579,0],["73686",1199,1199,0],["73770",572,572,0],["73854",917,917,0],["73861",2694,2694,0],["73870",1837,1835,2],["73873",934,932,2],["76001",358832,188158,170674],["76020",2254,2254,0],["76036",3414,2801,613],["76041",3135,2990,145],["76054",998,998,0],["76100",3133,3133,0],["76109",73916,53452,20464],["76111",21528,14794,6734],["76113",4047,3340,707],["76122",4219,3976,243],["76126",3165,2960,205],["76130",19083,13673,5410],["76147",21452,18029,3423],["76233",7728,6639,1089],["76243",1470,1470,0],["76246",1089,1089,0],["76248",10784,7408,3376],["76250",2035,2035,0],["76275",11537,9186,2351],["76306",4371,3890,481],["76318",6172,5302,870],["76364",29302,21183,8119],["76377",2476,2361,115],["76400",5591,5236,355],["76403",2072,2030,42],["76497",1581,1581,0],["76520",58934,45231,13703],["76563",8995,8009,986],["76606",3305,3202,103],["76616",2742,2742,0],["76622",6206,5053,1153],["76670",3102,2629,473],["76736",6268,5600,668],["76823",2241,2241,0],["76828",3270,3270,0],["76834",35684,25858,9826],["76845",919,919,0],["76863",954,954,0],["76869",1948,1948,0],["76890",2845,2845,0],["76892",24376,16509,7867],["76895",7361,6525,836],["81001",23637,20658,2979],["81065",10319,9970,349],["81220",930,930,0],["81300",5473,5372,101],["81591",902,902,0],["81736",13432,12582,850],["81794",15936,14903,1033],["85001",41252,34341,6911],["85010",8235,7641,594],["85015",402,402,0],["85125",3699,3699,0],["85136",245,245,0],["85139",3617,3575,42],["85162",3686,3534,152],["85225",1868,1868,0],["85230",2815,2815,0],["85250",9361,9179,182],["85263",2545,2545,0],["85279",196,196,0],["85300",644,644,0],["85315",275,275,0],["85325",1681,1681,0],["85400",1570,1570,0],["85410",5841,5425,416],["85430",3277,3277,0],["85440",8116,7528,588],["86001",11188,10539,649],["86219",844,844,0],["86320",9643,9475,168],["86568",15864,14948,916],["86569",2361,2361,0],["86571",5179,5179,0],["86573",5318,5318,0],["86749",3307,3221,86],["86755",936,936,0],["86757",4573,4551,22],["86760",1240,1240,0],["86865",8056,7812,244],["86885",6129,5732,397],["88001",10585,7946,2639],["88564",901,901,0],["91001",14906,14084,822],["91263",389,389,0],["91405",795,795,0],["91407",1034,1034,0],["91430",23,23,0],["91460",328,328,0],["91530",156,156,0],["91536",225,225,0],["91540",2030,2030,0],["91669",434,434,0],["91798",845,845,0],["94001",8057,7701,356],["94343",3109,3109,0],["94883",438,438,0],["94884",475,475,0],["94885",80,80,0],["94886",332,332,0],["94887",300,300,0],["94888",216,216,0],["95001",15611,13552,2059],["95015",2090,2090,0],["95025",3312,3312,0],["95200",849,849,0],["97001",8397,8250,147],["97161",258,258,0],["97511",1152,1152,0],["97666",219,219,0],["97889",302,302,0],["99001",7037,6713,324],["99524",2758,2758,0],["99624",1068,1068,0],["99773",14329,14329,0]],"2023":[["05001",412504,305550,106954],["05002",2963,2963,0],["05004",336,336,0],["05021",736,736,0],["05030",4514,4287,227],["05031",4579,4579,0],["05034",7015,6867,148],["05036",1015,1015,0],["05038",1844,1844,0],["05040",3445,3445,0],["05042",5163,4848,315],["05044",1385,1385,0],["05045",30030,27216,2814],["05051",7914,7848,66],["05055",1345,1345,0],["05059",446,446,0],["05079",7742,7193,549],["05086",1283,1283,0],["05088",89377,56446,32931],["05091",1504,1504,0],["05093",2995,2995,0],["05101",4433,4075,358],["05107",1646,1646,0],["05113",1831,1831,0],["05120",7684,7684,0],["05125",1761,1761,0],["05129",12536,10287,2249],["05134",1623,1623,0],["05138",2880,2880,0],["05142",777,777,0],["05145",657,657,0],["05147",12493,12158,335],["05148",11233,10307,926],["05150",522,522,0],["05154",21846,20084,1762],["05172",14499,13783,716],["05190",1501,1501,0],["05197",3434,3404,30],["05206",683,683,0],["05209",2925,2925,0],["05212",13290,10830,2460],["05234",5811,5811,0],["05237",3973,3430,543],["05240",1538,1538,0],["05250",14756,13976,780],["05264",2100,1490,610],["05266",32124,14955,17169],["05282",2782,2782,0],["05284",4986,4986,0],["05306",1366,1366,0],["05308",8448,6171,2277],["05310",1304,1304,0],["05313",1846,1846,0],["05315",986,986,0],["05318",8179,7058,1121],["05321",1639,1639,0],["05347",786,786,0],["05353",1010,1010,0],["05360",41313,31996,9317],["05361",4073,4073,0],["05364",2396,2396,0],["05368",1814,1814,0],["05376",11520,9159,2361],["05380",14780,6612,8168],["05390",1426,1426,0],["05400",4083,3514,569],["05411",1641,1641,0],["05425",1764,1764,0],["05440",13056,10904,2152],["05467",919,919,0],["05475",1442,1442,0],["05480",4368,4368,0],["05483",1515,1515,0],["05490",14782,14782,0],["05495",6965,6900,65],["05501",512,512,0],["05541",4008,3859,149],["05543",1579,1579,0],["05576",1237,1237,0],["05579",7089,6680,409],["05585",2426,2426,0],["05591",4071,4071,0],["05604",8452,8402,50],["05607",5058,2809,2249],["05615",24781,18468,6313],["05628",1765,1765,0],["05631",12295,7432,4863],["05642",2751,2751,0],["05647",1342,1342,0],["05649",3166,3166,0],["05652",1174,1174,0],["05656",2677,2677,0],["05658",521,521,0],["05659",6218,6218,0],["05660",2973,2973,0],["05664",5102,4821,281],["05665",8008,8008,0],["05667",2464,2464,0],["05670",3983,3983,0],["05674",3272,3272,0],["05679",3219,3219,0],["05686",7773,6580,1193],["05690",2525,2525,0],["05697",7675,6357,1318],["05736",8538,7636,902],["05756",6299,6299,0],["05761",2957,2886,71],["05789",2498,2498,0],["05790",6825,6709,116],["05792",826,826,0],["05809",1375,1375,0],["05819",1141,1141,0],["05837",39997,36015,3982],["05842",1363,1363,0],["05847",6576,6541,35],["05854",3047,3047,0],["05856",831,831,0],["05858",2885,2885,0],["05861",1695,1638,57],["05873",2674,2674,0],["05885",1270,1270,0],["05887",8535,7732,803],["05890",3864,3864,0],["05893",4509,4186,323],["05895",8037,7774,263],["08001",264350,196995,67355],["08078",13411,11078,2333],["08137",5515,5482,33],["08141",3525,3243,282],["08296",12511,9392,3119],["08372",4244,3629,615],["08421",6131,5855,276],["08433",31471,14787,16684],["08436",4545,4545,0],["08520",6286,5771,515],["08549",930,882,48],["08558",3373,3191,182],["08560",5018,4810,208],["08573",17304,6140,11164],["08606",5879,5879,0],["08634",7461,6732,729],["08638",21921,18528,3393],["08675",2860,2860,0],["08685",4735,4000,735],["08758",148159,52415,95744],["08770",2707,2707,0],["08832",2307,2227,80],["08849",1690,1565,125],["11001",1214728,761651,453077],["13001",244690,161779,82911],["13006",6831,6831,0],["13030",2667,2667,0],["13042",2223,2196,27],["13052",18676,14999,3677],["13062",1997,1997,0],["13074",4626,4626,0],["13140",6727,6462,265],["13160",2357,2357,0],["13188",3646,3646,0],["13212",4053,4053,0],["13222",3617,3531,86],["13244",20831,17395,3436],["13248",1649,1649,0],["13268",1835,1835,0],["13300",3538,3538,0],["13430",31061,26954,4107],["13433",7680,6452,1228],["13440",2290,2290,0],["13442",12915,12825,90],["13458",3506,3506,0],["13468",12438,11483,955],["13473",5520,5520,0],["13490",2641,2641,0],["13549",5933,5933,0],["13580",1642,1642,0],["13600",2165,2165,0],["13620",1711,1711,0],["13647",3899,3899,0],["13650",2353,2353,0],["13654",5637,5535,102],["13655",2461,2461,0],["13657",8325,8001,324],["13667",5092,5092,0],["13670",7777,7720,57],["13673",3788,3495,293],["13683",4427,4427,0],["13688",11587,10645,942],["13744",4077,4077,0],["13760",1833,1833,0],["13780",3494,3494,0],["13810",6223,6223,0],["13836",27230,14904,12326],["13838",3852,3685,167],["13873",5469,5014,455],["13894",4186,2818,1368],["15001",37612,23015,14597],["15022",206,206,0],["15047",2799,2667,132],["15051",1081,1081,0],["15087",1558,1451,107],["15090",226,226,0],["15092",220,220,0],["15097",964,964,0],["15104",749,749,0],["15106",395,395,0],["15109",729,729,0],["15114",131,131,0],["15131",416,416,0],["15135",461,461,0],["15162",518,518,0],["15172",426,426,0],["15176",12230,9250,2980],["15180",590,590,0],["15183",1730,1730,0],["15185",923,923,0],["15187",495,495,0],["15189",838,838,0],["15204",3271,2706,565],["15212",468,468,0],["15215",397,397,0],["15218",463,463,0],["15223",1561,1561,0],["15224",703,703,0],["15226",320,320,0],["15232",671,671,0],["15236",301,301,0],["15238",25291,17004,8287],["15244",730,691,39],["15248",493,493,0],["15272",789,789,0],["15276",501,501,0],["15293",557,557,0],["15296",886,886,0],["15299",2902,2356,546],["15317",268,268,0],["15322",1899,1649,250],["15325",444,444,0],["15332",724,724,0],["15362",356,356,0],["15367",1137,1137,0],["15368",756,756,0],["15377",519,519,0],["15380",359,359,0],["15401",170,170,0],["15403",458,458,0],["15407",3500,2661,839],["15425",591,591,0],["15442",813,813,0],["15455",1435,1359,76],["15464",763,763,0],["15466",900,900,0],["15469",4014,3586,428],["15476",924,838,86],["15480",1500,1428,72],["15491",3435,1846,1589],["15494",847,838,9],["15500",461,406,55],["15507",1347,1347,0],["15511",276,276,0],["15514",530,530,0],["15516",7063,5216,1847],["15518",390,390,0],["15522",304,304,0],["15531",1226,1226,0],["15533",431,431,0],["15537",693,592,101],["15542",1161,1161,0],["15550",290,290,0],["15572",10311,9099,1212],["15580",833,833,0],["15599",2050,1542,508],["15600",1282,1282,0],["15621",335,335,0],["15632",2299,2058,241],["15638",1033,789,244],["15646",4963,4073,890],["15660",253,253,0],["15664",683,683,0],["15667",879,830,49],["15673",661,661,0],["15676",693,693,0],["15681",1238,1238,0],["15686",1356,1254,102],["15690",644,589,55],["15693",1880,1491,389],["15696",614,614,0],["15720",317,317,0],["15723",203,203,0],["15740",1552,1519,33],["15753",1583,1564,19],["15755",1580,1580,0],["15757",2000,1775,225],["15759",29262,19862,9400],["15761",473,473,0],["15762",554,554,0],["15763",1394,1394,0],["15764",1910,1520,390],["15774",314,314,0],["15776",901,901,0],["15778",370,370,0],["15790",1025,1025,0],["15798",452,452,0],["15804",1384,1384,0],["15806",2095,1877,218],["15808",571,502,69],["15810",540,540,0],["15814",2098,1948,150],["15816",806,806,0],["15820",742,742,0],["15822",966,966,0],["15832",346,346,0],["15835",1347,1347,0],["15837",2155,1989,166],["15839",343,343,0],["15842",1140,1140,0],["15861",2914,2580,334],["15879",318,318,0],["15897",838,838,0],["17001",54139,39986,14153],["17013",3511,3510,1],["17042",5151,5013,138],["17050",1933,1933,0],["17088",1736,1736,0],["17174",8334,7477,857],["17272",1309,1309,0],["17380",12873,11194,1679],["17388",916,916,0],["17433",2735,2725,10],["17442",1928,1928,0],["17444",2655,2655,0],["17446",337,337,0],["17486",3450,3352,98],["17495",1256,1256,0],["17513",2148,2148,0],["17524",2620,2620,0],["17541",3255,3255,0],["17614",8725,8350,375],["17616",1680,1680,0],["17653",2397,2397,0],["17662",3571,3571,0],["17665",881,881,0],["17777",5041,4821,220],["17867",1624,1624,0],["17873",10221,6861,3360],["17877",2180,2059,121],["18001",38422,30014,8408],["18029",896,896,0],["18094",2240,2240,0],["18150",7912,7912,0],["18205",1861,1861,0],["18247",4019,3840,179],["18256",3030,3030,0],["18410",2971,2971,0],["18460",2010,2010,0],["18479",643,643,0],["18592",5491,5491,0],["18610",3140,3140,0],["18753",13476,12744,732],["18756",2609,2609,0],["18785",1370,1370,0],["18860",1283,1283,0],["19001",61895,43771,18124],["19022",2613,2613,0],["19050",6205,6154,51],["19075",3615,3615,0],["19100",7206,7206,0],["19110",5568,5568,0],["19130",7262,6909,353],["19137",9990,9990,0],["19142",6559,6241,318],["19212",5157,4868,289],["19256",9246,8728,518],["19290",963,963,0],["19300",3289,3242,47],["19318",7696,7696,0],["19355",7045,7045,0],["19364",3693,3693,0],["19392",1794,1794,0],["19397",2616,2580,36],["19418",5719,5719,0],["19450",2530,2530,0],["19455",6098,5420,678],["19473",7379,7379,0],["19513",1629,1629,0],["19517",9963,9963,0],["19532",6709,6316,393],["19533",1900,1900,0],["19548",8072,7315,757],["19573",9520,6455,3065],["19585",2793,2793,0],["19622",1500,1500,0],["19693",1134,1134,0],["19698",24154,19532,4622],["19701",940,940,0],["19743",7338,7338,0],["19760",1387,1387,0],["19780",5260,5260,0],["19785",971,971,0],["19807",5987,5618,369],["19809",7868,7868,0],["19821",7032,7032,0],["19824",4156,4091,65],["19845",3437,2839,598],["20001",119600,84354,35246],["20011",25090,20028,5062],["20013",18570,16494,2076],["20032",5448,5448,0],["20045",6566,6113,453],["20060",11224,9534,1690],["20175",9857,9788,69],["20178",7873,7324,549],["20228",9661,8951,710],["20238",8289,7470,819],["20250",12084,10648,1436],["20295",2439,2439,0],["20310",800,800,0],["20383",3605,3605,0],["20400",12229,11189,1040],["20443",2931,2931,0],["20517",4036,3615,421],["20550",5290,4882,408],["20570",7126,7126,0],["20614",3329,3329,0],["20621",7591,6965,626],["20710",5835,5231,604],["20750",4855,4446,409],["20770",5965,5532,433],["20787",4226,4226,0],["23001",107207,80893,26314],["23068",11632,10797,835],["23079",5373,4919,454],["23090",4259,4240,19],["23162",21463,17338,4125],["23168",2643,2643,0],["23182",10344,9122,1222],["23189",12587,12375,212],["23300",3166,3145,21],["23350",3173,3078,95],["23417",25826,21764,4062],["23419",4031,3921,110],["23464",3348,3175,173],["23466",21685,17907,3778],["23500",6492,6426,66],["23555",15392,13312,2080],["23570",6540,6540,0],["23574",5270,5270,0],["23580",10943,10459,484],["23586",3730,3585,145],["23660",21557,19453,2104],["23670",10238,9557,681],["23672",7581,7149,432],["23675",7619,7295,324],["23678",5266,4968,298],["23682",3032,2994,38],["23686",7832,7704,128],["23807",28481,26849,1632],["23815",9970,9970,0],["23855",8534,8534,0],["25001",1705,1421,284],["25019",1132,1132,0],["25035",2852,2586,266],["25040",2703,2439,264],["25053",1808,1762,46],["25086",383,383,0],["25095",430,430,0],["25099",2065,1874,191],["25120",880,880,0],["25123",1566,1343,223],["25126",16052,8073,7979],["25148",2039,2039,0],["25151",3314,3132,182],["25154",1253,1253,0],["25168",542,542,0],["25175",31335,15131,16204],["25178",1815,1815,0],["25181",2239,1944,295],["25183",4254,3804,450],["25200",4738,3771,967],["25214",13998,3094,10904],["25224",1647,1647,0],["25245",4493,4284,209],["25258",747,747,0],["25260",5349,3243,2106],["25269",27090,17774,9316],["25279",2169,2138,31],["25281",1183,1183,0],["25286",20255,9966,10289],["25288",1636,1636,0],["25290",27246,18082,9164],["25293",715,715,0],["25295",4354,2743,1611],["25297",1524,1524,0],["25299",494,494,0],["25307",21068,11565,9503],["25312",1605,1490,115],["25317",3155,3072,83],["25320",5797,4070,1727],["25322",3168,2956,212],["25324",472,472,0],["25326",1095,1061,34],["25328",719,719,0],["25335",1275,1137,138],["25339",692,692,0],["25368",443,443,0],["25372",785,785,0],["25377",9868,3256,6612],["25386",6342,4567,1775],["25394",1352,1352,0],["25398",890,890,0],["25402",3387,3247,140],["25407",2230,2021,209],["25426",1048,983,65],["25430",27225,14334,12891],["25436",504,504,0],["25438",1619,1619,0],["25473",29649,17753,11896],["25483",310,310,0],["25486",3496,2741,755],["25488",1698,1268,430],["25489",498,498,0],["25491",1219,1219,0],["25506",810,810,0],["25513",4803,4555,248],["25518",617,617,0],["25524",949,949,0],["25530",2222,2222,0],["25535",2362,2362,0],["25572",3583,3146,437],["25580",389,389,0],["25592",801,801,0],["25594",1452,1452,0],["25596",1155,1155,0],["25599",1278,1278,0],["25612",1925,1711,214],["25645",1905,1789,116],["25649",1677,1677,0],["25653",795,795,0],["25658",1765,1700,65],["25662",1622,1622,0],["25718",2225,2172,53],["25736",2818,2323,495],["25740",7320,5170,2150],["25743",4339,4045,294],["25745",2556,2063,493],["25754",137041,74049,62992],["25758",5496,3635,1861],["25769",4012,2137,1875],["25772",3076,2904,172],["25777",966,966,0],["25779",985,929,56],["25781",1295,1240,55],["25785",5186,3200,1986],["25793",1966,1966,0],["25797",1680,1499,181],["25799",6862,3121,3741],["25805",825,825,0],["25807",401,401,0],["25815",2398,2243,155],["25817",10700,8738,1962],["25823",603,603,0],["25839",1617,1617,0],["25841",1077,1077,0],["25843",11097,7496,3601],["25845",1184,1143,41],["25851",556,556,0],["25862",1057,1057,0],["25867",669,669,0],["25871",296,296,0],["25873",4513,3389,1124],["25875",5667,4524,1143],["25878",2746,2746,0],["25885",2046,2046,0],["25898",822,822,0],["25899",28297,16772,11525],["27001",37222,33967,3255],["27006",3667,3667,0],["27025",10343,10343,0],["27050",1423,1423,0],["27073",4702,4702,0],["27075",3370,3370,0],["27077",6218,6218,0],["27099",5681,5681,0],["27135",1643,1643,0],["27150",4540,4540,0],["27160",1283,1283,0],["27205",3042,3042,0],["27245",3259,3259,0],["27250",5067,5067,0],["27361",10190,9855,335],["27372",1466,1466,0],["27413",4262,4262,0],["27425",2391,2391,0],["27430",4333,4333,0],["27450",2840,2840,0],["27491",2075,2075,0],["27495",2591,2591,0],["27580",1700,1700,0],["27600",2350,2350,0],["27615",13531,13531,0],["27660",1077,1077,0],["27745",840,840,0],["27787",5796,5796,0],["27800",3657,3657,0],["27810",1769,1769,0],["41001",76877,53831,23046],["41006",8143,7922,221],["41013",2025,2025,0],["41016",3573,3573,0],["41020",4864,4690,174],["41026",632,632,0],["41078",1156,1156,0],["41132",6396,5340,1056],["41206",1396,1396,0],["41244",802,802,0],["41298",16624,14207,2417],["41306",5656,5631,25],["41319",4160,4016,144],["41349",1676,1676,0],["41357",2294,2294,0],["41359",5792,5592,200],["41378",3152,3152,0],["41396",14741,13720,1021],["41483",1690,1690,0],["41503",2572,2510,62],["41518",1353,1353,0],["41524",6780,4980,1800],["41530",2463,2463,0],["41548",3485,3117,368],["41551",33060,28206,4854],["41615",5597,4192,1405],["41660",2588,2588,0],["41668",6655,6349,306],["41676",2148,2148,0],["41770",5607,5371,236],["41791",3733,3616,117],["41797",2107,2107,0],["41799",2585,2585,0],["41801",1460,1460,0],["41807",4439,3915,524],["41872",1378,1378,0],["41885",1444,1444,0],["44001",67342,56157,11185],["44035",8699,7165,1534],["44078",8267,7574,693],["44090",8561,8149,412],["44098",2805,2805,0],["44110",1682,1410,272],["44279",12375,11074,1301],["44378",5212,4368,844],["44420",696,696,0],["44430",58222,54606,3616],["44560",32186,32186,0],["44650",11857,10261,1596],["44847",67817,67732,85],["44855",2166,1947,219],["44874",6562,5197,1365],["47001",132894,99468,33426],["47030",4811,4683,128],["47053",12503,11115,1388],["47058",8850,8308,542],["47161",2158,2158,0],["47170",7593,7500,93],["47189",30936,24385,6551],["47205",2723,2723,0],["47245",22054,20627,1427],["47258",4140,4140,0],["47268",7221,7006,215],["47288",21125,18297,2828],["47318",7307,7307,0],["47460",6259,6075,184],["47541",2283,2283,0],["47545",4906,4687,219],["47551",9906,9210,696],["47555",17050,15983,1067],["47570",6845,6826,19],["47605",2330,2330,0],["47660",6118,6096,22],["47675",2092,2092,0],["47692",6877,6877,0],["47703",4193,4193,0],["47707",6790,6638,152],["47720",3144,3144,0],["47745",6802,6367,435],["47798",4406,4406,0],["47960",2308,2308,0],["47980",23603,21920,1683],["50001",114288,76654,37634],["50006",19931,15354,4577],["50110",1632,1632,0],["50124",1546,1546,0],["50150",3061,2815,246],["50223",1282,1282,0],["50226",5577,4727,850],["50245",409,409,0],["50251",1704,1704,0],["50270",889,889,0],["50287",2475,2378,97],["50313",16638,15587,1051],["50318",3688,2407,1281],["50325",2004,2004,0],["50330",2385,2282,103],["50350",4300,4146,154],["50370",2431,2333,98],["50400",2551,2368,183],["50450",2389,2389,0],["50568",15688,14071,1617],["50573",8375,7518,857],["50577",1738,1738,0],["50590",2589,2589,0],["50606",4580,3596,984],["50680",2794,2675,119],["50683",1431,1431,0],["50686",350,350,0],["50689",5056,4559,497],["50711",4305,3593,712],["52001",68672,49121,19551],["52019",1196,1196,0],["52022",1320,1320,0],["52036",886,886,0],["52051",1084,1084,0],["52079",11075,11075,0],["52083",849,849,0],["52110",3505,3300,205],["52203",1151,1151,0],["52207",1352,1352,0],["52210",672,672,0],["52215",2316,2215,101],["52224",1094,1094,0],["52227",5888,5841,47],["52233",1482,1482,0],["52240",2474,2154,320],["52250",6592,6592,0],["52254",743,743,0],["52256",1051,1051,0],["52258",1987,1987,0],["52260",1846,1846,0],["52287",838,838,0],["52317",2556,2485,71],["52320",1382,1382,0],["52323",1027,1027,0],["52352",1145,1145,0],["52354",940,940,0],["52356",25325,19094,6231],["52378",2749,2749,0],["52381",1288,1288,0],["52385",885,885,0],["52390",1795,1795,0],["52399",5114,4856,258],["52405",1679,1679,0],["52411",1136,1136,0],["52418",1589,1589,0],["52427",2718,2718,0],["52435",1428,1428,0],["52473",1979,1979,0],["52480",460,460,0],["52490",6231,6161,70],["52506",871,871,0],["52520",1986,1986,0],["52540",2508,2508,0],["52560",1861,1861,0],["52565",684,684,0],["52573",1250,1250,0],["52585",2919,2788,131],["52612",3794,3794,0],["52621",3204,3204,0],["52678",4285,4253,32],["52683",2833,2833,0],["52685",1119,1119,0],["52687",2514,2514,0],["52693",2153,2153,0],["52694",827,827,0],["52696",2351,2351,0],["52699",1361,1361,0],["52720",890,890,0],["52786",2529,2529,0],["52788",1337,1337,0],["52835",48520,44787,3733],["52838",7102,6674,428],["52885",1433,1433,0],["54001",164354,119681,44673],["54003",7678,7277,401],["54051",1767,1767,0],["54099",1513,1513,0],["54109",1113,1113,0],["54125",522,522,0],["54128",1815,1815,0],["54172",3656,3353,303],["54174",2109,2109,0],["54206",5283,5283,0],["54223",1303,1303,0],["54239",933,933,0],["54245",3003,3003,0],["54250",6917,6917,0],["54261",6504,6039,465],["54313",1147,1147,0],["54344",2796,2631,165],["54347",581,581,0],["54377",1054,1054,0],["54385",2915,2915,0],["54398",1809,1809,0],["54405",16244,11629,4615],["54418",671,671,0],["54480",760,760,0],["54498",24548,20579,3969],["54518",9322,7166,2156],["54520",1126,1126,0],["54553",2102,1967,135],["54599",1105,1105,0],["54660",2060,2060,0],["54670",2672,2672,0],["54673",1641,1641,0],["54680",635,635,0],["54720",6114,5988,126],["54743",1268,1268,0],["54800",5175,5031,144],["54810",19871,19282,589],["54820",3891,3891,0],["54871",923,923,0],["54874",20540,16194,4346],["63001",44540,35599,8941],["63111",425,425,0],["63130",11773,10706,1067],["63190",3972,3503,469],["63212",970,970,0],["63272",1865,1865,0],["63302",1189,1189,0],["63401",5685,5685,0],["63470",6050,6020,30],["63548",1267,1267,0],["63594",5116,5017,99],["63690",2485,1039,1446],["66001",89628,68600,21028],["66045",1834,1834,0],["66075",1076,1076,0],["66088",4352,4352,0],["66170",33477,27106,6371],["66318",2074,2074,0],["66383",1266,1266,0],["66400",5493,5423,70],["66440",2808,2803,5],["66456",3845,3845,0],["66572",6130,6130,0],["66594",5709,5709,0],["66682",12895,11775,1120],["66687",1968,1968,0],["68001",106837,75679,31158],["68013",245,234,11],["68020",575,567,8],["68051",1541,1505,36],["68077",6879,4186,2693],["68079",1542,1322,220],["68081",54819,41182,13637],["68092",1112,1048,64],["68101",1899,1879,20],["68121",251,251,0],["68132",425,419,6],["68147",1011,955,56],["68152",759,702,57],["68160",343,331,12],["68162",1477,1400,77],["68167",2452,2420,32],["68169",444,439,5],["68176",428,421,7],["68179",563,557,6],["68190",7079,6720,359],["68207",993,947,46],["68209",562,562,0],["68211",619,599,20],["68217",936,925,11],["68229",2162,2048,114],["68235",3318,3172,146],["68245",298,298,0],["68250",826,808,18],["68255",2845,2790,55],["68264",406,369,37],["68266",633,614,19],["68271",831,819,12],["68276",49544,30079,19465],["68296",548,531,17],["68298",724,712,12],["68307",32706,26538,6168],["68318",1061,943,118],["68320",862,837,25],["68322",388,376,12],["68324",494,494,0],["68327",803,780,23],["68344",396,360,36],["68368",519,497,22],["68370",331,331,0],["68377",1106,1074,32],["68385",2160,2083,77],["68397",545,539,6],["68406",8774,6281,2493],["68418",2644,2617,27],["68425",375,351,24],["68432",4756,4324,432],["68444",1194,1143,51],["68464",2243,2151,92],["68468",562,528,34],["68498",744,732,12],["68500",2148,2112,36],["68502",688,664,24],["68522",236,236,0],["68524",498,498,0],["68533",865,846,19],["68547",36111,27801,8310],["68549",702,693,9],["68572",3216,3194,22],["68573",1757,1757,0],["68575",8735,8592,143],["68615",6017,5749,268],["68655",8676,7429,1247],["68669",1498,1477,21],["68673",354,354,0],["68679",14239,8928,5311],["68682",386,374,12],["68684",575,561,14],["68686",427,383,44],["68689",6223,6062,161],["68705",405,386,19],["68720",615,614,1],["68745",1910,1825,85],["68755",11289,4473,6816],["68770",1777,1727,50],["68773",1054,1054,0],["68780",699,688,11],["68820",1465,1363,102],["68855",1135,1001,134],["68861",3441,2896,545],["68867",259,256,3],["68872",1321,1227,94],["68895",2062,1673,389],["70001",67983,51447,16536],["70110",2296,1987,309],["70124",2976,2976,0],["70204",2058,2058,0],["70215",16341,13690,2651],["70221",4470,4205,265],["70230",922,922,0],["70233",2280,2276,4],["70235",5268,5009,259],["70265",4355,4134,221],["70400",3016,2932,84],["70418",5180,4673,507],["70429",10259,9971,288],["70473",3131,3068,63],["70508",5754,5249,505],["70523",3583,3583,0],["70670",11669,10694,975],["70678",6016,6016,0],["70702",2759,2578,181],["70708",13892,12675,1217],["70713",13626,13259,367],["70717",4022,4022,0],["70742",6415,5694,721],["70771",5248,5248,0],["70820",8328,6661,1667],["70823",5056,4824,232],["73001",106395,76961,29434],["73024",705,705,0],["73026",1399,1399,0],["73030",889,889,0],["73043",1832,1773,59],["73055",2369,2234,135],["73067",4935,4797,138],["73124",3581,3137,444],["73148",2207,1763,444],["73152",1148,1148,0],["73168",11245,9872,1373],["73200",1359,1359,0],["73217",5399,5229,170],["73226",1604,1590,14],["73236",1529,1527,2],["73268",15281,9427,5854],["73270",1619,1619,0],["73275",5214,3650,1564],["73283",5872,5344,528],["73319",5767,4957,810],["73347",1180,1180,0],["73349",4111,3272,839],["73352",2409,2210,199],["73408",3258,2912,346],["73411",7450,6635,815],["73443",7157,5962,1195],["73449",9181,6614,2567],["73461",590,590,0],["73483",2982,2429,553],["73504",6012,5830,182],["73520",1567,1547,20],["73547",898,898,0],["73555",7311,7120,191],["73563",1712,1634,78],["73585",4384,3377,1007],["73616",4978,4965,13],["73622",983,983,0],["73624",4998,4936,62],["73671",2483,2275,208],["73675",3057,3045,12],["73678",2514,2514,0],["73686",1087,1087,0],["73770",545,545,0],["73854",904,904,0],["73861",2471,2471,0],["73870",1829,1827,2],["73873",822,822,0],["76001",350938,180927,170011],["76020",2131,2131,0],["76036",3227,2615,612],["76041",3072,2900,172],["76054",927,927,0],["76100",2833,2833,0],["76109",68211,49549,18662],["76111",20758,14166,6592],["76113",3822,3142,680],["76122",3896,3677,219],["76126",3116,2902,214],["76130",20214,14919,5295],["76147",20499,17017,3482],["76233",7387,6279,1108],["76243",1386,1386,0],["76246",1015,1015,0],["76248",10459,7107,3352],["76250",2076,2076,0],["76275",11024,8720,2304],["76306",4176,3714,462],["76318",6023,5113,910],["76364",29004,20542,8462],["76377",2338,2228,110],["76400",5268,4889,379],["76403",1979,1935,44],["76497",1454,1454,0],["76520",57451,43265,14186],["76563",8409,7388,1021],["76606",3131,3063,68],["76616",2683,2683,0],["76622",6081,4799,1282],["76670",2968,2485,483],["76736",5829,5120,709],["76823",2107,2107,0],["76828",3100,3100,0],["76834",33163,23522,9641],["76845",886,886,0],["76863",999,999,0],["76869",1854,1854,0],["76890",2770,2770,0],["76892",24900,15926,8974],["76895",7123,6284,839],["81001",23040,19866,3174],["81065",10475,10193,282],["81220",840,840,0],["81300",5291,5205,86],["81591",858,858,0],["81736",13610,12281,1329],["81794",15752,14766,986],["85001",41214,33873,7341],["85010",8123,7502,621],["85015",386,386,0],["85125",3637,3637,0],["85136",226,226,0],["85139",3680,3620,60],["85162",3556,3413,143],["85225",1725,1725,0],["85230",2771,2771,0],["85250",9342,9148,194],["85263",2539,2539,0],["85279",168,168,0],["85300",603,603,0],["85315",278,278,0],["85325",1691,1691,0],["85400",1501,1501,0],["85410",5817,5344,473],["85430",3211,3211,0],["85440",8425,7719,706],["86001",11248,10615,633],["86219",825,825,0],["86320",9396,9241,155],["86568",16463,15312,1151],["86569",2381,2381,0],["86571",5153,5153,0],["86573",5421,5421,0],["86749",3172,3079,93],["86755",921,921,0],["86757",4555,4531,24],["86760",1242,1242,0],["86865",8140,7907,233],["86885",6237,5807,430],["88001",10479,7520,2959],["88564",929,929,0],["91001",14378,13528,850],["91263",345,345,0],["91405",692,692,0],["91407",962,962,0],["91430",24,24,0],["91460",336,336,0],["91530",145,145,0],["91536",261,261,0],["91540",2042,2042,0],["91669",431,431,0],["91798",732,732,0],["94001",8711,8427,284],["94343",3149,3149,0],["94883",450,450,0],["94884",625,625,0],["94885",57,57,0],["94886",327,327,0],["94887",322,322,0],["94888",214,214,0],["95001",15477,13397,2080],["95015",2533,2533,0],["95025",2795,2795,0],["95200",777,777,0],["97001",7794,7661,133],["97161",682,682,0],["97511",1198,1198,0],["97666",190,190,0],["97889",292,292,0],["99001",7420,7097,323],["99524",2811,2797,14],["99624",1079,1079,0],["99773",14246,14246,0]]} \ No newline at end of file diff --git a/aplicaciones/www/estaticos/datos/ya2-7-nal.json b/aplicaciones/www/estaticos/datos/ya2-7-nal.json new file mode 100644 index 0000000..7b6072f --- /dev/null +++ b/aplicaciones/www/estaticos/datos/ya2-7-nal.json @@ -0,0 +1 @@ +{"ascendente":true,"estructura":"conteo","unidadMedida":1,"datos":{"2012":[8939203,8432701,506502],"2020":[10022656,7835908,2186748],"2021":[9979271,7964065,2015206],"2022":[9966211,7814774,2151437],"2023":[9800134,7620791,2179343]},"datosMunicipio":true,"maxNal":10022656,"minNal":8939203,"maxDep":1306724,"minDep":9237,"maxMun":1306724,"minMun":1} \ No newline at end of file diff --git a/aplicaciones/www/src/componentes/DescripcionYa.astro b/aplicaciones/www/src/componentes/DescripcionYa.astro index 485125c..675a9f0 100644 --- a/aplicaciones/www/src/componentes/DescripcionYa.astro +++ b/aplicaciones/www/src/componentes/DescripcionYa.astro @@ -110,7 +110,8 @@ if (definicion) { const maximos = definirMedidasMax(respuesta.maxNal, respuesta, umbral); for (const año in respuesta.datos) { - ordenados.push({ año, valor: respuesta.datos[año] }); + const valor = Array.isArray(respuesta.datos[año]) ? respuesta.datos[año][0] : respuesta.datos[año]; + ordenados.push({ año, valor }); } const posX = (valor: number) => { diff --git a/aplicaciones/www/src/componentes/Linea.ts b/aplicaciones/www/src/componentes/Linea.ts index e12b523..2401464 100644 --- a/aplicaciones/www/src/componentes/Linea.ts +++ b/aplicaciones/www/src/componentes/Linea.ts @@ -44,7 +44,7 @@ export default class Linea { punto.onmouseenter = (evento) => { const x = evento.pageX; const y = evento.pageY; - informacion.innerText = `${nombre} en ${año}: ${valor}${ + informacion.innerText = `${nombre} en ${año}: ${new Intl.NumberFormat('de-DE').format(valor)}${ unidad.toLocaleLowerCase() === 'porcentaje' ? '%' : '' }`; informacion.classList.add('visible'); diff --git a/aplicaciones/www/src/componentes/LineaTiempo.astro b/aplicaciones/www/src/componentes/LineaTiempo.astro index 3309ae9..7ce2623 100644 --- a/aplicaciones/www/src/componentes/LineaTiempo.astro +++ b/aplicaciones/www/src/componentes/LineaTiempo.astro @@ -324,7 +324,10 @@ const { alto, meta, umbral } = Astro.props; const lineaNacional = new Linea( contenedorLineas, 'Colombia', - lista, + lista.map((obj) => { + obj.valor = obj.valor ? (Array.isArray(obj.valor) ? obj.valor[0] : obj.valor) : obj.valor; + return obj; + }), obtenerVariableCSS('--fucsiaEsmalte'), visualizaciones.dataset.unidad ); diff --git a/aplicaciones/www/src/componentes/Mapa.astro b/aplicaciones/www/src/componentes/Mapa.astro index 1746628..c5b2b21 100644 --- a/aplicaciones/www/src/componentes/Mapa.astro +++ b/aplicaciones/www/src/componentes/Mapa.astro @@ -63,7 +63,7 @@ const { ancho, alto } = Astro.props;