Arca Continental

Importar la base de datos.

#file.choose()
base_de_datos <- read.csv("/Users/pam/Downloads/R Code (5)/Datos Arca Continental Original.csv")

Entender la base de datos.

summary(base_de_datos)
##        ID              Year       Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##      CEDI             Cliente             Nombre          Tamano.Cte.Industria
##  Length:466509      Length:466509      Length:466509      Length:466509       
##  Class :character   Class :character   Class :character   Class :character    
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character    
##                                                                               
##                                                                               
##                                                                               
##  Segmento.Det          Marca           Presentacion          Tamano         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
## 
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Year                : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamano.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamano              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
#install.packages("dplyr")
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
count(base_de_datos, Territorio, sort = TRUE)
##    Territorio      n
## 1 Guadalajara 466508
## 2  Territorio      1
count(base_de_datos, Sub.Territorio, sort =TRUE)
##   Sub.Territorio      n
## 1        Belenes 208982
## 2   Huentit\x87n 144196
## 3     Toluquilla 113330
## 4 Sub Territorio      1
count(base_de_datos, CEDI, sort = TRUE)
##                CEDI      n
## 1      Suc. Belenes 208982
## 2 Suc. Huentit\x87n 144196
## 3   Suc. Toluquilla 113330
## 4              CEDI      1
count(base_de_datos, Cliente, sort = TRUE)
##      Cliente   n
## 1        286 740
## 2       1053 614
## 3       1288 598
## 4       2912 586
## 5        750 579
## 6         30 567
## 7       1174 552
## 8        689 545
## 9       1397 539
## 10      1378 538
## 11      2661 537
## 12       475 531
## 13      7821 531
## 14      1582 528
## 15      1859 525
## 16      1431 517
## 17      1257 516
## 18      5583 516
## 19       372 510
## 20      9998 508
## 21      3601 506
## 22        27 505
## 23      1523 499
## 24      5879 499
## 25      1451 496
## 26       335 496
## 27       386 496
## 28      1032 495
## 29      1836 491
## 30       411 489
## 31        54 484
## 32      9098 478
## 33      1862 476
## 34      2097 463
## 35      1130 461
## 36       605 457
## 37       371 455
## 38      9759 455
## 39      1937 454
## 40      2627 447
## 41      2706 447
## 42       294 447
## 43       457 447
## 44      2700 445
## 45      1759 444
## 46      2795 444
## 47      3069 440
## 48      8694 439
## 49      9872 439
## 50      7033 436
## 51        73 436
## 52      1724 432
## 53      9964 427
## 54      1196 426
## 55      4609 426
## 56      9455 426
## 57      5835 422
## 58      8373 422
## 59      1074 421
## 60       113 416
## 61      1880 415
## 62      7884 412
## 63      2019 410
## 64      5531 409
## 65      1203 407
## 66      2780 407
## 67      5365 407
## 68      3857 406
## 69      1039 404
## 70      1546 403
## 71      2764 403
## 72       866 403
## 73       487 400
## 74      8475 400
## 75      8537 399
## 76      2736 398
## 77      2980 398
## 78      2651 396
## 79      2663 396
## 80      4855 395
## 81      9371 395
## 82      7446 394
## 83      8266 394
## 84       365 393
## 85      7383 392
## 86       623 389
## 87      6251 389
## 88       391 387
## 89      8672 386
## 90      2797 384
## 91      8409 384
## 92      7665 382
## 93      5719 381
## 94       575 381
## 95      6223 380
## 96      1939 378
## 97       438 378
## 98       683 378
## 99      7875 378
## 100     8152 378
## 101     2702 375
## 102     3881 375
## 103     2993 373
## 104     9015 373
## 105     1685 371
## 106     2069 370
## 107     9788 370
## 108     1870 369
## 109     9010 368
## 110     9267 368
## 111     1098 367
## 112     3961 366
## 113     4167 366
## 114     6673 366
## 115     9041 364
## 116     3072 363
## 117     4169 363
## 118     6812 363
## 119     6986 363
## 120      800 363
## 121     9245 363
## 122     1716 362
## 123     3247 361
## 124     8018 361
## 125     9734 361
## 126     1126 360
## 127     4924 360
## 128     6307 360
## 129     8791 359
## 130     8259 358
## 131     2647 357
## 132     6190 357
## 133     4431 356
## 134     9646 356
## 135     4373 355
## 136     9139 355
## 137     1916 354
## 138     5965 354
## 139     6102 354
## 140     6593 354
## 141     9173 354
## 142     1920 353
## 143     2878 353
## 144     3331 353
## 145     5261 353
## 146     2929 352
## 147     3063 352
## 148     5263 352
## 149     1812 350
## 150      652 350
## 151     2111 349
## 152     5493 349
## 153     5511 348
## 154     6805 348
## 155     7843 348
## 156     3971 347
## 157     9615 347
## 158      242 346
## 159     5230 346
## 160     3107 345
## 161     4002 345
## 162     4122 345
## 163     5706 345
## 164       62 345
## 165     6785 345
## 166     1393 344
## 167     1956 344
## 168     6004 344
## 169     8029 344
## 170     9864 344
## 171     5108 343
## 172     6330 343
## 173     6547 343
## 174     1182 342
## 175     2000 342
## 176     2682 342
## 177     6555 342
## 178     9506 342
## 179     6556 340
## 180     6811 340
## 181     9045 340
## 182      100 339
## 183     2146 339
## 184     5840 339
## 185     6091 339
## 186     7538 339
## 187     3234 338
## 188     8283 338
## 189     2713 337
## 190     4116 337
## 191     8493 337
## 192      921 337
## 193     9574 337
## 194     1238 336
## 195     6319 336
## 196      664 336
## 197     6802 336
## 198     7299 336
## 199     8484 336
## 200     8612 336
## 201     9462 336
## 202     1395 335
## 203     2539 335
## 204     3798 335
## 205      396 335
## 206     5257 335
## 207     8112 335
## 208     1090 334
## 209     5007 334
## 210     6874 334
## 211     3867 333
## 212     7704 333
## 213     9781 333
## 214     4440 332
## 215     1791 331
## 216     3535 331
## 217     7309 331
## 218     8140 331
## 219     9957 330
## 220     2908 329
## 221     7632 329
## 222     8483 329
## 223     4026 328
## 224     4112 328
## 225      578 328
## 226     6473 328
## 227     4693 327
## 228     5765 327
## 229     7208 327
## 230     1635 326
## 231     7917 326
## 232     1511 325
## 233      183 325
## 234     7800 325
## 235     5526 324
## 236     9398 324
## 237     2760 323
## 238     6228 323
## 239     3249 322
## 240     4712 322
## 241     6181 322
## 242     8946 322
## 243     5259 321
## 244     6414 321
## 245     1664 320
## 246     5857 320
## 247     6253 320
## 248     4548 319
## 249     5525 319
## 250     7478 319
## 251     7831 319
## 252     9210 319
## 253     1794 318
## 254     2486 318
## 255     4241 318
## 256     4734 318
## 257     8010 318
## 258     9017 318
## 259     9816 318
## 260     2399 317
## 261     5507 317
## 262     6263 317
## 263     5093 316
## 264     7742 316
## 265     7769 316
## 266     3748 315
## 267     1180 314
## 268      247 314
## 269     3308 314
## 270     8065 314
## 271     2634 313
## 272     3853 313
## 273     5712 313
## 274     7196 313
## 275     7988 313
## 276     2075 312
## 277     8201 312
## 278     5488 311
## 279     5901 311
## 280     6422 311
## 281      932 311
## 282     3963 310
## 283     6999 310
## 284     8795 310
## 285     9248 310
## 286     9275 310
## 287     1417 309
## 288     1785 309
## 289     3023 309
## 290     6457 308
## 291     6775 308
## 292     7316 308
## 293     1543 307
## 294     5781 307
## 295     5959 307
## 296     8407 307
## 297     8802 307
## 298     9756 307
## 299     5231 306
## 300     9165 306
## 301     1388 304
## 302     5020 304
## 303     5532 304
## 304     8329 304
## 305     8408 304
## 306     9913 304
## 307     1927 303
## 308     6863 303
## 309     7740 303
## 310     9797 303
## 311     2967 302
## 312     3875 302
## 313      485 302
## 314     8125 302
## 315     8186 302
## 316      885 302
## 317     4478 301
## 318     4814 301
## 319     6451 301
## 320     2983 300
## 321     3060 300
## 322     8154 300
## 323     1160 299
## 324     2658 299
## 325     3157 299
## 326     6675 299
## 327     7488 299
## 328     7501 299
## 329     6847 298
## 330     9671 298
## 331     3085 297
## 332     4174 297
## 333     5023 297
## 334     7367 297
## 335     9677 297
## 336     4580 296
## 337     4657 296
## 338     8543 296
## 339     2687 295
## 340     2751 295
## 341     4528 295
## 342     6729 295
## 343     9915 295
## 344     1332 294
## 345     4581 294
## 346     4861 294
## 347     5718 294
## 348     8421 294
## 349     4769 293
## 350     4979 293
## 351     5177 293
## 352     9603 293
## 353     9884 293
## 354      184 292
## 355     3455 292
## 356     7844 292
## 357     1731 291
## 358      535 291
## 359      905 291
## 360     4375 290
## 361      445 288
## 362     4612 288
## 363     4382 287
## 364     5520 287
## 365     7450 287
## 366     7464 287
## 367     4199 286
## 368     4792 286
## 369     5535 286
## 370     6043 286
## 371     7230 286
## 372     8689 286
## 373     1795 285
## 374     3965 285
## 375      439 285
## 376     6014 285
## 377     3570 284
## 378     6182 284
## 379     7452 284
## 380     4238 283
## 381     4695 283
## 382     1317 282
## 383      407 282
## 384     4968 282
## 385     1343 281
## 386      154 281
## 387     4115 281
## 388     5119 281
## 389     6557 281
## 390     8842 281
## 391      948 281
## 392     3017 280
## 393     4034 280
## 394     3179 278
## 395     4738 278
## 396     1030 277
## 397     5796 277
## 398     9767 277
## 399     4310 276
## 400      651 276
## 401     7857 275
## 402     3142 274
## 403     4644 274
## 404     4652 274
## 405     4964 274
## 406     5775 274
## 407     8899 274
## 408     6601 273
## 409     3357 272
## 410     6381 272
## 411     9811 272
## 412     1713 271
## 413     4215 271
## 414     6535 271
## 415     6626 271
## 416     1286 270
## 417     6005 270
## 418     2531 269
## 419     6112 269
## 420     6160 269
## 421     6792 269
## 422     7545 269
## 423     8250 269
## 424     1818 268
## 425     4900 268
## 426     6114 268
## 427     6449 268
## 428     7333 268
## 429     3254 267
## 430     6025 267
## 431     8927 267
## 432     9140 267
## 433     9861 267
## 434     2242 266
## 435        4 266
## 436     6125 266
## 437     7204 266
## 438     7842 266
## 439     8306 266
## 440     2859 265
## 441     3401 265
## 442     9707 265
## 443     4698 264
## 444     7410 264
## 445     9743 264
## 446     8228 263
## 447     8284 263
## 448     8572 263
## 449     2830 262
## 450     5046 262
## 451     6452 262
## 452     6462 262
## 453     2835 261
## 454     2861 261
## 455     3176 261
## 456     9742 261
## 457     4763 260
## 458     5690 260
## 459     6301 260
## 460     1420 259
## 461     2611 259
## 462      786 259
## 463     8402 259
## 464      280 258
## 465     3173 258
## 466      426 258
## 467     7796 258
## 468     9230 258
## 469     2594 257
## 470     2759 257
## 471     4050 257
## 472     4567 257
## 473     7198 257
## 474     7288 257
## 475     4293 256
## 476     5758 256
## 477     2294 255
## 478     7794 255
## 479     2476 254
## 480     3230 254
## 481     4250 254
## 482     6007 254
## 483     3931 253
## 484     4994 253
## 485      597 253
## 486     9632 253
## 487     2777 252
## 488     5448 252
## 489     4582 251
## 490     5743 251
## 491     6464 251
## 492     9186 251
## 493     2926 250
## 494     9407 250
## 495     9961 250
## 496     1588 248
## 497      337 247
## 498     3981 247
## 499     5015 247
## 500     8561 247
## 501     8920 247
## 502     2918 246
## 503     3325 246
## 504     4579 246
## 505     2529 245
## 506     3189 245
## 507     6365 245
## 508     7474 243
## 509     5521 242
## 510     6055 242
## 511     6930 242
## 512     7612 241
## 513     2516 240
## 514     4596 240
## 515     7339 240
## 516     1116 239
## 517     1888 239
## 518     2413 239
## 519     4370 239
## 520     8696 239
## 521     2605 237
## 522     3527 237
## 523     4367 237
## 524     8814 237
## 525     6869 236
## 526     5651 235
## 527     6252 235
## 528     9492 235
## 529     2756 234
## 530     2372 231
## 531     9448 230
## 532     7178 229
## 533     3779 228
## 534     5014 228
## 535     9873 228
## 536     3083 225
## 537     8526 224
## 538     9158 224
## 539     1064 223
## 540     2800 223
## 541     3087 223
## 542     8691 223
## 543     3745 222
## 544     5203 222
## 545     1897 221
## 546     3229 221
## 547     7737 221
## 548     2737 220
## 549     9003 220
## 550     9164 219
## 551     9591 219
## 552     5420 218
## 553     2988 217
## 554     5568 217
## 555     3082 216
## 556     7286 216
## 557     3058 214
## 558      518 214
## 559      579 214
## 560     9169 214
## 561     7771 213
## 562     2752 210
## 563     3105 209
## 564     3235 209
## 565     3496 206
## 566      952 206
## 567     9693 206
## 568     5043 205
## 569     7572 205
## 570     2224 204
## 571     2456 204
## 572     3472 204
## 573     8190 204
## 574      510 203
## 575     6352 203
## 576     6605 203
## 577     8678 202
## 578      730 201
## 579     2504 200
## 580     4524 200
## 581     5139 200
## 582     5338 199
## 583     6967 199
## 584     1721 198
## 585     2566 198
## 586     9745 198
## 587      464 197
## 588     5577 197
## 589     8682 197
## 590     9415 197
## 591      945 197
## 592      285 195
## 593     7778 195
## 594     2958 194
## 595     4070 194
## 596     4650 194
## 597     6516 194
## 598      659 194
## 599     7483 193
## 600     9653 193
## 601     2678 192
## 602     8071 191
## 603     4513 190
## 604      712 190
## 605      586 189
## 606     2550 188
## 607     2867 188
## 608     2685 187
## 609     2911 186
## 610     7378 186
## 611      766 186
## 612      182 185
## 613     2843 185
## 614      610 185
## 615     7543 185
## 616     3170 184
## 617      711 184
## 618     2007 183
## 619     9281 183
## 620      123 182
## 621     2969 182
## 622     6635 181
## 623     9553 181
## 624     1267 180
## 625     2530 180
## 626     2565 179
## 627     6646 179
## 628     7438 178
## 629     2047 177
## 630     3177 177
## 631      181 175
## 632     2635 175
## 633     2656 175
## 634     6477 175
## 635     7802 175
## 636     2790 174
## 637     3996 174
## 638     4233 174
## 639     9311 174
## 640     2913 173
## 641      793 173
## 642      996 173
## 643     2430 172
## 644     9486 172
## 645       17 171
## 646     2996 171
## 647     3114 171
## 648     1166 170
## 649     1156 169
## 650     2252 169
## 651     2404 169
## 652     2931 169
## 653     2786 168
## 654     3049 168
## 655     2497 167
## 656     2527 167
## 657      357 167
## 658     5803 166
## 659     7039 166
## 660     2561 165
## 661     6865 165
## 662     7871 165
## 663     9505 165
## 664     9820 165
## 665     1755 164
## 666     7681 164
## 667     2523 163
## 668      600 163
## 669     3033 162
## 670     3109 162
## 671     7720 162
## 672     8224 162
## 673      839 162
## 674     8635 162
## 675     1746 161
## 676     1808 161
## 677     2933 161
## 678     2080 160
## 679     5271 160
## 680    53916 160
## 681     1337 159
## 682     2927 159
## 683     2945 159
## 684     9181 159
## 685     2586 158
## 686     2639 158
## 687     8285 158
## 688     2233 157
## 689     3298 157
## 690      732 157
## 691     7882 157
## 692     8874 157
## 693     9408 157
## 694     1025 156
## 695     2637 156
## 696     2046 154
## 697     2828 154
## 698     3003 154
## 699     3027 154
## 700      356 154
## 701     9510 154
## 702     2385 153
## 703     2395 153
## 704     3117 153
## 705     7358 153
## 706     7306 152
## 707     2078 151
## 708     2622 151
## 709     9736 151
## 710    98475 151
## 711     2496 150
## 712     2970 150
## 713     6660 150
## 714      923 150
## 715    97821 150
## 716     2445 149
## 717     8943 149
## 718     1456 148
## 719     2826 148
## 720     6576 148
## 721     9027 148
## 722     1014 147
## 723     1026 147
## 724     2686 147
## 725     4202 147
## 726    75365 147
## 727     3211 146
## 728    97665 146
## 729     1056 145
## 730      789 145
## 731     8786 145
## 732     1359 144
## 733     1958 144
## 734     2944 144
## 735     1273 143
## 736     1351 143
## 737     1438 143
## 738     3165 143
## 739     6688 143
## 740     8514 143
## 741     1447 142
## 742     2359 142
## 743     2805 142
## 744      124 141
## 745      151 141
## 746     2058 141
## 747      209 141
## 748     2576 141
## 749     2820 141
## 750     2920 141
## 751     2992 141
## 752     3175 141
## 753    95879 141
## 754     2654 140
## 755     5585 140
## 756     8187 140
## 757     2483 139
## 758     7731 139
## 759      998 139
## 760     2489 138
## 761     2814 138
## 762     9149 138
## 763       51 137
## 764     8501 137
## 765     9110 137
## 766    98373 137
## 767     1348 136
## 768     2498 136
## 769      412 136
## 770    73331 136
## 771     7733 136
## 772    94609 136
## 773     9485 136
## 774     9752 136
## 775    98694 136
## 776     7777 135
## 777     9172 135
## 778     9730 135
## 779     1428 134
## 780     2947 134
## 781     3051 134
## 782     4552 134
## 783      763 134
## 784    79872 134
## 785    80438 134
## 786    97446 134
## 787     3141 133
## 788    72764 133
## 789     7766 133
## 790    79455 133
## 791    96812 133
## 792    98672 133
## 793     2501 132
## 794     2749 132
## 795     3256 132
## 796      553 132
## 797      628 132
## 798    82647 132
## 799     8985 132
## 800    96223 132
## 801    99267 132
## 802     2567 131
## 803     2734 131
## 804      646 131
## 805     7732 131
## 806    83072 131
## 807    97538 131
## 808    98791 131
## 809      222 130
## 810     2817 130
## 811     3182 130
## 812     6880 130
## 813    72797 130
## 814    95583 130
## 815       11 129
## 816     1429 129
## 817     2001 129
## 818     2174 129
## 819     2544 129
## 820     2788 129
## 821    79139 129
## 822     9008 129
## 823    96251 129
## 824     1008 128
## 825     1175 128
## 826     1903 128
## 827     2551 128
## 828     4673 128
## 829    56247 128
## 830    75765 128
## 831      804 128
## 832      103 127
## 833     2808 127
## 834    81395 127
## 835    82706 127
## 836     9420 127
## 837    96228 127
## 838    96547 127
## 839    97033 127
## 840    98409 127
## 841    98484 127
## 842     1472 126
## 843     2322 126
## 844     2836 126
## 845     3050 126
## 846     3095 126
## 847     3167 126
## 848    35053 126
## 849      384 126
## 850     5143 126
## 851    72663 126
## 852    74855 126
## 853    75093 126
## 854    76253 126
## 855     9500 126
## 856     9761 126
## 857      148 125
## 858     2225 125
## 859     2625 125
## 860     2827 125
## 861    79010 125
## 862    81716 125
## 863     9625 125
## 864    96307 125
## 865    73234 124
## 866    74002 124
## 867    94431 124
## 868    96805 124
## 869     1118 123
## 870      179 123
## 871     2010 123
## 872     3185 123
## 873     6193 123
## 874       67 123
## 875     6815 123
## 876    77875 123
## 877     9397 123
## 878     9774 123
## 879    98065 123
## 880    99734 123
## 881     1503 122
## 882     1542 122
## 883     3158 122
## 884     3164 122
## 885    42627 122
## 886    74116 122
## 887    76422 122
## 888     7760 122
## 889    80335 122
## 890    81759 122
## 891     8784 122
## 892    98029 122
## 893     1077 121
## 894     2769 121
## 895    75840 121
## 896     7787 121
## 897     7987 121
## 898    82075 121
## 899    95493 121
## 900    96451 121
## 901    98329 121
## 902    99245 121
## 903     1249 120
## 904      193 120
## 905     2043 120
## 906    76802 120
## 907    77545 120
## 908     7812 120
## 909    79615 120
## 910    96811 120
## 911    98266 120
## 912    99371 120
## 913    99759 120
## 914    99998 120
## 915     3018 119
## 916     3071 119
## 917     3106 119
## 918     3315 119
## 919      427 119
## 920    53595 119
## 921    72878 119
## 922    81731 119
## 923    81956 119
## 924    82000 119
## 925    95525 119
## 926    95959 119
## 927    98152 119
## 928     9893 119
## 929    99398 119
## 930     1312 118
## 931     1375 118
## 932       14 118
## 933     2960 118
## 934    34178 118
## 935    76874 118
## 936     7788 118
## 937    79646 118
## 938    96091 118
## 939    96190 118
## 940    96555 118
## 941    96673 118
## 942    99173 118
## 943    99816 118
## 944     1501 117
## 945     2494 117
## 946      497 117
## 947      533 117
## 948    72682 117
## 949    73798 117
## 950    74034 117
## 951    75488 117
## 952    75965 117
## 953    76102 117
## 954    76986 117
## 955    78946 117
## 956     8639 117
## 957     9096 117
## 958     9202 117
## 959    95359 117
## 960    99248 117
## 961     1063 116
## 962     2954 116
## 963     5907 116
## 964     7120 116
## 965    73875 116
## 966    75257 116
## 967    77196 116
## 968    77309 116
## 969    79574 116
## 970     9236 116
## 971    95108 116
## 972    96181 116
## 973    96593 116
## 974    99864 116
## 975     1231 115
## 976     1298 115
## 977     1748 115
## 978     2704 115
## 979     2968 115
## 980     3168 115
## 981     3632 115
## 982    63881 115
## 983      715 115
## 984    73249 115
## 985    73867 115
## 986    75230 115
## 987    79462 115
## 988      795 115
## 989     8921 115
## 990    94026 115
## 991    94122 115
## 992     2487 114
## 993      275 114
## 994     2837 114
## 995     2905 114
## 996     3255 114
## 997     3377 114
## 998      514 114
## 999     7135 114
## 1000   73535 114
## 1001   73748 114
## 1002   76556 114
## 1003   80242 114
## 1004   81393 114
## 1005   81812 114
## 1006    9227 114
## 1007    9256 114
## 1008    9346 114
## 1009   94734 114
## 1010   95259 114
## 1011   96319 114
## 1012   97464 114
## 1013   98018 114
## 1014   98407 114
## 1015   98421 114
## 1016   99957 114
## 1017    1725 113
## 1018    2765 113
## 1019    3243 113
## 1020    5396 113
## 1021   77884 113
## 1022   80183 113
## 1023   94169 113
## 1024    9533 113
## 1025   96004 113
## 1026   98537 113
## 1027   99210 113
## 1028    1316 112
## 1029    1433 112
## 1030    1462 112
## 1031    2470 112
## 1032    2599 112
## 1033    2630 112
## 1034   42835 112
## 1035     694 112
## 1036   73455 112
## 1037    7411 112
## 1038   75511 112
## 1039      76 112
## 1040   79275 112
## 1041    9457 112
## 1042   96729 112
## 1043    9773 112
## 1044   98259 112
## 1045   99165 112
## 1046    1719 111
## 1047    1820 111
## 1048    2441 111
## 1049    2540 111
## 1050    2877 111
## 1051    3598 111
## 1052   42908 111
## 1053    6241 111
## 1054   75706 111
## 1055   77501 111
## 1056   81713 111
## 1057    8388 111
## 1058    9082 111
## 1059   95781 111
## 1060    9692 111
## 1061   98612 111
## 1062     997 111
## 1063    1270 110
## 1064    2343 110
## 1065   74580 110
## 1066   75712 110
## 1067   76999 110
## 1068   83085 110
## 1069   94924 110
## 1070    9997 110
## 1071    1858 109
## 1072    2009 109
## 1073    2845 109
## 1074    2871 109
## 1075    3035 109
## 1076    3264 109
## 1077     345 109
## 1078   42651 109
## 1079     542 109
## 1080     591 109
## 1081    6133 109
## 1082   73069 109
## 1083   74112 109
## 1084   77917 109
## 1085      83 109
## 1086    8395 109
## 1087    8681 109
## 1088    8991 109
## 1089    9295 109
## 1090   93961 109
## 1091   94769 109
## 1092   95835 109
## 1093   98802 109
## 1094    1529 108
## 1095    2842 108
## 1096    3094 108
## 1097    3567 108
## 1098    6614 108
## 1099   78284 108
## 1100   80578 108
## 1101   81543 108
## 1102      85 108
## 1103   94241 108
## 1104   94310 108
## 1105   94693 108
## 1106    9577 108
## 1107   96414 108
## 1108   97450 108
## 1109   97831 108
## 1110   98483 108
## 1111   99964 108
## 1112    1165 107
## 1113    1760 107
## 1114    1834 107
## 1115    2053 107
## 1116    2336 107
## 1117    2628 107
## 1118    2849 107
## 1119    3275 107
## 1120    3287 107
## 1121    3986 107
## 1122   42780 107
## 1123    5225 107
## 1124    5359 107
## 1125   72859 107
## 1126   73401 107
## 1127   78186 107
## 1128   80100 107
## 1129   81182 107
## 1130   81916 107
## 1131   82912 107
## 1132    9387 107
## 1133   94167 107
## 1134   95023 107
## 1135    9562 107
## 1136   96557 107
## 1137   96785 107
## 1138   97704 107
## 1139    9851 107
## 1140    1715 106
## 1141    2181 106
## 1142    2274 106
## 1143    2363 106
## 1144    2505 106
## 1145    2506 106
## 1146    2578 106
## 1147     521 106
## 1148     558 106
## 1149   73107 106
## 1150   73601 106
## 1151   73853 106
## 1152   74250 106
## 1153   74979 106
## 1154   77800 106
## 1155    7828 106
## 1156   78795 106
## 1157   80921 106
## 1158    8135 106
## 1159    8318 106
## 1160    8798 106
## 1161    9005 106
## 1162    9067 106
## 1163   97452 106
## 1164   98283 106
## 1165   99797 106
## 1166   10885 105
## 1167    1184 105
## 1168    2394 105
## 1169    2712 105
## 1170    2938 105
## 1171   34531 105
## 1172    4286 105
## 1173   72967 105
## 1174   73971 105
## 1175   74174 105
## 1176   74293 105
## 1177   76863 105
## 1178   79506 105
## 1179    8516 105
## 1180    9102 105
## 1181   94440 105
## 1182   96626 105
## 1183   99756 105
## 1184   10439 104
## 1185    1594 104
## 1186   16252 104
## 1187    1766 104
## 1188    1835 104
## 1189      20 104
## 1190    2003 104
## 1191    2607 104
## 1192    2710 104
## 1193    2974 104
## 1194    3084 104
## 1195    3183 104
## 1196    4109 104
## 1197    6654 104
## 1198     672 104
## 1199   72658 104
## 1200   72820 104
## 1201   74695 104
## 1202   81030 104
## 1203   81635 104
## 1204    9220 104
## 1205   95531 104
## 1206   96775 104
## 1207   97742 104
## 1208    9809 104
## 1209   98140 104
## 1210    1622 103
## 1211    1843 103
## 1212    1868 103
## 1213    1914 103
## 1214    3153 103
## 1215     317 103
## 1216    3269 103
## 1217     394 103
## 1218     429 103
## 1219    6072 103
## 1220   73965 103
## 1221   78010 103
## 1222   79743 103
## 1223   81664 103
## 1224   82146 103
## 1225    8291 103
## 1226    8300 103
## 1227    8896 103
## 1228    9192 103
## 1229    9284 103
## 1230    9504 103
## 1231   96263 103
## 1232   97230 103
## 1233   98408 103
## 1234    9867 103
## 1235    9898 103
## 1236    1368 102
## 1237    1610 102
## 1238    1838 102
## 1239    2261 102
## 1240    2644 102
## 1241    3293 102
## 1242    5075 102
## 1243    5460 102
## 1244   62661 102
## 1245   72929 102
## 1246   73157 102
## 1247   77288 102
## 1248    7782 102
## 1249   79041 102
## 1250   80396 102
## 1251   81090 102
## 1252   82399 102
## 1253    8685 102
## 1254    9011 102
## 1255    9046 102
## 1256    9838 102
## 1257   99781 102
## 1258    9996 102
## 1259    1384 101
## 1260    1723 101
## 1261    2006 101
## 1262    2314 101
## 1263    2482 101
## 1264    2784 101
## 1265    2791 101
## 1266    3126 101
## 1267   31409 101
## 1268     376 101
## 1269    5471 101
## 1270   73357 101
## 1271   74215 101
## 1272   79017 101
## 1273   80652 101
## 1274   82795 101
## 1275    8331 101
## 1276    9411 101
## 1277   94528 101
## 1278   94712 101
## 1279   95743 101
## 1280   95796 101
## 1281   96025 101
## 1282   97488 101
## 1283   98543 101
## 1284   98572 101
## 1285   99788 101
## 1286    9987 101
## 1287    1088 100
## 1288    1506 100
## 1289    1790 100
## 1290     211 100
## 1291    2313 100
## 1292    2866 100
## 1293     406 100
## 1294     437 100
## 1295    4450 100
## 1296   76182 100
## 1297   78201 100
## 1298    9114 100
## 1299    9453 100
## 1300   94548 100
## 1301   94644 100
## 1302   95718 100
## 1303   96014 100
## 1304    9887 100
## 1305    1736  99
## 1306    2278  99
## 1307    2386  99
## 1308    2620  99
## 1309    2667  99
## 1310    3236  99
## 1311    3290  99
## 1312   42539  99
## 1313    4411  99
## 1314     476  99
## 1315     496  99
## 1316     523  99
## 1317    5262  99
## 1318   56793  99
## 1319    6966  99
## 1320   75119  99
## 1321   75177  99
## 1322   76601  99
## 1323   79603  99
## 1324    8019  99
## 1325   80597  99
## 1326    8093  99
## 1327   80932  99
## 1328   81180  99
## 1329    9143  99
## 1330    9175  99
## 1331    9481  99
## 1332   96330  99
## 1333   97478  99
## 1334   97988  99
## 1335    9886  99
## 1336   99098  99
## 1337   99811  99
## 1338    1778  98
## 1339    1860  98
## 1340    2584  98
## 1341    2592  98
## 1342    2600  98
## 1343    2729  98
## 1344     303  98
## 1345    3119  98
## 1346    3209  98
## 1347    4039  98
## 1348   42486  98
## 1349      66  98
## 1350    6647  98
## 1351   72736  98
## 1352   73286  98
## 1353   75231  98
## 1354   76449  98
## 1355   76869  98
## 1356   79884  98
## 1357   81795  98
## 1358    8740  98
## 1359    9032  98
## 1360     915  98
## 1361     959  98
## 1362   96005  98
## 1363   97632  98
## 1364    9769  98
## 1365    9791  98
## 1366    1565  97
## 1367    1974  97
## 1368    2290  97
## 1369    2500  97
## 1370    2536  97
## 1371    2882  97
## 1372    3039  97
## 1373     331  97
## 1374     344  97
## 1375      42  97
## 1376    5513  97
## 1377     594  97
## 1378    7051  97
## 1379     724  97
## 1380    7375  97
## 1381   74814  97
## 1382   75535  97
## 1383   76473  97
## 1384   78842  97
## 1385   80535  97
## 1386   80786  97
## 1387    8902  97
## 1388    9058  97
## 1389    9162  97
## 1390   94478  97
## 1391   95261  97
## 1392    9610  97
## 1393    9882  97
## 1394     989  97
## 1395    9966  97
## 1396    1355  96
## 1397     142  96
## 1398    2138  96
## 1399    2932  96
## 1400    2973  96
## 1401    3231  96
## 1402   42700  96
## 1403     458  96
## 1404    5592  96
## 1405     576  96
## 1406    7014  96
## 1407   73779  96
## 1408   75448  96
## 1409   75901  96
## 1410   80664  96
## 1411    8094  96
## 1412   81160  96
## 1413   94367  96
## 1414   96535  96
## 1415   98250  96
## 1416    1993  95
## 1417    3041  95
## 1418    3279  95
## 1419   33934  95
## 1420      39  95
## 1421   43325  95
## 1422   72687  95
## 1423   74370  95
## 1424   75540  95
## 1425   75775  95
## 1426    7611  95
## 1427   76125  95
## 1428   76457  95
## 1429   76847  95
## 1430   79742  95
## 1431   79767  95
## 1432   79915  95
## 1433   80247  95
## 1434   80485  95
## 1435    8074  95
## 1436   81420  95
## 1437   81818  95
## 1438     823  95
## 1439    8868  95
## 1440    9040  95
## 1441    9201  95
## 1442    9390  95
## 1443    9443  95
## 1444    9523  95
## 1445   97769  95
## 1446    1208  94
## 1447    1799  94
## 1448    1952  94
## 1449    2112  94
## 1450    2240  94
## 1451    2328  94
## 1452    2507  94
## 1453     268  94
## 1454    2896  94
## 1455    2966  94
## 1456    3021  94
## 1457    3233  94
## 1458   42622  94
## 1459    4835  94
## 1460    6575  94
## 1461   73570  94
## 1462   74080  94
## 1463   74657  94
## 1464   77215  94
## 1465   79677  94
## 1466   80154  94
## 1467   80407  94
## 1468   81388  94
## 1469   94050  94
## 1470   94199  94
## 1471    9681  94
## 1472    9705  94
## 1473   97842  94
## 1474   97843  94
## 1475    1079  93
## 1476    2033  93
## 1477    2319  93
## 1478    2403  93
## 1479    2665  93
## 1480     326  93
## 1481     390  93
## 1482    4201  93
## 1483   42800  93
## 1484   43290  93
## 1485     442  93
## 1486   58874  93
## 1487    6938  93
## 1488   72997  93
## 1489   73254  93
## 1490   74698  93
## 1491   75007  93
## 1492   76675  93
## 1493   80651  93
## 1494     815  93
## 1495   81785  93
## 1496     829  93
## 1497    8998  93
## 1498   93981  93
## 1499    9427  93
## 1500    9432  93
## 1501    9456  93
## 1502   94964  93
## 1503    9560  93
## 1504   96381  93
## 1505   97740  93
## 1506   97844  93
## 1507    9922  93
## 1508   99861  93
## 1509    1057  92
## 1510    1163  92
## 1511    2522  92
## 1512    2538  92
## 1513     271  92
## 1514    2724  92
## 1515    3097  92
## 1516    3135  92
## 1517    3289  92
## 1518   34453  92
## 1519     369  92
## 1520    4400  92
## 1521    4432  92
## 1522      65  92
## 1523    7179  92
## 1524     729  92
## 1525   76016  92
## 1526    7719  92
## 1527   78689  92
## 1528     847  92
## 1529    9117  92
## 1530    9150  92
## 1531    9170  92
## 1532   94861  92
## 1533    9516  92
## 1534   96007  92
## 1535   98402  92
## 1536   99707  92
## 1537    1123  91
## 1538   11588  91
## 1539   12372  91
## 1540    1307  91
## 1541     144  91
## 1542    1826  91
## 1543    2065  91
## 1544    2120  91
## 1545    2887  91
## 1546    2972  91
## 1547    3251  91
## 1548   34517  91
## 1549     519  91
## 1550   73322  91
## 1551   74508  91
## 1552     768  91
## 1553   77796  91
## 1554   78678  91
## 1555   80286  91
## 1556     803  91
## 1557    8145  91
## 1558   83023  91
## 1559   83142  91
## 1560    8907  91
## 1561     943  91
## 1562     953  91
## 1563   95526  91
## 1564   97857  91
## 1565    9817  91
## 1566    1232  90
## 1567    1261  90
## 1568    1411  90
## 1569    1854  90
## 1570    1918  90
## 1571    2770  90
## 1572   30625  90
## 1573    3075  90
## 1574    3207  90
## 1575   34670  90
## 1576    3917  90
## 1577   42611  90
## 1578     452  90
## 1579     571  90
## 1580     667  90
## 1581   74115  90
## 1582   74375  90
## 1583   77198  90
## 1584   77333  90
## 1585   82242  90
## 1586   82531  90
## 1587      84  90
## 1588    8882  90
## 1589    9184  90
## 1590    9331  90
## 1591   95532  90
## 1592   96462  90
## 1593    9754  90
## 1594    9785  90
## 1595   98228  90
## 1596    9830  90
## 1597   98493  90
## 1598    1272  89
## 1599     200  89
## 1600     204  89
## 1601     238  89
## 1602    2466  89
## 1603    3040  89
## 1604    3068  89
## 1605    3283  89
## 1606   42718  89
## 1607    4516  89
## 1608     583  89
## 1609   72980  89
## 1610   73063  89
## 1611   75046  89
## 1612   77410  89
## 1613     794  89
## 1614   95203  89
## 1615   98814  89
## 1616   11332  88
## 1617    1536  88
## 1618    1864  88
## 1619    2052  88
## 1620    2122  88
## 1621    2475  88
## 1622    2515  88
## 1623    3375  88
## 1624   43287  88
## 1625      49  88
## 1626     544  88
## 1627    6083  88
## 1628    6220  88
## 1629    6317  88
## 1630     668  88
## 1631    6809  88
## 1632    7150  88
## 1633   72751  88
## 1634     739  88
## 1635   74763  88
## 1636   74792  88
## 1637    7708  88
## 1638   77208  88
## 1639   77587  88
## 1640   81317  88
## 1641     970  88
## 1642   97316  88
## 1643   98125  88
## 1644    1150  87
## 1645    1228  87
## 1646    1391  87
## 1647    1847  87
## 1648    1982  87
## 1649    2049  87
## 1650    2203  87
## 1651    2241  87
## 1652    2621  87
## 1653    2779  87
## 1654    3057  87
## 1655   42331  87
## 1656   43082  87
## 1657     471  87
## 1658    4842  87
## 1659     607  87
## 1660    7213  87
## 1661   75857  87
## 1662   76452  87
## 1663    7677  87
## 1664   77286  87
## 1665   80280  87
## 1666    8057  87
## 1667    8144  87
## 1668    8539  87
## 1669    8987  87
## 1670    9482  87
## 1671    9556  87
## 1672   96112  87
## 1673   96792  87
## 1674    9721  87
## 1675    9750  87
## 1676   98071  87
## 1677    9889  87
## 1678    1366  86
## 1679     210  86
## 1680    2142  86
## 1681     237  86
## 1682     240  86
## 1683    2690  86
## 1684    3024  86
## 1685    4356  86
## 1686    4959  86
## 1687    5152  86
## 1688    5543  86
## 1689    5729  86
## 1690    6079  86
## 1691    6672  86
## 1692    6791  86
## 1693     707  86
## 1694   73963  86
## 1695   74900  86
## 1696   75651  86
## 1697    7657  86
## 1698    7809  86
## 1699   78696  86
## 1700   80004  86
## 1701    8871  86
## 1702    9488  86
## 1703    9529  86
## 1704    9664  86
## 1705    1814  85
## 1706    1831  85
## 1707    2060  85
## 1708    2231  85
## 1709    2273  85
## 1710    2401  85
## 1711    2463  85
## 1712    2512  85
## 1713    2545  85
## 1714    2792  85
## 1715    2822  85
## 1716    2864  85
## 1717    3345  85
## 1718     346  85
## 1719   35017  85
## 1720    3877  85
## 1721   42912  85
## 1722   43182  85
## 1723     470  85
## 1724    4996  85
## 1725     505  85
## 1726   54271  85
## 1727    5576  85
## 1728   72782  85
## 1729   74748  85
## 1730    7662  85
## 1731   77470  85
## 1732    7770  85
## 1733    7836  85
## 1734    7867  85
## 1735   79873  85
## 1736   81116  85
## 1737    8131  85
## 1738   81859  85
## 1739   83179  85
## 1740    9070  85
## 1741   94581  85
## 1742    9748  85
## 1743   98306  85
## 1744    9909  85
## 1745    2588  84
## 1746    2718  84
## 1747    2818  84
## 1748    2921  84
## 1749    3076  84
## 1750   31225  84
## 1751   33557  84
## 1752   43087  84
## 1753    4614  84
## 1754    4958  84
## 1755    5166  84
## 1756    5214  84
## 1757   56108  84
## 1758     581  84
## 1759     630  84
## 1760    6438  84
## 1761   73005  84
## 1762   73496  84
## 1763    7432  84
## 1764   74994  84
## 1765   75163  84
## 1766   76301  84
## 1767   80337  84
## 1768   80426  84
## 1769   82759  84
## 1770   82926  84
## 1771    9377  84
## 1772   95758  84
## 1773    9623  84
## 1774    9648  84
## 1775   96865  84
## 1776   97612  84
## 1777    9834  84
## 1778    9844  84
## 1779   98561  84
## 1780    9859  84
## 1781    9908  84
## 1782    9940  84
## 1783    1164  83
## 1784    1190  83
## 1785    1349  83
## 1786    1479  83
## 1787    1671  83
## 1788    2591  83
## 1789    2633  83
## 1790    2671  83
## 1791    2863  83
## 1792    2897  83
## 1793    2909  83
## 1794    3162  83
## 1795    3257  83
## 1796   34713  83
## 1797    3596  83
## 1798    3747  83
## 1799   42516  83
## 1800   42830  83
## 1801   43323  83
## 1802   43520  83
## 1803    4647  83
## 1804     508  83
## 1805    7058  83
## 1806    7281  83
## 1807    7577  83
## 1808   76043  83
## 1809   77299  83
## 1810    7791  83
## 1811   79140  83
## 1812   79186  83
## 1813    8045  83
## 1814   81286  83
## 1815   82413  83
## 1816     834  83
## 1817     841  83
## 1818    8949  83
## 1819    9123  83
## 1820    9187  83
## 1821    9352  83
## 1822   94596  83
## 1823    9549  83
## 1824   99158  83
## 1825    1183  82
## 1826    1603  82
## 1827    1756  82
## 1828    1971  82
## 1829    2179  82
## 1830    2302  82
## 1831    3012  82
## 1832    3099  82
## 1833    3372  82
## 1834   33819  82
## 1835   34753  82
## 1836   43652  82
## 1837    4501  82
## 1838    4640  82
## 1839    5666  82
## 1840    6909  82
## 1841    7144  82
## 1842   72713  82
## 1843   73089  82
## 1844   73901  82
## 1845   76114  82
## 1846   76235  82
## 1847    7726  82
## 1848    7741  82
## 1849   82294  82
## 1850   83060  82
## 1851    9120  82
## 1852    9362  82
## 1853   94579  82
## 1854    9645  82
## 1855    9862  82
## 1856    9923  82
## 1857    9938  82
## 1858    1004  81
## 1859    1219  81
## 1860    1379  81
## 1861    1734  81
## 1862    1872  81
## 1863    2321  81
## 1864    2902  81
## 1865    2923  81
## 1866    3954  81
## 1867   42594  81
## 1868   42634  81
## 1869    4564  81
## 1870   51657  81
## 1871    6008  81
## 1872    6212  81
## 1873   74155  81
## 1874   74738  81
## 1875   74968  81
## 1876   76284  81
## 1877   76525  81
## 1878   77474  81
## 1879   77737  81
## 1880   79492  81
## 1881    8118  81
## 1882    8898  81
## 1883    9376  81
## 1884    9435  81
## 1885    1460  80
## 1886   14650  80
## 1887     188  80
## 1888    1917  80
## 1889    2364  80
## 1890    2546  80
## 1891    2577  80
## 1892    2740  80
## 1893    2768  80
## 1894    2776  80
## 1895    2880  80
## 1896    3111  80
## 1897    3188  80
## 1898   35034  80
## 1899    3529  80
## 1900    5131  80
## 1901   53062  80
## 1902    5549  80
## 1903     649  80
## 1904     653  80
## 1905   73527  80
## 1906   74336  80
## 1907   75941  80
## 1908   75988  80
## 1909    7878  80
## 1910    8104  80
## 1911    8532  80
## 1912    8933  80
## 1913       9  80
## 1914    9083  80
## 1915    9108  80
## 1916      92  80
## 1917    9379  80
## 1918   95338  80
## 1919    9854  80
## 1920    9881  80
## 1921   99045  80
## 1922    1634  79
## 1923    1796  79
## 1924    1857  79
## 1925    2353  79
## 1926    2467  79
## 1927    2570  79
## 1928    2615  79
## 1929     274  79
## 1930    2989  79
## 1931    3090  79
## 1932    3104  79
## 1933   33755  79
## 1934   34975  79
## 1935    3518  79
## 1936    3911  79
## 1937    3921  79
## 1938    3923  79
## 1939    4970  79
## 1940     554  79
## 1941    6224  79
## 1942    6674  79
## 1943   73418  79
## 1944   74582  79
## 1945   76055  79
## 1946    7775  79
## 1947    9338  79
## 1948    9343  79
## 1949    9459  79
## 1950    9835  79
## 1951    1306  78
## 1952     166  78
## 1953    2547  78
## 1954    2603  78
## 1955    2727  78
## 1956    2815  78
## 1957    2997  78
## 1958    3056  78
## 1959   34311  78
## 1960    3930  78
## 1961    3933  78
## 1962   52808  78
## 1963   54792  78
## 1964    6036  78
## 1965    7074  78
## 1966   73247  78
## 1967   75209  78
## 1968   76209  78
## 1969   82861  78
## 1970    9085  78
## 1971     933  78
## 1972     954  78
## 1973   95520  78
## 1974   97794  78
## 1975    9808  78
## 1976   98154  78
## 1977    9918  78
## 1978    1005  77
## 1979    1563  77
## 1980    1811  77
## 1981    1931  77
## 1982    2260  77
## 1983    2548  77
## 1984    2583  77
## 1985    2601  77
## 1986    2733  77
## 1987    2870  77
## 1988    3029  77
## 1989   32024  77
## 1990    3626  77
## 1991     462  77
## 1992     467  77
## 1993    4701  77
## 1994    5045  77
## 1995     511  77
## 1996    5832  77
## 1997    5968  77
## 1998    6323  77
## 1999    6472  77
## 2000    6851  77
## 2001    6976  77
## 2002    7064  77
## 2003   72988  77
## 2004   73083  77
## 2005   74612  77
## 2006   79671  77
## 2007    8219  77
## 2008    8249  77
## 2009     845  77
## 2010    9243  77
## 2011    9642  77
## 2012   98899  77
## 2013    9927  77
## 2014    1060  76
## 2015    1067  76
## 2016    1444  76
## 2017    1758  76
## 2018    1813  76
## 2019   18861  76
## 2020    2044  76
## 2021    2064  76
## 2022    2129  76
## 2023    2151  76
## 2024    2255  76
## 2025    2344  76
## 2026    2474  76
## 2027    2693  76
## 2028    2716  76
## 2029    2738  76
## 2030    2741  76
## 2031    3080  76
## 2032   33617  76
## 2033   34673  76
## 2034   34715  76
## 2035    3818  76
## 2036    4217  76
## 2037    4648  76
## 2038    5068  76
## 2039    5958  76
## 2040    7054  76
## 2041   72979  76
## 2042   73075  76
## 2043    7364  76
## 2044   73931  76
## 2045   74896  76
## 2046   76797  76
## 2047    8208  76
## 2048   83189  76
## 2049    8534  76
## 2050    8866  76
## 2051    8917  76
## 2052      90  76
## 2053    9444  76
## 2054    9445  76
## 2055   94513  76
## 2056    1054  75
## 2057    1178  75
## 2058    1344  75
## 2059    1459  75
## 2060    1561  75
## 2061    1644  75
## 2062    2301  75
## 2063     248  75
## 2064    2709  75
## 2065    2787  75
## 2066    3214  75
## 2067    4335  75
## 2068    4531  75
## 2069     466  75
## 2070    4672  75
## 2071   48547  75
## 2072    5077  75
## 2073    5458  75
## 2074    5949  75
## 2075    6121  75
## 2076    6624  75
## 2077    6997  75
## 2078    7355  75
## 2079   75145  75
## 2080   75534  75
## 2081   77204  75
## 2082   79591  75
## 2083    8009  75
## 2084     825  75
## 2085     876  75
## 2086    8788  75
## 2087    9392  75
## 2088   94567  75
## 2089   96160  75
## 2090   96967  75
## 2091    9795  75
## 2092    9992  75
## 2093    1470  74
## 2094    1728  74
## 2095    1752  74
## 2096    1800  74
## 2097   23745  74
## 2098    2492  74
## 2099    2950  74
## 2100    3116  74
## 2101    3148  74
## 2102    3186  74
## 2103    3277  74
## 2104    3280  74
## 2105    3362  74
## 2106    3403  74
## 2107   34155  74
## 2108    3473  74
## 2109    3833  74
## 2110    3876  74
## 2111    4064  74
## 2112    4083  74
## 2113     447  74
## 2114    4500  74
## 2115   47519  74
## 2116     488  74
## 2117    4918  74
## 2118   50489  74
## 2119    5462  74
## 2120    5736  74
## 2121    7111  74
## 2122   72817  74
## 2123   74646  74
## 2124   75784  74
## 2125   76230  74
## 2126   76930  74
## 2127    7804  74
## 2128   79913  74
## 2129   81746  74
## 2130   81897  74
## 2131   82529  74
## 2132    8254  74
## 2133    8363  74
## 2134     840  74
## 2135    8403  74
## 2136    8837  74
## 2137     891  74
## 2138     903  74
## 2139    9403  74
## 2140     941  74
## 2141   95014  74
## 2142   95020  74
## 2143    9546  74
## 2144    9613  74
## 2145    9644  74
## 2146   99015  74
## 2147   99230  74
## 2148    9994  74
## 2149    1446  73
## 2150     156  73
## 2151    1842  73
## 2152    1997  73
## 2153     218  73
## 2154    2299  73
## 2155    2587  73
## 2156    2747  73
## 2157   30183  73
## 2158    3032  73
## 2159   31100  73
## 2160    3145  73
## 2161    3392  73
## 2162    3400  73
## 2163   35051  73
## 2164    4012  73
## 2165    4021  73
## 2166    4154  73
## 2167   42476  73
## 2168    4760  73
## 2169   55049  73
## 2170   56323  73
## 2171    5823  73
## 2172    6089  73
## 2173     665  73
## 2174   73812  73
## 2175   74179  73
## 2176    7439  73
## 2177   76067  73
## 2178    7808  73
## 2179   82702  73
## 2180    8597  73
## 2181     865  73
## 2182    9089  73
## 2183    9372  73
## 2184   95568  73
## 2185    9744  73
## 2186    9780  73
## 2187    1162  72
## 2188    1254  72
## 2189    1477  72
## 2190    1528  72
## 2191    1722  72
## 2192     189  72
## 2193    2115  72
## 2194    2248  72
## 2195    2743  72
## 2196    2910  72
## 2197    2986  72
## 2198    3059  72
## 2199    3125  72
## 2200   34657  72
## 2201   35073  72
## 2202    3659  72
## 2203    4160  72
## 2204    4555  72
## 2205     498  72
## 2206    5530  72
## 2207    6350  72
## 2208    6842  72
## 2209    6960  72
## 2210   72855  72
## 2211   74284  72
## 2212    7601  72
## 2213   76193  72
## 2214    7718  72
## 2215   80184  72
## 2216     821  72
## 2217    8278  72
## 2218    9235  72
## 2219    9300  72
## 2220    9803  72
## 2221    9804  72
## 2222    9975  72
## 2223     107  71
## 2224    1508  71
## 2225    1526  71
## 2226    1609  71
## 2227    1630  71
## 2228    1769  71
## 2229    2121  71
## 2230    2229  71
## 2231    2350  71
## 2232    2543  71
## 2233    2728  71
## 2234   31604  71
## 2235    3169  71
## 2236    3265  71
## 2237    3387  71
## 2238   34533  71
## 2239    3936  71
## 2240    4032  71
## 2241    4078  71
## 2242    4080  71
## 2243    5067  71
## 2244   53000  71
## 2245    5418  71
## 2246   54832  71
## 2247     552  71
## 2248    5586  71
## 2249    5735  71
## 2250    5920  71
## 2251   64238  71
## 2252      71  71
## 2253     718  71
## 2254   75413  71
## 2255   75719  71
## 2256   76759  71
## 2257    7703  71
## 2258   77411  71
## 2259    7854  71
## 2260    7859  71
## 2261    8076  71
## 2262    8164  71
## 2263    8221  71
## 2264   82456  71
## 2265    8390  71
## 2266   86898  71
## 2267     910  71
## 2268    9104  71
## 2269     951  71
## 2270   95521  71
## 2271   95690  71
## 2272    9578  71
## 2273   97383  71
## 2274   98682  71
## 2275     153  70
## 2276    1861  70
## 2277    2195  70
## 2278    2438  70
## 2279    2883  70
## 2280    3150  70
## 2281    3487  70
## 2282    3493  70
## 2283   34954  70
## 2284     353  70
## 2285    3788  70
## 2286    4668  70
## 2287     564  70
## 2288    6683  70
## 2289     702  70
## 2290   72739  70
## 2291   75782  70
## 2292   76228  70
## 2293   76365  70
## 2294   76454  70
## 2295    7694  70
## 2296    7738  70
## 2297     802  70
## 2298   80905  70
## 2299    8106  70
## 2300   81927  70
## 2301   83292  70
## 2302    8893  70
## 2303    8942  70
## 2304    9250  70
## 2305    9624  70
## 2306    9670  70
## 2307   97039  70
## 2308    1062  69
## 2309    1099  69
## 2310    1553  69
## 2311     161  69
## 2312     194  69
## 2313     195  69
## 2314    2106  69
## 2315    2377  69
## 2316    2471  69
## 2317    2572  69
## 2318    2589  69
## 2319    2623  69
## 2320    2825  69
## 2321    2934  69
## 2322    3066  69
## 2323    3067  69
## 2324    3203  69
## 2325   33996  69
## 2326   34755  69
## 2327     364  69
## 2328    3864  69
## 2329    3878  69
## 2330   42632  69
## 2331    4498  69
## 2332    5156  69
## 2333    5258  69
## 2334     551  69
## 2335    5708  69
## 2336    6087  69
## 2337     633  69
## 2338      64  69
## 2339    7133  69
## 2340   72849  69
## 2341   73332  69
## 2342    7403  69
## 2343   74150  69
## 2344   75050  69
## 2345   77592  69
## 2346    7899  69
## 2347    8457  69
## 2348    8937  69
## 2349    9065  69
## 2350    9335  69
## 2351    9421  69
## 2352    9518  69
## 2353     975  69
## 2354    9757  69
## 2355    9764  69
## 2356    9856  69
## 2357    1002  68
## 2358    1136  68
## 2359    1297  68
## 2360    1385  68
## 2361    1802  68
## 2362    1943  68
## 2363     205  68
## 2364     207  68
## 2365    2341  68
## 2366    2503  68
## 2367    2528  68
## 2368    2855  68
## 2369    3025  68
## 2370   34977  68
## 2371    4015  68
## 2372    4054  68
## 2373    4798  68
## 2374    5035  68
## 2375    5630  68
## 2376    6017  68
## 2377    6127  68
## 2378    6491  68
## 2379    6879  68
## 2380    7530  68
## 2381   75722  68
## 2382   76376  68
## 2383   76464  68
## 2384   76624  68
## 2385    7799  68
## 2386   79169  68
## 2387    8452  68
## 2388      86  68
## 2389    8763  68
## 2390    9263  68
## 2391    9423  68
## 2392   95263  68
## 2393    9607  68
## 2394    9833  68
## 2395     114  67
## 2396    1717  67
## 2397    1893  67
## 2398    1999  67
## 2399    2023  67
## 2400    2073  67
## 2401     213  67
## 2402    2564  67
## 2403    2593  67
## 2404    2711  67
## 2405    2771  67
## 2406    2833  67
## 2407    2874  67
## 2408    2991  67
## 2409      31  67
## 2410    3394  67
## 2411   34731  67
## 2412    3692  67
## 2413    4224  67
## 2414   42593  67
## 2415   43277  67
## 2416   43600  67
## 2417    5144  67
## 2418    5962  67
## 2419    6511  67
## 2420     660  67
## 2421    6667  67
## 2422    7233  67
## 2423   74063  67
## 2424    7477  67
## 2425    7605  67
## 2426      77  67
## 2427   77311  67
## 2428    7814  67
## 2429    8115  67
## 2430     927  67
## 2431    9282  67
## 2432      94  67
## 2433    1042  66
## 2434    1304  66
## 2435    1401  66
## 2436    1407  66
## 2437    1747  66
## 2438    1942  66
## 2439    2136  66
## 2440   24997  66
## 2441     260  66
## 2442    2876  66
## 2443    2895  66
## 2444    2928  66
## 2445    3010  66
## 2446   34772  66
## 2447    3772  66
## 2448      38  66
## 2449    3824  66
## 2450    4143  66
## 2451   42552  66
## 2452    4820  66
## 2453    4896  66
## 2454    5126  66
## 2455    5228  66
## 2456    6053  66
## 2457   60591  66
## 2458    6162  66
## 2459     631  66
## 2460    6454  66
## 2461      68  66
## 2462    6891  66
## 2463     690  66
## 2464    7045  66
## 2465    7372  66
## 2466    7373  66
## 2467   73972  66
## 2468   74626  66
## 2469   75878  66
## 2470   76707  66
## 2471   77339  66
## 2472   78691  66
## 2473    8086  66
## 2474   80998  66
## 2475    8166  66
## 2476    9056  66
## 2477     913  66
## 2478    9146  66
## 2479    9503  66
## 2480    9525  66
## 2481    9579  66
## 2482    9696  66
## 2483    9900  66
## 2484     993  66
## 2485     129  65
## 2486    1350  65
## 2487    1356  65
## 2488     136  65
## 2489    1436  65
## 2490    1491  65
## 2491    1531  65
## 2492   17080  65
## 2493    2152  65
## 2494    2335  65
## 2495    2803  65
## 2496     341  65
## 2497   34477  65
## 2498   34794  65
## 2499    3929  65
## 2500    3979  65
## 2501    4001  65
## 2502   42559  65
## 2503    4258  65
## 2504   43061  65
## 2505    4561  65
## 2506    5114  65
## 2507    5384  65
## 2508    5582  65
## 2509    5993  65
## 2510    6476  65
## 2511    6633  65
## 2512    6907  65
## 2513     692  65
## 2514    7166  65
## 2515   73058  65
## 2516     733  65
## 2517    7428  65
## 2518   75420  65
## 2519   75446  65
## 2520   76314  65
## 2521   77085  65
## 2522   77367  65
## 2523   77554  65
## 2524    7893  65
## 2525    8096  65
## 2526    9557  65
## 2527   96815  65
## 2528    1167  64
## 2529    1177  64
## 2530    2126  64
## 2531    2246  64
## 2532    2351  64
## 2533    2490  64
## 2534    2562  64
## 2535    2725  64
## 2536    2766  64
## 2537     277  64
## 2538    2811  64
## 2539    2903  64
## 2540    3038  64
## 2541   33818  64
## 2542   34416  64
## 2543      36  64
## 2544    4244  64
## 2545    4825  64
## 2546    5050  64
## 2547    5079  64
## 2548   53376  64
## 2549    5453  64
## 2550   57450  64
## 2551    5790  64
## 2552    5818  64
## 2553    6067  64
## 2554    6552  64
## 2555    7002  64
## 2556    7043  64
## 2557   72943  64
## 2558   75423  64
## 2559   76816  64
## 2560    7723  64
## 2561   79632  64
## 2562    8146  64
## 2563    8528  64
## 2564    9430  64
## 2565   94525  64
## 2566     105  63
## 2567    1142  63
## 2568    1486  63
## 2569    1738  63
## 2570    2477  63
## 2571    2493  63
## 2572    2525  63
## 2573    2533  63
## 2574    2812  63
## 2575    3052  63
## 2576   31248  63
## 2577    3213  63
## 2578    3220  63
## 2579    3398  63
## 2580   34733  63
## 2581    3899  63
## 2582    3901  63
## 2583     397  63
## 2584     410  63
## 2585    4170  63
## 2586   52077  63
## 2587    5354  63
## 2588   56052  63
## 2589    6151  63
## 2590    6329  63
## 2591    7077  63
## 2592   74103  63
## 2593   74440  63
## 2594   76796  63
## 2595   76876  63
## 2596   77059  63
## 2597    7736  63
## 2598    7890  63
## 2599    8199  63
## 2600    8282  63
## 2601   82993  63
## 2602     837  63
## 2603     846  63
## 2604    8884  63
## 2605    8923  63
## 2606    9078  63
## 2607    9191  63
## 2608    9365  63
## 2609     940  63
## 2610   94652  63
## 2611    9586  63
## 2612     982  63
## 2613    9858  63
## 2614    9944  63
## 2615    1320  62
## 2616    1537  62
## 2617    1707  62
## 2618     176  62
## 2619    1776  62
## 2620    1803  62
## 2621    1983  62
## 2622    2128  62
## 2623    2232  62
## 2624    2679  62
## 2625   27373  62
## 2626    3014  62
## 2627    3232  62
## 2628      40  62
## 2629    4014  62
## 2630    4525  62
## 2631    4779  62
## 2632    5091  62
## 2633    5215  62
## 2634    5292  62
## 2635    6128  62
## 2636    6209  62
## 2637    6379  62
## 2638    6440  62
## 2639    6773  62
## 2640    7088  62
## 2641   73827  62
## 2642   74095  62
## 2643   74256  62
## 2644   74694  62
## 2645    7526  62
## 2646   75645  62
## 2647   76166  62
## 2648   76605  62
## 2649    7793  62
## 2650    7797  62
## 2651   81428  62
## 2652    8727  62
## 2653    9031  62
## 2654    9478  62
## 2655    9507  62
## 2656     956  62
## 2657     957  62
## 2658    9698  62
## 2659    9876  62
## 2660    9982  62
## 2661    1006  61
## 2662    1159  61
## 2663    1499  61
## 2664    1944  61
## 2665    2204  61
## 2666    2366  61
## 2667    2455  61
## 2668    2509  61
## 2669    2755  61
## 2670    2810  61
## 2671   29181  61
## 2672    2977  61
## 2673    3132  61
## 2674    3140  61
## 2675   34394  61
## 2676    3744  61
## 2677    3989  61
## 2678   43185  61
## 2679    5017  61
## 2680    5055  61
## 2681   50722  61
## 2682     527  61
## 2683    5468  61
## 2684    5489  61
## 2685    5589  61
## 2686    5602  61
## 2687    5738  61
## 2688     604  61
## 2689    6230  61
## 2690    6721  61
## 2691    6746  61
## 2692   72748  61
## 2693   73229  61
## 2694    7345  61
## 2695   74009  61
## 2696   74609  61
## 2697    7531  61
## 2698    8142  61
## 2699   82047  61
## 2700    8392  61
## 2701     869  61
## 2702     928  61
## 2703    9768  61
## 2704     983  61
## 2705    9850  61
## 2706    1482  60
## 2707    1940  60
## 2708    2272  60
## 2709    2642  60
## 2710    2689  60
## 2711    2824  60
## 2712    2943  60
## 2713    2982  60
## 2714    3262  60
## 2715   34094  60
## 2716   34131  60
## 2717    4232  60
## 2718    4284  60
## 2719    4294  60
## 2720   43644  60
## 2721    5072  60
## 2722    5206  60
## 2723     531  60
## 2724    5491  60
## 2725   55603  60
## 2726    5813  60
## 2727    5833  60
## 2728    5918  60
## 2729    6013  60
## 2730    6101  60
## 2731    6334  60
## 2732    6336  60
## 2733    6345  60
## 2734    6953  60
## 2735    7239  60
## 2736   72909  60
## 2737   75213  60
## 2738   77063  60
## 2739    8260  60
## 2740    9109  60
## 2741    9257  60
## 2742    9304  60
## 2743    9582  60
## 2744    9639  60
## 2745     995  60
## 2746   10049  59
## 2747   10241  59
## 2748    1036  59
## 2749    1214  59
## 2750     162  59
## 2751    1753  59
## 2752    1761  59
## 2753    2014  59
## 2754    2893  59
## 2755   31364  59
## 2756    3180  59
## 2757    3276  59
## 2758   33912  59
## 2759   34573  59
## 2760   34972  59
## 2761    3675  59
## 2762    3797  59
## 2763   43151  59
## 2764    4354  59
## 2765   44951  59
## 2766    4681  59
## 2767    4753  59
## 2768    4757  59
## 2769    5145  59
## 2770    5490  59
## 2771    5562  59
## 2772   58265  59
## 2773     587  59
## 2774   59867  59
## 2775     647  59
## 2776    6483  59
## 2777    6696  59
## 2778   73275  59
## 2779     736  59
## 2780   74625  59
## 2781    7508  59
## 2782    7541  59
## 2783   76061  59
## 2784   76895  59
## 2785    9302  59
## 2786     942  59
## 2787    9450  59
## 2788   94524  59
## 2789   95015  59
## 2790     958  59
## 2791    1093  58
## 2792    1310  58
## 2793    1326  58
## 2794    1347  58
## 2795    1560  58
## 2796     158  58
## 2797    1743  58
## 2798    1749  58
## 2799    2054  58
## 2800    2068  58
## 2801    2175  58
## 2802    2393  58
## 2803      24  58
## 2804    2821  58
## 2805    2978  58
## 2806    3218  58
## 2807    3356  58
## 2808    3495  58
## 2809    3619  58
## 2810    4004  58
## 2811    4031  58
## 2812    4086  58
## 2813    4106  58
## 2814   42794  58
## 2815   47359  58
## 2816    5202  58
## 2817    5227  58
## 2818    5975  58
## 2819    6103  58
## 2820     616  58
## 2821    6273  58
## 2822    6314  58
## 2823    6348  58
## 2824    6621  58
## 2825    6917  58
## 2826    6955  58
## 2827   73034  58
## 2828   73989  58
## 2829   74030  58
## 2830   74058  58
## 2831    7431  58
## 2832   74645  58
## 2833   74998  58
## 2834   75307  58
## 2835   76461  58
## 2836   76518  58
## 2837   76794  58
## 2838    7743  58
## 2839    8139  58
## 2840    8289  58
## 2841    9029  58
## 2842   94233  58
## 2843    9544  58
## 2844    9635  58
## 2845    9960  58
## 2846     104  57
## 2847     106  57
## 2848     122  57
## 2849    1518  57
## 2850    1793  57
## 2851    1876  57
## 2852    2245  57
## 2853    2563  57
## 2854    2981  57
## 2855    3274  57
## 2856    3340  57
## 2857    3351  57
## 2858    3353  57
## 2859   33973  57
## 2860   34032  57
## 2861   34716  57
## 2862    3587  57
## 2863    3825  57
## 2864   42712  57
## 2865    4735  57
## 2866   47473  57
## 2867    4857  57
## 2868    4989  57
## 2869    5239  57
## 2870    5988  57
## 2871    6856  57
## 2872    7557  57
## 2873   76581  57
## 2874   77153  57
## 2875   77393  57
## 2876     784  57
## 2877    7853  57
## 2878    8477  57
## 2879    8633  57
## 2880    8906  57
## 2881     898  57
## 2882    9410  57
## 2883    9558  57
## 2884   96660  57
## 2885     178  56
## 2886    2435  56
## 2887    2495  56
## 2888    2680  56
## 2889    2919  56
## 2890    3022  56
## 2891   31243  56
## 2892   31709  56
## 2893    3174  56
## 2894    3245  56
## 2895    3282  56
## 2896   33757  56
## 2897   34712  56
## 2898    3775  56
## 2899   42695  56
## 2900   43121  56
## 2901    4344  56
## 2902    4737  56
## 2903    5016  56
## 2904    5111  56
## 2905    5299  56
## 2906   54999  56
## 2907   57694  56
## 2908    6211  56
## 2909    6442  56
## 2910    6482  56
## 2911    6932  56
## 2912   75043  56
## 2913   75128  56
## 2914   75314  56
## 2915   75539  56
## 2916   75678  56
## 2917   76477  56
## 2918    8690  56
## 2919    8833  56
## 2920     888  56
## 2921    9394  56
## 2922   96646  56
## 2923    9885  56
## 2924    1591  55
## 2925     263  55
## 2926    2794  55
## 2927   30484  55
## 2928    3133  55
## 2929   35015  55
## 2930    3620  55
## 2931    3710  55
## 2932    3814  55
## 2933   42792  55
## 2934    4884  55
## 2935     506  55
## 2936    5112  55
## 2937    5159  55
## 2938    6156  55
## 2939    6337  55
## 2940    6524  55
## 2941    6676  55
## 2942    6769  55
## 2943    7090  55
## 2944   73018  55
## 2945    7400  55
## 2946   74142  55
## 2947   76163  55
## 2948   77438  55
## 2949    9112  55
## 2950    9280  55
## 2951    9554  55
## 2952    9852  55
## 2953    9891  55
## 2954    9919  55
## 2955    9971  55
## 2956    1301  54
## 2957    1492  54
## 2958    1516  54
## 2959    1562  54
## 2960    1626  54
## 2961   16635  54
## 2962    2608  54
## 2963    2719  54
## 2964    2823  54
## 2965    2990  54
## 2966   31262  54
## 2967    3181  54
## 2968    3201  54
## 2969    3286  54
## 2970   34957  54
## 2971    3829  54
## 2972    3978  54
## 2973    3990  54
## 2974   43298  54
## 2975   43786  54
## 2976    4409  54
## 2977     455  54
## 2978    4841  54
## 2979    4859  54
## 2980    5704  54
## 2981    6503  54
## 2982    6525  54
## 2983    6921  54
## 2984    7210  54
## 2985    7234  54
## 2986   72769  54
## 2987    7368  54
## 2988   74107  54
## 2989    7722  54
## 2990   77581  54
## 2991    7790  54
## 2992    7848  54
## 2993    8207  54
## 2994     828  54
## 2995    8832  54
## 2996    9145  54
## 2997    9609  54
## 2998    9663  54
## 2999    9686  54
## 3000    9747  54
## 3001    9970  54
## 3002   10175  53
## 3003    1051  53
## 3004    1230  53
## 3005    1483  53
## 3006    1788  53
## 3007      19  53
## 3008    2320  53
## 3009    2574  53
## 3010     259  53
## 3011    2668  53
## 3012    2692  53
## 3013    2775  53
## 3014    2907  53
## 3015   31024  53
## 3016   31125  53
## 3017   32487  53
## 3018    3344  53
## 3019   33634  53
## 3020   34136  53
## 3021    4228  53
## 3022   43295  53
## 3023    4364  53
## 3024   43803  53
## 3025    5105  53
## 3026    5946  53
## 3027    6205  53
## 3028    6340  53
## 3029    6341  53
## 3030    7019  53
## 3031    7092  53
## 3032     713  53
## 3033   72762  53
## 3034    7301  53
## 3035    7420  53
## 3036   74650  53
## 3037   75098  53
## 3038   76197  53
## 3039   76198  53
## 3040    8276  53
## 3041    9386  53
## 3042    9925  53
## 3043    9935  53
## 3044     109  52
## 3045    1291  52
## 3046     139  52
## 3047   16580  52
## 3048    1711  52
## 3049     175  52
## 3050      18  52
## 3051    1972  52
## 3052    2520  52
## 3053    2568  52
## 3054    2612  52
## 3055      28  52
## 3056   30164  52
## 3057    3028  52
## 3058    3077  52
## 3059   33719  52
## 3060   34118  52
## 3061    3457  52
## 3062    3656  52
## 3063    3759  52
## 3064    3852  52
## 3065    3908  52
## 3066    4009  52
## 3067    4626  52
## 3068   47190  52
## 3069    4736  52
## 3070    4788  52
## 3071    5018  52
## 3072    5179  52
## 3073    5246  52
## 3074    5439  52
## 3075    5752  52
## 3076   57695  52
## 3077    6109  52
## 3078    6311  52
## 3079    6492  52
## 3080    6896  52
## 3081    6957  52
## 3082    7129  52
## 3083   74992  52
## 3084   75474  52
## 3085   75741  52
## 3086    7587  52
## 3087   76037  52
## 3088   76524  52
## 3089   77026  52
## 3090     773  52
## 3091    7758  52
## 3092     796  52
## 3093    8017  52
## 3094    9539  52
## 3095    9581  52
## 3096    2396  51
## 3097    2705  51
## 3098    2979  51
## 3099   31605  51
## 3100    3250  51
## 3101    3390  51
## 3102   34151  51
## 3103   34914  51
## 3104   35032  51
## 3105    3644  51
## 3106    3884  51
## 3107     408  51
## 3108   43337  51
## 3109   43788  51
## 3110   43823  51
## 3111   43839  51
## 3112    4726  51
## 3113    4950  51
## 3114     540  51
## 3115   54576  51
## 3116    6163  51
## 3117    6246  51
## 3118    6313  51
## 3119    6446  51
## 3120    6733  51
## 3121    6895  51
## 3122    7076  51
## 3123   74489  51
## 3124   74732  51
## 3125   76358  51
## 3126   76673  51
## 3127    7716  51
## 3128   77562  51
## 3129    8123  51
## 3130    8524  51
## 3131    8747  51
## 3132    8962  51
## 3133    9540  51
## 3134    9567  51
## 3135    9650  51
## 3136    9899  51
## 3137      99  51
## 3138    1059  50
## 3139    1276  50
## 3140    1569  50
## 3141    1637  50
## 3142    1815  50
## 3143    1851  50
## 3144   18766  50
## 3145    2018  50
## 3146    2021  50
## 3147    2402  50
## 3148   26736  50
## 3149    2819  50
## 3150     283  50
## 3151   32525  50
## 3152    3337  50
## 3153    4351  50
## 3154    4571  50
## 3155    4578  50
## 3156    4703  50
## 3157    4721  50
## 3158    4867  50
## 3159    5229  50
## 3160    5233  50
## 3161    5276  50
## 3162    5284  50
## 3163   54083  50
## 3164    5756  50
## 3165   61026  50
## 3166    6218  50
## 3167    6471  50
## 3168    6650  50
## 3169    7053  50
## 3170   72983  50
## 3171    7377  50
## 3172    7604  50
## 3173   76983  50
## 3174   77072  50
## 3175   77306  50
## 3176   77572  50
## 3177   77598  50
## 3178    7805  50
## 3179    7883  50
## 3180    8387  50
## 3181    8518  50
## 3182    8621  50
## 3183    8636  50
## 3184      91  50
## 3185     929  50
## 3186    9555  50
## 3187    9712  50
## 3188    9954  50
## 3189    9978  50
## 3190    9980  50
## 3191    1376  49
## 3192    1457  49
## 3193    1552  49
## 3194    1559  49
## 3195    1595  49
## 3196    1597  49
## 3197    1705  49
## 3198    2135  49
## 3199     216  49
## 3200    2325  49
## 3201    2352  49
## 3202    2675  49
## 3203    2694  49
## 3204    2914  49
## 3205   30346  49
## 3206    3103  49
## 3207    3127  49
## 3208    3292  49
## 3209    3614  49
## 3210    3780  49
## 3211    3919  49
## 3212    4092  49
## 3213    4252  49
## 3214   42615  49
## 3215    4292  49
## 3216   43015  49
## 3217    4331  49
## 3218   43807  49
## 3219     441  49
## 3220    4486  49
## 3221    4558  49
## 3222    4942  49
## 3223     507  49
## 3224    5147  49
## 3225   54021  49
## 3226   54052  49
## 3227   57515  49
## 3228   60611  49
## 3229   62484  49
## 3230    6328  49
## 3231    6360  49
## 3232   73117  49
## 3233   74639  49
## 3234   74753  49
## 3235   74858  49
## 3236    7510  49
## 3237   75785  49
## 3238   77015  49
## 3239    7772  49
## 3240    7798  49
## 3241    7810  49
## 3242    8028  49
## 3243    8124  49
## 3244    8273  49
## 3245    9301  49
## 3246    9431  49
## 3247    9649  49
## 3248    9782  49
## 3249    1213  48
## 3250    1222  48
## 3251     133  48
## 3252    1386  48
## 3253     146  48
## 3254    1625  48
## 3255    1640  48
## 3256    1911  48
## 3257    2197  48
## 3258    2198  48
## 3259    2270  48
## 3260    2356  48
## 3261    2524  48
## 3262    2579  48
## 3263   31102  48
## 3264   31166  48
## 3265    3192  48
## 3266    3196  48
## 3267    3259  48
## 3268   33410  48
## 3269   33673  48
## 3270   33717  48
## 3271    3418  48
## 3272    4150  48
## 3273    4179  48
## 3274    5329  48
## 3275   56623  48
## 3276   57126  48
## 3277    5932  48
## 3278   61139  48
## 3279    6198  48
## 3280    6694  48
## 3281    6796  48
## 3282    6797  48
## 3283    6839  48
## 3284    6899  48
## 3285   72799  48
## 3286   74013  48
## 3287   74189  48
## 3288    7437  48
## 3289   74848  48
## 3290   77190  48
## 3291    8310  48
## 3292    8330  48
## 3293    8583  48
## 3294   95719  48
## 3295    9627  48
## 3296    9685  48
## 3297    9716  48
## 3298    9726  48
## 3299    1021  47
## 3300    1112  47
## 3301    1726  47
## 3302    2758  47
## 3303   30247  47
## 3304   31163  47
## 3305    3152  47
## 3306    3200  47
## 3307    3456  47
## 3308     348  47
## 3309    3490  47
## 3310    3828  47
## 3311   43169  47
## 3312   43593  47
## 3313   43643  47
## 3314   43735  47
## 3315    4408  47
## 3316     446  47
## 3317   60521  47
## 3318    6275  47
## 3319     671  47
## 3320    6836  47
## 3321   72740  47
## 3322   73658  47
## 3323    7470  47
## 3324    7506  47
## 3325    7563  47
## 3326   76251  47
## 3327   76297  47
## 3328   77024  47
## 3329   77358  47
## 3330   77459  47
## 3331     798  47
## 3332      82  47
## 3333    8270  47
## 3334    8375  47
## 3335    8976  47
## 3336    9115  47
## 3337    9440  47
## 3338    9476  47
## 3339    9531  47
## 3340    9679  47
## 3341    9733  47
## 3342   97483  47
## 3343     987  47
## 3344   98920  47
## 3345     115  46
## 3346    1197  46
## 3347    1708  46
## 3348    1957  46
## 3349    1992  46
## 3350    2127  46
## 3351    2265  46
## 3352    2962  46
## 3353    2975  46
## 3354   31188  46
## 3355    3310  46
## 3356    3339  46
## 3357   33452  46
## 3358    3602  46
## 3359    3786  46
## 3360    4189  46
## 3361   42264  46
## 3362   42644  46
## 3363   43675  46
## 3364     453  46
## 3365     474  46
## 3366    4865  46
## 3367   55372  46
## 3368     560  46
## 3369    5915  46
## 3370    6682  46
## 3371    6850  46
## 3372    7015  46
## 3373    7031  46
## 3374    7063  46
## 3375    7285  46
## 3376   73378  46
## 3377    7369  46
## 3378   73803  46
## 3379    7476  46
## 3380    7571  46
## 3381   77441  46
## 3382   77468  46
## 3383    8116  46
## 3384    8247  46
## 3385    8912  46
## 3386    8994  46
## 3387    9389  46
## 3388     946  46
## 3389    9826  46
## 3390    9939  46
## 3391     108  45
## 3392    1277  45
## 3393    1289  45
## 3394     143  45
## 3395    1777  45
## 3396    1995  45
## 3397    2168  45
## 3398    2250  45
## 3399    2617  45
## 3400     265  45
## 3401    2782  45
## 3402    2881  45
## 3403    2971  45
## 3404    3009  45
## 3405   30325  45
## 3406    3273  45
## 3407    3318  45
## 3408   33674  45
## 3409    3384  45
## 3410    3661  45
## 3411      37  45
## 3412    3823  45
## 3413    4058  45
## 3414   42617  45
## 3415   42990  45
## 3416   43671  45
## 3417    4816  45
## 3418     484  45
## 3419    4871  45
## 3420    5459  45
## 3421    5584  45
## 3422   56053  45
## 3423    5663  45
## 3424    5737  45
## 3425    5838  45
## 3426    5979  45
## 3427   61364  45
## 3428    6236  45
## 3429    6523  45
## 3430    6651  45
## 3431    6713  45
## 3432   73115  45
## 3433   73560  45
## 3434   73634  45
## 3435   73835  45
## 3436    7393  45
## 3437   73966  45
## 3438   73987  45
## 3439   74534  45
## 3440    7685  45
## 3441    7756  45
## 3442    8130  45
## 3443    9374  45
## 3444    9732  45
## 3445    9802  45
## 3446    9871  45
## 3447     102  44
## 3448    1034  44
## 3449     138  44
## 3450    1421  44
## 3451    2076  44
## 3452    2143  44
## 3453    2148  44
## 3454      26  44
## 3455    2645  44
## 3456    2732  44
## 3457    2816  44
## 3458    2831  44
## 3459    2854  44
## 3460   30501  44
## 3461   31304  44
## 3462    3260  44
## 3463      34  44
## 3464    3432  44
## 3465   34910  44
## 3466    3588  44
## 3467    3643  44
## 3468    3812  44
## 3469    3890  44
## 3470    3972  44
## 3471    4138  44
## 3472   42496  44
## 3473   42777  44
## 3474   43167  44
## 3475    4694  44
## 3476    4801  44
## 3477   49301  44
## 3478    4977  44
## 3479    4993  44
## 3480    4998  44
## 3481   55789  44
## 3482    5787  44
## 3483   58042  44
## 3484   60015  44
## 3485    6027  44
## 3486    6750  44
## 3487    6833  44
## 3488    6920  44
## 3489    7057  44
## 3490    7189  44
## 3491   72737  44
## 3492    7312  44
## 3493   73679  44
## 3494   75211  44
## 3495   75984  44
## 3496    7780  44
## 3497    7937  44
## 3498    8686  44
## 3499    8948  44
## 3500    8969  44
## 3501    9547  44
## 3502    9792  44
## 3503     125  43
## 3504    1371  43
## 3505    1467  43
## 3506    1973  43
## 3507     217  43
## 3508    2172  43
## 3509    2517  43
## 3510    2789  43
## 3511    2904  43
## 3512    3008  43
## 3513   30445  43
## 3514   31546  43
## 3515    3270  43
## 3516    3335  43
## 3517    3497  43
## 3518    3547  43
## 3519     422  43
## 3520   43889  43
## 3521    4620  43
## 3522    4797  43
## 3523    4930  43
## 3524    5098  43
## 3525    5423  43
## 3526     561  43
## 3527   56493  43
## 3528    5964  43
## 3529   60314  43
## 3530    6082  43
## 3531    6177  43
## 3532    6239  43
## 3533   73012  43
## 3534   73082  43
## 3535   73210  43
## 3536    7413  43
## 3537   74248  43
## 3538    7642  43
## 3539   77359  43
## 3540     813  43
## 3541     844  43
## 3542    8492  43
## 3543     871  43
## 3544    9060  43
## 3545    9116  43
## 3546    9353  43
## 3547   95803  43
## 3548    9753  43
## 3549    9762  43
## 3550    9790  43
## 3551   99745  43
## 3552    1073  42
## 3553    1211  42
## 3554    1244  42
## 3555    1653  42
## 3556    1964  42
## 3557     219  42
## 3558    2256  42
## 3559    2333  42
## 3560    2688  42
## 3561   30580  42
## 3562   31859  42
## 3563    3424  42
## 3564    3562  42
## 3565    3803  42
## 3566    3958  42
## 3567   42524  42
## 3568   43181  42
## 3569   43275  42
## 3570   43763  42
## 3571    4393  42
## 3572     480  42
## 3573     492  42
## 3574   53150  42
## 3575    5587  42
## 3576     569  42
## 3577     580  42
## 3578     582  42
## 3579   58266  42
## 3580   58448  42
## 3581   58837  42
## 3582    5997  42
## 3583    6105  42
## 3584   61068  42
## 3585   63345  42
## 3586    6549  42
## 3587    6581  42
## 3588    6630  42
## 3589    7161  42
## 3590    7203  42
## 3591    7238  42
## 3592   73030  42
## 3593   73318  42
## 3594   74706  42
## 3595   76072  42
## 3596   76751  42
## 3597    9002  42
## 3598    9424  42
## 3599   94842  42
## 3600      96  42
## 3601    9725  42
## 3602    9737  42
## 3603    1668  41
## 3604    1871  41
## 3605    2132  41
## 3606    2597  41
## 3607    2916  41
## 3608   31823  41
## 3609   33932  41
## 3610    3869  41
## 3611   42535  41
## 3612   43179  41
## 3613    4361  41
## 3614    4709  41
## 3615    4778  41
## 3616    5194  41
## 3617    5723  41
## 3618   58293  41
## 3619    6119  41
## 3620    6434  41
## 3621    6606  41
## 3622     674  41
## 3623    6751  41
## 3624    6771  41
## 3625    7118  41
## 3626   73414  41
## 3627   73660  41
## 3628   73678  41
## 3629    7445  41
## 3630     756  41
## 3631   76190  41
## 3632   77135  41
## 3633    7849  41
## 3634    7861  41
## 3635    8035  41
## 3636    8900  41
## 3637    9221  41
## 3638    9285  41
## 3639    9296  41
## 3640    1046  40
## 3641    1358  40
## 3642    1373  40
## 3643    1377  40
## 3644    1915  40
## 3645    2585  40
## 3646    2717  40
## 3647   30686  40
## 3648    3341  40
## 3649    4103  40
## 3650     417  40
## 3651   42889  40
## 3652   43075  40
## 3653   43090  40
## 3654    4885  40
## 3655   50643  40
## 3656    5141  40
## 3657   52891  40
## 3658    5383  40
## 3659   54107  40
## 3660    5745  40
## 3661   57776  40
## 3662    6024  40
## 3663    6599  40
## 3664    6685  40
## 3665    6759  40
## 3666    6794  40
## 3667   72707  40
## 3668   73727  40
## 3669   73952  40
## 3670   74275  40
## 3671    7556  40
## 3672   76275  40
## 3673     774  40
## 3674    8891  40
## 3675    9303  40
## 3676    9308  40
## 3677    9673  40
## 3678    9719  40
## 3679    9848  40
## 3680    1168  39
## 3681    1655  39
## 3682    1704  39
## 3683    2418  39
## 3684    2917  39
## 3685     308  39
## 3686    3454  39
## 3687   34993  39
## 3688    3501  39
## 3689    3512  39
## 3690    3724  39
## 3691    3757  39
## 3692    3941  39
## 3693   42683  39
## 3694   42710  39
## 3695   42760  39
## 3696    4330  39
## 3697    4594  39
## 3698    4646  39
## 3699   53424  39
## 3700    5475  39
## 3701   54816  39
## 3702    5770  39
## 3703    6426  39
## 3704   73785  39
## 3705   74042  39
## 3706   74959  39
## 3707   75015  39
## 3708   75166  39
## 3709   75672  39
## 3710    7918  39
## 3711    8742  39
## 3712    9247  39
## 3713    9378  39
## 3714    9396  39
## 3715    9417  39
## 3716    9879  39
## 3717    1369  38
## 3718    1967  38
## 3719    2186  38
## 3720    2367  38
## 3721    2683  38
## 3722    3108  38
## 3723   31084  38
## 3724   32346  38
## 3725   33473  38
## 3726   33773  38
## 3727   43063  38
## 3728   43729  38
## 3729     450  38
## 3730    4713  38
## 3731    4784  38
## 3732    5273  38
## 3733    5291  38
## 3734    5377  38
## 3735     545  38
## 3736     559  38
## 3737   60817  38
## 3738    6116  38
## 3739    6598  38
## 3740    6697  38
## 3741    6876  38
## 3742   74929  38
## 3743    7575  38
## 3744   76665  38
## 3745    7673  38
## 3746    7827  38
## 3747    8292  38
## 3748    8989  38
## 3749    9101  38
## 3750    9197  38
## 3751    9279  38
## 3752   94202  38
## 3753    9604  38
## 3754    1534  37
## 3755    1737  37
## 3756    2542  37
## 3757    2580  37
## 3758    2888  37
## 3759    3030  37
## 3760   30363  37
## 3761   31345  37
## 3762   31349  37
## 3763    3465  37
## 3764    3494  37
## 3765    4037  37
## 3766    4057  37
## 3767   42989  37
## 3768   43245  37
## 3769   43591  37
## 3770    4417  37
## 3771    5167  37
## 3772    5211  37
## 3773   54486  37
## 3774    5473  37
## 3775    6786  37
## 3776    7289  37
## 3777   75172  37
## 3778   75210  37
## 3779   75301  37
## 3780     770  37
## 3781    7961  37
## 3782     816  37
## 3783    8496  37
## 3784    9037  37
## 3785    9203  37
## 3786    9254  37
## 3787    9272  37
## 3788    9369  37
## 3789    9897  37
## 3790    1104  36
## 3791    1200  36
## 3792    1327  36
## 3793     165  36
## 3794    1950  36
## 3795    2022  36
## 3796      21  36
## 3797    2305  36
## 3798    2839  36
## 3799    3043  36
## 3800   31388  36
## 3801    3154  36
## 3802    3194  36
## 3803    3244  36
## 3804    3785  36
## 3805    3832  36
## 3806    4063  36
## 3807   43162  36
## 3808    5003  36
## 3809   55681  36
## 3810   57216  36
## 3811    5851  36
## 3812    6130  36
## 3813    6756  36
## 3814    6890  36
## 3815   72788  36
## 3816   73015  36
## 3817   73432  36
## 3818   73701  36
## 3819   73924  36
## 3820   74291  36
## 3821   74477  36
## 3822    7459  36
## 3823    7562  36
## 3824   77273  36
## 3825     810  36
## 3826    8223  36
## 3827     911  36
## 3828    9124  36
## 3829   98285  36
## 3830   10052  35
## 3831    1149  35
## 3832    1768  35
## 3833    1928  35
## 3834    2105  35
## 3835   24356  35
## 3836    2619  35
## 3837    2672  35
## 3838     279  35
## 3839    2829  35
## 3840   30119  35
## 3841   34119  35
## 3842    3696  35
## 3843    3796  35
## 3844   42473  35
## 3845    4254  35
## 3846   42708  35
## 3847    4489  35
## 3848    4830  35
## 3849    5031  35
## 3850   56347  35
## 3851    5854  35
## 3852   59946  35
## 3853    6019  35
## 3854    6100  35
## 3855    6497  35
## 3856    6631  35
## 3857    6659  35
## 3858    6858  35
## 3859    7155  35
## 3860    7319  35
## 3861   73333  35
## 3862   75583  35
## 3863   76100  35
## 3864   76432  35
## 3865   76980  35
## 3866    7926  35
## 3867    8305  35
## 3868    8385  35
## 3869     872  35
## 3870    9312  35
## 3871    9380  35
## 3872    9641  35
## 3873    9924  35
## 3874    1139  34
## 3875    1217  34
## 3876   13739  34
## 3877    1979  34
## 3878     212  34
## 3879    2238  34
## 3880    2473  34
## 3881    2802  34
## 3882    2841  34
## 3883    2936  34
## 3884    3036  34
## 3885   31009  34
## 3886    3139  34
## 3887    3268  34
## 3888    3865  34
## 3889    3938  34
## 3890    4246  34
## 3891   43068  34
## 3892     448  34
## 3893    4485  34
## 3894    4556  34
## 3895    5296  34
## 3896     532  34
## 3897    5454  34
## 3898   57051  34
## 3899   57426  34
## 3900    5891  34
## 3901    5952  34
## 3902    6061  34
## 3903    6222  34
## 3904   73097  34
## 3905    7347  34
## 3906   73773  34
## 3907   74476  34
## 3908   74819  34
## 3909    7592  34
## 3910   77180  34
## 3911   77457  34
## 3912   77543  34
## 3913    8374  34
## 3914    8441  34
## 3915    8533  34
## 3916     883  34
## 3917    8910  34
## 3918    1100  33
## 3919    1229  33
## 3920    1285  33
## 3921    1418  33
## 3922    1629  33
## 3923    1643  33
## 3924    2339  33
## 3925    2534  33
## 3926    2720  33
## 3927    2757  33
## 3928    2860  33
## 3929    3054  33
## 3930   30665  33
## 3931    3128  33
## 3932    3151  33
## 3933    3258  33
## 3934    3560  33
## 3935     389  33
## 3936    3900  33
## 3937   42450  33
## 3938    4248  33
## 3939   42500  33
## 3940   42854  33
## 3941   43228  33
## 3942   43632  33
## 3943    4473  33
## 3944    4730  33
## 3945    4984  33
## 3946   51542  33
## 3947    5550  33
## 3948    5784  33
## 3949    6039  33
## 3950    6153  33
## 3951     621  33
## 3952    6305  33
## 3953    6754  33
## 3954    6770  33
## 3955     703  33
## 3956    7112  33
## 3957    7127  33
## 3958   73565  33
## 3959   73661  33
## 3960   74398  33
## 3961   74414  33
## 3962   74801  33
## 3963   75071  33
## 3964    7613  33
## 3965   76227  33
## 3966    7669  33
## 3967   76941  33
## 3968   77054  33
## 3969   77591  33
## 3970    7801  33
## 3971    9298  33
## 3972    9354  33
## 3973    9738  33
## 3974    1037  32
## 3975    2280  32
## 3976    3112  32
## 3977    3155  32
## 3978   32345  32
## 3979    3739  32
## 3980   42523  32
## 3981     434  32
## 3982   43564  32
## 3983      44  32
## 3984    4645  32
## 3985    4676  32
## 3986    5066  32
## 3987    5255  32
## 3988    5882  32
## 3989    6197  32
## 3990    6388  32
## 3991     643  32
## 3992    6657  32
## 3993    6931  32
## 3994    6943  32
## 3995    7052  32
## 3996     737  32
## 3997    7394  32
## 3998    7404  32
## 3999   75702  32
## 4000   77534  32
## 4001     864  32
## 4002    9086  32
## 4003    1115  31
## 4004      22  31
## 4005    2469  31
## 4006    2549  31
## 4007   30289  31
## 4008   30985  31
## 4009   31402  31
## 4010    3191  31
## 4011    3227  31
## 4012   33558  31
## 4013   33619  31
## 4014     362  31
## 4015    3791  31
## 4016    3925  31
## 4017   43128  31
## 4018   43784  31
## 4019   44960  31
## 4020    4589  31
## 4021    5056  31
## 4022    5116  31
## 4023    5575  31
## 4024   56446  31
## 4025    6030  31
## 4026    6320  31
## 4027    6364  31
## 4028    6981  31
## 4029    7026  31
## 4030   73935  31
## 4031   73962  31
## 4032    7419  31
## 4033    7430  31
## 4034   75016  31
## 4035   76587  31
## 4036   77270  31
## 4037    7950  31
## 4038    8069  31
## 4039    8448  31
## 4040    8876  31
## 4041     101  30
## 4042    1292  30
## 4043    1774  30
## 4044    1926  30
## 4045    2237  30
## 4046    2329  30
## 4047    2331  30
## 4048    2332  30
## 4049    2436  30
## 4050    2590  30
## 4051    2606  30
## 4052    2691  30
## 4053    2868  30
## 4054    2901  30
## 4055    2959  30
## 4056       3  30
## 4057    3015  30
## 4058    3047  30
## 4059    3096  30
## 4060    3355  30
## 4061    3486  30
## 4062     360  30
## 4063    3657  30
## 4064    3720  30
## 4065     409  30
## 4066   42682  30
## 4067    4758  30
## 4068    5172  30
## 4069    5249  30
## 4070    5320  30
## 4071   53217  30
## 4072    7183  30
## 4073    7468  30
## 4074   76410  30
## 4075    7660  30
## 4076   76790  30
## 4077   76914  30
## 4078   76933  30
## 4079   77074  30
## 4080    7972  30
## 4081    8079  30
## 4082    8897  30
## 4083    8971  30
## 4084    9033  30
## 4085    9974  30
## 4086    1058  29
## 4087    1341  29
## 4088    1832  29
## 4089    1882  29
## 4090    1895  29
## 4091   20628  29
## 4092     208  29
## 4093    2295  29
## 4094    2748  29
## 4095    2857  29
## 4096   30182  29
## 4097   32407  29
## 4098    3504  29
## 4099    3845  29
## 4100    4159  29
## 4101   43750  29
## 4102   49299  29
## 4103    4943  29
## 4104   55656  29
## 4105   58680  29
## 4106   60283  29
## 4107     608  29
## 4108    6187  29
## 4109    6351  29
## 4110    6394  29
## 4111    7244  29
## 4112   73942  29
## 4113   74529  29
## 4114   74910  29
## 4115    7547  29
## 4116   75550  29
## 4117   75985  29
## 4118   76663  29
## 4119   77334  29
## 4120   77583  29
## 4121    8107  29
## 4122    8122  29
## 4123    8196  29
## 4124    8213  29
## 4125    8587  29
## 4126    9122  29
## 4127    9349  29
## 4128    9373  29
## 4129    9405  29
## 4130     976  29
## 4131    2016  28
## 4132    2454  28
## 4133    2462  28
## 4134    2695  28
## 4135    2873  28
## 4136    2889  28
## 4137    2994  28
## 4138    3000  28
## 4139   31245  28
## 4140    3161  28
## 4141    3314  28
## 4142    3648  28
## 4143    3758  28
## 4144     381  28
## 4145    4123  28
## 4146   42456  28
## 4147     454  28
## 4148    4616  28
## 4149    4732  28
## 4150    5209  28
## 4151    5210  28
## 4152   54053  28
## 4153    5551  28
## 4154    5610  28
## 4155    5780  28
## 4156   59102  28
## 4157    6362  28
## 4158    6749  28
## 4159    7024  28
## 4160    7270  28
## 4161   72770  28
## 4162   73863  28
## 4163   76242  28
## 4164   77078  28
## 4165   77604  28
## 4166    7813  28
## 4167    8693  28
## 4168   96672  28
## 4169    9941  28
## 4170    1580  27
## 4171     206  27
## 4172    2311  27
## 4173    2361  27
## 4174    2391  27
## 4175    2440  27
## 4176    2488  27
## 4177    2696  27
## 4178    2844  27
## 4179    2865  27
## 4180   30198  27
## 4181    3034  27
## 4182    3037  27
## 4183   31289  27
## 4184    3571  27
## 4185    3658  27
## 4186    3685  27
## 4187    3763  27
## 4188    3858  27
## 4189   43903  27
## 4190    4502  27
## 4191    4872  27
## 4192    4973  27
## 4193    5071  27
## 4194     509  27
## 4195    5326  27
## 4196   54460  27
## 4197   56176  27
## 4198    6052  27
## 4199   62377  27
## 4200    6435  27
## 4201    6455  27
## 4202   73486  27
## 4203   73888  27
## 4204   74197  27
## 4205   74415  27
## 4206   74676  27
## 4207   75000  27
## 4208   75320  27
## 4209   76435  27
## 4210   77325  27
## 4211     842  27
## 4212    8551  27
## 4213    9819  27
## 4214    9937  27
## 4215   10013  26
## 4216   10338  26
## 4217    1264  26
## 4218    1981  26
## 4219      25  26
## 4220     262  26
## 4221    2664  26
## 4222   31126  26
## 4223    3130  26
## 4224   33890  26
## 4225    3506  26
## 4226    3565  26
## 4227    3968  26
## 4228    4251  26
## 4229   42550  26
## 4230   42828  26
## 4231   43808  26
## 4232    4407  26
## 4233    4462  26
## 4234   44641  26
## 4235    4551  26
## 4236    4686  26
## 4237     472  26
## 4238      48  26
## 4239    5063  26
## 4240   53578  26
## 4241    5555  26
## 4242    5642  26
## 4243   60056  26
## 4244    6374  26
## 4245    6494  26
## 4246    6558  26
## 4247    6764  26
## 4248    7223  26
## 4249    7236  26
## 4250    7440  26
## 4251    7539  26
## 4252   75451  26
## 4253   75555  26
## 4254   76203  26
## 4255   76292  26
## 4256   76309  26
## 4257   77178  26
## 4258   77525  26
## 4259    7832  26
## 4260    8265  26
## 4261    8321  26
## 4262    8505  26
## 4263    8594  26
## 4264    8613  26
## 4265     874  26
## 4266    8986  26
## 4267    9315  26
## 4268    9583  26
## 4269    9667  26
## 4270     999  26
## 4271    1131  25
## 4272    1550  25
## 4273    1572  25
## 4274    2202  25
## 4275    2676  25
## 4276    3005  25
## 4277    3045  25
## 4278    3333  25
## 4279    3420  25
## 4280    3642  25
## 4281    3701  25
## 4282    3773  25
## 4283    3934  25
## 4284    3987  25
## 4285    4163  25
## 4286    4182  25
## 4287   42630  25
## 4288   42934  25
## 4289    4315  25
## 4290    4316  25
## 4291   43265  25
## 4292    5090  25
## 4293    5128  25
## 4294    5133  25
## 4295   62239  25
## 4296   62589  25
## 4297    6789  25
## 4298   72728  25
## 4299   72784  25
## 4300   72908  25
## 4301   74022  25
## 4302   76340  25
## 4303   77481  25
## 4304    8108  25
## 4305     818  25
## 4306    8692  25
## 4307    8888  25
## 4308    9063  25
## 4309    9501  25
## 4310    9969  25
## 4311    1040  24
## 4312    1192  24
## 4313     121  24
## 4314    1336  24
## 4315    1632  24
## 4316    2145  24
## 4317    2228  24
## 4318    2243  24
## 4319    2281  24
## 4320    2726  24
## 4321    2739  24
## 4322   30151  24
## 4323    3081  24
## 4324   31443  24
## 4325   32083  24
## 4326   34973  24
## 4327     370  24
## 4328    3723  24
## 4329    3962  24
## 4330    4127  24
## 4331    4226  24
## 4332   42803  24
## 4333    4391  24
## 4334    4476  24
## 4335    4534  24
## 4336    4600  24
## 4337    4919  24
## 4338   51141  24
## 4339    5285  24
## 4340    5672  24
## 4341    5792  24
## 4342    5870  24
## 4343   59204  24
## 4344   61184  24
## 4345    6486  24
## 4346     658  24
## 4347    6644  24
## 4348    6945  24
## 4349    7075  24
## 4350   72672  24
## 4351    7362  24
## 4352    7386  24
## 4353   74243  24
## 4354   75564  24
## 4355   75648  24
## 4356    7598  24
## 4357   77557  24
## 4358    8225  24
## 4359    8637  24
## 4360     886  24
## 4361    8904  24
## 4362     914  24
## 4363     918  24
## 4364    9313  24
## 4365    9460  24
## 4366     116  23
## 4367    1290  23
## 4368    1729  23
## 4369    1852  23
## 4370    2104  23
## 4371    2141  23
## 4372    2450  23
## 4373    2640  23
## 4374    2875  23
## 4375    2906  23
## 4376   30503  23
## 4377   31681  23
## 4378    3727  23
## 4379    3760  23
## 4380   42457  23
## 4381   42922  23
## 4382   43345  23
## 4383   43723  23
## 4384   43873  23
## 4385   58601  23
## 4386    5985  23
## 4387    6029  23
## 4388   61009  23
## 4389     617  23
## 4390    6632  23
## 4391    6656  23
## 4392    6846  23
## 4393   73630  23
## 4394   74836  23
## 4395   74898  23
## 4396   76360  23
## 4397   77046  23
## 4398   77223  23
## 4399    8167  23
## 4400    9132  23
## 4401    9433  23
## 4402     964  23
## 4403   96516  23
## 4404    9837  23
## 4405    1035  22
## 4406    1087  22
## 4407    1432  22
## 4408    1789  22
## 4409    2535  22
## 4410    2638  22
## 4411    2659  22
## 4412    2778  22
## 4413   30644  22
## 4414   30784  22
## 4415   31985  22
## 4416   32041  22
## 4417    3414  22
## 4418    3519  22
## 4419    3638  22
## 4420    3966  22
## 4421   42547  22
## 4422   42844  22
## 4423   42849  22
## 4424   42864  22
## 4425   42880  22
## 4426   43116  22
## 4427   43273  22
## 4428   43894  22
## 4429    4415  22
## 4430    4848  22
## 4431    5000  22
## 4432    5024  22
## 4433    5786  22
## 4434   58642  22
## 4435    6152  22
## 4436    6227  22
## 4437    6596  22
## 4438    6643  22
## 4439    6816  22
## 4440    7012  22
## 4441    7190  22
## 4442    7525  22
## 4443   75723  22
## 4444   75870  22
## 4445   76619  22
## 4446   77320  22
## 4447   77351  22
## 4448    8255  22
## 4449    9489  22
## 4450    9513  22
## 4451    1076  21
## 4452    1157  21
## 4453      13  21
## 4454    2411  21
## 4455    2925  21
## 4456    3006  21
## 4457   30173  21
## 4458   31187  21
## 4459   31843  21
## 4460    3198  21
## 4461    3208  21
## 4462    3299  21
## 4463   34231  21
## 4464    3554  21
## 4465    3935  21
## 4466   42890  21
## 4467   43239  21
## 4468   43592  21
## 4469   43610  21
## 4470    4380  21
## 4471   43857  21
## 4472    4678  21
## 4473    4765  21
## 4474    4819  21
## 4475    5070  21
## 4476    5563  21
## 4477    5685  21
## 4478   57843  21
## 4479   58357  21
## 4480    6049  21
## 4481    6700  21
## 4482   74551  21
## 4483   76019  21
## 4484   76786  21
## 4485   76858  21
## 4486   77245  21
## 4487   77477  21
## 4488    9224  21
## 4489    9723  21
## 4490    9807  21
## 4491    9810  21
## 4492    2957  20
## 4493    3004  20
## 4494   30347  20
## 4495    3100  20
## 4496    3147  20
## 4497    3216  20
## 4498     354  20
## 4499    3761  20
## 4500    3808  20
## 4501    3888  20
## 4502     451  20
## 4503    4782  20
## 4504   47826  20
## 4505    4791  20
## 4506    4910  20
## 4507   52223  20
## 4508    5308  20
## 4509   57724  20
## 4510    6271  20
## 4511    6300  20
## 4512   72720  20
## 4513   72850  20
## 4514   73052  20
## 4515   73911  20
## 4516    7534  20
## 4517    7583  20
## 4518   75854  20
## 4519   76612  20
## 4520   77268  20
## 4521   77269  20
## 4522   77524  20
## 4523    9105  20
## 4524    9190  20
## 4525    9310  20
## 4526    9382  20
## 4527    9573  20
## 4528     971  20
## 4529    9999  20
## 4530    1101  19
## 4531    1250  19
## 4532    2288  19
## 4533    2632  19
## 4534    2745  19
## 4535    2801  19
## 4536    2930  19
## 4537   30587  19
## 4538    3228  19
## 4539   34937  19
## 4540    3593  19
## 4541    3653  19
## 4542    3849  19
## 4543   43170  19
## 4544   43709  19
## 4545    4965  19
## 4546    5064  19
## 4547    5076  19
## 4548    5430  19
## 4549   55317  19
## 4550    5546  19
## 4551    5793  19
## 4552   58332  19
## 4553   58576  19
## 4554    6132  19
## 4555    6171  19
## 4556    6173  19
## 4557    6242  19
## 4558     636  19
## 4559    6431  19
## 4560    6570  19
## 4561    6648  19
## 4562    6933  19
## 4563    7078  19
## 4564    7124  19
## 4565    7334  19
## 4566    7359  19
## 4567   73713  19
## 4568   74485  19
## 4569   75234  19
## 4570    8546  19
## 4571    9266  19
## 4572    9363  19
## 4573    9832  19
## 4574    2059  18
## 4575    2072  18
## 4576    2118  18
## 4577    2449  18
## 4578    2485  18
## 4579    2499  18
## 4580    2532  18
## 4581    2714  18
## 4582    3046  18
## 4583   31847  18
## 4584    3210  18
## 4585    3278  18
## 4586   34690  18
## 4587   34974  18
## 4588    4142  18
## 4589    4287  18
## 4590   43869  18
## 4591   45330  18
## 4592    4947  18
## 4593    5121  18
## 4594   52772  18
## 4595   53711  18
## 4596   56293  18
## 4597    5702  18
## 4598    5707  18
## 4599    6639  18
## 4600   73900  18
## 4601    7482  18
## 4602    7507  18
## 4603   75883  18
## 4604    8110  18
## 4605    8536  18
## 4606     854  18
## 4607    8968  18
## 4608    1600  17
## 4609   16586  17
## 4610    1662  17
## 4611   16895  17
## 4612   26694  17
## 4613   30707  17
## 4614   31123  17
## 4615    3373  17
## 4616    3729  17
## 4617    3749  17
## 4618   41626  17
## 4619   42819  17
## 4620    4461  17
## 4621    5385  17
## 4622   54712  17
## 4623    5644  17
## 4624    5884  17
## 4625   61466  17
## 4626    6200  17
## 4627    6578  17
## 4628    6727  17
## 4629    7360  17
## 4630    7481  17
## 4631   74933  17
## 4632   77480  17
## 4633    8618  17
## 4634    8903  17
## 4635    9619  17
## 4636    9894  17
## 4637    2117  16
## 4638    2357  16
## 4639    2468  16
## 4640     254  16
## 4641    2722  16
## 4642    3065  16
## 4643    3226  16
## 4644    3479  16
## 4645    3872  16
## 4646    3924  16
## 4647   42905  16
## 4648   43030  16
## 4649   43069  16
## 4650    4414  16
## 4651    4494  16
## 4652   54741  16
## 4653    5564  16
## 4654    5878  16
## 4655    5971  16
## 4656    6063  16
## 4657    6653  16
## 4658    6663  16
## 4659    6768  16
## 4660    6985  16
## 4661    7398  16
## 4662    7414  16
## 4663    7456  16
## 4664    7615  16
## 4665   77485  16
## 4666    7789  16
## 4667     801  16
## 4668    9467  16
## 4669    9959  16
## 4670    1295  15
## 4671    1452  15
## 4672    1855  15
## 4673    2184  15
## 4674    2409  15
## 4675    2684  15
## 4676    2850  15
## 4677    3073  15
## 4678    3115  15
## 4679    3267  15
## 4680    3348  15
## 4681    3376  15
## 4682    3741  15
## 4683    4022  15
## 4684   42711  15
## 4685   43842  15
## 4686    4477  15
## 4687    4529  15
## 4688   49232  15
## 4689    5250  15
## 4690    5275  15
## 4691    5452  15
## 4692   55103  15
## 4693    5716  15
## 4694   58093  15
## 4695   58412  15
## 4696    5853  15
## 4697    6032  15
## 4698   61913  15
## 4699    6292  15
## 4700    6410  15
## 4701    6699  15
## 4702    6829  15
## 4703    7245  15
## 4704    7320  15
## 4705   75024  15
## 4706   76843  15
## 4707   77414  15
## 4708   77550  15
## 4709      81  15
## 4710    8262  15
## 4711    8929  15
## 4712    8945  15
## 4713    9986  15
## 4714    1505  14
## 4715    2457  14
## 4716    2508  14
## 4717    3001  14
## 4718   30303  14
## 4719    3124  14
## 4720   31543  14
## 4721    3691  14
## 4722   43761  14
## 4723    4929  14
## 4724    4992  14
## 4725   55187  14
## 4726    5620  14
## 4727    6045  14
## 4728    6658  14
## 4729    6944  14
## 4730    7116  14
## 4731     740  14
## 4732   74434  14
## 4733   74797  14
## 4734   75716  14
## 4735   76773  14
## 4736    7855  14
## 4737    7920  14
## 4738    8382  14
## 4739    9207  14
## 4740    9787  14
## 4741     119  13
## 4742     140  13
## 4743    1733  13
## 4744    2479  13
## 4745    2662  13
## 4746    2721  13
## 4747    2838  13
## 4748   31068  13
## 4749    3184  13
## 4750   32002  13
## 4751    3240  13
## 4752    3528  13
## 4753    4052  13
## 4754     425  13
## 4755   42998  13
## 4756   43815  13
## 4757    5512  13
## 4758    5872  13
## 4759    5900  13
## 4760    5972  13
## 4761   60709  13
## 4762   60923  13
## 4763    6333  13
## 4764    6571  13
## 4765    7374  13
## 4766    7485  13
## 4767    7705  13
## 4768    8523  13
## 4769    9321  13
## 4770    9703  13
## 4771    9983  13
## 4772    1445  12
## 4773    1627  12
## 4774    2448  12
## 4775    2598  12
## 4776   30116  12
## 4777   30244  12
## 4778   30248  12
## 4779    3630  12
## 4780    3873  12
## 4781    3928  12
## 4782    4029  12
## 4783   41994  12
## 4784   42866  12
## 4785   43340  12
## 4786   43511  12
## 4787   43599  12
## 4788   43762  12
## 4789   43877  12
## 4790    4474  12
## 4791    5445  12
## 4792   54685  12
## 4793    5581  12
## 4794    6022  12
## 4795    6335  12
## 4796    6432  12
## 4797    6461  12
## 4798    6662  12
## 4799    6732  12
## 4800      70  12
## 4801    7172  12
## 4802   73738  12
## 4803    7524  12
## 4804    7552  12
## 4805    7880  12
## 4806    9092  12
## 4807    9717  12
## 4808      10  11
## 4809    1287  11
## 4810   17329  11
## 4811    2388  11
## 4812     241  11
## 4813    2526  11
## 4814   31028  11
## 4815    3239  11
## 4816    3246  11
## 4817    3660  11
## 4818    3738  11
## 4819    3762  11
## 4820    3893  11
## 4821    3952  11
## 4822    4107  11
## 4823   42875  11
## 4824   43283  11
## 4825   43311  11
## 4826    4336  11
## 4827   43621  11
## 4828   43913  11
## 4829     473  11
## 4830    4836  11
## 4831    4933  11
## 4832    5297  11
## 4833     547  11
## 4834   55026  11
## 4835   55710  11
## 4836    5653  11
## 4837    5778  11
## 4838    6169  11
## 4839     632  11
## 4840    6478  11
## 4841    7085  11
## 4842    7226  11
## 4843    7325  11
## 4844     735  11
## 4845   75285  11
## 4846   75543  11
## 4847   75726  11
## 4848   76063  11
## 4849     782  11
## 4850    7956  11
## 4851    8217  11
## 4852    8622  11
## 4853    9687  11
## 4854    1328  10
## 4855    1623  10
## 4856   31421  10
## 4857   33556  10
## 4858    3599  10
## 4859    3679  10
## 4860    3863  10
## 4861   43303  10
## 4862   43716  10
## 4863    5073  10
## 4864   53988  10
## 4865    5829  10
## 4866    5957  10
## 4867    6016  10
## 4868      63  10
## 4869    6448  10
## 4870     661  10
## 4871    6716  10
## 4872    7191  10
## 4873   73933  10
## 4874    7516  10
## 4875    7686  10
## 4876   76894  10
## 4877    8296  10
## 4878   84734  10
## 4879    9428  10
## 4880    9479  10
## 4881    1570   9
## 4882    2405   9
## 4883   30586   9
## 4884    3088   9
## 4885   30908   9
## 4886    3350   9
## 4887      35   9
## 4888    3683   9
## 4889    3703   9
## 4890    3743   9
## 4891    3842   9
## 4892    4324   9
## 4893   53558   9
## 4894     548   9
## 4895   56028   9
## 4896   57514   9
## 4897   57909   9
## 4898    5899   9
## 4899   60282   9
## 4900   60762   9
## 4901    6949   9
## 4902    7037   9
## 4903    7048   9
## 4904   75049   9
## 4905     761   9
## 4906    8114   9
## 4907    9211   9
## 4908    1329   8
## 4909    1765   8
## 4910   18847   8
## 4911    2266   8
## 4912   30290   8
## 4913   30524   8
## 4914   31246   8
## 4915   31849   8
## 4916     327   8
## 4917    3603   8
## 4918    4010   8
## 4919    4042   8
## 4920   46192   8
## 4921   48506   8
## 4922    5648   8
## 4923   56716   8
## 4924     574   8
## 4925    5741   8
## 4926   57933   8
## 4927   58066   8
## 4928   58930   8
## 4929    5955   8
## 4930    5986   8
## 4931     614   8
## 4932    6395   8
## 4933    6512   8
## 4934    6573   8
## 4935    6619   8
## 4936    6665   8
## 4937    6941   8
## 4938    7259   8
## 4939    7269   8
## 4940    7498   8
## 4941    7550   8
## 4942    7574   8
## 4943    7785   8
## 4944    8063   8
## 4945    8256   8
## 4946     867   8
## 4947    9142   8
## 4948     924   8
## 4949    1263   7
## 4950    1581   7
## 4951    2382   7
## 4952    2437   7
## 4953    2446   7
## 4954    2613   7
## 4955    2677   7
## 4956   31105   7
## 4957    3309   7
## 4958   34834   7
## 4959    3511   7
## 4960     355   7
## 4961    3750   7
## 4962   43093   7
## 4963   47602   7
## 4964    5049   7
## 4965    5053   7
## 4966    5280   7
## 4967    5330   7
## 4968    5970   7
## 4969    6370   7
## 4970    6612   7
## 4971    7086   7
## 4972    7103   7
## 4973    7361   7
## 4974    8143   7
## 4975    9022   7
## 4976    9491   7
## 4977   17486   6
## 4978    1841   6
## 4979    2556   6
## 4980    2626   6
## 4981    2890   6
## 4982   30410   6
## 4983    3149   6
## 4984   32028   6
## 4985    3212   6
## 4986    3272   6
## 4987   42618   6
## 4988    4527   6
## 4989    4780   6
## 4990    4828   6
## 4991     493   6
## 4992   54924   6
## 4993   55290   6
## 4994    5855   6
## 4995    5950   6
## 4996   61309   6
## 4997    6854   6
## 4998    6918   6
## 4999    6992   6
## 5000    7266   6
## 5001   72668   6
## 5002    7582   6
## 5003     819   6
## 5004    9477   6
## 5005    9495   6
## 5006     963   6
## 5007    9865   6
## 5008    1742   5
## 5009    2071   5
## 5010    2604   5
## 5011    2735   5
## 5012   30906   5
## 5013   31560   5
## 5014   38329   5
## 5015    3918   5
## 5016   42744   5
## 5017   43835   5
## 5018   44182   5
## 5019   44669   5
## 5020    4790   5
## 5021   53712   5
## 5022    5732   5
## 5023    5777   5
## 5024    5990   5
## 5025    5998   5
## 5026    6070   5
## 5027    6533   5
## 5028    6628   5
## 5029    6719   5
## 5030    6837   5
## 5031    7295   5
## 5032    7636   5
## 5033   30464   4
## 5034    3061   4
## 5035    3621   4
## 5036   43096   4
## 5037    4398   4
## 5038    4706   4
## 5039    4746   4
## 5040   51226   4
## 5041   51689   4
## 5042    5412   4
## 5043    5518   4
## 5044    5632   4
## 5045   59886   4
## 5046   60016   4
## 5047    6033   4
## 5048    6373   4
## 5049     640   4
## 5050    7329   4
## 5051    7427   4
## 5052   77504   4
## 5053    8136   4
## 5054    9137   4
## 5055    2296   3
## 5056    2362   3
## 5057    2848   3
## 5058   30117   3
## 5059   31547   3
## 5060    3395   3
## 5061   34555   3
## 5062    3604   3
## 5063    3708   3
## 5064     387   3
## 5065    4069   3
## 5066   43119   3
## 5067    4399   3
## 5068    4917   3
## 5069    4995   3
## 5070    5516   3
## 5071   55451   3
## 5072    5601   3
## 5073   56095   3
## 5074   57869   3
## 5075    5996   3
## 5076    6312   3
## 5077   63385   3
## 5078    7035   3
## 5079    7311   3
## 5080    7380   3
## 5081   76764   3
## 5082    8545   3
## 5083   10058   2
## 5084    1383   2
## 5085    1806   2
## 5086    1998   2
## 5087    2262   2
## 5088   29996   2
## 5089    3070   2
## 5090   31570   2
## 5091    3302   2
## 5092    3399   2
## 5093   34797   2
## 5094   35985   2
## 5095    4027   2
## 5096    4155   2
## 5097   43872   2
## 5098    4739   2
## 5099    5040   2
## 5100    5411   2
## 5101    5434   2
## 5102   57610   2
## 5103   58720   2
## 5104    5943   2
## 5105    6073   2
## 5106    6137   2
## 5107   66201   2
## 5108    6820   2
## 5109    6919   2
## 5110    7046   2
## 5111    7162   2
## 5112    7654   2
## 5113    7666   2
## 5114    7845   2
## 5115    8037   2
## 5116    8181   2
## 5117     912   2
## 5118    9514   2
## 5119    1092   1
## 5120   17695   1
## 5121    1921   1
## 5122    2519   1
## 5123   28120   1
## 5124   28188   1
## 5125   28490   1
## 5126   30288   1
## 5127   30402   1
## 5128    3101   1
## 5129   31186   1
## 5130   32001   1
## 5131    3204   1
## 5132   32286   1
## 5133   33639   1
## 5134   34851   1
## 5135   35804   1
## 5136   35982   1
## 5137    3736   1
## 5138    3764   1
## 5139   38197   1
## 5140   38274   1
## 5141    3984   1
## 5142    4095   1
## 5143    4144   1
## 5144    4275   1
## 5145   43912   1
## 5146   44035   1
## 5147    5132   1
## 5148   51713   1
## 5149    5301   1
## 5150    5397   1
## 5151    5497   1
## 5152    5509   1
## 5153   55232   1
## 5154   55344   1
## 5155   55559   1
## 5156    5566   1
## 5157    5742   1
## 5158    6003   1
## 5159   60119   1
## 5160    6034   1
## 5161    6040   1
## 5162    6278   1
## 5163    6433   1
## 5164    6508   1
## 5165    6618   1
## 5166    6670   1
## 5167    6772   1
## 5168    6980   1
## 5169    7018   1
## 5170    7475   1
## 5171    7840   1
## 5172    7852   1
## 5173    8039   1
## 5174     805   1
## 5175    8195   1
## 5176    8588   1
## 5177    8607   1
## 5178    8993   1
## 5179    9278   1
## 5180    9454   1
## 5181    9537   1
## 5182    9661   1
## 5183    9824   1
## 5184    9914   1
## 5185 Cliente   1
count(base_de_datos, Nombre, sort = TRUE)
##        Nombre     n
## 1       ABARR 71186
## 2       MARIA 39816
## 3       JOSE  17389
## 4       JUAN   7528
## 5       MARTH  5759
## 6       MISCE  5700
## 7       LUIS   5269
## 8       SUPER  4565
## 9       CARLO  3991
## 10      MIGUE  3856
## 11      FRANC  3773
## 12      VINOS  3772
## 13      ROSA   3719
## 14      ANTON  3595
## 15      PEDRO  3468
## 16      VICTO  3259
## 17      CREME  3135
## 18      MARTI  3066
## 19      PATRI  3063
## 20      JAIME  3057
## 21      Maria  3047
## 22      MINI   2829
## 23      JORGE  2672
## 24      JESUS  2636
## 25      BEATR  2586
## 26      MANUE  2405
## 27      TERES  2276
## 28      ROBER  2192
## 29      LAURA  2157
## 30      FARMA  2146
## 31      MINIS  2131
## 32      ALEJA  2084
## 33      MARGA  2062
## 34      SILVI  2041
## 35      CLAUD  2039
## 36      GUADA  1992
## 37      ENRIQ  1914
## 38      ALICI  1895
## 39      RAUL   1851
## 40      JUANA  1834
## 41      BERTH  1806
## 42      HECTO  1706
## 43      NORMA  1684
## 44      RAMON  1677
## 45      ROCIO  1659
## 46      IRMA   1617
## 47      SERGI  1613
## 48      SALVA  1591
## 49      MARIS  1574
## 50      JAVIE  1538
## 51      GERAR  1537
## 52      ALMA   1505
## 53      ANGEL  1499
## 54      RAFAE  1447
## 55      BLANC  1432
## 56      J JES  1414
## 57      HOGAR  1381
## 58      ANA L  1377
## 59      GABRI  1317
## 60      ARACE  1309
## 61      SAUL   1301
## 62      MARIO  1285
## 63      OSCAR  1280
## 64      RICAR  1268
## 65      ADRIA  1267
## 66      FERNA  1266
## 67      ANDRE  1264
## 68      MAYRA  1240
## 69      FELIP  1233
## 70      CELIA  1229
## 71      GLORI  1192
## 72      GUILL  1181
## 73      DULCE  1163
## 74      ANA M  1159
## 75      EDGAR  1132
## 76      ALBER  1114
## 77      RUBEN  1070
## 78      IVAN   1060
## 79      JOSEF  1039
## 80      OLGA   1030
## 81      CESAR  1014
## 82      ISMAE  1012
## 83      ELOIS  1001
## 84      LETIC   998
## 85      MONIC   964
## 86      DANIE   954
## 87      CARNI   946
## 88      VERON   943
## 89      ALFRE   936
## 90      MARCO   911
## 91      Jose    908
## 92      EMMAN   892
## 93      JULIA   891
## 94      DAVID   870
## 95      DIEGO   870
## 96      EMANU   870
## 97      DEPOS   857
## 98      SOCOR   857
## 99      BREND   839
## 100     MA DE   835
## 101     ARTUR   827
## 102      TERE   817
## 103     RODOL   798
## 104     ESTEB   796
## 105     MAGDA   796
## 106      RUIZ   791
## 107     RAMIR   785
## 108     ERNES   784
## 109     SAN J   753
## 110     EVA A   752
## 111     CRIST   749
## 112     EVELI   744
## 113     JOEL    743
## 114     RAQUE   739
## 115     MELIS   736
## 116     EL GR   715
## 117     RODRI   710
## 118     SAMUE   709
## 119     MICEL   705
## 120     MODEL   705
## 121     CARME   701
## 122     ELVIR   695
## 123     GONZA   673
## 124     NOEMI   656
## 125     DELIA   649
## 126     ERIKA   648
## 127     SANTI   644
## 128     IRENE   632
## 129     ESPER   618
## 130     EDUAR   611
## 131     CANDE   601
## 132     ELIAS   596
## 133     ESMER   594
## 134     CENTR   591
## 135     QUIRI   590
## 136     FRUTA   585
## 137     GRACI   582
## 138     TIEND   580
## 139     VALEN   580
## 140     CERVE   577
## 141     SUSAN   577
## 142     LUCIA   574
## 143     SIX T   563
## 144     OFELI   562
## 145     ABEL    559
## 146     VIRGI   559
## 147     Franc   550
## 148     TRINI   544
## 149     Rosa    543
## 150     BRAUL   542
## 151     LEONA   542
## 152     LUPIT   541
## 153     MOISE   541
## 154     HOMOB   539
## 155     OLIVI   539
## 156     OCTAV   534
## 157     CINTH   528
## 158     OMAR    526
## 159     JUVEN   522
## 160     RUTH    521
## 161     SARA    521
## 162     ADAN    517
## 163     HUGO    515
## 164     ROSAU   515
## 165     GUSTA   505
## 166     JULIO   502
## 167     Juan    501
## 168     NORBE   499
## 169     BENJA   494
## 170     IRIS    493
## 171     ELVA    492
## 172     OSVAL   490
## 173     JUNIO   489
## 174     DEMET   488
## 175     SAL Y   482
## 176     FABIO   479
## 177     PETRA   479
## 178     SIMON   479
## 179     CLARA   478
## 180     SANDR   477
## 181     MA DO   470
## 182     PELON   470
## 183     J GIL   467
## 184     ELISA   463
## 185     EL GU   462
## 186      PATO   461
## 187     CARBA   460
## 188     ORTIZ   460
## 189     CELED   457
## 190     ZAPAT   455
## 191     ROSAL   454
## 192     OSIEL   452
## 193     MA TE   450
## 194     VICEN   448
## 195     YOLAN   445
## 196     AMELI   444
## 197     VARGA   443
## 198     LILIA   442
## 199     ALBIN   439
## 200     LOS G   437
## 201     ERIK    436
## 202     FREDI   435
## 203     WILFR   435
## 204     IMELD   432
## 205     LOS I   432
## 206     ELVIA   431
## 207     LOREN   431
## 208     SAN I   431
## 209     LA HI   430
## 210     CORNE   429
## 211     VETIN   429
## 212     EDELM   426
## 213     GASOL   426
## 214     EDER    425
## 215     FELIC   424
## 216     CYNTH   423
## 217     ELENA   423
## 218     GENAR   422
## 219     J CON   422
## 220     OTILI   421
## 221     ANDAN   420
## 222     EVA S   416
## 223     RITA    414
## 224     DON B   413
## 225     FABIA   409
## 226     EVANG   405
## 227      CRUZ   403
## 228     AUGUS   402
## 229     GILBE   401
## 230     MUCIO   401
## 231     VIVIA   400
## 232     AVELI   399
## 233     BLAS    399
## 234     BODEG   398
## 235     LUZ E   397
## 236     TRINO   397
## 237     EL PI   396
## 238     LA LO   394
## 239     ABRAH   392
## 240     ISABE   390
## 241     CEREA   388
## 242     LEOVI   388
## 243     MARCE   387
## 244     ORFIL   385
## 245     QUINC   384
## 246     MARIB   382
## 247     AMPAR   380
## 248     ALVAR   378
## 249     J AUR   378
## 250      RAFA   378
## 251     RAYMU   378
## 252     MIX D   376
## 253     MIRIA   374
## 254     CAROL   373
## 255     LA CH   372
## 256     RIGOB   371
## 257     HUMBE   366
## 258     ZENAI   365
## 259      DIAZ   363
## 260     ADELA   361
## 261     ANA R   361
## 262     EL AN   359
## 263     TORIB   357
## 264     DONAT   351
## 265     LA DU   349
## 266     CABAL   348
## 267     SIX M   347
## 268     MERCE   345
## 269     Claud   337
## 270     EMPOR   334
## 271     EUGEN   333
## 272     LA TI   332
## 273     Marth   332
## 274     ELMER   331
## 275     PABLO   328
## 276     ROSAR   327
## 277     M DE    326
## 278     EL VE   324
## 279      REBE   324
## 280     ELIZA   317
## 281     ESTHE   317
## 282      LUIS   316
## 283     HILDA   314
## 284     IVONN   314
## 285     Teres   314
## 286     CHABE   313
## 287     KAREN   305
## 288     PUERQ   302
## 289     VALDE   302
## 290     ADALB   301
## 291     LUZ M   300
## 292     LA PE   291
## 293     JONAT   290
## 294     EMILI   289
## 295     SIX G   289
## 296     KARLA   285
## 297     DIVIN   283
## 298     ANA B   279
## 299     SIX P   279
## 300     IGNAC   277
## 301     LICON   270
## 302     Luis    269
## 303     MARIC   268
## 304     MERCA   268
## 305     Monic   267
## 306     EXPEN   266
## 307     PRIMI   264
## 308     ORALI   259
## 309     COLUM   257
## 310     Anton   256
## 311     MAXIM   254
## 312     Ma De   248
## 313     NESTO   248
## 314     ADELI   247
## 315     ADOLF   247
## 316     JOAQU   239
## 317     LA ME   238
## 318     SEMIL   237
## 319     INBOX   235
## 320     JANET   235
## 321     ANA G   230
## 322     FEDER   229
## 323     REBEC   226
## 324     SIX L   226
## 325     EL CH   225
## 326     CECIL   222
## 327     ELPID   217
## 328     Julio   216
## 329     NO US   216
## 330     JESSI   213
## 331     HERMI   209
## 332     Carlo   206
## 333     Enriq   204
## 334     Mayra   202
## 335     Sandr   202
## 336     ANA C   201
## 337     TENDE   201
## 338     Ferna   199
## 339     Aleja   196
## 340     PACHE   196
## 341     Hecto   191
## 342     KARIN   190
## 343     FIDEL   189
## 344     ARNUL   188
## 345     ABEND   187
## 346     GABIN   186
## 347     Blanc   183
## 348     Guada   183
## 349     Angel   182
## 350     AGUST   181
## 351     LA SU   181
## 352     VENTA   181
## 353     AMALI   180
## 354     Rafae   178
## 355     Susan   178
## 356     ESTEL   175
## 357     Jorge   175
## 358     FAUST   174
## 359     RENE    174
## 360     INDAL   173
## 361     MICAE   172
## 362     DISTR   171
## 363      ROSA   171
## 364     Salva   171
## 365     CONSU   170
## 366     Glori   170
## 367     TEODU   169
## 368     SIX V   166
## 369     Victo   166
## 370     ELIGI   165
## 371     LA PR   165
## 372     J REF   164
## 373     ALFON   163
## 374     FRUTE   163
## 375     EFRAI   161
## 376     NICOL   160
## 377     ANA A   159
## 378     ARCEL   159
## 379     ARMAN   159
## 380     SAID    159
## 381     TOMAS   159
## 382     CARLA   158
## 383     DE TE   158
## 384     CATAR   156
## 385     DOLOR   156
## 386     Erika   154
## 387     AVAL    151
## 388     EL MA   149
## 389     ELIA    149
## 390     J PAT   148
## 391     SANTO   147
## 392     SONIA   147
## 393     EL RE   146
## 394     EFREN   145
## 395     EL DK   145
## 396     EVERA   145
## 397     FORTI   144
## 398     SIX B   144
## 399     NEMEC   142
## 400     NOHEM   142
## 401     CRUZ    141
## 402     POLLE   141
## 403     HERME   140
## 404     IMPUL   139
## 405     MAURI   137
## 406     BENIL   136
## 407     Laura   136
## 408     OSWAL   136
## 409     BELEN   135
## 410     OBDUL   135
## 411     Pedro   135
## 412     GREGO   134
## 413     ELBA    133
## 414     Hugo    133
## 415     JUDIT   133
## 416     Patri   133
## 417     SOFIA   133
## 418     Esthe   132
## 419     LA ES   132
## 420     Rogel   132
## 421     AZUCE   131
## 422     FLOR    130
## 423     J ROS   130
## 424     ZOILA   130
## 425     MICHA   129
## 426     Oscar   129
## 427     PAZ L   129
## 428     SIX O   128
## 429     Feder   126
## 430     JUSTO   126
## 431     CONST   125
## 432     LUZ D   125
## 433     Beatr   124
## 434     EL PO   123
## 435     TANIA   123
## 436     ISAAC   122
## 437     ISAUR   122
## 438     LICOR   121
## 439     PETRO   121
## 440     Lilia   120
## 441     YESEN   120
## 442     CAMER   119
## 443     LIBRA   119
## 444     Ma Gu   119
## 445     SMART   119
## 446     AUROR   118
## 447     CELIN   118
## 448     MAURO   118
## 449     YENI    118
## 450     Jesus   117
## 451     REFUG   117
## 452     REYNA   117
## 453     XOCHI   117
## 454     TABY    116
## 455     Veron   116
## 456     SANTA   115
## 457     GENER   114
## 458     Adria   113
## 459     FROYL   113
## 460     Pablo   113
## 461     TECAT   113
## 462     VIOLE   113
## 463     EVARI   112
## 464     Alfre   111
## 465     ANA J   111
## 466     HERIB   111
## 467     LA NU   111
## 468     LA CA   110
## 469     Arman   109
## 470     Gabri   109
## 471     Humbe   109
## 472     HILAR   108
## 473     Loren   108
## 474     ABUND   107
## 475     Eduar   106
## 476     EL AB   106
## 477     NORA    106
## 478     Lidia   105
## 479     NAYEL   105
## 480     CASIM   104
## 481     MA AG   104
## 482     BALDO   103
## 483     BELY    103
## 484     DE GE   103
## 485     LUCIO   103
## 486     MAYEL   103
## 487     EL AL   102
## 488     LAS L   102
## 489     DARIO   101
## 490     Juana   101
## 491     Javie   100
## 492     AUDIE    99
## 493     AUREL    99
## 494     David    99
## 495     Irene    99
## 496     DOS H    98
## 497     ISRAE    98
## 498     JOSUE    98
## 499     Olga     98
## 500     LA VA    97
## 501     SULEM    97
## 502     Berth    96
## 503     GUMEC    96
## 504     YAZMI    96
## 505     Eliza    95
## 506     SEBAS    95
## 507     SIX E    95
## 508     USTEC    95
## 509     CIPRI    94
## 510     Luz M    94
## 511     OLEGA    94
## 512     Sergi    94
## 513     CLEME    93
## 514     MI BE    93
## 515     FELIZ    92
## 516     Epifa    91
## 517     LOS P    91
## 518     MAEST    91
## 519      JOSE    90
## 520     Ramon    90
## 521     SIX S    90
## 522     BRIAN    89
## 523     HIPOL    89
## 524     Alma     88
## 525     Aurel    88
## 526     CAMIL    88
## 527     FER T    88
## 528     LA MI    88
## 529     Migue    88
## 530     Rita     88
## 531     EVA F    87
## 532     Crist    86
## 533     Fabio    86
## 534     ROMAN    86
## 535     Y VIN    86
## 536     Ana I    85
## 537     Elvia    85
## 538     JAQUE    85
## 539     Pascu    85
## 540     Raul     85
## 541     ESTET    84
## 542     Felip    84
## 543     KRISH    84
## 544     ARON     83
## 545     BUGAM    83
## 546     CARRE    83
## 547     DONOV    83
## 548     EZEQU    83
## 549     MI RA    83
## 550     MYRIA    83
## 551     LOURD    82
## 552     RAYIT    82
## 553     Rober    82
## 554     Wilfr    82
## 555     EL TE    81
## 556     MATIL    81
## 557     DON P    80
## 558     EDUWI    80
## 559     Ernes    80
## 560     JACIE    80
## 561     KEBEL    80
## 562     KEVIN    80
## 563     LUCY     80
## 564     J Jes    79
## 565     LA BO    79
## 566     ANA I    78
## 567     Azuce    78
## 568     LA UN    78
## 569     Lucia    78
## 570     CHELI    77
## 571     VICKI    77
## 572     DESEC    76
## 573     CRISP    75
## 574     FELIX    75
## 575     GRANJ    75
## 576     J GUA    75
## 577     LA MA    75
## 578     MA GU    75
## 579     AMPEL    74
## 580     Carol    74
## 581     Casil    74
## 582     CYBER    74
## 583     Damar    74
## 584     JACOB    74
## 585      LULU    74
## 586     MAYGU    74
## 587     PICHO    74
## 588     VALER    74
## 589     ELIDI    73
## 590     Karla    73
## 591     Manue    73
## 592     NOE H    73
## 593     ALELI    72
## 594     BAUDE    72
## 595     Eva G    72
## 596      GERA    72
## 597     JERON    72
## 598     LA VI    72
## 599     LAGRO    72
## 600     MARZO    72
## 601     ELSA     71
## 602     ISELA    71
## 603     Leono    71
## 604     LOS 3    71
## 605     Luz E    71
## 606     Faust    70
## 607     NATAL    70
## 608     ADRI     69
## 609     EMA C    69
## 610     LEONO    69
## 611     MUNDO    69
## 612     YADIR    69
## 613     YOBAL    69
## 614     APOLI    68
## 615     BIANC    68
## 616     EPIFA    68
## 617     GRUPO    68
## 618     HOGR     68
## 619     JUANI    68
## 620     Ma Is    68
## 621     OBSEB    68
## 622     TORIV    68
## 623     FANY     67
## 624     GINO     67
## 625     HERLI    67
## 626     LA GL    67
## 627     REINA    67
## 628     Ana G    66
## 629     FREDY    66
## 630     Leopo    66
## 631     ROGEL    66
## 632     UBALD    66
## 633     ILEAN    65
## 634     LIZET    65
## 635     Ma El    65
## 636     NUCLE    65
## 637     ALTAG    64
## 638     AXAYA    64
## 639     Brend    64
## 640     EL CO    64
## 641     EMERI    64
## 642     EMMA     64
## 643     Mary     64
## 644     SIX C    64
## 645     Agust    63
## 646     BENIT    63
## 647     DON F    63
## 648     HELIO    63
## 649     Imeld    63
## 650     LEONI    63
## 651     LUCEC    63
## 652     MARBE    63
## 653     Apolo    62
## 654     BALTA    62
## 655     ERICK    62
## 656     ESTRE    62
## 657     JEOVA    62
## 658     Marga    62
## 659     MI SU    62
## 660     SEVER    62
## 661     BALDE    61
## 662     CATAL    61
## 663     J ISA    61
## 664     Joel     61
## 665     Ofeli    61
## 666     SIX R    61
## 667     Andre    60
## 668     Danie    60
## 669     Juven    60
## 670     Ma Es    60
## 671     PAULA    60
## 672     ANSEL    59
## 673     Avid     59
## 674     Cynth    59
## 675     LA HU    59
## 676     YARET    59
## 677     ABIGA    58
## 678     EDSON    58
## 679     EVA B    58
## 680      GABY    58
## 681     INOCE    58
## 682     Josef    58
## 683     SAN R    58
## 684     BEBID    57
## 685  DO\x84A     57
## 686     EL AC    57
## 687     FLORE    57
## 688     HIBET    57
## 689     JADIE    57
## 690     MA EL    57
## 691     MARA     57
## 692     EMA D    56
## 693     LA CO    56
## 694     Tania    56
## 695     Joann    55
## 696     Osval    55
## 697     PALOM    55
## 698     Rosar    55
## 699     GEORG    54
## 700     LAS M    54
## 701     NOE G    54
## 702     RUFIN    54
## 703     Carme    53
## 704     Cruz     53
## 705     EL VA    53
## 706     Enedi    53
## 707     Nohem    53
## 708     PRISC    53
## 709     TADEO    53
## 710     Yesen    53
## 711     CARIN    52
## 712      JUAN    52
## 713     Miria    52
## 714     REYES    52
## 715     Rocio    52
## 716     Silvi    52
## 717     Ampar    51
## 718     ANA S    51
## 719     CACHO    51
## 720     EL CR    51
## 721     ENEID    51
## 722     FIGUE    51
## 723     DENIS    50
## 724     EL NA    50
## 725     ELIOD    50
## 726     Marco    50
## 727     PURIF    50
## 728      YOLI    50
## 729     BEREN    49
## 730     CIBER    49
## 731     CORON    49
## 732     EL BO    49
## 733     Genar    49
## 734     HORTE    49
## 735     JOVIT    49
## 736     MELAN    49
## 737     Rode     49
## 738     BADIL    48
## 739     EL BU    48
## 740     EL PA    48
## 741     Grego    48
## 742     Guill    48
## 743     HORAC    48
## 744     JISEL    48
## 745     LA TR    48
## 746     LOS C    48
## 747     Ruben    48
## 748     Gerar    47
## 749     LIBNI    47
## 750     LIDIA    47
## 751     MORAY    47
## 752     Orlan    47
## 753     Oswal    47
## 754     SACRA    47
## 755     Arace    46
## 756     CUBET    46
## 757     ELIAZ    46
## 758     IRINE    46
## 759     Rebec    46
## 760     ANACL    45
## 761     DIANA    45
## 762     HELAD    45
## 763     LA PA    45
## 764     MA JE    45
## 765     Ma So    45
## 766     MARIN    45
## 767     Oliva    45
## 768     Rodol    45
## 769     DESAY    44
## 770     DON M    44
## 771     EL AH    44
## 772     EL CA    44
## 773     Ma Pa    44
## 774     Ulloq    44
## 775     Areli    43
## 776     EMIDI    43
## 777     LAGUN    43
## 778     NUBIA    43
## 779     PALET    43
## 780     SILVE    43
## 781     Delia    42
## 782     LEYSI    42
## 783     LINDA    42
## 784     Mario    42
## 785     ODON     42
## 786     Omar     42
## 787     Trini    42
## 788     ANA Y    41
## 789     BETHE    41
## 790     Geova    41
## 791     IRAIS    41
## 792     M HER    41
## 793     PAULI    41
## 794     Secun    41
## 795     TAPIA    41
## 796     TEOFI    41
## 797     CIRIL    40
## 798     Nora     40
## 799     SOLED    40
## 800     VIRID    40
## 801     DORA     39
## 802     PASTE    39
## 803     Raque    39
## 804     ELIDA    38
## 805     Iran     38
## 806     JENNI    38
## 807     LA 56    38
## 808     Letic    38
## 809     NOE V    38
## 810     Samue    38
## 811     SANAT    38
## 812     TIBUR    38
## 813     VELIA    38
## 814     AMEZA    37
## 815     Ana A    37
## 816     Glady    37
## 817     LLUVI    37
## 818     ALSA     36
## 819     Avela    36
## 820     ELISE    36
## 821     LUISA    36
## 822     Marce    36
## 823     MICHE    36
## 824     Ruth     36
## 825     Sara     36
## 826      ADRY    35
## 827     CURSO    35
## 828     ELENO    35
## 829     GERMA    35
## 830     Lauro    35
## 831     MA GR    35
## 832     MACRI    35
## 833     PAMEL    35
## 834     PANAD    35
## 835     Reyna    35
## 836     ULISE    35
## 837     Yolan    35
## 838     ABELI    34
## 839     LA BA    34
## 840     LUDIV    34
## 841     LULU     34
## 842     MAIRA    34
## 843     Norma    34
## 844     VENTU    34
## 845     AIDEE    33
## 846     Marti    33
## 847     ROXAN    33
## 848     CHAGU    32
## 849     Ma Te    32
## 850     Rufin    32
## 851     Ana R    31
## 852     Dalil    31
## 853     EL MO    31
## 854     Elvir    31
## 855     Esper    31
## 856     LECHE    31
## 857     Suzan    31
## 858     Tibur    31
## 859     ABISA    30
## 860     ANITA    30
## 861     DEL C    30
## 862     ETELV    30
## 863     LAURO    30
## 864     MIREY    30
## 865     Senor    30
## 866     Ana L    29
## 867     ANIBA    29
## 868     Jocel    29
## 869     MARY     29
## 870     MURIL    29
## 871     Noe O    29
## 872     Refug    29
## 873     Yanet    29
## 874     DOS B    28
## 875     MARIT    28
## 876     PERLA    28
## 877     PLACI    28
## 878     ROMEL    28
## 879  TO\x84O     28
## 880     Yadir    28
## 881     Gilbe    27
## 882     Panfi    27
## 883     Perfe    27
## 884     VERUL    27
## 885     Ameli    26
## 886     Benig    26
## 887     GLAFI    26
## 888     LEOPO    26
## 889     Nancy    26
## 890     RIGO     26
## 891     CRECE    25
## 892     Eunic    25
## 893     Maric    25
## 894     OTONI    25
## 895     Paula    25
## 896     Abiga    24
## 897     CRESC    24
## 898     CUATR    24
## 899     EREND    24
## 900     FERMA    24
## 901     GLADY    24
## 902     Judit    24
## 903     Keren    24
## 904     Ma Co    24
## 905     MA JU    24
## 906     Ricar    24
## 907     FUENT    23
## 908     LUZ R    23
## 909     Ma Ro    23
## 910     Moise    23
## 911     Renzo    23
## 912     RUBI     23
## 913     TACOS    23
## 914     ARSEN    22
## 915     ASUNC    22
## 916     Eva C    22
## 917     J TRI    22
## 918     Ma Lu    22
## 919     Cecil    21
## 920     Esteb    21
## 921     Irma     21
## 922     Israe    21
## 923     Karen    21
## 924     Ma Ra    21
## 925     NATIV    21
## 926     Nicol    21
## 927     VALVE    21
## 928     BIONI    20
## 929     EL SU    20
## 930     Hermi    20
## 931     Josue    20
## 932     NOEL     20
## 933     Virgi    20
## 934     ELEUT    19
## 935     Emanu    19
## 936     Eva J    19
## 937     GLORE    19
## 938     Hulbe    19
## 939     MA CO    19
## 940     REPAR    19
## 941     Saman    19
## 942     Santi    19
## 943     VANES    19
## 944     Abel     18
## 945     AMBRO    18
## 946     Balvi    18
## 947     ELMA     18
## 948     Emeli    18
## 949     Hilda    18
## 950     Joaqu    18
## 951   TO\x84O    18
## 952     Ciril    17
## 953     Edgar    17
## 954     GUDAL    17
## 955     HERMA    17
## 956     Hidel    17
## 957     JUGOS    17
## 958     Lizet    17
## 959     MA RE    17
## 960     Narci    17
## 961     Salom    17
## 962     Vivia    17
## 963     Abrah    16
## 964     Clara    16
## 965     Const    16
## 966     Jessi    16
## 967     JUSTA    16
## 968     KENIA    16
## 969     Mateo    16
## 970     ZURI     16
## 971     Ana C    15
## 972     ANAST    15
## 973     Elias    15
## 974     Eloy     15
## 975     J. Je    15
## 976     LAS P    15
## 977     MARI     15
## 978     Pauli    15
## 979     REYMU    15
## 980     Vanes    15
## 981     Z ABR    15
## 982     Adolf    14
## 983     Elier    14
## 984     FILIB    14
## 985     Gonza    14
## 986     Ma Eu    14
## 987     Maris    14
## 988     J Gua    13
## 989     M DEL    13
## 990     MATIA    13
## 991     ALAN     12
## 992     EL RA    12
## 993     Flavi    12
## 994     GENOV    12
## 995     GRISE    12
## 996     ISIDO    12
## 997     Paola    12
## 998     POLLO    12
## 999     Alba     11
## 1000    ANCEL    11
## 1001    CALEB    11
## 1002    Diego    11
## 1003    GEMMA    11
## 1004    Horte    11
## 1005    Petra    11
## 1006    PORTO    11
## 1007    ZULEM    11
## 1008    CHRIS    10
## 1009    Cipri    10
## 1010    Mikja    10
## 1011    SIX A    10
## 1012    Yrene    10
## 1013    Belen     9
## 1014    Catal     9
## 1015    Clien     9
## 1016    Gerso     9
## 1017    IVETT     9
## 1018    J SAC     9
## 1019    ANA V     8
## 1020    Arian     8
## 1021    ASOCI     8
## 1022    Cinth     8
## 1023    Doria     8
## 1024    ESDRA     8
## 1025    Eva R     8
## 1026    Genov     8
## 1027    Graci     8
## 1028    Ivon      8
## 1029    LUZ H     8
## 1030    Ma Re     8
## 1031    Ma Ve     8
## 1032    Prosp     8
## 1033    Rigob     8
## 1034    ANAIS     7
## 1035    Ma As     7
## 1036    Merce     7
## 1037    NOA E     7
## 1038    Ramir     7
## 1039    Elia      6
## 1040    Jonat     6
## 1041    Julia     6
## 1042    NATHA     6
## 1043    Obdul     6
## 1044    Robus     6
## 1045    TORTI     6
## 1046    Adan      5
## 1047    Chris     5
## 1048    Claro     5
## 1049    Emma      5
## 1050    Froyl     5
## 1051    Karin     5
## 1052    LESLI     5
## 1053    Dulce     4
## 1054    Erik      4
## 1055    Libni     4
## 1056    Soled     4
## 1057    Sonia     4
## 1058    TRANQ     4
## 1059    Bibia     3
## 1060    Elva      3
## 1061    Evang     3
## 1062    Fiado     3
## 1063    Lourd     3
## 1064    SEATT     3
## 1065    Bryan     2
## 1066    Decot     2
## 1067    Domin     2
## 1068    Edilb     2
## 1069    Giova     2
## 1070    Hayde     2
## 1071    Jaime     2
## 1072    Lucy      2
## 1073    Modes     2
## 1074    Myrna     2
## 1075    Rosay     2
## 1076    Sever     2
## 1077    * * *     1
## 1078    AGUAL     1
## 1079    Alici     1
## 1080    Cesar     1
## 1081    Dolor     1
## 1082    Eric      1
## 1083    Erica     1
## 1084    Esmer     1
## 1085    Fatim     1
## 1086    Felix     1
## 1087    Livie     1
## 1088    Melid     1
## 1089   Nombre     1
## 1090    NUEVO     1
## 1091    Palmi     1
## 1092    Produ     1
## 1093    Rodri     1
## 1094    SIN N     1
## 1095    VETER     1
## 1096    VIKIN     1
## 1097    Zalat     1
count(base_de_datos, Tamano.Cte.Industria, sort = TRUE)
##      Tamano.Cte.Industria      n
## 1            Extra Grande 230190
## 2                   Micro 117110
## 3              Peque\x96o  77875
## 4                  Grande  41333
## 5 Tama\x96o Cte Industria      1
count(base_de_datos, Segmento.Det, sort = TRUE)
##             Segmento.Det      n
## 1        Sabores Regular 156242
## 2          Colas Regular  95720
## 3            Colas Light  43807
## 4    Jugos y N\x8ectares  33362
## 5       Bebidas de Fruta  30641
## 6        Agua Purificada  20766
## 7           Agua Mineral  12590
## 8  Isot\x97nicos Regular  11905
## 9          T\x8e Regular  10062
## 10       Agua Saborizada  10056
## 11   Bebidas Energeticas   9847
## 12         Sabores Light   7330
## 13  Leche UHT Saborizada   6395
## 14     Leche UHT Regular   5618
## 15       Bebidas de Soya   5277
## 16  Leche UHT Especializ   4655
## 17   Isot\x97nicos Light   1009
## 18  Cafe Listo Para Bebe    979
## 19           T\x8e Light    241
## 20                Polvos      6
## 21          Segmento Det      1
count(base_de_datos, Marca, sort = TRUE)
##                      Marca     n
## 1                Coca-Cola 95720
## 2                   Sprite 37925
## 3                    Fanta 35728
## 4                   Fresca 26435
## 5             Manzana Lift 25598
## 6          Coca-Cola Light 21926
## 7                Del Valle 21325
## 8     Ciel Agua Purificada 20766
## 9            Sidral Mundet 17150
## 10              Valle Frut 15808
## 11 Coca-Cola Sin Az\x9ccar 15523
## 12        Del Valle y Nada 12475
## 13                Powerade 11905
## 14                Fuze Tea 10062
## 15         Topo Chico A.M.  8191
## 16             Ciel Exprim  7183
## 17       Del Valle Reserva  6803
## 18    Santa Clara Saboriza  6395
## 19          Delaware Punch  6059
## 20                  Frutsi  5566
## 21    Santa Clara Deslacto  4655
## 22          Coca-Cola Zero  4556
## 23       Ciel Mineralizada  4399
## 24      Santa Clara Entera  4055
## 25          Monster Energy  3808
## 26                    Burn  3591
## 27             AdeS Frutal  3430
## 28                  Senzao  3125
## 29             Sprite Zero  3010
## 30                   Pulpy  2885
## 31              Glac\x8eau  2448
## 32                    Joya  1962
## 33    Del Valle NutriForte  1943
## 34          AdeS L\x87cteo  1847
## 35          Coca-Cola Life  1775
## 36               Ciel Mini  1742
## 37       Santa Clara Light  1563
## 38    Del Valle Nutridefen  1377
## 39        Del Valle Blends  1165
## 40         Ciel Saborizada  1131
## 41           Powerade Zero  1009
## 42            Barista Bros   973
## 43    Del Valle NutriVeget   749
## 44                  Bebere   320
## 45          Fuze Tea Light   241
## 46                  Mixtos    52
## 47              Fanta Zero    40
## 48       Manzana Lift Zero    29
## 49     Coca-Cola Light Sin    27
## 50             Fresca Zero    20
## 51   Topo Chico Sangr\x92a    14
## 52            Caf\x8e Blak    12
## 53     Sidral Mundet Light     8
## 54          Del Valle Bits     3
## 55                   Marca     1
## 56 Topo Chico Sangr\x92a L     1
count(base_de_datos, Presentacion, sort = TRUE)
##        Presentacion     n
## 1         600 ml NR 74008
## 2      1 Ltro. N.R. 36930
## 3         2 Lts. NR 36415
## 4        500 ml Ret 35165
## 5       1.5 Lts. NR 30637
## 6       Lata 235 ml 24551
## 7         400 ml NR 22877
## 8    250 ml. NR PET 21735
## 9  500 ml NR Vidrio 18758
## 10      2.5 Lts. NR 13235
## 11             Lata 11810
## 12     200 ml Tetra 11190
## 13    500 ml NR PET 11022
## 14    1 Ltro. Tetra 10580
## 15    235 ml NR Vid 10476
## 16    12 Oz. NR Pet  9906
## 17     1.5 Lts. Ret  8398
## 18    413 ml NR VId  8292
## 19      Lata 16 Oz.  7792
## 20       12 Oz. Ret  7373
## 21 2.5 Lts. Ret Pet  7161
## 22     250 ml Tetra  6121
## 23     1.250 Lts NR  4741
## 24   300 ML. NR PET  4356
## 25         8 Oz. NR  3876
## 26     1.750 Lts NR  3687
## 27    237 ml NR Pet  3611
## 28   250 ML. NR VID  3184
## 29  946 ml NR Tetra  3183
## 30       2 Lts. Ret  2501
## 31        5 Lts. NR  2253
## 32      1 Ltro Ret.  2111
## 33      Lata 450 ml  1505
## 34      Lata 453 ml  1269
## 35  125 ml NR Tetra  1093
## 36    355 Ml NR Pet   670
## 37      Lata 335 ml   586
## 38      6.5 Oz. Ret   573
## 39      Lata 340 ml   563
## 40      Lata 222 ml   499
## 41        473 ml NR   320
## 42  100 ml NR Tetra   285
## 43    237 ml NR Vid   238
## 44       Lata 8 OZ.   230
## 45 12 Oz. NR Vidrio   195
## 46        710 ml NR   172
## 47      LATA 680 ML   151
## 48        3 Lts. NR   145
## 49  750 ml NR Tetra    32
## 50    350 ML NR PET    16
## 51      Lata 237 ml    13
## 52       Bag In Box     6
## 53   Sobres 907 grs     6
## 54    251ml NR Alum     3
## 55        200 ml NR     2
## 56      Lata 310 ml     1
## 57     Presentacion     1
count(base_de_datos, Tamano, sort = TRUE)
##       Tamano      n
## 1 Individual 328513
## 2   Familiar 137995
## 3  Tama\x96o      1
count(base_de_datos, Retornable_NR, sort = TRUE)
##   Retornable_NR      n
## 1 No Retornable 403226
## 2    Retornable  63282
## 3 Retornable_NR      1
tibble(base_de_datos)
## # A tibble: 466,509 × 25
##       ID  Year Territorio  Sub.Territorio CEDI   Cliente Nombre Tamano.Cte.Indu…
##    <int> <int> <chr>       <chr>          <chr>  <chr>   <chr>  <chr>           
##  1     1  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  2     2  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  3     3  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  4     4  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  5     5  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  6     6  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  7     7  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  8     8  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
##  9     9  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
## 10    10  2016 Guadalajara Belenes        Suc. … 77737   ABARR  Extra Grande    
## # … with 466,499 more rows, and 17 more variables: Segmento.Det <chr>,
## #   Marca <chr>, Presentacion <chr>, Tamano <chr>, Retornable_NR <chr>,
## #   Enero <chr>, Febrero <chr>, Marzo <chr>, Abril <chr>, Mayo <chr>,
## #   Junio <chr>, Julio <chr>, Agosto <chr>, Septiembre <chr>, Octubre <chr>,
## #   Noviembre <chr>, Diciembre <chr>
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Year                : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamano.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamano              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
head(base_de_datos)
##   ID Year  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1  1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2  2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3  3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4  4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5  5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6  6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
##   Tamano.Cte.Industria    Segmento.Det                Marca   Presentacion
## 1         Extra Grande    Agua Mineral      Topo Chico A.M.      600 ml NR
## 2         Extra Grande Agua Purificada Ciel Agua Purificada   1 Ltro. N.R.
## 3         Extra Grande Agua Purificada Ciel Agua Purificada    1.5 Lts. NR
## 4         Extra Grande Agua Saborizada          Ciel Exprim      600 ml NR
## 5         Extra Grande Agua Saborizada            Ciel Mini 300 ML. NR PET
## 6         Extra Grande Agua Saborizada      Ciel Saborizada   1 Ltro. N.R.
##       Tamano Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 1 Individual No Retornable                                                  
## 2 Individual No Retornable             2     8     4    4     2     2      2
## 3 Individual No Retornable                   3     6    3     3     3      3
## 4 Individual No Retornable                                                  
## 5 Individual No Retornable                                                  
## 6 Individual No Retornable                   1                              
##   Septiembre Octubre Noviembre Diciembre
## 1                                      1
## 2          2       2         4         2
## 3          3       3         3         3
## 4                                      1
## 5                            0          
## 6
tail(base_de_datos)
##            ID Year  Territorio Sub.Territorio              CEDI Cliente Nombre
## 466504 466504 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
## 466505 466505 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
## 466506 466506 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
## 466507 466507 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
## 466508 466508 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
## 466509 466509 2019 Guadalajara   Huentit\x87n Suc. Huentit\x87n    4531  HECTO
##        Tamano.Cte.Industria    Segmento.Det    Marca   Presentacion     Tamano
## 466504           Peque\x96o Sabores Regular   Sprite 250 ml. NR PET Individual
## 466505           Peque\x96o Sabores Regular   Sprite      400 ml NR Individual
## 466506           Peque\x96o Sabores Regular   Sprite     500 ml Ret Individual
## 466507           Peque\x96o Sabores Regular   Sprite      600 ml NR Individual
## 466508           Peque\x96o Sabores Regular   Sprite    Lata 235 ml Individual
## 466509           Peque\x96o   T\x8e Regular Fuze Tea      600 ml NR Individual
##        Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 466504 No Retornable             1           1    1     1             
## 466505 No Retornable             0     1     2          2            1
## 466506    Retornable             6          10    4     8    11      8
## 466507 No Retornable     1       3     4     6    2     4     9      1
## 466508 No Retornable     0       0           0                1       
## 466509 No Retornable             1     2     1    4     1    16       
##        Septiembre Octubre Noviembre Diciembre
## 466504                                       
## 466505                                       
## 466506                                       
## 466507                                       
## 466508                                       
## 466509

Observaciones.

1. De Enero a Diciembre las cantidades de venta vienen como caracter hay que cambiarlo a entero.

Convertir tipos de variables.

#install.packages("janitor")
library(janitor)
## 
## Attaching package: 'janitor'
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
#install.packages("tidyverse")
library(tidyverse)
## ── Attaching packages
## ───────────────────────────────────────
## tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6     ✔ purrr   0.3.4
## ✔ tibble  3.1.6     ✔ stringr 1.4.0
## ✔ tidyr   1.2.0     ✔ forcats 0.5.2
## ✔ readr   2.1.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
base_de_datos$Cliente <- as.integer(base_de_datos$Cliente)
## Warning: NAs introduced by coercion
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Year                : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  77737 77737 77737 77737 77737 77737 77737 77737 77737 77737 ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamano.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamano              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
summary(base_de_datos)
##        ID              Year       Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamano.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamano         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
##                    
## 
base_de_datos$Enero <- as.integer(base_de_datos$Enero)
## Warning: NAs introduced by coercion
base_de_datos$Febrero <- as.integer(base_de_datos$Febrero)
## Warning: NAs introduced by coercion
base_de_datos$Marzo <- as.integer(base_de_datos$Marzo)
## Warning: NAs introduced by coercion
base_de_datos$Abril <- as.integer(base_de_datos$Abril)
## Warning: NAs introduced by coercion
base_de_datos$Mayo <- as.integer(base_de_datos$Mayo)
## Warning: NAs introduced by coercion
base_de_datos$Junio <- as.integer(base_de_datos$Junio)
## Warning: NAs introduced by coercion
base_de_datos$Julio <- as.integer(base_de_datos$Julio)
## Warning: NAs introduced by coercion
base_de_datos$Agosto <- as.integer(base_de_datos$Agosto)
## Warning: NAs introduced by coercion
base_de_datos$Septiembre <- as.integer(base_de_datos$Septiembre)
## Warning: NAs introduced by coercion
base_de_datos$Octubre <- as.integer(base_de_datos$Octubre)
## Warning: NAs introduced by coercion
base_de_datos$Noviembre <- as.integer(base_de_datos$Noviembre)
## Warning: NAs introduced by coercion
base_de_datos$Diciembre <- as.integer(base_de_datos$Diciembre)
## Warning: NAs introduced by coercion
summary(base_de_datos)
##        ID              Year       Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamano.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamano         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955

¿Cuántos NA tengo en la base de datos?

sum(is.na(base_de_datos))
## [1] 3149804

Hay 3149804 NA en la base de datos.

¿Cuántos NA tengo por variable?

sapply(base_de_datos, function(x) sum(is.na(x)))
##                   ID                 Year           Territorio 
##                    0                    0                    0 
##       Sub.Territorio                 CEDI              Cliente 
##                    0                    0                    1 
##               Nombre Tamano.Cte.Industria         Segmento.Det 
##                    0                    0                    0 
##                Marca         Presentacion               Tamano 
##                    0                    0                    0 
##        Retornable_NR                Enero              Febrero 
##                    0               233552               231286 
##                Marzo                Abril                 Mayo 
##               227507               224186               217073 
##                Junio                Julio               Agosto 
##               215908               223538               220367 
##           Septiembre              Octubre            Noviembre 
##               337402               338483               338546 
##            Diciembre 
##               341955

Hay la siguiente cantidad de NA por variable: Enero 233552, Febrero 231286, Marzo 227507, Abril 224186, Mayo 217073, Junio 215908, Julio 223538, Agosto 220367, Septiembre 337402, Octubre 338483, Noviembre 338546 y Diciembre 341955.

Detectar valores atípicos.

boxplot(base_de_datos$Enero, horizontal = TRUE)

boxplot(base_de_datos$Diciembre, horizontal = TRUE)

Medidas de Tendencia Central.

Las medidas de tendencia central son: Media (Promedio), Mediana, y Moda.

summary(base_de_datos)
##        ID              Year       Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamano.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamano         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955
mode <- function(x) {
  ux <- unique(x)
  ux[which.max(tabulate(match(x, ux)))]
}
# Nota: Si ningún dato se repite, la función coloca el primer valor en lugar de marcar error.

mode(base_de_datos$Cliente)
## [1] 286
mode(base_de_datos$Enero)
## [1] NA

ggplot para los outliers.

library(ggplot2)
ggplot(base_de_datos) +
  geom_point(aes(x=Sub.Territorio, y=Enero))
## Warning: Removed 233552 rows containing missing values (geom_point).

Columnas de las ventas de Enero a Junio por Cedi.

?select
select <- select(base_de_datos, CEDI, Enero:Junio)
select
##                    CEDI Enero Febrero Marzo Abril Mayo Junio
## 1          Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2          Suc. Belenes    NA       2     8     4    4     2
## 3          Suc. Belenes    NA      NA     3     6    3     3
## 4          Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5          Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6          Suc. Belenes    NA      NA     1    NA   NA    NA
## 7          Suc. Belenes     1      NA    NA    NA    0    NA
## 8          Suc. Belenes    NA       1    NA     1   NA     1
## 9          Suc. Belenes     3       3     4     4    4     4
## 10         Suc. Belenes    NA      NA    NA    NA   NA     0
## 11         Suc. Belenes    NA       1     1     1    1     1
## 12         Suc. Belenes     0      NA    NA    NA   NA    NA
## 13         Suc. Belenes    NA       2     1     2    1     1
## 14         Suc. Belenes     3       3     3     3    3    NA
## 15         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 16         Suc. Belenes     4      NA    NA     2   NA    NA
## 17         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 18         Suc. Belenes     6      NA    NA     4   NA     4
## 19         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 20         Suc. Belenes    13      13     8    21   29     8
## 21         Suc. Belenes    NA      NA    NA    NA   NA    10
## 22         Suc. Belenes    41      38    44    76   57    67
## 23         Suc. Belenes    15      11     9    18   17    14
## 24         Suc. Belenes     5       2     2     3    3     2
## 25         Suc. Belenes    NA      NA    NA     6   NA    NA
## 26         Suc. Belenes    14       6     8    14    3     8
## 27         Suc. Belenes    14      21    28    32   14    14
## 28         Suc. Belenes    99      81    81   109   81    95
## 29         Suc. Belenes    25       6    11    27   27    23
## 30         Suc. Belenes    95      74    80   129  106   108
## 31         Suc. Belenes     3       2     1     3    4     2
## 32         Suc. Belenes     2       3     2     3    5     2
## 33         Suc. Belenes     6      NA     4     2    4     2
## 34         Suc. Belenes     3       1    NA     1    1     1
## 35         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 36         Suc. Belenes    NA      NA     1     1    1     1
## 37         Suc. Belenes    NA      NA    NA     1   NA    NA
## 38         Suc. Belenes     1      NA    NA    NA   NA    NA
## 39         Suc. Belenes     2       0     0     0    0     0
## 40         Suc. Belenes     1       1     1     0    1     1
## 41         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 42         Suc. Belenes     0      NA    NA     0   NA     1
## 43         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 44         Suc. Belenes    NA      NA     0     0    0     0
## 45         Suc. Belenes     1       1    NA     1    1     1
## 46         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 47         Suc. Belenes    NA      NA    NA    NA   NA     1
## 48         Suc. Belenes    NA      NA    NA     3   NA     3
## 49         Suc. Belenes     0      NA    NA    NA    0    NA
## 50         Suc. Belenes    NA      NA     0    NA    1     1
## 51         Suc. Belenes     1      NA     1     2    2     2
## 52         Suc. Belenes     2      NA     1     2    1     3
## 53         Suc. Belenes     0      NA    NA     0   NA    NA
## 54         Suc. Belenes    NA      NA     0     0   NA    NA
## 55         Suc. Belenes    NA      NA    NA    NA   NA     1
## 56         Suc. Belenes     0      NA    NA    NA    0    NA
## 57         Suc. Belenes    NA      NA    NA    NA    0     1
## 58         Suc. Belenes     1      NA     1     2    2     2
## 59         Suc. Belenes    NA       1    NA    NA    2    NA
## 60         Suc. Belenes     0      NA    NA     0   NA    NA
## 61         Suc. Belenes    NA      NA     0     0   NA    NA
## 62         Suc. Belenes     0      NA    NA    NA    0    NA
## 63         Suc. Belenes    NA      NA    NA    NA    0     1
## 64         Suc. Belenes     1      NA     1     2    2     2
## 65         Suc. Belenes    NA       1    NA     1    1    NA
## 66         Suc. Belenes     0      NA    NA     0   NA    NA
## 67         Suc. Belenes    NA      NA    NA    NA   NA     1
## 68         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 69         Suc. Belenes     2      NA    NA    NA   NA    NA
## 70         Suc. Belenes     1      NA    NA    NA   NA     3
## 71         Suc. Belenes    NA      NA     0     0   NA    NA
## 72         Suc. Belenes    NA      NA    NA    NA   NA     1
## 73         Suc. Belenes    NA      NA     3    NA    3     3
## 74         Suc. Belenes     0      NA    NA     1    0    NA
## 75         Suc. Belenes    NA      NA    NA     0   NA     1
## 76         Suc. Belenes     1      NA     1     2    4     2
## 77         Suc. Belenes     1       2     3     2    4    NA
## 78         Suc. Belenes     0      NA    NA     0   NA    NA
## 79         Suc. Belenes    NA      NA     0     0   NA    NA
## 80         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 81         Suc. Belenes     1       1     1     1    1     1
## 82         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 83         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 84         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 85         Suc. Belenes     2       8     4     8    4     4
## 86         Suc. Belenes     3      NA     3     6    6     6
## 87         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 88         Suc. Belenes     5       3     3    NA    3     3
## 89         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 90         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 91         Suc. Belenes    NA      NA     1    NA   NA    NA
## 92         Suc. Belenes     2       3     3     3    4     5
## 93         Suc. Belenes    NA      NA    NA    NA   NA     0
## 94         Suc. Belenes     1      NA    NA     1    1     3
## 95         Suc. Belenes     2      NA    NA     1    2     1
## 96         Suc. Belenes     3       3     6     3    3     6
## 97         Suc. Belenes    NA      NA    NA    NA   NA    NA
## 98         Suc. Belenes    NA      NA    NA    NA   NA     1
## 99         Suc. Belenes    NA      NA    NA    NA   NA     1
## 100        Suc. Belenes     2       4    NA     2    2    NA
## 101        Suc. Belenes    NA       1    NA     1    1    NA
## 102        Suc. Belenes     2       2     2     2   NA     2
## 103        Suc. Belenes    NA      NA    NA     3   NA     3
## 104        Suc. Belenes    NA      NA     3    NA   NA    NA
## 105        Suc. Belenes    NA      NA    NA    NA   NA     2
## 106        Suc. Belenes     2       2     2     2    4     2
## 107        Suc. Belenes     1      NA    NA    NA   NA    NA
## 108        Suc. Belenes    NA       1    NA     1    1    NA
## 109        Suc. Belenes    NA      NA    NA     2   NA    NA
## 110        Suc. Belenes     1      NA    NA    NA   NA     1
## 111        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 112        Suc. Belenes     3      NA     3     8   NA    NA
## 113        Suc. Belenes    NA      NA    NA    NA   NA     3
## 114        Suc. Belenes     6       3     6     6    3    10
## 115        Suc. Belenes     3       3     5     3    8     5
## 116        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 117        Suc. Belenes     3       3     3     6    3    NA
## 118        Suc. Belenes     7      NA     4    NA   NA    NA
## 119        Suc. Belenes    46      39    35    32   53    39
## 120        Suc. Belenes     2       4     4     6    4     4
## 121        Suc. Belenes     8      13    11     6   13    15
## 122        Suc. Belenes    49      46    46    38   46    44
## 123        Suc. Belenes     5       3     3     5    3     3
## 124        Suc. Belenes     2       2     2     2    2     2
## 125        Suc. Belenes     3       3     4     2    2     1
## 126        Suc. Belenes     1       1    NA     1    3     1
## 127        Suc. Belenes    NA       1    NA     1   NA    NA
## 128        Suc. Belenes     1       1    NA     2    4     3
## 129        Suc. Belenes     0       0     1     0    0     0
## 130        Suc. Belenes     3      NA     1     1    1     1
## 131        Suc. Belenes    NA       2    NA    NA   NA    NA
## 132        Suc. Belenes     0      NA    NA    NA   NA    NA
## 133        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 134        Suc. Belenes     1       0    NA     0   NA     0
## 135        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 136        Suc. Belenes    NA       1    NA     0    0     0
## 137        Suc. Belenes    NA      NA    NA    NA    1    NA
## 138        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 139        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 140        Suc. Belenes    NA      NA    NA    NA   NA     2
## 141        Suc. Belenes     1      NA     1     1   NA     3
## 142        Suc. Belenes     0      NA    NA    NA    1     0
## 143        Suc. Belenes     1      NA    NA     1    1    NA
## 144        Suc. Belenes    NA      NA    NA    NA    1    NA
## 145        Suc. Belenes    NA       0    NA    NA   NA    NA
## 146        Suc. Belenes    NA      NA    NA    NA   NA     2
## 147        Suc. Belenes     1      NA     1     1   NA    NA
## 148        Suc. Belenes    NA      NA    NA     0   NA     0
## 149        Suc. Belenes     1      NA    NA     1    1     2
## 150        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 151        Suc. Belenes    NA       0    NA    NA   NA    NA
## 152        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 153        Suc. Belenes     1      NA     1     1   NA    NA
## 154        Suc. Belenes    NA      NA    NA    NA   NA     1
## 155        Suc. Belenes     1      NA    NA     1    1    NA
## 156        Suc. Belenes     1      NA    NA    NA   NA    NA
## 157        Suc. Belenes    NA      NA    NA    NA    1    NA
## 158        Suc. Belenes    NA      NA    NA    NA   NA     2
## 159        Suc. Belenes    NA      NA     3    NA   NA    NA
## 160        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 161        Suc. Belenes    NA       2    NA    NA   NA    NA
## 162        Suc. Belenes    NA      NA     3    NA   NA    NA
## 163        Suc. Belenes    NA       0    NA    NA   NA    NA
## 164        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 165        Suc. Belenes    NA      NA    NA    NA   NA     2
## 166        Suc. Belenes     1      NA     1     1    3    NA
## 167        Suc. Belenes    NA      NA    NA    NA   NA     0
## 168        Suc. Belenes     1      NA    NA     1    1    NA
## 169        Suc. Belenes    NA      NA    NA    NA    1    NA
## 170        Suc. Belenes    NA       0    NA    NA   NA    NA
## 171        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 172        Suc. Belenes     1      NA     1    NA    3     1
## 173        Suc. Belenes    NA      NA    NA    NA    1    NA
## 174        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 175        Suc. Belenes     2      27     6    15   17    13
## 176        Suc. Belenes     6      41    10    16   38    32
## 177        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 178        Suc. Belenes    NA      NA    NA    NA    1    NA
## 179        Suc. Belenes    NA       5     8     5   15    13
## 180        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 181        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 182        Suc. Belenes    NA      NA    NA     6   NA     3
## 183        Suc. Belenes    NA      NA     1    NA   NA    NA
## 184        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 185        Suc. Belenes     4       1     1     3    5     2
## 186        Suc. Belenes    NA      NA    NA    NA   NA     0
## 187        Suc. Belenes     1       1    NA     3    4     2
## 188        Suc. Belenes     2       2    NA     1    2     1
## 189        Suc. Belenes     6       6     6    17    6    17
## 190        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 191        Suc. Belenes    NA      NA    NA     1   NA     1
## 192        Suc. Belenes    NA      NA    NA    NA   NA     1
## 193        Suc. Belenes    NA       6    NA    NA   NA    NA
## 194        Suc. Belenes    NA       2    NA    NA   NA    NA
## 195        Suc. Belenes     2       2    NA    NA   NA     2
## 196        Suc. Belenes    NA       1    NA    NA   NA    NA
## 197        Suc. Belenes     6       6     8    11    8     8
## 198        Suc. Belenes     2       3    NA    NA   NA     2
## 199        Suc. Belenes     3      11     3     6    6     6
## 200        Suc. Belenes     8       8     6    11   11     6
## 201        Suc. Belenes     4       7     7     7   11    14
## 202        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 203        Suc. Belenes    11      11    11    13   11     6
## 204        Suc. Belenes     2       3    NA     1    1     1
## 205        Suc. Belenes    NA      NA    NA     2    3    NA
## 206        Suc. Belenes    NA       1    NA     1   NA    NA
## 207        Suc. Belenes    NA       2     2    NA    2    NA
## 208        Suc. Belenes    NA      NA     0    NA   NA    NA
## 209        Suc. Belenes    NA       3    NA    NA   NA    NA
## 210        Suc. Belenes    NA       4     2     2    2     2
## 211        Suc. Belenes    17      11    15    11   13    11
## 212        Suc. Belenes     8      11    29     8   13     5
## 213        Suc. Belenes    NA       3     3    13    6    16
## 214        Suc. Belenes    16      16    19    10   22     6
## 215        Suc. Belenes     9       8     8     6    9     5
## 216        Suc. Belenes     2       3     3     3    3     2
## 217        Suc. Belenes     6       6     6    14   17    14
## 218        Suc. Belenes     6       8     6     8    8     3
## 219        Suc. Belenes    18      28    25    39   28    25
## 220        Suc. Belenes    56      53    32    56   56    25
## 221        Suc. Belenes    NA      NA    NA     5    2    NA
## 222        Suc. Belenes     4       2     4     6    4     4
## 223        Suc. Belenes    21      21    15    27   25    13
## 224        Suc. Belenes    57      53    49    87   57    42
## 225        Suc. Belenes     3       7     6     9    8     8
## 226        Suc. Belenes     5      11    NA     3    6     2
## 227        Suc. Belenes     2      10    NA    NA   NA     4
## 228        Suc. Belenes     1       5     4     4    3     3
## 229        Suc. Belenes     1       1     2     2    2     1
## 230        Suc. Belenes    NA      NA    NA     1   NA    NA
## 231        Suc. Belenes     3      NA     2     4    4     1
## 232        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 233        Suc. Belenes    NA       1    NA    NA   NA    NA
## 234        Suc. Belenes     2       0    NA     0    0     0
## 235        Suc. Belenes     1      NA    NA    NA    0    NA
## 236        Suc. Belenes     6       5     3     3    4     4
## 237        Suc. Belenes    NA      NA    NA    NA   NA     1
## 238        Suc. Belenes     2      NA    NA    NA   NA    NA
## 239        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 240        Suc. Belenes    NA      NA    NA    NA    2    NA
## 241        Suc. Belenes     0       0    NA     0    0     0
## 242        Suc. Belenes     1      NA    NA     1    1     1
## 243        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 244        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 245        Suc. Belenes    NA      NA    NA    NA    2    NA
## 246        Suc. Belenes     3       4     3     3    6     3
## 247        Suc. Belenes    NA      NA    NA     2    4    NA
## 248        Suc. Belenes    NA       1     1    NA    2    NA
## 249        Suc. Belenes     2       1     2     2    1     2
## 250        Suc. Belenes    NA       1     3     1    2     1
## 251        Suc. Belenes    NA       0    NA    NA   NA    NA
## 252        Suc. Belenes    NA       1    NA     6    3    NA
## 253        Suc. Belenes    NA      NA    NA     2    4    NA
## 254        Suc. Belenes    NA       1    NA     1    1    NA
## 255        Suc. Belenes    NA       1    NA    NA    1    NA
## 256        Suc. Belenes    NA       1     1     3    1     3
## 257        Suc. Belenes    NA       0    NA    NA   NA    NA
## 258        Suc. Belenes    NA       1    NA     3    3     3
## 259        Suc. Belenes    NA      NA    NA     2    4    NA
## 260        Suc. Belenes    NA       1     1    NA    4     0
## 261        Suc. Belenes    NA       1     2    NA    1    NA
## 262        Suc. Belenes    NA       1     2     2    1     2
## 263        Suc. Belenes    NA       1    NA    NA   NA     1
## 264        Suc. Belenes     3      11    NA     6    3    NA
## 265        Suc. Belenes    NA       4    NA     4   NA    NA
## 266        Suc. Belenes     2      NA    NA    NA   NA    NA
## 267        Suc. Belenes     1      NA    NA    NA   NA    NA
## 268        Suc. Belenes    NA       0    NA    NA   NA    NA
## 269        Suc. Belenes     2      NA    NA    NA   NA    NA
## 270        Suc. Belenes     6      10     8     8   11     3
## 271        Suc. Belenes    NA       4    NA     2    7    NA
## 272        Suc. Belenes     0       1     2     0    8     1
## 273        Suc. Belenes     2       3    NA     2    3    NA
## 274        Suc. Belenes     2       2     4     3    2     3
## 275        Suc. Belenes    NA       0    NA    NA   NA    NA
## 276        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 277        Suc. Belenes     4       6     1     2    4     1
## 278        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 279        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 280        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 281        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 282        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 283        Suc. Belenes     4      11    66     2    2     2
## 284        Suc. Belenes     6       3    67     3    3     3
## 285        Suc. Belenes    NA      NA    NA     0    0     0
## 286        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 287        Suc. Belenes    NA      NA    51    NA   NA    NA
## 288        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 289        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 290        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 291        Suc. Belenes    NA       0     2    NA    3     2
## 292        Suc. Belenes    NA      NA     2     2    3     2
## 293        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 294        Suc. Belenes    NA      NA    NA    NA    1    NA
## 295        Suc. Belenes     1      NA    NA     1   NA    NA
## 296        Suc. Belenes     3      NA     1     1   NA     1
## 297        Suc. Belenes     4       1     6     5    5    11
## 298        Suc. Belenes     0      NA     1    NA   NA     1
## 299        Suc. Belenes    NA       1     1     1    1     1
## 300        Suc. Belenes    NA      NA     2    NA   NA    NA
## 301        Suc. Belenes    NA       2     4     1    1     1
## 302        Suc. Belenes    NA       6     8     6   NA    11
## 303        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 304        Suc. Belenes    NA      NA    NA     0    0     0
## 305        Suc. Belenes    NA      NA    NA     1    1     1
## 306        Suc. Belenes    NA      NA    NA    NA   NA     1
## 307        Suc. Belenes     2       6    NA    NA   NA    NA
## 308        Suc. Belenes    NA      NA    NA    NA   NA     1
## 309        Suc. Belenes    NA      NA    NA    NA   NA     2
## 310        Suc. Belenes    NA      27    NA    27   NA    NA
## 311        Suc. Belenes    48      NA    NA    70   NA    NA
## 312        Suc. Belenes    14      18     4    56   NA    NA
## 313        Suc. Belenes    13      25    32    25   NA    25
## 314        Suc. Belenes     2       3     2    16   NA    NA
## 315        Suc. Belenes     2      NA    NA    NA    2    NA
## 316        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 317        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 318        Suc. Belenes    36      27    NA    27   NA    27
## 319        Suc. Belenes    NA      45    NA    34   NA    NA
## 320        Suc. Belenes    NA      NA    NA    NA   NA    41
## 321        Suc. Belenes    44       3    22    98   86    44
## 322        Suc. Belenes     3      17    12    18   21     6
## 323        Suc. Belenes    23      NA    NA    NA   NA    NA
## 324        Suc. Belenes     8      42    NA    42   NA    37
## 325        Suc. Belenes    NA       6    NA     8    6    37
## 326        Suc. Belenes    63      46   187     4   56    92
## 327        Suc. Belenes   240     222   278    42   95   380
## 328        Suc. Belenes     6       4     4     6    6    34
## 329        Suc. Belenes    11      85    -4    25   53    51
## 330        Suc. Belenes   192     129   205   499   11     2
## 331        Suc. Belenes    13      NA    15    13   NA    13
## 332        Suc. Belenes    NA      NA     3    NA   NA     2
## 333        Suc. Belenes    NA      NA    NA    NA    4     2
## 334        Suc. Belenes     1      15    NA    NA   NA     1
## 335        Suc. Belenes    NA      NA     1    NA   NA    NA
## 336        Suc. Belenes     1       2     1     5    1     3
## 337        Suc. Belenes    NA      NA     1     2    1     2
## 338        Suc. Belenes     1       3     3     5    2     6
## 339        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 340        Suc. Belenes    NA       1    NA    NA   NA    NA
## 341        Suc. Belenes     2       2     0     1    1     1
## 342        Suc. Belenes    NA      NA    NA    NA    0    NA
## 343        Suc. Belenes     3       2    12     1    4    26
## 344        Suc. Belenes     3       1     1     4    2     3
## 345        Suc. Belenes    NA      NA    NA    NA   NA     1
## 346        Suc. Belenes     4      NA     2     2    2    NA
## 347        Suc. Belenes     1      NA     1     1    1     1
## 348        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 349        Suc. Belenes    NA      NA    NA    NA   NA     1
## 350        Suc. Belenes    NA       1     1     0    0     1
## 351        Suc. Belenes     1       1     1     2    3    NA
## 352        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 353        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 354        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 355        Suc. Belenes    NA      NA    NA    NA   NA     2
## 356        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 357        Suc. Belenes    NA      11    31     3    8    28
## 358        Suc. Belenes    NA      NA    NA    NA    6    NA
## 359        Suc. Belenes     0       3    NA    NA   NA    NA
## 360        Suc. Belenes    NA       2     1     1    2     1
## 361        Suc. Belenes     2      NA     7     2    8    NA
## 362        Suc. Belenes     1       1     3     1    1     1
## 363        Suc. Belenes    NA       2    NA    NA   NA    NA
## 364        Suc. Belenes    NA      NA    NA    NA   NA     2
## 365        Suc. Belenes    NA       6    NA     3    6     6
## 366        Suc. Belenes     0      NA    NA    NA   NA    NA
## 367        Suc. Belenes     1       1    NA     1    2    NA
## 368        Suc. Belenes     2      NA     3    NA    6    NA
## 369        Suc. Belenes     1      NA     1     1    1    NA
## 370        Suc. Belenes    NA       2    NA    NA   NA    NA
## 371        Suc. Belenes     2       2    NA     2    2    NA
## 372        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 373        Suc. Belenes    NA      NA    NA    11    3     6
## 374        Suc. Belenes     0      NA    NA    NA   NA    NA
## 375        Suc. Belenes    NA       2    NA     1    2     1
## 376        Suc. Belenes    NA      NA    NA     2   NA    NA
## 377        Suc. Belenes    NA      NA     7    NA    2    NA
## 378        Suc. Belenes    NA       1     1     1   NA     1
## 379        Suc. Belenes    NA      NA     1    NA   NA    NA
## 380        Suc. Belenes    NA      NA    NA    NA   NA     2
## 381        Suc. Belenes     8      11    28    NA   NA    31
## 382        Suc. Belenes    NA       1     0    NA    2    NA
## 383        Suc. Belenes    NA      NA     2    NA    6    NA
## 384        Suc. Belenes    NA      NA    NA     1    1    NA
## 385        Suc. Belenes    NA       2    NA    NA   NA    NA
## 386        Suc. Belenes     4       2     4     2    2     2
## 387        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 388        Suc. Belenes    NA      NA    NA    NA   NA     2
## 389        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 390        Suc. Belenes    NA      11    42    11   NA    31
## 391        Suc. Belenes    NA      NA     6     6    6     3
## 392        Suc. Belenes     0       3    NA    NA   NA    NA
## 393        Suc. Belenes    NA       1     1     1    0     3
## 394        Suc. Belenes    NA      NA    NA    NA   NA     2
## 395        Suc. Belenes     2       2     7    NA    6     2
## 396        Suc. Belenes     3      NA     7     6    1     9
## 397        Suc. Belenes    NA       2    NA    NA   NA    NA
## 398        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 399        Suc. Belenes     1       6    11     5   10    13
## 400        Suc. Belenes    NA      NA    NA    NA   NA     1
## 401        Suc. Belenes    NA      NA    NA    NA   NA     0
## 402        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 403        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 404        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 405        Suc. Belenes     4       2     2     4    4     2
## 406        Suc. Belenes     6       3     3    10    3     3
## 407        Suc. Belenes     3      NA    NA    NA    3    NA
## 408        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 409        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 410        Suc. Belenes    NA       2    NA    NA   NA    NA
## 411        Suc. Belenes     0      NA     0     1   NA    NA
## 412        Suc. Belenes    NA      NA     2    NA   NA     1
## 413        Suc. Belenes     1       1     1    NA    1     1
## 414        Suc. Belenes    NA      NA    NA    NA   NA     4
## 415        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 416        Suc. Belenes    NA       2    NA     2    1     1
## 417        Suc. Belenes     2      NA     2    NA   NA    NA
## 418        Suc. Belenes     2       1     1     1    2     1
## 419        Suc. Belenes     6       6     3     6    6     6
## 420        Suc. Belenes    NA      NA     3    NA    1    NA
## 421        Suc. Belenes    NA       0     1     1    1     1
## 422        Suc. Belenes     1      NA    NA    NA   NA    NA
## 423        Suc. Belenes     1       1     1     1    1     1
## 424        Suc. Belenes    NA      NA    NA    NA   NA     1
## 425        Suc. Belenes     2      NA     2     2    2     2
## 426        Suc. Belenes    11      11    17    11    8    13
## 427        Suc. Belenes     3       6     8    11   11    11
## 428        Suc. Belenes     4      NA    NA    NA   NA    NA
## 429        Suc. Belenes     2       2     3     3    3     2
## 430        Suc. Belenes    17      13    15     8   15    15
## 431        Suc. Belenes     1       1     2     1    1     2
## 432        Suc. Belenes     2      NA     4     2    2     2
## 433        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 434        Suc. Belenes     2       2     4     4    2     4
## 435        Suc. Belenes     1       1     1    NA   NA    NA
## 436        Suc. Belenes    21      NA    NA    NA    2    15
## 437        Suc. Belenes    16      34    45    45   32    24
## 438        Suc. Belenes    NA      NA    NA    NA   NA     3
## 439        Suc. Belenes    22      13    29    44   10    13
## 440        Suc. Belenes     9       6    15    12   14    12
## 441        Suc. Belenes     8       5     5     8    5     8
## 442        Suc. Belenes     3       3     6    13    3     3
## 443        Suc. Belenes     6       3     3     8    3     6
## 444        Suc. Belenes    49      60    49    63   60    46
## 445        Suc. Belenes   102      70   116   134  130    99
## 446        Suc. Belenes     4       6     4     8    6     8
## 447        Suc. Belenes    27      23    42    40   32    40
## 448        Suc. Belenes    72      55    70    80   91    70
## 449        Suc. Belenes    NA       3    NA    NA   NA    NA
## 450        Suc. Belenes    21      14    15    15   16    18
## 451        Suc. Belenes     2       3     3     2    2    NA
## 452        Suc. Belenes     3       3     3     3    2     1
## 453        Suc. Belenes    NA       1    NA    NA   NA    NA
## 454        Suc. Belenes     1       1     1     1    1     1
## 455        Suc. Belenes     1       1    NA     2   NA    NA
## 456        Suc. Belenes     1      NA    NA    NA    1     1
## 457        Suc. Belenes     1       0     0     0    0     0
## 458        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 459        Suc. Belenes     2      NA     3     1    1     4
## 460        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 461        Suc. Belenes     2      NA     2    NA    2    NA
## 462        Suc. Belenes     1      NA    NA    NA    0     0
## 463        Suc. Belenes    NA      NA    NA    NA   NA     1
## 464        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 465        Suc. Belenes     1       0     0     0    0     0
## 466        Suc. Belenes     3       1     1     2    3     3
## 467        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 468        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 469        Suc. Belenes    NA      NA    NA    NA   NA     1
## 470        Suc. Belenes     3      NA     1    NA   NA    NA
## 471        Suc. Belenes    NA      NA     7     4    4     4
## 472        Suc. Belenes     0      NA     0    NA   NA    NA
## 473        Suc. Belenes     1      NA     0     0    1     0
## 474        Suc. Belenes    NA       2    NA    NA    2     2
## 475        Suc. Belenes    NA       2    NA     3    2     2
## 476        Suc. Belenes     1       1    NA     2    1     1
## 477        Suc. Belenes    NA       0    NA    NA   NA    NA
## 478        Suc. Belenes    NA      NA    NA    NA   NA     1
## 479        Suc. Belenes    NA      NA     1    NA    3    NA
## 480        Suc. Belenes    NA      NA     4    NA   NA     4
## 481        Suc. Belenes     0      NA     0    NA   NA    NA
## 482        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 483        Suc. Belenes     2      NA    NA    NA   NA    NA
## 484        Suc. Belenes    NA      NA    NA     1   NA    NA
## 485        Suc. Belenes     1      NA     1     1    1     1
## 486        Suc. Belenes    NA       0    NA    NA   NA    NA
## 487        Suc. Belenes    NA      NA     1     3    3    NA
## 488        Suc. Belenes    NA       4     4     7   NA     4
## 489        Suc. Belenes     0      NA     0    NA   NA    NA
## 490        Suc. Belenes    NA      NA     0    NA    0    NA
## 491        Suc. Belenes    NA       2    NA    NA    2     2
## 492        Suc. Belenes    NA      NA    NA     1   NA    NA
## 493        Suc. Belenes     1       2     1     3    1     1
## 494        Suc. Belenes    NA       2    NA    NA   NA    NA
## 495        Suc. Belenes     1      NA     2    NA   NA     1
## 496        Suc. Belenes    NA      NA    NA    NA   NA     1
## 497        Suc. Belenes    NA       3    NA     3   NA    NA
## 498        Suc. Belenes    NA       4    11     7    4     4
## 499        Suc. Belenes     1      NA    NA    NA   NA    NA
## 500        Suc. Belenes    NA       0    NA    NA    0    NA
## 501        Suc. Belenes     1      NA     1    NA    1     1
## 502        Suc. Belenes    NA       0    NA    NA   NA    NA
## 503        Suc. Belenes     4      NA    NA     2   NA    NA
## 504        Suc. Belenes    NA      NA    NA    NA   NA     1
## 505        Suc. Belenes     3      NA     1    NA   NA     3
## 506        Suc. Belenes     4      NA    11     4    7     7
## 507        Suc. Belenes     0      NA     0    NA   NA    NA
## 508        Suc. Belenes    NA      NA    NA     0    1     0
## 509        Suc. Belenes    NA       2    NA     2   NA     2
## 510        Suc. Belenes     2       2     2     1   NA    NA
## 511        Suc. Belenes     2       2     1     3    3     1
## 512        Suc. Belenes    NA       0    NA    NA   NA    NA
## 513        Suc. Belenes    NA      NA     1    NA   NA    NA
## 514        Suc. Belenes     3       1     6     3    1     3
## 515        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 516        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 517        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 518        Suc. Belenes     2       8   150     2    2     2
## 519        Suc. Belenes     3       6    10     3    3     3
## 520        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 521        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 522        Suc. Belenes    NA      NA     3    NA   NA    NA
## 523        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 524        Suc. Belenes    NA      NA    NA     0   NA    NA
## 525        Suc. Belenes    NA      NA     1    NA   NA    NA
## 526        Suc. Belenes     1       1     1     0    0    NA
## 527        Suc. Belenes     2       1     3     1    1     1
## 528        Suc. Belenes    NA      NA    NA     2    2     4
## 529        Suc. Belenes    NA      NA    NA    NA   NA     1
## 530        Suc. Belenes    NA       1     1     1    1     3
## 531        Suc. Belenes     2       2    NA    NA   NA    NA
## 532        Suc. Belenes    NA       1     1     1    1     2
## 533        Suc. Belenes    NA       8    11     8    6     6
## 534        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 535        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 536        Suc. Belenes    NA       1    NA    NA   NA     1
## 537        Suc. Belenes    NA      NA    NA     1   NA     2
## 538        Suc. Belenes     2       2    NA    NA   NA    NA
## 539        Suc. Belenes    NA       1    NA    NA   NA    NA
## 540        Suc. Belenes     2       4    NA    NA    2    NA
## 541        Suc. Belenes    11      13    13    13   42     2
## 542        Suc. Belenes    NA      NA    NA    NA   NA     2
## 543        Suc. Belenes    14      17    11    11   11     8
## 544        Suc. Belenes     8       8    14    14    8    14
## 545        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 546        Suc. Belenes    15      17    17    21   17    46
## 547        Suc. Belenes     2       1     3     2    3     2
## 548        Suc. Belenes     2       2     2    NA   NA    NA
## 549        Suc. Belenes     2       4     4     4    2     4
## 550        Suc. Belenes    11      14    14    17   14     8
## 551        Suc. Belenes     2       4     6     4    4     4
## 552        Suc. Belenes    NA       1    NA    NA   NA    NA
## 553        Suc. Belenes    13      17    17    19   51    27
## 554        Suc. Belenes    16      16    11    11    8    NA
## 555        Suc. Belenes    13      16    16    10    6    51
## 556        Suc. Belenes    32      32    48    35  120    10
## 557        Suc. Belenes     9       6    12    14   11    24
## 558        Suc. Belenes     5      NA     5     5    5     5
## 559        Suc. Belenes    17      14    14    18   20    17
## 560        Suc. Belenes    11      11    11     6   14     3
## 561        Suc. Belenes    25      60    74   116  190    88
## 562        Suc. Belenes   120     106   116   113  225   116
## 563        Suc. Belenes    23      25    21    38   55    30
## 564        Suc. Belenes    80      82    97    97  222   131
## 565        Suc. Belenes    NA       1     1    NA   NA     1
## 566        Suc. Belenes     3       5     6     6   20     2
## 567        Suc. Belenes     6       3     6     6   24    NA
## 568        Suc. Belenes     4       6     4     8    2    30
## 569        Suc. Belenes     2       4     4     4    5     3
## 570        Suc. Belenes    NA       1     1     1    2     2
## 571        Suc. Belenes    NA       1    NA    NA   NA    NA
## 572        Suc. Belenes     1       1    NA     3    1     3
## 573        Suc. Belenes     1       0     0     0    0     1
## 574        Suc. Belenes    NA      NA     3    NA    1     3
## 575        Suc. Belenes     2      NA    NA     2   NA     2
## 576        Suc. Belenes     1       1     1    NA   NA     0
## 577        Suc. Belenes    NA      NA    NA    NA   NA     1
## 578        Suc. Belenes    NA       0     0     1    1     2
## 579        Suc. Belenes     1       1     1     2    1     1
## 580        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 581        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 582        Suc. Belenes     2       2     2     2    4     4
## 583        Suc. Belenes    NA      NA    NA    NA   NA     2
## 584        Suc. Belenes    NA      NA     4     3    6     3
## 585        Suc. Belenes    NA      NA     4    NA   NA    NA
## 586        Suc. Belenes     1       1     1     0    0    NA
## 587        Suc. Belenes    NA      NA    NA    NA    0    NA
## 588        Suc. Belenes     1       2     1     1    1     1
## 589        Suc. Belenes     1       3     1     2    2     3
## 590        Suc. Belenes    NA       0     0    NA   NA    NA
## 591        Suc. Belenes    NA      NA    NA    NA   NA     2
## 592        Suc. Belenes    NA      NA     1    NA   NA    NA
## 593        Suc. Belenes     1       0     1     0    0    NA
## 594        Suc. Belenes     0      NA    NA    NA    0    NA
## 595        Suc. Belenes     1      NA     1     1    1     1
## 596        Suc. Belenes    NA      NA    NA    NA    1     1
## 597        Suc. Belenes    NA       0     0    NA   NA    NA
## 598        Suc. Belenes    NA      NA     4    NA   NA    NA
## 599        Suc. Belenes    NA      NA     1    NA   NA    NA
## 600        Suc. Belenes     1       1     1     0    0    NA
## 601        Suc. Belenes    NA      NA    NA    NA    0    NA
## 602        Suc. Belenes     1      NA     1     1    1     1
## 603        Suc. Belenes    NA      NA     2     1    1     1
## 604        Suc. Belenes     2       1    NA    NA    1     1
## 605        Suc. Belenes    NA      NA    NA    NA   NA     2
## 606        Suc. Belenes    NA       3    NA     3   NA     3
## 607        Suc. Belenes     4       7     7    NA   NA    NA
## 608        Suc. Belenes    NA      NA    NA    NA    0    NA
## 609        Suc. Belenes     1      NA    NA    NA    3    NA
## 610        Suc. Belenes    NA       0     0    NA   NA    NA
## 611        Suc. Belenes     8       6     8     8    4    34
## 612        Suc. Belenes    NA      NA    NA    NA   NA     2
## 613        Suc. Belenes     3      NA     4    NA    6    NA
## 614        Suc. Belenes    NA       7     4     7   NA    NA
## 615        Suc. Belenes     1       1     1     0    0    NA
## 616        Suc. Belenes     0       0     0     1    0     0
## 617        Suc. Belenes     1      NA     1     1    1     3
## 618        Suc. Belenes     1       3     3     3    3     2
## 619        Suc. Belenes    NA       0     0    NA   NA    NA
## 620        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 621        Suc. Belenes     3      18     2     1   11    13
## 622        Suc. Belenes    NA      NA    NA    NA   NA     1
## 623        Suc. Belenes    NA      NA    NA    NA   NA     0
## 624        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 625        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 626        Suc. Belenes     6      15     2     2    8     6
## 627        Suc. Belenes    10      13     3     6   10     3
## 628        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 629        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 630        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 631        Suc. Belenes    NA       1    NA    NA   NA    NA
## 632        Suc. Belenes    NA      NA    NA    NA    1    NA
## 633        Suc. Belenes     7       6     5     7    4     9
## 634        Suc. Belenes     3       2     3     3    2     1
## 635        Suc. Belenes    NA       1     1     1    1     1
## 636        Suc. Belenes    NA      NA    NA    NA    2    NA
## 637        Suc. Belenes    NA       1     1     2    1     1
## 638        Suc. Belenes     3       3    14    25   17    25
## 639        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 640        Suc. Belenes    NA       0    NA    NA   NA    NA
## 641        Suc. Belenes    NA      NA     1     1    3    NA
## 642        Suc. Belenes     3      NA     2     1    3     7
## 643        Suc. Belenes     2       6     6    NA   NA    NA
## 644        Suc. Belenes     2      NA    NA     1   NA    NA
## 645        Suc. Belenes     4      NA     4     6    2     4
## 646        Suc. Belenes    44      66    40    46   72    44
## 647        Suc. Belenes    14      11    11    14   15    15
## 648        Suc. Belenes    99     116    68    76  113   101
## 649        Suc. Belenes    82      76    82    82  104    96
## 650        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 651        Suc. Belenes    42      40    40    68   46    55
## 652        Suc. Belenes    15      16    16    18   17    16
## 653        Suc. Belenes     8       8     9     8    9     6
## 654        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 655        Suc. Belenes     6       8     8     4    4     6
## 656        Suc. Belenes    34      14    37    31   42    20
## 657        Suc. Belenes     6       2     6     4    4     4
## 658        Suc. Belenes    NA      NA     1    NA   NA     1
## 659        Suc. Belenes    NA      NA    NA    NA    8    NA
## 660        Suc. Belenes    98     114    69    87   74    45
## 661        Suc. Belenes    NA      NA    NA    NA   NA    79
## 662        Suc. Belenes     3       6     3     3    3     3
## 663        Suc. Belenes     9       6     6    14    9    18
## 664        Suc. Belenes    17      14    14    17   12    12
## 665        Suc. Belenes    82      96    54    93   85    73
## 666        Suc. Belenes    34      31    23    56   34    28
## 667        Suc. Belenes   109     180   127   106  169   201
## 668        Suc. Belenes   120     116   144   173  183   197
## 669        Suc. Belenes     2      NA    NA    NA    2    NA
## 670        Suc. Belenes    44      38    61    89   87    74
## 671        Suc. Belenes    82      78    72   123   53   125
## 672        Suc. Belenes    30      20    21    30   29    33
## 673        Suc. Belenes     6       5     9     6    8     3
## 674        Suc. Belenes     2      NA     4     4    2     8
## 675        Suc. Belenes    NA       2     2     4    1    NA
## 676        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 677        Suc. Belenes    NA       1     1     1    1     1
## 678        Suc. Belenes    NA      NA    NA     1   NA    NA
## 679        Suc. Belenes    23      19    15    20   13     8
## 680        Suc. Belenes     0       0     0     0    0     0
## 681        Suc. Belenes     4       3     5     2    3     4
## 682        Suc. Belenes     5      20    19    NA   37     2
## 683        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 684        Suc. Belenes     4       4     4     2    4     2
## 685        Suc. Belenes     2       2     2     2   NA     2
## 686        Suc. Belenes     2       1     3     3    2     2
## 687        Suc. Belenes     4       2     1     3    2     3
## 688        Suc. Belenes     2       2     3     3    1     3
## 689        Suc. Belenes     0       1     0     0    0     0
## 690        Suc. Belenes     3      NA    NA    NA   NA     3
## 691        Suc. Belenes    NA      NA    NA    NA   NA     3
## 692        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 693        Suc. Belenes     8       5     9    14    7     8
## 694        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 695        Suc. Belenes    NA      NA    NA    NA   NA     3
## 696        Suc. Belenes    NA       3     8     6   20    11
## 697        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 698        Suc. Belenes    NA      NA     0    NA    1     0
## 699        Suc. Belenes     1       2    NA     1   NA     1
## 700        Suc. Belenes     1       4     1     3    4     3
## 701        Suc. Belenes    NA       1    NA    NA   NA    NA
## 702        Suc. Belenes    NA       3     8     8    3     8
## 703        Suc. Belenes    NA      NA    NA     0   NA     0
## 704        Suc. Belenes     1      NA    NA     1   NA     1
## 705        Suc. Belenes    NA       4     3     2    2    NA
## 706        Suc. Belenes    NA       1    NA    NA   NA    NA
## 707        Suc. Belenes    NA      NA     6     3   NA    NA
## 708        Suc. Belenes     0       0    NA    NA   NA     0
## 709        Suc. Belenes     1      NA    NA     1   NA     1
## 710        Suc. Belenes     1       5     3     3    1     1
## 711        Suc. Belenes     1       2     4     4    1    NA
## 712        Suc. Belenes     8      14     6    17   20    23
## 713        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 714        Suc. Belenes    NA      NA    NA    NA    2    NA
## 715        Suc. Belenes     1       3     3     3    4     5
## 716        Suc. Belenes    NA       1    NA    NA   NA    NA
## 717        Suc. Belenes    NA      NA    NA    NA   NA     2
## 718        Suc. Belenes     3      14    17    20   11     8
## 719        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 720        Suc. Belenes    NA      NA    NA    NA    1     0
## 721        Suc. Belenes     1      NA     2     3   NA     1
## 722        Suc. Belenes     1       5     5     3    3     5
## 723        Suc. Belenes    NA       1    NA    NA   NA    NA
## 724        Suc. Belenes     5      NA     1     3   NA    NA
## 725        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 726        Suc. Belenes    16      13    13    22   14    11
## 727        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 728        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 729        Suc. Belenes     6      55    11    NA   25    51
## 730        Suc. Belenes    NA      38     6    NA   48    25
## 731        Suc. Belenes     2      20    NA    NA    8     3
## 732        Suc. Belenes    35     106    28    25   49    25
## 733        Suc. Belenes     8      33    NA    13   18    18
## 734        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 735        Suc. Belenes     2      NA    NA     1   NA    NA
## 736        Suc. Belenes     3      NA     3     1   NA     1
## 737        Suc. Belenes     3       5    NA    NA   NA     3
## 738        Suc. Belenes     8       8     2     2    4     3
## 739        Suc. Belenes    NA      NA    NA    NA   NA     0
## 740        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 741        Suc. Belenes    NA      NA     4     2   NA     2
## 742        Suc. Belenes    NA       2     2    NA   NA    NA
## 743        Suc. Belenes    11      17     6    17    6    31
## 744        Suc. Belenes     3       3     3    NA    3     3
## 745        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 746        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 747        Suc. Belenes     3      NA     3    NA    3     1
## 748        Suc. Belenes     6      NA     6    NA   NA    NA
## 749        Suc. Belenes    NA      NA     1     1   NA     2
## 750        Suc. Belenes     2       2     6     8    4     8
## 751        Suc. Belenes    NA      NA    NA     5   13     3
## 752        Suc. Belenes    NA       2     2     2   NA    NA
## 753        Suc. Belenes    72      72    59   127   87    30
## 754        Suc. Belenes    37     155   189    NA  121   251
## 755        Suc. Belenes    38      68    38    74   82     8
## 756        Suc. Belenes    NA       5     8     5   10    13
## 757        Suc. Belenes    15      11    21    NA   40    10
## 758        Suc. Belenes     6       5    11     9   17     5
## 759        Suc. Belenes     8       5     5     8    5    NA
## 760        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 761        Suc. Belenes    11      15    13    15   17    17
## 762        Suc. Belenes    17      23    28    31   17    17
## 763        Suc. Belenes     4       4     6     6    6     8
## 764        Suc. Belenes     5       8     5     8    8     3
## 765        Suc. Belenes     2       2     1     1    2     2
## 766        Suc. Belenes    NA       2     2    NA    3    NA
## 767        Suc. Belenes    95     159    32   161  118     8
## 768        Suc. Belenes    NA      NA    58    90   21    61
## 769        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 770        Suc. Belenes    NA      NA    NA     3    3     3
## 771        Suc. Belenes     3      NA    NA    NA   NA     2
## 772        Suc. Belenes   163     217   355   107  192   211
## 773        Suc. Belenes   123     240   335   183  243   275
## 774        Suc. Belenes    46     204   190   134  183   144
## 775        Suc. Belenes    27      24    41     8   71     7
## 776        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 777        Suc. Belenes    68      76   135   120  116    49
## 778        Suc. Belenes   154     139    95   224   87   169
## 779        Suc. Belenes     2       1    NA    NA   NA    NA
## 780        Suc. Belenes    28      10    20    20   20    25
## 781        Suc. Belenes    24      22    35    10   68    16
## 782        Suc. Belenes    18      18    24    21   41    NA
## 783        Suc. Belenes    10      NA    NA     4    6     6
## 784        Suc. Belenes    NA       1    NA    NA   NA    NA
## 785        Suc. Belenes    NA      NA     1     2    2    NA
## 786        Suc. Belenes     2       2     2    NA    3     3
## 787        Suc. Belenes    NA      NA     3     3   NA     1
## 788        Suc. Belenes    20      13     9    13   30    13
## 789        Suc. Belenes     8      NA     4    NA    2     5
## 790        Suc. Belenes     3       1     2    NA    2     4
## 791        Suc. Belenes    20      24    19    NA   NA     7
## 792        Suc. Belenes    NA       1    NA    NA   NA    NA
## 793        Suc. Belenes     4       4    NA     2    4     4
## 794        Suc. Belenes     2       1     1     1    0     1
## 795        Suc. Belenes    13      10    14     8   10    NA
## 796        Suc. Belenes     6       3    10    11    8     5
## 797        Suc. Belenes    10       6     7    12   10     8
## 798        Suc. Belenes    11       5     4     7    6     7
## 799        Suc. Belenes     2       2     3     1    6     3
## 800        Suc. Belenes     5       3    NA    NA    8     8
## 801        Suc. Belenes    NA       5     3     3    3    NA
## 802        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 803        Suc. Belenes     5       5     5    10    3     3
## 804        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 805        Suc. Belenes    NA       6     6    14   NA    NA
## 806        Suc. Belenes     1       3     3     1    1     3
## 807        Suc. Belenes     0      NA    NA    NA    1    NA
## 808        Suc. Belenes     3      NA    NA     3    8    NA
## 809        Suc. Belenes    NA       3    NA    NA    3     8
## 810        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 811        Suc. Belenes    NA      NA    NA    NA    0    NA
## 812        Suc. Belenes     3      NA    NA     3    5    NA
## 813        Suc. Belenes    NA      11    NA    11    3    NA
## 814        Suc. Belenes     3      NA     1     3    3     1
## 815        Suc. Belenes    NA      NA    NA    NA    0    NA
## 816        Suc. Belenes     3      NA    NA     3    5    NA
## 817        Suc. Belenes    NA       3    NA     3    5     3
## 818        Suc. Belenes    NA       8     3    11    3     3
## 819        Suc. Belenes     3      NA     1    NA    1    NA
## 820        Suc. Belenes    NA      NA    NA    NA    1    NA
## 821        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 822        Suc. Belenes     3       5    NA     5    5     3
## 823        Suc. Belenes    NA      NA    NA    NA   NA     3
## 824        Suc. Belenes    NA      14     8    48    6    NA
## 825        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 826        Suc. Belenes     5       1     3     4    4     4
## 827        Suc. Belenes    NA      NA    NA    NA    1    NA
## 828        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 829        Suc. Belenes     3      NA     3    NA   10     3
## 830        Suc. Belenes     5       6     3     7    4     6
## 831        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 832        Suc. Belenes    15      18    16     6   21    21
## 833        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 834        Suc. Belenes    NA      NA    NA     1   NA    NA
## 835        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 836        Suc. Belenes    13      19    17    13   15    17
## 837        Suc. Belenes    10      19    19    19   29    22
## 838        Suc. Belenes     3       5     5     5    8     3
## 839        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 840        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 841        Suc. Belenes     0       0     1     0   NA     0
## 842        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 843        Suc. Belenes     1      NA    NA     0    0    NA
## 844        Suc. Belenes    NA       1    NA    NA    5     1
## 845        Suc. Belenes    NA      NA     2     2    4    NA
## 846        Suc. Belenes    NA       2     2     1    1     1
## 847        Suc. Belenes     6       3     6     6   11     6
## 848        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 849        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 850        Suc. Belenes    NA       3    NA     1    1    NA
## 851        Suc. Belenes    NA      NA     2    NA    2    NA
## 852        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 853        Suc. Belenes     2      NA     2    NA   NA     2
## 854        Suc. Belenes     1      NA    NA    NA   NA    NA
## 855        Suc. Belenes    23      25    21    21   27    25
## 856        Suc. Belenes    15      17    18    15   23    17
## 857        Suc. Belenes    28      20    14    20   17    23
## 858        Suc. Belenes    23      20    25    23   34    17
## 859        Suc. Belenes     7       8     5     7   10     8
## 860        Suc. Belenes    19      19    23    23   23    17
## 861        Suc. Belenes     3       5     2     7    4     4
## 862        Suc. Belenes     5       6     6     8    8     8
## 863        Suc. Belenes     6      13     8     6    8     8
## 864        Suc. Belenes    NA      NA     3     6    3    NA
## 865        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 866        Suc. Belenes     4       4     6     8    8     8
## 867        Suc. Belenes     1       2    NA     1    2    NA
## 868        Suc. Belenes     4       2     2    NA   NA    NA
## 869        Suc. Belenes    45      61    40    53   55    40
## 870        Suc. Belenes    NA      NA    NA    NA   NA    25
## 871        Suc. Belenes     3       3     3     6    3    22
## 872        Suc. Belenes    14      14    11    11   14     9
## 873        Suc. Belenes    11      12    11    11    9    17
## 874        Suc. Belenes    NA       6    NA     6   NA     3
## 875        Suc. Belenes    23      14    11     8    8     3
## 876        Suc. Belenes    63      56    63    67   63    74
## 877        Suc. Belenes   190     208   116   201  240   222
## 878        Suc. Belenes    NA      NA    NA    NA    2    NA
## 879        Suc. Belenes    36      32    38    34   38    34
## 880        Suc. Belenes    80      80    59    85   87    82
## 881        Suc. Belenes    12      13     6    15   12    12
## 882        Suc. Belenes     8       6     9     9   11    11
## 883        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 884        Suc. Belenes    NA       2     1    NA   NA    NA
## 885        Suc. Belenes    NA       1    NA    NA   NA    NA
## 886        Suc. Belenes    NA       1     1     1    7     1
## 887        Suc. Belenes    NA       1    NA     1   NA    NA
## 888        Suc. Belenes     1      NA    NA    NA   NA    NA
## 889        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 890        Suc. Belenes     1       0     0     0    0     0
## 891        Suc. Belenes    NA       0    NA    NA    1    NA
## 892        Suc. Belenes     3       3     2     3    3     3
## 893        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 894        Suc. Belenes     2       2     4     2    4     2
## 895        Suc. Belenes    NA      NA    NA    NA   NA     1
## 896        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 897        Suc. Belenes     0       0     0     0    1     0
## 898        Suc. Belenes     3       4     4     4    4     3
## 899        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 900        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 901        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 902        Suc. Belenes     3       3     1     4    4     3
## 903        Suc. Belenes     0       0     1     0   NA     0
## 904        Suc. Belenes    NA       0     0    NA   NA     0
## 905        Suc. Belenes    NA      NA    NA     1   NA     1
## 906        Suc. Belenes     1       1     1     1    1     2
## 907        Suc. Belenes    NA       0    NA     0   NA    NA
## 908        Suc. Belenes     3      NA     1     4    9     3
## 909        Suc. Belenes     0       0     0     0   NA     0
## 910        Suc. Belenes     0      NA    NA     0   NA     0
## 911        Suc. Belenes    NA      NA    NA     1   NA     1
## 912        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 913        Suc. Belenes    NA       0    NA     0   NA    NA
## 914        Suc. Belenes    NA      NA     1     1    1    NA
## 915        Suc. Belenes     0       0     1     0   NA     0
## 916        Suc. Belenes    NA      NA    NA    NA   NA     0
## 917        Suc. Belenes    NA       2    NA     1    2     1
## 918        Suc. Belenes    NA       2     1     1    1     2
## 919        Suc. Belenes     1       4     1     1    3     3
## 920        Suc. Belenes    NA       6     8     3    6     8
## 921        Suc. Belenes    NA      NA    NA    NA    1    NA
## 922        Suc. Belenes     2      NA     2    NA    2    NA
## 923        Suc. Belenes    NA       0    NA     0   NA    NA
## 924        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 925        Suc. Belenes     6       8     4     9   18    11
## 926        Suc. Belenes     0       0     1     0   NA     0
## 927        Suc. Belenes    NA      NA    NA    NA    0     0
## 928        Suc. Belenes    NA      NA    NA     1   NA     1
## 929        Suc. Belenes     4       4     4     3    4     4
## 930        Suc. Belenes    NA       0    NA     0   NA    NA
## 931        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 932        Suc. Belenes    NA      NA    NA     1   10     3
## 933        Suc. Belenes    NA       0    NA    NA   NA    NA
## 934        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 935        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 936        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 937        Suc. Belenes     2       2     2     6    2     2
## 938        Suc. Belenes     3       3     3     3    3     3
## 939        Suc. Belenes    NA      NA    NA    NA   NA     4
## 940        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 941        Suc. Belenes    NA      NA     1     1    1    NA
## 942        Suc. Belenes     1       1     1     1    1     1
## 943        Suc. Belenes     1      NA     1     4    1     1
## 944        Suc. Belenes     1      NA     2     1   NA     1
## 945        Suc. Belenes    NA      NA    NA    NA   NA    NA
## 946        Suc. Belenes     1       1     1    NA    1     1
## 947        Suc. Belenes    NA      NA    NA     2    4    NA
## 948        Suc. Belenes    NA       2     1     1    1     2
## 949        Suc. Belenes     1      NA    NA    NA   NA    NA
## 950        Suc. Belenes     2       2     2    NA   NA    NA
## 951        Suc. Belenes     4       4     2     2   NA     2
## 952        Suc. Belenes    25      30    27    27   36    30
## 953        Suc. Belenes     8       6     5     3    6     8
## 954        Suc. Belenes    39      28    31    37   39    28
## 955        Suc. Belenes    28      28    17    25   28    23
## 956        Suc. Belenes    25      25    11    19   21    25
## 957        Suc. Belenes     5      10    10    10    8     8
## 958        Suc. Belenes     4       5     4     4    6     4
## 959        Suc. Belenes     5       9     5     5    8     8
## 960        Suc. Belenes    NA      NA    NA    NA   NA     1
## 961        Suc. Belenes     4       8     6     8    8     6
## 962        Suc. Belenes     6       6    14    11    8     8
## 963        Suc. Belenes    NA      NA     2     4    4     4
## 964        Suc. Belenes     5       3     3     5    5     5
## 965        Suc. Belenes     1       1     3     1    3     2
## 966        Suc. Belenes    34      34    34    42   42    51
## 967        Suc. Belenes     3      NA    NA    NA   NA    NA
## 968        Suc. Belenes    25      22    22    22   29    25
## 969        Suc. Belenes     3       3     3     3    3     3
## 970        Suc. Belenes     6       8    11     8   11    11
## 971        Suc. Belenes    11       5     3     6    2    NA
## 972        Suc. Belenes    NA      NA    NA    11   NA    NA
## 973        Suc. Belenes     3       3     3    NA    3     6
## 974        Suc. Belenes    49      88    77    95  130    74
## 975        Suc. Belenes    49      70    67    53   39   113
## 976        Suc. Belenes    NA      NA    NA    NA   NA     2
## 977        Suc. Belenes    13      13    11    15   17    25
## 978        Suc. Belenes    27      44    59    19   36    51
## 979        Suc. Belenes    36      42    38    55   30    46
## 980        Suc. Belenes     2       2     2     2    2     3
## 981        Suc. Belenes    15      12     9    12   12    NA
## 982        Suc. Belenes    15      17    17    23   22    24
## 983        Suc. Belenes     3       6     3     9    3     3
## 984        Suc. Belenes     4       6     2     6    2     6
## 985        Suc. Belenes     3       4     2     3    2     4
## 986        Suc. Belenes    NA       1    NA    NA   NA    NA
## 987        Suc. Belenes     1       1     1     1    2     1
## 988        Suc. Belenes    NA       1    NA     1   NA    NA
## 989        Suc. Belenes     4      NA     3     1    2     1
## 990        Suc. Belenes     4       4     5     2    4     5
## 991        Suc. Belenes    NA       1    NA    NA   NA    NA
## 992        Suc. Belenes     1       0     2     0    0     1
## 993        Suc. Belenes     2       3     2     1    2     1
## 994        Suc. Belenes     6       1     4     3    8     6
## 995        Suc. Belenes    NA      NA    NA    NA   NA     1
## 996        Suc. Belenes    NA      NA    NA    NA   NA     1
## 997        Suc. Belenes    NA       4     4     4    2    NA
## 998        Suc. Belenes     2      NA     1     1    1     1
## 999        Suc. Belenes    NA      NA    NA    NA   NA     1
## 1000       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1001       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1002       Suc. Belenes     1       1     1     0    1     1
## 1003       Suc. Belenes     4       1     3     2    4     1
## 1004       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1005       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1006       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1007       Suc. Belenes    NA       2    NA     2   NA     4
## 1008       Suc. Belenes    NA      NA     3    NA    3     3
## 1009       Suc. Belenes    NA      NA     0     0    1     0
## 1010       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1011       Suc. Belenes    NA      NA    NA     2   NA     1
## 1012       Suc. Belenes     1       2     2     1    3     3
## 1013       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1014       Suc. Belenes     2      NA     2    NA   NA    NA
## 1015       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1016       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1017       Suc. Belenes    NA       3     3     3    6     6
## 1018       Suc. Belenes     0      NA    NA    NA    1    NA
## 1019       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1020       Suc. Belenes     1       1    NA     1    3     2
## 1021       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1022       Suc. Belenes     4      NA    NA     2    2     2
## 1023       Suc. Belenes    NA       3     3     3    3    NA
## 1024       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1025       Suc. Belenes     2      NA    NA    NA   NA     1
## 1026       Suc. Belenes     3      NA     2     1    1     1
## 1027       Suc. Belenes     3       1     3     1   NA     2
## 1028       Suc. Belenes     6       6    14    14   14    14
## 1029       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1030       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1031       Suc. Belenes     3       1     5     1    3     3
## 1032       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1033       Suc. Belenes     4      NA     2     4    4     6
## 1034       Suc. Belenes     3       6     8     3   14     6
## 1035       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1036       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1037       Suc. Belenes    NA       2     2    NA    2     1
## 1038       Suc. Belenes     1       3     1     2    3     3
## 1039       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1040       Suc. Belenes     8      11     5     4    6     8
## 1041       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1042       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1043       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1044       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1045       Suc. Belenes     4       4     2     2    2     2
## 1046       Suc. Belenes     3       3     3     3    3    13
## 1047       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1048       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1049       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1050       Suc. Belenes    NA      NA     2    NA   NA     1
## 1051       Suc. Belenes     1       1     1     1    4     1
## 1052       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1053       Suc. Belenes     1       1     1     2    1     2
## 1054       Suc. Belenes    NA      NA     2    NA   NA    NA
## 1055       Suc. Belenes     2       1     2     2    1     1
## 1056       Suc. Belenes    NA      NA    11    NA   NA     3
## 1057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1058       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1059       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1060       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1061       Suc. Belenes     1      NA     1     1   NA     1
## 1062       Suc. Belenes    11       8    13    13   11    13
## 1063       Suc. Belenes     8       8     3     6    3     6
## 1064       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1065       Suc. Belenes    21      21    19    23   25    34
## 1066       Suc. Belenes    NA      NA    NA    NA    1     1
## 1067       Suc. Belenes    NA       1     1     1   NA     1
## 1068       Suc. Belenes     2       1     2     3    3     3
## 1069       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1070       Suc. Belenes    21      24    29    37   29    24
## 1071       Suc. Belenes    NA      NA    NA    NA   NA     3
## 1072       Suc. Belenes     3       3     3    13    6     3
## 1073       Suc. Belenes     5       6     8    11    5     9
## 1074       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1075       Suc. Belenes     3      NA    NA    NA   NA    NA
## 1076       Suc. Belenes    35      53    53    60   42    56
## 1077       Suc. Belenes    70      74    70    95   81    92
## 1078       Suc. Belenes    23      25    30    38   27    36
## 1079       Suc. Belenes    74      72    89    95   91   116
## 1080       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1081       Suc. Belenes     3       2     4     8    5     6
## 1082       Suc. Belenes     3       2     5     5    3     6
## 1083       Suc. Belenes     2       2     2     2    2     2
## 1084       Suc. Belenes     1       1     1     1    1     1
## 1085       Suc. Belenes     1       1    NA     1    1    NA
## 1086       Suc. Belenes     1      NA    NA    NA    1     1
## 1087       Suc. Belenes     2       0     0     0    0     0
## 1088       Suc. Belenes    NA       1    NA    NA    0    NA
## 1089       Suc. Belenes     2       3     2     5    5    NA
## 1090       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1091       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1092       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1093       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1094       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1095       Suc. Belenes     0       0     0     0    0     0
## 1096       Suc. Belenes     3       1     3     4    3     4
## 1097       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1098       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1099       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1100       Suc. Belenes    NA      NA     0    NA    0    NA
## 1101       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1102       Suc. Belenes     1       2     3     4    3     4
## 1103       Suc. Belenes    NA       0     0     0   NA     0
## 1104       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1105       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1106       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1107       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1108       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1109       Suc. Belenes    NA      NA    NA     1   NA     1
## 1110       Suc. Belenes    NA       0     0     0   NA     0
## 1111       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1112       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1113       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1114       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1115       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1116       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1117       Suc. Belenes    NA      NA     3     3    3    NA
## 1118       Suc. Belenes     0      NA    NA     0   NA    NA
## 1119       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1120       Suc. Belenes     1      NA     3     3    3     4
## 1121       Suc. Belenes    NA       0     0     0   NA     0
## 1122       Suc. Belenes     3       3     3    NA   NA     4
## 1123       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1124       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1125       Suc. Belenes    NA      NA     2    NA    2     2
## 1126       Suc. Belenes     1       2     3     4    3     4
## 1127       Suc. Belenes    NA       0     0     0   NA     0
## 1128       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1129       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1130       Suc. Belenes     3      NA     3    NA   NA     1
## 1131       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1132       Suc. Belenes    NA       0    NA    NA   NA     2
## 1133       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1134       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1135       Suc. Belenes     2       2     2     2    4     2
## 1136       Suc. Belenes     3       3     3     3    6     3
## 1137       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1138       Suc. Belenes    NA       3    NA    NA    3    NA
## 1139       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1140       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1141       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1142       Suc. Belenes     2       3     3     5    3     4
## 1143       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1144       Suc. Belenes    NA       1     1     2    1     1
## 1145       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1146       Suc. Belenes    NA       2     2     2    1     1
## 1147       Suc. Belenes     3      NA    NA     3   NA    NA
## 1148       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1149       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1150       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1151       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1152       Suc. Belenes     4      11    13     8   11    11
## 1153       Suc. Belenes    NA      NA    NA    NA   NA     3
## 1154       Suc. Belenes    NA      NA    NA    NA   NA     7
## 1155       Suc. Belenes     2       8     6    11    8    11
## 1156       Suc. Belenes     2       1     2     1    2     2
## 1157       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1158       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1159       Suc. Belenes    21      26    37    26   24    21
## 1160       Suc. Belenes    NA      NA    NA    NA   NA    19
## 1161       Suc. Belenes     6       6    16     6   25    16
## 1162       Suc. Belenes    12       9     6    11   12    12
## 1163       Suc. Belenes    NA      NA     3     6   NA    NA
## 1164       Suc. Belenes     7      11    18    32   35    46
## 1165       Suc. Belenes   155     113   159   169  180   218
## 1166       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1167       Suc. Belenes    17      15    21    19   25    27
## 1168       Suc. Belenes   106      74    95   114   95   135
## 1169       Suc. Belenes     4       1     4     4    4     5
## 1170       Suc. Belenes     2       3     3     3    3     5
## 1171       Suc. Belenes    NA       2     4     4    2     6
## 1172       Suc. Belenes    NA       1    NA     1    2     4
## 1173       Suc. Belenes     1       1     1     3    1     1
## 1174       Suc. Belenes     1      NA    NA     1   NA    NA
## 1175       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1176       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1177       Suc. Belenes     2       0     0     0    0     0
## 1178       Suc. Belenes     4       2     2     3    2     2
## 1179       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1180       Suc. Belenes     2      NA    NA     2    2    NA
## 1181       Suc. Belenes    NA      NA    NA    NA    0    NA
## 1182       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1183       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1184       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1185       Suc. Belenes     0       0     0     0    0     0
## 1186       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1187       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1188       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1189       Suc. Belenes     2      NA    NA    NA   NA     1
## 1190       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1191       Suc. Belenes    NA       1     1     3    1     1
## 1192       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1193       Suc. Belenes    NA       0     0    NA   NA    NA
## 1194       Suc. Belenes    NA       1     1    NA    1     2
## 1195       Suc. Belenes     2       1     1     1    2     1
## 1196       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1197       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1198       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1199       Suc. Belenes    NA       1     1    NA    1     1
## 1200       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1201       Suc. Belenes    NA       1     1    NA    1     2
## 1202       Suc. Belenes    NA       1     1     1    1     1
## 1203       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1204       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1205       Suc. Belenes    NA       1     4    NA    1     1
## 1206       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1207       Suc. Belenes    NA      NA     0    NA   NA    NA
## 1208       Suc. Belenes    NA       1     1    NA    1     2
## 1209       Suc. Belenes     2       1     1     1    1     1
## 1210       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1211       Suc. Belenes    NA      NA     1    NA   NA     1
## 1212       Suc. Belenes    NA      NA    NA    NA    2    NA
## 1213       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1214       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1215       Suc. Belenes     3       1     4    NA    1     4
## 1216       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1217       Suc. Belenes     0      NA     0     0    0     0
## 1218       Suc. Belenes     4       1     1    NA    1     2
## 1219       Suc. Belenes     2       1     1     1    2     1
## 1220       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1221       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1222       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1223       Suc. Belenes    NA       4     3     4   10     3
## 1224       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1225       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1226       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1227       Suc. Belenes     2       2     6     2    2     2
## 1228       Suc. Belenes    NA       3     6     3   10    NA
## 1229       Suc. Belenes    NA       3     3    NA    3     3
## 1230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1231       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1232       Suc. Belenes     0      NA    NA    NA    0    NA
## 1233       Suc. Belenes     1       1     1     1   NA     1
## 1234       Suc. Belenes     0       1    NA    NA   NA     0
## 1235       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1236       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1237       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1238       Suc. Belenes     2      NA     2     2    2     2
## 1239       Suc. Belenes    NA       2    NA    NA    2     2
## 1240       Suc. Belenes    NA       3     3     3    3     3
## 1241       Suc. Belenes     6       4     2     4    6     4
## 1242       Suc. Belenes    NA       1     2     2    3     2
## 1243       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1244       Suc. Belenes     5      11    13     8   11     5
## 1245       Suc. Belenes    NA      NA    NA    NA   NA     6
## 1246       Suc. Belenes     3       3     3     3    3     3
## 1247       Suc. Belenes     5       3     6     3    6     5
## 1248       Suc. Belenes    NA       4    14    14   25    18
## 1249       Suc. Belenes    21      42    42    56   63    46
## 1250       Suc. Belenes     8      13    13    11   13    15
## 1251       Suc. Belenes    23      42    40    40   44    57
## 1252       Suc. Belenes     1       2     2     2    1     2
## 1253       Suc. Belenes    NA      NA     2    NA    2    NA
## 1254       Suc. Belenes    NA       1    NA     1    1    NA
## 1255       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1256       Suc. Belenes     1       1    NA    NA   NA    NA
## 1257       Suc. Belenes     0       0     0    NA   NA    NA
## 1258       Suc. Belenes    NA      NA    NA    NA    0    NA
## 1259       Suc. Belenes     3       6     1     5    4     5
## 1260       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1261       Suc. Belenes     0       0     0    NA   NA    NA
## 1262       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1263       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1264       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1265       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1266       Suc. Belenes     0      NA    NA    NA    0    NA
## 1267       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1268       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1269       Suc. Belenes     1       2     1     1    1     1
## 1270       Suc. Belenes    NA       0     0    NA    0    NA
## 1271       Suc. Belenes    NA      NA    NA    NA    2    NA
## 1272       Suc. Belenes     0      NA    NA    NA    0    NA
## 1273       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1274       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1275       Suc. Belenes    NA       0     0    NA    0    NA
## 1276       Suc. Belenes     0      NA    NA    NA    0    NA
## 1277       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1278       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1279       Suc. Belenes     2       1     1     1   NA     1
## 1280       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1281       Suc. Belenes     3      NA    NA    NA   NA    NA
## 1282       Suc. Belenes    NA       0     0    NA    0    NA
## 1283       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1284       Suc. Belenes    NA       3    NA    NA    3     3
## 1285       Suc. Belenes     0      NA    NA    NA    0    NA
## 1286       Suc. Belenes     0      NA    NA    NA   NA    NA
## 1287       Suc. Belenes     1       2    NA    NA   NA    NA
## 1288       Suc. Belenes     2       2     1     3    1     2
## 1289       Suc. Belenes    NA       0     0    NA    0    NA
## 1290       Suc. Belenes     1      NA     1    NA    1     1
## 1291       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1292       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1293       Suc. Belenes     2      NA     4     2    4     2
## 1294       Suc. Belenes     3      NA     6     3    6     3
## 1295       Suc. Belenes    NA      NA     3    NA   NA    NA
## 1296       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1297       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1298       Suc. Belenes     0      NA    NA     0    0     0
## 1299       Suc. Belenes    NA      NA    NA    NA    1    NA
## 1300       Suc. Belenes     3       1     4     3    1     2
## 1301       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1302       Suc. Belenes     1      NA     1     1    1     1
## 1303       Suc. Belenes     2      NA     1     1    1     1
## 1304       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1305       Suc. Belenes     2       2    NA     4    2    NA
## 1306       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1307       Suc. Belenes    11       8     8    13   15    13
## 1308       Suc. Belenes    NA      NA     2    NA   NA    NA
## 1309       Suc. Belenes    NA       6    NA     6    3     6
## 1310       Suc. Belenes     6       8     6    11    8     6
## 1311       Suc. Belenes    NA      NA    NA    NA   NA     4
## 1312       Suc. Belenes    NA      NA     2     3    3     3
## 1313       Suc. Belenes     4       2     6     8   11     6
## 1314       Suc. Belenes     3      NA    NA    NA   NA     3
## 1315       Suc. Belenes     1       1    NA     1    2     1
## 1316       Suc. Belenes    NA       2    NA     2    2    NA
## 1317       Suc. Belenes     4      NA     2     2    2     4
## 1318       Suc. Belenes    NA      NA     2     4    4     4
## 1319       Suc. Belenes     3      NA    NA    NA   NA    NA
## 1320       Suc. Belenes    13      11    11     8   17    13
## 1321       Suc. Belenes    13      11    16    18   11    16
## 1322       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1323       Suc. Belenes     3       3     3     3    3     3
## 1324       Suc. Belenes     5      11     9     8   11     9
## 1325       Suc. Belenes     6       3     3     6    3     3
## 1326       Suc. Belenes    NA      NA    NA     6   NA    NA
## 1327       Suc. Belenes    NA      18    21    21   25    25
## 1328       Suc. Belenes    92      88    81    99   81    99
## 1329       Suc. Belenes    11       6     8    15   11     8
## 1330       Suc. Belenes    34      49    59    59   44    46
## 1331       Suc. Belenes     9       7    11     8   14    13
## 1332       Suc. Belenes     6       5     5     6    8     6
## 1333       Suc. Belenes     2      NA     1    NA   NA    NA
## 1334       Suc. Belenes     1       1     1     1    1     1
## 1335       Suc. Belenes     1      NA     2    NA   NA    NA
## 1336       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1337       Suc. Belenes     2       0     0     0    0     0
## 1338       Suc. Belenes    NA      NA     2    NA   NA    NA
## 1339       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1340       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1341       Suc. Belenes     0       0     0     0    0     0
## 1342       Suc. Belenes     1       1     1     1    1     2
## 1343       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1344       Suc. Belenes     2       2    NA     2   NA     2
## 1345       Suc. Belenes    NA       3     6     6    8     3
## 1346       Suc. Belenes     0      NA    NA     0    0     0
## 1347       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1348       Suc. Belenes    NA       2    NA     3    1    NA
## 1349       Suc. Belenes     1       1     1     3    1     2
## 1350       Suc. Belenes    NA       0    NA     0   NA    NA
## 1351       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1352       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1353       Suc. Belenes     0      NA    NA     0    0     0
## 1354       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1355       Suc. Belenes    NA      NA    NA     1    1    NA
## 1356       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1357       Suc. Belenes    NA       0    NA     0   NA    NA
## 1358       Suc. Belenes     0      NA    NA     0    0     0
## 1359       Suc. Belenes    NA      NA    NA    NA    0    NA
## 1360       Suc. Belenes    NA      NA    NA     1    1    NA
## 1361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1362       Suc. Belenes     1       1     1     1    2     2
## 1363       Suc. Belenes     3       3    11     6    8     3
## 1364       Suc. Belenes     0      NA    NA    NA   NA    NA
## 1365       Suc. Belenes     2      NA     2    NA    2     2
## 1366       Suc. Belenes    NA       1     1     3    1     1
## 1367       Suc. Belenes    NA       0    NA     0   NA    NA
## 1368       Suc. Belenes     2      NA    NA     2    2     2
## 1369       Suc. Belenes    NA      NA     6    NA    8     6
## 1370       Suc. Belenes     0      NA    NA     0    0     0
## 1371       Suc. Belenes    NA      NA     0     0   NA     0
## 1372       Suc. Belenes    NA      NA     2     3    1     2
## 1373       Suc. Belenes     2       2     1     1    1     1
## 1374       Suc. Belenes    NA       0    NA     0   NA    NA
## 1375       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1376       Suc. Belenes     1       1    NA    NA    1    NA
## 1377       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1378       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1379       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1380       Suc. Belenes    19     108     2     2   13    15
## 1381       Suc. Belenes    16      73     3     3   16    13
## 1382       Suc. Belenes     3      18    NA    NA   NA     3
## 1383       Suc. Belenes     7      NA    NA    NA   NA    NA
## 1384       Suc. Belenes     8      48    NA    NA   NA     5
## 1385       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1386       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1387       Suc. Belenes     1       1     1     1    0     1
## 1388       Suc. Belenes     1       1     1     1   NA     1
## 1389       Suc. Belenes     3       1    NA     2    2     4
## 1390       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1391       Suc. Belenes     1      NA    NA     1    2     1
## 1392       Suc. Belenes    NA       2     4    NA   NA     2
## 1393       Suc. Belenes     2       2     3     1    2     1
## 1394       Suc. Belenes    NA       8     8     3    6     8
## 1395       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1396       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1397       Suc. Belenes     4       4     2     2    6     2
## 1398       Suc. Belenes    15       8    15    15   13    15
## 1399       Suc. Belenes     2       2     2     2    2     3
## 1400       Suc. Belenes    11       7    11     4    7    11
## 1401       Suc. Belenes     3       3     5     3    2     3
## 1402       Suc. Belenes    15      15    17    19   30    19
## 1403       Suc. Belenes     4       6     5     7    9     8
## 1404       Suc. Belenes     3       2     5     5    3     5
## 1405       Suc. Belenes     1       2     2     1   NA    NA
## 1406       Suc. Belenes     2      NA     2     2    2     4
## 1407       Suc. Belenes     3      NA    NA    NA   NA    NA
## 1408       Suc. Belenes     4       2     4     6    8     4
## 1409       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1410       Suc. Belenes     1      NA    NA    NA   NA     2
## 1411       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1412       Suc. Belenes    40      26    40    45   21    26
## 1413       Suc. Belenes    NA      NA    NA    NA   NA    19
## 1414       Suc. Belenes    25      35    73    54   16    32
## 1415       Suc. Belenes    17      15    21    39   12    24
## 1416       Suc. Belenes    NA       2     3     3    3     3
## 1417       Suc. Belenes     3      NA    NA     6   NA    NA
## 1418       Suc. Belenes    42      28    81     4   NA    18
## 1419       Suc. Belenes   151     127   151   134  229   151
## 1420       Suc. Belenes     4       4     4    NA   NA    NA
## 1421       Suc. Belenes    36      36    44    30   32    19
## 1422       Suc. Belenes    82      68    85    91   97    99
## 1423       Suc. Belenes     2       1     1     1    1     2
## 1424       Suc. Belenes     9       8    13     9   13    13
## 1425       Suc. Belenes     9       6     6     8    9     8
## 1426       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1427       Suc. Belenes     7       7     5     4    5     5
## 1428       Suc. Belenes    NA       1     1     1    1     1
## 1429       Suc. Belenes    NA      NA    NA     1    1    NA
## 1430       Suc. Belenes    NA      NA    NA    NA    3    NA
## 1431       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1432       Suc. Belenes     3       0     0     0    0     0
## 1433       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1434       Suc. Belenes     2      NA     2     1    1     0
## 1435       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1436       Suc. Belenes    NA       2     4    NA    2     2
## 1437       Suc. Belenes    NA       3     1     2   NA    NA
## 1438       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1439       Suc. Belenes     0       0     0     0    0     0
## 1440       Suc. Belenes     5      NA    NA    NA    3     1
## 1441       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1442       Suc. Belenes    NA      NA     1     3    6    NA
## 1443       Suc. Belenes     4       4     7    NA    4    NA
## 1444       Suc. Belenes     1       1     1     1    0     1
## 1445       Suc. Belenes     0       1     2     1    3     3
## 1446       Suc. Belenes     2      NA     3     2    4    NA
## 1447       Suc. Belenes     1       1     1     2    2     2
## 1448       Suc. Belenes    NA       0     0     0    0     0
## 1449       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1450       Suc. Belenes    NA      NA     1    NA    1    NA
## 1451       Suc. Belenes     0       1     1     0    0     0
## 1452       Suc. Belenes    NA      NA    NA     0   NA    NA
## 1453       Suc. Belenes    NA       2     1    NA   NA    NA
## 1454       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1455       Suc. Belenes    NA       0     0     0    0     0
## 1456       Suc. Belenes    NA      NA     1    NA    1     3
## 1457       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1458       Suc. Belenes     1       1     1     1    0     1
## 1459       Suc. Belenes    NA      NA     0     1   NA    NA
## 1460       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1461       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1462       Suc. Belenes     3       1     1     3    2     3
## 1463       Suc. Belenes    NA      NA    NA    NA   NA     3
## 1464       Suc. Belenes     3      NA     3    NA    3    NA
## 1465       Suc. Belenes    11      NA    11    NA   NA     4
## 1466       Suc. Belenes    NA       1    NA     0    3     6
## 1467       Suc. Belenes     4       2    11     4    6     2
## 1468       Suc. Belenes     3      NA    NA     1    3    NA
## 1469       Suc. Belenes    NA       0     0     0    0     0
## 1470       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1471       Suc. Belenes    NA       6     1    NA    4    NA
## 1472       Suc. Belenes    11       4     7     7    7     4
## 1473       Suc. Belenes     1       1     1     1    0     1
## 1474       Suc. Belenes     1       2     2     2    1     3
## 1475       Suc. Belenes     2      NA     1     2   11     4
## 1476       Suc. Belenes     3       1     1     3    1     4
## 1477       Suc. Belenes    NA       0     0     0    0     0
## 1478       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1479       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1480       Suc. Belenes     6      10     4     4    6     7
## 1481       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1482       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1483       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1484       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1485       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1486       Suc. Belenes     6      27    11     4    2     2
## 1487       Suc. Belenes     3       3    10    13    3     3
## 1488       Suc. Belenes    18      28    14    14   28    11
## 1489       Suc. Belenes    NA      10    NA     8   NA    NA
## 1490       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1491       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1492       Suc. Belenes     1       1     1     2    3     2
## 1493       Suc. Belenes     4       3     3     3    4     1
## 1494       Suc. Belenes     6       2    NA     2    6    NA
## 1495       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1496       Suc. Belenes    NA       1     1     1    1     1
## 1497       Suc. Belenes    NA       1     2     1    1     1
## 1498       Suc. Belenes    NA      37    NA    28   NA    28
## 1499       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1500       Suc. Belenes    NA      NA     0    NA   NA    NA
## 1501       Suc. Belenes    NA      NA    NA    NA    1     1
## 1502       Suc. Belenes    NA       3    NA     1    1     5
## 1503       Suc. Belenes     6       8     8     8   13     8
## 1504       Suc. Belenes     6       6     3    14    8     8
## 1505       Suc. Belenes     6      NA     3     3    6     6
## 1506       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1507       Suc. Belenes    17      32    17    21   40    NA
## 1508       Suc. Belenes     2       1     4     3    3     3
## 1509       Suc. Belenes    NA       2    NA     2    2     2
## 1510       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1511       Suc. Belenes     2      NA     2     2    2     4
## 1512       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1513       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1514       Suc. Belenes    48      71    32    42   77     5
## 1515       Suc. Belenes    NA      NA    NA    NA   NA    38
## 1516       Suc. Belenes    22      19    25    25   29    29
## 1517       Suc. Belenes    17      12    15    15   30     2
## 1518       Suc. Belenes    NA      NA    NA     6   NA    NA
## 1519       Suc. Belenes    11       6     8     8   14     8
## 1520       Suc. Belenes    49      88    49    88  102    56
## 1521       Suc. Belenes    74     232    42   144  236   127
## 1522       Suc. Belenes    25      53    11    19   44    30
## 1523       Suc. Belenes    23     101    25    80  118    59
## 1524       Suc. Belenes     6       4     8     7    6     6
## 1525       Suc. Belenes     5       5     3     7    6     6
## 1526       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1527       Suc. Belenes     6       6     4     6    4     6
## 1528       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1529       Suc. Belenes    NA       2     1     1    1     1
## 1530       Suc. Belenes    NA      NA    NA     1    1    NA
## 1531       Suc. Belenes     8      NA    NA    NA    3     1
## 1532       Suc. Belenes     4      NA     4     2    2     2
## 1533       Suc. Belenes     2       0     0     0    0     0
## 1534       Suc. Belenes     1       2    NA     3    2     1
## 1535       Suc. Belenes     3      22    NA     1   NA    NA
## 1536       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1537       Suc. Belenes     4       2     2     2    4     2
## 1538       Suc. Belenes     1       1     0     1    0     1
## 1539       Suc. Belenes     1       1    NA    NA   NA    NA
## 1540       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1541       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1542       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1543       Suc. Belenes     0       0     0     0    0     0
## 1544       Suc. Belenes     6       1     3     3    4     5
## 1545       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1546       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1547       Suc. Belenes     6       6     6     8    6     8
## 1548       Suc. Belenes     0       0    NA    NA   NA     0
## 1549       Suc. Belenes    NA      NA     1     2    1     1
## 1550       Suc. Belenes     4       3     3     4    4     3
## 1551       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1552       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1553       Suc. Belenes    NA       3     6     3    8    NA
## 1554       Suc. Belenes    NA      NA    NA    NA    2     0
## 1555       Suc. Belenes    NA      NA     1    NA    1     1
## 1556       Suc. Belenes     4       1     3     3    2     3
## 1557       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1558       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1559       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1560       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1561       Suc. Belenes     2      NA     1    NA    1     1
## 1562       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1563       Suc. Belenes     2       1     3     3    4     4
## 1564       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1565       Suc. Belenes     3      17     8    14   20    17
## 1566       Suc. Belenes    NA      NA     0    NA   NA     0
## 1567       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1568       Suc. Belenes     4       3     4     4    4     4
## 1569       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1570       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1571       Suc. Belenes    NA      23     3    14   23    NA
## 1572       Suc. Belenes    NA      NA    NA     0   NA     1
## 1573       Suc. Belenes    NA      NA     1    NA    1     1
## 1574       Suc. Belenes     4       3     4     4    4     6
## 1575       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1576       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1577       Suc. Belenes     6       8     7    13   10     2
## 1578       Suc. Belenes    NA      NA     3    NA   NA    NA
## 1579       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1580       Suc. Belenes    NA       3    11    NA    3    11
## 1581       Suc. Belenes     3      NA     5     5    3     9
## 1582       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1583       Suc. Belenes     6      15    21     2    2     8
## 1584       Suc. Belenes    10       6    16    13    6    22
## 1585       Suc. Belenes    NA      NA     2     1   NA    NA
## 1586       Suc. Belenes     3       3     5    NA    3    14
## 1587       Suc. Belenes     4       4     4    NA    7     7
## 1588       Suc. Belenes     5       8    10     3    5    23
## 1589       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1590       Suc. Belenes     4       5     4     3    2     3
## 1591       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1592       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1593       Suc. Belenes     1       0     1    NA    0     1
## 1594       Suc. Belenes    NA      NA     2    NA   NA    NA
## 1595       Suc. Belenes     3       3    NA    NA    1     3
## 1596       Suc. Belenes     7       5     4     7   NA     8
## 1597       Suc. Belenes     1       1    NA    NA   NA     0
## 1598       Suc. Belenes     1       3     1     1    1     1
## 1599       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1600       Suc. Belenes     3       3     1     1    2     1
## 1601       Suc. Belenes     8      17     3    20    6     8
## 1602       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1603       Suc. Belenes    NA      NA     0    NA   NA    NA
## 1604       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1605       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1606       Suc. Belenes     1       1    NA    NA   NA    NA
## 1607       Suc. Belenes     4       2     8    NA    8     8
## 1608       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1609       Suc. Belenes     2      NA    NA     2   NA    NA
## 1610       Suc. Belenes    NA       4     2     6   NA    NA
## 1611       Suc. Belenes    21      11    29    NA   11    21
## 1612       Suc. Belenes    25      25    25     3   29    35
## 1613       Suc. Belenes    25      32    16    38   29    19
## 1614       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1615       Suc. Belenes    15      17    27    30   26    14
## 1616       Suc. Belenes    NA      NA    NA     3   NA    NA
## 1617       Suc. Belenes    NA       3    NA     6   NA    NA
## 1618       Suc. Belenes    NA       6     3    NA   NA    NA
## 1619       Suc. Belenes    70     116   102    77   67   127
## 1620       Suc. Belenes    56      88   106    42   74    46
## 1621       Suc. Belenes     2       2    15    NA   NA     2
## 1622       Suc. Belenes    19       6    27    23    4    15
## 1623       Suc. Belenes    72      85    82   139  104    82
## 1624       Suc. Belenes     4       4     4     3    4     5
## 1625       Suc. Belenes     2       2     6     5   NA     5
## 1626       Suc. Belenes     6       4     6     2    6    10
## 1627       Suc. Belenes     8       7     8     3    8    10
## 1628       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1629       Suc. Belenes     1       1     1     8    4     4
## 1630       Suc. Belenes     3      NA     1     5    2     2
## 1631       Suc. Belenes    10       4     5    15   13    10
## 1632       Suc. Belenes    NA      NA     2     1    1     2
## 1633       Suc. Belenes     1       1     1    NA    1    NA
## 1634       Suc. Belenes     4       2     2     1    0     0
## 1635       Suc. Belenes     1       3    NA    NA    2    NA
## 1636       Suc. Belenes    14      11     7    10   16     5
## 1637       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1638       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1639       Suc. Belenes    NA       2     4     2    2     2
## 1640       Suc. Belenes     1       0     1     1   NA     1
## 1641       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1642       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1643       Suc. Belenes     0       0     1     0    0     0
## 1644       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1645       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1646       Suc. Belenes    NA       4    NA    NA   NA     2
## 1647       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1648       Suc. Belenes     3      NA    11     6    6    14
## 1649       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1650       Suc. Belenes     7       7     7     8    7     7
## 1651       Suc. Belenes     1       0     1    NA    0     1
## 1652       Suc. Belenes     3       5     5     3    8    10
## 1653       Suc. Belenes    NA       1     2     2   NA     1
## 1654       Suc. Belenes     3       6    NA     2   NA    NA
## 1655       Suc. Belenes    NA       1     1    NA    2     2
## 1656       Suc. Belenes     3       2    NA    NA   NA     2
## 1657       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1658       Suc. Belenes    NA       6     8     8   11    17
## 1659       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1660       Suc. Belenes     7      25    18     1    4     4
## 1661       Suc. Belenes     0       0     0    NA    0     1
## 1662       Suc. Belenes     5       2     9     5    8    10
## 1663       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1664       Suc. Belenes    NA       3     2     2    2     1
## 1665       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1666       Suc. Belenes    NA       1     1    NA    2     2
## 1667       Suc. Belenes    NA       2    NA    NA   NA     2
## 1668       Suc. Belenes    NA      NA    NA     3   NA    NA
## 1669       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1670       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1671       Suc. Belenes     1       0     1    NA    0     1
## 1672       Suc. Belenes     0      NA    NA    NA    1     3
## 1673       Suc. Belenes    NA       1     2     2    2     1
## 1674       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1675       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1676       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1677       Suc. Belenes    NA      NA     6    NA    8     8
## 1678       Suc. Belenes     7       4     4     4   NA     4
## 1679       Suc. Belenes    NA      NA     3     0    4     3
## 1680       Suc. Belenes     2      NA    NA    NA    6    NA
## 1681       Suc. Belenes    NA      NA    NA    NA    1    NA
## 1682       Suc. Belenes    NA       1     1    NA    2     2
## 1683       Suc. Belenes    NA       2    NA    NA   NA     2
## 1684       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1685       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1686       Suc. Belenes     3      NA     6     3    8     8
## 1687       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1688       Suc. Belenes    NA      14     4     4    7     4
## 1689       Suc. Belenes     1       0     1    NA    0     1
## 1690       Suc. Belenes     2       3     5     3    5    14
## 1691       Suc. Belenes    NA       3     2     2    2     1
## 1692       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1693       Suc. Belenes    NA       1     1    NA    2     2
## 1694       Suc. Belenes     1      NA    NA     1    1    NA
## 1695       Suc. Belenes    NA       0    NA    NA   NA    NA
## 1696       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1697       Suc. Belenes     3      NA    NA    NA    3     3
## 1698       Suc. Belenes     1       4    NA     5    5     5
## 1699       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1700       Suc. Belenes     2      95     2     2   27    27
## 1701       Suc. Belenes     6     101     3    16   35    41
## 1702       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1703       Suc. Belenes     7      14    NA    18    7     4
## 1704       Suc. Belenes     5      36    NA     8   10    10
## 1705       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1706       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1707       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1708       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1709       Suc. Belenes     1       0     0     0    0     1
## 1710       Suc. Belenes     5       4    NA    NA   NA     1
## 1711       Suc. Belenes    NA       2    NA     1   NA     1
## 1712       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1713       Suc. Belenes    NA       1    NA     1   NA    NA
## 1714       Suc. Belenes     2       4     2     2    4     2
## 1715       Suc. Belenes    NA       4    NA    NA   NA    NA
## 1716       Suc. Belenes    NA       2     1     1   NA    NA
## 1717       Suc. Belenes     3       8     3    11    3     8
## 1718       Suc. Belenes    NA      NA    NA     3    1     3
## 1719       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1720       Suc. Belenes     1      NA     1    NA   NA    NA
## 1721       Suc. Belenes     3      NA    NA    NA   NA    NA
## 1722       Suc. Belenes     2       2    NA    NA   NA    NA
## 1723       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1724       Suc. Belenes     4       2     2     2    4     6
## 1725       Suc. Belenes    NA       1    NA     1   NA    NA
## 1726       Suc. Belenes    23      23    30    40   42    40
## 1727       Suc. Belenes     6       8     6     9   14     6
## 1728       Suc. Belenes    28      31    37    34   59    39
## 1729       Suc. Belenes     6       6     8     8   11    11
## 1730       Suc. Belenes     3      14     5    19   14    12
## 1731       Suc. Belenes    36      40    34    32   49    40
## 1732       Suc. Belenes     3       4     3     8    8     8
## 1733       Suc. Belenes     3       3     3     5    5     6
## 1734       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1735       Suc. Belenes     8       4     8     8   11    11
## 1736       Suc. Belenes     8       8    11    11    8    17
## 1737       Suc. Belenes     6       6     6     2    6     4
## 1738       Suc. Belenes    NA       2    NA     1    1     1
## 1739       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1740       Suc. Belenes    NA      NA    NA    NA    4     4
## 1741       Suc. Belenes    53      53    53    90   69    45
## 1742       Suc. Belenes    NA       6     6     6    6    29
## 1743       Suc. Belenes     3       3     3    NA    3     3
## 1744       Suc. Belenes    17      17    17    21   32    23
## 1745       Suc. Belenes    17      17    20    27   29    29
## 1746       Suc. Belenes    28      28    25    62   73    73
## 1747       Suc. Belenes     6       6     6     8   14     8
## 1748       Suc. Belenes    81      85    77    70   85    92
## 1749       Suc. Belenes    35      28    32    28   28    28
## 1750       Suc. Belenes     7       2     3    NA    5    NA
## 1751       Suc. Belenes    21      15    13    25   15    19
## 1752       Suc. Belenes    49      55    38    49   72    76
## 1753       Suc. Belenes    55      53    38    57   80    80
## 1754       Suc. Belenes     2       2     1     2    2     2
## 1755       Suc. Belenes     6       3     9    18   18    NA
## 1756       Suc. Belenes    13      13    12    20   22    23
## 1757       Suc. Belenes     5       6     6     8    8    11
## 1758       Suc. Belenes     2       2     4     6    8    10
## 1759       Suc. Belenes     4       6     4     5    6     6
## 1760       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1761       Suc. Belenes     2       1     1     1    2     2
## 1762       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1763       Suc. Belenes     1      NA     2     3    3     3
## 1764       Suc. Belenes     2       1     1     5    2     1
## 1765       Suc. Belenes     2       1     2     1   NA     1
## 1766       Suc. Belenes     1       1     1     2    2     5
## 1767       Suc. Belenes     3      13    NA     1    2     2
## 1768       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1769       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1770       Suc. Belenes     2       2     2     6    2    NA
## 1771       Suc. Belenes     0       1    NA     1    1     1
## 1772       Suc. Belenes     1       4     7    NA    3     2
## 1773       Suc. Belenes     1       3     4     3   NA     3
## 1774       Suc. Belenes     4       1     7    NA   NA     2
## 1775       Suc. Belenes     5       2     6     5    5     5
## 1776       Suc. Belenes     1       1     0     1    1     1
## 1777       Suc. Belenes     3       4     5     8    9     8
## 1778       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1779       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1780       Suc. Belenes     2       2     2     4    4     4
## 1781       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1782       Suc. Belenes    NA      NA     3     3   11    NA
## 1783       Suc. Belenes     1       0     0     0    0     1
## 1784       Suc. Belenes     2       2     4     3    6     3
## 1785       Suc. Belenes     1       1     1     1    3     3
## 1786       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1787       Suc. Belenes    NA       1     1     0    0     0
## 1788       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1789       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1790       Suc. Belenes     0       0     0     0    0     1
## 1791       Suc. Belenes     1      NA     1    NA   NA    NA
## 1792       Suc. Belenes     1       1     1     1    3     3
## 1793       Suc. Belenes    NA       1     1     0    0     0
## 1794       Suc. Belenes     2       2     2    NA   NA     2
## 1795       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1796       Suc. Belenes     1       0     0     0    0     1
## 1797       Suc. Belenes     1      NA     4    NA    2     3
## 1798       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1799       Suc. Belenes     1       1     1     1    3     3
## 1800       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1801       Suc. Belenes     1      NA    NA    NA    1    NA
## 1802       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1803       Suc. Belenes     6       3     3     3    6     6
## 1804       Suc. Belenes    NA      NA     2     2    2     3
## 1805       Suc. Belenes     2       2    NA     2    2     4
## 1806       Suc. Belenes    NA      NA     1     4    1     5
## 1807       Suc. Belenes    NA       1     1     0    0     0
## 1808       Suc. Belenes     6       6     4     4    4     8
## 1809       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1810       Suc. Belenes    NA      NA    NA    NA   NA     2
## 1811       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1812       Suc. Belenes     8       6     6     6    3     6
## 1813       Suc. Belenes     1       0     0     0    0     1
## 1814       Suc. Belenes     4      NA     4     5    7     7
## 1815       Suc. Belenes     4      NA    NA    NA   NA    NA
## 1816       Suc. Belenes     1       1     1     1    3     3
## 1817       Suc. Belenes    NA      NA    NA    NA    1    NA
## 1818       Suc. Belenes    NA       1     1     0    0     0
## 1819       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1820       Suc. Belenes     6       2     3    10    7     8
## 1821       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1822       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1823       Suc. Belenes     2       8     6     6   13     8
## 1824       Suc. Belenes     6       6     3     6    6     6
## 1825       Suc. Belenes    11       7     4     7    7     7
## 1826       Suc. Belenes     3       3     3     3    5     3
## 1827       Suc. Belenes     1       1     1     1    0     3
## 1828       Suc. Belenes    NA      NA     1    NA   NA    NA
## 1829       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1830       Suc. Belenes     1       2     1     1    3     3
## 1831       Suc. Belenes     1       0     1     1    2     1
## 1832       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1833       Suc. Belenes    NA       1     1    NA   NA    NA
## 1834       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1835       Suc. Belenes    NA       2     1     1   NA    NA
## 1836       Suc. Belenes     3       3    NA     3    3     3
## 1837       Suc. Belenes     2      NA    NA    NA   NA    NA
## 1838       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1839       Suc. Belenes     6      13     8    13   11    11
## 1840       Suc. Belenes     5       3     3     5    3     6
## 1841       Suc. Belenes     6       8     6     6   11     6
## 1842       Suc. Belenes     6       3     3    11    6     6
## 1843       Suc. Belenes     7       4     4     4    7    11
## 1844       Suc. Belenes    12      12     8    17   15    12
## 1845       Suc. Belenes     8       6     6    13   11     8
## 1846       Suc. Belenes     1       1     1    NA    1     3
## 1847       Suc. Belenes     5       2     5     5    6     6
## 1848       Suc. Belenes     1      NA     1    NA    1    NA
## 1849       Suc. Belenes    NA      NA     2    NA    2    NA
## 1850       Suc. Belenes    NA      NA    NA     3   NA     3
## 1851       Suc. Belenes     2      NA     4    NA    2     4
## 1852       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1853       Suc. Belenes     4       6     8     8   13    15
## 1854       Suc. Belenes    11      11    16    11   18     5
## 1855       Suc. Belenes     6       6    10     6    6     6
## 1856       Suc. Belenes     3       3     3    NA    3     3
## 1857       Suc. Belenes     3       3     3     5    2     2
## 1858       Suc. Belenes     6       6     6     6    9     9
## 1859       Suc. Belenes     8      23     8    17   23    17
## 1860       Suc. Belenes     8       6     6    14    8     6
## 1861       Suc. Belenes     7      18    14    11   18    14
## 1862       Suc. Belenes    25      56    35    53   53    49
## 1863       Suc. Belenes    21      25    19    23   23    23
## 1864       Suc. Belenes    23      15    53     8   36    11
## 1865       Suc. Belenes     5       7     6     6    8     4
## 1866       Suc. Belenes     2       5     2     5    2     5
## 1867       Suc. Belenes    NA      NA     2    NA    2     2
## 1868       Suc. Belenes     2       7     5     2    4     4
## 1869       Suc. Belenes     1       1     1     1    1     3
## 1870       Suc. Belenes     1       2     1     2    2     2
## 1871       Suc. Belenes     1      NA     1     1    2     3
## 1872       Suc. Belenes     5       2     3     2    3     1
## 1873       Suc. Belenes     2       0     0    NA   NA    NA
## 1874       Suc. Belenes     1       1     1     1    1     1
## 1875       Suc. Belenes     2       1     1     2    1     3
## 1876       Suc. Belenes     6       2     2     5    3     4
## 1877       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1878       Suc. Belenes    NA       1     0     1    1     1
## 1879       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1880       Suc. Belenes     0       0     0    NA   NA    NA
## 1881       Suc. Belenes     4       4     2     4    3     6
## 1882       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1883       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1884       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1885       Suc. Belenes     2      NA     2     2    2    NA
## 1886       Suc. Belenes    NA      NA     3    NA    6    NA
## 1887       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1888       Suc. Belenes     0      NA    NA     1   NA     1
## 1889       Suc. Belenes     2      NA     2    NA   NA     2
## 1890       Suc. Belenes    NA       1     1     3    1     1
## 1891       Suc. Belenes    NA       1     0     0   NA     0
## 1892       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1893       Suc. Belenes     0      NA    NA    NA   NA    NA
## 1894       Suc. Belenes    NA      NA    NA    NA   NA     3
## 1895       Suc. Belenes     0      NA    NA    NA   NA    NA
## 1896       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1897       Suc. Belenes     1      NA    NA     1    1    NA
## 1898       Suc. Belenes    NA       1     0     0   NA     0
## 1899       Suc. Belenes     0       2    NA    NA   NA    NA
## 1900       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1901       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1902       Suc. Belenes    NA       2    NA    NA   NA    NA
## 1903       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1904       Suc. Belenes     1       1     3     1    2     2
## 1905       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1906       Suc. Belenes    NA      NA    NA     2   NA     2
## 1907       Suc. Belenes     3       6     3     3    3     3
## 1908       Suc. Belenes    NA      NA    NA     0   NA     0
## 1909       Suc. Belenes     2       2     2    NA    2     2
## 1910       Suc. Belenes     1       1     1     3    1     1
## 1911       Suc. Belenes    NA       1     0     0   NA     0
## 1912       Suc. Belenes     2       2    NA     4   NA    NA
## 1913       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1914       Suc. Belenes     2      NA     2     2    3    NA
## 1915       Suc. Belenes    NA       3     6     3    3    NA
## 1916       Suc. Belenes     1      NA    NA    NA   NA    NA
## 1917       Suc. Belenes    NA       0     2     1    1     3
## 1918       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1919       Suc. Belenes     1       4     3     3    3     1
## 1920       Suc. Belenes    NA       1     0     0   NA     0
## 1921       Suc. Belenes     4       3     6     3   10     7
## 1922       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1923       Suc. Belenes     2      NA     1     1    1     1
## 1924       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1925       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1926       Suc. Belenes     4       2    NA     4   11    11
## 1927       Suc. Belenes     3       3    NA    10   13    19
## 1928       Suc. Belenes    NA      NA     1     0   NA    NA
## 1929       Suc. Belenes     4      NA    NA    NA   NA    NA
## 1930       Suc. Belenes     8      NA    NA    NA   NA     5
## 1931       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1932       Suc. Belenes     0       0     0    NA    0     0
## 1933       Suc. Belenes    NA      NA    NA    NA    1     2
## 1934       Suc. Belenes     1      NA    NA     2    1     4
## 1935       Suc. Belenes    NA      NA    NA    NA   NA     0
## 1936       Suc. Belenes    NA       1    NA     1   NA     1
## 1937       Suc. Belenes    NA      NA    NA    NA    2    NA
## 1938       Suc. Belenes    NA       1    NA     1    1     1
## 1939       Suc. Belenes    NA      NA     3     3    6     3
## 1940       Suc. Belenes    NA      NA    NA     1   NA     1
## 1941       Suc. Belenes    NA       0    NA    NA    0    NA
## 1942       Suc. Belenes     1      NA    NA    NA    1     1
## 1943       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1944       Suc. Belenes     2       2    NA    NA   NA    NA
## 1945       Suc. Belenes     2       2     4    NA   NA     2
## 1946       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1947       Suc. Belenes    11      11    11     2   13    11
## 1948       Suc. Belenes     8       8     8     8   13     5
## 1949       Suc. Belenes    16       3     6     6   13    10
## 1950       Suc. Belenes    10       6     3     6    6     6
## 1951       Suc. Belenes     2       2     3     2    2     3
## 1952       Suc. Belenes    NA      NA    NA     1   NA    NA
## 1953       Suc. Belenes    63      39    35    11   95    74
## 1954       Suc. Belenes    25      21    14    11    4    14
## 1955       Suc. Belenes     4       6     6     2    4     4
## 1956       Suc. Belenes    15      11    13     6   15    21
## 1957       Suc. Belenes    40      27    25    25   19    34
## 1958       Suc. Belenes     1       1     1    NA   NA     2
## 1959       Suc. Belenes     6       2     3    NA    3    NA
## 1960       Suc. Belenes     2       4     4     2    6     4
## 1961       Suc. Belenes     5       3     3     2    4     4
## 1962       Suc. Belenes    NA       1    NA    NA   NA    NA
## 1963       Suc. Belenes    NA       1    NA     1    1     1
## 1964       Suc. Belenes    NA      NA    NA    NA    1    NA
## 1965       Suc. Belenes    NA      NA    NA     2   NA    NA
## 1966       Suc. Belenes    NA       0     0     2    0     0
## 1967       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1968       Suc. Belenes    NA      NA    NA     3    0     1
## 1969       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1970       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1971       Suc. Belenes    NA      NA    NA    NA    1     1
## 1972       Suc. Belenes    NA      NA    NA    NA    1    NA
## 1973       Suc. Belenes    NA      NA    NA     1    2     1
## 1974       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1975       Suc. Belenes    NA       0     0     0    0     0
## 1976       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1977       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1978       Suc. Belenes     2       2     2     2    2    NA
## 1979       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1980       Suc. Belenes     4       1    NA     1   NA     3
## 1981       Suc. Belenes     2       3     1     2   NA     1
## 1982       Suc. Belenes     0       0     0    NA    0     0
## 1983       Suc. Belenes    NA      NA     1    NA    0     2
## 1984       Suc. Belenes     1       1    NA     1    3    NA
## 1985       Suc. Belenes     1       1     1    NA    1     2
## 1986       Suc. Belenes     0      NA    NA    NA   NA     1
## 1987       Suc. Belenes    NA       0     0    NA   NA     0
## 1988       Suc. Belenes     2       2     2     2    2    NA
## 1989       Suc. Belenes    NA      NA    NA    NA   NA     1
## 1990       Suc. Belenes     1       1     3     1    8    NA
## 1991       Suc. Belenes     9       3     4     5    4     1
## 1992       Suc. Belenes     0       0     0    NA    0     0
## 1993       Suc. Belenes     1       0     1     0    1     1
## 1994       Suc. Belenes     3       3     2     1    5    NA
## 1995       Suc. Belenes     2       3     1     1    1     3
## 1996       Suc. Belenes     0      NA    NA    NA   NA     1
## 1997       Suc. Belenes    NA       0     0    NA   NA     0
## 1998       Suc. Belenes     2       2     2     2    2    NA
## 1999       Suc. Belenes     1       1    NA     1   NA    NA
## 2000       Suc. Belenes     2       3     3     2   NA     1
## 2001       Suc. Belenes     0       0     0    NA    0     0
## 2002       Suc. Belenes     1      NA     0     0    0     1
## 2003       Suc. Belenes     1       1    NA     1    3    NA
## 2004       Suc. Belenes     1       1     1    NA    1     1
## 2005       Suc. Belenes     0      NA    NA    NA   NA     1
## 2006       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2007       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2008       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2009       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2010       Suc. Belenes    NA       0     0    NA   NA     0
## 2011       Suc. Belenes     2       2     2     2    2    NA
## 2012       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2013       Suc. Belenes     1       1    NA     1    6    NA
## 2014       Suc. Belenes     2       3     3     2   NA     1
## 2015       Suc. Belenes     0       0     0    NA    0     0
## 2016       Suc. Belenes     1       0     1     0    1     2
## 2017       Suc. Belenes     1       1    NA     1    3     2
## 2018       Suc. Belenes     4       2     1    NA    1     3
## 2019       Suc. Belenes     0      NA    NA    NA   NA     1
## 2020       Suc. Belenes    NA       0     0    NA   NA     0
## 2021       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2022       Suc. Belenes    NA      NA    NA    NA    1     2
## 2023       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2024       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2025       Suc. Belenes     1       1    NA    NA   NA    NA
## 2026       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2027       Suc. Belenes    15      49    40    25   59    53
## 2028       Suc. Belenes    10      13    NA    10   60    57
## 2029       Suc. Belenes    NA      NA     0    NA    0     0
## 2030       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2031       Suc. Belenes    13      25    13    15   10    20
## 2032       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2033       Suc. Belenes     1       3    NA    NA    2    NA
## 2034       Suc. Belenes     3       6     1     2    8    12
## 2035       Suc. Belenes     6       3     2    NA    8     1
## 2036       Suc. Belenes     1       3     1     1    2     1
## 2037       Suc. Belenes     0       2    NA    NA   NA    NA
## 2038       Suc. Belenes     8       5     3     3    5     2
## 2039       Suc. Belenes     8       8     5     6   12     4
## 2040       Suc. Belenes     0       1     1     0    0    NA
## 2041       Suc. Belenes    NA      NA    NA     1    1    NA
## 2042       Suc. Belenes     2      NA    NA    NA    2    NA
## 2043       Suc. Belenes    NA      NA     1     1    1    NA
## 2044       Suc. Belenes     8       6     8     6   14     6
## 2045       Suc. Belenes     3       1    NA    NA   NA    NA
## 2046       Suc. Belenes     1       0     1     1    2     2
## 2047       Suc. Belenes     2       4     4     4   11     3
## 2048       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2049       Suc. Belenes    NA       4    NA    NA   NA    NA
## 2050       Suc. Belenes     1       2     1    NA    1     1
## 2051       Suc. Belenes    NA       2    NA     2    2     4
## 2052       Suc. Belenes     8       6    17    NA   15    11
## 2053       Suc. Belenes     2       3     3     2    5     2
## 2054       Suc. Belenes    14      14    14    20   23    17
## 2055       Suc. Belenes     3       8     6    14   11     6
## 2056       Suc. Belenes     6      17    13    17   30    32
## 2057       Suc. Belenes     7       4     8     7    6     9
## 2058       Suc. Belenes    NA      NA    NA     2    2     3
## 2059       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2060       Suc. Belenes     4       6    11    NA    8     4
## 2061       Suc. Belenes     8       8     3     8    6     3
## 2062       Suc. Belenes    NA       6    NA     4    4     4
## 2063       Suc. Belenes    NA       2    NA    NA   NA     1
## 2064       Suc. Belenes    11      17    23    NA   38    NA
## 2065       Suc. Belenes    40      61    63    NA   66    18
## 2066       Suc. Belenes    NA      NA    NA    NA   NA    51
## 2067       Suc. Belenes    10       3     6     6    6    13
## 2068       Suc. Belenes    27      20    30    15   27    27
## 2069       Suc. Belenes     2      18    18    NA    3     6
## 2070       Suc. Belenes    42      59    34    42   28    62
## 2071       Suc. Belenes    14      17    14     8   17    20
## 2072       Suc. Belenes    63     194    85    42   92   120
## 2073       Suc. Belenes    32      56    63    42   56    88
## 2074       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2075       Suc. Belenes    46      95    51    25   78    32
## 2076       Suc. Belenes    53      91    59   114   95    61
## 2077       Suc. Belenes    14      24    12     8   17    21
## 2078       Suc. Belenes     3       5    14     2    8    15
## 2079       Suc. Belenes    NA       6    12     2    6    18
## 2080       Suc. Belenes     4       4    11     4    7    17
## 2081       Suc. Belenes    NA       3     2     3    3     3
## 2082       Suc. Belenes     4       3     2     3    8     2
## 2083       Suc. Belenes     8       6     5     6    7     6
## 2084       Suc. Belenes     8       8     8    10   11    11
## 2085       Suc. Belenes     6       2     2    NA    4    NA
## 2086       Suc. Belenes     1       1     0     1    2     2
## 2087       Suc. Belenes     5       1     1     2    0    NA
## 2088       Suc. Belenes     7       6    NA     2    5     2
## 2089       Suc. Belenes    14      19    10    13   19    32
## 2090       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2091       Suc. Belenes     2      NA     4     2    2     2
## 2092       Suc. Belenes     2       3     0     1    2     3
## 2093       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2094       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2095       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2096       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2097       Suc. Belenes    NA      NA    NA     0    0    NA
## 2098       Suc. Belenes     2       2    NA     3    1     3
## 2099       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2100       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2101       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2102       Suc. Belenes    NA      NA    NA    NA    1     3
## 2103       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2104       Suc. Belenes    NA       6     3     6    1    NA
## 2105       Suc. Belenes     4       4    NA    NA   14    11
## 2106       Suc. Belenes     0       0    NA    NA   NA    NA
## 2107       Suc. Belenes     0       0     1     1    1     1
## 2108       Suc. Belenes     1       1     6     1    2    NA
## 2109       Suc. Belenes     3       2     4     4    3     6
## 2110       Suc. Belenes    NA      NA     0     0   NA    NA
## 2111       Suc. Belenes    NA       1     0    NA   NA     0
## 2112       Suc. Belenes    NA      NA    NA    NA    1     2
## 2113       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2114       Suc. Belenes     3      NA     6     3    1     6
## 2115       Suc. Belenes    NA       4    NA     4   18    NA
## 2116       Suc. Belenes     0       0    NA    NA   NA    NA
## 2117       Suc. Belenes     0       0     0     1   NA     1
## 2118       Suc. Belenes     1       1     2     5   NA     6
## 2119       Suc. Belenes     4       4     6     4    5     3
## 2120       Suc. Belenes    NA      NA     0     0   NA    NA
## 2121       Suc. Belenes    NA       1     0    NA   NA     0
## 2122       Suc. Belenes    NA      NA    NA    NA    1     2
## 2123       Suc. Belenes    NA       3    NA    NA   NA    NA
## 2124       Suc. Belenes    NA       4    NA    NA   NA    NA
## 2125       Suc. Belenes     0       0    NA    NA   NA    NA
## 2126       Suc. Belenes     0      NA     0     1   NA     1
## 2127       Suc. Belenes     1       1    NA     1   NA    NA
## 2128       Suc. Belenes     1       3     1     2    1     2
## 2129       Suc. Belenes    NA      NA     0     0   NA    NA
## 2130       Suc. Belenes     3       3     4     4    3     5
## 2131       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2132       Suc. Belenes    NA      11     8    NA    1    NA
## 2133       Suc. Belenes     7       4    NA    NA   21     4
## 2134       Suc. Belenes    NA      NA    NA    NA    1    NA
## 2135       Suc. Belenes    NA      NA     4    NA    2     2
## 2136       Suc. Belenes     4       5     3     5    4     3
## 2137       Suc. Belenes    NA       1     0    NA   NA     0
## 2138       Suc. Belenes    NA      NA    NA    NA    1     2
## 2139       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2140       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2141       Suc. Belenes    NA      11     6    NA    1     3
## 2142       Suc. Belenes     7      11    NA     4   28    14
## 2143       Suc. Belenes     0       0    NA    NA    3    NA
## 2144       Suc. Belenes     1      NA     1     1   NA     4
## 2145       Suc. Belenes     1       1    NA     3    6     2
## 2146       Suc. Belenes     4       8     6     5    8     8
## 2147       Suc. Belenes    NA      NA     0     0   NA    NA
## 2148       Suc. Belenes    NA       1     0    NA   NA     0
## 2149       Suc. Belenes    NA       1     1    NA   NA    NA
## 2150       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2151       Suc. Belenes    30      50    25    37   36    43
## 2152       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2153       Suc. Belenes    NA       1     1     3    7     7
## 2154       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2155       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2156       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2157       Suc. Belenes    NA      NA    NA     2    2     2
## 2158       Suc. Belenes    NA      NA    NA     3    3     3
## 2159       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2160       Suc. Belenes    NA      NA    NA     3   NA     3
## 2161       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2162       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2163       Suc. Belenes     1      NA     1     1   NA     1
## 2164       Suc. Belenes    NA       1    NA     1   NA     1
## 2165       Suc. Belenes    NA       1     1     1   NA     1
## 2166       Suc. Belenes    NA      NA    NA     3   NA    NA
## 2167       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2168       Suc. Belenes     2      NA    NA     4    2     4
## 2169       Suc. Belenes     3      NA    NA    NA   NA    NA
## 2170       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2171       Suc. Belenes   142      25    NA     6   66    32
## 2172       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2173       Suc. Belenes   124      85    NA    26   95    26
## 2174       Suc. Belenes    NA      NA    NA    NA   NA    60
## 2175       Suc. Belenes   206     117    25    63   86    63
## 2176       Suc. Belenes    11       8     2    23   15    29
## 2177       Suc. Belenes    15      NA    NA    NA   32    NA
## 2178       Suc. Belenes    NA      NA    NA     6   17     3
## 2179       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2180       Suc. Belenes   310     113    NA    14   46    99
## 2181       Suc. Belenes   778     419    67   335  257   278
## 2182       Suc. Belenes    NA      NA    NA    NA   NA     7
## 2183       Suc. Belenes    NA      NA    NA    NA    2    NA
## 2184       Suc. Belenes   152      38    NA    70   82   101
## 2185       Suc. Belenes   934     579   254   311  353   486
## 2186       Suc. Belenes     8       6     2    17    5    43
## 2187       Suc. Belenes     2       2     2    NA    2     2
## 2188       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2189       Suc. Belenes    NA       1    NA    NA    3     4
## 2190       Suc. Belenes    NA      NA    NA     1   NA     1
## 2191       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2192       Suc. Belenes    NA      NA    NA     3   NA    NA
## 2193       Suc. Belenes     0       0    NA     0   NA     0
## 2194       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2195       Suc. Belenes     1      NA    NA     5   NA     3
## 2196       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2197       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2198       Suc. Belenes    NA       0    NA     0   NA     0
## 2199       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2200       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2201       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2202       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2203       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2204       Suc. Belenes    NA       6     1     3   20     6
## 2205       Suc. Belenes    NA      NA    NA    NA    1    NA
## 2206       Suc. Belenes    NA      NA    NA    NA    1     3
## 2207       Suc. Belenes    10       7     2     3   16     3
## 2208       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2209       Suc. Belenes    NA      NA    NA     0    1     1
## 2210       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2211       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2212       Suc. Belenes    NA      NA     1    NA    3     8
## 2213       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2214       Suc. Belenes    NA      NA    NA    NA    0     1
## 2215       Suc. Belenes   223      64    32    73   29   126
## 2216       Suc. Belenes    NA      NA    NA     0    1     1
## 2217       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2218       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2219       Suc. Belenes    NA      NA     1    NA   NA    NA
## 2220       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2221       Suc. Belenes    NA      NA    NA     0    1     2
## 2222       Suc. Belenes   244       1    21    39   45   128
## 2223       Suc. Belenes    NA      NA    NA    NA   11     3
## 2224       Suc. Belenes     4      NA     4     4   NA    NA
## 2225       Suc. Belenes    NA      NA    NA     0    1     1
## 2226       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2227       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2228       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2229       Suc. Belenes     3      NA     4    NA    8     3
## 2230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2231       Suc. Belenes    NA      NA    NA     0    1     3
## 2232       Suc. Belenes     1       5     4    22   20     7
## 2233       Suc. Belenes    NA      NA    NA     0    1     1
## 2234       Suc. Belenes    NA      NA    NA    NA    3    NA
## 2235       Suc. Belenes    NA      NA     4    NA   NA    NA
## 2236       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2237       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2238       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2239       Suc. Belenes     2       4     4    NA    2     4
## 2240       Suc. Belenes     3      19     3    NA    3    10
## 2241       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2242       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2243       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2244       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2245       Suc. Belenes     2       3     1     4    3     3
## 2246       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2247       Suc. Belenes    NA       3     1    NA    1     1
## 2248       Suc. Belenes    NA       3     1    NA    1     2
## 2249       Suc. Belenes     3      NA    NA    NA   NA    NA
## 2250       Suc. Belenes     8       2     2     6    2     4
## 2251       Suc. Belenes     4       2     4     8    6     4
## 2252       Suc. Belenes    NA       1    NA     1    1     1
## 2253       Suc. Belenes    13       4     6     4    8     6
## 2254       Suc. Belenes     3       3    NA     3   NA    NA
## 2255       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2256       Suc. Belenes    22       3     6    48    3    NA
## 2257       Suc. Belenes     5       5     5    12    2     5
## 2258       Suc. Belenes    NA      NA     7    35   28    21
## 2259       Suc. Belenes    74      81    74    85   21    42
## 2260       Suc. Belenes     3       3     2     2   NA    NA
## 2261       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2262       Suc. Belenes     6       4     6    11   13    11
## 2263       Suc. Belenes   116      93   118   123  110   106
## 2264       Suc. Belenes     2       3     2     4    4     3
## 2265       Suc. Belenes     2       2    NA     4   NA     2
## 2266       Suc. Belenes     2       2     2     1   NA     1
## 2267       Suc. Belenes    NA       1     1    NA    1     1
## 2268       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2269       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2270       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2271       Suc. Belenes     0       4     0    NA    0     2
## 2272       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2273       Suc. Belenes     5       5     5     4    7     3
## 2274       Suc. Belenes    NA      NA    NA     0    1    NA
## 2275       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2276       Suc. Belenes     0       0     0    NA    0     0
## 2277       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2278       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2279       Suc. Belenes     0       0     0     0    0     0
## 2280       Suc. Belenes    NA       2     2    NA   NA     2
## 2281       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2282       Suc. Belenes    NA       0    NA     0   NA    NA
## 2283       Suc. Belenes    NA       1    NA     3   NA    NA
## 2284       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2285       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2286       Suc. Belenes    NA       0    NA     0   NA    NA
## 2287       Suc. Belenes     3       6    NA    11    3     8
## 2288       Suc. Belenes     0      NA     0     0   NA    NA
## 2289       Suc. Belenes     2       2     2     6    6     8
## 2290       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2291       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2292       Suc. Belenes    NA       3     3     3   NA    NA
## 2293       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2294       Suc. Belenes    NA       2    NA    NA   NA    NA
## 2295       Suc. Belenes    NA       0    NA     0   NA    NA
## 2296       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2297       Suc. Belenes     6       1     3     8   NA    NA
## 2298       Suc. Belenes     0       0     0     0   NA    NA
## 2299       Suc. Belenes     4       4     2     6    8     8
## 2300       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2301       Suc. Belenes    NA       0    NA     0   NA    NA
## 2302       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2303       Suc. Belenes     1       3     3    NA    1     1
## 2304       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2306       Suc. Belenes    17       8    NA     2    2    23
## 2307       Suc. Belenes    22       3    NA     3    3     3
## 2308       Suc. Belenes     3       3    NA    NA   NA    NA
## 2309       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2310       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2311       Suc. Belenes    NA      NA    NA    NA    1    NA
## 2312       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2313       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2314       Suc. Belenes     3       4     1     2    3     3
## 2315       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2316       Suc. Belenes    NA       1    NA     1   NA    NA
## 2317       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2318       Suc. Belenes    NA       1     1     1   NA     1
## 2319       Suc. Belenes    NA      NA    NA    NA   NA    11
## 2320       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2321       Suc. Belenes     2      NA     4    NA    2     2
## 2322       Suc. Belenes    13      38    19    25   19    36
## 2323       Suc. Belenes     3      NA     3     2    3     3
## 2324       Suc. Belenes    48      39    76     3   51    76
## 2325       Suc. Belenes     8       4    32    NA   11    23
## 2326       Suc. Belenes     2       1     2     2    3     2
## 2327       Suc. Belenes     2       3    NA     5    2     5
## 2328       Suc. Belenes     6       4     6     2    8     6
## 2329       Suc. Belenes     2       4     4    NA    6     6
## 2330       Suc. Belenes    NA      NA    NA     3   NA    NA
## 2331       Suc. Belenes     2      NA     2     1   NA     2
## 2332       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2333       Suc. Belenes    58      69    53    71   50    NA
## 2334       Suc. Belenes    NA      NA    NA    NA   NA    38
## 2335       Suc. Belenes     3       3     6     3    3     3
## 2336       Suc. Belenes    NA      NA    NA     5   NA    NA
## 2337       Suc. Belenes     9      23     5    23    5    18
## 2338       Suc. Belenes    NA      NA    34    34    6     6
## 2339       Suc. Belenes    NA     201   187    42  180   137
## 2340       Suc. Belenes    67      95   148   130   46   123
## 2341       Suc. Belenes    36      25    27    NA   49    36
## 2342       Suc. Belenes    53      59    34   125   34    70
## 2343       Suc. Belenes     6       6     5     7   10    16
## 2344       Suc. Belenes     3      24    NA     4    5    26
## 2345       Suc. Belenes     2      NA    NA    NA   NA    NA
## 2346       Suc. Belenes    NA       1     1    NA   NA     2
## 2347       Suc. Belenes    NA      NA     1     1   NA    NA
## 2348       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2349       Suc. Belenes     2       0     0     0   NA     0
## 2350       Suc. Belenes     2       1     1    NA    2    NA
## 2351       Suc. Belenes     6       5    18     4   11    NA
## 2352       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2353       Suc. Belenes     4       4     4     4    6     6
## 2354       Suc. Belenes    NA       2    NA     1    1     1
## 2355       Suc. Belenes    NA       0     0    NA    0     0
## 2356       Suc. Belenes     3      NA    NA    NA    1     3
## 2357       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2358       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2359       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2360       Suc. Belenes     6       8     6    17   NA     8
## 2361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2362       Suc. Belenes     0      NA     2     0    0    NA
## 2363       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2364       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2365       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2366       Suc. Belenes    NA      NA     6    NA    8     6
## 2367       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2368       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2369       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2370       Suc. Belenes    NA      NA     3     6   NA     3
## 2371       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2372       Suc. Belenes     0      NA     2    NA   NA     2
## 2373       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2374       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2375       Suc. Belenes    NA       8    11     8    6     6
## 2376       Suc. Belenes     6       2    13     6    8    23
## 2377       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2378       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2379       Suc. Belenes    NA      NA    NA     5   NA    NA
## 2380       Suc. Belenes     3      14    14    14   31    17
## 2381       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2382       Suc. Belenes     0       0     2    NA   NA     2
## 2383       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2384       Suc. Belenes     3       1     1     1    1     3
## 2385       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2386       Suc. Belenes     2      16    NA    NA    9     9
## 2387       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2388       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2389       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2390       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2391       Suc. Belenes     2       4     6    19    6    11
## 2392       Suc. Belenes     3      16    35    25   32    25
## 2393       Suc. Belenes    NA      NA     3    NA    3     3
## 2394       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2395       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2396       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2397       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2398       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2399       Suc. Belenes     1      NA    NA     1    1     3
## 2400       Suc. Belenes    11       1     8     6   16    12
## 2401       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2402       Suc. Belenes     1       1     3     2    2     3
## 2403       Suc. Belenes     2      NA    NA    NA   NA    NA
## 2404       Suc. Belenes    NA       1     2     1    1     1
## 2405       Suc. Belenes    23      14     8    17   11    23
## 2406       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2407       Suc. Belenes     0       0     0     0    0    NA
## 2408       Suc. Belenes    NA       1     1     2    1    NA
## 2409       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2410       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2411       Suc. Belenes    NA      NA    NA     4    4    NA
## 2412       Suc. Belenes     1      NA    NA    NA    1    NA
## 2413       Suc. Belenes    21       2    23    13   32    11
## 2414       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2415       Suc. Belenes    32      25    53     7   92    14
## 2416       Suc. Belenes    17      21    13    13   32    17
## 2417       Suc. Belenes     4       2    NA    NA    3     1
## 2418       Suc. Belenes     2       2    NA    NA   NA    NA
## 2419       Suc. Belenes     6       2     2     8    8    11
## 2420       Suc. Belenes    11      23     3    14   NA     6
## 2421       Suc. Belenes    13      15    13     4    8    13
## 2422       Suc. Belenes     2      NA    NA    NA    4    NA
## 2423       Suc. Belenes     2      NA    11     2   NA    NA
## 2424       Suc. Belenes    NA     161   172    11  198    45
## 2425       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2426       Suc. Belenes    54      48    54   105   73    29
## 2427       Suc. Belenes    12       5     2     5    2     2
## 2428       Suc. Belenes    NA      NA    NA     6   NA    NA
## 2429       Suc. Belenes   190     229   204    NA  324    88
## 2430       Suc. Belenes   151     229   215   148  204    99
## 2431       Suc. Belenes    NA      NA    NA    NA    2    NA
## 2432       Suc. Belenes    40      51    38    27   91    13
## 2433       Suc. Belenes    34     116     2    87  144    27
## 2434       Suc. Belenes    21       9    10    11   22     8
## 2435       Suc. Belenes     6      12    NA     9   12     9
## 2436       Suc. Belenes     6      12     6    NA   24     6
## 2437       Suc. Belenes     2       5    NA    NA    3     5
## 2438       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2439       Suc. Belenes    NA       1     1     5    1     3
## 2440       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2441       Suc. Belenes     3       1    NA     3    4     3
## 2442       Suc. Belenes     0       0     0     1    1     0
## 2443       Suc. Belenes    NA       1    NA    NA    0    NA
## 2444       Suc. Belenes     4       4     5     3    8     2
## 2445       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2446       Suc. Belenes     2       2     2     4   NA     2
## 2447       Suc. Belenes     1       1     0     1    1     0
## 2448       Suc. Belenes     2       1     3     3    2     4
## 2449       Suc. Belenes     2       1     2     3    2     1
## 2450       Suc. Belenes     2       1     5     3    6     5
## 2451       Suc. Belenes     2       1     3     3    2     4
## 2452       Suc. Belenes     0       2     2     2    3     2
## 2453       Suc. Belenes     1       3     3     3    1     1
## 2454       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2455       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2456       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2457       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2458       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2459       Suc. Belenes    NA      17    NA     3    1     4
## 2460       Suc. Belenes    NA      NA     4     3    5     9
## 2461       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2462       Suc. Belenes     2       2     1     5    2     1
## 2463       Suc. Belenes     3       2     3     3    3     4
## 2464       Suc. Belenes    NA       1    NA     0    0    NA
## 2465       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2466       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2467       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2468       Suc. Belenes    NA      11    11     3    1     4
## 2469       Suc. Belenes    NA      NA     4     3    5     5
## 2470       Suc. Belenes     0      NA    NA     0   NA    NA
## 2471       Suc. Belenes     2       2     3     5    4     1
## 2472       Suc. Belenes     4       2    NA    NA    4     4
## 2473       Suc. Belenes    NA       1    NA     0    0    NA
## 2474       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2475       Suc. Belenes    NA      11    11    NA    1     1
## 2476       Suc. Belenes    NA      NA     4     3    9     9
## 2477       Suc. Belenes    NA       0    NA    NA   NA    NA
## 2478       Suc. Belenes     2      NA     1     5    2     3
## 2479       Suc. Belenes     1       2    NA     2    3     3
## 2480       Suc. Belenes     3       2     3     1    1    NA
## 2481       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2482       Suc. Belenes    NA      17    NA     3    3     6
## 2483       Suc. Belenes     4      NA    NA    NA    4    NA
## 2484       Suc. Belenes    NA       4     2    NA   NA    NA
## 2485       Suc. Belenes     3      NA    NA     1   NA     3
## 2486       Suc. Belenes    NA       1    NA     0    0    NA
## 2487       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2488       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2489       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2490       Suc. Belenes     3      17    25    20    1     1
## 2491       Suc. Belenes    NA      NA     4     3    5     9
## 2492       Suc. Belenes    NA      NA    NA    NA    0     0
## 2493       Suc. Belenes    NA      NA    NA     4   NA    NA
## 2494       Suc. Belenes     2      NA     1     5    2     3
## 2495       Suc. Belenes     2      NA    NA     2    3     4
## 2496       Suc. Belenes    NA       1    NA     0    0    NA
## 2497       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2498       Suc. Belenes    13      12    12     7   11    12
## 2499       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2500       Suc. Belenes    NA      NA     3     3    3    NA
## 2501       Suc. Belenes     5       5     5     8    5     5
## 2502       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2503       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2504       Suc. Belenes    17      21    40    15   59    27
## 2505       Suc. Belenes     3      19    38    44   76    44
## 2506       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2507       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2508       Suc. Belenes    11      NA     4    14   21    NA
## 2509       Suc. Belenes    20      23    23    15   20    20
## 2510       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2511       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2512       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2513       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2514       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2515       Suc. Belenes     2       2     2     2    2     1
## 2516       Suc. Belenes    NA      NA     2     2   NA    NA
## 2517       Suc. Belenes     5       3     3     3    5     3
## 2518       Suc. Belenes     4       1     0     8    5     3
## 2519       Suc. Belenes     2       2    NA     3   NA     2
## 2520       Suc. Belenes     1       1     1     1   NA     1
## 2521       Suc. Belenes    NA       2     2     4    2    NA
## 2522       Suc. Belenes    NA       2     2     2    1     1
## 2523       Suc. Belenes     8       8     8     8    8     8
## 2524       Suc. Belenes     8       8     3     8    3    10
## 2525       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2526       Suc. Belenes    NA      NA    NA     1    1    NA
## 2527       Suc. Belenes     2      NA    NA    NA   NA     1
## 2528       Suc. Belenes    NA       2    NA     2    2     2
## 2529       Suc. Belenes     2       2     2     3    2     2
## 2530       Suc. Belenes     2       2     4     2    6     2
## 2531       Suc. Belenes    11       6    14    NA    8    14
## 2532       Suc. Belenes    11       4    19    11   21    21
## 2533       Suc. Belenes     3      NA    NA    NA   NA    NA
## 2534       Suc. Belenes     3      NA     1     3    2     2
## 2535       Suc. Belenes    NA      NA    NA     2   NA    NA
## 2536       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2537       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2538       Suc. Belenes    NA      NA     3    NA   NA    NA
## 2539       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2540       Suc. Belenes    NA      NA     2     2    2     4
## 2541       Suc. Belenes    80      87    85    80  156    95
## 2542       Suc. Belenes     5       8    26     8   11    29
## 2543       Suc. Belenes     3       3    22     6   16    10
## 2544       Suc. Belenes    22      22    22    22   32    41
## 2545       Suc. Belenes    33      20    24    14   41    60
## 2546       Suc. Belenes     3      NA     2     3    3    NA
## 2547       Suc. Belenes    31      14    17    14   25    25
## 2548       Suc. Belenes     8       6    20     3   23    20
## 2549       Suc. Belenes   183     240   137   275  303   229
## 2550       Suc. Belenes    21      32    63    39   42    70
## 2551       Suc. Belenes    49      44    51    55   53    66
## 2552       Suc. Belenes    78      51   131    78  125   112
## 2553       Suc. Belenes   129      74    89   120  201   239
## 2554       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2555       Suc. Belenes     3       6     9    NA    3     3
## 2556       Suc. Belenes    14      15    17    12   16    14
## 2557       Suc. Belenes    20      11    18    11   24    21
## 2558       Suc. Belenes     8      10    10     8   18    18
## 2559       Suc. Belenes     6       6     4     5    7     6
## 2560       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2561       Suc. Belenes     1       2     1     3    1     1
## 2562       Suc. Belenes    NA       1     2     2   NA    NA
## 2563       Suc. Belenes     4       4     3     4    7     7
## 2564       Suc. Belenes     1       0     0     0    0     0
## 2565       Suc. Belenes     1      NA    NA     1    1     1
## 2566       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2567       Suc. Belenes     8       3     2     3    6     9
## 2568       Suc. Belenes    NA      NA     2     2   NA     2
## 2569       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2570       Suc. Belenes     2       2     2    NA    1    NA
## 2571       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2572       Suc. Belenes     2       6    NA     6    2     4
## 2573       Suc. Belenes     1       1     1     1    1     3
## 2574       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2575       Suc. Belenes     0       0     0     0    0     0
## 2576       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2577       Suc. Belenes     3      NA     5     8   10    10
## 2578       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2579       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2580       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2581       Suc. Belenes     2      NA    NA    NA    4    NA
## 2582       Suc. Belenes     2       2     4     6    4     2
## 2583       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2584       Suc. Belenes     3       6     7     4   NA     3
## 2585       Suc. Belenes    11      NA    11     4    4     7
## 2586       Suc. Belenes     5       2     3     2    2     2
## 2587       Suc. Belenes     3       8     4     9    6     6
## 2588       Suc. Belenes     4       2     5     5   10    11
## 2589       Suc. Belenes    11       3    18    13   18    16
## 2590       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2591       Suc. Belenes    NA       0     0     0    1    NA
## 2592       Suc. Belenes     2      NA    NA    NA   NA    NA
## 2593       Suc. Belenes     2       2     4     6    4     5
## 2594       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2595       Suc. Belenes    NA       6    15     4    3     3
## 2596       Suc. Belenes     4       4    14     7   14     7
## 2597       Suc. Belenes     1       1     1     1    2     1
## 2598       Suc. Belenes     2       1     2     4    7     6
## 2599       Suc. Belenes     2       2     9     5   12    13
## 2600       Suc. Belenes     4      NA    13    10   13     8
## 2601       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2602       Suc. Belenes    NA       0     0     0    1    NA
## 2603       Suc. Belenes     2      NA    NA    NA   NA    NA
## 2604       Suc. Belenes     2       2     4     6    4     2
## 2605       Suc. Belenes     3       3     7     6   NA    NA
## 2606       Suc. Belenes     4      NA    11     7   NA    NA
## 2607       Suc. Belenes     3       2     2     2    2     1
## 2608       Suc. Belenes     2       1     2     3    7     5
## 2609       Suc. Belenes     4       2     7     5   10     5
## 2610       Suc. Belenes     8      NA     8     8    8     6
## 2611       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2612       Suc. Belenes    NA      NA     8     5   NA     5
## 2613       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2614       Suc. Belenes    NA       3    NA     6    6    NA
## 2615       Suc. Belenes    NA      NA    NA    NA    4     4
## 2616       Suc. Belenes     2       1    NA     2   NA    NA
## 2617       Suc. Belenes    NA      NA     2    NA    2    NA
## 2618       Suc. Belenes    NA      NA    NA     4   NA     5
## 2619       Suc. Belenes    NA       0     0     0    1    NA
## 2620       Suc. Belenes     2      NA    NA     2    2     2
## 2621       Suc. Belenes     2       2     4     6    4     2
## 2622       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2623       Suc. Belenes    NA       6     7     6    6     3
## 2624       Suc. Belenes     4       4    14     7    7    11
## 2625       Suc. Belenes     3       2     4     2    3     3
## 2626       Suc. Belenes     2       3     3     6    5     8
## 2627       Suc. Belenes     4       2     9     7   12    15
## 2628       Suc. Belenes     9      NA    15    10   20    15
## 2629       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2630       Suc. Belenes    NA       0     0     0    1    NA
## 2631       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2632       Suc. Belenes     3      NA    NA    NA    3     6
## 2633       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2634       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2635       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2636       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2637       Suc. Belenes     2       4     8     6    2     8
## 2638       Suc. Belenes     3       6    13    10   NA    13
## 2639       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2640       Suc. Belenes     3       8     5     3    3     5
## 2641       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2642       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2643       Suc. Belenes    NA       1    NA    NA    1    NA
## 2644       Suc. Belenes     0       0     1     0    0     1
## 2645       Suc. Belenes     1       1     1     3    3     2
## 2646       Suc. Belenes     3       4     1     0    3     2
## 2647       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2648       Suc. Belenes     1       2     3    NA   NA    NA
## 2649       Suc. Belenes     2      NA     2     4    2     6
## 2650       Suc. Belenes     2       2     2     1   NA    NA
## 2651       Suc. Belenes     3       8    11    20   14    17
## 2652       Suc. Belenes     3      NA    NA     4    3     3
## 2653       Suc. Belenes    NA      NA     1    NA    1     1
## 2654       Suc. Belenes     4       4     2    NA   NA    NA
## 2655       Suc. Belenes     1      NA    NA     1   NA     1
## 2656       Suc. Belenes     2      NA     6    NA   NA     2
## 2657       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2658       Suc. Belenes    NA      NA     1    NA   NA    NA
## 2659       Suc. Belenes    17      23    30    30   21    21
## 2660       Suc. Belenes    20      31    31    25   23    28
## 2661       Suc. Belenes    NA       3     3     3    3    11
## 2662       Suc. Belenes    13      17    17    17   19    21
## 2663       Suc. Belenes     4       3     2     4    5     5
## 2664       Suc. Belenes    NA       3     2     2   NA     3
## 2665       Suc. Belenes     4       6     8     2    6     6
## 2666       Suc. Belenes    11       8     6     6    8     6
## 2667       Suc. Belenes     2       4     4     2    2     4
## 2668       Suc. Belenes    NA       1     1     1    2     1
## 2669       Suc. Belenes    82      78    68    74   95    59
## 2670       Suc. Belenes    34      26    24    29   26    18
## 2671       Suc. Belenes    16      16    25    25   19    25
## 2672       Suc. Belenes    38      35    44    44   32    29
## 2673       Suc. Belenes    26      20    20    27   24    15
## 2674       Suc. Belenes    45      54    54    37   68    23
## 2675       Suc. Belenes    25      25    25    17   17    17
## 2676       Suc. Belenes    NA      NA    NA    NA   11    NA
## 2677       Suc. Belenes   261     208   151   208  271   141
## 2678       Suc. Belenes    17      17     8    11    6    11
## 2679       Suc. Belenes    NA       2    NA    NA   30    NA
## 2680       Suc. Belenes   129      91    76    89  101    70
## 2681       Suc. Belenes    12       6    12     6   12     9
## 2682       Suc. Belenes    12      12     9    14   11    14
## 2683       Suc. Belenes    11       9     8     9   11    11
## 2684       Suc. Belenes     8      10     8     8    8    10
## 2685       Suc. Belenes     7       8     6     5    8     6
## 2686       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2687       Suc. Belenes     1       1     1     1    1     3
## 2688       Suc. Belenes     1       4     2     3    2     1
## 2689       Suc. Belenes    NA       3     4     6    8     7
## 2690       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2691       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2692       Suc. Belenes     3      NA     4     7    4     6
## 2693       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2694       Suc. Belenes     2      NA     2     4    2    NA
## 2695       Suc. Belenes     0       1    NA     0    0     1
## 2696       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2697       Suc. Belenes     0      NA    NA    NA   NA    NA
## 2698       Suc. Belenes     3       3     4     2    2     3
## 2699       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2700       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2701       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2702       Suc. Belenes     4       2     4     2    2    NA
## 2703       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2704       Suc. Belenes     1      NA     4     4    3     1
## 2705       Suc. Belenes     4       6     6     1    7     8
## 2706       Suc. Belenes     0       0     1     0    0     1
## 2707       Suc. Belenes     0      NA     1    NA   NA    NA
## 2708       Suc. Belenes     2       3     2     3    2     2
## 2709       Suc. Belenes     3       4     3     4    4     3
## 2710       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2711       Suc. Belenes    NA       0     0    NA    0     1
## 2712       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2713       Suc. Belenes     1      NA     1     4    3     1
## 2714       Suc. Belenes     1       3     3     1   NA     1
## 2715       Suc. Belenes     0       0     0     0    0     0
## 2716       Suc. Belenes     2       3     2     3    2     2
## 2717       Suc. Belenes     1       3     1     1    3     3
## 2718       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2719       Suc. Belenes    NA       0     0    NA    0     1
## 2720       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2721       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2722       Suc. Belenes     1      NA     1     1   NA     1
## 2723       Suc. Belenes     4       3     3     1   NA     1
## 2724       Suc. Belenes     0       0     1     0    0     1
## 2725       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2726       Suc. Belenes     2       3     2     3    2     2
## 2727       Suc. Belenes     3       3     1     1    1     3
## 2728       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2729       Suc. Belenes     1       2     3     1    2     2
## 2730       Suc. Belenes    NA      NA     3     3   NA     3
## 2731       Suc. Belenes     4       4     4    NA    4    NA
## 2732       Suc. Belenes    NA      NA    NA    NA    0    NA
## 2733       Suc. Belenes    NA      NA    NA    NA   NA     2
## 2734       Suc. Belenes    NA       3    NA     3    3     1
## 2735       Suc. Belenes    NA       0     0    NA    0     1
## 2736       Suc. Belenes     6       2     6     4    2     4
## 2737       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2738       Suc. Belenes     1      NA     4     6    3     4
## 2739       Suc. Belenes     8       8    10     3    7     8
## 2740       Suc. Belenes     0       0     1     0    0     1
## 2741       Suc. Belenes     0      NA    NA    NA    3     0
## 2742       Suc. Belenes     2       3     2     3    2     2
## 2743       Suc. Belenes     4       4     4     6    4     4
## 2744       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2745       Suc. Belenes    NA       0     0    NA    0     1
## 2746       Suc. Belenes     6      10     4    10   10    10
## 2747       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2748       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2749       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2750       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2751       Suc. Belenes     4       6     8     2    6     6
## 2752       Suc. Belenes     3       6    10    10    3     3
## 2753       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2754       Suc. Belenes     4       7     4     4   NA    NA
## 2755       Suc. Belenes     3       5     5    NA    3     3
## 2756       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2757       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2758       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2759       Suc. Belenes     1       1     1     1    1     1
## 2760       Suc. Belenes     2       4     3     3    4     2
## 2761       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2762       Suc. Belenes    NA      NA     1     1    1     1
## 2763       Suc. Belenes    NA       3     1     1    1     1
## 2764       Suc. Belenes     6       3     3    NA    3     3
## 2765       Suc. Belenes    NA      NA    NA     0    0    NA
## 2766       Suc. Belenes     1      NA    NA     1   NA    NA
## 2767       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2768       Suc. Belenes    NA       2     2     2   NA     2
## 2769       Suc. Belenes    NA       2    NA     2    2     4
## 2770       Suc. Belenes    11       6    13     8   13    15
## 2771       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2772       Suc. Belenes     3       3     3     3    3     3
## 2773       Suc. Belenes     8       5     5     6    6     8
## 2774       Suc. Belenes     3       3     3     5    5     5
## 2775       Suc. Belenes    11       8    11    14    8     8
## 2776       Suc. Belenes    28      35    46    49   39    35
## 2777       Suc. Belenes    21      18    18    11   14    11
## 2778       Suc. Belenes    23      15    23    23   21    21
## 2779       Suc. Belenes    23      21    32    42   42    76
## 2780       Suc. Belenes     1       2     2     3    3     3
## 2781       Suc. Belenes     2       2     3     3    2     2
## 2782       Suc. Belenes     2       1     2     2    2     1
## 2783       Suc. Belenes    NA      NA     1     1    1     1
## 2784       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2785       Suc. Belenes     1       1     1    NA    1    NA
## 2786       Suc. Belenes    NA      NA     0     0    0     0
## 2787       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2788       Suc. Belenes     1       1     1     3    3     4
## 2789       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2790       Suc. Belenes    NA      NA     0    NA   NA     0
## 2791       Suc. Belenes    NA      NA     0     0    0     0
## 2792       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2793       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2794       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2795       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2796       Suc. Belenes     3       3    NA     3   NA     6
## 2797       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2798       Suc. Belenes     1       0     0     0    3     1
## 2799       Suc. Belenes     1       1     1     2   NA     1
## 2800       Suc. Belenes     4       2     3     3    4     4
## 2801       Suc. Belenes    NA       0     0    NA    0    NA
## 2802       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2803       Suc. Belenes     6       6    NA     3    3     3
## 2804       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2805       Suc. Belenes     1       0     0     1    1     1
## 2806       Suc. Belenes     1       1     3     2    2     3
## 2807       Suc. Belenes     3       1     2     2    2     2
## 2808       Suc. Belenes    NA       0     0    NA    0    NA
## 2809       Suc. Belenes    NA       3    NA    NA   NA    NA
## 2810       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2811       Suc. Belenes     0      NA     0     0    1    NA
## 2812       Suc. Belenes     1       1     1     2   NA     1
## 2813       Suc. Belenes    NA      NA     1    NA   NA    NA
## 2814       Suc. Belenes    NA      NA     1    NA    1     1
## 2815       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2816       Suc. Belenes    NA      NA     3     3   NA     3
## 2817       Suc. Belenes     0      NA    NA    NA   NA    NA
## 2818       Suc. Belenes    NA       0     0    NA    0    NA
## 2819       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2820       Suc. Belenes    NA       3    NA    NA   NA     3
## 2821       Suc. Belenes    NA      NA     0    NA   NA    NA
## 2822       Suc. Belenes     1       1    NA     1    1     1
## 2823       Suc. Belenes     3       1     1     2   NA     1
## 2824       Suc. Belenes     3       1     3     1    3     3
## 2825       Suc. Belenes    NA       0     0    NA    0    NA
## 2826       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2827       Suc. Belenes     2       1     1     3    3     2
## 2828       Suc. Belenes    NA      NA    NA    NA   NA     0
## 2829       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2830       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2831       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2832       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2833       Suc. Belenes    NA       8     2     2   55    19
## 2834       Suc. Belenes    NA       3     3     3    3    16
## 2835       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2836       Suc. Belenes    10      20    NA    10   15    18
## 2837       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2838       Suc. Belenes    NA       1     1     1    2     1
## 2839       Suc. Belenes    NA       3    NA     3    3     3
## 2840       Suc. Belenes     4       6     2     3   10     5
## 2841       Suc. Belenes    NA       0     0     1    0     3
## 2842       Suc. Belenes     2       1     1    NA    2     1
## 2843       Suc. Belenes    NA      NA    NA     2   NA    NA
## 2844       Suc. Belenes    NA       2     1     2    1     1
## 2845       Suc. Belenes     8      14    NA     6   11    28
## 2846       Suc. Belenes     0       0     1     1    1     2
## 2847       Suc. Belenes    NA      NA     1     3    2     1
## 2848       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2849       Suc. Belenes     4       2    NA     4    2     2
## 2850       Suc. Belenes     6       4     2     6    6    11
## 2851       Suc. Belenes    11      14     8     8   17     6
## 2852       Suc. Belenes     2       2    NA     2    2     2
## 2853       Suc. Belenes     8      21     4     8    6     8
## 2854       Suc. Belenes     1      NA    NA     1    1    NA
## 2855       Suc. Belenes    NA      NA     2    NA   NA    NA
## 2856       Suc. Belenes     2       2     6    NA    2     2
## 2857       Suc. Belenes     4       2     6     2    2     4
## 2858       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2859       Suc. Belenes    NA       2    NA    NA   NA    NA
## 2860       Suc. Belenes     1       3    NA    NA   NA     1
## 2861       Suc. Belenes    NA      25    42    42   70    NA
## 2862       Suc. Belenes    NA      NA    11     8   40    NA
## 2863       Suc. Belenes    NA      NA    13    16   51     3
## 2864       Suc. Belenes    98      48    41   288    3     3
## 2865       Suc. Belenes     5      18     6    36    5     2
## 2866       Suc. Belenes    NA      NA    NA     8    3    NA
## 2867       Suc. Belenes     6       3     3     8    8    NA
## 2868       Suc. Belenes    NA     144   120    NA  190    42
## 2869       Suc. Belenes   130     338   247   416   77     4
## 2870       Suc. Belenes     2       8     8    19   34    NA
## 2871       Suc. Belenes     6     167    NA    NA   97    25
## 2872       Suc. Belenes   101     251   222   839   44    15
## 2873       Suc. Belenes    NA       2     4     4    7     8
## 2874       Suc. Belenes    NA      NA     8    21   18    NA
## 2875       Suc. Belenes    NA      NA     6    14   28    NA
## 2876       Suc. Belenes     9       4     7     8    3     5
## 2877       Suc. Belenes    NA       1    NA    NA   NA    NA
## 2878       Suc. Belenes     1       1     1     1    5     1
## 2879       Suc. Belenes    NA      NA    NA     1   NA    NA
## 2880       Suc. Belenes     1       3     2    NA    3    NA
## 2881       Suc. Belenes     1      NA    NA    NA   NA    NA
## 2882       Suc. Belenes     2       0     0     0    0     0
## 2883       Suc. Belenes     2       2     1    NA    1     2
## 2884       Suc. Belenes    10      21    NA     2   18     3
## 2885       Suc. Belenes     2       2     2     2   NA     2
## 2886       Suc. Belenes     0       1     1     1    1     1
## 2887       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2888       Suc. Belenes     0       1     2     0    1     2
## 2889       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2890       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2891       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2892       Suc. Belenes    NA       2     2     2    2    NA
## 2893       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2894       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2895       Suc. Belenes     3      14     6    14    6     6
## 2896       Suc. Belenes     3       1     1     1    1     1
## 2897       Suc. Belenes    NA      NA     2    NA    2     0
## 2898       Suc. Belenes     8       3    15    35   NA     3
## 2899       Suc. Belenes     5       3     3     3    5     8
## 2900       Suc. Belenes    NA       1    NA     1    1     0
## 2901       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2902       Suc. Belenes    NA       3    NA    NA   NA    NA
## 2903       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2904       Suc. Belenes    NA       6     6     8    3     3
## 2905       Suc. Belenes     1       1     0     0    1     0
## 2906       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2907       Suc. Belenes     4       5    13    31   NA     3
## 2908       Suc. Belenes     3       3    NA     3    3     3
## 2909       Suc. Belenes    NA       1    NA     1    1     0
## 2910       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2911       Suc. Belenes     3      NA    NA     3    3     3
## 2912       Suc. Belenes     1       1     1     1    1     1
## 2913       Suc. Belenes    NA      NA    NA    NA    2    NA
## 2914       Suc. Belenes     2       3     6    35   NA     1
## 2915       Suc. Belenes     3       3    NA    NA   NA     5
## 2916       Suc. Belenes    NA      NA    NA    NA   NA     1
## 2917       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2918       Suc. Belenes     6       3     3    NA   NA    NA
## 2919       Suc. Belenes    NA      NA     2    NA   NA    NA
## 2920       Suc. Belenes     8       4     4    11   NA    NA
## 2921       Suc. Belenes    NA       1    NA     1    1     0
## 2922       Suc. Belenes     6       4    NA     2    4     4
## 2923       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2924       Suc. Belenes    NA      NA    NA    NA   NA     3
## 2925       Suc. Belenes    NA      14     8    20   20    14
## 2926       Suc. Belenes     3       1     1     1    2     1
## 2927       Suc. Belenes     0       2     3     2    2     2
## 2928       Suc. Belenes     4       9    15    45    2     7
## 2929       Suc. Belenes     8       3     3     5    8     8
## 2930       Suc. Belenes    NA       1    NA     1    1     0
## 2931       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2932       Suc. Belenes    NA       3    NA    NA    6     1
## 2933       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2934       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2935       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2936       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2937       Suc. Belenes     6      11    15    11   13    13
## 2938       Suc. Belenes     6      13    25    22   19    22
## 2939       Suc. Belenes    NA      NA    NA     0    0    NA
## 2940       Suc. Belenes     5       3     3     8    5     3
## 2941       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2942       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2943       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2944       Suc. Belenes     1       1     2     1    1     0
## 2945       Suc. Belenes    NA      NA     1     1    1     1
## 2946       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2947       Suc. Belenes     0       0     0     0    0     0
## 2948       Suc. Belenes     1      NA    NA    NA    1     1
## 2949       Suc. Belenes     5       5     1     5    3     6
## 2950       Suc. Belenes     0      NA    NA    NA    1     1
## 2951       Suc. Belenes    NA       3     1     2    5     2
## 2952       Suc. Belenes     2      NA    NA    NA   NA    NA
## 2953       Suc. Belenes    NA       1     1     2    2     1
## 2954       Suc. Belenes    NA      11    NA     8    6     3
## 2955       Suc. Belenes     3      NA    NA    NA   NA    NA
## 2956       Suc. Belenes    NA       0     0     0   NA     0
## 2957       Suc. Belenes     1       1    NA     1    1     1
## 2958       Suc. Belenes     1      NA     1     1    2     1
## 2959       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2960       Suc. Belenes    19      15    19    17   21    17
## 2961       Suc. Belenes     6      NA     3     6    3     8
## 2962       Suc. Belenes     6      NA    NA    NA   NA    NA
## 2963       Suc. Belenes    25      21    21    28   28    14
## 2964       Suc. Belenes     3       3     3     2    2    NA
## 2965       Suc. Belenes    21      13    13    13   11    13
## 2966       Suc. Belenes    NA      NA     1     1   NA     1
## 2967       Suc. Belenes     2      NA    NA    NA    2     2
## 2968       Suc. Belenes     1       1    NA    NA   NA    NA
## 2969       Suc. Belenes    11       6     6     4    6     8
## 2970       Suc. Belenes     3       6     6     6    6     6
## 2971       Suc. Belenes     8       4     6     6    6     4
## 2972       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2973       Suc. Belenes    NA      NA    NA     2    2    NA
## 2974       Suc. Belenes    71      69    77    87   61    50
## 2975       Suc. Belenes    NA      NA    NA    NA   NA    19
## 2976       Suc. Belenes    44      38    29    25   29    48
## 2977       Suc. Belenes     3       5     6     9    9     9
## 2978       Suc. Belenes    31      23    31    46   31    39
## 2979       Suc. Belenes     6      NA    NA     8    3     3
## 2980       Suc. Belenes    63     130    85   162  116   141
## 2981       Suc. Belenes    56     162    70   197  169   113
## 2982       Suc. Belenes     5      NA    NA    NA   NA    NA
## 2983       Suc. Belenes     2       2     6    11    8    11
## 2984       Suc. Belenes    25      53    61    59   49    61
## 2985       Suc. Belenes   144     137   139   273   91   148
## 2986       Suc. Belenes     9       4     7     7    6     6
## 2987       Suc. Belenes     3       5     2     5    3     6
## 2988       Suc. Belenes     2      NA     4     4    6     6
## 2989       Suc. Belenes     3       5     5     6    4     4
## 2990       Suc. Belenes    NA       1    NA     1   NA    NA
## 2991       Suc. Belenes    NA       1     1     1    4     3
## 2992       Suc. Belenes     1      NA     1     2    1     1
## 2993       Suc. Belenes     1      NA    NA     2    1     1
## 2994       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2995       Suc. Belenes     3       0     0     1    1     1
## 2996       Suc. Belenes     1       1     0     1    2    NA
## 2997       Suc. Belenes     5       5     7     5    9     6
## 2998       Suc. Belenes     0      NA    NA    NA   NA     1
## 2999       Suc. Belenes    NA       2     2     2    2     2
## 3000       Suc. Belenes     1       1     1     1    0     2
## 3001       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3002       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3003       Suc. Belenes     0       0     1     1    2     1
## 3004       Suc. Belenes     4       4     5     3    3     3
## 3005       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3006       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3007       Suc. Belenes     3      NA    NA    NA   NA    NA
## 3008       Suc. Belenes    11       4    11    14    7    14
## 3009       Suc. Belenes     0       0     0     0    0     0
## 3010       Suc. Belenes    NA       0     0     1    1     1
## 3011       Suc. Belenes    13       8    13    13   17    13
## 3012       Suc. Belenes     1       2     3     3    2     3
## 3013       Suc. Belenes    NA       0     0     0    0     0
## 3014       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3015       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3016       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3017       Suc. Belenes     7       4     7    11    7     7
## 3018       Suc. Belenes     0       0     0     0    0     0
## 3019       Suc. Belenes    NA      NA    NA     2    1     1
## 3020       Suc. Belenes     1       6     2     8    4    NA
## 3021       Suc. Belenes     1       1     3     1    3     2
## 3022       Suc. Belenes    NA       0     0     0    0     0
## 3023       Suc. Belenes    NA       7     4    11    4    11
## 3024       Suc. Belenes     0       0     0     0    0     0
## 3025       Suc. Belenes     2      NA    NA     1    1     1
## 3026       Suc. Belenes     9       8     8     6    2     2
## 3027       Suc. Belenes     1       2     2     1    1     3
## 3028       Suc. Belenes     1       3    NA     2    3     2
## 3029       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3030       Suc. Belenes    NA      NA    NA    NA    3    NA
## 3031       Suc. Belenes    11      11     7     7   14    11
## 3032       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3033       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3034       Suc. Belenes     8       4     4     8   13    17
## 3035       Suc. Belenes     3       4     3     4    3     3
## 3036       Suc. Belenes    NA       0     0     0    0     0
## 3037       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3038       Suc. Belenes    NA      NA     3     6   NA     3
## 3039       Suc. Belenes    11      11     7    18   14    21
## 3040       Suc. Belenes     0       0     0     0    0     0
## 3041       Suc. Belenes     2       0     1     2    2     0
## 3042       Suc. Belenes    17      13    13    23   15    23
## 3043       Suc. Belenes     4       5     4     3    4     4
## 3044       Suc. Belenes    NA       0     0     0    0     0
## 3045       Suc. Belenes    NA      NA    NA     1   NA    NA
## 3046       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3047       Suc. Belenes     3       6     1     3    8    10
## 3048       Suc. Belenes    NA      NA     0    NA   NA     1
## 3049       Suc. Belenes    NA      NA    NA    NA    1     0
## 3050       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3051       Suc. Belenes     8      19    13     2   15    19
## 3052       Suc. Belenes     3       3    13     6    3     3
## 3053       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3054       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3055       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3056       Suc. Belenes     2       3    NA     1    2     3
## 3057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3058       Suc. Belenes     1       1     1     1    1     1
## 3059       Suc. Belenes     2       1     2     1    1     1
## 3060       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3061       Suc. Belenes    NA      NA     2     2   NA    NA
## 3062       Suc. Belenes     1       1     1     1   NA    NA
## 3063       Suc. Belenes    17      19    15     8   17    13
## 3064       Suc. Belenes     6       8     3    NA    6     8
## 3065       Suc. Belenes     6       6     3     8   11    11
## 3066       Suc. Belenes    23      NA    23    13   11    23
## 3067       Suc. Belenes     1      NA    NA     1    2     1
## 3068       Suc. Belenes     4      NA     4     2    2     2
## 3069       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3070       Suc. Belenes    48      42    32    32   32    26
## 3071       Suc. Belenes    NA      NA    NA    NA   NA    38
## 3072       Suc. Belenes    22      32    22    38   19    22
## 3073       Suc. Belenes     5       6     6     6    5     6
## 3074       Suc. Belenes     6       3     6     6    5     3
## 3075       Suc. Belenes    17      17     8    11   NA     8
## 3076       Suc. Belenes     6       8     8    23   NA     8
## 3077       Suc. Belenes    NA      28    70    NA   70    42
## 3078       Suc. Belenes    92      88    63    42  176    99
## 3079       Suc. Belenes    17      15    11    15   19    19
## 3080       Suc. Belenes    36      13    19    NA   32    13
## 3081       Suc. Belenes    46      36    21    49   17    32
## 3082       Suc. Belenes    11       5     6     6   10     6
## 3083       Suc. Belenes    NA      NA     3     3    3     3
## 3084       Suc. Belenes     4       1     2     2    2     2
## 3085       Suc. Belenes     1       1     1     1    1     1
## 3086       Suc. Belenes    NA      NA    NA    NA    1    NA
## 3087       Suc. Belenes     8      12    NA    NA    2     4
## 3088       Suc. Belenes     1       0     0     0    0     0
## 3089       Suc. Belenes    NA       1     4    NA    3    NA
## 3090       Suc. Belenes     7      21    NA    NA   NA     5
## 3091       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3092       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3093       Suc. Belenes     0       0     0     0    0     0
## 3094       Suc. Belenes     1       1     1     1   NA     3
## 3095       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3096       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3097       Suc. Belenes     8       3     8    11    6     8
## 3098       Suc. Belenes     3      NA     1    NA    1     3
## 3099       Suc. Belenes    NA       2    NA     0    0    NA
## 3100       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3101       Suc. Belenes     3      NA     1     1    3     3
## 3102       Suc. Belenes    NA       0     0     0   NA    NA
## 3103       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3104       Suc. Belenes    NA      NA    NA     0   NA    NA
## 3105       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3106       Suc. Belenes    NA       0     0     0   NA    NA
## 3107       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3108       Suc. Belenes     1      NA     1    NA   NA     1
## 3109       Suc. Belenes    NA      NA     0     0   NA    NA
## 3110       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3111       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3112       Suc. Belenes    14       6    14     3    6     3
## 3113       Suc. Belenes     2       2     2    NA    2    NA
## 3114       Suc. Belenes     1       1     1     1    1     3
## 3115       Suc. Belenes    NA       0     0     0   NA    NA
## 3116       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3117       Suc. Belenes    NA       6     6     6    6     6
## 3118       Suc. Belenes     1      NA    NA     1    1     1
## 3119       Suc. Belenes     0      NA    NA     0   NA     0
## 3120       Suc. Belenes    NA      NA     3    NA   NA     2
## 3121       Suc. Belenes     3       8    NA     1    1     3
## 3122       Suc. Belenes    NA       0     0     0   NA    NA
## 3123       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3124       Suc. Belenes    NA      NA     4    NA    3     3
## 3125       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3126       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3127       Suc. Belenes     2       2     2     2    2     2
## 3128       Suc. Belenes     3      NA     3     3    3     3
## 3129       Suc. Belenes    NA      NA     0    NA   NA    NA
## 3130       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3131       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3132       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3133       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3134       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3135       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3136       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3137       Suc. Belenes    NA       0     1    NA    1     1
## 3138       Suc. Belenes     0      NA     0    NA    0    NA
## 3139       Suc. Belenes     1      NA     1     1    3     1
## 3140       Suc. Belenes     2      NA    NA    NA   NA    NA
## 3141       Suc. Belenes     2      NA     2     1    1     1
## 3142       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3143       Suc. Belenes    NA       3    NA    NA   NA    NA
## 3144       Suc. Belenes    NA      NA    NA     2    2     2
## 3145       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3146       Suc. Belenes     2       2     4     6    2     2
## 3147       Suc. Belenes     8       6     3     8    3     3
## 3148       Suc. Belenes     6       6     6     6    4     6
## 3149       Suc. Belenes     1       2     1     1    2     1
## 3150       Suc. Belenes     2      NA    NA     2   NA    NA
## 3151       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3152       Suc. Belenes    NA      NA     2    NA    2    NA
## 3153       Suc. Belenes     4       4     2     2    2     2
## 3154       Suc. Belenes     1      NA    NA    NA    1    NA
## 3155       Suc. Belenes    NA       1    NA     1   NA    NA
## 3156       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3157       Suc. Belenes    18      21    29    29   29    18
## 3158       Suc. Belenes    NA      NA    NA    NA   NA    13
## 3159       Suc. Belenes    13       6    16    25   10    19
## 3160       Suc. Belenes     9      12     6    18    6     6
## 3161       Suc. Belenes    23      17    11    14   20    17
## 3162       Suc. Belenes    11       6    11     8   11     3
## 3163       Suc. Belenes    21      32     7    25   28    25
## 3164       Suc. Belenes    35      11     7    35   28    35
## 3165       Suc. Belenes    NA      38    NA     6   42     6
## 3166       Suc. Belenes    46      34    44    44   51    59
## 3167       Suc. Belenes    NA      13     3     8    8     3
## 3168       Suc. Belenes    NA       6     3     3   NA     3
## 3169       Suc. Belenes    NA       7     4     5    5     4
## 3170       Suc. Belenes     2       2     6     3   NA     2
## 3171       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3172       Suc. Belenes     4       2     2     2    2     5
## 3173       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3174       Suc. Belenes    NA       1     1     1    1     2
## 3175       Suc. Belenes    NA      NA    NA     1   NA    NA
## 3176       Suc. Belenes    NA       3    NA    NA    1    NA
## 3177       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3178       Suc. Belenes     1      NA     0     0    0     0
## 3179       Suc. Belenes    NA       2     1    NA    2     1
## 3180       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3181       Suc. Belenes    NA      NA     2    NA   NA     4
## 3182       Suc. Belenes     1      NA     0    NA    1     0
## 3183       Suc. Belenes     0       0     0     0    0     0
## 3184       Suc. Belenes    NA       3     3    NA    2     1
## 3185       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3186       Suc. Belenes    NA       2    NA    NA   NA    NA
## 3187       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3188       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3189       Suc. Belenes     3       3     6    NA    3    NA
## 3190       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3191       Suc. Belenes    NA       0     1     0    0     0
## 3192       Suc. Belenes    NA      NA     1     1   NA    NA
## 3193       Suc. Belenes    NA       1     1     1    1     1
## 3194       Suc. Belenes    NA       0     0     0    0     0
## 3195       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3196       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3197       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3198       Suc. Belenes    NA      NA     0    NA    1    NA
## 3199       Suc. Belenes    NA      NA     1     1   NA    NA
## 3200       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3201       Suc. Belenes    NA       0     0     0    0     0
## 3202       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3203       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3204       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3205       Suc. Belenes    NA      NA     0     0   NA    NA
## 3206       Suc. Belenes    NA      NA     1     1   NA    NA
## 3207       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3208       Suc. Belenes    NA      NA    NA    NA    1     1
## 3209       Suc. Belenes    NA      NA     3    NA    3     3
## 3210       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3211       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3212       Suc. Belenes    NA       0     0     0    0     0
## 3213       Suc. Belenes    NA       2    NA     2   NA    NA
## 3214       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3215       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3216       Suc. Belenes     6       3    NA     6   NA     6
## 3217       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3218       Suc. Belenes     0       0     0     1    0     1
## 3219       Suc. Belenes    NA      NA     1     1    4     2
## 3220       Suc. Belenes    NA       3     1     1    2     2
## 3221       Suc. Belenes    NA       0     0     0    0     0
## 3222       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3223       Suc. Belenes     4       4    NA     1    3     1
## 3224       Suc. Belenes    NA      NA    NA     2   NA    NA
## 3225       Suc. Belenes    NA       3     3     3   NA    NA
## 3226       Suc. Belenes     8       8     6    10   10     8
## 3227       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3228       Suc. Belenes    13      17     2     6   19    44
## 3229       Suc. Belenes     3      44     3    10   22    19
## 3230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3231       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3232       Suc. Belenes    NA      10    10    NA    5     5
## 3233       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3234       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3235       Suc. Belenes    NA       3    NA     1    4     3
## 3236       Suc. Belenes     2       2     2     6    8     6
## 3237       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3238       Suc. Belenes    NA      NA     0    NA   NA     0
## 3239       Suc. Belenes     1       3     1     1    1     1
## 3240       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3241       Suc. Belenes     6       0     1     2    4     1
## 3242       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3243       Suc. Belenes    NA      NA     1     1    1     1
## 3244       Suc. Belenes     2       2    NA    NA   NA    NA
## 3245       Suc. Belenes     2       1     1     1    1     1
## 3246       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3247       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3248       Suc. Belenes    NA       1     1     1   NA     1
## 3249       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3250       Suc. Belenes    NA      NA     2     2   NA    NA
## 3251       Suc. Belenes    NA      NA     1     1   NA    NA
## 3252       Suc. Belenes    NA       4     4     4    2     4
## 3253       Suc. Belenes     3       2     3     8    6     6
## 3254       Suc. Belenes    NA       3     3     6   NA    NA
## 3255       Suc. Belenes     3       8     6     8   11     8
## 3256       Suc. Belenes    17      15    15    17   34    21
## 3257       Suc. Belenes     2       1     2    NA    1     1
## 3258       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3259       Suc. Belenes     2       3     2     2    1     1
## 3260       Suc. Belenes     2       2     2     2   11     2
## 3261       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3262       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3263       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3264       Suc. Belenes    50      61     3    55   87    61
## 3265       Suc. Belenes    NA      NA    NA    NA   NA    60
## 3266       Suc. Belenes    98      79    44   124  181   111
## 3267       Suc. Belenes    20      23    23    44   32    44
## 3268       Suc. Belenes    41      38    60    38   99   114
## 3269       Suc. Belenes    11      NA    NA     3   NA    NA
## 3270       Suc. Belenes     3      11    NA     6    6     8
## 3271       Suc. Belenes    70      53    42    42   81    81
## 3272       Suc. Belenes   423     366   447   683  866   359
## 3273       Suc. Belenes    46      34    21    27   38    11
## 3274       Suc. Belenes    55      42    34    57   82    80
## 3275       Suc. Belenes   306     203   334   505  611   249
## 3276       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3277       Suc. Belenes    17      13    13    22   16    13
## 3278       Suc. Belenes     6       6    12     9   15    17
## 3279       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3280       Suc. Belenes     3       1     2     3    2    NA
## 3281       Suc. Belenes     1       1     1     1    1     1
## 3282       Suc. Belenes    NA      NA    NA     1   NA    NA
## 3283       Suc. Belenes     6       4    NA     6    4     3
## 3284       Suc. Belenes     3       2     0     0    1     0
## 3285       Suc. Belenes    NA       0    NA    NA    1    NA
## 3286       Suc. Belenes     3       6     2     2    4     3
## 3287       Suc. Belenes    NA       1    NA    NA   NA     1
## 3288       Suc. Belenes    NA       2     2     2    2     2
## 3289       Suc. Belenes     1       1     1     1    1     1
## 3290       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3291       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3292       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3293       Suc. Belenes     0       0     0     0    0     0
## 3294       Suc. Belenes     3      NA     3     3   NA     5
## 3295       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3296       Suc. Belenes     3       3    NA     3   NA     3
## 3297       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3298       Suc. Belenes     3       2     6     5   11     9
## 3299       Suc. Belenes    NA       8     8     8    3     6
## 3300       Suc. Belenes    NA      NA    NA    NA   11    NA
## 3301       Suc. Belenes     1      NA     0     3   NA     2
## 3302       Suc. Belenes     3       2    NA     3    3     2
## 3303       Suc. Belenes    NA       2     2     2    2     2
## 3304       Suc. Belenes     6       7     7     8    8    11
## 3305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3306       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3307       Suc. Belenes    NA       0     0     0   NA    NA
## 3308       Suc. Belenes     3      NA     3    NA    3     6
## 3309       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3310       Suc. Belenes    NA      NA    NA     3   NA     6
## 3311       Suc. Belenes    NA      NA    NA    NA    4    NA
## 3312       Suc. Belenes    NA      NA     0    NA   NA     0
## 3313       Suc. Belenes    NA      NA     0    NA   NA    NA
## 3314       Suc. Belenes     2       2    NA     2    4     4
## 3315       Suc. Belenes    NA       1     1    NA   13     2
## 3316       Suc. Belenes    NA       0    NA     0   NA    NA
## 3317       Suc. Belenes     6       3     6     3    6     3
## 3318       Suc. Belenes     3       3     2     3    6     3
## 3319       Suc. Belenes    NA       6     3    NA   NA    NA
## 3320       Suc. Belenes     1      NA     0     1   NA     2
## 3321       Suc. Belenes     2       2    NA     2    2     2
## 3322       Suc. Belenes    NA       2    NA     2   NA    NA
## 3323       Suc. Belenes    NA       1     1     2   NA     2
## 3324       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3325       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3326       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3327       Suc. Belenes     3       8    11    11   11    11
## 3328       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3329       Suc. Belenes     6       6     4    11    6     6
## 3330       Suc. Belenes    NA       0     0     0   NA    NA
## 3331       Suc. Belenes     3       6     6     3    6    10
## 3332       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3333       Suc. Belenes     5       3     5     6   11     8
## 3334       Suc. Belenes     3      14    17    17   11    23
## 3335       Suc. Belenes    NA      NA    NA    NA   11    NA
## 3336       Suc. Belenes     3      NA     0     1    1     2
## 3337       Suc. Belenes     3       2    NA     3    3     2
## 3338       Suc. Belenes     2       2     4     4    4     6
## 3339       Suc. Belenes    11       9    12     6   13    15
## 3340       Suc. Belenes    NA       0     0     0   NA    NA
## 3341       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3342       Suc. Belenes     6       4     5     6    4     3
## 3343       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3344       Suc. Belenes    NA      NA    NA     2    2    NA
## 3345       Suc. Belenes    NA      NA    NA     3    3    NA
## 3346       Suc. Belenes    NA      NA    NA     3   NA    NA
## 3347       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3348       Suc. Belenes    NA      NA    NA    NA    1     3
## 3349       Suc. Belenes     0       0    NA     0    0    NA
## 3350       Suc. Belenes    NA      NA    NA    NA    1    NA
## 3351       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3352       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3353       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3354       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3355       Suc. Belenes     6       6    NA     3   NA     8
## 3356       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3357       Suc. Belenes    NA      NA     1     1    1    NA
## 3358       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3359       Suc. Belenes     2       2     2    NA    2     2
## 3360       Suc. Belenes     2       4     4     2    4     4
## 3361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3362       Suc. Belenes    NA      NA    NA    11   16    16
## 3363       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3364       Suc. Belenes    10      13    16    22   16    22
## 3365       Suc. Belenes     5       3     2     3    3     3
## 3366       Suc. Belenes    67      49    56    70   70    56
## 3367       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3368       Suc. Belenes    19      11    21    32   25    27
## 3369       Suc. Belenes    NA       2     1     1    1     1
## 3370       Suc. Belenes     1      NA    NA     1    1     1
## 3371       Suc. Belenes    NA       1    NA    NA   NA    NA
## 3372       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3373       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3374       Suc. Belenes    NA       3    NA    NA   NA     3
## 3375       Suc. Belenes    NA       1     2    NA    2     2
## 3376       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3377       Suc. Belenes     4       2     4    NA    3     2
## 3378       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3379       Suc. Belenes    NA       2    NA     2   NA     4
## 3380       Suc. Belenes    NA      NA     0     0    1     0
## 3381       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3382       Suc. Belenes     3       5     3     3    2     2
## 3383       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3384       Suc. Belenes    NA      NA     3    NA   NA    NA
## 3385       Suc. Belenes     0       0    NA     0    0    NA
## 3386       Suc. Belenes     0       0     0    NA    0     0
## 3387       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3388       Suc. Belenes    NA      NA     2    NA   NA     2
## 3389       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3390       Suc. Belenes     0       0    NA     0    0    NA
## 3391       Suc. Belenes    NA       0    NA     0   NA     0
## 3392       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3393       Suc. Belenes     3       3     5     2    2     2
## 3394       Suc. Belenes     0       0    NA     0    0    NA
## 3395       Suc. Belenes     0       0    NA     0    1     0
## 3396       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3397       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3398       Suc. Belenes    NA      NA     3    NA   NA    NA
## 3399       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3400       Suc. Belenes     3       5     5     3    3     2
## 3401       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3402       Suc. Belenes     3       6     3     3    3     3
## 3403       Suc. Belenes     0       0    NA     0    0    NA
## 3404       Suc. Belenes     0       0     0     0    0     1
## 3405       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3406       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3407       Suc. Belenes     1       1     1     3    2     1
## 3408       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3409       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3410       Suc. Belenes     4       2     6     2    6     6
## 3411       Suc. Belenes     3       3    16     3   10     6
## 3412       Suc. Belenes    NA      NA    NA     0    1     0
## 3413       Suc. Belenes    NA       3    NA    NA    3     5
## 3414       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3415       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3416       Suc. Belenes     1      NA     1     1    2    NA
## 3417       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3418       Suc. Belenes     0      NA    NA    NA    0    NA
## 3419       Suc. Belenes     1      NA     1     2    1    NA
## 3420       Suc. Belenes     6       3     3     4    5     5
## 3421       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3422       Suc. Belenes     1       1     2     5    5     2
## 3423       Suc. Belenes    NA       2    NA    NA   NA    NA
## 3424       Suc. Belenes     0      NA    NA    NA   NA    NA
## 3425       Suc. Belenes     2       2     2     2    2     1
## 3426       Suc. Belenes     3       6     6    14    6    14
## 3427       Suc. Belenes     3       1    NA     1   NA     1
## 3428       Suc. Belenes    NA      NA    NA    NA    0     0
## 3429       Suc. Belenes    NA       1    NA    NA   NA    NA
## 3430       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3431       Suc. Belenes     2       2    NA    NA   NA    NA
## 3432       Suc. Belenes     1       1    NA    NA    1     1
## 3433       Suc. Belenes     2      NA    NA     2    4     2
## 3434       Suc. Belenes    NA       1    NA    NA   NA    NA
## 3435       Suc. Belenes    32      32    30    32   44    17
## 3436       Suc. Belenes    37      39    59    48   65    54
## 3437       Suc. Belenes    17      19    17    25   40     2
## 3438       Suc. Belenes     4       6     3     2    4     3
## 3439       Suc. Belenes     3       2    NA     3    3     3
## 3440       Suc. Belenes     4       6     8     6   11     8
## 3441       Suc. Belenes     8      17    11    14   14    17
## 3442       Suc. Belenes     4       6     2     6    6     6
## 3443       Suc. Belenes     1       1     1     1    1     1
## 3444       Suc. Belenes    38      34    34    40   57    23
## 3445       Suc. Belenes    32      26    55    48   58     5
## 3446       Suc. Belenes    NA      NA    NA    NA   NA    29
## 3447       Suc. Belenes     6      13    10    16   16    10
## 3448       Suc. Belenes     5       3     8     6   11     5
## 3449       Suc. Belenes     8       6     5     6    2     6
## 3450       Suc. Belenes    56      65    93    93  110    99
## 3451       Suc. Belenes     6      11     8     3   14     6
## 3452       Suc. Belenes    88      67   144    81  123   109
## 3453       Suc. Belenes    60      67   127    67   85    60
## 3454       Suc. Belenes    NA       2    NA     4    2     4
## 3455       Suc. Belenes    25      21    27    32   46    49
## 3456       Suc. Belenes    23      27    42    66   42    59
## 3457       Suc. Belenes     9       6     3     3   12     6
## 3458       Suc. Belenes     7       8    11     9   12     9
## 3459       Suc. Belenes     6       5     5     6    8     9
## 3460       Suc. Belenes     2       2     4     4    8     2
## 3461       Suc. Belenes     1       1     3     4    2     5
## 3462       Suc. Belenes    NA      NA    NA    NA    1    NA
## 3463       Suc. Belenes     1       2     1     2    2     2
## 3464       Suc. Belenes     1      NA    NA     1    3     3
## 3465       Suc. Belenes     3       1     1     3    8     4
## 3466       Suc. Belenes     2       1     1     1    1     0
## 3467       Suc. Belenes     1       1     1    NA    1    NA
## 3468       Suc. Belenes     5       3     3     4    7     8
## 3469       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3470       Suc. Belenes    NA       4    NA    NA    4     2
## 3471       Suc. Belenes     1       1    NA    NA    1     0
## 3472       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3473       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3474       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3475       Suc. Belenes     0       0     0     1    0     0
## 3476       Suc. Belenes     1       2     2    10    2     6
## 3477       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3478       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3479       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3480       Suc. Belenes     2       2    NA     4    2     4
## 3481       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3482       Suc. Belenes     1       2     0    NA   NA     0
## 3483       Suc. Belenes     3       3     8    14   11     8
## 3484       Suc. Belenes     0      NA    NA    NA    0    NA
## 3485       Suc. Belenes    NA       0    NA    NA    0     1
## 3486       Suc. Belenes     1       1     1     3    4     2
## 3487       Suc. Belenes     1       2     1     1    1     2
## 3488       Suc. Belenes    NA       0     0     0    0    NA
## 3489       Suc. Belenes     4       2    NA    NA   NA    NA
## 3490       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3491       Suc. Belenes     1       2     0    NA   NA     0
## 3492       Suc. Belenes     3       3     8    NA    6     6
## 3493       Suc. Belenes     0      NA    NA    NA    0    NA
## 3494       Suc. Belenes     0       0    NA    NA    0    NA
## 3495       Suc. Belenes     1       1     1     3    2     2
## 3496       Suc. Belenes    NA       1    NA    NA    1     1
## 3497       Suc. Belenes    NA       0     0     0    0    NA
## 3498       Suc. Belenes     4       2     2    NA    4     4
## 3499       Suc. Belenes     1       2     0    NA   NA     0
## 3500       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3501       Suc. Belenes     0      NA    NA    NA    0    NA
## 3502       Suc. Belenes    NA      NA    NA    NA    0    NA
## 3503       Suc. Belenes     1       1     1     3    4     2
## 3504       Suc. Belenes    NA       2    NA    NA    2     1
## 3505       Suc. Belenes     1       2     1     1    1     1
## 3506       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3507       Suc. Belenes    14       6    14    11   11    20
## 3508       Suc. Belenes    NA       0     0    NA    0    NA
## 3509       Suc. Belenes     1      NA    NA    NA    1    NA
## 3510       Suc. Belenes    NA       0     0     0    0    NA
## 3511       Suc. Belenes     6       2     2     6    2     4
## 3512       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3513       Suc. Belenes     1       2     0    NA   NA     0
## 3514       Suc. Belenes     6      NA     6    14   11    11
## 3515       Suc. Belenes     0      NA    NA    NA    0    NA
## 3516       Suc. Belenes    NA       1    NA     0    0     1
## 3517       Suc. Belenes     1       1     1     3    6     2
## 3518       Suc. Belenes     2       1     3     1    4     3
## 3519       Suc. Belenes    NA       0     0     0    0    NA
## 3520       Suc. Belenes    NA      NA    NA     1    1    NA
## 3521       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3522       Suc. Belenes    12       7     4     6   10     8
## 3523       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3524       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3525       Suc. Belenes    NA      NA     1     1   NA    NA
## 3526       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3527       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3528       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3529       Suc. Belenes     2       2    NA     2    2     4
## 3530       Suc. Belenes     3       6    NA     3    3     6
## 3531       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3532       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3533       Suc. Belenes     2       2     3     2    3     4
## 3534       Suc. Belenes     1       1    NA     1    1     2
## 3535       Suc. Belenes     2       1     1     1    1     2
## 3536       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3537       Suc. Belenes     2      NA    NA    NA   NA    NA
## 3538       Suc. Belenes    11      11     8    11    8     6
## 3539       Suc. Belenes    NA      NA     3    NA   NA     8
## 3540       Suc. Belenes     8       8     8    11    6    11
## 3541       Suc. Belenes     2       3    NA     2   NA    NA
## 3542       Suc. Belenes     6       8     8    11    6     8
## 3543       Suc. Belenes     2      NA     1     1   NA     2
## 3544       Suc. Belenes     2      NA     2     1   NA     2
## 3545       Suc. Belenes    NA      NA    NA    NA    4     2
## 3546       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3547       Suc. Belenes    50      42    45    45   32    32
## 3548       Suc. Belenes    NA      NA    NA    NA   NA    19
## 3549       Suc. Belenes    19      22    25    32   22    35
## 3550       Suc. Belenes     2       2     2     2    2     3
## 3551       Suc. Belenes    NA      NA    NA    NA    2    NA
## 3552       Suc. Belenes    17      11    11    11   14    11
## 3553       Suc. Belenes    63      49    56    63   63    63
## 3554       Suc. Belenes   183     151   134   215  155   201
## 3555       Suc. Belenes     8       8     8     8   10     3
## 3556       Suc. Belenes    13      13    13    19   17    17
## 3557       Suc. Belenes    40      44    34    46   53    44
## 3558       Suc. Belenes     3       3     2     2    3     3
## 3559       Suc. Belenes     5       3     3     3    5     3
## 3560       Suc. Belenes    NA      NA     1    NA    1    NA
## 3561       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3562       Suc. Belenes     1       1    NA     1    1     1
## 3563       Suc. Belenes    NA       1    NA    NA    1    NA
## 3564       Suc. Belenes     1       1     1    NA    1    NA
## 3565       Suc. Belenes     3       0     0     0    0     0
## 3566       Suc. Belenes     5       4     3     5    3     6
## 3567       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3568       Suc. Belenes    NA      NA     2    NA   NA    NA
## 3569       Suc. Belenes     0       0    NA     0    0    NA
## 3570       Suc. Belenes     0       0     0     0    0     0
## 3571       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3572       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3573       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3574       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3575       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3576       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3577       Suc. Belenes     1       1     1     2    1     1
## 3578       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3579       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3580       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3581       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3582       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3583       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3584       Suc. Belenes     1       1     1     2    1     1
## 3585       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3586       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3587       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3588       Suc. Belenes    NA      NA    NA    NA    0    NA
## 3589       Suc. Belenes     1       1     1     2    1     1
## 3590       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3591       Suc. Belenes    NA      NA    NA    NA    3     3
## 3592       Suc. Belenes    NA      NA     0    NA   NA     0
## 3593       Suc. Belenes    NA      NA     2    NA   NA    NA
## 3594       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3595       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3596       Suc. Belenes     3       3     3     6   NA     4
## 3597       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3598       Suc. Belenes     0      NA    NA     0    2    NA
## 3599       Suc. Belenes     1       1     1     2    1     1
## 3600       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3601       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3602       Suc. Belenes     3       1     1     3    5     6
## 3603       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3604       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3605       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3606       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3607       Suc. Belenes     8       8    15     4    8     8
## 3608       Suc. Belenes    13       3    16     3   16    13
## 3609       Suc. Belenes    10      NA     3     5    8     3
## 3610       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3611       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3612       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3613       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3614       Suc. Belenes     3       3     4     2    3     2
## 3615       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3616       Suc. Belenes    NA       1     1     1    1     1
## 3617       Suc. Belenes    NA       2    NA    NA   NA    NA
## 3618       Suc. Belenes    NA       2     1     1    1     1
## 3619       Suc. Belenes    NA      NA     3    NA    3    NA
## 3620       Suc. Belenes    NA       0    NA    NA    0    NA
## 3621       Suc. Belenes    NA      NA     1    NA   NA    NA
## 3622       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3623       Suc. Belenes     2      NA     2    NA   NA     2
## 3624       Suc. Belenes    NA       1     1    NA   NA    NA
## 3625       Suc. Belenes    11       6     8    11   17     8
## 3626       Suc. Belenes     6       8     6     3    8     8
## 3627       Suc. Belenes     5       3     3     2    2     3
## 3628       Suc. Belenes    13       4    11    11    8    13
## 3629       Suc. Belenes     1       2     1     2    2     2
## 3630       Suc. Belenes     2       2    NA     2    4     2
## 3631       Suc. Belenes    NA       3     6     6    3     3
## 3632       Suc. Belenes     2       2     4     2    4     6
## 3633       Suc. Belenes    42      25    25    42   30    25
## 3634       Suc. Belenes    NA      NA    NA     3   NA    NA
## 3635       Suc. Belenes    10       6    19    13   19    16
## 3636       Suc. Belenes    16      13    22    22   19    16
## 3637       Suc. Belenes     5       6     6     6    8     5
## 3638       Suc. Belenes    25      20    11    17   25    23
## 3639       Suc. Belenes    35      32    42    56   63    46
## 3640       Suc. Belenes    92     116   162   148  232     4
## 3641       Suc. Belenes     2      NA    NA    NA   NA    NA
## 3642       Suc. Belenes     8       8     8     8   11     8
## 3643       Suc. Belenes    25      15    19    23   32    13
## 3644       Suc. Belenes    36      40    57    17   34    15
## 3645       Suc. Belenes     8       6     8     7    8     8
## 3646       Suc. Belenes     2       3     3     5    3     2
## 3647       Suc. Belenes     2      NA     4     2    4     2
## 3648       Suc. Belenes     2       2     2     2    2     2
## 3649       Suc. Belenes    NA       1    NA    NA    1    NA
## 3650       Suc. Belenes    NA      NA     1     1    1     2
## 3651       Suc. Belenes    NA      NA    NA     1   NA     1
## 3652       Suc. Belenes     3       2    NA    NA    3    NA
## 3653       Suc. Belenes    NA       1    NA    NA   NA    NA
## 3654       Suc. Belenes     2       0     0     0    0     0
## 3655       Suc. Belenes    NA       0    NA    NA    1    NA
## 3656       Suc. Belenes     5       3     7     3    8     2
## 3657       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3658       Suc. Belenes    NA       0     0     0    0     0
## 3659       Suc. Belenes     1       1     1     2    2     1
## 3660       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3661       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3662       Suc. Belenes     5       3     2     3    3    NA
## 3663       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3664       Suc. Belenes     6      NA     6     3   NA     3
## 3665       Suc. Belenes    NA       0     0     0    1     1
## 3666       Suc. Belenes     1      NA     1     1    3    NA
## 3667       Suc. Belenes     1       1     2     1    1     1
## 3668       Suc. Belenes    NA       0     0     0    0     0
## 3669       Suc. Belenes     5       2     2     2    2    NA
## 3670       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3671       Suc. Belenes     4      NA     4    NA    6    NA
## 3672       Suc. Belenes    NA      NA    NA     0    0     1
## 3673       Suc. Belenes     1      NA     1     1    1    NA
## 3674       Suc. Belenes     1       1     1     1    1    NA
## 3675       Suc. Belenes    NA       0     0     0    0     0
## 3676       Suc. Belenes     3       5     2     3    2    NA
## 3677       Suc. Belenes     1      NA     1    NA    6    NA
## 3678       Suc. Belenes    NA      NA    NA     1    1     1
## 3679       Suc. Belenes     1      NA     1     1    1    NA
## 3680       Suc. Belenes    NA       1    NA     2    1     1
## 3681       Suc. Belenes     1       1     1    NA   NA     1
## 3682       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3683       Suc. Belenes     6      NA     6    NA    3    NA
## 3684       Suc. Belenes    NA       0     0     0    0    NA
## 3685       Suc. Belenes    NA       2    NA    NA    2    NA
## 3686       Suc. Belenes    NA       0     0     0    0     0
## 3687       Suc. Belenes     8       2     5     2    3    NA
## 3688       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3689       Suc. Belenes     6       6     6     3    6     6
## 3690       Suc. Belenes     0       0     0     1    1     1
## 3691       Suc. Belenes     1      NA     3     1    5     2
## 3692       Suc. Belenes     2       1     1     2    3     1
## 3693       Suc. Belenes    NA       0     0     0    0     0
## 3694       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3695       Suc. Belenes    NA      NA     3     3    4     4
## 3696       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3697       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3698       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3699       Suc. Belenes     2       8    15    11   13    13
## 3700       Suc. Belenes    10      16    19    10   13    16
## 3701       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3702       Suc. Belenes    10      15    13    15   15    15
## 3703       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3704       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3705       Suc. Belenes    NA      NA    NA    NA    1    NA
## 3706       Suc. Belenes     3      NA     4    NA   NA    NA
## 3707       Suc. Belenes     5       4     6     4    3     3
## 3708       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3709       Suc. Belenes    NA       1     1     3    4     1
## 3710       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3711       Suc. Belenes    NA       1     1     2    1     2
## 3712       Suc. Belenes     3       3     6    NA    3     6
## 3713       Suc. Belenes    NA       3    NA     1    1     1
## 3714       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3715       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3716       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3717       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3718       Suc. Belenes     2      NA     2    NA   NA    NA
## 3719       Suc. Belenes     2       3     1     1   NA    NA
## 3720       Suc. Belenes    NA       2     4     2    4     2
## 3721       Suc. Belenes     4       6     2     6    4     4
## 3722       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3723       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3724       Suc. Belenes     2       2    NA     2   NA    NA
## 3725       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3726       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3727       Suc. Belenes    61      37    79    29   55     8
## 3728       Suc. Belenes    NA      NA    NA    NA   NA    10
## 3729       Suc. Belenes   130     101   149   133  193   171
## 3730       Suc. Belenes     6      11    14    11   12    11
## 3731       Suc. Belenes     6      NA    NA     1   NA    NA
## 3732       Suc. Belenes    NA       3     3     6    3     3
## 3733       Suc. Belenes    NA      32    32    35   46     7
## 3734       Suc. Belenes   243     159   211   215  208   229
## 3735       Suc. Belenes    15       4    19    13   13    17
## 3736       Suc. Belenes     8      17    17    13   23    19
## 3737       Suc. Belenes   186     125   146   175  188   186
## 3738       Suc. Belenes     4       4     4     7    6    12
## 3739       Suc. Belenes     5       2     5     3    3     3
## 3740       Suc. Belenes    NA      NA     4     6    4     4
## 3741       Suc. Belenes     9       7     7     3    4     4
## 3742       Suc. Belenes    NA       1     1     1    1     1
## 3743       Suc. Belenes     1       1     3     1    2     1
## 3744       Suc. Belenes     2       0     0     0    1     0
## 3745       Suc. Belenes    NA       0    NA    NA   NA    NA
## 3746       Suc. Belenes     6       7     8     3    5     7
## 3747       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3748       Suc. Belenes    NA       2    NA    NA    2     2
## 3749       Suc. Belenes     1      NA     1    NA    1     1
## 3750       Suc. Belenes     0       0     0     0    0     0
## 3751       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3752       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3753       Suc. Belenes    10       3    11    10    4    10
## 3754       Suc. Belenes    NA      NA    NA    NA   NA     5
## 3755       Suc. Belenes     1      NA     1    12   NA     1
## 3756       Suc. Belenes     1       4     2     0    2     0
## 3757       Suc. Belenes     7       2     6     2    6     4
## 3758       Suc. Belenes     3       3     3    NA    3     5
## 3759       Suc. Belenes    NA      NA    NA     0   NA    NA
## 3760       Suc. Belenes    NA       0     0     0    1    NA
## 3761       Suc. Belenes     3      NA     5     3    4     3
## 3762       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3763       Suc. Belenes     1      NA     1     6   NA     1
## 3764       Suc. Belenes     1       1     2    NA    1     2
## 3765       Suc. Belenes     5       4     6     2    2     4
## 3766       Suc. Belenes    NA       3     3    NA    3     3
## 3767       Suc. Belenes    NA      NA    NA     0   NA    NA
## 3768       Suc. Belenes    NA       0     0     0    1    NA
## 3769       Suc. Belenes     3       3     6     6    7     3
## 3770       Suc. Belenes     1      NA     1     4   NA     1
## 3771       Suc. Belenes     1       2    NA    NA   NA    NA
## 3772       Suc. Belenes     3       4    NA    NA    2    NA
## 3773       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3774       Suc. Belenes    NA      NA    NA     0   NA    NA
## 3775       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3776       Suc. Belenes    NA      NA     3     8   NA    NA
## 3777       Suc. Belenes    NA      NA     2    NA   NA     2
## 3778       Suc. Belenes     4      NA     4     2    4     2
## 3779       Suc. Belenes    NA       1     3    NA    3     3
## 3780       Suc. Belenes    NA       0     0     0    1    NA
## 3781       Suc. Belenes    10       3    10    10    7    10
## 3782       Suc. Belenes    NA      NA    NA    NA   NA     2
## 3783       Suc. Belenes     1       3     1     9    6     4
## 3784       Suc. Belenes     3       3     2     0    5     3
## 3785       Suc. Belenes     7       8     8     6    8     8
## 3786       Suc. Belenes     3       4     5     3    5     5
## 3787       Suc. Belenes    NA      NA    NA     0   NA    NA
## 3788       Suc. Belenes    NA       0     0     0    1    NA
## 3789       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3790       Suc. Belenes     1      NA     1     3    6     1
## 3791       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3792       Suc. Belenes    NA      NA    NA     8   NA    NA
## 3793       Suc. Belenes     5      NA     5     3    5     8
## 3794       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3795       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3796       Suc. Belenes     6      51     4     2    2     6
## 3797       Suc. Belenes     6      10    10    16   19    13
## 3798       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3799       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3800       Suc. Belenes     5       3     3     5    3     8
## 3801       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3802       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3803       Suc. Belenes    NA       2    NA    NA   NA    NA
## 3804       Suc. Belenes    NA       3    NA     2   NA    NA
## 3805       Suc. Belenes    NA      NA    NA    NA    4    NA
## 3806       Suc. Belenes     1      NA    NA    NA    1     2
## 3807       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3808       Suc. Belenes     9       8    11    10    7    15
## 3809       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3810       Suc. Belenes    NA       1     1     1    1     1
## 3811       Suc. Belenes     0       0    NA    NA   NA    NA
## 3812       Suc. Belenes    NA       1     1     1    1     1
## 3813       Suc. Belenes    NA      NA    NA    NA   NA     3
## 3814       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3815       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3816       Suc. Belenes     1      NA     1     1   NA     1
## 3817       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3818       Suc. Belenes     1       1    NA    NA   NA    NA
## 3819       Suc. Belenes     2       4     4     2    6     6
## 3820       Suc. Belenes     6       2    11    13    6     8
## 3821       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3822       Suc. Belenes     8       8    40    NA   42    30
## 3823       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3824       Suc. Belenes    35     127    86   206   44   136
## 3825       Suc. Belenes    21      26     9    11   44     2
## 3826       Suc. Belenes    NA      NA    NA     3   NA    NA
## 3827       Suc. Belenes     6       3    NA    NA   NA    NA
## 3828       Suc. Belenes    18      25    32    18   63    42
## 3829       Suc. Belenes   173     271   243   328  370   250
## 3830       Suc. Belenes    25      13    23    15   72    NA
## 3831       Suc. Belenes   112     154   192   165  159   467
## 3832       Suc. Belenes     5       4     4     5    5     4
## 3833       Suc. Belenes     2       3     6     6    3    12
## 3834       Suc. Belenes    12       8    14    10   16    20
## 3835       Suc. Belenes     4       3     5     4    8    NA
## 3836       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3837       Suc. Belenes    NA       2     3     1    1     1
## 3838       Suc. Belenes    NA      NA    NA     1   NA    NA
## 3839       Suc. Belenes     3       1    NA     3    1    NA
## 3840       Suc. Belenes     2       0     0     0    0     0
## 3841       Suc. Belenes    NA       1    NA    NA    1    NA
## 3842       Suc. Belenes    10       5     8    NA    7     3
## 3843       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3844       Suc. Belenes     2      NA     2     2   NA     2
## 3845       Suc. Belenes    NA       1     1     2    1    NA
## 3846       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3847       Suc. Belenes     0       0     0     0    0     0
## 3848       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3849       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3850       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3851       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3852       Suc. Belenes     3       6     3     6    6    NA
## 3853       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3854       Suc. Belenes    NA      NA     4    NA   NA    NA
## 3855       Suc. Belenes     1      NA    NA    NA    1     2
## 3856       Suc. Belenes     1       1     3     1    3     2
## 3857       Suc. Belenes    NA      NA     7     6   12    NA
## 3858       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3859       Suc. Belenes    NA       0    NA     0    0    NA
## 3860       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3861       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3862       Suc. Belenes    NA       6     8     3    6    NA
## 3863       Suc. Belenes    NA      NA     4    NA    4    NA
## 3864       Suc. Belenes     0      NA    NA    NA    1     1
## 3865       Suc. Belenes    NA      NA     3     1    2     4
## 3866       Suc. Belenes     2       2     5     2    7     2
## 3867       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3868       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3869       Suc. Belenes    NA       0    NA     0    0    NA
## 3870       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3871       Suc. Belenes    NA       6    NA     3   NA    NA
## 3872       Suc. Belenes    NA      NA     4    NA   NA    NA
## 3873       Suc. Belenes     1      NA    NA    NA    1     2
## 3874       Suc. Belenes     2      NA    NA     1    1     2
## 3875       Suc. Belenes    NA      NA     7     2   14    NA
## 3876       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3877       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3878       Suc. Belenes    NA       8     3     6   14    NA
## 3879       Suc. Belenes    NA      NA     4    NA    7    NA
## 3880       Suc. Belenes    NA      NA     0    NA    0     0
## 3881       Suc. Belenes     6       4     4    NA    8    NA
## 3882       Suc. Belenes    NA       0    NA     0    0    NA
## 3883       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3884       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3885       Suc. Belenes    NA       6    17    20    8     3
## 3886       Suc. Belenes    NA      NA    NA    NA    7    NA
## 3887       Suc. Belenes     1      NA    NA    NA    1     3
## 3888       Suc. Belenes    NA       1     3     1    2     3
## 3889       Suc. Belenes    15       6    14    15    7    11
## 3890       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3891       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3892       Suc. Belenes    NA       0    NA     0    0    NA
## 3893       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3894       Suc. Belenes    NA      NA     3    NA    3    NA
## 3895       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3896       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3897       Suc. Belenes     2       6     2     2    2     2
## 3898       Suc. Belenes     3       3     3     3    6     3
## 3899       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3900       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3901       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3902       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3903       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3904       Suc. Belenes     6       5     3    NA    6     3
## 3905       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3906       Suc. Belenes     1       1    NA     1   NA    NA
## 3907       Suc. Belenes    NA       2     2    NA    2     2
## 3908       Suc. Belenes     3      NA    NA    NA   NA     0
## 3909       Suc. Belenes     2       2     4     1    2     2
## 3910       Suc. Belenes    NA       6     8     8   11     6
## 3911       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3912       Suc. Belenes    NA       0     0    NA   NA    NA
## 3913       Suc. Belenes    NA       1    NA    NA   NA    NA
## 3914       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3915       Suc. Belenes    NA      NA     4    NA   NA    NA
## 3916       Suc. Belenes     1       1    NA    NA   NA    NA
## 3917       Suc. Belenes     4       8     6     6    8     4
## 3918       Suc. Belenes    NA      NA    NA    NA    3    NA
## 3919       Suc. Belenes    NA      NA    NA    NA    6     6
## 3920       Suc. Belenes     3      NA    NA    NA    3    NA
## 3921       Suc. Belenes     1      NA    NA    NA    1    NA
## 3922       Suc. Belenes     2       6     4     2    8     6
## 3923       Suc. Belenes     4       8    30    NA   34    NA
## 3924       Suc. Belenes    16       5    18     8    8    NA
## 3925       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3926       Suc. Belenes    54      32    32    51   32    44
## 3927       Suc. Belenes     6       6     2    23    2     2
## 3928       Suc. Belenes    NA      NA    NA    17   NA    NA
## 3929       Suc. Belenes    NA      NA     4    53   95    NA
## 3930       Suc. Belenes   123     159   211   162  144    95
## 3931       Suc. Belenes     6      21    NA    30   NA    NA
## 3932       Suc. Belenes     2       6     6    44   25    17
## 3933       Suc. Belenes   110     118   120    76  142    63
## 3934       Suc. Belenes     3       6     3    NA    3    NA
## 3935       Suc. Belenes     2       3     3     1   NA    NA
## 3936       Suc. Belenes     1       3     3     6   NA    NA
## 3937       Suc. Belenes     1       1     1     2    1     1
## 3938       Suc. Belenes    NA      NA    NA    NA    1    NA
## 3939       Suc. Belenes     1      NA     1     3    1     3
## 3940       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3941       Suc. Belenes    NA       2    NA    NA    1     3
## 3942       Suc. Belenes     6       0     7     0    4     4
## 3943       Suc. Belenes    NA       0    NA     1    2    NA
## 3944       Suc. Belenes     2       2    NA     2    9     4
## 3945       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3946       Suc. Belenes     2       2    NA     2    2     2
## 3947       Suc. Belenes     0       0    NA     0    1     1
## 3948       Suc. Belenes     0       0     0     0    0     1
## 3949       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3950       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3951       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3952       Suc. Belenes    NA       4     1     3   NA     3
## 3953       Suc. Belenes    NA      NA     4    11   NA     4
## 3954       Suc. Belenes     0       0     1     0    0     2
## 3955       Suc. Belenes     1      NA    NA    NA   10     2
## 3956       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3957       Suc. Belenes    NA       0     0     2   NA    NA
## 3958       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3959       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3960       Suc. Belenes    NA       1     1     3   NA    NA
## 3961       Suc. Belenes    NA       4     7     7    7    NA
## 3962       Suc. Belenes     0       0     1    NA    0     2
## 3963       Suc. Belenes     1      NA    NA    NA    3     2
## 3964       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3965       Suc. Belenes    NA       0     0     2   NA    NA
## 3966       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3967       Suc. Belenes    NA       1     1     3   NA    NA
## 3968       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3969       Suc. Belenes    NA       0    NA    NA   NA     0
## 3970       Suc. Belenes     1      NA    NA    NA    1     2
## 3971       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3972       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3973       Suc. Belenes    NA      NA    NA     3   NA    NA
## 3974       Suc. Belenes    NA      NA    11    18   11     4
## 3975       Suc. Belenes     0       0     1    NA    0     0
## 3976       Suc. Belenes    NA       2    NA     2    2    NA
## 3977       Suc. Belenes    NA       0     0     2   NA    NA
## 3978       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3979       Suc. Belenes    NA      NA    NA    NA   NA     1
## 3980       Suc. Belenes     3       6     1     8    3    NA
## 3981       Suc. Belenes    NA       4     4    11    4     4
## 3982       Suc. Belenes     0       0     1    NA    0     3
## 3983       Suc. Belenes     1      NA     2    NA    3     2
## 3984       Suc. Belenes     1      NA    NA    NA   NA    NA
## 3985       Suc. Belenes    NA       0     0     2   NA    NA
## 3986       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3987       Suc. Belenes     2      NA    NA     3    8     4
## 3988       Suc. Belenes    NA      NA    NA    NA   NA     0
## 3989       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3990       Suc. Belenes     6       6     6     8   14     8
## 3991       Suc. Belenes     3       3     3     3    9     5
## 3992       Suc. Belenes     2       2    NA     2    3    NA
## 3993       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3994       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3995       Suc. Belenes    15       8    13    11   19    11
## 3996       Suc. Belenes     6       3    13    29   25    16
## 3997       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3998       Suc. Belenes    11      11    11    11   18    25
## 3999       Suc. Belenes     8      13     8    10   13    18
## 4000       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4001       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4002       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4003       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4004       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4005       Suc. Belenes     4       3     6     1    6     4
## 4006       Suc. Belenes     3       1     1     2    2     2
## 4007       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4008       Suc. Belenes    NA      NA     1     1   NA    NA
## 4009       Suc. Belenes     6      NA     2     4    2     2
## 4010       Suc. Belenes    NA      NA     1     1   NA    NA
## 4011       Suc. Belenes    NA       6    NA     3    6     3
## 4012       Suc. Belenes    NA       3    NA     1    4     3
## 4013       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4014       Suc. Belenes     2       2     1     2    2     3
## 4015       Suc. Belenes    NA      NA     1    NA   NA     4
## 4016       Suc. Belenes    NA      NA    NA     2    4    NA
## 4017       Suc. Belenes     1      NA     1     1    1     1
## 4018       Suc. Belenes    19      19    17    25   19    21
## 4019       Suc. Belenes    31      28    39    48   54    42
## 4020       Suc. Belenes    13      11    15    17   25    13
## 4021       Suc. Belenes     3       2     3     4    5     5
## 4022       Suc. Belenes     8       5    12    12    8    17
## 4023       Suc. Belenes     1      NA     1    NA   NA    NA
## 4024       Suc. Belenes     6       6     8     6    4     6
## 4025       Suc. Belenes     8       3     3    11    6     3
## 4026       Suc. Belenes     6       4     6     6    6     4
## 4027       Suc. Belenes     2       1     1     2    1     1
## 4028       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4029       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4030       Suc. Belenes    66      36    44    61   57    46
## 4031       Suc. Belenes     8       3    NA    NA   NA    NA
## 4032       Suc. Belenes     6      NA     3     6   13    10
## 4033       Suc. Belenes     3       3    16    29    3    13
## 4034       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4035       Suc. Belenes     6      NA     2     3    2    NA
## 4036       Suc. Belenes    90      62    73    93   99    73
## 4037       Suc. Belenes     6      NA     3    NA   NA    NA
## 4038       Suc. Belenes    42      95    74    92  187    88
## 4039       Suc. Belenes    18      60    35    32   28    28
## 4040       Suc. Belenes    NA      NA    NA    NA   NA    11
## 4041       Suc. Belenes    74      55    51    66   53    44
## 4042       Suc. Belenes   123     154   123   161  222   186
## 4043       Suc. Belenes     7       5     6     7   10     9
## 4044       Suc. Belenes    21      20    21    24   27    30
## 4045       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4046       Suc. Belenes     1       1     4     2    1     2
## 4047       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4048       Suc. Belenes     2       2     4     3    2     3
## 4049       Suc. Belenes    NA       1    NA    NA    1    NA
## 4050       Suc. Belenes     6       6     7     7    7     9
## 4051       Suc. Belenes    17       7    10    10    4     8
## 4052       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4053       Suc. Belenes     2      NA    NA     1   NA    NA
## 4054       Suc. Belenes     1       2     2     1    2     3
## 4055       Suc. Belenes     4       4     4     4    5     3
## 4056       Suc. Belenes     2       1     2     1    1     2
## 4057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4058       Suc. Belenes     2      NA     2    NA    2     2
## 4059       Suc. Belenes    NA      NA    NA     1    1     0
## 4060       Suc. Belenes    NA       1    NA    NA    1     1
## 4061       Suc. Belenes     1       1     2     1    2     1
## 4062       Suc. Belenes     1       1     1     1   NA     1
## 4063       Suc. Belenes     1      NA     1     1    1     1
## 4064       Suc. Belenes     0      NA     0     0    0    NA
## 4065       Suc. Belenes     3      NA    NA    NA   NA     3
## 4066       Suc. Belenes     3       3    NA    NA   NA     3
## 4067       Suc. Belenes     3       3     3    NA    5     3
## 4068       Suc. Belenes     3       3    14     3   10    NA
## 4069       Suc. Belenes     2      NA     2     2   NA     2
## 4070       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4071       Suc. Belenes     2       2     8     2    8     6
## 4072       Suc. Belenes    10       3    10     8   13    13
## 4073       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4074       Suc. Belenes     3      NA     4     6   NA    NA
## 4075       Suc. Belenes    NA       7     7    15   11    11
## 4076       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4077       Suc. Belenes     1      NA     0     1   NA     2
## 4078       Suc. Belenes     1       2     2     7    4     4
## 4079       Suc. Belenes     6       5     9     2   10     4
## 4080       Suc. Belenes     2      NA     1    NA    2    NA
## 4081       Suc. Belenes    NA      NA     0     0   NA    NA
## 4082       Suc. Belenes     4       4     8     4    8     4
## 4083       Suc. Belenes    10       3    13    11   16    10
## 4084       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4085       Suc. Belenes    NA      NA     1     4   NA    NA
## 4086       Suc. Belenes     4       7     7    15   18    18
## 4087       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4088       Suc. Belenes     1      NA     0     1    0     2
## 4089       Suc. Belenes     1       2     2     3   NA    NA
## 4090       Suc. Belenes     4       5     8     6    9     6
## 4091       Suc. Belenes     0       2     1    NA    3     2
## 4092       Suc. Belenes    NA      NA     0     0   NA    NA
## 4093       Suc. Belenes     8       2     6     6    8     8
## 4094       Suc. Belenes    10       6    13    11   13    13
## 4095       Suc. Belenes    NA      NA     1     1   NA    NA
## 4096       Suc. Belenes     4       4    11    11   18    14
## 4097       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4098       Suc. Belenes     1      NA     0     0    0     2
## 4099       Suc. Belenes     1       2     2     3    4     2
## 4100       Suc. Belenes     3       4     4     4    6     6
## 4101       Suc. Belenes     2      NA     1     2    0     2
## 4102       Suc. Belenes     1       5     4     3    1     5
## 4103       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4104       Suc. Belenes    NA       3     3     6   NA    NA
## 4105       Suc. Belenes    NA      NA    NA    NA   11    11
## 4106       Suc. Belenes    NA      NA     6     4    4     2
## 4107       Suc. Belenes    NA       3    NA    NA    1    NA
## 4108       Suc. Belenes    NA      NA     0     0   NA    NA
## 4109       Suc. Belenes     8       4    11     8   11     8
## 4110       Suc. Belenes    16      10    13    14   16    10
## 4111       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4112       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4113       Suc. Belenes     8       3     6     4   NA    NA
## 4114       Suc. Belenes     7      11    11    22   25    11
## 4115       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4116       Suc. Belenes     1      NA     1     0    0     2
## 4117       Suc. Belenes     1       2     2     5    6     4
## 4118       Suc. Belenes     6       8     7     4   11     8
## 4119       Suc. Belenes     2      NA     2     2    3     2
## 4120       Suc. Belenes    NA      NA     0     0   NA    NA
## 4121       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4122       Suc. Belenes     7       3     6     8    6     6
## 4123       Suc. Belenes    NA      NA    NA    NA    0    NA
## 4124       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4125       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4126       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4127       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4128       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4129       Suc. Belenes    NA       3    NA    NA   NA    NA
## 4130       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4131       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4132       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4133       Suc. Belenes    NA      NA     3    NA   NA    NA
## 4134       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4135       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4136       Suc. Belenes     6       1     3     3    6     5
## 4137       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4138       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4139       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4140       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4141       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4142       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4143       Suc. Belenes    NA       2     2     2    6     2
## 4144       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4145       Suc. Belenes     3       8     5     8   16     3
## 4146       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4147       Suc. Belenes     3      NA    16    29   41    48
## 4148       Suc. Belenes    NA       5     8     3    9     2
## 4149       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4150       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4151       Suc. Belenes    NA      21    60    53   39    60
## 4152       Suc. Belenes    11      35    63    74   70    92
## 4153       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4154       Suc. Belenes     4       4    17    13   17    13
## 4155       Suc. Belenes     8      17    27    44   42    53
## 4156       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4157       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4158       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4159       Suc. Belenes    NA      NA    NA    NA    3     2
## 4160       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4161       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4162       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4163       Suc. Belenes     1      NA    NA    NA    1     1
## 4164       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4165       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4166       Suc. Belenes     5      NA    NA    NA   NA    NA
## 4167       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4168       Suc. Belenes     3      NA    NA    NA    1     5
## 4169       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4170       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4171       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4172       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4173       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4174       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4175       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4176       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4177       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4178       Suc. Belenes    NA      NA    NA     1    1     1
## 4179       Suc. Belenes    NA      NA    NA    NA   NA     4
## 4180       Suc. Belenes     1       1     1     1    1    NA
## 4181       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4182       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4183       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4184       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4185       Suc. Belenes    NA      NA    NA     1    1     0
## 4186       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4187       Suc. Belenes    NA      NA    NA     1    2    NA
## 4188       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4189       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4190       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4191       Suc. Belenes    NA      NA    NA     1    0     1
## 4192       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4193       Suc. Belenes    NA      NA     1     1    2    NA
## 4194       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4195       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4196       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4197       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4198       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4199       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4200       Suc. Belenes    NA      NA    NA    NA   NA     4
## 4201       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4202       Suc. Belenes    NA      NA    NA     1    1     2
## 4203       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4204       Suc. Belenes     1       1     1     1    1    NA
## 4205       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4206       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4207       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4208       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4209       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4210       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4211       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4212       Suc. Belenes    11      11     8     2   13     4
## 4213       Suc. Belenes    10      13    16     6    6     6
## 4214       Suc. Belenes     5       3     3    NA   NA    NA
## 4215       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4216       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4217       Suc. Belenes     0       0    NA     0   NA     1
## 4218       Suc. Belenes     1       1     1     1    1     1
## 4219       Suc. Belenes     2       1     2     1    1     3
## 4220       Suc. Belenes     0       0     1     0    2    NA
## 4221       Suc. Belenes     1      NA     1     1    1     1
## 4222       Suc. Belenes    NA      NA     1     1    1     1
## 4223       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4224       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4225       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4226       Suc. Belenes    NA       2    NA     2    2     2
## 4227       Suc. Belenes     4       4     4     4    6     2
## 4228       Suc. Belenes     6       6     6     3    6     8
## 4229       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4230       Suc. Belenes     2       4     6     6    8     8
## 4231       Suc. Belenes    NA       2     2     3    2    NA
## 4232       Suc. Belenes    NA      NA    NA    NA    2     1
## 4233       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4234       Suc. Belenes    19      17    19    17   19    19
## 4235       Suc. Belenes     3      NA    NA     3   NA    NA
## 4236       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4237       Suc. Belenes    32      25    25    16   32    32
## 4238       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4239       Suc. Belenes     6       6     6     8    5     5
## 4240       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4241       Suc. Belenes    11       8    11    17   23    23
## 4242       Suc. Belenes    11       8     8    11    6     8
## 4243       Suc. Belenes    49      53    70    77   70    81
## 4244       Suc. Belenes    88      74    74    92   92    70
## 4245       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4246       Suc. Belenes    15      17    25    21   19    25
## 4247       Suc. Belenes    78      59    61    78   72    49
## 4248       Suc. Belenes     3       3     6     9    3     9
## 4249       Suc. Belenes     4       2     5     5    4     4
## 4250       Suc. Belenes     6       8     6     6    6     6
## 4251       Suc. Belenes     2       2     2     2    2     4
## 4252       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4253       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4254       Suc. Belenes    NA      NA     1     1    1     1
## 4255       Suc. Belenes     1      NA    NA     2    4     1
## 4256       Suc. Belenes    NA      NA     0     0    0     0
## 4257       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4258       Suc. Belenes     0       1     1    NA    1     2
## 4259       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4260       Suc. Belenes    NA      NA     0     0    0     0
## 4261       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4262       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4263       Suc. Belenes    NA       2    NA     2    2    NA
## 4264       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4265       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4266       Suc. Belenes     6       3     3     6    6     6
## 4267       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4268       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4269       Suc. Belenes     0       0    NA     0   NA     1
## 4270       Suc. Belenes    NA      NA     0    NA    0    NA
## 4271       Suc. Belenes     1       1     1     1    6     2
## 4272       Suc. Belenes     1       2     1     2    2     2
## 4273       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4274       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4275       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4276       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4277       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4278       Suc. Belenes     0       0    NA     0   NA     0
## 4279       Suc. Belenes     1       1     1     1    2     2
## 4280       Suc. Belenes     1       1     1     1    1     2
## 4281       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4282       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4283       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4284       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4285       Suc. Belenes     0       0    NA     0   NA     1
## 4286       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4287       Suc. Belenes     1       1     1     1    2     2
## 4288       Suc. Belenes     1       1     1     1    1     1
## 4289       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4290       Suc. Belenes    NA      NA     3    NA   NA    NA
## 4291       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4292       Suc. Belenes    NA      NA    NA    NA    2    NA
## 4293       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4294       Suc. Belenes     2       2     4    NA    2     4
## 4295       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4296       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4297       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4298       Suc. Belenes     6       3     3     8    8     8
## 4299       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4300       Suc. Belenes     0       0    NA     0   NA     1
## 4301       Suc. Belenes     0      NA    NA     0   NA     0
## 4302       Suc. Belenes     1       1     1     1    4     2
## 4303       Suc. Belenes     3       1     1     2    2     5
## 4304       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4305       Suc. Belenes    NA      NA    NA    NA    5     3
## 4306       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4307       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4308       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4309       Suc. Belenes     6       8    NA     2    8     8
## 4310       Suc. Belenes     6      NA     6     3   13     6
## 4311       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4312       Suc. Belenes    NA      NA     4     4    4     7
## 4313       Suc. Belenes     3      NA    NA     3    3     3
## 4314       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4315       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4316       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4317       Suc. Belenes    NA      NA    NA    NA    2    NA
## 4318       Suc. Belenes     1      NA     1     1    2     2
## 4319       Suc. Belenes    NA      NA    NA     1    1     1
## 4320       Suc. Belenes     1       1     4     2   NA    NA
## 4321       Suc. Belenes     1       0    NA     0    1     1
## 4322       Suc. Belenes     1      NA    NA     2    1     2
## 4323       Suc. Belenes    NA       2     1     2    1     2
## 4324       Suc. Belenes     6       6     6     8    6     8
## 4325       Suc. Belenes    NA      NA     3     1    2     1
## 4326       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4327       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4328       Suc. Belenes    NA       4    NA    NA   NA     4
## 4329       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4330       Suc. Belenes     6      13    13    15    6     8
## 4331       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4332       Suc. Belenes    13      10    13    19   13    19
## 4333       Suc. Belenes    29      35    57    38   48    67
## 4334       Suc. Belenes     3       5     6     3    5     6
## 4335       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4336       Suc. Belenes     7       7    21    11   25    18
## 4337       Suc. Belenes    46      60   141    77  109   155
## 4338       Suc. Belenes    NA       8    NA    NA    6     2
## 4339       Suc. Belenes    21      40    63    44   49    72
## 4340       Suc. Belenes     1       1     3     3    2     3
## 4341       Suc. Belenes    NA      NA     2     3    3     2
## 4342       Suc. Belenes    NA      NA     1     2    3     2
## 4343       Suc. Belenes     1       3    NA     1    2     1
## 4344       Suc. Belenes     1       1    NA     1   NA    NA
## 4345       Suc. Belenes     1       1    NA     6    2     3
## 4346       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4347       Suc. Belenes     0      NA    NA     0    0     0
## 4348       Suc. Belenes     1       1     1     2    2     2
## 4349       Suc. Belenes     1       2     3     2    5     3
## 4350       Suc. Belenes     2       2    NA    NA    2     4
## 4351       Suc. Belenes    NA       0     0     0    0     0
## 4352       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4353       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4354       Suc. Belenes     2       2     1     2    4     3
## 4355       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4356       Suc. Belenes     3      NA     6     3    3     6
## 4357       Suc. Belenes    NA       0     2     0    1     1
## 4358       Suc. Belenes    NA       1     3     2    5     4
## 4359       Suc. Belenes    NA       1     2     1    1     1
## 4360       Suc. Belenes     2       2     1     2    4     3
## 4361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4362       Suc. Belenes    NA       0     0    NA   NA     0
## 4363       Suc. Belenes    NA       1     1    NA    1    NA
## 4364       Suc. Belenes    NA      NA     1     1    1     1
## 4365       Suc. Belenes     2       2     1     2    4     3
## 4366       Suc. Belenes    NA      NA    NA     3    6    NA
## 4367       Suc. Belenes     0      NA     1     0    1    NA
## 4368       Suc. Belenes     2       1     1     2    3    NA
## 4369       Suc. Belenes     1      NA     1     1    1     1
## 4370       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4371       Suc. Belenes     3       3     6    NA    6     6
## 4372       Suc. Belenes    NA       0    NA    NA   NA     0
## 4373       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4374       Suc. Belenes     2       2     1     2    4     3
## 4375       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4376       Suc. Belenes    NA       3     8     6    6     6
## 4377       Suc. Belenes     0      NA     2     0    2     1
## 4378       Suc. Belenes    NA       1     1    NA    3     4
## 4379       Suc. Belenes     1       2     3     1    2     2
## 4380       Suc. Belenes     1      NA    NA     5    4     3
## 4381       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4382       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4383       Suc. Belenes     2       2     2     4    2     4
## 4384       Suc. Belenes     6      NA     3    16    3     3
## 4385       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4386       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4387       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4388       Suc. Belenes    NA       2     1     2   NA    NA
## 4389       Suc. Belenes    NA       5    NA    NA   NA    NA
## 4390       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4391       Suc. Belenes    NA      NA     1     1   NA     3
## 4392       Suc. Belenes     1       3     1     1   NA     2
## 4393       Suc. Belenes    NA      NA     0    NA   NA    NA
## 4394       Suc. Belenes    NA      NA     1     1    1     4
## 4395       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4396       Suc. Belenes    NA      NA     0     0   NA    NA
## 4397       Suc. Belenes    NA      NA     2     1    1     1
## 4398       Suc. Belenes     6      NA    NA     3   NA     6
## 4399       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4400       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4401       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4402       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4403       Suc. Belenes     2       2     4    NA   NA     2
## 4404       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4405       Suc. Belenes     2       2     6     2   NA     2
## 4406       Suc. Belenes    21      15    42    11    4    19
## 4407       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4408       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4409       Suc. Belenes    63      44   108    19   16    76
## 4410       Suc. Belenes     8       3     9     3    2     9
## 4411       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4412       Suc. Belenes    18      11    28    35    7    28
## 4413       Suc. Belenes    88      60   148    32   28   106
## 4414       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4415       Suc. Belenes    17       2    23    13    4    19
## 4416       Suc. Belenes    49      34    78   283   15    66
## 4417       Suc. Belenes     3      NA     1    NA   NA     3
## 4418       Suc. Belenes     3       2     3    NA    2     3
## 4419       Suc. Belenes    NA       2     4    NA   NA    NA
## 4420       Suc. Belenes     4       1     5    NA   NA    NA
## 4421       Suc. Belenes    NA      NA     1     1    1     1
## 4422       Suc. Belenes    NA       1     1     1   NA    NA
## 4423       Suc. Belenes    NA       1    NA     1   NA     2
## 4424       Suc. Belenes     1       0     1     2    0     0
## 4425       Suc. Belenes    NA       0     1    NA   NA    NA
## 4426       Suc. Belenes     2       2     5     5   NA    NA
## 4427       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4428       Suc. Belenes     0      NA     1    NA   NA    NA
## 4429       Suc. Belenes    NA      NA     0     0    0     0
## 4430       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4431       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4432       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4433       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4434       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4435       Suc. Belenes     3      NA     3    NA   NA     3
## 4436       Suc. Belenes     4       4    15    NA   NA    NA
## 4437       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4438       Suc. Belenes     0      NA    NA    NA    0    NA
## 4439       Suc. Belenes     3       1    NA    NA    1     2
## 4440       Suc. Belenes     1       1     1     1   NA     1
## 4441       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4442       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4443       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4444       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4445       Suc. Belenes    NA      NA     3    NA    3     3
## 4446       Suc. Belenes     4       4    11    NA   NA    NA
## 4447       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4448       Suc. Belenes    NA       0     1     0   NA    NA
## 4449       Suc. Belenes     3       1    NA    NA    1     2
## 4450       Suc. Belenes     1       1    NA     1   NA    NA
## 4451       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4452       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4453       Suc. Belenes     3      NA     6     6   NA    NA
## 4454       Suc. Belenes     1       1    11    NA   NA    NA
## 4455       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4456       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4457       Suc. Belenes     3       1    NA    NA    1     2
## 4458       Suc. Belenes     1      NA    NA     1   NA    NA
## 4459       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4460       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4461       Suc. Belenes     6       3    NA     3   NA     3
## 4462       Suc. Belenes    NA      NA     2     2   NA    NA
## 4463       Suc. Belenes     1      NA    NA     3   NA    NA
## 4464       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4465       Suc. Belenes     2       2    NA    NA   NA    NA
## 4466       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4467       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4468       Suc. Belenes     6      NA     8     3   NA     3
## 4469       Suc. Belenes     4       1    11    NA   NA    NA
## 4470       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4471       Suc. Belenes     0       0     1    NA   NA     0
## 4472       Suc. Belenes     5       1    NA    NA    1     2
## 4473       Suc. Belenes     1       1    NA     3   NA    NA
## 4474       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4475       Suc. Belenes     1       4     1     3    3     3
## 4476       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4477       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4478       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4479       Suc. Belenes    NA      55    NA    NA   NA     4
## 4480       Suc. Belenes    NA     136    NA    NA   NA    NA
## 4481       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4482       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4483       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4484       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4485       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4486       Suc. Belenes    NA      NA     1    NA   11    12
## 4487       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4488       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4489       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4490       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4491       Suc. Belenes    NA      NA     0    NA   NA    NA
## 4492       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4493       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4494       Suc. Belenes    NA      NA    NA     4   NA     6
## 4495       Suc. Belenes    25      42    17    30   32    11
## 4496       Suc. Belenes     3       2    NA     3    2     1
## 4497       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4498       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4499       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4500       Suc. Belenes    NA     127   119   185  227    40
## 4501       Suc. Belenes    NA      NA    NA    NA   NA    76
## 4502       Suc. Belenes   162     479   485   336  707   466
## 4503       Suc. Belenes    35      62    90   102  111    71
## 4504       Suc. Belenes    NA      26    12    27   53    26
## 4505       Suc. Belenes    NA      NA    NA     3   NA    NA
## 4506       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4507       Suc. Belenes    NA     211    70   271  331   257
## 4508       Suc. Belenes   486      NA   750    NA   NA    NA
## 4509       Suc. Belenes    13      42    11    53   53    32
## 4510       Suc. Belenes    53     114    21   114  114   129
## 4511       Suc. Belenes   199     820   691   824   NA   888
## 4512       Suc. Belenes     6       8     4    17   19    32
## 4513       Suc. Belenes    NA      11    11    15   11     9
## 4514       Suc. Belenes    NA      30    20    40   36    12
## 4515       Suc. Belenes    NA      10    20    16   23    15
## 4516       Suc. Belenes    NA      NA     2    NA   NA    NA
## 4517       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4518       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4519       Suc. Belenes    NA      NA    18    NA   NA     1
## 4520       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4521       Suc. Belenes    NA      NA    54    NA   NA    NA
## 4522       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4523       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4524       Suc. Belenes    NA      NA     0    NA   NA    NA
## 4525       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4526       Suc. Belenes    NA      27    11    20   37    17
## 4527       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4528       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4529       Suc. Belenes     5       6    15    16   24    17
## 4530       Suc. Belenes    NA       4    30    11   27    23
## 4531       Suc. Belenes    10       3    NA    NA   NA    NA
## 4532       Suc. Belenes    NA       1     2     1    2    NA
## 4533       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4534       Suc. Belenes    NA      21     3    11   29     6
## 4535       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4536       Suc. Belenes     2       6     7    15   12    16
## 4537       Suc. Belenes    NA      11    NA     1   13    14
## 4538       Suc. Belenes     4      NA    NA    NA   NA    NA
## 4539       Suc. Belenes    NA       1     2     1    2    NA
## 4540       Suc. Belenes    NA      24    17    NA   32     3
## 4541       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4542       Suc. Belenes     5      10    12    15   15    18
## 4543       Suc. Belenes    NA      25    13     1   19    16
## 4544       Suc. Belenes    11       8    NA    NA   NA    NA
## 4545       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4546       Suc. Belenes    NA      NA    NA     3   NA    14
## 4547       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4548       Suc. Belenes    NA      NA     2    NA   11    13
## 4549       Suc. Belenes    NA       1     2     1    2    NA
## 4550       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4551       Suc. Belenes    NA      30    23    23   57    37
## 4552       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4553       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4554       Suc. Belenes     5      15    15    14   37    22
## 4555       Suc. Belenes    NA      13    11    30   23    27
## 4556       Suc. Belenes     8       5    NA    NA   NA    NA
## 4557       Suc. Belenes    NA       1     2     1    2    NA
## 4558       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4559       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4560       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4561       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4562       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4563       Suc. Belenes     8      11    11    17   30    21
## 4564       Suc. Belenes    19      16    10    29   60    29
## 4565       Suc. Belenes    NA      13     5    13   30    10
## 4566       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4567       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4568       Suc. Belenes     3       2     1     1    1     2
## 4569       Suc. Belenes    10       5     6     6   17     6
## 4570       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4571       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4572       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4573       Suc. Belenes     3       3     3     3    5     5
## 4574       Suc. Belenes     7      11     6    14    6     3
## 4575       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4576       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4577       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4578       Suc. Belenes    NA       6     6    14    6    NA
## 4579       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4580       Suc. Belenes     0       0    NA    NA    1    NA
## 4581       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4582       Suc. Belenes     2       1    NA    NA    1    NA
## 4583       Suc. Belenes     2      NA    NA    NA   NA    NA
## 4584       Suc. Belenes     3      NA    NA    NA   NA    NA
## 4585       Suc. Belenes     2       2    NA    NA   NA    NA
## 4586       Suc. Belenes     6      11     2     6    6     4
## 4587       Suc. Belenes    NA       3    NA     3   NA     3
## 4588       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4589       Suc. Belenes     6      13     4    19   15    11
## 4590       Suc. Belenes     2       4    NA     1    2     1
## 4591       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4592       Suc. Belenes    66      66    53    79  119   106
## 4593       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4594       Suc. Belenes   333     523   412   682  644   476
## 4595       Suc. Belenes    30      38    15    53   60    75
## 4596       Suc. Belenes    44      30    45    78   84    98
## 4597       Suc. Belenes    NA      14    14    23   14    42
## 4598       Suc. Belenes     6       8     8    NA   14    NA
## 4599       Suc. Belenes    70     141    70   176  282   141
## 4600       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4601       Suc. Belenes    21      NA    11    27   38    32
## 4602       Suc. Belenes    NA      95    27   106  169   169
## 4603       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4604       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4605       Suc. Belenes    11      11     5    20   10    12
## 4606       Suc. Belenes     8      12    NA    12   14    11
## 4607       Suc. Belenes    10       6    NA    10   18    14
## 4608       Suc. Belenes     7       6     5    12    9     7
## 4609       Suc. Belenes     2       2     3    NA    2    NA
## 4610       Suc. Belenes     3      NA    NA     2   NA    NA
## 4611       Suc. Belenes     3      NA     3    NA   NA    NA
## 4612       Suc. Belenes    16      NA    NA    NA    3    NA
## 4613       Suc. Belenes    NA       2     2     2    4    NA
## 4614       Suc. Belenes    NA       0     0     1   NA    NA
## 4615       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4616       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4617       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4618       Suc. Belenes    NA       3     3     3   NA     6
## 4619       Suc. Belenes     8       2     6    11   14     5
## 4620       Suc. Belenes     6      11     8    14   23    11
## 4621       Suc. Belenes     6      NA    NA    NA   NA    NA
## 4622       Suc. Belenes    NA      18    NA     7   NA     7
## 4623       Suc. Belenes     1      NA    NA    NA    1    NA
## 4624       Suc. Belenes     7       3     2     5   10    12
## 4625       Suc. Belenes     2       2    NA    NA   NA    NA
## 4626       Suc. Belenes    42      55    27    59   66    44
## 4627       Suc. Belenes    25       3    20     5    5     8
## 4628       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4629       Suc. Belenes    NA       2    NA    NA    0    NA
## 4630       Suc. Belenes    NA       3    NA     6   NA     6
## 4631       Suc. Belenes     3      11     6    14   17    11
## 4632       Suc. Belenes     3      NA    NA    NA   NA    NA
## 4633       Suc. Belenes    NA      21    NA     7    4     7
## 4634       Suc. Belenes     5       3    NA     5    7     7
## 4635       Suc. Belenes     2       2    NA    NA   NA    NA
## 4636       Suc. Belenes    21      21    13    30   30    32
## 4637       Suc. Belenes    28       3    28     5    5     5
## 4638       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4639       Suc. Belenes    NA       2    NA    NA    0    NA
## 4640       Suc. Belenes    NA       3     3     6   NA     6
## 4641       Suc. Belenes     8      NA     6     6   12     5
## 4642       Suc. Belenes     3      NA     6    14   17    11
## 4643       Suc. Belenes     6      NA    NA    NA   NA    NA
## 4644       Suc. Belenes    NA      14    NA     4   NA     7
## 4645       Suc. Belenes     1      NA    NA    NA    1    NA
## 4646       Suc. Belenes     5       3     2     5    7    10
## 4647       Suc. Belenes     2       2    NA    NA   NA    NA
## 4648       Suc. Belenes    36      32    17    53   27    44
## 4649       Suc. Belenes    NA       3    53     5    5     8
## 4650       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4651       Suc. Belenes     3       3    NA    NA    3     3
## 4652       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4653       Suc. Belenes    36      15    11    11   32    17
## 4654       Suc. Belenes    NA      NA    25    NA   NA    NA
## 4655       Suc. Belenes    NA       2    NA    NA    0    NA
## 4656       Suc. Belenes    NA       3     3     6   NA     6
## 4657       Suc. Belenes     8       2     6    11   15     5
## 4658       Suc. Belenes     6      14    17    14   23    11
## 4659       Suc. Belenes     6      NA    NA    NA   NA    NA
## 4660       Suc. Belenes    NA      21    NA     7    7     7
## 4661       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4662       Suc. Belenes     5       3     2     8   10    12
## 4663       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4664       Suc. Belenes    57      44    38    80   72    78
## 4665       Suc. Belenes    30       3    28    13   10     8
## 4666       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4667       Suc. Belenes    NA       2    NA    NA    0    NA
## 4668       Suc. Belenes     3       2     2     1    2    NA
## 4669       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4670       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4671       Suc. Belenes     4      15     8     6    6     6
## 4672       Suc. Belenes     6       3     6    10    6     6
## 4673       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4674       Suc. Belenes     3      NA    NA    NA    3    NA
## 4675       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4676       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4677       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4678       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4679       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4680       Suc. Belenes     1       1     1     1    1     1
## 4681       Suc. Belenes     6       7     4     5    4     4
## 4682       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4683       Suc. Belenes     1       1     1    NA    1    NA
## 4684       Suc. Belenes    NA      NA     2     4    2     2
## 4685       Suc. Belenes    NA      NA     1     1    1     1
## 4686       Suc. Belenes     6       6     8    17   11    14
## 4687       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4688       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4689       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4690       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4691       Suc. Belenes    NA      NA     2     2   NA    NA
## 4692       Suc. Belenes     4       2     2    NA    4     4
## 4693       Suc. Belenes     6      11    11    11   11    11
## 4694       Suc. Belenes     8       6     6     2    6     2
## 4695       Suc. Belenes     2       2     1     1    3     2
## 4696       Suc. Belenes     2      NA    NA     2   NA     4
## 4697       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4698       Suc. Belenes    NA      NA    NA    NA    2    NA
## 4699       Suc. Belenes     8       6     4     6    6    13
## 4700       Suc. Belenes    16      13    13    18   18    11
## 4701       Suc. Belenes    NA      NA    NA    NA   NA     6
## 4702       Suc. Belenes    16      10    16    10   29    19
## 4703       Suc. Belenes     2       2     2     2    2     2
## 4704       Suc. Belenes    14      17    14    20   17    14
## 4705       Suc. Belenes    25      18    18    28   25    28
## 4706       Suc. Belenes   123     109   106   120  116   144
## 4707       Suc. Belenes    13       6    11     8    6    11
## 4708       Suc. Belenes    19       6    11    17   11    17
## 4709       Suc. Belenes    36      34    42    46   42    61
## 4710       Suc. Belenes     5       3     4     3    3     4
## 4711       Suc. Belenes     5       4     3     5    3     6
## 4712       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4713       Suc. Belenes     3       2     2     4    4     4
## 4714       Suc. Belenes    NA       1     1    NA   NA    NA
## 4715       Suc. Belenes    NA       1     1     2    2     2
## 4716       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4717       Suc. Belenes     2       1     1     5   NA     4
## 4718       Suc. Belenes     1      NA     0     0    0     0
## 4719       Suc. Belenes     1       1     1     1    1     1
## 4720       Suc. Belenes     2       3     3     3    5     1
## 4721       Suc. Belenes    NA       2    NA     2    2     2
## 4722       Suc. Belenes     1       1    NA     1    0     1
## 4723       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4724       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4725       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4726       Suc. Belenes     0       0     0     0    0     0
## 4727       Suc. Belenes     1      NA     1     1    1     2
## 4728       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4729       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4730       Suc. Belenes    NA      NA    NA    NA    2     1
## 4731       Suc. Belenes     1       2     1     1    1     1
## 4732       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4733       Suc. Belenes    NA       0     0    NA    1     1
## 4734       Suc. Belenes    NA      NA    NA    NA    2     1
## 4735       Suc. Belenes     1       1     1     1    1     1
## 4736       Suc. Belenes    NA       0     0    NA   NA    NA
## 4737       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4738       Suc. Belenes     1       2     1     1    1     1
## 4739       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4740       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4741       Suc. Belenes    NA      NA     1     1    1     1
## 4742       Suc. Belenes    NA       0     0    NA   NA    NA
## 4743       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4744       Suc. Belenes     1       2     1     1    1     1
## 4745       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4746       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4747       Suc. Belenes     2      NA    NA    NA   NA     1
## 4748       Suc. Belenes     1       1     1     1    1     1
## 4749       Suc. Belenes     1       2     2     1    1     1
## 4750       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4751       Suc. Belenes    NA      NA    NA     0   NA    NA
## 4752       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4753       Suc. Belenes    NA       0     0    NA   NA    NA
## 4754       Suc. Belenes    NA      NA    NA    NA    2     1
## 4755       Suc. Belenes     1       2     1     1    1     1
## 4756       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4757       Suc. Belenes     0       0    NA    NA    2     1
## 4758       Suc. Belenes    NA      NA     2     2   NA     1
## 4759       Suc. Belenes     1       1     1     1    1     2
## 4760       Suc. Belenes    NA       0     0    NA   NA    NA
## 4761       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4762       Suc. Belenes     4       6     4     6    4     4
## 4763       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4764       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4765       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4766       Suc. Belenes    NA      NA     4     2    2     4
## 4767       Suc. Belenes    NA       3     3     3    3     6
## 4768       Suc. Belenes     7       4    11    NA   NA     4
## 4769       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4770       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4771       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4772       Suc. Belenes    NA      NA    NA     3   NA    NA
## 4773       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4774       Suc. Belenes    NA       0    NA     0    0     0
## 4775       Suc. Belenes     1      NA     1    NA   NA     1
## 4776       Suc. Belenes     1      NA    NA    NA   NA     1
## 4777       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4778       Suc. Belenes    NA       2     1     3    1     1
## 4779       Suc. Belenes     2       1     1     2    1     1
## 4780       Suc. Belenes     3       3     6     3    3     3
## 4781       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4782       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4783       Suc. Belenes    NA      NA    NA     2   NA     2
## 4784       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4785       Suc. Belenes     6       2     4     4    2     6
## 4786       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4787       Suc. Belenes    NA       4    NA    NA    4    NA
## 4788       Suc. Belenes     2       2     4     2    4     6
## 4789       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4790       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4791       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4792       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4793       Suc. Belenes    24      50    NA    34   34    21
## 4794       Suc. Belenes    NA      NA    NA    NA   NA    25
## 4795       Suc. Belenes    44      73    25    44   79    76
## 4796       Suc. Belenes     2       8     3     5    6     8
## 4797       Suc. Belenes     2       2     2    NA   NA    NA
## 4798       Suc. Belenes    NA      NA    NA    NA    6    17
## 4799       Suc. Belenes    11      63    NA    14   35    21
## 4800       Suc. Belenes   106     130    74   120  109   123
## 4801       Suc. Belenes     4       6     8     4    4    11
## 4802       Suc. Belenes    11       8     2    11   11     6
## 4803       Suc. Belenes    21      55    13    38   30    49
## 4804       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4805       Suc. Belenes     6       9    NA     9    3     3
## 4806       Suc. Belenes    NA       1     1    NA    1     3
## 4807       Suc. Belenes    NA      NA    NA     2    2    NA
## 4808       Suc. Belenes    NA      NA    NA     2    2    NA
## 4809       Suc. Belenes     2       1     2    NA    1     1
## 4810       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4811       Suc. Belenes    NA       1     1     1    1     1
## 4812       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4813       Suc. Belenes     1      NA    NA     1   NA     1
## 4814       Suc. Belenes     1       0     0     0    0     0
## 4815       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4816       Suc. Belenes     4      NA    NA    NA   NA     2
## 4817       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4818       Suc. Belenes    NA      NA    NA    NA    2    NA
## 4819       Suc. Belenes    NA      NA    NA    NA    0     0
## 4820       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4821       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4822       Suc. Belenes     1      NA    NA     1    1    NA
## 4823       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4824       Suc. Belenes     0       0     0     0    0     1
## 4825       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4826       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4827       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4828       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4829       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4830       Suc. Belenes    NA       0     0    NA   NA    NA
## 4831       Suc. Belenes    NA       3    NA     3   NA     4
## 4832       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4833       Suc. Belenes    NA       0    NA     0    0     0
## 4834       Suc. Belenes     1       0    NA    NA    0     0
## 4835       Suc. Belenes    NA       1     1    NA    1     3
## 4836       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4837       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4838       Suc. Belenes    NA       0     0    NA    0     0
## 4839       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4840       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4841       Suc. Belenes    NA       0     0    NA   NA    NA
## 4842       Suc. Belenes    NA       3    NA    NA   NA     4
## 4843       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4844       Suc. Belenes    NA       0    NA     0    0     0
## 4845       Suc. Belenes     0       0    NA     0   NA     0
## 4846       Suc. Belenes    NA       1     1    NA    1     1
## 4847       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4848       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4849       Suc. Belenes    NA       0     0    NA    0     0
## 4850       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4851       Suc. Belenes    NA       0     0    NA   NA    NA
## 4852       Suc. Belenes    NA       3    NA    NA   NA     1
## 4853       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4854       Suc. Belenes    NA       0    NA     0    0     0
## 4855       Suc. Belenes     0       0    NA     0    0     0
## 4856       Suc. Belenes    NA       1     3    NA    1     1
## 4857       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4858       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4859       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4860       Suc. Belenes    NA      NA    NA    NA    6     3
## 4861       Suc. Belenes    NA      NA    NA    NA    0     0
## 4862       Suc. Belenes    NA       0     0    NA    0     0
## 4863       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4864       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4865       Suc. Belenes    NA       0     0    NA   NA    NA
## 4866       Suc. Belenes     3       3     3    NA   NA     4
## 4867       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4868       Suc. Belenes    NA       0    NA     0    0     0
## 4869       Suc. Belenes     1       0     0    NA    0     1
## 4870       Suc. Belenes    NA       1     1     2    1     1
## 4871       Suc. Belenes    NA      NA    NA    NA   NA     1
## 4872       Suc. Belenes     0      NA    NA    NA   NA    NA
## 4873       Suc. Belenes    NA       0     0    NA    0     0
## 4874       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4875       Suc. Belenes    NA       1     1     1   NA     2
## 4876       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4877       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4878       Suc. Belenes     2       4     2     2    2     2
## 4879       Suc. Belenes     3       3     3     3    3     3
## 4880       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4881       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4882       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4883       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4884       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4885       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4886       Suc. Belenes     3       1    NA    NA    1    NA
## 4887       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4888       Suc. Belenes    NA       1    NA     1    1     1
## 4889       Suc. Belenes     2      NA     2    NA   NA    NA
## 4890       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4891       Suc. Belenes     2       1     1     1    1     1
## 4892       Suc. Belenes     6      NA    NA    NA    3    NA
## 4893       Suc. Belenes    NA       0    NA     0    0    NA
## 4894       Suc. Belenes    NA      NA    NA     1   NA    NA
## 4895       Suc. Belenes    NA      NA    NA     2   NA    NA
## 4896       Suc. Belenes    NA      NA     1    NA   NA    NA
## 4897       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4898       Suc. Belenes     2       2     2     2    2     4
## 4899       Suc. Belenes    NA       2    NA    NA   NA    NA
## 4900       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4901       Suc. Belenes    24       5    11    16   13     5
## 4902       Suc. Belenes    NA      NA    NA    NA   NA     3
## 4903       Suc. Belenes    22      16    16    32   41    51
## 4904       Suc. Belenes     2       2     3     3    2     6
## 4905       Suc. Belenes    25      11     7    18   14    14
## 4906       Suc. Belenes    67      46    35    67   70    70
## 4907       Suc. Belenes     6       8     6     4    6     8
## 4908       Suc. Belenes    19      21    21    23   30    30
## 4909       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4910       Suc. Belenes    NA      NA    NA     2   NA     2
## 4911       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4912       Suc. Belenes     1       1     1     1    1     1
## 4913       Suc. Belenes    NA       1    NA    NA   NA    NA
## 4914       Suc. Belenes    NA       1     1     1    2     1
## 4915       Suc. Belenes     2      NA    NA     1    1    NA
## 4916       Suc. Belenes     0       0     0     0    0     0
## 4917       Suc. Belenes    NA       0    NA    NA   NA    NA
## 4918       Suc. Belenes     1       2    NA    NA    0    NA
## 4919       Suc. Belenes    NA      NA    NA    NA   NA     0
## 4920       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4921       Suc. Belenes     0       0     0     0    0     0
## 4922       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4923       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4924       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4925       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4926       Suc. Belenes     0      NA    NA    NA    0    NA
## 4927       Suc. Belenes     1       1     1     2    2     1
## 4928       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4929       Suc. Belenes    NA       0     0    NA   NA    NA
## 4930       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4931       Suc. Belenes     1       3    NA    NA   NA     3
## 4932       Suc. Belenes    NA      NA    NA    NA    0    NA
## 4933       Suc. Belenes     1       1     1     2    2     1
## 4934       Suc. Belenes    NA       0     0    NA   NA    NA
## 4935       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4936       Suc. Belenes    NA      NA    NA     0   NA     0
## 4937       Suc. Belenes     1       1     1     2    2     1
## 4938       Suc. Belenes     1       3    NA    NA   NA    NA
## 4939       Suc. Belenes    NA      NA    NA    NA   NA     2
## 4940       Suc. Belenes    NA       0     0    NA   NA    NA
## 4941       Suc. Belenes     1       3     3     3    3    NA
## 4942       Suc. Belenes    NA       0     0    NA    0    NA
## 4943       Suc. Belenes     1       1     1     2    2     1
## 4944       Suc. Belenes     1      NA    NA    NA   NA    NA
## 4945       Suc. Belenes    NA       0     0    NA   NA    NA
## 4946       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4947       Suc. Belenes     2       3    NA    NA   NA    NA
## 4948       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4949       Suc. Belenes    53      80    15    78    8    34
## 4950       Suc. Belenes    54      38    10    79   13    38
## 4951       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4952       Suc. Belenes     4       7     7     7   NA    NA
## 4953       Suc. Belenes    13      25     5    23    5    15
## 4954       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4955       Suc. Belenes    12      11     8    16   15    14
## 4956       Suc. Belenes    NA      NA    NA    NA    5     5
## 4957       Suc. Belenes     5       5     5     4    7     6
## 4958       Suc. Belenes     1       0    NA    NA   NA    NA
## 4959       Suc. Belenes     3       3     1     3    3     3
## 4960       Suc. Belenes     2       3     2     1   NA     4
## 4961       Suc. Belenes    NA      NA    NA     0   NA     0
## 4962       Suc. Belenes    NA       1    NA     4    2     2
## 4963       Suc. Belenes     2       2    NA    NA   NA    NA
## 4964       Suc. Belenes     2       2     2     1    1     2
## 4965       Suc. Belenes    NA       3     6     8    3     3
## 4966       Suc. Belenes     1       3     1     3    3    NA
## 4967       Suc. Belenes    NA      NA    NA    NA    1     0
## 4968       Suc. Belenes    NA      NA     1     1    1    NA
## 4969       Suc. Belenes    NA      NA     2     1    2     4
## 4970       Suc. Belenes    NA       1     1     1   NA    NA
## 4971       Suc. Belenes     6       4     4     4    4     6
## 4972       Suc. Belenes     6       6     6     4    6     6
## 4973       Suc. Belenes     3       3    NA     3   NA     6
## 4974       Suc. Belenes    23      25    21    21   25    25
## 4975       Suc. Belenes     3       4     3     2    4     4
## 4976       Suc. Belenes     3       5     5     5    5     5
## 4977       Suc. Belenes     2       3     2     3    1     4
## 4978       Suc. Belenes     4      NA     2    NA    4    NA
## 4979       Suc. Belenes     6       4     6     8   11     8
## 4980       Suc. Belenes    NA      NA    NA    NA    1    NA
## 4981       Suc. Belenes     8       6     8    11   13    13
## 4982       Suc. Belenes     5       8     5     3    8     3
## 4983       Suc. Belenes    NA      NA    NA    NA    3     6
## 4984       Suc. Belenes     3       3     3     3    3     3
## 4985       Suc. Belenes    29      23    27    30   20    23
## 4986       Suc. Belenes    11       8     6     6   14    14
## 4987       Suc. Belenes    NA      NA     6    NA   NA    NA
## 4988       Suc. Belenes    21      28    14    21   21    35
## 4989       Suc. Belenes     4       4     7     4    4     4
## 4990       Suc. Belenes    11      15     6     8   23    19
## 4991       Suc. Belenes    97      82    78    89   91   116
## 4992       Suc. Belenes    93      78    82    91   72    87
## 4993       Suc. Belenes    NA      NA     3    NA   NA    NA
## 4994       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4995       Suc. Belenes    12      11    11    12   13    15
## 4996       Suc. Belenes    12       9     9    11   12    14
## 4997       Suc. Belenes     8       2     6     6    8     8
## 4998       Suc. Belenes    11       9     9     9   10     9
## 4999       Suc. Belenes    NA      NA    NA    NA    2     1
## 5000       Suc. Belenes     2       1     8     7   13     1
## 5001       Suc. Belenes    NA      NA    NA     3    1    NA
## 5002       Suc. Belenes     8       3     5     8    9     7
## 5003       Suc. Belenes     2       0     1     0    1     0
## 5004       Suc. Belenes    NA       1    NA    NA    2     1
## 5005       Suc. Belenes    14       9    20     2   16     7
## 5006       Suc. Belenes     2       3     3     1    2    NA
## 5007       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5008       Suc. Belenes     4      NA     4     4    2     4
## 5009       Suc. Belenes     1       1     1     1    1     0
## 5010       Suc. Belenes     1      NA     1    NA   NA    NA
## 5011       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5012       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5013       Suc. Belenes    NA      NA     1    NA    1     1
## 5014       Suc. Belenes    NA       1     1     2    2     1
## 5015       Suc. Belenes     3      NA     3     5    4     6
## 5016       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5017       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5018       Suc. Belenes     6       3     4    NA   NA    NA
## 5019       Suc. Belenes    NA      NA     2     2   NA    NA
## 5020       Suc. Belenes     1       0    NA    NA   NA    NA
## 5021       Suc. Belenes     5       5     3     2    4     3
## 5022       Suc. Belenes    NA      NA     1    NA    2     2
## 5023       Suc. Belenes     6       4     3     6    4     9
## 5024       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5025       Suc. Belenes    NA       0     0     0   NA    NA
## 5026       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5027       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5028       Suc. Belenes     0       0    NA    NA   NA    NA
## 5029       Suc. Belenes     2       1     1     0    1     2
## 5030       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5031       Suc. Belenes    NA       1     1     3    3     1
## 5032       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5033       Suc. Belenes    NA       0     0     0   NA    NA
## 5034       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5035       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5036       Suc. Belenes     1       0    NA    NA   NA    NA
## 5037       Suc. Belenes     2       0    NA     1    0     2
## 5038       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5039       Suc. Belenes    NA      NA     2    NA    1     1
## 5040       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5041       Suc. Belenes     6       4     3     4   NA     4
## 5042       Suc. Belenes     3       6     3    NA   NA     6
## 5043       Suc. Belenes    NA       4     4     4   NA    NA
## 5044       Suc. Belenes     3       1     1     3    3     2
## 5045       Suc. Belenes     4       2     2     4    2     4
## 5046       Suc. Belenes     5       4     3     6    5     5
## 5047       Suc. Belenes    NA       0     0     0   NA    NA
## 5048       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5049       Suc. Belenes     3       8     1     3    6     6
## 5050       Suc. Belenes     2       4     2     4    4    NA
## 5051       Suc. Belenes     1       0    NA    NA   NA    NA
## 5052       Suc. Belenes     4       3     3     3    5     4
## 5053       Suc. Belenes     4       4     7     6    8     6
## 5054       Suc. Belenes     6       4     3     9    6     9
## 5055       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5056       Suc. Belenes    NA       0     0     0   NA    NA
## 5057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5058       Suc. Belenes     4       6     4     9    6     9
## 5059       Suc. Belenes    NA      NA     0    NA   NA     0
## 5060       Suc. Belenes    NA      NA    NA    NA    5     1
## 5061       Suc. Belenes     2       3     4    NA   NA    NA
## 5062       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5063       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5064       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5065       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5066       Suc. Belenes     2       2     2     2   11     6
## 5067       Suc. Belenes     3       3     3     3   13    13
## 5068       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5069       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5070       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5071       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5072       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5073       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5074       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5075       Suc. Belenes     1      NA    NA     2   NA     1
## 5076       Suc. Belenes     1      NA    NA     2    4     5
## 5077       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5078       Suc. Belenes     2       1     2     2    3     2
## 5079       Suc. Belenes    11      NA    NA    NA   NA    NA
## 5080       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5081       Suc. Belenes     2       1     2     1    1     2
## 5082       Suc. Belenes     6       3     8     6    6     6
## 5083       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5084       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5085       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5086       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5087       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5088       Suc. Belenes     6       2     4     4   NA     8
## 5089       Suc. Belenes     3      NA     6     3    3     3
## 5090       Suc. Belenes     2       6     8     6    6    13
## 5091       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5092       Suc. Belenes    NA      NA    NA     2   NA    NA
## 5093       Suc. Belenes    NA      NA    NA    NA   NA     4
## 5094       Suc. Belenes    48      53    82    69   69    53
## 5095       Suc. Belenes    NA      NA    NA    NA   NA    41
## 5096       Suc. Belenes    60      19    32    29   19    41
## 5097       Suc. Belenes     2       2     3     3    5     3
## 5098       Suc. Belenes    NA      NA    NA     3   NA     3
## 5099       Suc. Belenes    81      85    74    85   81   102
## 5100       Suc. Belenes    85      85    56    70  130    70
## 5101       Suc. Belenes    53      44    93    91  101   101
## 5102       Suc. Belenes    95     123   163   165  169   142
## 5103       Suc. Belenes     4       1     3     3    5     5
## 5104       Suc. Belenes    NA       3     5     3    6     6
## 5105       Suc. Belenes     4       2    NA    NA    2    NA
## 5106       Suc. Belenes     2       1    NA     1    1     2
## 5107       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5108       Suc. Belenes    NA       2     1     1    1     1
## 5109       Suc. Belenes     1       1     1     2   NA    NA
## 5110       Suc. Belenes     2       1     1     2    2     1
## 5111       Suc. Belenes     0       1     0     0    1     1
## 5112       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5113       Suc. Belenes     5       4     2     3    3     4
## 5114       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5115       Suc. Belenes     3      NA     4    NA   NA    NA
## 5116       Suc. Belenes     1      NA    NA    NA   NA     1
## 5117       Suc. Belenes     0       0     1     0    0     0
## 5118       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5119       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5120       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5121       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5122       Suc. Belenes    14       3    NA     3   NA    NA
## 5123       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5124       Suc. Belenes     0      NA    NA    NA    0     0
## 5125       Suc. Belenes     2      NA     2     2    1     1
## 5126       Suc. Belenes     1       4     3     3    2     4
## 5127       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5128       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5129       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5130       Suc. Belenes     3      NA    NA     3   NA    NA
## 5131       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5132       Suc. Belenes    NA       0    NA     0    0    NA
## 5133       Suc. Belenes    NA      NA    NA    NA    1     1
## 5134       Suc. Belenes     1       3     3     3    3     4
## 5135       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5136       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5137       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5138       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5139       Suc. Belenes    NA      NA    NA    NA    1    NA
## 5140       Suc. Belenes    NA      NA    NA    NA    1     1
## 5141       Suc. Belenes     1       3     3     3    2     3
## 5142       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5143       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5144       Suc. Belenes     8      NA    NA     3   NA    NA
## 5145       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5146       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5147       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5148       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5149       Suc. Belenes     3      NA     8     8    3     6
## 5150       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5151       Suc. Belenes    NA      NA     0    NA    0    NA
## 5152       Suc. Belenes     2       2    NA    NA    3     1
## 5153       Suc. Belenes     1       4     3     3    3     5
## 5154       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5155       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5156       Suc. Belenes     4       4     1     3    6     3
## 5157       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5158       Suc. Belenes    NA      11     2     6    8     8
## 5159       Suc. Belenes    NA      10     3     6   10     6
## 5160       Suc. Belenes     3       3     3     3    3     3
## 5161       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5162       Suc. Belenes    NA       0     0    NA    0     0
## 5163       Suc. Belenes    NA       1    NA    NA   NA     1
## 5164       Suc. Belenes     4       3     1     3    4     4
## 5165       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5166       Suc. Belenes    NA       3     3     4    3     4
## 5167       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5168       Suc. Belenes    NA       2     1    NA   NA    NA
## 5169       Suc. Belenes     3       3     3     8    8    NA
## 5170       Suc. Belenes     1       1     1     1    1     1
## 5171       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5172       Suc. Belenes    NA      NA    NA     1    1    NA
## 5173       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5174       Suc. Belenes    NA      NA     2    NA    2     4
## 5175       Suc. Belenes    NA       6    NA     2   NA     2
## 5176       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5177       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5178       Suc. Belenes    11      37    26    34   32    24
## 5179       Suc. Belenes    NA      NA    NA    NA   NA    16
## 5180       Suc. Belenes    10       3     3    13   13    19
## 5181       Suc. Belenes    NA       3     2     2    3     3
## 5182       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5183       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5184       Suc. Belenes    NA      NA    NA     3   NA     6
## 5185       Suc. Belenes     7      18     4    14    4    11
## 5186       Suc. Belenes    35      74    99    28   70   120
## 5187       Suc. Belenes    NA       2     2     4   NA     2
## 5188       Suc. Belenes     4      13     2     2    4     6
## 5189       Suc. Belenes    15      40    57    25   40    74
## 5190       Suc. Belenes    NA      NA     1     1    1     2
## 5191       Suc. Belenes    NA       2     3    NA    3    NA
## 5192       Suc. Belenes     2       2    NA     2    2     2
## 5193       Suc. Belenes    NA      NA     1    NA    1    NA
## 5194       Suc. Belenes    NA       1     1    NA   NA    NA
## 5195       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5196       Suc. Belenes     1      NA     1     1   NA     1
## 5197       Suc. Belenes    NA      NA     0    NA   NA    NA
## 5198       Suc. Belenes     2       3     2     2    1     4
## 5199       Suc. Belenes     0      NA    NA    NA   NA    NA
## 5200       Suc. Belenes    NA      NA     0    NA   NA    NA
## 5201       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5202       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5203       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5204       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5205       Suc. Belenes    NA       4     1     1    1     6
## 5206       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5207       Suc. Belenes    NA       0     0    NA    0     0
## 5208       Suc. Belenes     0      NA    NA    NA    1     0
## 5209       Suc. Belenes     2      NA     2     2    3     3
## 5210       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5211       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5212       Suc. Belenes    NA      NA    NA     0    0    NA
## 5213       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5214       Suc. Belenes    NA       4     1     1    1     3
## 5215       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5216       Suc. Belenes    NA       0     0    NA    0     0
## 5217       Suc. Belenes    NA      NA    NA    NA    1     0
## 5218       Suc. Belenes    NA      NA    NA     2    1     1
## 5219       Suc. Belenes     5      NA    NA     1   NA    NA
## 5220       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5221       Suc. Belenes    NA      NA    NA     0    0    NA
## 5222       Suc. Belenes    NA       1     1     1    1    NA
## 5223       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5224       Suc. Belenes    NA       0     0    NA    0     0
## 5225       Suc. Belenes    NA      NA    NA    NA    1     0
## 5226       Suc. Belenes    NA      NA    NA    NA    1     1
## 5227       Suc. Belenes     5      NA    NA    NA   NA    NA
## 5228       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5229       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5230       Suc. Belenes    NA       3    NA    NA    3     3
## 5231       Suc. Belenes     2       2    NA     2    2    NA
## 5232       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5233       Suc. Belenes    NA      NA    NA     0    0    NA
## 5234       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5235       Suc. Belenes    NA       1     9     1    1     3
## 5236       Suc. Belenes    NA      NA    NA    NA   NA     4
## 5237       Suc. Belenes    NA       0     0    NA    0     0
## 5238       Suc. Belenes    NA      NA    NA    NA    1     0
## 5239       Suc. Belenes    NA       4     2     2    5     3
## 5240       Suc. Belenes    NA      NA    NA     1   NA     1
## 5241       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5242       Suc. Belenes    NA      NA    NA     0    0    NA
## 5243       Suc. Belenes     4       5     6     5    8    11
## 5244       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5245       Suc. Belenes     3       3     3     3    1     3
## 5246       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5247       Suc. Belenes    13      34     2    NA   NA     2
## 5248       Suc. Belenes    13       6     3    NA   10    10
## 5249       Suc. Belenes     4       4    NA    NA    4     7
## 5250       Suc. Belenes     8       8    NA    NA    3     5
## 5251       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5252       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5253       Suc. Belenes     1       1     0     1   NA     1
## 5254       Suc. Belenes    NA      NA     2    NA    1    NA
## 5255       Suc. Belenes    NA       1    NA     1   NA    NA
## 5256       Suc. Belenes    NA       2     2     1   NA    NA
## 5257       Suc. Belenes    NA      NA    11    NA   NA    NA
## 5258       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5259       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5260       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5261       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5262       Suc. Belenes     2       6    NA     2   NA     2
## 5263       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5264       Suc. Belenes     6       2    NA    NA    2     2
## 5265       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5266       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5267       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5268       Suc. Belenes    18      13    13    13   13    13
## 5269       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5270       Suc. Belenes    54      70    29    41  190    48
## 5271       Suc. Belenes    12      17     9    11    9    14
## 5272       Suc. Belenes    NA      11    NA    NA   NA    NA
## 5273       Suc. Belenes    18      18    18    14   11    18
## 5274       Suc. Belenes    77     218    11    67  310   532
## 5275       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5276       Suc. Belenes    17      17    19    13   15    17
## 5277       Suc. Belenes    57      99    36    53   85    66
## 5278       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5279       Suc. Belenes     7       4     1     2    4     7
## 5280       Suc. Belenes     5       6     2     5    5     8
## 5281       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5282       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5283       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5284       Suc. Belenes     1       1    NA     1   NA    NA
## 5285       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5286       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5287       Suc. Belenes     0       0    NA     0   NA    NA
## 5288       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5289       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5290       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5291       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5292       Suc. Belenes    NA       0    NA     0   NA    NA
## 5293       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5294       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5295       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5296       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5297       Suc. Belenes     5       6    NA     6    6    NA
## 5298       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5299       Suc. Belenes     1       1     0     1   NA     1
## 5300       Suc. Belenes     0      NA    NA    NA    1    NA
## 5301       Suc. Belenes     1       1    NA    NA    1     1
## 5302       Suc. Belenes     4      NA     2     2    3     3
## 5303       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5304       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5305       Suc. Belenes     5       4    NA     3   14    NA
## 5306       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5307       Suc. Belenes     1       1     0     0   NA     0
## 5308       Suc. Belenes    NA      NA    NA    NA    1    NA
## 5309       Suc. Belenes     1       1    NA    NA    1     1
## 5310       Suc. Belenes     2       1     3     3    1     3
## 5311       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5312       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5313       Suc. Belenes     2       1    NA    NA    3    NA
## 5314       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5315       Suc. Belenes     1       1     0     1   NA     1
## 5316       Suc. Belenes     1       1    NA    NA    1     1
## 5317       Suc. Belenes     1       1     3     3    2     1
## 5318       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5319       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5320       Suc. Belenes     3       3     3    NA   11    NA
## 5321       Suc. Belenes    NA      NA    NA    NA    4    NA
## 5322       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5323       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5324       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5325       Suc. Belenes     8       9     8     8    6    NA
## 5326       Suc. Belenes    NA      NA    NA    NA    7    NA
## 5327       Suc. Belenes     1       1     0     1   NA     1
## 5328       Suc. Belenes    NA       0    NA    NA    1    NA
## 5329       Suc. Belenes     1       1    NA     4    5     3
## 5330       Suc. Belenes     8       4     3     4    5     3
## 5331       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5332       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5333       Suc. Belenes    NA      NA    NA    NA    4    NA
## 5334       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5335       Suc. Belenes    NA      NA     1     1   NA    NA
## 5336       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5337       Suc. Belenes    15      68     2     4   34    27
## 5338       Suc. Belenes    19      86     3     3   48    38
## 5339       Suc. Belenes    NA      NA     0    NA   NA    NA
## 5340       Suc. Belenes     4      NA    NA    NA    4    NA
## 5341       Suc. Belenes    13      18    NA    13   20    NA
## 5342       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5343       Suc. Belenes    NA      NA     1    NA    1     1
## 5344       Suc. Belenes    NA      NA    NA    NA    1     1
## 5345       Suc. Belenes     2       2     1     2    2     3
## 5346       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5347       Suc. Belenes     4       7     4     3    4     4
## 5348       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5349       Suc. Belenes    NA       2     3     3    6     4
## 5350       Suc. Belenes     4      NA    NA    NA   NA    NA
## 5351       Suc. Belenes    NA       2     1     3    2     2
## 5352       Suc. Belenes    14       8     8    14   14    14
## 5353       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5354       Suc. Belenes    NA      NA     0    NA   NA    NA
## 5355       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5356       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5357       Suc. Belenes     4       4     2     2    2    NA
## 5358       Suc. Belenes    13      13    13    13    6    11
## 5359       Suc. Belenes    NA      NA    NA    NA    2    NA
## 5360       Suc. Belenes    25       8    20     8   25     8
## 5361       Suc. Belenes    14       8    17     6   23    17
## 5362       Suc. Belenes    NA       4     7    NA   14    NA
## 5363       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5364       Suc. Belenes    11      11     8     4   11     8
## 5365       Suc. Belenes     1       2     1     1    1     2
## 5366       Suc. Belenes     2       2     3    NA    2     3
## 5367       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5368       Suc. Belenes     4       2     2    NA    4     4
## 5369       Suc. Belenes     3      NA    NA     3   NA    NA
## 5370       Suc. Belenes    NA      NA     2    NA    4    NA
## 5371       Suc. Belenes    57      51    53    46   42    51
## 5372       Suc. Belenes    32      32    29    18   32    11
## 5373       Suc. Belenes    29      29    29    19   25    38
## 5374       Suc. Belenes    25      19    29    19   32    32
## 5375       Suc. Belenes    NA      NA    NA     2   NA    NA
## 5376       Suc. Belenes     9      18     9     8    8    11
## 5377       Suc. Belenes     3       2    NA     2   NA     3
## 5378       Suc. Belenes    31      34    42    31   51    34
## 5379       Suc. Belenes     6       6    11     6   17    11
## 5380       Suc. Belenes    81      95    88    70   95    70
## 5381       Suc. Belenes   222     194   229   173  229   194
## 5382       Suc. Belenes     3      NA     3     3    2     2
## 5383       Suc. Belenes     2       4     2     4   NA     4
## 5384       Suc. Belenes    40      36    42    25   38    30
## 5385       Suc. Belenes    87      80    76    70  104    97
## 5386       Suc. Belenes     4       3     3     2    4     4
## 5387       Suc. Belenes     6       5    11    NA    5     3
## 5388       Suc. Belenes     2       2     6    NA    6     4
## 5389       Suc. Belenes     4       3     3     1    4     3
## 5390       Suc. Belenes    NA       1     1    NA   NA    NA
## 5391       Suc. Belenes     1       1     1     1    1     1
## 5392       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5393       Suc. Belenes    NA       1     1     1    1     1
## 5394       Suc. Belenes     2       1     1     1    1     1
## 5395       Suc. Belenes     4       1     1     3    2     2
## 5396       Suc. Belenes     1       2     2     1    1     3
## 5397       Suc. Belenes     3       3     4     6    2     4
## 5398       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5399       Suc. Belenes     4       2    NA    NA    2    NA
## 5400       Suc. Belenes     0       1     0     0    0     0
## 5401       Suc. Belenes    NA      NA    NA    NA    2    NA
## 5402       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5403       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5404       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5405       Suc. Belenes     4       0     1     1    1     0
## 5406       Suc. Belenes    NA      NA    NA    NA    3    NA
## 5407       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5408       Suc. Belenes     4      NA     2    NA   11    NA
## 5409       Suc. Belenes     2       1     4     2    3     2
## 5410       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5411       Suc. Belenes    NA      NA     3    NA    3     3
## 5412       Suc. Belenes     1       4     4    NA    7     4
## 5413       Suc. Belenes     0       1     0     1    1     1
## 5414       Suc. Belenes     0       2     0     1    1     0
## 5415       Suc. Belenes     1       3     1     2    4     5
## 5416       Suc. Belenes     1       2    NA    NA    1     1
## 5417       Suc. Belenes    NA       0     1     0   NA    NA
## 5418       Suc. Belenes    NA      NA    NA    NA    8     2
## 5419       Suc. Belenes     2       1     4     2    3     2
## 5420       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5421       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5422       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5423       Suc. Belenes     0       1     0     0    0     1
## 5424       Suc. Belenes     0       1    NA     0    1    NA
## 5425       Suc. Belenes     1       3     1     2    2     3
## 5426       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5427       Suc. Belenes    NA       0     1     0   NA    NA
## 5428       Suc. Belenes     2      NA     4     2   NA     2
## 5429       Suc. Belenes     2       4     4     2    3     2
## 5430       Suc. Belenes    NA      NA    NA    NA    3     3
## 5431       Suc. Belenes     1       4     4    NA    4     4
## 5432       Suc. Belenes     0       1     0     1    1     1
## 5433       Suc. Belenes    NA       1    NA     0   NA    NA
## 5434       Suc. Belenes     3       1     1     2    2     5
## 5435       Suc. Belenes    NA       1    NA    NA    1    NA
## 5436       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5437       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5438       Suc. Belenes    NA       6    NA     3    3     3
## 5439       Suc. Belenes     7       4     4    11    4     4
## 5440       Suc. Belenes     0       0    NA    NA    1    NA
## 5441       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5442       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5443       Suc. Belenes    NA       0     1     0   NA    NA
## 5444       Suc. Belenes     2      NA     2     2    4     4
## 5445       Suc. Belenes     2       4     4     2    3     2
## 5446       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5447       Suc. Belenes    NA      NA    NA     2   NA    NA
## 5448       Suc. Belenes     3      NA     6    NA    8     8
## 5449       Suc. Belenes    11       7     7     7   11     4
## 5450       Suc. Belenes     2       1     2     1    1     2
## 5451       Suc. Belenes     0       2    NA     1    1     1
## 5452       Suc. Belenes     1       1     3     2    2     3
## 5453       Suc. Belenes     1       3    NA     1    1    NA
## 5454       Suc. Belenes    NA       0     1     0   NA    NA
## 5455       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5456       Suc. Belenes     3       4     9     3    8     3
## 5457       Suc. Belenes    NA      NA    NA     3   NA    NA
## 5458       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5459       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5460       Suc. Belenes     2      15     6     6    4     8
## 5461       Suc. Belenes     3      10     6    13    3    25
## 5462       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5463       Suc. Belenes    NA       3     3    NA    3     3
## 5464       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5465       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5466       Suc. Belenes    NA      11    NA    NA   NA    NA
## 5467       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5468       Suc. Belenes     2       3     2     2    1     2
## 5469       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5470       Suc. Belenes     1      NA     1     1    1     1
## 5471       Suc. Belenes    NA       2     1     1    1     1
## 5472       Suc. Belenes    NA       8    NA     3   NA    NA
## 5473       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5474       Suc. Belenes    NA      NA     2    NA   NA     2
## 5475       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5476       Suc. Belenes    NA      NA    NA     2   NA    NA
## 5477       Suc. Belenes     2       2     2     2    2     2
## 5478       Suc. Belenes    NA      NA    NA    NA    1    NA
## 5479       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5480       Suc. Belenes    NA      NA    NA    NA   NA     6
## 5481       Suc. Belenes    24      21    34    32   26    24
## 5482       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5483       Suc. Belenes    76      38    89   162   16   114
## 5484       Suc. Belenes     9       8    12    11    5     8
## 5485       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5486       Suc. Belenes    NA      18     7    21   14    14
## 5487       Suc. Belenes   208     166   183   208  180   201
## 5488       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5489       Suc. Belenes    13       2    15     8   11    17
## 5490       Suc. Belenes    85      80   120   161   44   120
## 5491       Suc. Belenes     1       2     1     2    2     3
## 5492       Suc. Belenes    NA      NA     2     3    3     2
## 5493       Suc. Belenes    NA       1     2     2    2     2
## 5494       Suc. Belenes     1       1     1     1    2     1
## 5495       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5496       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5497       Suc. Belenes     2       0     0     0    0     0
## 5498       Suc. Belenes     3       1    NA    NA    1    NA
## 5499       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5500       Suc. Belenes     0      NA    NA    NA   NA     0
## 5501       Suc. Belenes     0       0     0     0    0     0
## 5502       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5503       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5504       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5505       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5506       Suc. Belenes     3       6    NA     6    3     6
## 5507       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5508       Suc. Belenes     0       0     0     1    0     1
## 5509       Suc. Belenes     2       1     2     3    3     2
## 5510       Suc. Belenes    NA      NA     1     1   NA     1
## 5511       Suc. Belenes    NA      NA    NA     0    0     0
## 5512       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5513       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5514       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5515       Suc. Belenes    NA       4    NA     7    4     4
## 5516       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5517       Suc. Belenes     0       0     0     1    0     1
## 5518       Suc. Belenes     2       1     2     5    1     4
## 5519       Suc. Belenes    NA      NA     1     1   NA     1
## 5520       Suc. Belenes    NA      NA    NA     0    0     0
## 5521       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5522       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5523       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5524       Suc. Belenes     0       0     0     1    1     1
## 5525       Suc. Belenes     2       1     2     3    1     2
## 5526       Suc. Belenes    NA       3     1     1   NA     1
## 5527       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5528       Suc. Belenes    NA      NA     3    NA    6    NA
## 5529       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5530       Suc. Belenes    NA      NA    NA     0    0     0
## 5531       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5532       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5533       Suc. Belenes     3       6     3    NA   NA     3
## 5534       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5535       Suc. Belenes     1       1     0     1    0     1
## 5536       Suc. Belenes     2       1     2     7    1     2
## 5537       Suc. Belenes    NA      NA     1     1   NA     1
## 5538       Suc. Belenes    NA      NA    NA     0    0     0
## 5539       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5540       Suc. Belenes     1       1     1     1    2     3
## 5541       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5542       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5543       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5544       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5545       Suc. Belenes    11      13     8     2    4     8
## 5546       Suc. Belenes    13      13    13     3    6    13
## 5547       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5548       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5549       Suc. Belenes     5       8     5     3   NA     5
## 5550       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5551       Suc. Belenes     1       1     1    NA   NA     1
## 5552       Suc. Belenes     1       3     1    NA    1     1
## 5553       Suc. Belenes     3       3     3     1    2     3
## 5554       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5555       Suc. Belenes     4       2     2    NA    1    NA
## 5556       Suc. Belenes    NA      NA    NA     2   NA     2
## 5557       Suc. Belenes     2       2    NA     2    1     1
## 5558       Suc. Belenes     3       6     8     3    6    17
## 5559       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5560       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5561       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5562       Suc. Belenes    NA      NA    NA    NA    1     1
## 5563       Suc. Belenes     1       1    NA    NA   NA    NA
## 5564       Suc. Belenes     6       2     6    NA   NA     4
## 5565       Suc. Belenes    13      13    17    19   19    19
## 5566       Suc. Belenes     3       2     2     3    3     2
## 5567       Suc. Belenes    28      31    37    37   37    42
## 5568       Suc. Belenes     6      17    20    28   17    14
## 5569       Suc. Belenes    NA      NA    NA    NA    4    NA
## 5570       Suc. Belenes     5       3     2     3    5     2
## 5571       Suc. Belenes    13       8    11    21   15     6
## 5572       Suc. Belenes     1       4     7     4    6     5
## 5573       Suc. Belenes     3       2     3     3    3    NA
## 5574       Suc. Belenes     6       6     4     6    4     4
## 5575       Suc. Belenes    NA      NA     6    NA   NA    NA
## 5576       Suc. Belenes     4       4     4     6    2     4
## 5577       Suc. Belenes    NA      NA     1     1   NA    NA
## 5578       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5579       Suc. Belenes    37      58    74    69   61    18
## 5580       Suc. Belenes    NA      NA    NA    NA   NA    79
## 5581       Suc. Belenes    22      16    35    10   16    13
## 5582       Suc. Belenes     9      14     9    14   12    11
## 5583       Suc. Belenes     3       2     2     2    2     3
## 5584       Suc. Belenes    37      62    73    NA   99    37
## 5585       Suc. Belenes    14      14    17    37   54     6
## 5586       Suc. Belenes    21      49   120    42   63   109
## 5587       Suc. Belenes    60      77   106    42   42   113
## 5588       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5589       Suc. Belenes    38      36    66    11   44    30
## 5590       Suc. Belenes   110      99   169   216    2   104
## 5591       Suc. Belenes     5       5    21    NA    8     9
## 5592       Suc. Belenes     6       3     5     6    8     9
## 5593       Suc. Belenes     6       4     6     4    4     8
## 5594       Suc. Belenes     3       3     2     3    6     2
## 5595       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5596       Suc. Belenes     1      NA    NA     1    1     1
## 5597       Suc. Belenes     1       1     1     1   NA    NA
## 5598       Suc. Belenes     4      NA    NA     4   NA    NA
## 5599       Suc. Belenes    NA       1     1    NA    1     1
## 5600       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5601       Suc. Belenes     3       1     2     1    0     1
## 5602       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5603       Suc. Belenes     6       5     7     2    6     2
## 5604       Suc. Belenes     2       2     2     4    2     2
## 5605       Suc. Belenes     0       1     1     1    0     1
## 5606       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5607       Suc. Belenes     0       0    NA    NA    0     0
## 5608       Suc. Belenes     1      NA     1     2    2     1
## 5609       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5610       Suc. Belenes    NA       6    11     6    3     3
## 5611       Suc. Belenes     1       1     1     1   NA     1
## 5612       Suc. Belenes     0      NA    NA    NA    3    NA
## 5613       Suc. Belenes    NA       1     4     2    5     3
## 5614       Suc. Belenes     3       4     3     3    1     1
## 5615       Suc. Belenes    NA       0     0     0   NA    NA
## 5616       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5617       Suc. Belenes    NA      NA     3    NA   NA    NA
## 5618       Suc. Belenes     0       0     0    NA   NA     0
## 5619       Suc. Belenes    NA      NA    NA    NA    1    NA
## 5620       Suc. Belenes    NA       1    NA    NA    1     1
## 5621       Suc. Belenes    NA       0     0     0   NA    NA
## 5622       Suc. Belenes    NA      NA    NA     3   NA    NA
## 5623       Suc. Belenes     1       1     1    NA   NA     1
## 5624       Suc. Belenes    NA      NA    NA    NA    3    NA
## 5625       Suc. Belenes    NA       1    NA    NA    1     1
## 5626       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5627       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5628       Suc. Belenes    NA       3    14     8    6     6
## 5629       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5630       Suc. Belenes     2       2     2     6    8     4
## 5631       Suc. Belenes     1       3     5     4    1     4
## 5632       Suc. Belenes    NA       0     0     0   NA    NA
## 5633       Suc. Belenes     3       3    14    11    6     6
## 5634       Suc. Belenes     1       1     1    NA   NA     1
## 5635       Suc. Belenes    NA      NA     0    NA    3     0
## 5636       Suc. Belenes    NA       5     4    NA    9     5
## 5637       Suc. Belenes     4       5     2     1    1     3
## 5638       Suc. Belenes    NA       0     0     0   NA    NA
## 5639       Suc. Belenes    NA      NA    NA    NA    1    NA
## 5640       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5641       Suc. Belenes     1       6     5    NA    6    NA
## 5642       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5643       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5644       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5645       Suc. Belenes     4       4     2     2    2     2
## 5646       Suc. Belenes     3       6     3     3    3     3
## 5647       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5648       Suc. Belenes     4      NA    NA    NA   NA    NA
## 5649       Suc. Belenes    NA       3    NA    NA   NA    NA
## 5650       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5651       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5652       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5653       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5654       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5655       Suc. Belenes     2      NA     1     6    7     3
## 5656       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5657       Suc. Belenes     2       2    NA     4    6     1
## 5658       Suc. Belenes    NA      NA     2    NA   NA    NA
## 5659       Suc. Belenes     3       1     2     1    1     1
## 5660       Suc. Belenes     8       6     8     6    8    NA
## 5661       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5662       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5663       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5664       Suc. Belenes     8       8     2     6    4     8
## 5665       Suc. Belenes    NA      NA    NA     5    2    NA
## 5666       Suc. Belenes    14      11     6     8    8    11
## 5667       Suc. Belenes    13       8    11    15    6    11
## 5668       Suc. Belenes    NA       2     2     2    2     2
## 5669       Suc. Belenes     4       6     2     4    8    11
## 5670       Suc. Belenes    NA       4     2     4    6     2
## 5671       Suc. Belenes    NA      NA    NA    NA   NA    11
## 5672       Suc. Belenes    85      63    66    79   71    74
## 5673       Suc. Belenes    NA      NA    NA    NA   NA    13
## 5674       Suc. Belenes    76      32    79    79   38    60
## 5675       Suc. Belenes     5       2     5    12   11    14
## 5676       Suc. Belenes    11      25    23    23   23    28
## 5677       Suc. Belenes   155     180   173   162  236   247
## 5678       Suc. Belenes   148     159   169   204  144   204
## 5679       Suc. Belenes    25      55    38    57   66    82
## 5680       Suc. Belenes    82     118   139   319  239   251
## 5681       Suc. Belenes     5       5     4     8    7     7
## 5682       Suc. Belenes     3       5     8     8    8    12
## 5683       Suc. Belenes     4       8     2     6    6     6
## 5684       Suc. Belenes     9       8    10     7    9    11
## 5685       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5686       Suc. Belenes     1       1     2     1    1     1
## 5687       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5688       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5689       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5690       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5691       Suc. Belenes     1       0     0     0    0     0
## 5692       Suc. Belenes    NA      NA    NA    NA    2    NA
## 5693       Suc. Belenes     5       7    16     7   11    NA
## 5694       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5695       Suc. Belenes     4      NA     2    NA    4     2
## 5696       Suc. Belenes    NA       0     1    NA    1    NA
## 5697       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5698       Suc. Belenes     0       0     0     0    0     0
## 5699       Suc. Belenes     2      NA     1     3    1     1
## 5700       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5701       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5702       Suc. Belenes    NA       3    NA     3    8     3
## 5703       Suc. Belenes     0      NA    NA    NA   12     0
## 5704       Suc. Belenes    NA       2    NA    10   15     3
## 5705       Suc. Belenes    13      NA     3     3   18     4
## 5706       Suc. Belenes    NA       1     1     1    1     1
## 5707       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5708       Suc. Belenes     3      NA    NA    NA    8    NA
## 5709       Suc. Belenes    NA       0    NA    NA    0    NA
## 5710       Suc. Belenes     2      NA    NA    10   19     1
## 5711       Suc. Belenes     3      NA     1     4   14     4
## 5712       Suc. Belenes    NA       1     1     1    1     1
## 5713       Suc. Belenes    NA      NA    NA    NA    6    NA
## 5714       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5715       Suc. Belenes    NA      NA    NA    NA    8    NA
## 5716       Suc. Belenes     4       4    NA    NA   NA    NA
## 5717       Suc. Belenes    NA      NA    NA    NA   12    NA
## 5718       Suc. Belenes    NA      NA    NA    10   17     3
## 5719       Suc. Belenes     3      NA     3     1   11     4
## 5720       Suc. Belenes     1       3    NA    NA    1    NA
## 5721       Suc. Belenes    NA       3    NA     6   NA    NA
## 5722       Suc. Belenes    NA      NA    NA    NA    3    NA
## 5723       Suc. Belenes    NA      NA     2    NA   13     2
## 5724       Suc. Belenes     4       3     3     3    3     3
## 5725       Suc. Belenes    NA       1     1     1    1     1
## 5726       Suc. Belenes    NA      NA    NA    NA    6    NA
## 5727       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5728       Suc. Belenes    NA       3     3     3    8    NA
## 5729       Suc. Belenes     4       7    NA    NA   NA    NA
## 5730       Suc. Belenes    NA      NA     0     0   24    NA
## 5731       Suc. Belenes    NA      NA    NA    10   11     1
## 5732       Suc. Belenes    15      10     5     4   37     4
## 5733       Suc. Belenes    NA       1     1     1    1     1
## 5734       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5735       Suc. Belenes    NA       8    NA     2    5     6
## 5736       Suc. Belenes    NA      NA     2    NA   NA     1
## 5737       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5738       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5739       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5740       Suc. Belenes     2      59    NA    NA   NA    NA
## 5741       Suc. Belenes     3      NA    NA    NA   NA    NA
## 5742       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5743       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5744       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5745       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5746       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5747       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5748       Suc. Belenes    NA      NA    NA    NA    0    NA
## 5749       Suc. Belenes     2      NA    NA     4   NA    NA
## 5750       Suc. Belenes    NA       2    NA     2   NA    NA
## 5751       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5752       Suc. Belenes     2       4     2     6    4     2
## 5753       Suc. Belenes    NA      NA     2    NA   NA     1
## 5754       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5755       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5756       Suc. Belenes     2       2    NA     2    4    NA
## 5757       Suc. Belenes     6       6     4     8   NA     2
## 5758       Suc. Belenes    NA       5     8     5   NA     3
## 5759       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5760       Suc. Belenes    82     146   403   269  314   913
## 5761       Suc. Belenes     9      30     2    26   17    20
## 5762       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5763       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5764       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5765       Suc. Belenes    NA      21    11    14   77    35
## 5766       Suc. Belenes   176     384   613   574  659    NA
## 5767       Suc. Belenes     4       4     4     6   NA    NA
## 5768       Suc. Belenes    11       8    11    34   42    27
## 5769       Suc. Belenes   178     182   414   321  454   924
## 5770       Suc. Belenes     4       3     2     4   NA     1
## 5771       Suc. Belenes    NA       2     2     2   NA    NA
## 5772       Suc. Belenes    NA      NA     2     2   NA    NA
## 5773       Suc. Belenes     1      NA     2     2   NA     1
## 5774       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5775       Suc. Belenes    NA      NA    NA     4   NA    NA
## 5776       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5777       Suc. Belenes     0       0    NA    NA   NA    NA
## 5778       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5779       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5780       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5781       Suc. Belenes     0       0    NA    NA    0    NA
## 5782       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5783       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5784       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5785       Suc. Belenes    NA      NA     8     6   NA    14
## 5786       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5787       Suc. Belenes    NA      NA    NA    NA    0    NA
## 5788       Suc. Belenes    NA       2     2    NA   NA     4
## 5789       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5790       Suc. Belenes    NA      NA     1    NA   NA     0
## 5791       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5792       Suc. Belenes    NA       3    NA    NA   NA     3
## 5793       Suc. Belenes    NA      18    NA    NA   NA    NA
## 5794       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5795       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5796       Suc. Belenes    NA      NA    NA    NA   NA     4
## 5797       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5798       Suc. Belenes    NA      NA     1    NA   NA     0
## 5799       Suc. Belenes     3      NA    NA    NA   NA    NA
## 5800       Suc. Belenes    NA      18    NA    NA   NA    NA
## 5801       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5802       Suc. Belenes    NA       0    NA    NA   NA    NA
## 5803       Suc. Belenes    NA      NA    NA    NA   NA     4
## 5804       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5805       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5806       Suc. Belenes    NA      NA    NA    NA   NA    10
## 5807       Suc. Belenes    NA      NA    NA     3   NA     8
## 5808       Suc. Belenes    NA       2     4    NA   NA    NA
## 5809       Suc. Belenes    NA      NA     1    NA   NA     0
## 5810       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5811       Suc. Belenes    NA       3     6     6   NA    NA
## 5812       Suc. Belenes    NA      18    NA    NA   NA    NA
## 5813       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5814       Suc. Belenes     0      NA    NA    NA    0    NA
## 5815       Suc. Belenes     2       2     4    NA   NA     4
## 5816       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5817       Suc. Belenes    NA      NA     1    NA   NA     0
## 5818       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5819       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5820       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5821       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5822       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5823       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5824       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5825       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5826       Suc. Belenes     4      19     4     4    2     2
## 5827       Suc. Belenes     6       6    10     6    6     3
## 5828       Suc. Belenes    NA       3    NA     3    3     3
## 5829       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5830       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5831       Suc. Belenes    NA       1    NA    NA   NA    NA
## 5832       Suc. Belenes     3       1    NA    NA    5     3
## 5833       Suc. Belenes     2      NA    NA    NA    3    NA
## 5834       Suc. Belenes    NA      NA    NA    NA    3    NA
## 5835       Suc. Belenes    NA       0     0    NA   NA    NA
## 5836       Suc. Belenes     1      NA     1     2    1     2
## 5837       Suc. Belenes     4       7     1     5    5     7
## 5838       Suc. Belenes    NA       0    NA     0    1     0
## 5839       Suc. Belenes    NA       2     1     3    3     4
## 5840       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5841       Suc. Belenes     0      NA    NA    NA   NA    NA
## 5842       Suc. Belenes     2       1     2     1    2     1
## 5843       Suc. Belenes     3      NA     6     8   11     8
## 5844       Suc. Belenes     0       0     0     0    0    NA
## 5845       Suc. Belenes     1       1     1     1    1    NA
## 5846       Suc. Belenes     1      NA     2     1    1     3
## 5847       Suc. Belenes    NA       2    NA    NA   NA    NA
## 5848       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5849       Suc. Belenes    NA       2     2     4    2    NA
## 5850       Suc. Belenes     2      NA     1    NA   NA    NA
## 5851       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5852       Suc. Belenes    11      11     8    11   13    11
## 5853       Suc. Belenes     3       3     6     6    8    11
## 5854       Suc. Belenes     6       3     3     6    6     6
## 5855       Suc. Belenes    NA       2     2     2    3     2
## 5856       Suc. Belenes    15      11     8    17   15    13
## 5857       Suc. Belenes     2       2     3     3    2     2
## 5858       Suc. Belenes    NA       3     2     3    2     2
## 5859       Suc. Belenes    NA      NA     1     1    4    NA
## 5860       Suc. Belenes     8       4     6     4    6     4
## 5861       Suc. Belenes     2      NA    NA    NA   NA     2
## 5862       Suc. Belenes    NA      NA    NA     6    6     6
## 5863       Suc. Belenes    NA      NA     2    NA   NA    NA
## 5864       Suc. Belenes     2       2     2     4    2     2
## 5865       Suc. Belenes    NA       2     1    NA    2    NA
## 5866       Suc. Belenes    NA       2     2     3    2     2
## 5867       Suc. Belenes     1      NA     2     2    2    NA
## 5868       Suc. Belenes     2       2    NA     2    6    27
## 5869       Suc. Belenes    95      66   135    13   87    NA
## 5870       Suc. Belenes    NA      NA    NA    NA    6    38
## 5871       Suc. Belenes    54      44    67    51   41    44
## 5872       Suc. Belenes    12      18    32    11   14    33
## 5873       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5874       Suc. Belenes    23      31    48    11   48    34
## 5875       Suc. Belenes    31      31    28    45   39    31
## 5876       Suc. Belenes     4      35    56    18   67    42
## 5877       Suc. Belenes   225     194   257   321  391   461
## 5878       Suc. Belenes    NA      NA    NA    NA   NA     3
## 5879       Suc. Belenes     4       4     4     4    2     4
## 5880       Suc. Belenes    21      23    40    13   25    46
## 5881       Suc. Belenes    78      74    72   108   95   148
## 5882       Suc. Belenes     9       6     9     9    6     6
## 5883       Suc. Belenes     5       7     4     6    6     5
## 5884       Suc. Belenes     6       3     5     5    9     5
## 5885       Suc. Belenes     2       6     4     4    8     2
## 5886       Suc. Belenes     3       3     3     4    3     3
## 5887       Suc. Belenes    NA      NA     1    NA   NA    NA
## 5888       Suc. Belenes     1       1     1     2    3     3
## 5889       Suc. Belenes     2      NA     1     1    2     2
## 5890       Suc. Belenes     1      NA     1     3    3     3
## 5891       Suc. Belenes     1      NA    NA    NA   NA    NA
## 5892       Suc. Belenes     4       0     1     1    1     1
## 5893       Suc. Belenes    NA      NA    NA    NA    0    NA
## 5894       Suc. Belenes    10       4     5     6    7     6
## 5895       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5896       Suc. Belenes     4       2     2     6    4    NA
## 5897       Suc. Belenes     0       1    NA     1    0     2
## 5898       Suc. Belenes     3       3     1     4    4     3
## 5899       Suc. Belenes     1       4     1     3    1     2
## 5900       Suc. Belenes     2       1     1     1    1     1
## 5901       Suc. Belenes     2      NA    NA     2    1    NA
## 5902       Suc. Belenes     1       1     1     2    2     1
## 5903       Suc. Belenes     2       1     1     1    1     2
## 5904       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5905       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5906       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5907       Suc. Belenes     5       3     5     5    3     5
## 5908       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5909       Suc. Belenes     1       3     4     6   NA     9
## 5910       Suc. Belenes     7       4    NA     1   11     4
## 5911       Suc. Belenes    NA       0     0    NA   NA    NA
## 5912       Suc. Belenes    NA      NA    NA    NA    1     1
## 5913       Suc. Belenes     1      NA     3     1    3     2
## 5914       Suc. Belenes     1       2     2     1    3     1
## 5915       Suc. Belenes    NA       0     1    NA    0    NA
## 5916       Suc. Belenes     2       2     3     2    5     2
## 5917       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5918       Suc. Belenes     1      NA     4     4   NA     6
## 5919       Suc. Belenes     4      NA    NA     1    4     4
## 5920       Suc. Belenes    NA       0     0    NA   NA    NA
## 5921       Suc. Belenes    NA      NA    NA    NA    1     1
## 5922       Suc. Belenes     1      NA     1     1    3     2
## 5923       Suc. Belenes     1      NA     1     1    3     1
## 5924       Suc. Belenes    NA       0     1    NA    0    NA
## 5925       Suc. Belenes     5       2     3     2    5     2
## 5926       Suc. Belenes     1      NA     1     1   NA     1
## 5927       Suc. Belenes     4      NA    NA     1    4    NA
## 5928       Suc. Belenes    NA       0     0    NA   NA    NA
## 5929       Suc. Belenes    NA      NA    NA    NA    1     1
## 5930       Suc. Belenes     1       2     1     1    3     2
## 5931       Suc. Belenes     1       1     1     1    1     1
## 5932       Suc. Belenes     1       2     1     1    1     3
## 5933       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5934       Suc. Belenes    NA      NA     8     8    3    14
## 5935       Suc. Belenes     4       4     4    NA   11     4
## 5936       Suc. Belenes    NA      NA     0    NA    0    NA
## 5937       Suc. Belenes     2      NA     2    NA   NA    NA
## 5938       Suc. Belenes     1      NA     3     1    3    NA
## 5939       Suc. Belenes    NA       0     1    NA    0    NA
## 5940       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5941       Suc. Belenes     5       2     5     8   10     5
## 5942       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5943       Suc. Belenes     1       8    12     9    3    15
## 5944       Suc. Belenes    11       7    NA     1   11     4
## 5945       Suc. Belenes    NA       0     0    NA   NA    NA
## 5946       Suc. Belenes     0       0    NA     0    3     1
## 5947       Suc. Belenes     1      NA     3     1    3     2
## 5948       Suc. Belenes     3       3     2     3    3     2
## 5949       Suc. Belenes    NA       0     1    NA    0    NA
## 5950       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5951       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5952       Suc. Belenes     3       7     2     3   10     6
## 5953       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5954       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5955       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5956       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5957       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5958       Suc. Belenes     2       8     2    NA    2    NA
## 5959       Suc. Belenes     3       6     3    NA    3     3
## 5960       Suc. Belenes    NA       5    NA    NA   NA    NA
## 5961       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5962       Suc. Belenes     1      NA     1    NA   NA    NA
## 5963       Suc. Belenes    NA      NA    NA     1   NA    NA
## 5964       Suc. Belenes     1      NA     2    NA   NA    NA
## 5965       Suc. Belenes    NA      NA    NA    NA   NA     0
## 5966       Suc. Belenes    NA       1     1    NA    1     1
## 5967       Suc. Belenes    NA       2     1    NA    1     1
## 5968       Suc. Belenes     6       6     6     6    6     6
## 5969       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5970       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5971       Suc. Belenes    NA      NA     1    NA    1    NA
## 5972       Suc. Belenes    NA      NA    NA    NA   NA     1
## 5973       Suc. Belenes    NA       6    NA    NA   NA    NA
## 5974       Suc. Belenes     6       4     2     4    4     2
## 5975       Suc. Belenes    23      23    27    25   25    32
## 5976       Suc. Belenes    NA      NA    NA    NA   NA     2
## 5977       Suc. Belenes    17      14    14    23   14    14
## 5978       Suc. Belenes    31      39    45    34   45    25
## 5979       Suc. Belenes    NA      NA    NA    NA   NA     4
## 5980       Suc. Belenes    21      15    21    21   25    21
## 5981       Suc. Belenes     4       4     3     3    2     2
## 5982       Suc. Belenes     3       2     3     2    2    NA
## 5983       Suc. Belenes     8      13    NA     6    8    11
## 5984       Suc. Belenes     8       3     8     8    6     3
## 5985       Suc. Belenes     2       2     2     6    4     4
## 5986       Suc. Belenes     1       1     3     1    1     1
## 5987       Suc. Belenes     0      NA    NA    NA   NA    NA
## 5988       Suc. Belenes    40      38    44    36   55    42
## 5989       Suc. Belenes    26      29    29    24   29    21
## 5990       Suc. Belenes    NA      NA    NA    NA   NA    13
## 5991       Suc. Belenes    54      44    67    51   51    44
## 5992       Suc. Belenes    17      15    12     9   14     9
## 5993       Suc. Belenes     2      NA    NA    NA   NA    NA
## 5994       Suc. Belenes    25      28    17    28   14    17
## 5995       Suc. Belenes     8       3    17    NA   NA     3
## 5996       Suc. Belenes   162     127   159   113  151   137
## 5997       Suc. Belenes   190     173   208   176  190   204
## 5998       Suc. Belenes     4       8    11    13   15     6
## 5999       Suc. Belenes    38      30    38    34   40    30
## 6000       Suc. Belenes    91      89   116    68   70    78
## 6001       Suc. Belenes     7       7    10     9    9     6
## 6002       Suc. Belenes     3       3     4     6    6     3
## 6003       Suc. Belenes     4       2     4     2    4     2
## 6004       Suc. Belenes    NA      NA     1    NA   NA     1
## 6005       Suc. Belenes    NA      NA     1     1    1    NA
## 6006       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6007       Suc. Belenes     1       2    NA     3    1    NA
## 6008       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6009       Suc. Belenes     1      NA     0     0   NA    NA
## 6010       Suc. Belenes     1       1     2     1    2     1
## 6011       Suc. Belenes     3       0     3     2    2     3
## 6012       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6013       Suc. Belenes    NA       2     4    NA    2     2
## 6014       Suc. Belenes     1       0     1     1    1     0
## 6015       Suc. Belenes    NA      NA     0    NA    0    NA
## 6016       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6017       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6018       Suc. Belenes     2       2     6     2   NA     4
## 6019       Suc. Belenes    NA      NA     3    NA   NA    NA
## 6020       Suc. Belenes     7       7     4    NA    1     3
## 6021       Suc. Belenes     0      NA     2    NA   NA    NA
## 6022       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6023       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6024       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6025       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6026       Suc. Belenes    NA      NA     4    NA    1     3
## 6027       Suc. Belenes    NA      NA    NA    NA    0    NA
## 6028       Suc. Belenes    NA       1     2    NA   NA    NA
## 6029       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6030       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6031       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6032       Suc. Belenes    NA      NA     4    NA    1     3
## 6033       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6034       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6035       Suc. Belenes    NA       3     6    NA   NA    NA
## 6036       Suc. Belenes     4       4    NA    NA   NA    NA
## 6037       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6038       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6039       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6040       Suc. Belenes     2       4     4    NA    4     4
## 6041       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6042       Suc. Belenes    NA      NA     8    NA   NA    NA
## 6043       Suc. Belenes    11       4     4    NA    4     3
## 6044       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6045       Suc. Belenes    NA       1    NA    NA    2    NA
## 6046       Suc. Belenes     2      NA    NA    NA   NA    NA
## 6047       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6048       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6049       Suc. Belenes     2       1     1     1    3     1
## 6050       Suc. Belenes     6       6     6     8    8     8
## 6051       Suc. Belenes     3      NA    NA     1   NA    NA
## 6052       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6053       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6054       Suc. Belenes     4      17     2     3    4     6
## 6055       Suc. Belenes     3      13     3     5    3     6
## 6056       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6057       Suc. Belenes    NA       5    NA     3    3     3
## 6058       Suc. Belenes     1       1    NA    NA   NA    NA
## 6059       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6060       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6061       Suc. Belenes    NA       1     1     1   NA    NA
## 6062       Suc. Belenes    NA       9    NA    NA    3     4
## 6063       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6064       Suc. Belenes    NA       2     2     2    2     2
## 6065       Suc. Belenes     2      NA     2    NA   NA    NA
## 6066       Suc. Belenes     2       2     2     1    2     1
## 6067       Suc. Belenes    11       8    14    14   14    11
## 6068       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6069       Suc. Belenes     2       2    NA     2   NA    NA
## 6070       Suc. Belenes     4       2    NA     2   NA     2
## 6071       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6072       Suc. Belenes    25      21    19    30   19    19
## 6073       Suc. Belenes    17      14    20    23   17    25
## 6074       Suc. Belenes    17      11    11    14   17    20
## 6075       Suc. Belenes    NA       3     2    NA    2     2
## 6076       Suc. Belenes    21      21    19    19   17    21
## 6077       Suc. Belenes     2       1     2     2    2     3
## 6078       Suc. Belenes     2       3     2     5   NA     3
## 6079       Suc. Belenes     2       1     1     1    1     2
## 6080       Suc. Belenes     4       2     4     2    4     6
## 6081       Suc. Belenes    14      11     8    11    8    11
## 6082       Suc. Belenes     4       4     6     6    6     8
## 6083       Suc. Belenes    46      38    42    44   40    46
## 6084       Suc. Belenes    51      51    51    60   41    51
## 6085       Suc. Belenes    29      41    38    44   35    35
## 6086       Suc. Belenes    12       9     6     6    6     8
## 6087       Suc. Belenes    65      79    65    85   82    93
## 6088       Suc. Belenes     6       8    11    14   20    14
## 6089       Suc. Belenes   123     109   127   127  127   144
## 6090       Suc. Belenes   102      92    95   106  123   130
## 6091       Suc. Belenes     6       6     4     2    6     4
## 6092       Suc. Belenes    44      40    49    57   57    46
## 6093       Suc. Belenes    32      30    42    51   32    44
## 6094       Suc. Belenes    10       9     9    10   10    10
## 6095       Suc. Belenes    17      12    11    11   12    12
## 6096       Suc. Belenes     5       3     4     3    5     5
## 6097       Suc. Belenes     1       1     1     1    2     1
## 6098       Suc. Belenes     1      NA    NA     1   NA    NA
## 6099       Suc. Belenes     1       3     1    NA    3     4
## 6100       Suc. Belenes     5       2    NA    NA   NA    NA
## 6101       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6102       Suc. Belenes     1       2     2     0    0     0
## 6103       Suc. Belenes    NA      NA    NA    NA    0    NA
## 6104       Suc. Belenes     3       3     5     4    4     6
## 6105       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6106       Suc. Belenes     2       4     6     8    4     8
## 6107       Suc. Belenes     1       1     1     1    1     0
## 6108       Suc. Belenes     1       1     2    NA    1    NA
## 6109       Suc. Belenes    NA       1     3    NA   NA    NA
## 6110       Suc. Belenes    NA       4     2     4    2     2
## 6111       Suc. Belenes    NA       1     1    NA    1    NA
## 6112       Suc. Belenes     0       0     0     1    0     0
## 6113       Suc. Belenes     5       3     4     3    3     5
## 6114       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6115       Suc. Belenes     4       1     2     3    2     2
## 6116       Suc. Belenes     3       3     3    NA    3    NA
## 6117       Suc. Belenes    NA       4     5     9    5    11
## 6118       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6119       Suc. Belenes    NA      NA     0     0   NA    NA
## 6120       Suc. Belenes     1       1     1     1    1     1
## 6121       Suc. Belenes     3       3     1     3    1     4
## 6122       Suc. Belenes    NA       0    NA     0   NA    NA
## 6123       Suc. Belenes     2       1     2     3    2     2
## 6124       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6125       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6126       Suc. Belenes     3       1     1     1    1     1
## 6127       Suc. Belenes    NA       0    NA     0   NA    NA
## 6128       Suc. Belenes     2       1     2     3    2     2
## 6129       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6130       Suc. Belenes     1       1     1     1    1     1
## 6131       Suc. Belenes    NA       6     3     1    4     2
## 6132       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6133       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6134       Suc. Belenes    NA       0    NA     0   NA    NA
## 6135       Suc. Belenes     4       4     2     3    2     2
## 6136       Suc. Belenes     3      NA    NA     3   NA     6
## 6137       Suc. Belenes     5       9     9    12    7    12
## 6138       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6139       Suc. Belenes     0       0    NA    NA    1     0
## 6140       Suc. Belenes     1       1     1     1    1     1
## 6141       Suc. Belenes     6       8     8     6    6     7
## 6142       Suc. Belenes    NA       0    NA     0   NA    NA
## 6143       Suc. Belenes     1       2     1    NA   NA    NA
## 6144       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6145       Suc. Belenes     4       6     8     7    6     9
## 6146       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6147       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6148       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6149       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6150       Suc. Belenes     6       8     2     2    2     4
## 6151       Suc. Belenes     6       3     3     3    3     6
## 6152       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6153       Suc. Belenes    NA      NA    NA    NA   NA     3
## 6154       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6155       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6156       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6157       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6158       Suc. Belenes     1      NA    NA    NA   NA     1
## 6159       Suc. Belenes     5       4     3     3    3     3
## 6160       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6161       Suc. Belenes     1       1     1     1    1     1
## 6162       Suc. Belenes     0      NA    NA    NA   NA    NA
## 6163       Suc. Belenes     2       1     1     1    1     1
## 6164       Suc. Belenes     3       3     6     6   NA     8
## 6165       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6166       Suc. Belenes    NA       4    NA    NA   NA    NA
## 6167       Suc. Belenes     2       4    NA    NA   NA    NA
## 6168       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6169       Suc. Belenes     2       8    NA     4    4     6
## 6170       Suc. Belenes     6       6     6     8    8     8
## 6171       Suc. Belenes     2      NA     1    NA    1     1
## 6172       Suc. Belenes    NA       4    NA     2    4     4
## 6173       Suc. Belenes    NA      NA     4    NA   NA     2
## 6174       Suc. Belenes    NA      NA    NA     2   NA    NA
## 6175       Suc. Belenes    55      53    48    48   53    34
## 6176       Suc. Belenes    NA      NA    NA     3   NA    29
## 6177       Suc. Belenes    48      48    54    57   35    54
## 6178       Suc. Belenes     6       9     3    12    2    11
## 6179       Suc. Belenes    20      11    15    15   18     8
## 6180       Suc. Belenes    NA       3    11    11   NA    NA
## 6181       Suc. Belenes    56      56    42    42   49    53
## 6182       Suc. Belenes   180     222   187   236  162   440
## 6183       Suc. Belenes    NA      NA    NA     2   NA    NA
## 6184       Suc. Belenes     2       4    NA     4    4     6
## 6185       Suc. Belenes    19      19    21    25   17    23
## 6186       Suc. Belenes    70      68    72   110   49    74
## 6187       Suc. Belenes     3       3     2     2    2     1
## 6188       Suc. Belenes     2       3     2     3    2     6
## 6189       Suc. Belenes    NA       2    NA     2    4     2
## 6190       Suc. Belenes     3       2     1     1    1    NA
## 6191       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6192       Suc. Belenes    NA       1     1     1    1     1
## 6193       Suc. Belenes    NA      NA    NA     1    1    NA
## 6194       Suc. Belenes     1      NA     1    NA   NA     1
## 6195       Suc. Belenes     2       0     0     0    1     0
## 6196       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6197       Suc. Belenes     3       2     1     3    2     1
## 6198       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6199       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6200       Suc. Belenes     0       0     0     0    0     0
## 6201       Suc. Belenes     1       1     1     1    3     1
## 6202       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6203       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6204       Suc. Belenes     2       2    NA    NA   NA    NA
## 6205       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6206       Suc. Belenes     0       2     0     2    1     1
## 6207       Suc. Belenes    NA       6     6    NA    8     3
## 6208       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6209       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6210       Suc. Belenes     1       1     2     1    2     2
## 6211       Suc. Belenes    NA      NA     1     3   NA    NA
## 6212       Suc. Belenes     1       1     1     1   NA     1
## 6213       Suc. Belenes    NA      NA    NA     0    0     0
## 6214       Suc. Belenes    NA       0     1     0    0     0
## 6215       Suc. Belenes     2       2    NA    NA   NA    NA
## 6216       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6217       Suc. Belenes     0       2     0     2    1     1
## 6218       Suc. Belenes    NA       3    NA     3   NA    NA
## 6219       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6220       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6221       Suc. Belenes     1       0     1     1    1     2
## 6222       Suc. Belenes    NA      NA     1     3   NA    NA
## 6223       Suc. Belenes     1       1     1     1    1     1
## 6224       Suc. Belenes    NA      NA    NA     0    0     0
## 6225       Suc. Belenes    NA       0     1     0    0     0
## 6226       Suc. Belenes     2       2    NA    NA   NA    NA
## 6227       Suc. Belenes     0       2     0     2    1     1
## 6228       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6229       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6231       Suc. Belenes     1       0     2     1    1     1
## 6232       Suc. Belenes    NA      NA     1     3    2     2
## 6233       Suc. Belenes     1       1     1     1    1     1
## 6234       Suc. Belenes    NA      NA    NA     0    0     0
## 6235       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6236       Suc. Belenes     3       3    NA    NA   NA    NA
## 6237       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6238       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6239       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6240       Suc. Belenes    NA       0     1     0    0     0
## 6241       Suc. Belenes     2       2    NA    NA   NA    NA
## 6242       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6243       Suc. Belenes     0       2     0     2    1     1
## 6244       Suc. Belenes    NA       3     6     3    8    NA
## 6245       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6246       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6247       Suc. Belenes     1      NA     2     1    2     1
## 6248       Suc. Belenes     2       2     1     5    2    NA
## 6249       Suc. Belenes     3       2     2     2    3     2
## 6250       Suc. Belenes    NA      NA    NA     0    0     0
## 6251       Suc. Belenes    NA       0     1     0    0     0
## 6252       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6253       Suc. Belenes     2       4     1     1    6     6
## 6254       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6255       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6256       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6257       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6258       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6259       Suc. Belenes     4      11     2     6    6     6
## 6260       Suc. Belenes     6       6     3    10   13     6
## 6261       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6262       Suc. Belenes    NA       3    NA    NA   NA    NA
## 6263       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6264       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6265       Suc. Belenes    NA      NA    NA     1    1     2
## 6266       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6267       Suc. Belenes    NA      NA    NA     1    1     1
## 6268       Suc. Belenes     3       2     3     6    4     4
## 6269       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6270       Suc. Belenes    NA       1    NA     1    1     2
## 6271       Suc. Belenes     2      NA     2     4   NA    NA
## 6272       Suc. Belenes     0      NA    NA    NA   NA    NA
## 6273       Suc. Belenes     2      NA     1     1    1     1
## 6274       Suc. Belenes     8       3     8    14    6     6
## 6275       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6276       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6277       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6278       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6279       Suc. Belenes    NA       2     2     6   NA     4
## 6280       Suc. Belenes    15       8     4    13    4    11
## 6281       Suc. Belenes    NA       2    NA     2    2     2
## 6282       Suc. Belenes     8       3     6     8    3     6
## 6283       Suc. Belenes     8       8     6     8    6     8
## 6284       Suc. Belenes    NA       1     1     1    2     1
## 6285       Suc. Belenes    NA      NA     2    NA   NA    NA
## 6286       Suc. Belenes     2      NA     2     4    2     6
## 6287       Suc. Belenes     2       2    NA    NA    2     2
## 6288       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6289       Suc. Belenes    71      74    66    95   71    50
## 6290       Suc. Belenes    16      10    10    10    6    35
## 6291       Suc. Belenes    54      54    54    73   38    63
## 6292       Suc. Belenes    24      15    14    18   20    17
## 6293       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6294       Suc. Belenes    20      17    11    17   11    17
## 6295       Suc. Belenes    34      20    31    42   31    39
## 6296       Suc. Belenes    92      74    70    88   81    95
## 6297       Suc. Belenes   222     176   169   225  240   324
## 6298       Suc. Belenes    NA      NA     2     2   NA     2
## 6299       Suc. Belenes    27      27    25    30   30    27
## 6300       Suc. Belenes    66      72    78    72   72    82
## 6301       Suc. Belenes    13      11    11    16   15    17
## 6302       Suc. Belenes     5       3     3     3    8     8
## 6303       Suc. Belenes     2       6     2     4    4     8
## 6304       Suc. Belenes     2       4     2     5    3     3
## 6305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6306       Suc. Belenes     1       1     1     1    3     1
## 6307       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6308       Suc. Belenes     1      NA    NA    NA   NA     1
## 6309       Suc. Belenes     1      NA     0     0    0     0
## 6310       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6311       Suc. Belenes     3       1     2     3    3     2
## 6312       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6313       Suc. Belenes    NA       2    NA    NA   NA    NA
## 6314       Suc. Belenes     0       0    NA    NA   NA    NA
## 6315       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6316       Suc. Belenes     0       0     0     0    0     0
## 6317       Suc. Belenes     1       1    NA    NA   NA    NA
## 6318       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6319       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6320       Suc. Belenes     5       2    NA    NA   NA    NA
## 6321       Suc. Belenes     1       8     3     6    6     6
## 6322       Suc. Belenes    NA      NA    NA     0    1     0
## 6323       Suc. Belenes     1      NA    NA    NA    2     1
## 6324       Suc. Belenes     2       1     2     5    1     3
## 6325       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6326       Suc. Belenes    NA       0     0    NA   NA    NA
## 6327       Suc. Belenes     2       2    NA    NA   NA    NA
## 6328       Suc. Belenes     1      NA    NA     3    6    NA
## 6329       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6330       Suc. Belenes     1      NA    NA    NA   NA     1
## 6331       Suc. Belenes     1       1     1     4   NA     1
## 6332       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6333       Suc. Belenes    NA       0     0    NA   NA    NA
## 6334       Suc. Belenes     2       2    NA    NA   NA    NA
## 6335       Suc. Belenes     1      NA    NA    NA    3    NA
## 6336       Suc. Belenes    NA      NA    NA    NA    1    NA
## 6337       Suc. Belenes     1      NA    NA    NA   NA     1
## 6338       Suc. Belenes     1       1     1     1   NA    NA
## 6339       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6340       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6341       Suc. Belenes    NA       3     8     3    3     3
## 6342       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6343       Suc. Belenes     3      NA    NA     4   NA     1
## 6344       Suc. Belenes    NA       0     0    NA   NA    NA
## 6345       Suc. Belenes     6       3    NA    NA   NA    NA
## 6346       Suc. Belenes     1       3     6     3    3     6
## 6347       Suc. Belenes     2      NA     2     0    1     1
## 6348       Suc. Belenes     1      NA     2     2    2     3
## 6349       Suc. Belenes     3       1     2     4   NA     4
## 6350       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6351       Suc. Belenes    NA       0     0    NA   NA    NA
## 6352       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6353       Suc. Belenes     4       3     1     4    9     3
## 6354       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6355       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6356       Suc. Belenes     2       4     6     2    2     2
## 6357       Suc. Belenes    NA      NA    10     3    3     3
## 6358       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6359       Suc. Belenes    NA      NA     3    NA   NA    NA
## 6360       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6362       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6363       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6364       Suc. Belenes     4       2     1     3    5     7
## 6365       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6366       Suc. Belenes     1       1    NA    NA   NA     1
## 6367       Suc. Belenes    NA      NA     2    NA   NA    NA
## 6368       Suc. Belenes    NA      NA     1    NA   NA     1
## 6369       Suc. Belenes    NA      NA    NA    NA    6     6
## 6370       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6371       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6372       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6373       Suc. Belenes     4       2     2     4    2     2
## 6374       Suc. Belenes    13       4     6    13   13     8
## 6375       Suc. Belenes    17      11    17    14   20    17
## 6376       Suc. Belenes    19      23    17    17   19    21
## 6377       Suc. Belenes     2       1    NA    NA    1     1
## 6378       Suc. Belenes    NA       2     2     3    3    NA
## 6379       Suc. Belenes     2       2     4     2    2     6
## 6380       Suc. Belenes    NA       8    11    NA    8     3
## 6381       Suc. Belenes     2       4     2     4    4     4
## 6382       Suc. Belenes    NA       2    NA    NA   NA    NA
## 6383       Suc. Belenes    61      50    42    71   50    66
## 6384       Suc. Belenes    NA      NA    NA    NA   NA     3
## 6385       Suc. Belenes    32      35    60    63   57    48
## 6386       Suc. Belenes    12      14    11    20   18    17
## 6387       Suc. Belenes    48      51    39    54   54    59
## 6388       Suc. Belenes    14      14     6    14   11    11
## 6389       Suc. Belenes    95      53    56    85  109    99
## 6390       Suc. Belenes   144     137   151   180  127   155
## 6391       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6392       Suc. Belenes    59      36    44    55   49    49
## 6393       Suc. Belenes    61      72    85    91   74    89
## 6394       Suc. Belenes     7       9     9     9   11    13
## 6395       Suc. Belenes     5       8     6     5    8    11
## 6396       Suc. Belenes     6       6     4     8    6     4
## 6397       Suc. Belenes     9       8     7     7    7     9
## 6398       Suc. Belenes    NA      NA     1    NA   NA     1
## 6399       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6400       Suc. Belenes     1      NA     1     1    3     3
## 6401       Suc. Belenes     2      NA     0     0    0     0
## 6402       Suc. Belenes    NA      NA    NA    NA    0    NA
## 6403       Suc. Belenes     7       3     2     5    5     7
## 6404       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6405       Suc. Belenes     4       4     4     4    6     2
## 6406       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6407       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6408       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6409       Suc. Belenes     0       0     0    NA   NA     0
## 6410       Suc. Belenes     1       1     3     3    1     3
## 6411       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6412       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6413       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6414       Suc. Belenes     8       8    NA     8    8    14
## 6415       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6416       Suc. Belenes     2       1     1     1    4     3
## 6417       Suc. Belenes     3       1     1     3    1     1
## 6418       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6419       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6420       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6421       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6422       Suc. Belenes     2       1     1     1   NA     1
## 6423       Suc. Belenes    NA      NA    NA    NA    1    NA
## 6424       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6425       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6426       Suc. Belenes     2       1     1     1   NA     1
## 6427       Suc. Belenes    NA      NA    NA    NA    1    NA
## 6428       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6429       Suc. Belenes     3      NA     6    NA   NA     3
## 6430       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6431       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6432       Suc. Belenes    NA      NA    NA    NA    0    NA
## 6433       Suc. Belenes    NA      NA    NA    NA    2    NA
## 6434       Suc. Belenes     3       1     1     3    1     1
## 6435       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6436       Suc. Belenes     6       2     4     4    6     2
## 6437       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6438       Suc. Belenes    14       8     8     8   20    11
## 6439       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6440       Suc. Belenes     0       0     1    NA   NA     1
## 6441       Suc. Belenes     2       1     1     1    4     5
## 6442       Suc. Belenes     3       2     3     3    1     3
## 6443       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6444       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6445       Suc. Belenes     1      10     5     6    8     6
## 6446       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6447       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6448       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6449       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6450       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6451       Suc. Belenes     2       2     6     2    2     8
## 6452       Suc. Belenes     3       3    16     3    3    10
## 6453       Suc. Belenes    NA      NA    NA    NA   NA     5
## 6454       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6455       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6456       Suc. Belenes    NA      NA    NA     1    1    NA
## 6457       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6458       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6459       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6460       Suc. Belenes     1      NA    NA     0   NA    NA
## 6461       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6462       Suc. Belenes     1       1     1    NA   NA     1
## 6463       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6464       Suc. Belenes    NA       1     1    NA   NA     1
## 6465       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6466       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6467       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6468       Suc. Belenes     3      NA    NA    NA   NA     1
## 6469       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6470       Suc. Belenes    11      11    17    19   11    11
## 6471       Suc. Belenes     2       3     3     2    3     2
## 6472       Suc. Belenes    17      17    17    20   11    14
## 6473       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6474       Suc. Belenes     3       2     3     2    3     5
## 6475       Suc. Belenes    13      15    17    17   15    17
## 6476       Suc. Belenes     2       2     3     3    1     4
## 6477       Suc. Belenes     2      NA    NA     3    2     2
## 6478       Suc. Belenes     2       4     2     6    2     4
## 6479       Suc. Belenes    NA       6     8    11    3     8
## 6480       Suc. Belenes     4       6     4     6    4     6
## 6481       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6482       Suc. Belenes    27      46    76    49   38    72
## 6483       Suc. Belenes    NA      NA    NA    NA   32    NA
## 6484       Suc. Belenes    NA      NA    NA    NA   NA     6
## 6485       Suc. Belenes    38      44    60    38   35    76
## 6486       Suc. Belenes     9      20     8    11   11    15
## 6487       Suc. Belenes     5      NA    NA    NA   NA    NA
## 6488       Suc. Belenes    37      65    25    68   59    48
## 6489       Suc. Belenes    23      14    17    23   14    42
## 6490       Suc. Belenes    99     102   144   141   70   130
## 6491       Suc. Belenes    95     257    46   166   74   137
## 6492       Suc. Belenes    NA      NA    NA     2   NA    NA
## 6493       Suc. Belenes    NA      NA     4    NA   NA    NA
## 6494       Suc. Belenes    42      51    63    55   61   139
## 6495       Suc. Belenes   108     135    95   133  101   159
## 6496       Suc. Belenes    12       9     9    21   12    18
## 6497       Suc. Belenes    11       9    14    13   16    15
## 6498       Suc. Belenes    14       8    12    15   15    20
## 6499       Suc. Belenes     4       4     4    10    4    12
## 6500       Suc. Belenes     7       7     6     9    6    10
## 6501       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6502       Suc. Belenes    NA       1     1    NA   NA     1
## 6503       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6504       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6505       Suc. Belenes     4       0     0     0    0     0
## 6506       Suc. Belenes    NA       1    NA    NA    1    NA
## 6507       Suc. Belenes     7      NA    NA     9    7     2
## 6508       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6509       Suc. Belenes     2      NA    NA    NA   NA    NA
## 6510       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6511       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6512       Suc. Belenes     0       0     0    NA   NA     0
## 6513       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6514       Suc. Belenes     4       2     6    NA    2     2
## 6515       Suc. Belenes     6      11     8     3    3    14
## 6516       Suc. Belenes     2       0     2     4    5     5
## 6517       Suc. Belenes     6       8    13    13    6     8
## 6518       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6519       Suc. Belenes    NA      NA    NA     2   NA     2
## 6520       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6521       Suc. Belenes    NA       3    NA    NA    3     3
## 6522       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6523       Suc. Belenes    NA      NA    NA    NA    2     2
## 6524       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6525       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6526       Suc. Belenes    NA      NA    NA    NA   NA     4
## 6527       Suc. Belenes    NA       3    NA    NA   NA     6
## 6528       Suc. Belenes     1       2    NA     1    2     2
## 6529       Suc. Belenes     6       4     8     2    4     6
## 6530       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6531       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6532       Suc. Belenes     3       8     6    NA   NA     3
## 6533       Suc. Belenes     1       1     1    NA    2     2
## 6534       Suc. Belenes     4       2     2    13   NA     8
## 6535       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6536       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6537       Suc. Belenes     4       6     4     4    4     2
## 6538       Suc. Belenes     8      11    14     6    3    17
## 6539       Suc. Belenes     2       2     1     5    5     8
## 6540       Suc. Belenes     6      13    11    17    4    13
## 6541       Suc. Belenes     2       1    NA    NA   NA    NA
## 6542       Suc. Belenes    NA      NA     2    NA    2     2
## 6543       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6544       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6545       Suc. Belenes    NA      11    NA    NA   NA     3
## 6546       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6547       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6548       Suc. Belenes    NA      NA    NA    NA    1    NA
## 6549       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6550       Suc. Belenes     2       4     2     2    4     4
## 6551       Suc. Belenes     3       6     3     3    6     6
## 6552       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6553       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6554       Suc. Belenes    NA      NA     1    NA   NA     0
## 6555       Suc. Belenes     1       1     1    NA   NA    NA
## 6556       Suc. Belenes    NA       1    NA     2    1     3
## 6557       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6558       Suc. Belenes     1       1     1     1    1     2
## 6559       Suc. Belenes     2       2     1     1    2     1
## 6560       Suc. Belenes    NA      NA    NA    NA    3     3
## 6561       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6562       Suc. Belenes     1       1     1    NA   NA    NA
## 6563       Suc. Belenes    NA       2    NA    NA   NA    NA
## 6564       Suc. Belenes     2       4    NA    NA   NA     2
## 6565       Suc. Belenes     4       2     6     4   NA    NA
## 6566       Suc. Belenes    NA      NA     3    NA    5     8
## 6567       Suc. Belenes    10       6     6    NA   NA    10
## 6568       Suc. Belenes    54      60    73    60   41   111
## 6569       Suc. Belenes     5       3     6     5    3     3
## 6570       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6571       Suc. Belenes     4       4    14     7    4    25
## 6572       Suc. Belenes    77      92    95    60   53   137
## 6573       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6574       Suc. Belenes     4       4    NA    NA   NA    NA
## 6575       Suc. Belenes     6       8     8     8    4     6
## 6576       Suc. Belenes    44      59    68    66   23    80
## 6577       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6578       Suc. Belenes     1       2    NA     1   NA     2
## 6579       Suc. Belenes     2       2     3    NA   NA     3
## 6580       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6581       Suc. Belenes     3       1     2     2    3     2
## 6582       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6583       Suc. Belenes     1       1     1     1    1     1
## 6584       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6585       Suc. Belenes     1       1    NA     2   NA    NA
## 6586       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6587       Suc. Belenes     0       0     0     0    0     0
## 6588       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6589       Suc. Belenes    NA      NA    NA     2    1     2
## 6590       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6591       Suc. Belenes    NA      NA    NA    NA    0     0
## 6592       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6593       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6594       Suc. Belenes     0       0     0     0    0     1
## 6595       Suc. Belenes    NA       1    NA    NA   NA    NA
## 6596       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6597       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6598       Suc. Belenes     2       2    NA    NA   NA    NA
## 6599       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6600       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6601       Suc. Belenes     3      NA     3    NA   NA     6
## 6602       Suc. Belenes    NA      NA     1    NA   NA     0
## 6603       Suc. Belenes     0       0    NA     0   NA     0
## 6604       Suc. Belenes    NA       1     2     2    2     3
## 6605       Suc. Belenes     1       1     1     1    1     1
## 6606       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6607       Suc. Belenes    NA       0     0    NA   NA    NA
## 6608       Suc. Belenes     2       2    NA    NA   NA    NA
## 6609       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6610       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6611       Suc. Belenes    NA       3    NA    NA   NA    NA
## 6612       Suc. Belenes    NA      NA     0    NA   NA     0
## 6613       Suc. Belenes    NA      NA    NA    NA    0     2
## 6614       Suc. Belenes    NA       1     2     2    2     3
## 6615       Suc. Belenes     1      NA     1     1    1     1
## 6616       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6617       Suc. Belenes    NA       0     0    NA   NA    NA
## 6618       Suc. Belenes     2       2    NA    NA   NA    NA
## 6619       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6620       Suc. Belenes    NA      NA    NA     3   NA    NA
## 6621       Suc. Belenes    NA      NA     1    NA   NA     0
## 6622       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6623       Suc. Belenes    NA       1     2     2    2     3
## 6624       Suc. Belenes     1      NA     1     1    1     1
## 6625       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6626       Suc. Belenes    NA       1     1    NA   NA    NA
## 6627       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6628       Suc. Belenes    NA      NA    NA    NA    3    11
## 6629       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6630       Suc. Belenes    NA      NA     0    NA   NA     0
## 6631       Suc. Belenes     2      NA     4    NA   NA    NA
## 6632       Suc. Belenes    NA       0     0    NA   NA    NA
## 6633       Suc. Belenes     2       2    NA    NA   NA    NA
## 6634       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6635       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6636       Suc. Belenes    NA      NA     3     3    6    11
## 6637       Suc. Belenes    NA      NA     1    NA   NA     0
## 6638       Suc. Belenes    NA      NA    NA    NA   NA     2
## 6639       Suc. Belenes    NA       1     2     2    2     3
## 6640       Suc. Belenes     1      NA     1     1    1     1
## 6641       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6642       Suc. Belenes    NA       0     0    NA   NA    NA
## 6643       Suc. Belenes     1       2    NA     2    1     3
## 6644       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6645       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6646       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6647       Suc. Belenes     2       6     2     2    6     2
## 6648       Suc. Belenes     3       3     3     3   10     3
## 6649       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6650       Suc. Belenes     3       5    10     3   10     8
## 6651       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6652       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6653       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6654       Suc. Belenes    NA      NA    NA     2   NA     2
## 6655       Suc. Belenes     0       1     1     1    1     1
## 6656       Suc. Belenes     2       2     4     7    4     6
## 6657       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6658       Suc. Belenes     1       1     1    NA    1     1
## 6659       Suc. Belenes    NA       6    NA    NA   NA    NA
## 6660       Suc. Belenes     2       2     1    NA    1     1
## 6661       Suc. Belenes    NA       3     3     3   NA    NA
## 6662       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6663       Suc. Belenes    NA       0     0    NA   NA    NA
## 6664       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6665       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6666       Suc. Belenes    NA      NA     2    NA    2     2
## 6667       Suc. Belenes     1       1    NA    NA    1    NA
## 6668       Suc. Belenes     4       6     6     4   11     4
## 6669       Suc. Belenes    14       6     8    11   11     8
## 6670       Suc. Belenes     4       4     4     4    4     6
## 6671       Suc. Belenes     1      NA    NA     1    1     1
## 6672       Suc. Belenes     6       8     8     4    6    NA
## 6673       Suc. Belenes     5      NA     5     3   16     3
## 6674       Suc. Belenes    NA      NA    NA    NA   NA     6
## 6675       Suc. Belenes    44      16    29    44   16    70
## 6676       Suc. Belenes     5       6     8     6    9    11
## 6677       Suc. Belenes    18      14    21    11    7    NA
## 6678       Suc. Belenes   173      74   141   106  102   137
## 6679       Suc. Belenes    13      15    17    11   23    15
## 6680       Suc. Belenes    85      44    70    57   74    74
## 6681       Suc. Belenes     3       1     2     2    3     2
## 6682       Suc. Belenes     6       8     9    11   12     9
## 6683       Suc. Belenes    NA      NA     2    NA    4    NA
## 6684       Suc. Belenes     2       2     2     2    1    NA
## 6685       Suc. Belenes    NA       2     1    NA    1     1
## 6686       Suc. Belenes    NA      NA    NA    NA    2    NA
## 6687       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6688       Suc. Belenes     3       0     0     0    0     0
## 6689       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6690       Suc. Belenes     4       1     3     2    2     3
## 6691       Suc. Belenes     4       1     2     2    1     1
## 6692       Suc. Belenes    NA       2     2    NA    2    NA
## 6693       Suc. Belenes    NA       0     1     1   NA    NA
## 6694       Suc. Belenes     0       0     0    NA    0     0
## 6695       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6696       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6697       Suc. Belenes     2      NA    NA    NA    2    NA
## 6698       Suc. Belenes    NA       1    NA    NA    1     1
## 6699       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6700       Suc. Belenes     1       4    NA     6    1    NA
## 6701       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6702       Suc. Belenes     0       1     1     1    1     1
## 6703       Suc. Belenes     0      NA     0     1    0     4
## 6704       Suc. Belenes     2       2     2     1    3     1
## 6705       Suc. Belenes     1      NA    NA     1   NA    NA
## 6706       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6707       Suc. Belenes    NA       1    NA    NA    1     1
## 6708       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6709       Suc. Belenes     1       1    NA     1    1    NA
## 6710       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6711       Suc. Belenes     0       0     0     0    1     1
## 6712       Suc. Belenes     0      NA     0    NA    0     1
## 6713       Suc. Belenes    NA      NA     2     1    3     1
## 6714       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6715       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6716       Suc. Belenes    NA       1    NA    NA    1     1
## 6717       Suc. Belenes     1       1    NA     1    1    NA
## 6718       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6719       Suc. Belenes     0       1     1     1    1     1
## 6720       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6721       Suc. Belenes    NA      NA     2     1    1     1
## 6722       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6723       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6724       Suc. Belenes     3      NA    NA     3   NA     3
## 6725       Suc. Belenes     0      NA     0    NA    0     0
## 6726       Suc. Belenes     2      NA    NA    NA    4    NA
## 6727       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6728       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6729       Suc. Belenes     2       2    NA     4   NA    NA
## 6730       Suc. Belenes    NA       1    NA    NA    1     1
## 6731       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6732       Suc. Belenes     1       4     3     6    1    NA
## 6733       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6734       Suc. Belenes     2       1     1     1    1     1
## 6735       Suc. Belenes     0       0     0    NA    0     5
## 6736       Suc. Belenes    NA       2     2     1    3     1
## 6737       Suc. Belenes     1      NA    NA     1   NA    NA
## 6738       Suc. Belenes    NA       0    NA    NA   NA    NA
## 6739       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6740       Suc. Belenes     4       3     6     3    5     3
## 6741       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6742       Suc. Belenes    11       8     8     4    6     8
## 6743       Suc. Belenes     6      NA     3     6    3     6
## 6744       Suc. Belenes     3       5     3    NA    3     8
## 6745       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6746       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6747       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6748       Suc. Belenes     1       1    NA     1    0     0
## 6749       Suc. Belenes     9       5     4     1    3    NA
## 6750       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6751       Suc. Belenes    NA      NA     1     1    1     1
## 6752       Suc. Belenes    NA      NA     1     1    1     1
## 6753       Suc. Belenes     3      NA    NA     3   NA    NA
## 6754       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6755       Suc. Belenes     8       4     4     4    6     6
## 6756       Suc. Belenes     8       8     6     5    5     6
## 6757       Suc. Belenes     4       4     2    NA    6     4
## 6758       Suc. Belenes     3       3     2     3    3     3
## 6759       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6760       Suc. Belenes    16      16    11    13   16    11
## 6761       Suc. Belenes    NA      NA    NA    NA   NA    10
## 6762       Suc. Belenes    35      38    54    35   57    63
## 6763       Suc. Belenes     9       8     6     8    9    14
## 6764       Suc. Belenes     4       4    18     7   11    11
## 6765       Suc. Belenes    63      46    49    53   67    53
## 6766       Suc. Belenes     2       2     4     4    4     4
## 6767       Suc. Belenes     6      13    11     8    4    11
## 6768       Suc. Belenes    87      78    99    66  112   123
## 6769       Suc. Belenes     3       3     4     2    4     5
## 6770       Suc. Belenes     2       2     2     2    2     2
## 6771       Suc. Belenes     2      NA    NA     2    2     2
## 6772       Suc. Belenes     3       4     2     3    3     3
## 6773       Suc. Belenes     1      NA     1     1    1     3
## 6774       Suc. Belenes     2      NA     1     1    1     1
## 6775       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6776       Suc. Belenes     0       1     0     0    0     0
## 6777       Suc. Belenes    NA      NA    NA    NA    0    NA
## 6778       Suc. Belenes     7       3     2     2    5     3
## 6779       Suc. Belenes     2      NA    NA    NA    2    NA
## 6780       Suc. Belenes     1       1    NA    NA    1    NA
## 6781       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6782       Suc. Belenes    NA      NA     0     0    0     0
## 6783       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6784       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6785       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6786       Suc. Belenes     3      NA     3     3   NA     3
## 6787       Suc. Belenes     1       1    NA     1    0     0
## 6788       Suc. Belenes     0       1     1     1    1     0
## 6789       Suc. Belenes     1      NA     1     1    2     2
## 6790       Suc. Belenes    NA       1    NA     0   NA    NA
## 6791       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6792       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6793       Suc. Belenes     0       0    NA     0    0     0
## 6794       Suc. Belenes     0       1     0     0    0     1
## 6795       Suc. Belenes    NA       1    NA     0   NA    NA
## 6796       Suc. Belenes     1       1    NA     1    0     0
## 6797       Suc. Belenes    NA       0    NA     0    1     0
## 6798       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6799       Suc. Belenes     6       3     3    NA    6     3
## 6800       Suc. Belenes     4       4     6     2    2     6
## 6801       Suc. Belenes     1      NA    NA    NA   NA    NA
## 6802       Suc. Belenes    NA       1    NA     0   NA    NA
## 6803       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6804       Suc. Belenes     3      NA     3     6    6    NA
## 6805       Suc. Belenes     1       1     1     1    0     0
## 6806       Suc. Belenes    NA       1    NA     1    0     1
## 6807       Suc. Belenes    NA      NA    NA     4    2     2
## 6808       Suc. Belenes    NA      NA     1     1    1     1
## 6809       Suc. Belenes    NA       1    NA     0   NA    NA
## 6810       Suc. Belenes     3       4    NA     1    2     3
## 6811       Suc. Belenes    NA      NA    NA    11   NA    NA
## 6812       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6813       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6814       Suc. Belenes     4       2     4     2    2    11
## 6815       Suc. Belenes    13      13    16    13   10    13
## 6816       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6817       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6818       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6819       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6820       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6821       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6822       Suc. Belenes     4       1     4     5    5     3
## 6823       Suc. Belenes     6       8     5     4   10     7
## 6824       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6825       Suc. Belenes    NA       2     1     1   NA     2
## 6826       Suc. Belenes     4       2     2    NA    6     2
## 6827       Suc. Belenes     3       2     4     1    2     1
## 6828       Suc. Belenes    17      14    20     3    8     8
## 6829       Suc. Belenes    NA      NA    NA     0    0     1
## 6830       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6831       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6832       Suc. Belenes    NA      NA     2    NA   NA    NA
## 6833       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6834       Suc. Belenes     4       4     2     4    4     2
## 6835       Suc. Belenes    NA       1     1     1    3    NA
## 6836       Suc. Belenes    19      15    17    15   17    19
## 6837       Suc. Belenes     2       2     2    NA    3     3
## 6838       Suc. Belenes    17      14     6    17   14    17
## 6839       Suc. Belenes    11       8    20    20   11    17
## 6840       Suc. Belenes     4      17    11    17   15    11
## 6841       Suc. Belenes     2       1     6    NA    3    NA
## 6842       Suc. Belenes     2       3    NA     5    2     3
## 6843       Suc. Belenes     4       6     4     6    2     6
## 6844       Suc. Belenes     3      NA     3     3    6     3
## 6845       Suc. Belenes     4      NA     4     2    2     6
## 6846       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6847       Suc. Belenes    NA       6    42    NA   19    21
## 6848       Suc. Belenes    50      50   106     5   98    NA
## 6849       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6850       Suc. Belenes    73      79   149    54  124    86
## 6851       Suc. Belenes    14       8    14     9   23     8
## 6852       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6853       Suc. Belenes    20      17    54     6   23    25
## 6854       Suc. Belenes    23      17    14    17   14    14
## 6855       Suc. Belenes    67      39   137    18   88   106
## 6856       Suc. Belenes   254     176   313   197  254   197
## 6857       Suc. Belenes    21      23    66     6   46    44
## 6858       Suc. Belenes   110     114   154   156  135   133
## 6859       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6860       Suc. Belenes     5       9    16    NA   21    NA
## 6861       Suc. Belenes    NA       2    24    NA   NA     6
## 6862       Suc. Belenes     6       2     4     4    4     4
## 6863       Suc. Belenes     6       3    16    NA    3    17
## 6864       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6865       Suc. Belenes     2       1     3     1    4     1
## 6866       Suc. Belenes    NA      NA     1     1   NA     1
## 6867       Suc. Belenes     1      NA    NA     4    1     1
## 6868       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6869       Suc. Belenes     1       0     0     0    0     0
## 6870       Suc. Belenes    NA       0    NA    NA    1    NA
## 6871       Suc. Belenes     9      10     8     5   14     7
## 6872       Suc. Belenes    NA      NA    NA    NA   NA     1
## 6873       Suc. Belenes     6       4     6    11    8     4
## 6874       Suc. Belenes     1      NA    NA     1    1     1
## 6875       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6876       Suc. Belenes     0       0     0     0    0     0
## 6877       Suc. Belenes     5       8     3     5    5     6
## 6878       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6879       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6880       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6881       Suc. Belenes     6       6    15     3   11     6
## 6882       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6883       Suc. Belenes    NA       0     0    NA    0    NA
## 6884       Suc. Belenes     2       3     7     1    1     1
## 6885       Suc. Belenes     3       3     1     1    1     5
## 6886       Suc. Belenes    NA       0     0     0   NA    NA
## 6887       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6888       Suc. Belenes    NA       3     4     6    8     3
## 6889       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6890       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6891       Suc. Belenes     2       3     5     1    1     3
## 6892       Suc. Belenes     1      NA     2     3    4    NA
## 6893       Suc. Belenes    NA       0     0     0   NA    NA
## 6894       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6895       Suc. Belenes     3       3     1    NA   NA    NA
## 6896       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6897       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6898       Suc. Belenes     2       3     7     3    1     3
## 6899       Suc. Belenes    NA      NA     1    NA    1    NA
## 6900       Suc. Belenes     3       5     3     4    3     3
## 6901       Suc. Belenes    NA      NA     8     3   14     6
## 6902       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6903       Suc. Belenes    NA      NA     4    NA   NA     4
## 6904       Suc. Belenes     1       5     4     4    4     4
## 6905       Suc. Belenes    NA       0     0     0   NA    NA
## 6906       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6907       Suc. Belenes     6      11    18    11   14    14
## 6908       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6909       Suc. Belenes     0      NA    NA     0   NA     0
## 6910       Suc. Belenes     2       3     7     5    3     1
## 6911       Suc. Belenes     6       3     3     5    8     4
## 6912       Suc. Belenes    NA       0     0     0   NA    NA
## 6913       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6914       Suc. Belenes     1       8    NA    NA    6     6
## 6915       Suc. Belenes    NA      NA    NA    NA   NA     0
## 6916       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6917       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6918       Suc. Belenes     2      66     2     2    2     2
## 6919       Suc. Belenes     3      95     3     3    3     3
## 6920       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6921       Suc. Belenes    NA      25    NA    NA   NA    NA
## 6922       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6923       Suc. Belenes    NA      NA    NA    NA    2     4
## 6924       Suc. Belenes     1       4     2     1    1     3
## 6925       Suc. Belenes     3       4     3     2    4     4
## 6926       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6927       Suc. Belenes     1      NA     1     1    1     1
## 6928       Suc. Belenes     2      NA     2     1    1     1
## 6929       Suc. Belenes    NA      NA     3     3    3     8
## 6930       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6931       Suc. Belenes    NA      NA     2    NA   NA    NA
## 6932       Suc. Belenes    NA      NA     1    NA    1    NA
## 6933       Suc. Belenes     2      NA     2     2   NA     2
## 6934       Suc. Belenes     1      NA     1    NA   NA    NA
## 6935       Suc. Belenes     6      11    NA     2    6     8
## 6936       Suc. Belenes     6       6     3     8   NA     3
## 6937       Suc. Belenes    14      14    20    20    6    17
## 6938       Suc. Belenes     4      15     8     6    4    15
## 6939       Suc. Belenes    NA       1     1     2    2     3
## 6940       Suc. Belenes    NA       2    NA    NA   NA     2
## 6941       Suc. Belenes     1       1     1    NA    1    NA
## 6942       Suc. Belenes     2      NA     2     2    2     4
## 6943       Suc. Belenes     2      NA     4    NA    2     2
## 6944       Suc. Belenes    NA      NA     2    NA   NA    NA
## 6945       Suc. Belenes    NA      NA     1    NA   NA    NA
## 6946       Suc. Belenes     6      21    13     8   17    15
## 6947       Suc. Belenes    24      29    40    45   34    21
## 6948       Suc. Belenes    NA      NA    NA    NA   NA    19
## 6949       Suc. Belenes     3       6     6    16   13    10
## 6950       Suc. Belenes    NA      NA    NA     2   NA    NA
## 6951       Suc. Belenes     8       3    11    17    5    12
## 6952       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6953       Suc. Belenes    17      11    25    23   20    20
## 6954       Suc. Belenes     6       8     6    NA    6     8
## 6955       Suc. Belenes    35      32    39    42   39    56
## 6956       Suc. Belenes    21      25    39    18   39    46
## 6957       Suc. Belenes     6      13     8     2   21     8
## 6958       Suc. Belenes    23      34    27    36   59    17
## 6959       Suc. Belenes    34      27    42    68   25    57
## 6960       Suc. Belenes    NA       6     6     6    9    NA
## 6961       Suc. Belenes     7       7     7     8    8    10
## 6962       Suc. Belenes     3       6    NA     5    5     6
## 6963       Suc. Belenes    NA       8     2     4    4     4
## 6964       Suc. Belenes     5       3     5     4    1     4
## 6965       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6966       Suc. Belenes     5       2     1     2    2     1
## 6967       Suc. Belenes    NA      NA    NA     1   NA    NA
## 6968       Suc. Belenes     1      NA     2     3    3     4
## 6969       Suc. Belenes     2      NA     0     0    0     0
## 6970       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6971       Suc. Belenes     3       2     5     7    3     5
## 6972       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6973       Suc. Belenes     4       2     2     2   NA     4
## 6974       Suc. Belenes     1       1     1     1    1     1
## 6975       Suc. Belenes     0      NA     0     0    0     0
## 6976       Suc. Belenes     1       4     3     1    4     1
## 6977       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6978       Suc. Belenes    NA      NA    NA    NA    4     2
## 6979       Suc. Belenes    NA      NA    NA    NA   NA     3
## 6980       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6981       Suc. Belenes     8      11     8     6    6     6
## 6982       Suc. Belenes    NA      NA    NA    NA   NA     4
## 6983       Suc. Belenes    NA      NA     0    NA   NA    NA
## 6984       Suc. Belenes    NA      NA    NA    NA    2    NA
## 6985       Suc. Belenes    NA      NA    NA     1    3    NA
## 6986       Suc. Belenes     4       4     4     1    3     1
## 6987       Suc. Belenes    NA       0     0     0   NA    NA
## 6988       Suc. Belenes    NA       6     3     6    3    NA
## 6989       Suc. Belenes    NA      NA    NA     1    1    NA
## 6990       Suc. Belenes     1       3     3     2    2    NA
## 6991       Suc. Belenes    NA       0     0     0   NA    NA
## 6992       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6993       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6994       Suc. Belenes    NA      NA    NA    NA    2    NA
## 6995       Suc. Belenes     2      NA    NA     1    1    NA
## 6996       Suc. Belenes     2      NA    NA    NA   NA    NA
## 6997       Suc. Belenes     1       1     1     2    1     2
## 6998       Suc. Belenes     3       6     3     3    6     3
## 6999       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7000       Suc. Belenes     1       4     4     3    5     3
## 7001       Suc. Belenes    NA       0     0     0   NA    NA
## 7002       Suc. Belenes     2       4     2    NA    4     2
## 7003       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7004       Suc. Belenes    NA      NA    NA     2   NA    NA
## 7005       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7006       Suc. Belenes     6      NA     6     6    3     6
## 7007       Suc. Belenes     1       0    NA    NA    0     0
## 7008       Suc. Belenes    NA      NA    NA    NA    2    NA
## 7009       Suc. Belenes    NA      NA     2     1    3     2
## 7010       Suc. Belenes     5       5     6     4    4     3
## 7011       Suc. Belenes    NA       0     0     0   NA    NA
## 7012       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7013       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7014       Suc. Belenes     4       3     8     6    7     5
## 7015       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7016       Suc. Belenes     6      NA    NA    NA   NA    NA
## 7017       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7018       Suc. Belenes   116     156   239   186  294   321
## 7019       Suc. Belenes   171     155   241   295  346   415
## 7020       Suc. Belenes   109     107   190   147  152   216
## 7021       Suc. Belenes    29      13    27    30   41    33
## 7022       Suc. Belenes    16      16    30    29   34    42
## 7023       Suc. Belenes    NA      NA     8     4    8     8
## 7024       Suc. Belenes   104      78   118    95   89   147
## 7025       Suc. Belenes     8       8    14    12    9    14
## 7026       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7027       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7028       Suc. Belenes     6      NA    NA    NA   NA    NA
## 7029       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7030       Suc. Belenes    57      19    32    57   38    74
## 7031       Suc. Belenes    12       4    15     6   11    20
## 7032       Suc. Belenes    20      NA    14     9    5    11
## 7033       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7034       Suc. Belenes    NA      NA    NA    NA    3    NA
## 7035       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7036       Suc. Belenes    NA      NA    NA     3    3     3
## 7037       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7038       Suc. Belenes     8      NA    NA    NA   NA    NA
## 7039       Suc. Belenes    NA      NA    NA    NA    4    NA
## 7040       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7041       Suc. Belenes    32       8    15    13    8    17
## 7042       Suc. Belenes   175     125   207   205  241   296
## 7043       Suc. Belenes    32      NA    NA    NA   25    NA
## 7044       Suc. Belenes    34      43    52    50   55    57
## 7045       Suc. Belenes    35      32    36    36   47    51
## 7046       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7047       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7048       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7049       Suc. Belenes     4      NA     5    32   41    40
## 7050       Suc. Belenes    34      25    29    NA   NA    NA
## 7051       Suc. Belenes    12       6    10     9    4    13
## 7052       Suc. Belenes    61      33    72    54   59    69
## 7053       Suc. Belenes    32      48    39    48   34    44
## 7054       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7055       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7056       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7058       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7059       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7060       Suc. Belenes    NA      NA    NA     4   11    18
## 7061       Suc. Belenes     5       6     6    NA    9     5
## 7062       Suc. Belenes     8      NA    NA    NA   NA    NA
## 7063       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7064       Suc. Belenes    NA      NA    NA     4   11    11
## 7065       Suc. Belenes     6       2     3     3    5     5
## 7066       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7067       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7068       Suc. Belenes    NA      NA    NA     4   11    15
## 7069       Suc. Belenes     5       3     5     3    3     5
## 7070       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7071       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7072       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7073       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7074       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7075       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7076       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7077       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7078       Suc. Belenes     1      NA    NA     4    8    15
## 7079       Suc. Belenes     5       5     6    11    5    11
## 7080       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7081       Suc. Belenes    37      30    47    30   34    42
## 7082       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7083       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7084       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7085       Suc. Belenes     2       2     2     2    6     6
## 7086       Suc. Belenes     6       6     3    19   16    13
## 7087       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7088       Suc. Belenes    NA       3     3     5    3     3
## 7089       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7090       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7091       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7092       Suc. Belenes    NA      NA     1     1    1     1
## 7093       Suc. Belenes     2       1     2     0    2     1
## 7094       Suc. Belenes     1      NA     1    NA    1    NA
## 7095       Suc. Belenes    NA      NA     1    NA   NA     1
## 7096       Suc. Belenes     1       1    NA     1    1     1
## 7097       Suc. Belenes     3       1     4     4    5     3
## 7098       Suc. Belenes     1       1     2     1    2     2
## 7099       Suc. Belenes     1       2     2     2    3     1
## 7100       Suc. Belenes    NA       3     1     1    2     1
## 7101       Suc. Belenes     3      NA     6    NA   NA    NA
## 7102       Suc. Belenes     0       0    NA    NA   NA    NA
## 7103       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7104       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7105       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7106       Suc. Belenes    NA       2    NA    NA    2    NA
## 7107       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7108       Suc. Belenes     8       8     8    11   11     8
## 7109       Suc. Belenes    10      13    10    10   10     3
## 7110       Suc. Belenes    48      44    38    38   38    44
## 7111       Suc. Belenes     5       5     5     8    5     3
## 7112       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7113       Suc. Belenes     6       3    NA     3   NA    NA
## 7114       Suc. Belenes    14      14    11    14   14    21
## 7115       Suc. Belenes    67      77    74    92   92    85
## 7116       Suc. Belenes    NA      NA    NA    NA   NA     2
## 7117       Suc. Belenes     4       6     6    NA    4     4
## 7118       Suc. Belenes     8      11    13     8    8     8
## 7119       Suc. Belenes    32      44    30    49   46    51
## 7120       Suc. Belenes     1       1     3     3    3     2
## 7121       Suc. Belenes    NA      NA     3    NA    2     2
## 7122       Suc. Belenes    NA       2     2    NA    2     2
## 7123       Suc. Belenes     1       2     1     1    2     1
## 7124       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7125       Suc. Belenes     2       2     2     2    3     1
## 7126       Suc. Belenes    NA       1    NA    NA    1    NA
## 7127       Suc. Belenes     1      NA    NA     3    2     1
## 7128       Suc. Belenes     1       0     0     0    0     0
## 7129       Suc. Belenes     1       1     2     0    3     0
## 7130       Suc. Belenes     2       2     4     2    2     3
## 7131       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7132       Suc. Belenes    NA      NA    NA    NA    2    NA
## 7133       Suc. Belenes     1       0     0    NA    0     1
## 7134       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7135       Suc. Belenes     0       0     0     0    0     0
## 7136       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7137       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7138       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7139       Suc. Belenes     1       2    NA     2   NA    NA
## 7140       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7141       Suc. Belenes    NA       1    NA    NA   NA     3
## 7142       Suc. Belenes    NA      NA     3    NA   NA    NA
## 7143       Suc. Belenes    NA      NA    NA     2    2     4
## 7144       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7145       Suc. Belenes    NA       1     1     2    2     1
## 7146       Suc. Belenes    NA       2     1     1    2    NA
## 7147       Suc. Belenes    NA      NA     1     2   NA     1
## 7148       Suc. Belenes    NA       0    NA     0   NA    NA
## 7149       Suc. Belenes     2       2     2     4   NA     2
## 7150       Suc. Belenes     1       2    NA     2   NA    NA
## 7151       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7152       Suc. Belenes    NA       1    NA     3    3    NA
## 7153       Suc. Belenes     6      NA    NA    NA   NA    NA
## 7154       Suc. Belenes    NA      NA    NA     4    4     2
## 7155       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7156       Suc. Belenes     0       1     1     2    1     0
## 7157       Suc. Belenes    NA      NA     1     1   NA    NA
## 7158       Suc. Belenes    NA      NA     1     1   NA     1
## 7159       Suc. Belenes    NA       0    NA     0   NA    NA
## 7160       Suc. Belenes    NA      NA    NA    NA    2    NA
## 7161       Suc. Belenes     1      NA    NA    NA    2    NA
## 7162       Suc. Belenes    NA       1     3    NA   NA    NA
## 7163       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7164       Suc. Belenes     4       4    NA     5   NA    NA
## 7165       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7166       Suc. Belenes     0       0     1     1    2     2
## 7167       Suc. Belenes    NA       2     1     1   NA     2
## 7168       Suc. Belenes    NA       1     1     2    3    NA
## 7169       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7170       Suc. Belenes     1       0     1    NA    0     0
## 7171       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7172       Suc. Belenes    NA       0    NA     0   NA    NA
## 7173       Suc. Belenes     2       2     2     2    2    NA
## 7174       Suc. Belenes     1      NA     2    NA    2    NA
## 7175       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7176       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7177       Suc. Belenes    NA      NA    NA    NA    3    NA
## 7178       Suc. Belenes    NA       4    NA     5    4     5
## 7179       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7180       Suc. Belenes     2       2     2     2    3     3
## 7181       Suc. Belenes     4       2     3     5    2     4
## 7182       Suc. Belenes     2       4     6     4    6     3
## 7183       Suc. Belenes    NA       0    NA     0   NA    NA
## 7184       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7185       Suc. Belenes     1       1     1     1    1     2
## 7186       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7187       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7188       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7189       Suc. Belenes     6       6     8    NA   NA    NA
## 7190       Suc. Belenes    10      10     3    NA    3    NA
## 7191       Suc. Belenes    NA       3    NA    NA   NA    NA
## 7192       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7193       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7194       Suc. Belenes    NA       2    NA    NA   NA    NA
## 7195       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7196       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7197       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7198       Suc. Belenes     2       2     3     3    2     2
## 7199       Suc. Belenes    NA      NA     2    NA   NA     2
## 7200       Suc. Belenes     2       1     1     1   NA     1
## 7201       Suc. Belenes     0      NA    NA    NA   NA    NA
## 7202       Suc. Belenes     2       1     2     1   NA     2
## 7203       Suc. Belenes     6      11     3     8   NA     8
## 7204       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7205       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7206       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7207       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7208       Suc. Belenes     4      15    13     8    2     8
## 7209       Suc. Belenes     3      11    11    11   NA    11
## 7210       Suc. Belenes     6      11     6     6    6    14
## 7211       Suc. Belenes     6      15     8    13    4     2
## 7212       Suc. Belenes     1       3     2     2    1     1
## 7213       Suc. Belenes    NA       2     2    NA   NA    NA
## 7214       Suc. Belenes     4       8    NA    NA    2     4
## 7215       Suc. Belenes     4       6     2     4    4     4
## 7216       Suc. Belenes     2      NA    NA     2   NA    NA
## 7217       Suc. Belenes    11      42    53    48    5    NA
## 7218       Suc. Belenes     3      NA    NA    NA   NA     6
## 7219       Suc. Belenes    16      19    10    16    3     3
## 7220       Suc. Belenes    11      12    14    11    3    NA
## 7221       Suc. Belenes    NA       2    NA    NA   NA    NA
## 7222       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7223       Suc. Belenes     6       6    11     3   NA     3
## 7224       Suc. Belenes    25      49    74    77    7    NA
## 7225       Suc. Belenes    21     109   120   134   25     4
## 7226       Suc. Belenes    13      27    32    32    6    NA
## 7227       Suc. Belenes    40     123   197   190   21     2
## 7228       Suc. Belenes     2       7     7     5    2    NA
## 7229       Suc. Belenes     2      11     3     3   NA    NA
## 7230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7231       Suc. Belenes     2       4     4     3    2    NA
## 7232       Suc. Belenes     1       1     1     1   NA     1
## 7233       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7234       Suc. Belenes    NA      NA     4    NA    2     2
## 7235       Suc. Belenes     2       0     0     2   NA     0
## 7236       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7237       Suc. Belenes     2       5     6     5    3     4
## 7238       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7239       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7240       Suc. Belenes     2       2     4     2   NA     4
## 7241       Suc. Belenes    NA       0     0    NA   NA    NA
## 7242       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7243       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7244       Suc. Belenes    NA       1     1    NA   NA    NA
## 7245       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7246       Suc. Belenes     1       0     0     0    0     0
## 7247       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7248       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7249       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7250       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7251       Suc. Belenes    NA      NA     3    17   NA    NA
## 7252       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7253       Suc. Belenes    NA      NA     1    NA    0    NA
## 7254       Suc. Belenes     2       5    10    30    1    NA
## 7255       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7256       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7257       Suc. Belenes    NA       0     0     0   NA    NA
## 7258       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7259       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7260       Suc. Belenes    NA      NA     0     0    0    NA
## 7261       Suc. Belenes     2       5     8    15    1    NA
## 7262       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7263       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7264       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7265       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7266       Suc. Belenes    NA      NA     0    NA    2    NA
## 7267       Suc. Belenes     2       3     8    15    1    NA
## 7268       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7269       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7270       Suc. Belenes    NA       3    NA    11   NA     6
## 7271       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7272       Suc. Belenes    NA       2     4     4   NA    NA
## 7273       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7274       Suc. Belenes    NA       0     0     0   NA    NA
## 7275       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7276       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7277       Suc. Belenes     3      NA     3    20    3     3
## 7278       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7279       Suc. Belenes     1      NA     1    NA    0    NA
## 7280       Suc. Belenes     4      10    10    30    1    NA
## 7281       Suc. Belenes    NA      10    NA    NA   NA    NA
## 7282       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7283       Suc. Belenes    NA       0     0     0   NA    NA
## 7284       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7285       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7286       Suc. Belenes     9       9     6     4    6     1
## 7287       Suc. Belenes    NA      NA    NA    NA    2     6
## 7288       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7289       Suc. Belenes     4       2     2    NA    6     2
## 7290       Suc. Belenes     6       3     3    NA    3     3
## 7291       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7292       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7293       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7294       Suc. Belenes    NA       5    NA    NA   NA    NA
## 7295       Suc. Belenes    NA       2     0    NA    1     2
## 7296       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7297       Suc. Belenes    NA      NA     1    NA    1     2
## 7298       Suc. Belenes     2      NA    NA    NA   NA    NA
## 7299       Suc. Belenes     2      NA     2    NA    1     1
## 7300       Suc. Belenes     3       3    NA    NA    3     6
## 7301       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7302       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7303       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7304       Suc. Belenes     3      NA    NA    NA   NA     1
## 7305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7306       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7307       Suc. Belenes     4       2    NA     4    2     2
## 7308       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7309       Suc. Belenes     2      NA     2     2    2     4
## 7310       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7311       Suc. Belenes    17      13    17     8   19    13
## 7312       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7313       Suc. Belenes   136     146   120   168  152   178
## 7314       Suc. Belenes     8       9     9     9   11    11
## 7315       Suc. Belenes     7       7    11    14   11    18
## 7316       Suc. Belenes   183     232    99   236  222   215
## 7317       Suc. Belenes     6       8    11    11   13     8
## 7318       Suc. Belenes   101     152    55   127  112   131
## 7319       Suc. Belenes     4       4     5     5    6     6
## 7320       Suc. Belenes     3       3     3     2    5     3
## 7321       Suc. Belenes     4       6     4     7    5     5
## 7322       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7323       Suc. Belenes     1      NA     1     1    1     3
## 7324       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7325       Suc. Belenes     1      NA    NA    NA   NA     1
## 7326       Suc. Belenes     1       0     0    NA    0     0
## 7327       Suc. Belenes     1       1     0     1    1     2
## 7328       Suc. Belenes     3       3     1     2    1     3
## 7329       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7330       Suc. Belenes    NA      NA    NA    NA    1     1
## 7331       Suc. Belenes     0       0     0    NA    0     0
## 7332       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7333       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7334       Suc. Belenes     2      NA     2     2    2     4
## 7335       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7336       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7337       Suc. Belenes     4       4     7    11    5     3
## 7338       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7339       Suc. Belenes     0       0    NA    NA   NA    NA
## 7340       Suc. Belenes     1       1     4     3    2     2
## 7341       Suc. Belenes     1       3    NA     3    1     1
## 7342       Suc. Belenes    NA       0    NA     0   NA    NA
## 7343       Suc. Belenes     2       2     2    NA    4    NA
## 7344       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7345       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7346       Suc. Belenes     4       4     1     8    5     3
## 7347       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7348       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7349       Suc. Belenes     1       3     4     3    2     2
## 7350       Suc. Belenes     2      NA     1     1    1     1
## 7351       Suc. Belenes    NA       0    NA     0   NA    NA
## 7352       Suc. Belenes     2       2    NA     2   NA    NA
## 7353       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7354       Suc. Belenes     1       1     1     2    5     3
## 7355       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7356       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7357       Suc. Belenes     1       1     2     3    2     2
## 7358       Suc. Belenes     1      NA     1     1   NA     1
## 7359       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7360       Suc. Belenes    NA      NA     3    NA   NA    NA
## 7361       Suc. Belenes     0      NA    NA    NA   NA    NA
## 7362       Suc. Belenes    NA       0    NA     0   NA    NA
## 7363       Suc. Belenes     2       2     2     4   NA     2
## 7364       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7365       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7366       Suc. Belenes     4       4    10    11    5     6
## 7367       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7368       Suc. Belenes     0       0     0    NA    2     0
## 7369       Suc. Belenes     1       1     4     5    2     2
## 7370       Suc. Belenes     1      NA     1     1   NA     1
## 7371       Suc. Belenes    NA       0    NA     0   NA    NA
## 7372       Suc. Belenes    NA      NA    NA    NA    3     1
## 7373       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7374       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7375       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7376       Suc. Belenes     2       6     4     2    2    NA
## 7377       Suc. Belenes     3       3     3     3    6    NA
## 7378       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7379       Suc. Belenes     1      NA     0    NA   NA    NA
## 7380       Suc. Belenes     0       1    NA    NA   NA     1
## 7381       Suc. Belenes    NA       1    NA     1    1     1
## 7382       Suc. Belenes     5       1    14    NA   NA     2
## 7383       Suc. Belenes     0       0     0     0   NA     1
## 7384       Suc. Belenes     1       1     1     1    1    NA
## 7385       Suc. Belenes     2       2     2     1    1    NA
## 7386       Suc. Belenes     3       3     3    NA   NA    NA
## 7387       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7388       Suc. Belenes    NA      NA    NA    NA    0     0
## 7389       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7390       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7391       Suc. Belenes     2       4    NA    NA   NA    NA
## 7392       Suc. Belenes    NA       2    NA     2    2     4
## 7393       Suc. Belenes    NA       3    NA    NA   NA    NA
## 7394       Suc. Belenes     8       2     6    11    4     8
## 7395       Suc. Belenes    NA      NA    NA    NA    1     1
## 7396       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7397       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7398       Suc. Belenes    NA       4    13     6   32     2
## 7399       Suc. Belenes     5       5    13    13    5     5
## 7400       Suc. Belenes     3      NA     3     3   10    13
## 7401       Suc. Belenes    63      86    92    89   82    70
## 7402       Suc. Belenes    11       8     9    14   17     5
## 7403       Suc. Belenes    NA      NA    NA     6    8    NA
## 7404       Suc. Belenes    NA      NA    NA     7   46    NA
## 7405       Suc. Belenes   190     215   204   201  254   162
## 7406       Suc. Belenes    NA      NA     4     2   21    NA
## 7407       Suc. Belenes     6      NA    NA     6   NA    NA
## 7408       Suc. Belenes    99     101   190   220  235   144
## 7409       Suc. Belenes     3       6     3     3    9     3
## 7410       Suc. Belenes     3       2     2     3    3     1
## 7411       Suc. Belenes    NA       2    NA    NA    3     2
## 7412       Suc. Belenes    NA      NA     2     2    2     6
## 7413       Suc. Belenes     3       4     3     3    3     5
## 7414       Suc. Belenes     1       1     1     1    1    NA
## 7415       Suc. Belenes     1      NA    NA    NA    1    NA
## 7416       Suc. Belenes     1      NA    NA     1   NA    NA
## 7417       Suc. Belenes    NA      NA    NA    NA    0     0
## 7418       Suc. Belenes    NA       2    NA    NA   NA    NA
## 7419       Suc. Belenes     3       2     0    NA    0    NA
## 7420       Suc. Belenes    NA       0    NA    NA    1    NA
## 7421       Suc. Belenes     3       3     9    NA    6     2
## 7422       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7423       Suc. Belenes    NA      NA     2     2    6    NA
## 7424       Suc. Belenes     0      NA     0     1    1     1
## 7425       Suc. Belenes     0       0     1     0    0    NA
## 7426       Suc. Belenes    NA       1    NA     1    1     1
## 7427       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7428       Suc. Belenes     4       2     2     2   NA     2
## 7429       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7430       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7431       Suc. Belenes    NA      NA     6    NA    8    NA
## 7432       Suc. Belenes     0       1    NA    NA   NA     1
## 7433       Suc. Belenes     1       1     3     1    2     2
## 7434       Suc. Belenes     3       3     2     9    4     1
## 7435       Suc. Belenes     1       4     2     2    2     1
## 7436       Suc. Belenes    NA       1    NA     0    0     0
## 7437       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7438       Suc. Belenes    NA      NA    NA    NA    3     6
## 7439       Suc. Belenes     0       0    NA    NA   NA     0
## 7440       Suc. Belenes    NA       1     0    NA    1     2
## 7441       Suc. Belenes     1       1     2     9    4     1
## 7442       Suc. Belenes    NA      NA    NA    NA    1     1
## 7443       Suc. Belenes    NA       1    NA     0    0     0
## 7444       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7445       Suc. Belenes    NA      NA    NA    NA    8    NA
## 7446       Suc. Belenes     0       1    NA    NA   NA     1
## 7447       Suc. Belenes     1       1     1    NA    2     2
## 7448       Suc. Belenes     1       1     2     5   NA     1
## 7449       Suc. Belenes    NA      NA     1    NA    1    NA
## 7450       Suc. Belenes    NA      NA     1    NA    1     1
## 7451       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7452       Suc. Belenes     3       3     3     3    6    NA
## 7453       Suc. Belenes     0       1     2    NA   NA     0
## 7454       Suc. Belenes    NA       2     2     2   NA     2
## 7455       Suc. Belenes    NA       1    NA     0    0     0
## 7456       Suc. Belenes     4      NA     4    NA   NA     2
## 7457       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7458       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7459       Suc. Belenes    NA       6     6     3    8    NA
## 7460       Suc. Belenes     0       1    NA    NA   NA     1
## 7461       Suc. Belenes     2       2     3     1    3     2
## 7462       Suc. Belenes     3       1     8     7    2     1
## 7463       Suc. Belenes    NA      NA     2     2    1     1
## 7464       Suc. Belenes    NA       1    NA     0    0     0
## 7465       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7466       Suc. Belenes     2       1    10     5    6     9
## 7467       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7468       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7469       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7470       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7471       Suc. Belenes    NA      25    13     2   NA     2
## 7472       Suc. Belenes    NA     111    25     3   NA    16
## 7473       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7474       Suc. Belenes    NA      NA    11    NA   NA    NA
## 7475       Suc. Belenes    NA      10     3    NA   NA     3
## 7476       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7477       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7478       Suc. Belenes    NA      NA    NA     0    1     0
## 7479       Suc. Belenes     3      10     6     7    7     7
## 7480       Suc. Belenes     6       5     3     5    8     6
## 7481       Suc. Belenes     1       1     1     0    2     2
## 7482       Suc. Belenes     1       0     1     0    0     1
## 7483       Suc. Belenes     2       3     1     1    1     1
## 7484       Suc. Belenes     1       2     4     5    5     3
## 7485       Suc. Belenes     1       0     0     1    0    NA
## 7486       Suc. Belenes    NA       1     1     3    1     1
## 7487       Suc. Belenes     2      NA    NA    NA   NA    NA
## 7488       Suc. Belenes     2       2     2     1   NA     1
## 7489       Suc. Belenes     3       3    NA     6    3     3
## 7490       Suc. Belenes     0       0     0     1    1     0
## 7491       Suc. Belenes     1       1     1     2    1     3
## 7492       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7493       Suc. Belenes     2      NA    NA    NA    2     2
## 7494       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7495       Suc. Belenes    11       6     6     6    6    11
## 7496       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7497       Suc. Belenes    NA       2     2    NA   NA     2
## 7498       Suc. Belenes    NA      NA    NA    NA    2    NA
## 7499       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7500       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7501       Suc. Belenes    37      32    16    45   29    18
## 7502       Suc. Belenes    NA      NA    NA    NA   NA    13
## 7503       Suc. Belenes    19      10    13    10   16    16
## 7504       Suc. Belenes    14      14    14    12   11    18
## 7505       Suc. Belenes    NA      11    11    14    3    14
## 7506       Suc. Belenes    18      14    21    37   18    49
## 7507       Suc. Belenes    46      32    35    56   49    39
## 7508       Suc. Belenes    NA      NA    NA    NA    2     6
## 7509       Suc. Belenes    36      30    32    38   32    46
## 7510       Suc. Belenes    76      91    95    97   87    72
## 7511       Suc. Belenes     6       6     4     5    6     9
## 7512       Suc. Belenes     8       6     5     6    2    11
## 7513       Suc. Belenes     8       4    10    12   10    10
## 7514       Suc. Belenes     5       4     6     3    5     4
## 7515       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7516       Suc. Belenes     1       1     1     1    3     2
## 7517       Suc. Belenes    NA      NA    NA     1    1     1
## 7518       Suc. Belenes    NA      NA     1     1    3     4
## 7519       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7520       Suc. Belenes     2       0     0     1   NA     0
## 7521       Suc. Belenes    NA      NA    NA    NA    0    NA
## 7522       Suc. Belenes     2       3     4     4    4     5
## 7523       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7524       Suc. Belenes    NA      NA     4    NA    2    NA
## 7525       Suc. Belenes    NA      NA     0    NA   NA     0
## 7526       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7527       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7528       Suc. Belenes     0       0     0     0   NA     0
## 7529       Suc. Belenes     3       1     1     1   NA     1
## 7530       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7531       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7532       Suc. Belenes     4      NA    NA    NA    2     2
## 7533       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7534       Suc. Belenes    NA       3    NA     3    3    NA
## 7535       Suc. Belenes     1       0     1     0    0     1
## 7536       Suc. Belenes    NA       0    NA     0   NA     2
## 7537       Suc. Belenes     4       4     4     2    8     2
## 7538       Suc. Belenes     3       4     1    NA    4     4
## 7539       Suc. Belenes    NA       2     2    NA   NA     2
## 7540       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7541       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7542       Suc. Belenes     1       0     0     0    0     0
## 7543       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7544       Suc. Belenes    NA      NA    NA     2    2     2
## 7545       Suc. Belenes     1       3    NA     3    3    NA
## 7546       Suc. Belenes     2       2    NA    NA    2    NA
## 7547       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7548       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7549       Suc. Belenes     1       0     1     0    0     1
## 7550       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7551       Suc. Belenes    NA      NA    NA     2    2     2
## 7552       Suc. Belenes     3       1     3    NA    4     1
## 7553       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7554       Suc. Belenes    NA      NA     3    NA   NA     3
## 7555       Suc. Belenes     4       2     2    NA   NA     2
## 7556       Suc. Belenes     3       1    NA     3    3     4
## 7557       Suc. Belenes     6       2     4    NA    4     4
## 7558       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7559       Suc. Belenes    NA      NA     3     6    6     3
## 7560       Suc. Belenes     1       0     1     0    0     1
## 7561       Suc. Belenes     0      NA     0     0    2    NA
## 7562       Suc. Belenes     2       4     2     4    6     4
## 7563       Suc. Belenes     6       4     4     4    6     4
## 7564       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7565       Suc. Belenes     2      NA     4     4    4     5
## 7566       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7567       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7568       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7569       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7570       Suc. Belenes     2       6     4    11   15    15
## 7571       Suc. Belenes    16       6     6    19   22    22
## 7572       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7573       Suc. Belenes     5       3     5     5    8     8
## 7574       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7575       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7576       Suc. Belenes    NA      NA    NA     2    2    NA
## 7577       Suc. Belenes     1       1     0     0    0     0
## 7578       Suc. Belenes     1      NA    NA    NA   NA     1
## 7579       Suc. Belenes     4       5     5     6    4     3
## 7580       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7581       Suc. Belenes    NA       1     1     2    3     4
## 7582       Suc. Belenes    NA       2     2     1    1     2
## 7583       Suc. Belenes     8       3     8    11   11     8
## 7584       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7585       Suc. Belenes     0       0     0     0    0     0
## 7586       Suc. Belenes     1       1     1     1    1    NA
## 7587       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7588       Suc. Belenes    NA       4    NA    NA    2    NA
## 7589       Suc. Belenes     1       1    NA     1    1     1
## 7590       Suc. Belenes     8      13     6     6    8     8
## 7591       Suc. Belenes    NA      NA    NA    NA   NA     8
## 7592       Suc. Belenes    14      18    11    21   21    14
## 7593       Suc. Belenes    19       4     8     6    8     6
## 7594       Suc. Belenes    NA       2    NA     1    1     2
## 7595       Suc. Belenes     2       2     3     2    2     2
## 7596       Suc. Belenes    NA       2     6    NA   NA     2
## 7597       Suc. Belenes    NA       2     2    NA    2     2
## 7598       Suc. Belenes     2      NA    NA    NA   NA    NA
## 7599       Suc. Belenes    95      48    61    66   50    29
## 7600       Suc. Belenes    NA      NA    NA    NA   NA    29
## 7601       Suc. Belenes    13      10    16    29   29    22
## 7602       Suc. Belenes    12       9     9    12    9    12
## 7603       Suc. Belenes    NA      11    NA     6   NA    NA
## 7604       Suc. Belenes   120     120    81   120  109   141
## 7605       Suc. Belenes    99     134    60    81   92    88
## 7606       Suc. Belenes    NA      NA     2    NA   NA    NA
## 7607       Suc. Belenes    21      15    17     8   11    11
## 7608       Suc. Belenes    42      36    36    40   44    46
## 7609       Suc. Belenes    99      95    85    99   78    74
## 7610       Suc. Belenes     5       3     4     5    4     4
## 7611       Suc. Belenes     8       6     3     5    6     3
## 7612       Suc. Belenes     4       4     6     4    6     4
## 7613       Suc. Belenes     4       3     2     3    4     1
## 7614       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7615       Suc. Belenes     1       2     2     1    1     1
## 7616       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7617       Suc. Belenes     3       1     4     1    5     4
## 7618       Suc. Belenes     1       0     1     1    1     0
## 7619       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7620       Suc. Belenes     6       5     8     7    5     4
## 7621       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7622       Suc. Belenes    NA       2     4    NA    4    NA
## 7623       Suc. Belenes     1       1     0     1    0     1
## 7624       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7625       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7626       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7627       Suc. Belenes     3       3     2     2    1     2
## 7628       Suc. Belenes    NA      NA     1     1    1     2
## 7629       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7630       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7631       Suc. Belenes     2       2     1     2    2     2
## 7632       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7633       Suc. Belenes     4       1     1     3    1     1
## 7634       Suc. Belenes     1       1     0     0    0     0
## 7635       Suc. Belenes     1       0     0     1    3     2
## 7636       Suc. Belenes     2       2     3     2    3     2
## 7637       Suc. Belenes     3       3     1     2    2     3
## 7638       Suc. Belenes     0      NA    NA     0    0     1
## 7639       Suc. Belenes    NA       0     0    NA   NA     0
## 7640       Suc. Belenes     2       2     1     2    2     2
## 7641       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7642       Suc. Belenes     4       1     1     3    1     1
## 7643       Suc. Belenes     0       0     0     0    0     0
## 7644       Suc. Belenes     2      NA     0     1    1     0
## 7645       Suc. Belenes     2       2     3     2    3     2
## 7646       Suc. Belenes     3       2     1     2    2     2
## 7647       Suc. Belenes     0      NA    NA     0    0     1
## 7648       Suc. Belenes    NA       0     0    NA   NA     0
## 7649       Suc. Belenes     2       2     1     2    2     2
## 7650       Suc. Belenes     4       1     1     3    1     1
## 7651       Suc. Belenes     1       1     0     0    0     0
## 7652       Suc. Belenes     2       0     1     1    1     1
## 7653       Suc. Belenes     2       2     3     2    3     2
## 7654       Suc. Belenes     3       2     1     2    1     3
## 7655       Suc. Belenes     0      NA    NA     0    0     1
## 7656       Suc. Belenes    NA      NA     1     1   NA     1
## 7657       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7658       Suc. Belenes    NA      NA     3    NA   NA    NA
## 7659       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7660       Suc. Belenes    NA       0     0    NA   NA     0
## 7661       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7662       Suc. Belenes     2       2     1     2    2     2
## 7663       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7664       Suc. Belenes     4       4     9     3    4     1
## 7665       Suc. Belenes     1       1     0     0    0     0
## 7666       Suc. Belenes     1       0     1     1    1     2
## 7667       Suc. Belenes     2       2     3     2    3     2
## 7668       Suc. Belenes     3       4     1     1    3     3
## 7669       Suc. Belenes     0      NA    NA     0    0     1
## 7670       Suc. Belenes    NA       0     0    NA   NA     0
## 7671       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7672       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7673       Suc. Belenes     6       6     5     7    4     5
## 7674       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7675       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7676       Suc. Belenes     8       4     6    17   17    11
## 7677       Suc. Belenes    10      10    10    29   44    29
## 7678       Suc. Belenes    NA      NA    NA     0    0     1
## 7679       Suc. Belenes     3       5     5     8   10     5
## 7680       Suc. Belenes     1       3     3     1    5     8
## 7681       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7682       Suc. Belenes     3       1     3     3    2     5
## 7683       Suc. Belenes     1       1    NA     1    1    NA
## 7684       Suc. Belenes    NA      NA     4    NA   NA     6
## 7685       Suc. Belenes     2       1     2     1    1     1
## 7686       Suc. Belenes    NA      NA    NA    NA    1     1
## 7687       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7688       Suc. Belenes    NA      NA     2    NA   NA    NA
## 7689       Suc. Belenes     1       1    NA     1    1     1
## 7690       Suc. Belenes     2       2     2    NA    2     4
## 7691       Suc. Belenes    NA      NA     1     1   NA    NA
## 7692       Suc. Belenes     6       8     8    13   11    13
## 7693       Suc. Belenes    20      14    25    37   23    25
## 7694       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7695       Suc. Belenes     4       6     6    13    6     4
## 7696       Suc. Belenes     1       1    NA     1    1     1
## 7697       Suc. Belenes     2       4     2     4    4     4
## 7698       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7699       Suc. Belenes    69      34    42    58   55    34
## 7700       Suc. Belenes    NA      NA    NA    NA   NA    25
## 7701       Suc. Belenes    25      32    38    44   51    48
## 7702       Suc. Belenes     2       2     2     2    2     2
## 7703       Suc. Belenes     6       6    11     6   11     8
## 7704       Suc. Belenes    17       8     6     6    6     6
## 7705       Suc. Belenes   109      39    85    99   95    67
## 7706       Suc. Belenes   201     159   201   204  218   187
## 7707       Suc. Belenes     7       7     7    10    7     3
## 7708       Suc. Belenes    15      11    21    19   17    23
## 7709       Suc. Belenes    30      17    27    34   32    30
## 7710       Suc. Belenes    82      87   110   142  110   101
## 7711       Suc. Belenes     5       4     6    10    9     8
## 7712       Suc. Belenes     2       3     3     5    3     3
## 7713       Suc. Belenes     6       6     6     8    8     8
## 7714       Suc. Belenes     6       3     5     5    6     3
## 7715       Suc. Belenes     1       1     2     1    1     4
## 7716       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7717       Suc. Belenes    NA       1     1     1    2     6
## 7718       Suc. Belenes     1       0     0     0    0     0
## 7719       Suc. Belenes     2       1     1     1    2     3
## 7720       Suc. Belenes     3       3     6     1    2     7
## 7721       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7722       Suc. Belenes     2       2     6     2    2     6
## 7723       Suc. Belenes     1       1     3     1    0     1
## 7724       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7725       Suc. Belenes     0       0     0     0    0     0
## 7726       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7727       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7728       Suc. Belenes     4       2     4     4    6     4
## 7729       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7730       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7731       Suc. Belenes    NA       3     6     3   NA    NA
## 7732       Suc. Belenes    NA       0     1     0    2    NA
## 7733       Suc. Belenes    NA       1    NA     1    1    NA
## 7734       Suc. Belenes     2       2     3     6    4     2
## 7735       Suc. Belenes    NA       0     0    NA   NA    NA
## 7736       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7737       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7738       Suc. Belenes    NA       1    NA     1    1    NA
## 7739       Suc. Belenes    NA       0     0    NA   NA    NA
## 7740       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7741       Suc. Belenes    NA      NA    NA     0   NA    NA
## 7742       Suc. Belenes    NA       1    NA     1    3    NA
## 7743       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7744       Suc. Belenes    NA       3     3     6    3     3
## 7745       Suc. Belenes    NA      NA    NA     2    2    NA
## 7746       Suc. Belenes    NA       0     0    NA   NA    NA
## 7747       Suc. Belenes     4      NA     2     2    4     2
## 7748       Suc. Belenes     6       3     6    10   10     6
## 7749       Suc. Belenes    NA      NA    NA    NA   NA     3
## 7750       Suc. Belenes     6      NA    NA    NA    3     3
## 7751       Suc. Belenes     0      NA    NA     0   NA     2
## 7752       Suc. Belenes     2       1     2     3    3     4
## 7753       Suc. Belenes     2      10     4     5    3     4
## 7754       Suc. Belenes    NA       0     0    NA   NA    NA
## 7755       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7756       Suc. Belenes     2       6     6     4    8     7
## 7757       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7758       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7759       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7760       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7761       Suc. Belenes     4      11     2     2    8     2
## 7762       Suc. Belenes     3      NA     3     3    3     3
## 7763       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7764       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7765       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7766       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7767       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7768       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7769       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7770       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7771       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7772       Suc. Belenes     3       3     2    10    2     4
## 7773       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7774       Suc. Belenes    NA       1     1     2   NA     1
## 7775       Suc. Belenes     2       2     2    NA    4    NA
## 7776       Suc. Belenes     2       3     1     3    2     1
## 7777       Suc. Belenes     3       6     6    14    6    NA
## 7778       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7779       Suc. Belenes     6       2     4     4    4     8
## 7780       Suc. Belenes     6       2     8     8    4     8
## 7781       Suc. Belenes    NA      NA     2     1    3     2
## 7782       Suc. Belenes     1       1     1     2    1     1
## 7783       Suc. Belenes    NA      NA     2     2    2    NA
## 7784       Suc. Belenes     3      NA    NA    NA    3    NA
## 7785       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7786       Suc. Belenes     8      16    37    21   24    18
## 7787       Suc. Belenes    NA      NA    NA    NA   NA    10
## 7788       Suc. Belenes     3       3     3     6    3     3
## 7789       Suc. Belenes     3       3     8     8    3     5
## 7790       Suc. Belenes    18      35    81    28   53    53
## 7791       Suc. Belenes    46      56    53    32   28    39
## 7792       Suc. Belenes     6       4    17     6   13     6
## 7793       Suc. Belenes    11      15    25    17   17    17
## 7794       Suc. Belenes    44      36    46    57   40    40
## 7795       Suc. Belenes     2       5     6     5    7     8
## 7796       Suc. Belenes    NA       2     5     3    3     3
## 7797       Suc. Belenes     2       6     2     2    2     2
## 7798       Suc. Belenes     4       2     2    NA    3     2
## 7799       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7800       Suc. Belenes    NA       1     1     2    2     1
## 7801       Suc. Belenes    NA       1    NA     1   NA    NA
## 7802       Suc. Belenes     3       3     3     8    3     8
## 7803       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7804       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7805       Suc. Belenes     2       0     0     0    0     0
## 7806       Suc. Belenes    NA       1    NA    NA    1    NA
## 7807       Suc. Belenes     4       9     7     9    7     9
## 7808       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7809       Suc. Belenes    NA       2     2    NA    2    NA
## 7810       Suc. Belenes     0       0     1    NA    0    NA
## 7811       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7812       Suc. Belenes     1      NA    NA    NA   NA    NA
## 7813       Suc. Belenes     1       3     1     1    1     1
## 7814       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7815       Suc. Belenes     3      NA    NA     3   NA    NA
## 7816       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7817       Suc. Belenes     0       2     2     1   NA     2
## 7818       Suc. Belenes     1       3     3     3    1     4
## 7819       Suc. Belenes    NA       0     0     0    0     0
## 7820       Suc. Belenes    NA      NA     3    NA   NA    NA
## 7821       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7822       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7823       Suc. Belenes     1       1     1     1    1     2
## 7824       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7825       Suc. Belenes    NA       0     0     0    0     0
## 7826       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7827       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7828       Suc. Belenes     1       1     1     1    1     2
## 7829       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7830       Suc. Belenes     3       6     3    NA    6     3
## 7831       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7832       Suc. Belenes     4       1     3     1    4    NA
## 7833       Suc. Belenes    NA       0     0     0    0     0
## 7834       Suc. Belenes    NA       3     3     8   NA     6
## 7835       Suc. Belenes    NA      NA     0    NA   NA    NA
## 7836       Suc. Belenes    NA       2     3     2    1     2
## 7837       Suc. Belenes     1       1     1     1    3     2
## 7838       Suc. Belenes     4       1     3     4    4     3
## 7839       Suc. Belenes    NA       0     0     0    0     0
## 7840       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7841       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7842       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7843       Suc. Belenes     6      10     3     6    4     7
## 7844       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7845       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7846       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7847       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7848       Suc. Belenes    13      27     4     2    6    19
## 7849       Suc. Belenes    10      16    19     6    6    22
## 7850       Suc. Belenes     5       3    NA     3    3     8
## 7851       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7852       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7853       Suc. Belenes    NA       1     1    NA   NA    NA
## 7854       Suc. Belenes     1      NA    NA    NA   NA     1
## 7855       Suc. Belenes     8      NA    NA    NA    7     8
## 7856       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7857       Suc. Belenes     1       1     1     2    2     2
## 7858       Suc. Belenes     2       1     2     2    2     1
## 7859       Suc. Belenes     3       3     3     6    6     3
## 7860       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7861       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7862       Suc. Belenes    NA      NA     1    NA   NA     1
## 7863       Suc. Belenes    NA       2    NA    NA   NA    NA
## 7864       Suc. Belenes     2       2     2     2    2     2
## 7865       Suc. Belenes     4       8     4     8    8     8
## 7866       Suc. Belenes     8       4     4     6    6     6
## 7867       Suc. Belenes     2       4     2     4    5     2
## 7868       Suc. Belenes    NA      NA    NA     3    3     2
## 7869       Suc. Belenes     4       4     2     2    2     4
## 7870       Suc. Belenes     2      NA     2     2    2     2
## 7871       Suc. Belenes    36      25    51    11   49     8
## 7872       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7873       Suc. Belenes     3      NA    NA    NA   NA    NA
## 7874       Suc. Belenes    22      29    32    63  105    48
## 7875       Suc. Belenes     6      14     8    14   15     9
## 7876       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7877       Suc. Belenes     3      NA    NA     1   NA    NA
## 7878       Suc. Belenes    35      67    60    70   95    18
## 7879       Suc. Belenes   254     303   359   504  313   349
## 7880       Suc. Belenes    15      25    25    32   30    25
## 7881       Suc. Belenes    61      78   101   125  144    74
## 7882       Suc. Belenes     5       5     6     7    7     4
## 7883       Suc. Belenes     3       2     6     5    8     5
## 7884       Suc. Belenes     4       2     4     2    6     2
## 7885       Suc. Belenes     1       1     1     1   NA     1
## 7886       Suc. Belenes    NA       1     1    NA   NA     1
## 7887       Suc. Belenes     1       1     1     2    2     1
## 7888       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7889       Suc. Belenes    NA       1     3     6    6    10
## 7890       Suc. Belenes     2      NA     1     0    2     0
## 7891       Suc. Belenes    NA       1    NA    NA   NA    NA
## 7892       Suc. Belenes     3       5     8     9    2    12
## 7893       Suc. Belenes    NA      NA    NA    NA   NA     1
## 7894       Suc. Belenes    NA      NA    NA    NA   NA     2
## 7895       Suc. Belenes    NA       0    NA    NA    0    NA
## 7896       Suc. Belenes     0      NA     0     0    0     0
## 7897       Suc. Belenes    NA      NA    NA     1    1    NA
## 7898       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7899       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7900       Suc. Belenes     2       2     2    NA   NA    NA
## 7901       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7902       Suc. Belenes     1      NA     3     8    1     3
## 7903       Suc. Belenes    NA       4    NA    NA    4    NA
## 7904       Suc. Belenes    NA      NA    NA    NA    1     0
## 7905       Suc. Belenes     1      NA     4     5    1     5
## 7906       Suc. Belenes     1       1     1     1    1     1
## 7907       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7908       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7909       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7910       Suc. Belenes     1      NA    NA     6    1    NA
## 7911       Suc. Belenes    NA      NA    NA    NA    4    NA
## 7912       Suc. Belenes    NA      NA    NA    NA    0     1
## 7913       Suc. Belenes     1      NA     2     1    1     1
## 7914       Suc. Belenes    NA       1     1    NA    1     1
## 7915       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7916       Suc. Belenes     1      NA    NA    NA    1    NA
## 7917       Suc. Belenes    NA      NA    NA    NA    1     1
## 7918       Suc. Belenes     1      NA     2     1    1     1
## 7919       Suc. Belenes    NA      NA     1    NA    1     1
## 7920       Suc. Belenes    NA       1     1     1    1     1
## 7921       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7922       Suc. Belenes    NA      NA     6     6   NA    NA
## 7923       Suc. Belenes    NA       4    NA     4    4    NA
## 7924       Suc. Belenes     4       4    11    15    2     8
## 7925       Suc. Belenes    NA       3    NA     3    1     1
## 7926       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7927       Suc. Belenes     2      NA     2    NA   NA    NA
## 7928       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7929       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7930       Suc. Belenes     1       8     3    11    4     3
## 7931       Suc. Belenes    NA       4    NA    NA   NA    NA
## 7932       Suc. Belenes     0      NA     0     0    1     1
## 7933       Suc. Belenes     1      NA     8     5    5     7
## 7934       Suc. Belenes     2       2     1     1    2     2
## 7935       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7936       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7937       Suc. Belenes     2      10    14     5    7     8
## 7938       Suc. Belenes    NA      NA    NA    NA   NA     0
## 7939       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7940       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7941       Suc. Belenes     1       2     1     1    3     1
## 7942       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7943       Suc. Belenes    13      17    19    19   17    23
## 7944       Suc. Belenes    13      16    19    29   19    22
## 7945       Suc. Belenes    NA      NA    NA     1   NA     1
## 7946       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7947       Suc. Belenes     4       7     4     4    7     7
## 7948       Suc. Belenes     5      10     5     8    8     8
## 7949       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7950       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7951       Suc. Belenes    NA      NA    NA     2   NA    NA
## 7952       Suc. Belenes    NA      NA    NA     4    3     1
## 7953       Suc. Belenes    NA      NA     2     2    3     2
## 7954       Suc. Belenes    NA      NA    NA     1    1    NA
## 7955       Suc. Belenes     0       0     1    NA    0     1
## 7956       Suc. Belenes     1       2     1    NA    1     2
## 7957       Suc. Belenes     5       2     3     5    2     8
## 7958       Suc. Belenes     1      NA     1     0    1     2
## 7959       Suc. Belenes     1       2     2    NA    4    NA
## 7960       Suc. Belenes    NA      NA    NA     2   NA     2
## 7961       Suc. Belenes    NA       3     5     2    1     2
## 7962       Suc. Belenes     3       6     8     8   NA     8
## 7963       Suc. Belenes     1       3     1     3    1     1
## 7964       Suc. Belenes    NA       0    NA    NA   NA    NA
## 7965       Suc. Belenes    NA      NA    NA    NA    1    NA
## 7966       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7967       Suc. Belenes     2       2    NA    NA   NA    NA
## 7968       Suc. Belenes    NA      NA    NA     1   NA    NA
## 7969       Suc. Belenes     4       2    NA     4    2    NA
## 7970       Suc. Belenes    13      13    13    17   17    15
## 7971       Suc. Belenes    NA       6     3    NA   NA    NA
## 7972       Suc. Belenes    14       8    11    17   17    17
## 7973       Suc. Belenes    11       4     4     7   11    11
## 7974       Suc. Belenes    13       8    11    15    8     8
## 7975       Suc. Belenes    NA       2     2     1    1     2
## 7976       Suc. Belenes    NA       2    NA    NA   NA     2
## 7977       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7978       Suc. Belenes     4       4     2     4    2     4
## 7979       Suc. Belenes     2       2     2     2    2    NA
## 7980       Suc. Belenes     1       1     1     1   NA    NA
## 7981       Suc. Belenes    23      19    23    21   19    17
## 7982       Suc. Belenes    11      13     8    21   11     5
## 7983       Suc. Belenes    NA      NA    NA    NA   10    10
## 7984       Suc. Belenes    35      38    35    35   29    35
## 7985       Suc. Belenes    15      12    15    20   11     9
## 7986       Suc. Belenes     8      14    11    17   20     3
## 7987       Suc. Belenes    17      17    17    25   20    17
## 7988       Suc. Belenes    77      56    70    95   85    35
## 7989       Suc. Belenes   151     113   159   162  155   155
## 7990       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7991       Suc. Belenes    38      34    36    53   42    38
## 7992       Suc. Belenes    55      63    89    72   74    63
## 7993       Suc. Belenes     7       5     6    11    9    10
## 7994       Suc. Belenes     2       3     3     5    3     2
## 7995       Suc. Belenes     4       2     6     6    6     6
## 7996       Suc. Belenes     3       2     4     5    3     3
## 7997       Suc. Belenes     1       1     1     1    2     1
## 7998       Suc. Belenes     2      NA    NA     2    1    NA
## 7999       Suc. Belenes     2       3    NA     3    4     1
## 8000       Suc. Belenes     1      NA     1     1   NA     1
## 8001       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8002       Suc. Belenes     2       2     0     2    1     0
## 8003       Suc. Belenes     2       1     1    NA    0     1
## 8004       Suc. Belenes     2       3     8     7    2     5
## 8005       Suc. Belenes    NA      NA     1     1   NA     1
## 8006       Suc. Belenes     2       2     6     4   NA    NA
## 8007       Suc. Belenes     0       1     1     2   NA    NA
## 8008       Suc. Belenes    NA      NA    NA    NA    1     1
## 8009       Suc. Belenes     1       1     1     1   NA     2
## 8010       Suc. Belenes     1      NA     2     1    1     1
## 8011       Suc. Belenes    NA       1     1     1    1     1
## 8012       Suc. Belenes     0       0     1     1    1     0
## 8013       Suc. Belenes     2       4     3     5    4     5
## 8014       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8015       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8016       Suc. Belenes     4       2     2     4    2     2
## 8017       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8018       Suc. Belenes    NA       3    NA    NA   NA    NA
## 8019       Suc. Belenes     7       7     4     7    7     4
## 8020       Suc. Belenes     0       2     1    NA    0     1
## 8021       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8022       Suc. Belenes     2      NA    NA     2    1     1
## 8023       Suc. Belenes     3       3     3     6    4     5
## 8024       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8025       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8026       Suc. Belenes     4       4     7     4    7     7
## 8027       Suc. Belenes     0       0     0    NA    0     2
## 8028       Suc. Belenes    NA      NA    NA    NA    1     1
## 8029       Suc. Belenes     3       2     2     3    1     1
## 8030       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8031       Suc. Belenes     0       0     1    NA    0     1
## 8032       Suc. Belenes    NA      NA    NA    NA    1     1
## 8033       Suc. Belenes     1       3     2     2    3     2
## 8034       Suc. Belenes     3       2     2     3    1     3
## 8035       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8036       Suc. Belenes    NA      NA     3    NA   NA    NA
## 8037       Suc. Belenes     7       4     4     7   11     7
## 8038       Suc. Belenes    NA      NA     2    NA   NA    NA
## 8039       Suc. Belenes    NA       1     1     1    3     3
## 8040       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8041       Suc. Belenes     4       4     4     4    6     8
## 8042       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8043       Suc. Belenes    NA      NA    NA     3    3     3
## 8044       Suc. Belenes     7       7     7     4   14     4
## 8045       Suc. Belenes     0       0     1    NA    0     1
## 8046       Suc. Belenes    NA       0     0     0    0     0
## 8047       Suc. Belenes    NA       2    NA    NA    1     1
## 8048       Suc. Belenes     4       4     4     7    4     7
## 8049       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8050       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8051       Suc. Belenes     3       4    NA     3    5     4
## 8052       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8053       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8054       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8055       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8056       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8058       Suc. Belenes     2       6    74     2    2     2
## 8059       Suc. Belenes     6      10   105     3    3     3
## 8060       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8061       Suc. Belenes    NA       3    28    NA   NA    NA
## 8062       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8063       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8064       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8065       Suc. Belenes    NA      NA     2     5    5    10
## 8066       Suc. Belenes    NA      NA     3     5    5     2
## 8067       Suc. Belenes    NA      NA     3     4   NA     1
## 8068       Suc. Belenes     1       1     0     0    2     1
## 8069       Suc. Belenes     0       1     0     1    1     1
## 8070       Suc. Belenes     1      NA     2    NA    1     1
## 8071       Suc. Belenes     2       1     2    NA    1     2
## 8072       Suc. Belenes    NA       1     1     1    1     1
## 8073       Suc. Belenes     2       1     1     1    1    NA
## 8074       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8075       Suc. Belenes    NA       2     1     1    1     1
## 8076       Suc. Belenes    NA       3     3     3    3    NA
## 8077       Suc. Belenes    NA       0    NA    NA   NA     0
## 8078       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8079       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8080       Suc. Belenes     2       2    NA    NA   NA    NA
## 8081       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8082       Suc. Belenes     2       2    NA     6    2    NA
## 8083       Suc. Belenes    NA      NA     2     1    1     2
## 8084       Suc. Belenes     6       6     2     8    6     2
## 8085       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8086       Suc. Belenes    11      11     4    11    7     4
## 8087       Suc. Belenes    19      13    11    19   17    19
## 8088       Suc. Belenes     1      NA     1    NA    2     3
## 8089       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8090       Suc. Belenes     2      NA    NA    NA   NA    NA
## 8091       Suc. Belenes     4      NA     2     2    2     2
## 8092       Suc. Belenes     2       1     1     1    2    NA
## 8093       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8094       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8095       Suc. Belenes    NA      NA    NA    NA   25    NA
## 8096       Suc. Belenes    32      32    45    48   18    16
## 8097       Suc. Belenes    NA      NA    NA    NA   NA    79
## 8098       Suc. Belenes    25      25    57    41   41    41
## 8099       Suc. Belenes    12      17    11    17   14    12
## 8100       Suc. Belenes     2       5    NA    NA    2    NA
## 8101       Suc. Belenes    NA      NA    NA     6   NA    NA
## 8102       Suc. Belenes     8       8     6     8   11    11
## 8103       Suc. Belenes    42      85    81    49   74    70
## 8104       Suc. Belenes    77     102   169    95  113   141
## 8105       Suc. Belenes    NA       4     2     8    6     4
## 8106       Suc. Belenes    11      46    36    61   59    61
## 8107       Suc. Belenes   116     101   112   190  213   133
## 8108       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8109       Suc. Belenes     9       3     9     6    6     6
## 8110       Suc. Belenes     9       8     6    12   10    12
## 8111       Suc. Belenes     8       5     8     8    8     9
## 8112       Suc. Belenes     8       2     8     6    6    10
## 8113       Suc. Belenes     8       4     7     7    4     4
## 8114       Suc. Belenes     1       1     1     1    1     2
## 8115       Suc. Belenes     1      NA    NA     1    2    NA
## 8116       Suc. Belenes     1      NA    NA     1    1     3
## 8117       Suc. Belenes     2       0     1     0    0     0
## 8118       Suc. Belenes     1       1     1     1    1     1
## 8119       Suc. Belenes     1       0     4    NA    1     3
## 8120       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8121       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8122       Suc. Belenes     2      NA     6     6    2     4
## 8123       Suc. Belenes     0       0     0     1    1     0
## 8124       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8125       Suc. Belenes     0       0     1     0    2     1
## 8126       Suc. Belenes     1       3     3     3    1     2
## 8127       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8128       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8129       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8130       Suc. Belenes     2       2    NA     2    2     4
## 8131       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8132       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8133       Suc. Belenes     3       8     3     8    6     3
## 8134       Suc. Belenes     0       1     0     1    1     1
## 8135       Suc. Belenes     0       2     2     1    2     2
## 8136       Suc. Belenes     4       2     5     2    7     1
## 8137       Suc. Belenes     2       2     1     2    3     3
## 8138       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8139       Suc. Belenes    NA       0     0    NA   NA    NA
## 8140       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8141       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8142       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8143       Suc. Belenes    NA      NA    NA     3    6    NA
## 8144       Suc. Belenes     0       0     0     0    0     0
## 8145       Suc. Belenes    NA       1    NA     1    1     1
## 8146       Suc. Belenes     4      NA     1     4    1     3
## 8147       Suc. Belenes     1      NA     1     1    1     1
## 8148       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8149       Suc. Belenes    NA       0     0    NA   NA    NA
## 8150       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8151       Suc. Belenes     2      NA     2    NA   NA     2
## 8152       Suc. Belenes    NA      NA    NA    NA   NA     3
## 8153       Suc. Belenes     0       1     0     1    1     1
## 8154       Suc. Belenes    NA       1    NA     0    1    NA
## 8155       Suc. Belenes     6      NA     3     2    1     3
## 8156       Suc. Belenes     1       1     1     1    1     1
## 8157       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8158       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8159       Suc. Belenes     1       1     1     1   NA     2
## 8160       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8161       Suc. Belenes    NA       6     6     3    3     8
## 8162       Suc. Belenes    NA      NA    NA     0    0     1
## 8163       Suc. Belenes     2       2     2    NA    2     4
## 8164       Suc. Belenes     1       3    NA     1    1     1
## 8165       Suc. Belenes    NA       0     0    NA   NA    NA
## 8166       Suc. Belenes     2       2    NA     2    4     2
## 8167       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8168       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8169       Suc. Belenes    NA       8    NA     6   NA     3
## 8170       Suc. Belenes     0       1     0     1    1     1
## 8171       Suc. Belenes    NA       3     2     2    1     2
## 8172       Suc. Belenes     8      NA     3     2    5     3
## 8173       Suc. Belenes     2       5     2     3    3     3
## 8174       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8175       Suc. Belenes    NA       0     0    NA   NA    NA
## 8176       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8177       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8178       Suc. Belenes     3       4     3     5    3     4
## 8179       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8180       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8181       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8182       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8183       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8184       Suc. Belenes     6      15     2    19    8    17
## 8185       Suc. Belenes    10      10    10    22   10    13
## 8186       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8187       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8188       Suc. Belenes     8      13     8    13   13    15
## 8189       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8190       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8191       Suc. Belenes     0      NA     0     0    1     1
## 8192       Suc. Belenes     1       1    NA     1   NA    NA
## 8193       Suc. Belenes     5       3     2     7    4     6
## 8194       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8195       Suc. Belenes    NA       1     1     1    1     2
## 8196       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8197       Suc. Belenes    NA       1     1     1    2     2
## 8198       Suc. Belenes    NA       3    NA     3   NA     3
## 8199       Suc. Belenes     1      NA    NA     2    2     1
## 8200       Suc. Belenes    NA      NA    NA     1   NA     1
## 8201       Suc. Belenes    NA       2    NA     2   NA     2
## 8202       Suc. Belenes     2       2     2     4    6     4
## 8203       Suc. Belenes     4       4    NA     4   NA    NA
## 8204       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8205       Suc. Belenes    11       8     6    15    4    13
## 8206       Suc. Belenes     1       1    NA     2    1     1
## 8207       Suc. Belenes     4       2     4     4    8     8
## 8208       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8209       Suc. Belenes    NA       2    NA     4    4     4
## 8210       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8211       Suc. Belenes     1       1     1     1    1     1
## 8212       Suc. Belenes    NA      NA    NA    NA    6    NA
## 8213       Suc. Belenes    21      16    16    24    5    13
## 8214       Suc. Belenes    NA      NA    NA    NA   NA    13
## 8215       Suc. Belenes    19      19    22    38   29    32
## 8216       Suc. Belenes    11       9     8     8    6     8
## 8217       Suc. Belenes    NA      NA    18    32   18    28
## 8218       Suc. Belenes   102      81    85   151  106   137
## 8219       Suc. Belenes     6       6     6     4    8     4
## 8220       Suc. Belenes    13      13    13    27   19    25
## 8221       Suc. Belenes    55      57    53    78   66    66
## 8222       Suc. Belenes     5       8     7    11    8     8
## 8223       Suc. Belenes     2       2     2     3    2     3
## 8224       Suc. Belenes     4       4     4     4    6     6
## 8225       Suc. Belenes     2       3     2     2    3     2
## 8226       Suc. Belenes    NA       1     1     2    1     3
## 8227       Suc. Belenes    NA      NA    NA     1    1    NA
## 8228       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8229       Suc. Belenes    NA       0     0     0    0     0
## 8230       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8231       Suc. Belenes     2       2     2     2    1     2
## 8232       Suc. Belenes    NA       2    NA     2   NA     2
## 8233       Suc. Belenes     0      NA    NA     0   NA     0
## 8234       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8235       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8236       Suc. Belenes    NA       2     2     4    1     2
## 8237       Suc. Belenes    NA       1     1     1   NA     1
## 8238       Suc. Belenes    NA       0     0     0    0     0
## 8239       Suc. Belenes    NA      NA    NA     1   NA     1
## 8240       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8241       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8242       Suc. Belenes    NA       3    NA     3    6     6
## 8243       Suc. Belenes     2      NA     2     0    1     1
## 8244       Suc. Belenes    NA       0    NA    NA    0    NA
## 8245       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8246       Suc. Belenes     2       1     3     3    1     1
## 8247       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8248       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8249       Suc. Belenes    NA      NA    NA     6    3     6
## 8250       Suc. Belenes     0      NA     0     0    0     1
## 8251       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8252       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8253       Suc. Belenes     1       1     1     1    1     1
## 8254       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8255       Suc. Belenes    NA      NA     2    NA   NA    NA
## 8256       Suc. Belenes    NA      NA    NA     3    3    NA
## 8257       Suc. Belenes     0      NA     0     0    1     1
## 8258       Suc. Belenes    NA      NA    NA     0   NA    NA
## 8259       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8260       Suc. Belenes     2      NA     2     1    1     1
## 8261       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8262       Suc. Belenes    NA       3     6     6    3     3
## 8263       Suc. Belenes    NA       2     2    NA    2     2
## 8264       Suc. Belenes     1       1    NA     1   NA     1
## 8265       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8266       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8267       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8268       Suc. Belenes     2      NA     0     2    1     1
## 8269       Suc. Belenes    NA      NA     0    NA   NA     0
## 8270       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8271       Suc. Belenes     3       3     3     6    4     6
## 8272       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8273       Suc. Belenes     1       3     1     4    1     4
## 8274       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8275       Suc. Belenes    NA       0    NA    NA   NA     0
## 8276       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8277       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8278       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8279       Suc. Belenes    NA      NA    NA     3   NA    NA
## 8280       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8281       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8282       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8283       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8284       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8285       Suc. Belenes    NA      NA    NA     1   NA    NA
## 8286       Suc. Belenes    11      11    11    15   15     8
## 8287       Suc. Belenes     6       8     8    11   11     6
## 8288       Suc. Belenes     2       3     3     2    1     2
## 8289       Suc. Belenes    15      21    23    30   25    19
## 8290       Suc. Belenes    NA      NA    NA     3   NA    NA
## 8291       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8292       Suc. Belenes    NA      NA     3     3    3     3
## 8293       Suc. Belenes    NA      NA     2    NA   NA    NA
## 8294       Suc. Belenes    42     175   147    99  161   161
## 8295       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8296       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8297       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8298       Suc. Belenes    27      30    30    38   32    32
## 8299       Suc. Belenes    34      23    34    57   40    36
## 8300       Suc. Belenes     3       4     4     7    6     4
## 8301       Suc. Belenes     3       3     5     8   NA     5
## 8302       Suc. Belenes     3       2     3     4    1     2
## 8303       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8304       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8306       Suc. Belenes     5       6     4    10    5     4
## 8307       Suc. Belenes    NA       2     2    NA    2     3
## 8308       Suc. Belenes     2       1     1     2    0     1
## 8309       Suc. Belenes    NA       1     1    NA   NA     1
## 8310       Suc. Belenes     4       4     6     2    4     4
## 8311       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8312       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8313       Suc. Belenes     1       3     1     2    1     1
## 8314       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8315       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8316       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8317       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8318       Suc. Belenes     2       4     3     6    3     3
## 8319       Suc. Belenes     1       0     0     1    0     0
## 8320       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8321       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8322       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8323       Suc. Belenes     1       0     0     1    0     0
## 8324       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8325       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8326       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8327       Suc. Belenes     2       1     2     3    2     1
## 8328       Suc. Belenes     1       0     0     1    0     0
## 8329       Suc. Belenes     1       3     1     2    1     3
## 8330       Suc. Belenes     3       1     3     1    4     3
## 8331       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8332       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8333       Suc. Belenes    NA      NA    NA    NA    2    NA
## 8334       Suc. Belenes    NA      NA    NA    NA   NA     3
## 8335       Suc. Belenes     3       3     5     8    4     8
## 8336       Suc. Belenes     1       0     0     1    0     0
## 8337       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8338       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8339       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8340       Suc. Belenes     4      19    NA    21   25    34
## 8341       Suc. Belenes    13      NA     3    25   38    29
## 8342       Suc. Belenes     3      NA    NA    NA   NA    NA
## 8343       Suc. Belenes    NA      NA    NA    NA    4    NA
## 8344       Suc. Belenes     8      NA    NA     8   18     5
## 8345       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8346       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8347       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8348       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8349       Suc. Belenes    NA      NA     1    NA    1     3
## 8350       Suc. Belenes     6       2     3     4    3     5
## 8351       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8352       Suc. Belenes     2      NA    NA     1   NA     1
## 8353       Suc. Belenes     2      NA     1     1    2    NA
## 8354       Suc. Belenes    NA      NA    NA     3   NA     6
## 8355       Suc. Belenes    NA       0    NA    NA   NA     0
## 8356       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8357       Suc. Belenes    NA      NA    NA    NA   NA     3
## 8358       Suc. Belenes    NA      NA     4     4    4     6
## 8359       Suc. Belenes    15      13    21    21   32    25
## 8360       Suc. Belenes    NA       2     6     3    5     2
## 8361       Suc. Belenes    17      25    17    25   20    25
## 8362       Suc. Belenes    NA      NA    14    25   34    31
## 8363       Suc. Belenes     4      NA    NA    NA   NA    NA
## 8364       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8365       Suc. Belenes    32      21    23    36   25    27
## 8366       Suc. Belenes     4       2     6     4    4     4
## 8367       Suc. Belenes     2      NA    NA    NA   NA     1
## 8368       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8369       Suc. Belenes     2       6    NA    NA   NA    NA
## 8370       Suc. Belenes     8       8     3    NA   NA    NA
## 8371       Suc. Belenes    NA      NA     2     2    4     6
## 8372       Suc. Belenes    NA      NA    23    27   42    32
## 8373       Suc. Belenes    29      26    18    24   16     5
## 8374       Suc. Belenes    NA      NA    NA    NA   NA     3
## 8375       Suc. Belenes    19      25    16    63   48    41
## 8376       Suc. Belenes    11      14    14    12   12    14
## 8377       Suc. Belenes    NA      NA    NA    NA    2     2
## 8378       Suc. Belenes    NA      NA     8    14   11    20
## 8379       Suc. Belenes    11       6     3    NA   NA    NA
## 8380       Suc. Belenes    35      63    53    99   77    77
## 8381       Suc. Belenes   102     120   109   148  144   109
## 8382       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8383       Suc. Belenes    32      25    23    30   34    34
## 8384       Suc. Belenes    49      40    46    61   49    25
## 8385       Suc. Belenes    NA      NA     8    15   NA    NA
## 8386       Suc. Belenes     9      15    NA    NA   NA    NA
## 8387       Suc. Belenes     5       5     8    12    7     8
## 8388       Suc. Belenes     3       3     3     3    8     9
## 8389       Suc. Belenes     2      NA    NA     2   NA    NA
## 8390       Suc. Belenes     3       2     4     5    4     6
## 8391       Suc. Belenes    NA       1     1    NA   NA    NA
## 8392       Suc. Belenes    NA       1    NA     1    2     1
## 8393       Suc. Belenes    NA       1    NA     1    1    NA
## 8394       Suc. Belenes     1      NA     1     5   NA     5
## 8395       Suc. Belenes     2      NA     0     1    0    NA
## 8396       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8397       Suc. Belenes     0       4    10    NA    3     8
## 8398       Suc. Belenes    NA       1    NA    NA   NA     1
## 8399       Suc. Belenes    NA       2    NA    NA   NA     2
## 8400       Suc. Belenes    NA      NA    NA    NA    0    NA
## 8401       Suc. Belenes     2      NA    NA     1    2     1
## 8402       Suc. Belenes     3       1     1     3    4     4
## 8403       Suc. Belenes     3       1     1     1   NA     1
## 8404       Suc. Belenes     2      NA    NA    NA   NA     1
## 8405       Suc. Belenes     1       0     1     0    1     0
## 8406       Suc. Belenes     3      NA     1     1    3     3
## 8407       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8408       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8409       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8410       Suc. Belenes     1      NA     4     6    6    NA
## 8411       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8412       Suc. Belenes    NA      NA     1     1    2     0
## 8413       Suc. Belenes     1      NA     1     1    2    NA
## 8414       Suc. Belenes     3      NA     1     2    3     1
## 8415       Suc. Belenes    NA       0     0    NA   NA    NA
## 8416       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8417       Suc. Belenes     1      NA     1     3    1     3
## 8418       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8419       Suc. Belenes    NA      NA     1     1    1     0
## 8420       Suc. Belenes     1      NA     1     1   NA    NA
## 8421       Suc. Belenes    NA      NA     1     1    3     1
## 8422       Suc. Belenes    NA       0     0    NA   NA    NA
## 8423       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8424       Suc. Belenes     1      NA     1     3    1     3
## 8425       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8426       Suc. Belenes    NA      NA     1     1    2     0
## 8427       Suc. Belenes     1      NA     1     1   NA    NA
## 8428       Suc. Belenes     3      NA     1     2    4     2
## 8429       Suc. Belenes    NA      NA     1    NA   NA     1
## 8430       Suc. Belenes    NA      NA    NA     6   NA    NA
## 8431       Suc. Belenes     0      NA    NA    NA   NA    NA
## 8432       Suc. Belenes    NA      NA    NA    NA    2    NA
## 8433       Suc. Belenes     3      NA    NA    NA   NA    NA
## 8434       Suc. Belenes    NA       0     0    NA   NA    NA
## 8435       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8436       Suc. Belenes     1       6     1    14    9     3
## 8437       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8438       Suc. Belenes     1       0     1     1    0     1
## 8439       Suc. Belenes     1      NA     1     1    2     2
## 8440       Suc. Belenes     3       1     2     2    4     2
## 8441       Suc. Belenes    NA       0     0    NA   NA    NA
## 8442       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8443       Suc. Belenes     3       3     3     6    3     7
## 8444       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8445       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8446       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8447       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8448       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8449       Suc. Belenes    17      36     6    19   27    34
## 8450       Suc. Belenes    48      16    29    44   44    48
## 8451       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8452       Suc. Belenes     8       5     8     8   13     3
## 8453       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8454       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8455       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8456       Suc. Belenes     2       3    NA     2    4    NA
## 8457       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8458       Suc. Belenes     1       1     1     1    1     4
## 8459       Suc. Belenes     8       6    14     8   13    12
## 8460       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8461       Suc. Belenes     1       4     1     3    4     1
## 8462       Suc. Belenes     2      NA     2    NA   NA    NA
## 8463       Suc. Belenes     2       1     2     1    2     2
## 8464       Suc. Belenes     3       6     3     8    6     6
## 8465       Suc. Belenes     3      NA    NA    NA   NA    NA
## 8466       Suc. Belenes    NA      NA     1     1    1     1
## 8467       Suc. Belenes     1       1     2     1    2     1
## 8468       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8469       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8470       Suc. Belenes     2      NA    NA     4   NA     2
## 8471       Suc. Belenes    11       6     8     6   11     6
## 8472       Suc. Belenes     3       2     5     2    3     9
## 8473       Suc. Belenes     6       3     8     8    6    11
## 8474       Suc. Belenes    21      11    NA    11   13    19
## 8475       Suc. Belenes     3       1     2     1    2     4
## 8476       Suc. Belenes     2      NA     2     2    3     6
## 8477       Suc. Belenes     2       4     2    NA    2     4
## 8478       Suc. Belenes     4       4    NA     4    2     2
## 8479       Suc. Belenes    17       8     8    13   11    15
## 8480       Suc. Belenes    55      45    13    50   74    21
## 8481       Suc. Belenes    NA      NA    NA    NA   NA   105
## 8482       Suc. Belenes    76      73   143    19  155    79
## 8483       Suc. Belenes    17      17    23    48   20     2
## 8484       Suc. Belenes     6       9    24     9   20    33
## 8485       Suc. Belenes    14       6    23    12   25    31
## 8486       Suc. Belenes    14      23    14    17   23    31
## 8487       Suc. Belenes    18      70    81    53  155    92
## 8488       Suc. Belenes   278     243   243   261  328   370
## 8489       Suc. Belenes    15      13    49    13   42    25
## 8490       Suc. Belenes    42      27    30    55   74    76
## 8491       Suc. Belenes   334     391   429   520  399   613
## 8492       Suc. Belenes    10       8    14     9   14    25
## 8493       Suc. Belenes     6       6     6     8    8     8
## 8494       Suc. Belenes     4       2     2    10    4     4
## 8495       Suc. Belenes     7       5     5     6    4     5
## 8496       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8497       Suc. Belenes     1       1     3     3    1     2
## 8498       Suc. Belenes    NA      NA    NA     2    1    NA
## 8499       Suc. Belenes     1       3     7     3    6     5
## 8500       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8501       Suc. Belenes     4       3     7     7    7     5
## 8502       Suc. Belenes     1       1     3     2    2     1
## 8503       Suc. Belenes     9       9    28     5   19     7
## 8504       Suc. Belenes     1       1     1     1    2     1
## 8505       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8506       Suc. Belenes    NA      NA     2     2    2     2
## 8507       Suc. Belenes    NA       1     1     0    1     0
## 8508       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8509       Suc. Belenes     0       1     0     0    0     0
## 8510       Suc. Belenes     5      NA    NA    NA    3     3
## 8511       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8512       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8513       Suc. Belenes     2       2     2    NA   NA     6
## 8514       Suc. Belenes    NA       6     8     8   11     3
## 8515       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8516       Suc. Belenes     0      NA     3     3    7     3
## 8517       Suc. Belenes     9       7    17    17   15    15
## 8518       Suc. Belenes     5       3    NA     8   NA     4
## 8519       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8520       Suc. Belenes    NA       2    NA    NA    2     2
## 8521       Suc. Belenes    NA       6     6     6    3    NA
## 8522       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8523       Suc. Belenes    NA      NA    NA    NA    4     2
## 8524       Suc. Belenes     1       7    NA     6    4     1
## 8525       Suc. Belenes     3       3    NA    NA   NA    NA
## 8526       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8527       Suc. Belenes    NA       2     2    NA    2     6
## 8528       Suc. Belenes    NA      NA     8    NA   20    NA
## 8529       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8530       Suc. Belenes     0      NA    NA     5    8     5
## 8531       Suc. Belenes     3       3    11     6   NA    11
## 8532       Suc. Belenes     5       3    NA    NA    3     1
## 8533       Suc. Belenes     1       1     1    NA    2     1
## 8534       Suc. Belenes    NA      11    11     8   20    NA
## 8535       Suc. Belenes     8      13     6    17   25    15
## 8536       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8537       Suc. Belenes     4       4     4     2    4    21
## 8538       Suc. Belenes     8      23    11     8   34     8
## 8539       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8540       Suc. Belenes     0       1    NA     2    9     5
## 8541       Suc. Belenes    20      15    27    30   42    15
## 8542       Suc. Belenes     3      13     3     5   10    NA
## 8543       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8544       Suc. Belenes    NA      NA     1     1    1    NA
## 8545       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8546       Suc. Belenes     4       6     6    14    8     9
## 8547       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8548       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8549       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8550       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8551       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8552       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8553       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8554       Suc. Belenes     2       6     2     2    8     2
## 8555       Suc. Belenes     3      13     6     3   10     3
## 8556       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8557       Suc. Belenes    NA       5     5    NA    8    NA
## 8558       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8559       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8560       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8561       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8562       Suc. Belenes    NA      NA    NA     1    1    NA
## 8563       Suc. Belenes     1       1    NA     1    1     1
## 8564       Suc. Belenes    NA      NA     1    NA   NA     1
## 8565       Suc. Belenes     6       4     4     5    1     4
## 8566       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8567       Suc. Belenes    NA       1     1     1   NA    NA
## 8568       Suc. Belenes     2      NA     2     2    2     4
## 8569       Suc. Belenes     2       2     2     1    2     2
## 8570       Suc. Belenes    NA       3     8     6    6    11
## 8571       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8572       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8573       Suc. Belenes    NA      NA     1    NA    1    NA
## 8574       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8575       Suc. Belenes    NA      NA    NA    NA    2    NA
## 8576       Suc. Belenes    NA       2     2     2    6     2
## 8577       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8578       Suc. Belenes     2      NA     4     8    4     2
## 8579       Suc. Belenes    NA      NA    NA    NA    8     3
## 8580       Suc. Belenes     6      11     6    11    4     8
## 8581       Suc. Belenes     6       6     7     6    4     5
## 8582       Suc. Belenes    NA      NA    NA     2    3    NA
## 8583       Suc. Belenes    NA      NA    NA     2    2     2
## 8584       Suc. Belenes     2       2     4     6    6     4
## 8585       Suc. Belenes     3       3     3     2    3     2
## 8586       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8587       Suc. Belenes    NA      NA    NA    NA    2    NA
## 8588       Suc. Belenes    16      13    24    24   29    16
## 8589       Suc. Belenes    NA      NA    NA    NA   NA    19
## 8590       Suc. Belenes    25      41    79    63   57   108
## 8591       Suc. Belenes     8      11     6    20   20    23
## 8592       Suc. Belenes    NA      NA    NA    NA    6     3
## 8593       Suc. Belenes    11      18    18    28   14    70
## 8594       Suc. Belenes   134     187   208   187  317   289
## 8595       Suc. Belenes    NA       2     2    NA   NA    NA
## 8596       Suc. Belenes    25      13    17     2    4    15
## 8597       Suc. Belenes   139     120   199   129  218   194
## 8598       Suc. Belenes    NA       3    NA    NA   NA    NA
## 8599       Suc. Belenes     6       9     8     9    9    19
## 8600       Suc. Belenes     5       5     5     6    8     5
## 8601       Suc. Belenes     2       4     2     2    6     4
## 8602       Suc. Belenes     5       4     5     7    5     5
## 8603       Suc. Belenes    NA       1     1     1    2     1
## 8604       Suc. Belenes    NA       1    NA     1   NA    NA
## 8605       Suc. Belenes     1       1     1    NA    3     3
## 8606       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8607       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8608       Suc. Belenes     2       0     0     0    0     0
## 8609       Suc. Belenes    NA       0    NA    NA    1    NA
## 8610       Suc. Belenes     3       5     9     1    5    10
## 8611       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8612       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8613       Suc. Belenes    NA      NA     2     2    2     4
## 8614       Suc. Belenes     1       0     0     1    1     1
## 8615       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8616       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8617       Suc. Belenes     0       1     0     0    0     1
## 8618       Suc. Belenes    NA      NA    NA     1    3     1
## 8619       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8620       Suc. Belenes    NA      NA    NA    17    8     3
## 8621       Suc. Belenes     1       1     1     1    1     1
## 8622       Suc. Belenes     0       0    NA     3    4     3
## 8623       Suc. Belenes     2       3     1     2   12     4
## 8624       Suc. Belenes     1       1     1     3    2     1
## 8625       Suc. Belenes    NA       0     0    NA   NA    NA
## 8626       Suc. Belenes    NA      NA     3    NA    8    11
## 8627       Suc. Belenes     0       0    NA     1    0     0
## 8628       Suc. Belenes    NA      NA    NA     2    3     1
## 8629       Suc. Belenes    NA       1     1     2    3     4
## 8630       Suc. Belenes     1       1     2     3    3     1
## 8631       Suc. Belenes    NA       0     0    NA   NA    NA
## 8632       Suc. Belenes    NA      NA    NA     3    6    NA
## 8633       Suc. Belenes     1       1    NA     1    1     1
## 8634       Suc. Belenes    NA      NA     0     2    3     3
## 8635       Suc. Belenes    NA       1     1     2    3     4
## 8636       Suc. Belenes     1       1     1     1    3     1
## 8637       Suc. Belenes    NA      NA     1     1   NA     1
## 8638       Suc. Belenes    NA      NA    NA    NA    6     3
## 8639       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8640       Suc. Belenes    NA      NA    NA     1    2    NA
## 8641       Suc. Belenes     2       2    NA     2   NA     2
## 8642       Suc. Belenes    NA      NA     1     3    3     1
## 8643       Suc. Belenes    NA       0     0    NA   NA    NA
## 8644       Suc. Belenes    NA       3    NA     3   28    11
## 8645       Suc. Belenes     1       1     3     1    1     1
## 8646       Suc. Belenes    NA      NA    NA     2    5     3
## 8647       Suc. Belenes     6       5     3     4   14    15
## 8648       Suc. Belenes     1      NA     3     2    4     1
## 8649       Suc. Belenes    NA       0     0    NA   NA    NA
## 8650       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8651       Suc. Belenes     1       3     4     1    4    12
## 8652       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8653       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8654       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8655       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8656       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8657       Suc. Belenes     2       2     2     2    6     2
## 8658       Suc. Belenes     3       3     3     3   13     6
## 8659       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8660       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8661       Suc. Belenes    NA      NA    NA     3    8     3
## 8662       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8663       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8664       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8665       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8666       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8667       Suc. Belenes    NA      NA     1    NA    1    NA
## 8668       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8669       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8670       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8671       Suc. Belenes     2       2     4     1    5     5
## 8672       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8673       Suc. Belenes     1       1     2     1    2     1
## 8674       Suc. Belenes     2       1     1     1    1     1
## 8675       Suc. Belenes     6      NA     3    NA    3     6
## 8676       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8677       Suc. Belenes    NA       1    NA    NA    1    NA
## 8678       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8679       Suc. Belenes     6       6     2     4    4     4
## 8680       Suc. Belenes    NA      NA    NA    NA    2    NA
## 8681       Suc. Belenes    23      31    11    31   28    11
## 8682       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8683       Suc. Belenes     6       2     4     6    4     6
## 8684       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8685       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8686       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8687       Suc. Belenes    NA      NA     2     4    4    NA
## 8688       Suc. Belenes     5      21     8    11   13     8
## 8689       Suc. Belenes    NA      NA    NA    NA   NA     6
## 8690       Suc. Belenes    22      22    25    22   19    13
## 8691       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8692       Suc. Belenes     3       5     3     5    3     5
## 8693       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8694       Suc. Belenes    17      45    20    31   31    25
## 8695       Suc. Belenes    23      17    23    20   20     6
## 8696       Suc. Belenes    85      70    67    88   92    95
## 8697       Suc. Belenes    70      95    67    95   81    77
## 8698       Suc. Belenes     2       4     2     6    6     4
## 8699       Suc. Belenes     8      17    13    15   19    17
## 8700       Suc. Belenes    70      70    72    70   70    66
## 8701       Suc. Belenes     4       2     2     2    3     1
## 8702       Suc. Belenes     3       2    NA     3    3     3
## 8703       Suc. Belenes    NA       2    NA     2    2     2
## 8704       Suc. Belenes    NA      NA    NA     1    1     1
## 8705       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8706       Suc. Belenes     1       1     1     1    3     3
## 8707       Suc. Belenes    NA      NA    NA     1    1    NA
## 8708       Suc. Belenes    NA      NA    NA    NA    4    NA
## 8709       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8710       Suc. Belenes     1       4     2     0    4     0
## 8711       Suc. Belenes     1       1     1     1    1    NA
## 8712       Suc. Belenes     4       2     2     1    4     3
## 8713       Suc. Belenes     2       2    NA     2    1    NA
## 8714       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8715       Suc. Belenes     2       2     2     2    2     2
## 8716       Suc. Belenes     1      NA     1     0    1     0
## 8717       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8718       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8719       Suc. Belenes     0       0     0     0    0     0
## 8720       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8721       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8722       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8723       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8724       Suc. Belenes    NA      NA     3    NA    6     3
## 8725       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8726       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8727       Suc. Belenes    NA      NA     0    NA    0     0
## 8728       Suc. Belenes     2       2     4     6    4     3
## 8729       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8730       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8731       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8732       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8733       Suc. Belenes    NA      NA    NA    NA   NA     3
## 8734       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8735       Suc. Belenes     0      NA    NA    NA    0    NA
## 8736       Suc. Belenes    NA      NA    NA     2   NA     1
## 8737       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8738       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8739       Suc. Belenes    NA      NA    NA     3   NA    NA
## 8740       Suc. Belenes    NA      NA     3    NA    3     3
## 8741       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8742       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8743       Suc. Belenes    NA       2     2     6    4     5
## 8744       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8745       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8746       Suc. Belenes    NA      NA     3    NA   NA    NA
## 8747       Suc. Belenes     4      NA    NA    NA   NA    NA
## 8748       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8749       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8750       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8751       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8752       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8753       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8754       Suc. Belenes     3      NA    NA     3   NA     3
## 8755       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8756       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8757       Suc. Belenes    NA      NA    NA     0    0    NA
## 8758       Suc. Belenes    NA       2     2     6    4     5
## 8759       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8760       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8761       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8762       Suc. Belenes     3      NA     4    NA    4     4
## 8763       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8764       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8765       Suc. Belenes    NA      NA    NA     1    5     1
## 8766       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8767       Suc. Belenes     8      23     2     6    8    15
## 8768       Suc. Belenes    13       3     6    10   13    19
## 8769       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8770       Suc. Belenes     5       5     3     8    5     8
## 8771       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8772       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8773       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8774       Suc. Belenes    NA      NA     1    NA    1    NA
## 8775       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8776       Suc. Belenes     2       1     1     1    2     2
## 8777       Suc. Belenes    12       6     8     8    8    10
## 8778       Suc. Belenes    NA       0     1    NA    1     1
## 8779       Suc. Belenes     2       2     4    NA    1     1
## 8780       Suc. Belenes    NA      NA    NA     4    4     2
## 8781       Suc. Belenes     2       2     2     1    5     5
## 8782       Suc. Belenes     6       8     8     6    6    11
## 8783       Suc. Belenes    NA       1    NA    NA    4     1
## 8784       Suc. Belenes     0       1     0     0    0     0
## 8785       Suc. Belenes     1       1     1     1    1     1
## 8786       Suc. Belenes     1      NA    NA     1   NA     1
## 8787       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8788       Suc. Belenes     2       2     2     2    2     4
## 8789       Suc. Belenes     1       2     1    NA    1    NA
## 8790       Suc. Belenes     6       8     4     4    4     4
## 8791       Suc. Belenes    11       8    17    17   11    11
## 8792       Suc. Belenes    13      13     4     8    4     6
## 8793       Suc. Belenes     3       3     5     3    3     5
## 8794       Suc. Belenes    NA       2     1    NA    1    NA
## 8795       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8796       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8797       Suc. Belenes     4       2     2    NA   NA    NA
## 8798       Suc. Belenes     8       6    NA     6    6     3
## 8799       Suc. Belenes     2       2    NA     4   NA    NA
## 8800       Suc. Belenes    NA      NA    NA    NA    1    NA
## 8801       Suc. Belenes    NA       6     4     6    8     4
## 8802       Suc. Belenes     5      37    34    NA   45    NA
## 8803       Suc. Belenes    10       6     3    10    3    10
## 8804       Suc. Belenes    38      70    98    41   54   105
## 8805       Suc. Belenes    11      14    11    48    2     8
## 8806       Suc. Belenes     2       3     5     5    5     6
## 8807       Suc. Belenes    11      11     8    17   17     8
## 8808       Suc. Belenes     3       8     6     6    3     3
## 8809       Suc. Belenes     7      25    67     4   25    25
## 8810       Suc. Belenes   173     232   120    88  250   148
## 8811       Suc. Belenes     8      11     8    13    8    19
## 8812       Suc. Belenes    23      19    11    19   27    49
## 8813       Suc. Belenes    97     131   186   137  108   125
## 8814       Suc. Belenes     3       3     3     9   NA    NA
## 8815       Suc. Belenes     7       3     5     5    4     4
## 8816       Suc. Belenes     2       2     5     3    5     3
## 8817       Suc. Belenes     2       4     2     6    4     4
## 8818       Suc. Belenes     6       6     4     5    4     3
## 8819       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8820       Suc. Belenes     1       1     2     1    3     2
## 8821       Suc. Belenes     1       1    NA     2    1     1
## 8822       Suc. Belenes     4       1     2    NA   NA     3
## 8823       Suc. Belenes     1      NA    NA    NA   NA    NA
## 8824       Suc. Belenes     3       0     1     0    2     0
## 8825       Suc. Belenes     2       1    NA     2    2     1
## 8826       Suc. Belenes     8      29     3     9   11    15
## 8827       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8828       Suc. Belenes    NA      NA    NA    NA   NA     0
## 8829       Suc. Belenes     6       2     2     4    2     4
## 8830       Suc. Belenes     1       1     1     0    1     0
## 8831       Suc. Belenes     1       1     1     0    0     1
## 8832       Suc. Belenes    NA      NA    NA    NA    3     3
## 8833       Suc. Belenes     4       3    NA    NA    5     1
## 8834       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8835       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8836       Suc. Belenes    NA       2     2     2    4     2
## 8837       Suc. Belenes     3      NA     3    NA   NA     3
## 8838       Suc. Belenes    NA      NA    NA    NA   NA     6
## 8839       Suc. Belenes     3      11     6     9    6     3
## 8840       Suc. Belenes    NA       4    NA     7    4    NA
## 8841       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8842       Suc. Belenes    NA      NA    NA    NA    0    NA
## 8843       Suc. Belenes     6       1    13     3    4     2
## 8844       Suc. Belenes     4      NA    NA     4    3     2
## 8845       Suc. Belenes     0       1    NA    NA    0     0
## 8846       Suc. Belenes    NA       0    NA     0    0    NA
## 8847       Suc. Belenes     4      NA    NA     2    6     2
## 8848       Suc. Belenes     3      NA     3    NA   NA     3
## 8849       Suc. Belenes    NA       8     6     9    3     3
## 8850       Suc. Belenes    NA       4    NA     7    4    NA
## 8851       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8852       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8853       Suc. Belenes     6       1     3     1   NA     2
## 8854       Suc. Belenes     4      NA    NA    NA    3    NA
## 8855       Suc. Belenes     0       1    NA    NA    0     0
## 8856       Suc. Belenes    NA       0    NA     0    0    NA
## 8857       Suc. Belenes     2      NA     2    NA   NA     4
## 8858       Suc. Belenes     6      NA     3    NA   NA     3
## 8859       Suc. Belenes     3       3     8     9    6     8
## 8860       Suc. Belenes    NA       4    NA     4    4    NA
## 8861       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8862       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8863       Suc. Belenes     6       1     1     1   NA     2
## 8864       Suc. Belenes     4      NA    NA     1   NA     1
## 8865       Suc. Belenes     0       1    NA    NA    0     0
## 8866       Suc. Belenes     2       3    NA     1    1     1
## 8867       Suc. Belenes     3       8     8     6    8     6
## 8868       Suc. Belenes    NA      NA    NA     4    4    NA
## 8869       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8870       Suc. Belenes    11      NA     4    NA   NA    NA
## 8871       Suc. Belenes     3       3    NA    NA    4     3
## 8872       Suc. Belenes    NA       0    NA     0    0    NA
## 8873       Suc. Belenes     6       4     4     2    2     2
## 8874       Suc. Belenes     3       3     3     3    3     3
## 8875       Suc. Belenes    NA      NA    NA    NA   NA     6
## 8876       Suc. Belenes     6       3    23     6   17     6
## 8877       Suc. Belenes    NA       4    NA     7    7    NA
## 8878       Suc. Belenes    NA       0    NA    NA   NA    NA
## 8879       Suc. Belenes     0       0     0     0   NA     1
## 8880       Suc. Belenes     6       1     9     1   NA     4
## 8881       Suc. Belenes     4       3     3     4    4     5
## 8882       Suc. Belenes     0       1    NA    NA    0     0
## 8883       Suc. Belenes    NA       0    NA     0    0    NA
## 8884       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8885       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8886       Suc. Belenes     6       8     5     4    2     8
## 8887       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8888       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8889       Suc. Belenes     3      NA     6     8    3     6
## 8890       Suc. Belenes     3      NA     8    NA    3     3
## 8891       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8892       Suc. Belenes    42      44     4     2   38    21
## 8893       Suc. Belenes    32      35    13    44   51    25
## 8894       Suc. Belenes   123     141    NA    NA   NA    42
## 8895       Suc. Belenes    13      NA    NA    NA    5     3
## 8896       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8897       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8898       Suc. Belenes     2       4     5     7    7     4
## 8899       Suc. Belenes     2       3     3     5    6     3
## 8900       Suc. Belenes     0      NA    NA    NA   NA    NA
## 8901       Suc. Belenes    NA      NA    NA     0    0    NA
## 8902       Suc. Belenes    NA      NA     2    NA   NA    NA
## 8903       Suc. Belenes     1      NA    NA     1    1     1
## 8904       Suc. Belenes     1       1     2     3    1     1
## 8905       Suc. Belenes    NA      NA    NA    NA   NA     1
## 8906       Suc. Belenes     4       2     2     3    2    NA
## 8907       Suc. Belenes    NA      NA    NA    NA    6     2
## 8908       Suc. Belenes     2       1     1     1    1     1
## 8909       Suc. Belenes     3       3    NA     6    6     3
## 8910       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8911       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8912       Suc. Belenes    NA       0    NA     0    0    NA
## 8913       Suc. Belenes     1      NA     1     1    1     1
## 8914       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8915       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8916       Suc. Belenes     2       2     2     2    6     2
## 8917       Suc. Belenes     6       3     6     6   11     3
## 8918       Suc. Belenes     4       6     2     8    8     8
## 8919       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8920       Suc. Belenes    NA      NA    NA     1   NA    NA
## 8921       Suc. Belenes    NA       2    NA     2   NA     2
## 8922       Suc. Belenes     2      NA    NA     2   NA    NA
## 8923       Suc. Belenes    21      25    19    40   42    17
## 8924       Suc. Belenes    24      48    32    NA   26    24
## 8925       Suc. Belenes    16      19     6    16   32    57
## 8926       Suc. Belenes     3       3    10     6    6     6
## 8927       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8928       Suc. Belenes     8       3    12    20    2     5
## 8929       Suc. Belenes     2      NA    NA     2   NA    NA
## 8930       Suc. Belenes    20      20    17    37   20    11
## 8931       Suc. Belenes    21     159    85    85  254    63
## 8932       Suc. Belenes     4       4    53     7   81     4
## 8933       Suc. Belenes    32      32    38    16    6    25
## 8934       Suc. Belenes    25      15     4     4   NA     6
## 8935       Suc. Belenes    51      76    91    76  114    78
## 8936       Suc. Belenes    76      87    59   171   87    95
## 8937       Suc. Belenes     8      10     5     5    3     3
## 8938       Suc. Belenes     6       6     6     3    3    NA
## 8939       Suc. Belenes     2       2    NA     1    3     1
## 8940       Suc. Belenes    NA       2     5     3    8     3
## 8941       Suc. Belenes     2       4     6     6   10     4
## 8942       Suc. Belenes     2       2     2     3    3     3
## 8943       Suc. Belenes    NA      NA     1    NA   NA    NA
## 8944       Suc. Belenes     1       1     1     2    2     1
## 8945       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8946       Suc. Belenes    NA       1     3     3    3     1
## 8947       Suc. Belenes     5       0     0     0    0     0
## 8948       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8949       Suc. Belenes     3       7     7     8   12     3
## 8950       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8951       Suc. Belenes    NA       2     2    NA    2    NA
## 8952       Suc. Belenes     0      NA    NA     0   NA    NA
## 8953       Suc. Belenes     1       2     3     3    4     5
## 8954       Suc. Belenes     0       0     0     0    0     0
## 8955       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8956       Suc. Belenes     6      NA    NA     2   NA     2
## 8957       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8958       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8959       Suc. Belenes    NA       1    NA    NA   NA    NA
## 8960       Suc. Belenes     4      18    11    11   15     4
## 8961       Suc. Belenes    NA      NA    NA     0    0    NA
## 8962       Suc. Belenes    NA      NA    NA     1    1     0
## 8963       Suc. Belenes     2       1     1     1    2     2
## 8964       Suc. Belenes     3       3     3     3    3     3
## 8965       Suc. Belenes    NA      NA    NA     0    0     0
## 8966       Suc. Belenes    NA       0    NA    NA    0    NA
## 8967       Suc. Belenes     2       2    NA     2    4     4
## 8968       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8969       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8970       Suc. Belenes     3       1    NA    NA   NA     3
## 8971       Suc. Belenes     4       7    11     7    8    12
## 8972       Suc. Belenes    NA      NA    NA     0    0    NA
## 8973       Suc. Belenes    NA       0     0     0   NA     1
## 8974       Suc. Belenes     2       1     1     1    2     2
## 8975       Suc. Belenes     3       5     3     3    3    NA
## 8976       Suc. Belenes    NA      NA    NA     0    0     0
## 8977       Suc. Belenes    NA       0    NA    NA    0    NA
## 8978       Suc. Belenes     2      NA    NA    NA   NA     2
## 8979       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8980       Suc. Belenes    NA       1    NA    NA    3    NA
## 8981       Suc. Belenes     4      NA     4     7    8     4
## 8982       Suc. Belenes    NA      NA    NA     0    0    NA
## 8983       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8984       Suc. Belenes     2       1     1     1    2     2
## 8985       Suc. Belenes    NA      NA    NA     0    0     0
## 8986       Suc. Belenes     3      NA    NA     3    1     2
## 8987       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8988       Suc. Belenes    NA      NA    NA    NA    3    NA
## 8989       Suc. Belenes     4       4     4    NA    4    NA
## 8990       Suc. Belenes    NA       0     0     0    0     0
## 8991       Suc. Belenes     3       1     4     3    3     4
## 8992       Suc. Belenes    NA       0    NA    NA    0    NA
## 8993       Suc. Belenes     4       6     4     6    2     2
## 8994       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8995       Suc. Belenes    NA      NA    NA    NA   NA     2
## 8996       Suc. Belenes    NA      NA    NA     2   NA    NA
## 8997       Suc. Belenes    NA       1     3     3   NA    NA
## 8998       Suc. Belenes     4       7     4    14   18     4
## 8999       Suc. Belenes    NA      NA    NA     0    0    NA
## 9000       Suc. Belenes     0       1     1     0   NA     0
## 9001       Suc. Belenes     2       1     1     1    2     2
## 9002       Suc. Belenes     5       8     3     8    5     5
## 9003       Suc. Belenes    NA      NA    NA     0    0     0
## 9004       Suc. Belenes    NA       0    NA    NA    0    NA
## 9005       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9006       Suc. Belenes    NA      NA     3     1    4     1
## 9007       Suc. Belenes    NA      NA    NA     0   NA    NA
## 9008       Suc. Belenes    14      11    14     8   17     8
## 9009       Suc. Belenes    76     152   110    NA  116    59
## 9010       Suc. Belenes    48      82    89    35   79    57
## 9011       Suc. Belenes     8      30    NA    NA    5    13
## 9012       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9013       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9014       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9015       Suc. Belenes     3       1     2     3    3     2
## 9016       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9017       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9018       Suc. Belenes     2      NA    NA    NA   NA    NA
## 9019       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9020       Suc. Belenes    NA       5     3    NA    2     8
## 9021       Suc. Belenes     6       4     6     8    6     4
## 9022       Suc. Belenes     3       8     8    14   11    11
## 9023       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9024       Suc. Belenes     2       2    NA     3   NA     2
## 9025       Suc. Belenes    15       8    19    21   17    19
## 9026       Suc. Belenes    NA       2     3     2    4     3
## 9027       Suc. Belenes     2       2     3     3    3     3
## 9028       Suc. Belenes     2      NA     2     4    4     2
## 9029       Suc. Belenes     2      NA     4     4    4     4
## 9030       Suc. Belenes    44      30    27    36   32    36
## 9031       Suc. Belenes     3      NA    NA    NA   NA    NA
## 9032       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9033       Suc. Belenes    NA      10    NA     3    3    NA
## 9034       Suc. Belenes     3      NA    NA    NA   NA    NA
## 9035       Suc. Belenes    51      20    45    39   37    37
## 9036       Suc. Belenes    67      53    60    85   81    70
## 9037       Suc. Belenes    14      14    NA    NA   NA    NA
## 9038       Suc. Belenes    22      22    20    25   20    17
## 9039       Suc. Belenes   154     125   135   144  139   137
## 9040       Suc. Belenes    30      34    36    34   36    42
## 9041       Suc. Belenes    13      10    14    15   11    12
## 9042       Suc. Belenes    23      18    15    27   20    21
## 9043       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9044       Suc. Belenes    10      NA     5     7   15    10
## 9045       Suc. Belenes    23      12     5    16   12     8
## 9046       Suc. Belenes     6      NA    NA    NA   NA    NA
## 9047       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9048       Suc. Belenes    NA       2    NA    NA    2    NA
## 9049       Suc. Belenes    17      12    20    17   20    11
## 9050       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9051       Suc. Belenes     8       8     6    15    8     6
## 9052       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9053       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9054       Suc. Belenes    NA      NA     2     2    2     4
## 9055       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9056       Suc. Belenes    NA       4     4     4    4     4
## 9057       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9058       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9059       Suc. Belenes     5       2     4     6    6     5
## 9060       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9061       Suc. Belenes     4       7     7     4    7     7
## 9062       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9063       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9064       Suc. Belenes     5       2     3     5    4     4
## 9065       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9066       Suc. Belenes    NA      NA     4     4    4    NA
## 9067       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9068       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9069       Suc. Belenes     4       3     3     4    6     6
## 9070       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9071       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9072       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9073       Suc. Belenes     2       2     4     4    6     8
## 9074       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9075       Suc. Belenes     4       4    11     7    7    11
## 9076       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9077       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9078       Suc. Belenes     7       4     6     8    6     8
## 9079       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9080       Suc. Belenes    NA       6     3     9   10     5
## 9081       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9082       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9083       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9084       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9085       Suc. Belenes    15       8    15    17   15    19
## 9086       Suc. Belenes    13      29    19    41   35    29
## 9087       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9088       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9089       Suc. Belenes    NA       8     8     8    5     8
## 9090       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9091       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9092       Suc. Belenes     1       2     0     1    2    NA
## 9093       Suc. Belenes    21      NA     4    NA    2     2
## 9094       Suc. Belenes    NA       3     3     2   NA    NA
## 9095       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9096       Suc. Belenes    NA      NA     1     1    1     1
## 9097       Suc. Belenes     0       0     1    NA    1     0
## 9098       Suc. Belenes     2       1     1     3    1     1
## 9099       Suc. Belenes     6       5     5    10   12     6
## 9100       Suc. Belenes    NA      NA     1     0    0     0
## 9101       Suc. Belenes     2       1     1     2    3     1
## 9102       Suc. Belenes     0       2    NA    NA   NA    NA
## 9103       Suc. Belenes     2       1     2     1    1     1
## 9104       Suc. Belenes     3       6     8     6   11    NA
## 9105       Suc. Belenes     0       0     0     0   NA    NA
## 9106       Suc. Belenes     1      NA     1    NA    2     2
## 9107       Suc. Belenes     2      NA     1     1    1     1
## 9108       Suc. Belenes    NA       2     2     2    2    NA
## 9109       Suc. Belenes     2       2     2     4    2     2
## 9110       Suc. Belenes    NA      NA    NA     3   NA    NA
## 9111       Suc. Belenes    14      NA    NA     7    7     7
## 9112       Suc. Belenes    NA      NA     2    NA   NA    NA
## 9113       Suc. Belenes    11      11     4     8    6    11
## 9114       Suc. Belenes    NA       1     1     2    1     1
## 9115       Suc. Belenes     2       2     4     2    2     2
## 9116       Suc. Belenes     4       2     2     4    2     2
## 9117       Suc. Belenes    NA      NA    NA     1   NA     1
## 9118       Suc. Belenes     2      27    27    25    4    30
## 9119       Suc. Belenes    NA      29    26     3   18    37
## 9120       Suc. Belenes    NA      NA     3    NA   NA    10
## 9121       Suc. Belenes     3       3     6    19    3     3
## 9122       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9123       Suc. Belenes     8      47    18    20   23    24
## 9124       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9125       Suc. Belenes    NA      NA    NA    NA    6    NA
## 9126       Suc. Belenes    63     155    70   176  123   102
## 9127       Suc. Belenes     4      46    28    42    4    85
## 9128       Suc. Belenes    13      59    23    25   30    36
## 9129       Suc. Belenes     8     139    80    76   59    70
## 9130       Suc. Belenes   108      89    57    61  323    93
## 9131       Suc. Belenes     6       4     6     7    6     4
## 9132       Suc. Belenes     9       6    11     9   11     5
## 9133       Suc. Belenes     6       8    12     8    8    12
## 9134       Suc. Belenes     6       6     8     4    6     7
## 9135       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9136       Suc. Belenes     5       1     3     2    6     8
## 9137       Suc. Belenes     3      NA    NA     1    1    NA
## 9138       Suc. Belenes    15      NA     1     4    8     6
## 9139       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9140       Suc. Belenes     2       1     4     2    0     1
## 9141       Suc. Belenes     2       3     2     2    3     3
## 9142       Suc. Belenes     3       5    10     4    8    11
## 9143       Suc. Belenes     1       1     2     1    1    NA
## 9144       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9145       Suc. Belenes    NA      NA     2     2    4    NA
## 9146       Suc. Belenes     0       3     1     0    1     1
## 9147       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9148       Suc. Belenes     0       1     1     1    1     1
## 9149       Suc. Belenes     1       1    NA    NA   NA     1
## 9150       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9151       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9152       Suc. Belenes     2       4     4     6    2     4
## 9153       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9154       Suc. Belenes    NA       3    NA     8    6    NA
## 9155       Suc. Belenes     7      11     4     7    4     9
## 9156       Suc. Belenes     0       0     1    NA    1     0
## 9157       Suc. Belenes     3       4     7     3    3     2
## 9158       Suc. Belenes     3       2     8     5    5     1
## 9159       Suc. Belenes     4       4     8     5    4     3
## 9160       Suc. Belenes     0      NA    NA     0    1     0
## 9161       Suc. Belenes    NA       0    NA     0    1     0
## 9162       Suc. Belenes     6       4     6     6    4     6
## 9163       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9164       Suc. Belenes    NA      NA     3     8    3     3
## 9165       Suc. Belenes     4      11     4     4    4     5
## 9166       Suc. Belenes     0       0     0    NA    1     0
## 9167       Suc. Belenes     2       3     4     2    2     2
## 9168       Suc. Belenes     3       2     2     5    5     1
## 9169       Suc. Belenes     1       4     7     5    6     4
## 9170       Suc. Belenes     0      NA    NA     0    1     0
## 9171       Suc. Belenes    NA       0    NA     0    1     0
## 9172       Suc. Belenes     2       2     4     4    2     2
## 9173       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9174       Suc. Belenes    NA      NA    NA    NA    3    NA
## 9175       Suc. Belenes    NA       4    NA    NA   NA     5
## 9176       Suc. Belenes     0       0     1    NA    1     0
## 9177       Suc. Belenes     2       3     4     1    1     1
## 9178       Suc. Belenes     3       2     2     5    5     1
## 9179       Suc. Belenes     1       3     6     2    4     2
## 9180       Suc. Belenes     0      NA    NA     0    1     0
## 9181       Suc. Belenes     2       2     4     1   NA     1
## 9182       Suc. Belenes     3       6    NA     3    6    NA
## 9183       Suc. Belenes     4      11    NA    NA    4    NA
## 9184       Suc. Belenes    NA       2     1    NA    0    NA
## 9185       Suc. Belenes    NA      NA     6    NA   NA    NA
## 9186       Suc. Belenes     1       1    NA     4    3     1
## 9187       Suc. Belenes    NA       0    NA     0    1     0
## 9188       Suc. Belenes     4       8     4     6    6     8
## 9189       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9190       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9191       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9192       Suc. Belenes    NA       3    NA     6   11    NA
## 9193       Suc. Belenes     7      11    11     4    4     9
## 9194       Suc. Belenes     0       0     1    NA    1     0
## 9195       Suc. Belenes     3       2     4     4   NA     2
## 9196       Suc. Belenes     3       2    18     7    5     1
## 9197       Suc. Belenes     4       9    13     6   10     5
## 9198       Suc. Belenes     0      NA    NA     0    1     0
## 9199       Suc. Belenes    NA       0    NA     0    1     0
## 9200       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9201       Suc. Belenes     1       7     3     4    3     5
## 9202       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9203       Suc. Belenes    NA      NA    NA     0    0    NA
## 9204       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9205       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9206       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9207       Suc. Belenes     2      NA    NA    NA   NA     4
## 9208       Suc. Belenes    NA      NA    NA    NA   NA    13
## 9209       Suc. Belenes     4      NA    NA    NA   NA    NA
## 9210       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9211       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9212       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9213       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9214       Suc. Belenes    NA      NA    NA    NA   NA    10
## 9215       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9216       Suc. Belenes     0      NA    NA    NA    0     1
## 9217       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9218       Suc. Belenes     2      NA    NA    NA   NA    NA
## 9219       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9220       Suc. Belenes     2      NA    NA    NA   NA     4
## 9221       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9222       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9223       Suc. Belenes     3      NA    NA    NA   NA    NA
## 9224       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9225       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9226       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9227       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9228       Suc. Belenes     6      NA    NA    NA   NA    19
## 9229       Suc. Belenes    NA      NA    NA    NA   NA    20
## 9230       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9231       Suc. Belenes    NA      NA    NA    NA   NA    19
## 9232       Suc. Belenes    NA      NA    NA    NA    1     2
## 9233       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9234       Suc. Belenes     2      NA    NA    NA   NA     2
## 9235       Suc. Belenes    NA      NA    NA    NA   NA     6
## 9236       Suc. Belenes    NA      NA    NA    NA   NA     8
## 9237       Suc. Belenes     6      NA    NA    NA    6    59
## 9238       Suc. Belenes    NA      NA    NA    NA    5    11
## 9239       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9240       Suc. Belenes     3       3    10     3    3     3
## 9241       Suc. Belenes     2       2    NA    NA    2     2
## 9242       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9243       Suc. Belenes     6      NA    NA    NA   NA    82
## 9244       Suc. Belenes     7      NA    NA    NA   NA    99
## 9245       Suc. Belenes     4       4    14    NA   NA    46
## 9246       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9247       Suc. Belenes    NA       2     2    NA   NA    46
## 9248       Suc. Belenes     4       6     4    NA   NA    49
## 9249       Suc. Belenes    NA      NA    NA    NA    1     2
## 9250       Suc. Belenes     2      NA    NA    NA   NA     9
## 9251       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9252       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9253       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9254       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9255       Suc. Belenes     4      NA    NA    NA   NA     0
## 9256       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9257       Suc. Belenes     2      NA    NA    NA   NA    NA
## 9258       Suc. Belenes     2      NA    NA    NA   NA    NA
## 9259       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9260       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9261       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9262       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9263       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9264       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9265       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9266       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9267       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9268       Suc. Belenes    11      NA    NA    NA   NA    NA
## 9269       Suc. Belenes     0      NA    NA    NA    0     1
## 9270       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9271       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9272       Suc. Belenes     3      NA    NA    NA   NA     2
## 9273       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9274       Suc. Belenes     4      NA    NA    NA   NA    NA
## 9275       Suc. Belenes     0      NA    NA    NA    0     1
## 9276       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9277       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9278       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9279       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9280       Suc. Belenes    11      NA    NA    NA   NA    NA
## 9281       Suc. Belenes     0      NA    NA    NA    0     1
## 9282       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9283       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9284       Suc. Belenes     3      NA    NA    NA   NA     1
## 9285       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9286       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9287       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9288       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9289       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9290       Suc. Belenes     3      NA    NA    NA   NA     3
## 9291       Suc. Belenes    11      NA    NA    NA   NA    NA
## 9292       Suc. Belenes     0      NA    NA    NA    0     1
## 9293       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9294       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9295       Suc. Belenes     3      NA    NA    NA   NA     3
## 9296       Suc. Belenes     3      NA    NA    NA   NA    NA
## 9297       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9298       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9299       Suc. Belenes    15       6    13    15   13    11
## 9300       Suc. Belenes    16       3    19    13   13    13
## 9301       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9302       Suc. Belenes    15       5    15    13   13    10
## 9303       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9304       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9305       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9306       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9307       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9308       Suc. Belenes     1       3     6     5    4     6
## 9309       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9310       Suc. Belenes     1       1     1     1    1     1
## 9311       Suc. Belenes    NA      NA    NA    NA    2    NA
## 9312       Suc. Belenes     2       1     2     1    1     1
## 9313       Suc. Belenes     3       6    11     6   11     8
## 9314       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9315       Suc. Belenes    NA       0     0    NA   NA     0
## 9316       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9317       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9318       Suc. Belenes    NA       1    NA     1    1     1
## 9319       Suc. Belenes     4       2     2     2   NA     2
## 9320       Suc. Belenes     6       4    11    11    8    15
## 9321       Suc. Belenes    11      14    14    20   17    17
## 9322       Suc. Belenes    NA      NA     4    NA   NA    NA
## 9323       Suc. Belenes     8      13    15     8   11    11
## 9324       Suc. Belenes     4       1     4     5    4     3
## 9325       Suc. Belenes     6       4     6     2    6     6
## 9326       Suc. Belenes     4       6     6     4    6     6
## 9327       Suc. Belenes     1       2     2     1    1    NA
## 9328       Suc. Belenes    34      32    38    38   40    40
## 9329       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9330       Suc. Belenes     3       3     6     3    3     3
## 9331       Suc. Belenes    17      15    11    21   17    12
## 9332       Suc. Belenes    NA      NA    NA     4   NA    NA
## 9333       Suc. Belenes    42      28    35    49   49    60
## 9334       Suc. Belenes   130     116   141   176  148   151
## 9335       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9336       Suc. Belenes    27      19    17    30   25    32
## 9337       Suc. Belenes    61      44    51    57   51    61
## 9338       Suc. Belenes     9      11     8     9   13    10
## 9339       Suc. Belenes     3       2     2    NA   NA     3
## 9340       Suc. Belenes    NA      NA    NA     4    4    NA
## 9341       Suc. Belenes    NA      NA     1     2   NA    NA
## 9342       Suc. Belenes     1       1     1     1    1     1
## 9343       Suc. Belenes    NA      NA    NA     1    1    NA
## 9344       Suc. Belenes    NA      NA    NA     1   NA     1
## 9345       Suc. Belenes     1      NA     4    NA   NA    NA
## 9346       Suc. Belenes     2       0     0     0    0     0
## 9347       Suc. Belenes    NA      NA    NA    NA    0    NA
## 9348       Suc. Belenes     4       6     4     5    6     9
## 9349       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9350       Suc. Belenes    NA      NA    NA     1   NA    NA
## 9351       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9352       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9353       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9354       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9355       Suc. Belenes     0       0     0     1    0     1
## 9356       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9357       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9358       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9359       Suc. Belenes     4      NA     1     2    2     1
## 9360       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9361       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9362       Suc. Belenes     1       1     1     2    1     1
## 9363       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9364       Suc. Belenes    NA       0    NA     1    0     0
## 9365       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9366       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9367       Suc. Belenes     1      NA     1     2    2     1
## 9368       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9369       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9370       Suc. Belenes     1       1     1     2    1     1
## 9371       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9372       Suc. Belenes    NA       0    NA     1    0     0
## 9373       Suc. Belenes     1      NA     1     5    2     1
## 9374       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9375       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9376       Suc. Belenes     1       1     1     2    1     1
## 9377       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9378       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9379       Suc. Belenes    11       8    11     8    6    14
## 9380       Suc. Belenes     2       2    NA    NA    2    NA
## 9381       Suc. Belenes    NA       0    NA     1    0     0
## 9382       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9383       Suc. Belenes     1       3     4     2    2     4
## 9384       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9385       Suc. Belenes     1       0     0     0    0     0
## 9386       Suc. Belenes     1       1     1     2    3     1
## 9387       Suc. Belenes     1      10    NA    NA   NA    NA
## 9388       Suc. Belenes    NA       0    NA     1    0     0
## 9389       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9390       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9391       Suc. Belenes     6       5    11     7    9    11
## 9392       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9393       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9394       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9395       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9396       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9397       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9398       Suc. Belenes    11       4     2     2   NA     4
## 9399       Suc. Belenes    13       6     3     3   NA     6
## 9400       Suc. Belenes    NA      NA    NA     1   NA    NA
## 9401       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9402       Suc. Belenes    NA       2    NA    NA   NA    NA
## 9403       Suc. Belenes     3       3    NA    NA   NA     3
## 9404       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9405       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9406       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9407       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9408       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9409       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9410       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9411       Suc. Belenes     1       3     1     1    3     3
## 9412       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9413       Suc. Belenes     1       2     1    NA   NA     1
## 9414       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9415       Suc. Belenes    NA       2     2     1   NA     1
## 9416       Suc. Belenes     3      NA     3    NA   NA    NA
## 9417       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9418       Suc. Belenes    NA       0    NA    NA   NA     0
## 9419       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9420       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9421       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9422       Suc. Belenes    NA      NA     4     2    2    NA
## 9423       Suc. Belenes    NA      NA     1     1   NA    NA
## 9424       Suc. Belenes     8       4    11    13   11    11
## 9425       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9426       Suc. Belenes    NA       3    NA    NA   NA    NA
## 9427       Suc. Belenes     6       8    11    17   11    11
## 9428       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9429       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9430       Suc. Belenes     6       6     8    13   13    21
## 9431       Suc. Belenes     1      NA     1     2   NA    NA
## 9432       Suc. Belenes    NA       2    NA    NA   NA    NA
## 9433       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9434       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9435       Suc. Belenes     1      NA    NA     1    2    NA
## 9436       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9437       Suc. Belenes    34      34    40    79   55    34
## 9438       Suc. Belenes    NA      NA    NA    NA   NA    54
## 9439       Suc. Belenes    57      48    48    60   48   114
## 9440       Suc. Belenes     5       5    11     9   12     6
## 9441       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9442       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9443       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9444       Suc. Belenes    74      53    49   159  180   183
## 9445       Suc. Belenes   106      92    67   194  247   377
## 9446       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9447       Suc. Belenes    15      11    11    36   30    34
## 9448       Suc. Belenes    76      72    72   150  165   203
## 9449       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9450       Suc. Belenes     2       3     5     8    9     4
## 9451       Suc. Belenes     2       2     5    12    9     5
## 9452       Suc. Belenes    NA       4     4    14   16     8
## 9453       Suc. Belenes     3       3     5     3    7     5
## 9454       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9455       Suc. Belenes    NA       1     1     1   NA     1
## 9456       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9457       Suc. Belenes     1       1    NA    NA   NA    NA
## 9458       Suc. Belenes     0       0     1    NA   NA     0
## 9459       Suc. Belenes     2       2     1     1    1     3
## 9460       Suc. Belenes     2       3     4     3    3     8
## 9461       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9462       Suc. Belenes     4      NA    NA     2   NA     4
## 9463       Suc. Belenes     1       0    NA     1   NA     1
## 9464       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9465       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9466       Suc. Belenes     1       1     0    NA   NA     1
## 9467       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9468       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9469       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9470       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9471       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9472       Suc. Belenes    NA      NA     3    NA    5    12
## 9473       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9474       Suc. Belenes    NA      NA    NA    NA   NA     4
## 9475       Suc. Belenes    NA      NA    NA     2   NA     4
## 9476       Suc. Belenes    NA       1    NA     0   NA    NA
## 9477       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9478       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9479       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9480       Suc. Belenes    NA      NA    NA    NA    2    12
## 9481       Suc. Belenes    NA      NA    NA     4   NA    NA
## 9482       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9483       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9484       Suc. Belenes    NA      NA    NA     2   NA     6
## 9485       Suc. Belenes    NA       1    NA     0   NA    NA
## 9486       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9487       Suc. Belenes    NA      NA    NA    NA    2     9
## 9488       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9489       Suc. Belenes    NA      NA     0    NA   NA     2
## 9490       Suc. Belenes    NA      NA    NA    NA   NA     4
## 9491       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9492       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9493       Suc. Belenes    NA      NA     3    NA    3     3
## 9494       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9495       Suc. Belenes    NA      NA    NA     2    4    NA
## 9496       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9497       Suc. Belenes    NA       1    NA     0   NA    NA
## 9498       Suc. Belenes    NA       2    NA    NA   NA    NA
## 9499       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9500       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9501       Suc. Belenes    NA      NA     3     3   11    15
## 9502       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9503       Suc. Belenes    NA      NA    NA     0   NA     3
## 9504       Suc. Belenes    NA      NA     2     2   NA     8
## 9505       Suc. Belenes    NA       1    NA     0   NA    NA
## 9506       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9507       Suc. Belenes     2       1     2     1    1     1
## 9508       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9509       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9510       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9511       Suc. Belenes     4       6     6     8    4     6
## 9512       Suc. Belenes     6       6     3    13    6    10
## 9513       Suc. Belenes     3      NA    NA     3    3     3
## 9514       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9515       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9516       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9517       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9518       Suc. Belenes     2       2     7     4    3     4
## 9519       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9520       Suc. Belenes     1       2     1     2    1     1
## 9521       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9522       Suc. Belenes    NA       1     2     1    1     1
## 9523       Suc. Belenes    NA      NA     3     6   NA     3
## 9524       Suc. Belenes    NA      NA    NA     1   NA    NA
## 9525       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9526       Suc. Belenes    NA       1    NA     1   NA    NA
## 9527       Suc. Belenes     2       2     2     2    2    NA
## 9528       Suc. Belenes    11      19    19    21   17    17
## 9529       Suc. Belenes    14       8     6     6    8     6
## 9530       Suc. Belenes    NA       2     2    NA    2    NA
## 9531       Suc. Belenes    17       8    17    13   13    15
## 9532       Suc. Belenes     1      NA     3     3    1     2
## 9533       Suc. Belenes    NA       2     2    NA    2     2
## 9534       Suc. Belenes    NA      NA    NA     4    2    NA
## 9535       Suc. Belenes     3      NA     3    NA    6     3
## 9536       Suc. Belenes    NA      NA    NA    NA    2    NA
## 9537       Suc. Belenes    11      13     6    13   13    15
## 9538       Suc. Belenes    NA      NA     3    NA   NA    NA
## 9539       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9540       Suc. Belenes    16      29    22    19   22    25
## 9541       Suc. Belenes     6       8     8    11    8     6
## 9542       Suc. Belenes     6       8     3     8    6     6
## 9543       Suc. Belenes     6       3    NA     6    6     8
## 9544       Suc. Belenes    11      14    18    11   14    14
## 9545       Suc. Belenes   113      92   109   113   88    92
## 9546       Suc. Belenes     4       4     4     4    8     8
## 9547       Suc. Belenes    13       6     8    13   13    11
## 9548       Suc. Belenes    61      68    74    72   74    57
## 9549       Suc. Belenes     2       2     2     4    2     2
## 9550       Suc. Belenes     2       3     5     5    5     2
## 9551       Suc. Belenes     1       3     3     2    2     2
## 9552       Suc. Belenes    NA       1     1     1    1     1
## 9553       Suc. Belenes    NA      NA    NA     1    1     1
## 9554       Suc. Belenes    NA       1    NA     1   NA    NA
## 9555       Suc. Belenes     1       1    NA     2   NA     1
## 9556       Suc. Belenes     1      NA    NA     1    0     0
## 9557       Suc. Belenes     2      NA     1     1    1     1
## 9558       Suc. Belenes     2       0     2     0    1     0
## 9559       Suc. Belenes     1       0     1     1    2    NA
## 9560       Suc. Belenes     3       2    12     5    4     3
## 9561       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9562       Suc. Belenes    NA      NA    NA     2   NA     2
## 9563       Suc. Belenes     0       0    NA     1    0    NA
## 9564       Suc. Belenes     1       1     1     1    1     1
## 9565       Suc. Belenes     1       1     1     2    1     2
## 9566       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9567       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9568       Suc. Belenes     2       3    NA     2    1     2
## 9569       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9570       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9571       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9572       Suc. Belenes     1       1     1     1    1    NA
## 9573       Suc. Belenes     1       1     1     1    1     1
## 9574       Suc. Belenes     1       3     1     1    2     1
## 9575       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9576       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9577       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9578       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9579       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9580       Suc. Belenes    NA       0    NA     0   NA     0
## 9581       Suc. Belenes     1       1     1     1    1     1
## 9582       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9583       Suc. Belenes     2      NA    NA     2    1    NA
## 9584       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9585       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9586       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9587       Suc. Belenes     1       1     1     1    1     1
## 9588       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9589       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9590       Suc. Belenes     3       6     3    NA   NA     3
## 9591       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9592       Suc. Belenes    NA      NA     2    NA    1     2
## 9593       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9594       Suc. Belenes    NA       6     1     3    3     3
## 9595       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9596       Suc. Belenes     0       1     1     1    0     0
## 9597       Suc. Belenes     1       1     1     3    1     1
## 9598       Suc. Belenes     1       4     1     1    2     1
## 9599       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9600       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9601       Suc. Belenes     2       3     2     4    4     2
## 9602       Suc. Belenes     0       0    NA     0   NA    NA
## 9603       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9604       Suc. Belenes    38      21    21    32   63    19
## 9605       Suc. Belenes    98      89    76   111  139   101
## 9606       Suc. Belenes    NA      NA    NA    NA   NA     7
## 9607       Suc. Belenes    18      15    18    48   46    36
## 9608       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9609       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9610       Suc. Belenes     3       5     3     3    5    NA
## 9611       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9612       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9613       Suc. Belenes    NA       3    NA    NA   NA    NA
## 9614       Suc. Belenes     2      NA    NA    NA   NA     2
## 9615       Suc. Belenes     2       2    NA    NA   NA    NA
## 9616       Suc. Belenes    51      36    27    42   46    55
## 9617       Suc. Belenes    38      38    44    57   38    42
## 9618       Suc. Belenes    NA      14     8     8    3     6
## 9619       Suc. Belenes    23      14    17    28   23    25
## 9620       Suc. Belenes     3       2     5     3    2     7
## 9621       Suc. Belenes    NA      NA    NA    38   21    91
## 9622       Suc. Belenes     8       6     3     3    3     7
## 9623       Suc. Belenes     8       8     6     8   23     8
## 9624       Suc. Belenes     4      NA    NA     6   NA    NA
## 9625       Suc. Belenes    53      59    42    49  106    74
## 9626       Suc. Belenes   159      66   124   122  108   106
## 9627       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9628       Suc. Belenes   444     460   396   491  380   254
## 9629       Suc. Belenes    60      68   120   122  105    53
## 9630       Suc. Belenes   188     167   189   293  390   360
## 9631       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9632       Suc. Belenes   113      68    28    28   56    85
## 9633       Suc. Belenes   106     247   106   282  387   159
## 9634       Suc. Belenes    NA      NA   704    NA   NA   704
## 9635       Suc. Belenes     2      NA    NA    NA   NA    NA
## 9636       Suc. Belenes   148     180   232   159  127    95
## 9637       Suc. Belenes    NA      NA    NA    NA   NA   146
## 9638       Suc. Belenes    NA      NA    NA    NA   NA   930
## 9639       Suc. Belenes     3       5     4     7    9     9
## 9640       Suc. Belenes     6      12     9    NA    6     6
## 9641       Suc. Belenes    60      50    38    65   60    90
## 9642       Suc. Belenes    32      NA    NA    NA   12    30
## 9643       Suc. Belenes    22      12    NA    26   18    20
## 9644       Suc. Belenes    23       5     5    11    9    15
## 9645       Suc. Belenes    NA      NA    NA     5    6    NA
## 9646       Suc. Belenes     7       9     3     9    9     5
## 9647       Suc. Belenes     6       2    NA     4    2     4
## 9648       Suc. Belenes     3      NA     3    NA    8     3
## 9649       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9650       Suc. Belenes     2       4     2     2   NA     2
## 9651       Suc. Belenes    23      15    20    33   39    41
## 9652       Suc. Belenes     6      NA    NA    NA   NA    NA
## 9653       Suc. Belenes     6       8    NA     6   NA    NA
## 9654       Suc. Belenes    14       7    14     7   14    11
## 9655       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9656       Suc. Belenes    12       2     4     5    7     3
## 9657       Suc. Belenes    74      53    55    42   57    40
## 9658       Suc. Belenes    41       5    54    NA    8    NA
## 9659       Suc. Belenes    NA      NA     2     2   NA    NA
## 9660       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9661       Suc. Belenes    NA       3     3     6   NA     6
## 9662       Suc. Belenes     4       4     7     7   18     4
## 9663       Suc. Belenes     2       2     2     2   NA     3
## 9664       Suc. Belenes    23      20    11    25   13    17
## 9665       Suc. Belenes    46      NA    28    NA    3     3
## 9666       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9667       Suc. Belenes    15      11    20    35   35    38
## 9668       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9669       Suc. Belenes     8       3     3     6   NA    NA
## 9670       Suc. Belenes     7       7     4    21   18    11
## 9671       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9672       Suc. Belenes     3       2     3     2    2     2
## 9673       Suc. Belenes    53      47    42    40   30    40
## 9674       Suc. Belenes    46      NA    28    NA    3     3
## 9675       Suc. Belenes    NA       5     3    NA    3     5
## 9676       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9677       Suc. Belenes    13      NA    11    25   NA    NA
## 9678       Suc. Belenes    NA      NA    23    NA   NA    NA
## 9679       Suc. Belenes     4       2     4     4    2     2
## 9680       Suc. Belenes    24      18    23    35   36    42
## 9681       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9682       Suc. Belenes     8       6     6     6   NA    NA
## 9683       Suc. Belenes    14      11    11     7   21    18
## 9684       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9685       Suc. Belenes     5       5     5     3    5     3
## 9686       Suc. Belenes    76      55    61    74   49    40
## 9687       Suc. Belenes    46      NA    28     3    8     3
## 9688       Suc. Belenes    NA      NA    NA     2    4     3
## 9689       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9690       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9691       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9692       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9693       Suc. Belenes     4      11     4    13    2     4
## 9694       Suc. Belenes    10      13    10    22   10     6
## 9695       Suc. Belenes     5       5     3     5    3     3
## 9696       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9697       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9698       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9699       Suc. Belenes     1       0     1     0    1     0
## 9700       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9701       Suc. Belenes     3       3     2     3    3     5
## 9702       Suc. Belenes     1      NA    NA     1    1     1
## 9703       Suc. Belenes     0      NA    NA    NA   NA    NA
## 9704       Suc. Belenes     2      NA     1     1    1     1
## 9705       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9706       Suc. Belenes    NA      NA    NA     1   NA     1
## 9707       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9708       Suc. Belenes     1       1    NA    NA   NA    NA
## 9709       Suc. Belenes     4       4     2     2    4     2
## 9710       Suc. Belenes    13      13     6    11   15     8
## 9711       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9712       Suc. Belenes    NA       2    NA    NA   NA    NA
## 9713       Suc. Belenes    34      13    34    32   40    24
## 9714       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9715       Suc. Belenes    44      41    54    51   44    38
## 9716       Suc. Belenes     8      11     8    14   15    11
## 9717       Suc. Belenes    NA      NA    NA     1   NA    NA
## 9718       Suc. Belenes    32      35    46    56   53    35
## 9719       Suc. Belenes   155     144   141   176  211   134
## 9720       Suc. Belenes    17      15    13    11   15    15
## 9721       Suc. Belenes    23      17    21    30   23    25
## 9722       Suc. Belenes    89      87    87   118   78    95
## 9723       Suc. Belenes     5       6     5     7    9     5
## 9724       Suc. Belenes     3       3     5     3    5     3
## 9725       Suc. Belenes    10       8    10    14   14    14
## 9726       Suc. Belenes    10       6     6     7    6     6
## 9727       Suc. Belenes     1       1    NA     1    1     1
## 9728       Suc. Belenes    NA      NA    NA     1   NA    NA
## 9729       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9730       Suc. Belenes     1      NA     0     0    0     0
## 9731       Suc. Belenes     3       3     3     3    1     2
## 9732       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9733       Suc. Belenes     0      NA     0     0    0     0
## 9734       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9735       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9736       Suc. Belenes     3      NA    NA    NA   NA     1
## 9737       Suc. Belenes     2       0     1     0    1     0
## 9738       Suc. Belenes     1       1     2     2    0     2
## 9739       Suc. Belenes    NA      NA    NA     2   NA    NA
## 9740       Suc. Belenes     2       4     1     4    2     5
## 9741       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9742       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9743       Suc. Belenes     0       0     1     0    0     0
## 9744       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9745       Suc. Belenes    NA      NA     1    NA    4     1
## 9746       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9747       Suc. Belenes    NA      NA    NA     3   NA     1
## 9748       Suc. Belenes     1       0     1     0    1     2
## 9749       Suc. Belenes     3       3     2     2    2     2
## 9750       Suc. Belenes     4       4     3     2    6     3
## 9751       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9752       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9753       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9754       Suc. Belenes    NA       3     3    NA    3     1
## 9755       Suc. Belenes     1       0     1     0    1     0
## 9756       Suc. Belenes     2       2     2     1    2     3
## 9757       Suc. Belenes     6       4     5     4    6     1
## 9758       Suc. Belenes    NA       5    NA    NA   NA    NA
## 9759       Suc. Belenes    NA       0    NA    NA   NA    NA
## 9760       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9761       Suc. Belenes     1      NA     1     1    3    NA
## 9762       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9763       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9764       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9765       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9766       Suc. Belenes     6      44     2     2    2     4
## 9767       Suc. Belenes    10     101     3     3    3     3
## 9768       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9769       Suc. Belenes     3      56    NA    NA   NA    NA
## 9770       Suc. Belenes     1       0     0     0    0     0
## 9771       Suc. Belenes    NA       2     3    NA    1    NA
## 9772       Suc. Belenes     0      NA    NA     3    4     2
## 9773       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9774       Suc. Belenes     1       3     1    NA    1     1
## 9775       Suc. Belenes    NA      NA    NA     4   NA    NA
## 9776       Suc. Belenes     2       2     1     1    1     1
## 9777       Suc. Belenes    NA      17    NA    NA    8    NA
## 9778       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9779       Suc. Belenes    NA      NA    NA     0   NA    NA
## 9780       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9781       Suc. Belenes     2       4    NA    NA   NA    NA
## 9782       Suc. Belenes    NA      NA    NA     2    2    NA
## 9783       Suc. Belenes     1       1     1    NA    1     1
## 9784       Suc. Belenes     8      11    11     8   15     4
## 9785       Suc. Belenes     6       3     3     6    6     8
## 9786       Suc. Belenes     8       3     8     8    6     6
## 9787       Suc. Belenes     8      NA    NA     6   NA     6
## 9788       Suc. Belenes     2       2     2     2    2     2
## 9789       Suc. Belenes    13      11     6    13   11    32
## 9790       Suc. Belenes     2       2     4     6    7    18
## 9791       Suc. Belenes     6       5     2     5    5     2
## 9792       Suc. Belenes    NA       2     4     2    4     2
## 9793       Suc. Belenes     3       3     6     6    3    NA
## 9794       Suc. Belenes     2      NA     2     4   NA     2
## 9795       Suc. Belenes    32      36    55     4   25    21
## 9796       Suc. Belenes    16      26    16    26   48     3
## 9797       Suc. Belenes    13      13    19    22   44   108
## 9798       Suc. Belenes   149       3   127    92   82    92
## 9799       Suc. Belenes    14      18     6    15   36     2
## 9800       Suc. Belenes    33      12     9    20   35    60
## 9801       Suc. Belenes    20      25    54     6   NA    87
## 9802       Suc. Belenes    25      51     6    28   85     6
## 9803       Suc. Belenes    99     151    81    39  211    49
## 9804       Suc. Belenes   232     278    74    35  416   426
## 9805       Suc. Belenes     2       3     3    NA    2    NA
## 9806       Suc. Belenes    15      17    11    13   13    15
## 9807       Suc. Belenes    11      21     2     6    4    46
## 9808       Suc. Belenes   188     256   108   526   23    13
## 9809       Suc. Belenes    NA      NA    NA     8    3     5
## 9810       Suc. Belenes    15       9     9     9    9     9
## 9811       Suc. Belenes    11      14    20     3   15    34
## 9812       Suc. Belenes     8       6     6     9    9     8
## 9813       Suc. Belenes     8      NA     8     8   10    12
## 9814       Suc. Belenes    11      11     9    10    9    19
## 9815       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9816       Suc. Belenes     2       1     1     1    1     1
## 9817       Suc. Belenes    NA       1    NA     1   NA    NA
## 9818       Suc. Belenes     4       3    NA     3    3     3
## 9819       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9820       Suc. Belenes     4       0     1     0    2     0
## 9821       Suc. Belenes     2       1     1    NA    0    NA
## 9822       Suc. Belenes     4       3    NA     1    4    NA
## 9823       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9824       Suc. Belenes    NA       2     2     2    2     2
## 9825       Suc. Belenes     0       1     0     1    1     1
## 9826       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9827       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9828       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9829       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9830       Suc. Belenes     0       1     0     0    0     2
## 9831       Suc. Belenes     5       5     4     5    5     3
## 9832       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9833       Suc. Belenes     2      NA     4    NA    2     4
## 9834       Suc. Belenes    NA      14    17    NA   14    20
## 9835       Suc. Belenes     1       0     0     0    0     0
## 9836       Suc. Belenes     0       0    NA    NA    0     0
## 9837       Suc. Belenes     6       8     3    25    3     1
## 9838       Suc. Belenes     4       3     1     1    3     1
## 9839       Suc. Belenes    NA       1     0     0    0     0
## 9840       Suc. Belenes    NA      NA    NA     2    2    NA
## 9841       Suc. Belenes     6       8    NA     3    6    11
## 9842       Suc. Belenes     0       0     0     0    0     0
## 9843       Suc. Belenes    NA      NA    NA     0    0    NA
## 9844       Suc. Belenes     2       2     3    NA    1     1
## 9845       Suc. Belenes     2       1    NA     1    2     1
## 9846       Suc. Belenes    NA       1     0     0    0     0
## 9847       Suc. Belenes    NA      NA    NA     2   NA     2
## 9848       Suc. Belenes    11       3     3    NA    6     6
## 9849       Suc. Belenes     1       0     0     0    0     0
## 9850       Suc. Belenes    NA      NA    NA    NA    0    NA
## 9851       Suc. Belenes     6       4     1     8    1     1
## 9852       Suc. Belenes     1      NA     1     1   NA     1
## 9853       Suc. Belenes     1       2     1     2    1     3
## 9854       Suc. Belenes     8       8    11    NA    8    14
## 9855       Suc. Belenes    11       6    NA     2    2    NA
## 9856       Suc. Belenes     1       4     1     1    4     1
## 9857       Suc. Belenes    NA       1     0     0    0     0
## 9858       Suc. Belenes     2       2     2     4    2     4
## 9859       Suc. Belenes    NA      17    17    NA    8     6
## 9860       Suc. Belenes     1       0     0     0    0     0
## 9861       Suc. Belenes     0      NA     0    NA    0    NA
## 9862       Suc. Belenes     6       4     3    27    3     1
## 9863       Suc. Belenes     3      14     1     2    3     1
## 9864       Suc. Belenes    NA       1     0     0    0     0
## 9865       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9866       Suc. Belenes     6      10     6     4    7     4
## 9867       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9868       Suc. Belenes    NA      NA    NA    10   NA    NA
## 9869       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9870       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9871       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9872       Suc. Belenes    NA      NA     4    NA   NA     2
## 9873       Suc. Belenes    NA      NA    NA    NA   NA     3
## 9874       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9875       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9876       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9877       Suc. Belenes    NA      12    NA    NA   NA    NA
## 9878       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9879       Suc. Belenes     1      NA    NA    NA   NA     1
## 9880       Suc. Belenes    NA      NA     2    NA   NA     1
## 9881       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9882       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9883       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9884       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9885       Suc. Belenes    NA      NA    NA    NA    4     4
## 9886       Suc. Belenes    NA      NA     2    NA    2    NA
## 9887       Suc. Belenes     3       3     6    NA   11     6
## 9888       Suc. Belenes    NA      NA    NA    NA    3    NA
## 9889       Suc. Belenes    NA      NA     8     2   30    38
## 9890       Suc. Belenes    NA      NA    NA    NA    2    NA
## 9891       Suc. Belenes    58      NA   185    32  114    NA
## 9892       Suc. Belenes    NA      NA    NA    NA   NA    35
## 9893       Suc. Belenes    NA     181   292   333  285   336
## 9894       Suc. Belenes    NA       2    17    41   48    33
## 9895       Suc. Belenes    50      83    14    NA   33    33
## 9896       Suc. Belenes    NA      NA    NA    60   NA    NA
## 9897       Suc. Belenes    39      NA    60    49  169   120
## 9898       Suc. Belenes   472     497   898   243   NA   838
## 9899       Suc. Belenes    42      NA    30    91  110   216
## 9900       Suc. Belenes   328     372   594   750  636   573
## 9901       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9902       Suc. Belenes    11      NA    18    11   33    22
## 9903       Suc. Belenes    17      NA    NA    NA   17    17
## 9904       Suc. Belenes    12      12    NA    11   14    NA
## 9905       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9906       Suc. Belenes     0       0    NA    NA   NA     0
## 9907       Suc. Belenes    NA      NA    NA    NA    1    NA
## 9908       Suc. Belenes    NA      NA    10    NA    4     7
## 9909       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9910       Suc. Belenes    NA      NA    NA     4    2     2
## 9911       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9912       Suc. Belenes     0      NA    NA    NA   NA     0
## 9913       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9914       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9915       Suc. Belenes    NA      NA    11     4   NA     3
## 9916       Suc. Belenes    NA      NA    NA    NA    0    NA
## 9917       Suc. Belenes    NA       1    13     7   20    11
## 9918       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9919       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9920       Suc. Belenes    NA      NA     6     1   NA    NA
## 9921       Suc. Belenes    NA      NA    NA     4   NA    NA
## 9922       Suc. Belenes    NA      NA    NA    NA    0    NA
## 9923       Suc. Belenes    NA       1     9     3    1    NA
## 9924       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9925       Suc. Belenes    NA      NA     6     1   NA    NA
## 9926       Suc. Belenes    NA      NA    NA    NA    0     0
## 9927       Suc. Belenes    NA       1    11    11    3     6
## 9928       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9929       Suc. Belenes    NA       3     3    NA   NA    NA
## 9930       Suc. Belenes    NA      NA     2     4    2    NA
## 9931       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9932       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9933       Suc. Belenes    NA      NA    17    12   NA     8
## 9934       Suc. Belenes     0       1     0    NA    3    NA
## 9935       Suc. Belenes    NA       1    15    11   12    13
## 9936       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9937       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9938       Suc. Belenes    NA       6    NA    NA    1    NA
## 9939       Suc. Belenes    NA      NA     0    NA   NA    NA
## 9940       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9941       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9942       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9943       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9944       Suc. Belenes    13       4     8     2    4     6
## 9945       Suc. Belenes    19      10    10    22   29    19
## 9946       Suc. Belenes    NA      NA    NA    NA    7    14
## 9947       Suc. Belenes     5      NA    NA    NA   NA    NA
## 9948       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9949       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9950       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9951       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9952       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9953       Suc. Belenes    NA      NA    NA    NA   NA     1
## 9954       Suc. Belenes     2       1     1     3    3     5
## 9955       Suc. Belenes    NA      NA    NA    NA   NA     0
## 9956       Suc. Belenes     1       2     1     2    1     1
## 9957       Suc. Belenes    NA       1    NA    NA   NA    NA
## 9958       Suc. Belenes     2       2     1     1    1     1
## 9959       Suc. Belenes     8      11     8    11    8     8
## 9960       Suc. Belenes    NA      NA     1    NA   NA    NA
## 9961       Suc. Belenes    NA      NA    NA    NA    0     0
## 9962       Suc. Belenes    NA      NA    NA    NA    2    NA
## 9963       Suc. Belenes     1      NA     2    NA   NA     3
## 9964       Suc. Belenes     2      NA    NA     2    2     2
## 9965       Suc. Belenes     2       1     1     2    1     1
## 9966       Suc. Belenes     8       8     6    11    8     8
## 9967       Suc. Belenes     3       3     3     8    8     6
## 9968       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9969       Suc. Belenes     8       8     8     8    8    11
## 9970       Suc. Belenes     1      NA     1     2    2     4
## 9971       Suc. Belenes     2       2    NA     2    1     2
## 9972       Suc. Belenes     6       6     8     4    4     4
## 9973       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9974       Suc. Belenes    NA       4     2     2   NA     4
## 9975       Suc. Belenes     1       1    NA     2    1    NA
## 9976       Suc. Belenes    NA      NA    NA    NA    8     2
## 9977       Suc. Belenes    61      45    53    58   37    34
## 9978       Suc. Belenes    NA      NA    NA    NA   NA    32
## 9979       Suc. Belenes    32      29    22    38   44    60
## 9980       Suc. Belenes    12      12    12    12   12    11
## 9981       Suc. Belenes    28      23    20    34   31    28
## 9982       Suc. Belenes    39      39    34    37   42    45
## 9983       Suc. Belenes    35      53    46    60   56    53
## 9984       Suc. Belenes    99      92    99   130  187   173
## 9985       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9986       Suc. Belenes    21      17    17    25   23    27
## 9987       Suc. Belenes    46      44    63    51  108    44
## 9988       Suc. Belenes     5       5     5    13    8    13
## 9989       Suc. Belenes     5       3     4     4    5     6
## 9990       Suc. Belenes     5      NA     2     6    3     5
## 9991       Suc. Belenes    NA      NA    NA    NA   NA     2
## 9992       Suc. Belenes     6       6     3     4    5     5
## 9993       Suc. Belenes    NA       2    NA    NA   NA    NA
## 9994       Suc. Belenes     1       2     2     1    2     2
## 9995       Suc. Belenes    NA       1    NA     1   NA    NA
## 9996       Suc. Belenes    NA       1    NA     1    1     2
## 9997       Suc. Belenes    NA       1    NA     3    4     1
## 9998       Suc. Belenes     1      NA    NA    NA   NA    NA
## 9999       Suc. Belenes     6       0     2     1    2     2
## 10000      Suc. Belenes     1       2     1     3    2     1
## 10001      Suc. Belenes     3       4    20     5    6     4
## 10002      Suc. Belenes    NA      NA    NA    NA   NA     2
## 10003      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10004      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10005      Suc. Belenes    NA      NA    NA    NA    1     1
## 10006      Suc. Belenes     1       2    NA     2    3     6
## 10007      Suc. Belenes     1      NA     2     2    3     4
## 10008      Suc. Belenes    NA       2     1     1    2     4
## 10009      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10010      Suc. Belenes     0       1     1     0    1     1
## 10011      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10012      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10013      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10014      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10015      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10016      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10017      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10018      Suc. Belenes    NA       1     3     6    6     3
## 10019      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10020      Suc. Belenes     2       1    NA    NA    0     0
## 10021      Suc. Belenes     2      NA     2    NA    2     1
## 10022      Suc. Belenes    NA      10    NA    NA    1     2
## 10023      Suc. Belenes    NA       1     0     1    0     0
## 10024      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10025      Suc. Belenes    NA      NA    NA    NA   NA     3
## 10026      Suc. Belenes    NA       1    NA    NA    1    NA
## 10027      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10028      Suc. Belenes     1       0    NA     0   NA     0
## 10029      Suc. Belenes     2      NA     2    NA    2     1
## 10030      Suc. Belenes    NA      NA    NA    NA    1     1
## 10031      Suc. Belenes    NA       1     0     1    0     0
## 10032      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10033      Suc. Belenes    NA       1    NA    NA    1    NA
## 10034      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10035      Suc. Belenes     0       0    NA    NA   NA     1
## 10036      Suc. Belenes     2      NA     2    NA   NA     1
## 10037      Suc. Belenes    NA      NA    NA    NA    1     1
## 10038      Suc. Belenes    NA      NA    NA    NA    1     1
## 10039      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10040      Suc. Belenes     3       6     3    NA   NA     3
## 10041      Suc. Belenes    NA      NA    NA    NA    7    NA
## 10042      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10043      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10044      Suc. Belenes    NA       1     0     1    0     0
## 10045      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10046      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10047      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10048      Suc. Belenes    11      12     8     3    4    NA
## 10049      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10050      Suc. Belenes     1      NA    NA    NA   NA     2
## 10051      Suc. Belenes     4       2     2     2   NA     3
## 10052      Suc. Belenes     3      NA    NA    NA    1     1
## 10053      Suc. Belenes    NA       1     0     1    0     0
## 10054      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10055      Suc. Belenes     3       3     3     4    5     4
## 10056      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10057      Suc. Belenes    NA      NA    NA     2    3     1
## 10058      Suc. Belenes     4       1     1    NA   NA    NA
## 10059      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10060      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10061      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10062      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10063      Suc. Belenes     4       6    11     4    4    11
## 10064      Suc. Belenes    10       3     3     3   10    10
## 10065      Suc. Belenes     3      NA    NA    NA    3     5
## 10066      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10067      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10068      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10069      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10070      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10071      Suc. Belenes    NA       1    NA    NA    1    NA
## 10072      Suc. Belenes     1       1     1     1    1     1
## 10073      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10074      Suc. Belenes    NA      NA    NA    NA    1     1
## 10075      Suc. Belenes     5       3     2     5    3     4
## 10076      Suc. Belenes     1       0     0     0   NA    NA
## 10077      Suc. Belenes     1       1     6     4    4     8
## 10078      Suc. Belenes     2       2    NA    NA   NA    NA
## 10079      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10080      Suc. Belenes     3      NA     1     2    1     1
## 10081      Suc. Belenes     8       6     8     6    6     3
## 10082      Suc. Belenes     3      NA     1    NA    3     1
## 10083      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10084      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10085      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10086      Suc. Belenes    NA       2    NA    NA   NA    NA
## 10087      Suc. Belenes    NA      NA     4    NA   NA    NA
## 10088      Suc. Belenes    11       8     6    11   13    11
## 10089      Suc. Belenes     2       3     5     6    5     3
## 10090      Suc. Belenes     6       6    11    14    8    11
## 10091      Suc. Belenes     8       6     3    11    6     3
## 10092      Suc. Belenes    18       7    14    14   11    28
## 10093      Suc. Belenes    15      19    11    17   17    21
## 10094      Suc. Belenes     2      NA     2     2    2     2
## 10095      Suc. Belenes     2       2     2     2    2     3
## 10096      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10097      Suc. Belenes     2       2     4     8    4     4
## 10098      Suc. Belenes    17      14    11    14   11    14
## 10099      Suc. Belenes     2       6    NA     6    2     2
## 10100      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10101      Suc. Belenes    34      32    42    49   32    40
## 10102      Suc. Belenes    NA      NA    NA     5   NA    NA
## 10103      Suc. Belenes    NA      NA    NA    NA   NA     3
## 10104      Suc. Belenes    73      70   143    35  101   105
## 10105      Suc. Belenes     9      11     8     8    6    11
## 10106      Suc. Belenes    NA       2     2     2   NA    NA
## 10107      Suc. Belenes    28      25    28    34   28    34
## 10108      Suc. Belenes    34      31    39    37   31    39
## 10109      Suc. Belenes    56      63    60    99   60    67
## 10110      Suc. Belenes   180     141   211   141  137   243
## 10111      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10112      Suc. Belenes    55      55    44    42   42    51
## 10113      Suc. Belenes   150     137   167   116  171   169
## 10114      Suc. Belenes     6       5     4     6    9     6
## 10115      Suc. Belenes     5       5     3     6    5     5
## 10116      Suc. Belenes     6       4     6     6    6     6
## 10117      Suc. Belenes     6       7     6     7    7     8
## 10118      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10119      Suc. Belenes     2      NA     1     1    2     2
## 10120      Suc. Belenes     1       1    NA     1    1     2
## 10121      Suc. Belenes     1      NA    NA     1    1     3
## 10122      Suc. Belenes     3      NA     0     0    0     0
## 10123      Suc. Belenes     1      NA    NA     0    1     1
## 10124      Suc. Belenes     4       3     3     5    4     6
## 10125      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10126      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10127      Suc. Belenes     4       6     2     8    4     4
## 10128      Suc. Belenes     2       1     1     2    1     0
## 10129      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10130      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10131      Suc. Belenes     0       0     0     0    1     0
## 10132      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10133      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10134      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10135      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10136      Suc. Belenes     3      NA     3     6   NA    NA
## 10137      Suc. Belenes    NA      NA     2    NA   NA    NA
## 10138      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10139      Suc. Belenes    NA      NA     0     0    0     1
## 10140      Suc. Belenes     5       1     7     2    1     3
## 10141      Suc. Belenes     3      12     3     1    2     1
## 10142      Suc. Belenes    NA       1    NA     0   NA    NA
## 10143      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10144      Suc. Belenes    NA      NA    NA     3   NA    NA
## 10145      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10146      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10147      Suc. Belenes    NA      NA    NA    NA    0     1
## 10148      Suc. Belenes     5       1     1     2    1     3
## 10149      Suc. Belenes    NA       1     4     1    2     1
## 10150      Suc. Belenes    NA       1    NA     0   NA    NA
## 10151      Suc. Belenes    NA       4    NA    NA   NA     2
## 10152      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10153      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10154      Suc. Belenes    NA      NA    NA    NA    0     1
## 10155      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10156      Suc. Belenes     3       1     1     2    1     3
## 10157      Suc. Belenes     1       1     1     1    2     1
## 10158      Suc. Belenes    NA       1     1     1   NA     1
## 10159      Suc. Belenes     3       3    14     6    6     3
## 10160      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10161      Suc. Belenes     6       6    NA     8    4     6
## 10162      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10163      Suc. Belenes    NA       1    NA     0   NA    NA
## 10164      Suc. Belenes     4      NA    NA    NA    4     2
## 10165      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10166      Suc. Belenes    NA       6    11     3   NA    NA
## 10167      Suc. Belenes    NA      NA    NA     4   NA    NA
## 10168      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10169      Suc. Belenes     1       0    NA    NA    0     2
## 10170      Suc. Belenes     5       1     1     2    7     5
## 10171      Suc. Belenes     2       3     1     1    2     1
## 10172      Suc. Belenes    NA       1    NA     0   NA    NA
## 10173      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10174      Suc. Belenes     3       2     3     4    6     4
## 10175      Suc. Belenes     0      NA    NA    NA   NA     0
## 10176      Suc. Belenes    NA      NA    NA     0    0    NA
## 10177      Suc. Belenes     1       1    NA     1   NA    NA
## 10178      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10179      Suc. Belenes     2      NA    NA    NA   NA     2
## 10180      Suc. Belenes     3      NA    NA    NA   NA     3
## 10181      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10182      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10183      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10184      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10185      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10186      Suc. Belenes    NA      NA    NA     0   NA    NA
## 10187      Suc. Belenes    NA      NA    NA     0   NA    NA
## 10188      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10189      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10190      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10191      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10192      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10193      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10194      Suc. Belenes    24      29    69    55   45    32
## 10195      Suc. Belenes    NA      NA    NA    NA   NA    38
## 10196      Suc. Belenes    NA      NA    NA     3    3     3
## 10197      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10198      Suc. Belenes    NA      NA    NA    59   NA    NA
## 10199      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10200      Suc. Belenes    67     208   211   144  106    95
## 10201      Suc. Belenes    NA      NA    NA    NA   NA     4
## 10202      Suc. Belenes    17     114    70    55   91    70
## 10203      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10204      Suc. Belenes   467     573    NA   666   NA    NA
## 10205      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10206      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10207      Suc. Belenes   106     152   142   118  134   184
## 10208      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10209      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10210      Suc. Belenes    NA      NA     0    NA   NA     0
## 10211      Suc. Belenes     9      14    NA    16   11     2
## 10212      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10213      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10214      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10215      Suc. Belenes    NA       0    NA     0   NA     0
## 10216      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10217      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10218      Suc. Belenes    NA      NA    NA    NA    1     3
## 10219      Suc. Belenes    NA       3     2     3   NA    NA
## 10220      Suc. Belenes    16      NA    29    27   25    23
## 10221      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10222      Suc. Belenes    NA      NA    NA    NA    1     3
## 10223      Suc. Belenes    NA       4    NA    NA   NA    NA
## 10224      Suc. Belenes    NA      NA     2    NA   NA    NA
## 10225      Suc. Belenes    16       8    26    27   23    23
## 10226      Suc. Belenes    NA      NA    NA    NA    1     3
## 10227      Suc. Belenes    NA       4    NA    NA   NA    NA
## 10228      Suc. Belenes    NA       3     2    NA   NA    NA
## 10229      Suc. Belenes    16      NA    26    27   23    23
## 10230      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10231      Suc. Belenes    NA      NA    NA    NA   NA     4
## 10232      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10233      Suc. Belenes    NA      NA    NA    NA   24     3
## 10234      Suc. Belenes    NA       4    NA    NA   NA    NA
## 10235      Suc. Belenes    NA       3     4     5   NA     0
## 10236      Suc. Belenes    16      15    26    27   27    27
## 10237      Suc. Belenes     6       3    NA    11    4    NA
## 10238      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10239      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10240      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10241      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10242      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10243      Suc. Belenes     4       6     8     8    6     4
## 10244      Suc. Belenes    22       3    13    19   10    25
## 10245      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10246      Suc. Belenes     4       7     7    NA    7     7
## 10247      Suc. Belenes    NA       3     3    NA   NA     3
## 10248      Suc. Belenes     0      NA     1    NA    1    NA
## 10249      Suc. Belenes    NA      NA     1     2   NA    NA
## 10250      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10251      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10252      Suc. Belenes    NA       1    NA     1    1     1
## 10253      Suc. Belenes     4       3     3     2    3     4
## 10254      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10255      Suc. Belenes     1       1     2     1    2     3
## 10256      Suc. Belenes    NA      NA    NA     4   NA    NA
## 10257      Suc. Belenes     2       1     2     1    1     2
## 10258      Suc. Belenes    NA       3     8    17    8    11
## 10259      Suc. Belenes     1      NA     1     1    1     1
## 10260      Suc. Belenes     0      NA     0     1    0     0
## 10261      Suc. Belenes     1      NA     1    NA    1     1
## 10262      Suc. Belenes     1      NA     1    NA    2     1
## 10263      Suc. Belenes     2       2     2    NA   NA    NA
## 10264      Suc. Belenes    NA       4     2     2    2    NA
## 10265      Suc. Belenes    13      15    17    17   17    17
## 10266      Suc. Belenes    17      17    23    25   28    20
## 10267      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10268      Suc. Belenes     4       8    11     8   11     6
## 10269      Suc. Belenes     2       1     2     1    2     1
## 10270      Suc. Belenes    NA      NA     3     3    2     2
## 10271      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10272      Suc. Belenes     2       4     4     6    6     8
## 10273      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10274      Suc. Belenes     2      NA    NA    NA   NA     2
## 10275      Suc. Belenes    34      21    40    34   23    32
## 10276      Suc. Belenes    34      26    45    45   40    24
## 10277      Suc. Belenes    NA      NA    NA    NA   NA    19
## 10278      Suc. Belenes    10      10     6    13   10    10
## 10279      Suc. Belenes     6       6     6    11    6     6
## 10280      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10281      Suc. Belenes    17      11    17    11    8     8
## 10282      Suc. Belenes    NA      NA     6    NA    3    NA
## 10283      Suc. Belenes    74      74    92    92  102    88
## 10284      Suc. Belenes    49      70    56    67   63    70
## 10285      Suc. Belenes    NA       4     2    NA   NA    NA
## 10286      Suc. Belenes    21      21    23    36   36    36
## 10287      Suc. Belenes    42      38    44    51   55    46
## 10288      Suc. Belenes     5       7     5     6    7     6
## 10289      Suc. Belenes     3       3     5     6    6     5
## 10290      Suc. Belenes     2       2     4     4    4     6
## 10291      Suc. Belenes     4       4     5     2    3     4
## 10292      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10293      Suc. Belenes     1       1     3     1    5     2
## 10294      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10295      Suc. Belenes     1       3    NA     6    4     4
## 10296      Suc. Belenes     1       1     1     2    2     4
## 10297      Suc. Belenes     2       0     0     0    0     0
## 10298      Suc. Belenes    NA       1    NA    NA    0    NA
## 10299      Suc. Belenes     3       3     5     3    5     7
## 10300      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10301      Suc. Belenes     2      NA    NA     4    6     2
## 10302      Suc. Belenes    NA       0     0     0    0     1
## 10303      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10304      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10305      Suc. Belenes     0       0     0     2    1     0
## 10306      Suc. Belenes     1       1     3     2    3     3
## 10307      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10308      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10309      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10310      Suc. Belenes     4       2     4     2    4     4
## 10311      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10312      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10313      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10314      Suc. Belenes     3      NA    NA    NA   NA     3
## 10315      Suc. Belenes     4       4     4     4   14     9
## 10316      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10317      Suc. Belenes     2       2     1     2    2     1
## 10318      Suc. Belenes     1      NA     1     1    1    NA
## 10319      Suc. Belenes    NA       1     3     2    3     2
## 10320      Suc. Belenes    NA       0     1     1    0     0
## 10321      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10322      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10323      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10324      Suc. Belenes    NA      NA     4    NA   NA    NA
## 10325      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10326      Suc. Belenes    NA       0     0     1    1    NA
## 10327      Suc. Belenes     1      NA     1     1    1    NA
## 10328      Suc. Belenes    NA       1     1     1   NA     1
## 10329      Suc. Belenes    NA       0     1     1    0     0
## 10330      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10331      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10332      Suc. Belenes    NA      NA    NA    NA   NA     4
## 10333      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10334      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10335      Suc. Belenes     1      NA     1     1    1    NA
## 10336      Suc. Belenes    NA       1     1     1    1    NA
## 10337      Suc. Belenes    NA       1     4     1    1     3
## 10338      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10339      Suc. Belenes    NA      NA    NA    NA    3    NA
## 10340      Suc. Belenes     7       4    NA     7    7     7
## 10341      Suc. Belenes     2       1     2     1    1     0
## 10342      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10343      Suc. Belenes    NA       3    NA     3   NA     1
## 10344      Suc. Belenes    NA       0     1     1    0     0
## 10345      Suc. Belenes    NA       4     4     4    6     6
## 10346      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10347      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10348      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10349      Suc. Belenes    NA      NA     3     3   NA     3
## 10350      Suc. Belenes    NA       4     7    11   11     5
## 10351      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10352      Suc. Belenes     1       1     2     2    1     1
## 10353      Suc. Belenes     1       2     1     1    1    NA
## 10354      Suc. Belenes     1      NA     1     1    1     2
## 10355      Suc. Belenes    NA       0     1     1    0     0
## 10356      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10357      Suc. Belenes     3      10     6     6    3     6
## 10358      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10359      Suc. Belenes    NA      NA    NA    NA   NA     2
## 10360      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10361      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10362      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10363      Suc. Belenes     6       4     4     6    4     8
## 10364      Suc. Belenes     6      13    13    16   13    19
## 10365      Suc. Belenes    NA      NA     0     1    0     0
## 10366      Suc. Belenes     3       5     5    NA    8     3
## 10367      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10368      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10369      Suc. Belenes     2       3     1     3    3     1
## 10370      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10371      Suc. Belenes     3       8     8     2   10     2
## 10372      Suc. Belenes    NA       2     1     3    1     1
## 10373      Suc. Belenes     2       3    NA     2    1     1
## 10374      Suc. Belenes     0       1     1     1    1     1
## 10375      Suc. Belenes    NA       1     1     1    1     2
## 10376      Suc. Belenes     2       1     1    NA    2     1
## 10377      Suc. Belenes     0      NA     0     0    1     1
## 10378      Suc. Belenes    NA       1     2     1    3     1
## 10379      Suc. Belenes     2      NA    NA    NA   NA     2
## 10380      Suc. Belenes     2       2     2     2    3     2
## 10381      Suc. Belenes     3       3     3     6    3     3
## 10382      Suc. Belenes     0       0     0     0    0     0
## 10383      Suc. Belenes     1       1    NA     1    1    NA
## 10384      Suc. Belenes    NA      NA    NA    NA   NA     2
## 10385      Suc. Belenes    NA      NA    NA     2    2     2
## 10386      Suc. Belenes     1      NA     2    NA   NA    NA
## 10387      Suc. Belenes     2       2     3     2    5     2
## 10388      Suc. Belenes     6       6     3     6    6     8
## 10389      Suc. Belenes     2       6     4     2    4    NA
## 10390      Suc. Belenes     2       1     1     1    1     2
## 10391      Suc. Belenes    NA       1    NA     1   NA    NA
## 10392      Suc. Belenes    NA      NA     2    NA    2     4
## 10393      Suc. Belenes     4      11    13     6    8     8
## 10394      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10395      Suc. Belenes    32      32    41    54   25    32
## 10396      Suc. Belenes     3       5     6     6    6     6
## 10397      Suc. Belenes     3       5     6     6    6     6
## 10398      Suc. Belenes    11      17    14    17   14    17
## 10399      Suc. Belenes    11      14    21    18   14    14
## 10400      Suc. Belenes    92      88   144   116  116   123
## 10401      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10402      Suc. Belenes     8      11     6    13   21     8
## 10403      Suc. Belenes    78      72   108    99   76    80
## 10404      Suc. Belenes     3       3     3     6    3     3
## 10405      Suc. Belenes     2       2     4     7    4     4
## 10406      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10407      Suc. Belenes     4       2     4    NA    4     2
## 10408      Suc. Belenes     2       2     3     2    2     4
## 10409      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10410      Suc. Belenes    NA       1     1    NA    1     1
## 10411      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10412      Suc. Belenes     1       1     2    NA    3     1
## 10413      Suc. Belenes     1       1     1    NA    1     1
## 10414      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10415      Suc. Belenes     0       2     1     2    2     1
## 10416      Suc. Belenes     1       1    NA     1    1    NA
## 10417      Suc. Belenes     3       6     7     6    7     6
## 10418      Suc. Belenes    NA       1     0     0    1    NA
## 10419      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10420      Suc. Belenes     2      NA    NA     2    2     2
## 10421      Suc. Belenes     0       0     0     1    1     1
## 10422      Suc. Belenes    NA      NA     1    NA   NA     1
## 10423      Suc. Belenes    NA      NA     1    NA   NA     1
## 10424      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10425      Suc. Belenes     0       1     1     1    1     1
## 10426      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10427      Suc. Belenes     1      NA     3     1    3     1
## 10428      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10429      Suc. Belenes     3       6    11    14    6    11
## 10430      Suc. Belenes     0       1     1     1    1     1
## 10431      Suc. Belenes     0      NA    NA     0   NA    NA
## 10432      Suc. Belenes     8       4     4     4    4     2
## 10433      Suc. Belenes     4       3     2     2    2     3
## 10434      Suc. Belenes    NA       0    NA     0    1     0
## 10435      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10436      Suc. Belenes     3      NA     3     3   NA     3
## 10437      Suc. Belenes     0       0     0     0    1     0
## 10438      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10439      Suc. Belenes    NA      NA     2     2    4     2
## 10440      Suc. Belenes     1      NA     1     1    2     1
## 10441      Suc. Belenes    NA       0    NA     0    1     0
## 10442      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10443      Suc. Belenes     0       1     1     1    1     1
## 10444      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10445      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10446      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10447      Suc. Belenes     1       2     2     1    2     3
## 10448      Suc. Belenes     8       8    14    14   17     8
## 10449      Suc. Belenes     2       2     4     2    2    NA
## 10450      Suc. Belenes     1      NA     1     1    3    NA
## 10451      Suc. Belenes    NA       0    NA     0    1     0
## 10452      Suc. Belenes     8       6    11    14    8     8
## 10453      Suc. Belenes     3      NA    NA    NA   NA    NA
## 10454      Suc. Belenes     0       1     1     1    1     1
## 10455      Suc. Belenes    NA       0     0    NA    0     0
## 10456      Suc. Belenes     6       2     4     4    6     4
## 10457      Suc. Belenes     3       3     2     3    5     3
## 10458      Suc. Belenes    NA       0    NA     0    1     0
## 10459      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10460      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10461      Suc. Belenes     1       3     1     2    6    NA
## 10462      Suc. Belenes    NA       0    NA    NA   NA     0
## 10463      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10464      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10465      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10466      Suc. Belenes     2       2    NA     4    2     4
## 10467      Suc. Belenes     3       3    NA     3    3    10
## 10468      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10469      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10470      Suc. Belenes    NA      NA    NA     0    0     0
## 10471      Suc. Belenes    NA      NA    NA    NA   NA     3
## 10472      Suc. Belenes     2       2     2     1    2     3
## 10473      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10474      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10475      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10476      Suc. Belenes    NA       1     2    NA    2     1
## 10477      Suc. Belenes    NA      NA    NA     3    3    NA
## 10478      Suc. Belenes    NA      NA     1    NA    1     1
## 10479      Suc. Belenes    NA      NA    NA     0   NA     0
## 10480      Suc. Belenes    NA      NA    NA     2    1     2
## 10481      Suc. Belenes     2      NA    NA    NA    2    NA
## 10482      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10483      Suc. Belenes     2       2     2     2    2     2
## 10484      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10485      Suc. Belenes    11       6     8     8    6     8
## 10486      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10487      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10488      Suc. Belenes     4       2     2     4    6     4
## 10489      Suc. Belenes    17      13    15    25   19    23
## 10490      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10491      Suc. Belenes   127     111   130   133  133   108
## 10492      Suc. Belenes    12       6     8     8    9    12
## 10493      Suc. Belenes     3       3    NA     2    2    NA
## 10494      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10495      Suc. Belenes    NA       3    NA    NA   NA    NA
## 10496      Suc. Belenes     7      18    11    21   21    14
## 10497      Suc. Belenes   296     285   299   299  324   335
## 10498      Suc. Belenes     6       6     8     8   13    23
## 10499      Suc. Belenes     4      13     6    13   11    15
## 10500      Suc. Belenes   142     108   142   152  156   184
## 10501      Suc. Belenes    NA      NA    NA    NA    6     6
## 10502      Suc. Belenes     1       1     2     1    2     4
## 10503      Suc. Belenes     2       2     2     2    2     3
## 10504      Suc. Belenes     6       4    NA     6    4     8
## 10505      Suc. Belenes     3       1     1     3    3     3
## 10506      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10507      Suc. Belenes     1       1    NA    NA   NA    NA
## 10508      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10509      Suc. Belenes     1      NA    NA     1    3     3
## 10510      Suc. Belenes    NA      NA     0     0    0     1
## 10511      Suc. Belenes     2       0     0     1   NA     0
## 10512      Suc. Belenes     1       1     1     2    1     1
## 10513      Suc. Belenes     4       2     3     3    5     4
## 10514      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10515      Suc. Belenes    NA      NA    NA     2   NA     2
## 10516      Suc. Belenes    NA       0    NA     0    0     0
## 10517      Suc. Belenes     0       0    NA    NA   NA    NA
## 10518      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10519      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10520      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10521      Suc. Belenes     1      NA     3     3   NA     3
## 10522      Suc. Belenes    NA      NA    NA     0    0     0
## 10523      Suc. Belenes     2      NA     0     0    2     3
## 10524      Suc. Belenes     4       2     6     4    2     2
## 10525      Suc. Belenes     1       1    NA    NA    1     1
## 10526      Suc. Belenes    NA       0    NA    NA    0     0
## 10527      Suc. Belenes     1      NA    NA     3   NA    NA
## 10528      Suc. Belenes    NA      NA    NA     0    0     0
## 10529      Suc. Belenes     1       0    NA     0    2     2
## 10530      Suc. Belenes    NA       2    NA     4    4     4
## 10531      Suc. Belenes    NA      NA    NA    NA    1     2
## 10532      Suc. Belenes    NA       0    NA    NA    0     0
## 10533      Suc. Belenes     1      NA    NA     3   NA    NA
## 10534      Suc. Belenes    NA      NA    NA     0    0     0
## 10535      Suc. Belenes     0       0    NA    NA    1     2
## 10536      Suc. Belenes    NA      NA     2     4   NA    NA
## 10537      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10538      Suc. Belenes    NA      NA    NA    NA    1     1
## 10539      Suc. Belenes    NA      NA     8    NA   NA     6
## 10540      Suc. Belenes     0      NA    NA     0   NA    NA
## 10541      Suc. Belenes     2       2    NA     2    6    NA
## 10542      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10543      Suc. Belenes    NA       0    NA    NA    0     0
## 10544      Suc. Belenes     1       6    NA     3    3    NA
## 10545      Suc. Belenes    NA      NA    NA     0    0     0
## 10546      Suc. Belenes     0       0    NA     0    1     3
## 10547      Suc. Belenes     2       2     4     2    4    NA
## 10548      Suc. Belenes     1       1    NA    NA    1     1
## 10549      Suc. Belenes    NA       0    NA    NA    0     0
## 10550      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10551      Suc. Belenes     1       1    NA     1    8     3
## 10552      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10553      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10554      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10555      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10556      Suc. Belenes     4      13    17     8   15     4
## 10557      Suc. Belenes    16      22    19    19   35    16
## 10558      Suc. Belenes    NA      NA    NA     7   11    NA
## 10559      Suc. Belenes     3       5     5    NA    5     5
## 10560      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10561      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10562      Suc. Belenes     0       0     0    NA   NA    NA
## 10563      Suc. Belenes     1       2     3     1    4     2
## 10564      Suc. Belenes     3       2     2     4    4     3
## 10565      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10566      Suc. Belenes    NA       1     2     2    4    NA
## 10567      Suc. Belenes     2      NA    NA    NA   NA    NA
## 10568      Suc. Belenes    NA       2     2     1    1    NA
## 10569      Suc. Belenes    11      11     8    14   14    17
## 10570      Suc. Belenes    NA      NA     3     3    3     3
## 10571      Suc. Belenes    NA      NA    NA     0   NA    NA
## 10572      Suc. Belenes     1      NA     1     1    1     1
## 10573      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10574      Suc. Belenes    NA      NA     2     4    4     2
## 10575      Suc. Belenes    27      25    30    21   25    32
## 10576      Suc. Belenes    39      31    39    34   31    39
## 10577      Suc. Belenes     3       3     3     2    2     3
## 10578      Suc. Belenes    17      13    15    17   11    15
## 10579      Suc. Belenes     5       5     5     5    6     5
## 10580      Suc. Belenes     6       4     4     8    6     6
## 10581      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10582      Suc. Belenes    98      95    95    77  143    58
## 10583      Suc. Belenes    NA      NA    NA    NA   NA    19
## 10584      Suc. Belenes     3      NA     6     3    3     3
## 10585      Suc. Belenes    20      24    23    17   17    24
## 10586      Suc. Belenes    73      59    73    73   70    82
## 10587      Suc. Belenes    70      67   102    95   99    99
## 10588      Suc. Belenes    42      49    42    56   53    46
## 10589      Suc. Belenes    53      53    66    57   63    68
## 10590      Suc. Belenes    85      76    76    68   78    76
## 10591      Suc. Belenes     9       7     8    10   11    10
## 10592      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10593      Suc. Belenes    12      10    16     8   20    14
## 10594      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10595      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10596      Suc. Belenes     1      NA     2     4    2     1
## 10597      Suc. Belenes     1       0    NA     1    1     1
## 10598      Suc. Belenes    NA       0    NA    NA    0    NA
## 10599      Suc. Belenes     4       4     4     5    8     1
## 10600      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10601      Suc. Belenes     2       4     2     2    4     2
## 10602      Suc. Belenes    NA      NA     0     0   NA     0
## 10603      Suc. Belenes     4       3     5     7    8     4
## 10604      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10605      Suc. Belenes     3       3     3     8    6     8
## 10606      Suc. Belenes     0       0     0    NA   NA    NA
## 10607      Suc. Belenes     0      NA     0     1    1    NA
## 10608      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10609      Suc. Belenes     3       3     4     3    4     3
## 10610      Suc. Belenes     3       3     3     3    3    NA
## 10611      Suc. Belenes     0       0     0    NA   NA    NA
## 10612      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10613      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10614      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10615      Suc. Belenes    NA      NA    NA     3   NA    NA
## 10616      Suc. Belenes     0       0     0    NA   NA    NA
## 10617      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10618      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10619      Suc. Belenes     8       8     8     6   11     8
## 10620      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10621      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10622      Suc. Belenes     1      NA     0     0   NA    NA
## 10623      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10624      Suc. Belenes     4       4     6     4    5     4
## 10625      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10626      Suc. Belenes     6       3     8     8    8     8
## 10627      Suc. Belenes     0       0     0    NA   NA    NA
## 10628      Suc. Belenes     1      NA     1     0   NA    NA
## 10629      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10630      Suc. Belenes     5       6     8     4    8     6
## 10631      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10632      Suc. Belenes     1       4    10     5   13     4
## 10633      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10634      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10635      Suc. Belenes    14      NA    NA    NA   NA    NA
## 10636      Suc. Belenes     1       1    NA     1    3     1
## 10637      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10638      Suc. Belenes    11      19     8    19   34    17
## 10639      Suc. Belenes    16      25    16    19   22    25
## 10640      Suc. Belenes     5      10     3     3    5     8
## 10641      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10642      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10643      Suc. Belenes    NA      NA     2     3   NA    NA
## 10644      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10645      Suc. Belenes    NA       1     1     0    0     1
## 10646      Suc. Belenes     2       4     5     4    4     4
## 10647      Suc. Belenes     3       4     7     4    6     6
## 10648      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10649      Suc. Belenes     1       1     1     2    2     2
## 10650      Suc. Belenes    NA       2     2    NA   NA    NA
## 10651      Suc. Belenes     2       1     2     1    2     2
## 10652      Suc. Belenes     8      14    11    14   14     8
## 10653      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10654      Suc. Belenes    NA       0    NA    NA    1     0
## 10655      Suc. Belenes     1      NA    NA     1    1    NA
## 10656      Suc. Belenes     1       1    NA    NA    1     1
## 10657      Suc. Belenes     6       6     4    NA   NA    NA
## 10658      Suc. Belenes    NA       2     2     2   NA    NA
## 10659      Suc. Belenes    11      15    11    21   13    17
## 10660      Suc. Belenes    11      11    14    23   14    17
## 10661      Suc. Belenes     4      15    15    11   13    17
## 10662      Suc. Belenes    NA       2    NA     1    1    NA
## 10663      Suc. Belenes    NA       2    NA     2    2    NA
## 10664      Suc. Belenes     4       4     2     4    6     4
## 10665      Suc. Belenes     4       4     4     8   11     8
## 10666      Suc. Belenes    25      42    17    27   40    30
## 10667      Suc. Belenes    13      26    24    21    5    11
## 10668      Suc. Belenes    13      13    29    16   10    19
## 10669      Suc. Belenes    25      16    25    41   44    25
## 10670      Suc. Belenes     9      14     9    14   17     8
## 10671      Suc. Belenes    42      20    23    31   25    25
## 10672      Suc. Belenes   176     102    67   113  116   134
## 10673      Suc. Belenes   190     201   204   208  211   306
## 10674      Suc. Belenes     6      15     2     8    8    11
## 10675      Suc. Belenes    25      19    17    32   44    72
## 10676      Suc. Belenes    57      55    49    76   72    74
## 10677      Suc. Belenes     4       2     5     5    6    10
## 10678      Suc. Belenes     3       3     6     6    9     3
## 10679      Suc. Belenes     2       2     2     2    6     2
## 10680      Suc. Belenes     1       3    NA     1    2     1
## 10681      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10682      Suc. Belenes     1       1     1     1    1     1
## 10683      Suc. Belenes    NA      NA    NA    NA    3     3
## 10684      Suc. Belenes    11       8     6     6    5     8
## 10685      Suc. Belenes     4       2     2     2    2     4
## 10686      Suc. Belenes     1       1     1     1    2     1
## 10687      Suc. Belenes     3       4    10     4    5    10
## 10688      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10689      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10690      Suc. Belenes    NA       2     2    NA    4    NA
## 10691      Suc. Belenes    NA       0     1     0    1    NA
## 10692      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10693      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10694      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10695      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10696      Suc. Belenes     3       2     4     3    4     4
## 10697      Suc. Belenes     2       3     1     1    1     1
## 10698      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10699      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10700      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10701      Suc. Belenes     2       4     4     2    4    NA
## 10702      Suc. Belenes     6       6     3    11    6    11
## 10703      Suc. Belenes    NA       1     1     0    0     1
## 10704      Suc. Belenes     0       1     2     1    1     1
## 10705      Suc. Belenes     1       1     1     1    2     3
## 10706      Suc. Belenes     2       3     4    NA    3     1
## 10707      Suc. Belenes    NA       0     0     0    0     0
## 10708      Suc. Belenes    NA       3     3     3    8     3
## 10709      Suc. Belenes    NA       0     0     0    0     0
## 10710      Suc. Belenes    NA       1     1    NA    1     1
## 10711      Suc. Belenes     1       1     1     1    2     5
## 10712      Suc. Belenes     1       1     3    NA    3     1
## 10713      Suc. Belenes    NA       0     0     0    0     0
## 10714      Suc. Belenes    NA       3     3    11    6     3
## 10715      Suc. Belenes    NA       1     1     0    0     1
## 10716      Suc. Belenes    NA       1     2     0    1     0
## 10717      Suc. Belenes     1       1     1     1    2     3
## 10718      Suc. Belenes     1       3     3    NA    3     1
## 10719      Suc. Belenes    NA       5     3     4    3     6
## 10720      Suc. Belenes     3       3     6     8    3     6
## 10721      Suc. Belenes    NA      NA    NA     0    0     0
## 10722      Suc. Belenes     1      NA    NA    NA    3    NA
## 10723      Suc. Belenes    NA       0     0     0    0     0
## 10724      Suc. Belenes     4       8     2     4    4     2
## 10725      Suc. Belenes    NA      NA     2    NA   NA    NA
## 10726      Suc. Belenes    NA       3     6     6   17    17
## 10727      Suc. Belenes    NA      NA     4    NA   NA    NA
## 10728      Suc. Belenes    NA       1     1     0    0     1
## 10729      Suc. Belenes    NA       2     3     1    1     2
## 10730      Suc. Belenes     1       1     1     1    2     3
## 10731      Suc. Belenes     4       7     5     3    4     3
## 10732      Suc. Belenes    NA       0     0     0    0     0
## 10733      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10734      Suc. Belenes    NA       6     6     3    3    16
## 10735      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10736      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10737      Suc. Belenes    NA      NA    NA    NA   NA     1
## 10738      Suc. Belenes    NA       4    11     6    4     4
## 10739      Suc. Belenes    NA      10    13     6    6    13
## 10740      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10741      Suc. Belenes    NA       3     3    NA    8     5
## 10742      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10743      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10744      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10745      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10746      Suc. Belenes     0       1     2     2    4     3
## 10747      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10748      Suc. Belenes    NA       2    NA    NA   NA    NA
## 10749      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10750      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10751      Suc. Belenes    NA       3     6     3    6     8
## 10752      Suc. Belenes    NA      NA     1     4   NA    NA
## 10753      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10754      Suc. Belenes    NA       2    NA    NA   NA    NA
## 10755      Suc. Belenes    NA      NA    NA    NA    2     2
## 10756      Suc. Belenes    NA       2     2     4   NA     4
## 10757      Suc. Belenes     8       8     6     6    3    14
## 10758      Suc. Belenes     6      NA     4     4    6     4
## 10759      Suc. Belenes    NA       1    NA     1   NA     1
## 10760      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10761      Suc. Belenes    NA      NA    NA     2   NA     6
## 10762      Suc. Belenes    NA      NA    NA     2    2    NA
## 10763      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10764      Suc. Belenes    15      15    17    21   25    15
## 10765      Suc. Belenes    NA      NA    NA    NA   NA     3
## 10766      Suc. Belenes    NA      NA    NA    NA   NA     3
## 10767      Suc. Belenes     6      16     3     6   13    16
## 10768      Suc. Belenes     5       5     2     9    3     5
## 10769      Suc. Belenes    14      11    11    20   20    23
## 10770      Suc. Belenes    NA      NA    NA     3   NA    NA
## 10771      Suc. Belenes    35      60    81    99  134    70
## 10772      Suc. Belenes    21      99    14    42   46    39
## 10773      Suc. Belenes    19      19     8    21   27    27
## 10774      Suc. Belenes    30      34    34    53   32    27
## 10775      Suc. Belenes     4       3     1     6    4     1
## 10776      Suc. Belenes     3       2     5     3    3     3
## 10777      Suc. Belenes    NA      NA    NA     4    6     4
## 10778      Suc. Belenes     2       2     2     3    2     1
## 10779      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10780      Suc. Belenes    NA      NA    NA     1    2    NA
## 10781      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10782      Suc. Belenes     3      NA     3     6   NA     6
## 10783      Suc. Belenes     1       1    NA     1    2    NA
## 10784      Suc. Belenes     1      NA    NA     1   NA     2
## 10785      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10786      Suc. Belenes     3      NA     3     1    5     2
## 10787      Suc. Belenes     2      NA    NA     4   NA     2
## 10788      Suc. Belenes    NA      NA     0     1    1     0
## 10789      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10790      Suc. Belenes    NA       3    NA     2    1     5
## 10791      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10792      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10793      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10794      Suc. Belenes    NA       3     6     9    3     6
## 10795      Suc. Belenes     2       2     2    NA    0     2
## 10796      Suc. Belenes     2       1    NA     1   NA    NA
## 10797      Suc. Belenes    NA       3     3     3   NA     3
## 10798      Suc. Belenes    NA       0    NA     0    0    NA
## 10799      Suc. Belenes    NA      NA     3     1   NA    NA
## 10800      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10801      Suc. Belenes    NA       3     2     7    2     2
## 10802      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10803      Suc. Belenes    NA       0    NA     0    0    NA
## 10804      Suc. Belenes    NA      NA     3     1    3     3
## 10805      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10806      Suc. Belenes    NA       5     2     5    4    NA
## 10807      Suc. Belenes    NA      NA     3    NA    3    NA
## 10808      Suc. Belenes    NA      NA    NA     4   NA    NA
## 10809      Suc. Belenes    NA      NA    NA     3   NA    NA
## 10810      Suc. Belenes    NA       0    NA    NA   NA    NA
## 10811      Suc. Belenes    NA       0    NA     0    0    NA
## 10812      Suc. Belenes    NA       3     8    15    3     8
## 10813      Suc. Belenes     2       0     2    NA    3    NA
## 10814      Suc. Belenes     2       3     2     3    2     2
## 10815      Suc. Belenes    NA       5     3     3    3     5
## 10816      Suc. Belenes    NA       0    NA     0    0    NA
## 10817      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10818      Suc. Belenes     3       1     2     3    4     3
## 10819      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10820      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10821      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10822      Suc. Belenes     2      NA     6     2    2     2
## 10823      Suc. Belenes     3      NA    10     3    3     3
## 10824      Suc. Belenes    NA      NA    NA    NA    0    NA
## 10825      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10826      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10827      Suc. Belenes     6       3     3     3    3     1
## 10828      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10829      Suc. Belenes    NA       1    NA     1    1     1
## 10830      Suc. Belenes    NA      NA    NA     1    1     1
## 10831      Suc. Belenes     3      NA     3     3   NA     3
## 10832      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10833      Suc. Belenes     1      NA    NA    NA   NA    NA
## 10834      Suc. Belenes    NA       4     6     2    2     4
## 10835      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10836      Suc. Belenes     6       4     6     8    8     4
## 10837      Suc. Belenes     1       2    NA     2    1     2
## 10838      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10839      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10840      Suc. Belenes    24      21    29    21   26    13
## 10841      Suc. Belenes    NA      NA    NA    NA   NA    10
## 10842      Suc. Belenes     3       3     3     3    3     3
## 10843      Suc. Belenes     2       2    NA     2    2     2
## 10844      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10845      Suc. Belenes    11       8     8     8   11    11
## 10846      Suc. Belenes    39      25    39    46   46    32
## 10847      Suc. Belenes    42      25    42    42   49    42
## 10848      Suc. Belenes    34      32    25    44   49    42
## 10849      Suc. Belenes    59      42    53    61   53    70
## 10850      Suc. Belenes    17       9     9    12   11    11
## 10851      Suc. Belenes     3      NA     5     5    3     6
## 10852      Suc. Belenes     2      NA    NA     1    4     2
## 10853      Suc. Belenes    NA      NA    NA     1    1     1
## 10854      Suc. Belenes     3      NA    NA    NA   NA    NA
## 10855      Suc. Belenes     3      NA     0     0    0     0
## 10856      Suc. Belenes    NA       0    NA    NA    0    NA
## 10857      Suc. Belenes     3       4     5     4    2     2
## 10858      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10859      Suc. Belenes     2      NA    NA    NA   NA    NA
## 10860      Suc. Belenes    NA      NA    NA     1   NA    NA
## 10861      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10862      Suc. Belenes    NA      NA    NA     0    0     0
## 10863      Suc. Belenes    NA       2     1     2    3     1
## 10864      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10865      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10866      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10867      Suc. Belenes     3       6     8     3    8     6
## 10868      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10869      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10870      Suc. Belenes     3       1     3     2   NA    NA
## 10871      Suc. Belenes    NA       0     0     0   NA    NA
## 10872      Suc. Belenes    NA      NA    NA    NA   NA     0
## 10873      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10874      Suc. Belenes    NA       0     0     0   NA    NA
## 10875      Suc. Belenes    NA      NA    NA    NA    0    NA
## 10876      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10877      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10878      Suc. Belenes     8       6     3     6    6     6
## 10879      Suc. Belenes     2       2     4     2    2     2
## 10880      Suc. Belenes    NA       0     0     0   NA    NA
## 10881      Suc. Belenes     4       2     6     4    8     6
## 10882      Suc. Belenes     6       6     3     3    6     8
## 10883      Suc. Belenes    NA      NA    NA     0   NA    NA
## 10884      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10885      Suc. Belenes     4       2     2     2    6     8
## 10886      Suc. Belenes     3       2     4     3   NA    NA
## 10887      Suc. Belenes    NA       0     0     0   NA    NA
## 10888      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10889      Suc. Belenes     3       3     4     7    2     1
## 10890      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10891      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10892      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10893      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10894      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10895      Suc. Belenes     2       2     2     2    2     2
## 10896      Suc. Belenes     6       3     3     3    3     3
## 10897      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10898      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10899      Suc. Belenes    NA       1     1     1    1    NA
## 10900      Suc. Belenes     0       1    NA     0   NA     1
## 10901      Suc. Belenes     1       1     1    NA    1     1
## 10902      Suc. Belenes    NA      NA    NA     2   NA    NA
## 10903      Suc. Belenes    NA       2     1     1    2     1
## 10904      Suc. Belenes    NA       3    NA     3    6     8
## 10905      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10906      Suc. Belenes    NA      NA    NA     0    0     0
## 10907      Suc. Belenes    NA      NA    NA    NA   NA     2
## 10908      Suc. Belenes    NA       1    NA    NA   NA    NA
## 10909      Suc. Belenes     8       2    NA     6    6     6
## 10910      Suc. Belenes     4       4     4     4    6     6
## 10911      Suc. Belenes     1      NA    NA     1   NA     1
## 10912      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10913      Suc. Belenes    26      21    24    32   18    13
## 10914      Suc. Belenes    NA      NA    NA    NA   NA    16
## 10915      Suc. Belenes    38      38    38    32   48    60
## 10916      Suc. Belenes    11      14     5    12   15     5
## 10917      Suc. Belenes     3       2     5     2    3     2
## 10918      Suc. Belenes    NA      NA    NA    NA    3    NA
## 10919      Suc. Belenes    20      17    17    14   11     8
## 10920      Suc. Belenes    14      18    28    25   32    32
## 10921      Suc. Belenes   148     113    81    99  106    92
## 10922      Suc. Belenes     4       6     4     6    8     6
## 10923      Suc. Belenes    15      13    11     6   11     8
## 10924      Suc. Belenes    80      68    70    93   89    85
## 10925      Suc. Belenes     3       3     2     4    2     6
## 10926      Suc. Belenes     3      NA     2     2    2    NA
## 10927      Suc. Belenes     4       4     8     6    6     8
## 10928      Suc. Belenes     6       6     6     3    3     3
## 10929      Suc. Belenes     1       1     2     1    2     3
## 10930      Suc. Belenes     1      NA     2     2    1     2
## 10931      Suc. Belenes    NA      NA     2     1    1     1
## 10932      Suc. Belenes    NA       0     0     0    0     0
## 10933      Suc. Belenes     1      NA     1     2    1     1
## 10934      Suc. Belenes     4       1     3     3    3    NA
## 10935      Suc. Belenes    NA      NA     2    NA   NA     2
## 10936      Suc. Belenes     0      NA    NA    NA   NA    NA
## 10937      Suc. Belenes     0       0     0     0    0     0
## 10938      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10939      Suc. Belenes     0       1     0     1   NA     1
## 10940      Suc. Belenes     3       1     3     3    1     2
## 10941      Suc. Belenes     1       1     1     1    1     1
## 10942      Suc. Belenes    NA       0     0    NA   NA    NA
## 10943      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10944      Suc. Belenes     0       0     0     0    0     0
## 10945      Suc. Belenes     1       1     1     1    1     2
## 10946      Suc. Belenes     1       1     1     1    1     1
## 10947      Suc. Belenes    NA       0     0    NA   NA    NA
## 10948      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10949      Suc. Belenes     0      NA    NA     1   NA    NA
## 10950      Suc. Belenes     1       1     1     1    3     4
## 10951      Suc. Belenes     1      NA     1     1    1     1
## 10952      Suc. Belenes     1      NA     2    NA   NA     1
## 10953      Suc. Belenes     3       3    NA    NA   NA     3
## 10954      Suc. Belenes    NA      NA    NA     4   NA    NA
## 10955      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10956      Suc. Belenes    NA       0     0    NA   NA    NA
## 10957      Suc. Belenes     3      NA     1     3    3     3
## 10958      Suc. Belenes     1       1     1     0   NA     1
## 10959      Suc. Belenes     1       3     1     1    1     4
## 10960      Suc. Belenes     1       2     1     1    1     2
## 10961      Suc. Belenes    NA       0     0    NA   NA    NA
## 10962      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10963      Suc. Belenes     1       4     1     1    4     4
## 10964      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10965      Suc. Belenes    NA      NA    NA     3    3    NA
## 10966      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10967      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10968      Suc. Belenes     6       2     4     8   11     4
## 10969      Suc. Belenes    10       3     3    10   16     6
## 10970      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10971      Suc. Belenes     4       4     4     4   NA     4
## 10972      Suc. Belenes     3      NA    NA     3    3     3
## 10973      Suc. Belenes     0      NA     0     0    0    NA
## 10974      Suc. Belenes     1       1    NA     1    1    NA
## 10975      Suc. Belenes     5       4     2     2    5     2
## 10976      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10977      Suc. Belenes     1       2     1     2    1     1
## 10978      Suc. Belenes     2       1     2     2    1     1
## 10979      Suc. Belenes     8       8     3     8    6     3
## 10980      Suc. Belenes    NA      NA    NA    NA    2    NA
## 10981      Suc. Belenes    NA      NA     1    NA   NA    NA
## 10982      Suc. Belenes    NA      NA     0    NA   NA    NA
## 10983      Suc. Belenes    NA      NA    NA    NA    1    NA
## 10984      Suc. Belenes    NA      NA    NA     2   NA     2
## 10985      Suc. Belenes     2      NA    NA     2   NA    NA
## 10986      Suc. Belenes     4       2     2     2    4     2
## 10987      Suc. Belenes    NA      NA    NA     2   NA     2
## 10988      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10989      Suc. Belenes    13       8    18     8   16     8
## 10990      Suc. Belenes    NA      NA    NA     3   NA     3
## 10991      Suc. Belenes    82      95   105   139  124    86
## 10992      Suc. Belenes     5       3     5     6    6     3
## 10993      Suc. Belenes    NA      NA    NA     6   NA    NA
## 10994      Suc. Belenes    14      11    14    11    4    11
## 10995      Suc. Belenes   229     208   215   257  268   173
## 10996      Suc. Belenes     2       4     2     4    2    NA
## 10997      Suc. Belenes    15       6     8     4    4     4
## 10998      Suc. Belenes    76      63    70    80   93    59
## 10999      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11000      Suc. Belenes     4       4     6     5    6     4
## 11001      Suc. Belenes    NA       2     3    NA    2     2
## 11002      Suc. Belenes    NA       2    NA     2    4    NA
## 11003      Suc. Belenes     3       2     1     1    2     1
## 11004      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11005      Suc. Belenes     1       1     1     1    1     1
## 11006      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11007      Suc. Belenes     2      NA    NA     2    5    NA
## 11008      Suc. Belenes     2       0     1     0    0     0
## 11009      Suc. Belenes    NA       0    NA    NA    0    NA
## 11010      Suc. Belenes     3       2    NA     2    3     2
## 11011      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11012      Suc. Belenes     2      NA    NA    NA    2    NA
## 11013      Suc. Belenes     0      NA     0     0    1     0
## 11014      Suc. Belenes     2       2     3    NA   NA    NA
## 11015      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11016      Suc. Belenes    NA       1     3    NA   NA    NA
## 11017      Suc. Belenes     1       0     0     0    0     0
## 11018      Suc. Belenes    NA      NA     2     3    5     2
## 11019      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11020      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11021      Suc. Belenes     3       6     6     8   17     6
## 11022      Suc. Belenes     0      NA     0     0    0    NA
## 11023      Suc. Belenes     1       0     1     0    1    NA
## 11024      Suc. Belenes     3       1     2     2    1     3
## 11025      Suc. Belenes     1       4     1     3    1     1
## 11026      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11027      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11028      Suc. Belenes    NA       3     3     3    8     6
## 11029      Suc. Belenes     0      NA     0     0    0    NA
## 11030      Suc. Belenes    NA       0    NA     0   NA    NA
## 11031      Suc. Belenes     3       1    NA    NA    1     1
## 11032      Suc. Belenes     1       1     1     1    1     1
## 11033      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11034      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11035      Suc. Belenes     0      NA     0     0    0    NA
## 11036      Suc. Belenes    NA       1    NA     0   NA    NA
## 11037      Suc. Belenes     3       1    NA    NA    1     1
## 11038      Suc. Belenes     1       1     1     1    1     1
## 11039      Suc. Belenes     1       1     1     3    1     1
## 11040      Suc. Belenes     8       6     3     8    8     8
## 11041      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11042      Suc. Belenes     2      NA    NA     2    2    NA
## 11043      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11044      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11045      Suc. Belenes    14       8    11    20   28    11
## 11046      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11047      Suc. Belenes     2       1     0     2    0     1
## 11048      Suc. Belenes     2       0     0     0    1     0
## 11049      Suc. Belenes     5       1     4     2    5     5
## 11050      Suc. Belenes     5      11     1     4    4     3
## 11051      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11052      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11053      Suc. Belenes     2       3    NA     4    7     1
## 11054      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11055      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11056      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11057      Suc. Belenes    11      11    11     6    8     8
## 11058      Suc. Belenes    19      13    10    13   13    13
## 11059      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11060      Suc. Belenes     8       5     5     5    8     8
## 11061      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11062      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11063      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11064      Suc. Belenes     1       6    NA     3    2     2
## 11065      Suc. Belenes     3      NA     2     5    6     2
## 11066      Suc. Belenes     2       2    NA     1   NA    NA
## 11067      Suc. Belenes     1       1    NA     1   NA    NA
## 11068      Suc. Belenes    NA       1     1     0   NA     1
## 11069      Suc. Belenes     1       1     1    NA   NA     1
## 11070      Suc. Belenes     1       1    NA    NA   NA     1
## 11071      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11072      Suc. Belenes     2       1    NA     1    2     1
## 11073      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11074      Suc. Belenes     2       2    NA     1    1     2
## 11075      Suc. Belenes     6      NA     3     6    3     6
## 11076      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11077      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11078      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11079      Suc. Belenes    NA       2    NA    NA   NA    NA
## 11080      Suc. Belenes    NA       2     2    NA   NA    NA
## 11081      Suc. Belenes     2       2     2     6   NA     4
## 11082      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11083      Suc. Belenes     6       3     6     8   NA     6
## 11084      Suc. Belenes    NA      NA    NA    NA    3    NA
## 11085      Suc. Belenes     2       2     2     2    2     2
## 11086      Suc. Belenes     2      21     2     2   NA    NA
## 11087      Suc. Belenes    NA       1     1    NA   NA     1
## 11088      Suc. Belenes     2       2    NA    NA   NA    NA
## 11089      Suc. Belenes     2       6     4     4   NA     6
## 11090      Suc. Belenes     8      11    11    11   NA     6
## 11091      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11092      Suc. Belenes     8       4     8     8   NA     8
## 11093      Suc. Belenes     5       5     5    NA   NA    NA
## 11094      Suc. Belenes    NA      NA    NA    NA   NA    38
## 11095      Suc. Belenes    35      13    54    16    3     6
## 11096      Suc. Belenes     5       6    20     5    2     5
## 11097      Suc. Belenes    NA      NA    NA    NA    9    NA
## 11098      Suc. Belenes    14      34     8    11   NA     3
## 11099      Suc. Belenes    14       6    14    11   NA    11
## 11100      Suc. Belenes    14      11    18    14   NA    18
## 11101      Suc. Belenes    99      81    70    21    4    63
## 11102      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11103      Suc. Belenes    13      21    11     4   NA     2
## 11104      Suc. Belenes    55     159    44    44   19    32
## 11105      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11106      Suc. Belenes     4       1     5     2   NA     1
## 11107      Suc. Belenes     3       3     5     5    2     3
## 11108      Suc. Belenes     2       6     4     4    4     4
## 11109      Suc. Belenes     2       3     4     2    1     1
## 11110      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11111      Suc. Belenes     1       1    NA     1    1     1
## 11112      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11113      Suc. Belenes     1      NA    NA    NA   NA     2
## 11114      Suc. Belenes     1       0     1    NA    1     1
## 11115      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11116      Suc. Belenes     1       1    NA     0    1     1
## 11117      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11118      Suc. Belenes     3       3     3     2    3     4
## 11119      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11120      Suc. Belenes    NA       2    NA    NA    2     2
## 11121      Suc. Belenes     0       0     0     0    0     1
## 11122      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11123      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11124      Suc. Belenes    NA      NA     2    NA   NA    NA
## 11125      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11126      Suc. Belenes     0       0     0     0    0     0
## 11127      Suc. Belenes    NA       1    NA     1    1     1
## 11128      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11129      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11130      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11131      Suc. Belenes    NA       4    NA     2    2     4
## 11132      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11133      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11134      Suc. Belenes     6       3     4     6   NA     3
## 11135      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11136      Suc. Belenes    NA       1    NA     0   NA     1
## 11137      Suc. Belenes     1      NA     0    NA   NA    NA
## 11138      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11139      Suc. Belenes     1      NA     1     4    2     1
## 11140      Suc. Belenes     1       1    NA    NA   NA    NA
## 11141      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11142      Suc. Belenes    NA       0     0     0    0    NA
## 11143      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11144      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11145      Suc. Belenes     3      NA     4     6    3     3
## 11146      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11147      Suc. Belenes    NA       0    NA     0   NA     1
## 11148      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11149      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11150      Suc. Belenes     1      NA     1    NA   NA     1
## 11151      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11152      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11153      Suc. Belenes    NA       0     0     0    0    NA
## 11154      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11155      Suc. Belenes    NA      NA     1     6   NA    NA
## 11156      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11157      Suc. Belenes    NA       1    NA     0    1     1
## 11158      Suc. Belenes    NA       0    NA     0    0     0
## 11159      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11160      Suc. Belenes     1       2     1     2    2     1
## 11161      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11162      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11163      Suc. Belenes     3       1     3    NA    1     3
## 11164      Suc. Belenes     6       6     3     3   NA    NA
## 11165      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11166      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11167      Suc. Belenes    NA      NA    NA     2    2    NA
## 11168      Suc. Belenes     1       3    NA    NA   NA    NA
## 11169      Suc. Belenes    NA       0     0     0    0    NA
## 11170      Suc. Belenes     2       4     2     2    2     4
## 11171      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11172      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11173      Suc. Belenes    11       6     4    11    3     8
## 11174      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11175      Suc. Belenes    NA       1    NA     0    3     1
## 11176      Suc. Belenes     3      NA     2     0   NA    NA
## 11177      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11178      Suc. Belenes     1      NA     3     4   NA     1
## 11179      Suc. Belenes     1      11     3    NA    1    NA
## 11180      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11181      Suc. Belenes    NA       0     0     0    0    NA
## 11182      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11183      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11184      Suc. Belenes     1       4    NA     1    8    NA
## 11185      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11186      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11187      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11188      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11189      Suc. Belenes    15      13    11    13   13     8
## 11190      Suc. Belenes    19      13    16    19    6     6
## 11191      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11192      Suc. Belenes    NA       4    NA    NA    7    NA
## 11193      Suc. Belenes     3       3    NA     3    3     3
## 11194      Suc. Belenes     1      NA     1    NA    1    NA
## 11195      Suc. Belenes     2       2     1     1    1     1
## 11196      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11197      Suc. Belenes     1      NA     1    NA   NA     2
## 11198      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11199      Suc. Belenes    NA      NA     2    NA   NA     1
## 11200      Suc. Belenes     6      NA     6     3    8     6
## 11201      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11202      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11203      Suc. Belenes     4       4     6     6    6     8
## 11204      Suc. Belenes     2       4     6    NA    6     6
## 11205      Suc. Belenes     1       2    NA     2    1     2
## 11206      Suc. Belenes    NA      NA     2     2   NA     2
## 11207      Suc. Belenes    11       4    32    19    4    15
## 11208      Suc. Belenes    18      16     8    18   13     8
## 11209      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11210      Suc. Belenes    29      38    35    54   44    51
## 11211      Suc. Belenes    14      14    12     9   15    17
## 11212      Suc. Belenes     5      NA    NA    NA    2     3
## 11213      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11214      Suc. Belenes    42      35    39    56   49    53
## 11215      Suc. Belenes   162     134   123   197  162    92
## 11216      Suc. Belenes    32      21    21    36   15    23
## 11217      Suc. Belenes    82      78    80   112   61    76
## 11218      Suc. Belenes     6       3     3     3    3     3
## 11219      Suc. Belenes     5       5     7     3    4     8
## 11220      Suc. Belenes     3      NA     5     5    3     5
## 11221      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11222      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11223      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11224      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11225      Suc. Belenes     0       0    NA    NA   NA     0
## 11226      Suc. Belenes     2       1    NA     2    0    NA
## 11227      Suc. Belenes     1       1    NA    NA    1    NA
## 11228      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11229      Suc. Belenes     0      NA    NA    NA   NA     0
## 11230      Suc. Belenes    NA      NA     1     1   NA     3
## 11231      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11232      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11233      Suc. Belenes    NA      NA     8     3   NA     1
## 11234      Suc. Belenes     0       1     0    NA    0    NA
## 11235      Suc. Belenes     4       1     2     3    3     1
## 11236      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11237      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11238      Suc. Belenes    NA      NA    NA    NA   NA     4
## 11239      Suc. Belenes    NA       1    NA    NA    0     0
## 11240      Suc. Belenes     2       1     2     1    1     1
## 11241      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11242      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11243      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11244      Suc. Belenes     2       1     2     1    1     1
## 11245      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11246      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11247      Suc. Belenes     3       3    NA    NA    3    NA
## 11248      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11249      Suc. Belenes     2      NA    NA    NA   NA    NA
## 11250      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11251      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11252      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11253      Suc. Belenes     2      NA     2    NA   NA    NA
## 11254      Suc. Belenes    NA       3     3     3    3     4
## 11255      Suc. Belenes    NA       1    NA    NA    0    NA
## 11256      Suc. Belenes     2       3     4     3    3     5
## 11257      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11258      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11259      Suc. Belenes    NA       1    NA     3    1    NA
## 11260      Suc. Belenes    NA      NA     3    NA   NA    NA
## 11261      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11262      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11263      Suc. Belenes    15      49    27    44   74    82
## 11264      Suc. Belenes    25      35    57    82   95   111
## 11265      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11266      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11267      Suc. Belenes    15      25    15    20   18    43
## 11268      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11269      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11270      Suc. Belenes     5      NA     5     3   16    25
## 11271      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11272      Suc. Belenes    NA       2    NA    NA    1    NA
## 11273      Suc. Belenes     1      NA     1    NA   NA     1
## 11274      Suc. Belenes     1       5     6     1    3     4
## 11275      Suc. Belenes     2       6     5     6    5     9
## 11276      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11277      Suc. Belenes     1       3     2     2    4     6
## 11278      Suc. Belenes    NA      NA    NA     6    2     2
## 11279      Suc. Belenes     2       1     2     3    4     1
## 11280      Suc. Belenes     3      NA    NA     6   NA    23
## 11281      Suc. Belenes     2      NA     1    NA   NA    NA
## 11282      Suc. Belenes     1       2     1     1    2     1
## 11283      Suc. Belenes     1       3     2     3    3     5
## 11284      Suc. Belenes    NA      NA     3    NA    3     3
## 11285      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11286      Suc. Belenes     2      NA     2     6   NA     4
## 11287      Suc. Belenes    NA      NA    NA     1    1    NA
## 11288      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11289      Suc. Belenes    17       6    11    11   11    15
## 11290      Suc. Belenes    11      14     6    17    8    17
## 11291      Suc. Belenes     7      11     7    14   11    11
## 11292      Suc. Belenes     3       3     3     3    2     5
## 11293      Suc. Belenes     2      21     4    15   40    NA
## 11294      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11295      Suc. Belenes     2       4    NA     2    4     2
## 11296      Suc. Belenes     3       3     2     5    3     3
## 11297      Suc. Belenes     2       2     1    NA    1     1
## 11298      Suc. Belenes    NA       4    NA     2    4     2
## 11299      Suc. Belenes     3      NA    NA    NA   NA     3
## 11300      Suc. Belenes     4       2     4     2    6     6
## 11301      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11302      Suc. Belenes     2       2    NA     2   NA     4
## 11303      Suc. Belenes     1       1     1    NA   NA    NA
## 11304      Suc. Belenes     6      NA    NA    NA   NA     2
## 11305      Suc. Belenes    45      32    42    42   66    11
## 11306      Suc. Belenes    NA      NA    NA    NA   NA    32
## 11307      Suc. Belenes     3       3    19    13   10    10
## 11308      Suc. Belenes    20      21    15    26   21    17
## 11309      Suc. Belenes    NA      NA     2    NA    2     6
## 11310      Suc. Belenes    34      34    25    54   23    39
## 11311      Suc. Belenes     8       3    11     3   NA     6
## 11312      Suc. Belenes    49      49    49    74   70   116
## 11313      Suc. Belenes    53      49    46    32   14    25
## 11314      Suc. Belenes    NA      NA    NA    NA   NA     7
## 11315      Suc. Belenes    32      21    30    15   27    32
## 11316      Suc. Belenes    51      61    59    66   66   125
## 11317      Suc. Belenes    76      95    87   110  110   118
## 11318      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11319      Suc. Belenes    12      15     3    12   12    15
## 11320      Suc. Belenes     7       9     5     9   16    11
## 11321      Suc. Belenes     9       6    12    10   14    14
## 11322      Suc. Belenes     6       8     6    12   12    12
## 11323      Suc. Belenes     8       9     4     4    5     7
## 11324      Suc. Belenes    NA       1     1    NA   NA    NA
## 11325      Suc. Belenes     2       1     1     1    5     8
## 11326      Suc. Belenes     4       3     3    NA   NA     5
## 11327      Suc. Belenes     3       4     3     1    3    NA
## 11328      Suc. Belenes    NA       1     0     1    2     1
## 11329      Suc. Belenes     4       2     4     4    0     8
## 11330      Suc. Belenes     4       3     3     2    4     3
## 11331      Suc. Belenes     9       7    24     1   NA    16
## 11332      Suc. Belenes    NA       1     1     1   NA     1
## 11333      Suc. Belenes     2       2     2     2   NA     4
## 11334      Suc. Belenes     0       1    NA    NA    1     3
## 11335      Suc. Belenes    NA       1     1     1   NA     2
## 11336      Suc. Belenes    NA       2     1     1    1     1
## 11337      Suc. Belenes    NA       2    NA     1   NA     2
## 11338      Suc. Belenes    NA       1     2     2   NA     2
## 11339      Suc. Belenes     1       3     2     1    2     1
## 11340      Suc. Belenes     3      NA     3     2    1     4
## 11341      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11342      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11343      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11344      Suc. Belenes     2       2     2     4    6     2
## 11345      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11346      Suc. Belenes     6       6     6     3    8    11
## 11347      Suc. Belenes    NA      NA     3    NA    3     3
## 11348      Suc. Belenes     1      NA     1    NA    4     2
## 11349      Suc. Belenes    NA       4     4     2    6     4
## 11350      Suc. Belenes    NA      NA     0     1    1     1
## 11351      Suc. Belenes    NA       0     1     1    1     1
## 11352      Suc. Belenes     2      NA     2     4    2     4
## 11353      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11354      Suc. Belenes     6       3    NA     3   NA    11
## 11355      Suc. Belenes     1       1     2     1    3     2
## 11356      Suc. Belenes     1       2     3     2   NA     4
## 11357      Suc. Belenes    NA       2     3     4   NA     1
## 11358      Suc. Belenes    NA      NA     0     1    1     1
## 11359      Suc. Belenes    NA       0     1     1    1     1
## 11360      Suc. Belenes     4      NA     2     4    4     2
## 11361      Suc. Belenes    NA      NA     2    NA   NA    NA
## 11362      Suc. Belenes     6       3     3     6    3     8
## 11363      Suc. Belenes     2      NA     2     1    3     3
## 11364      Suc. Belenes     1      NA     1    NA    2    NA
## 11365      Suc. Belenes     1       1     1     2    1     1
## 11366      Suc. Belenes    NA      NA     0     1    1     1
## 11367      Suc. Belenes     1      NA    NA     1   NA     3
## 11368      Suc. Belenes    NA       2    NA    NA   NA    NA
## 11369      Suc. Belenes     3       3     8    11    3     6
## 11370      Suc. Belenes     2       3     2     3    3     3
## 11371      Suc. Belenes    NA       2     2     2   NA     4
## 11372      Suc. Belenes    NA      NA     3     3    3     1
## 11373      Suc. Belenes    NA       0     1     1    1     1
## 11374      Suc. Belenes     6       4     2     6    6     6
## 11375      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11376      Suc. Belenes    NA       2    NA    NA   NA    NA
## 11377      Suc. Belenes     3       8     8    11    8    20
## 11378      Suc. Belenes     2       4     2     2    3     5
## 11379      Suc. Belenes     1       6     3     2    2     2
## 11380      Suc. Belenes     5       5     4     4    7     8
## 11381      Suc. Belenes    NA      NA     0     1    1     1
## 11382      Suc. Belenes    NA       0     1     1    1     1
## 11383      Suc. Belenes     1      NA     1    NA   NA    NA
## 11384      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11385      Suc. Belenes     4       8     5     4    6    11
## 11386      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11387      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11388      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11389      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11390      Suc. Belenes     2      NA     2     2    2     2
## 11391      Suc. Belenes     3      NA    NA     3    3     3
## 11392      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11393      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11394      Suc. Belenes     2      NA    NA    NA   NA    NA
## 11395      Suc. Belenes     3       4     2     3    4     2
## 11396      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11397      Suc. Belenes     1      NA    NA     3    1     2
## 11398      Suc. Belenes     2      NA    NA    NA   NA    NA
## 11399      Suc. Belenes     2      NA     1     1    2     1
## 11400      Suc. Belenes    NA      NA    NA     3    6     3
## 11401      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11402      Suc. Belenes     1      NA    NA     1   NA     1
## 11403      Suc. Belenes     6       2    NA     2   NA     4
## 11404      Suc. Belenes     2      NA     4    NA   NA    NA
## 11405      Suc. Belenes    11       6    11    13   11     8
## 11406      Suc. Belenes    NA       5    NA    NA   NA    NA
## 11407      Suc. Belenes    10       3     6     6   10     3
## 11408      Suc. Belenes   105      89    98   149  127   108
## 11409      Suc. Belenes     2       5     8     3    5     5
## 11410      Suc. Belenes    NA      NA     2     3    2     3
## 11411      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11412      Suc. Belenes     7      25    18    21   18    28
## 11413      Suc. Belenes   222     261   215   243  204   257
## 11414      Suc. Belenes     2       8    NA     2    4     4
## 11415      Suc. Belenes    11       8     4     8    6    13
## 11416      Suc. Belenes    93      91    72   125  114   146
## 11417      Suc. Belenes     3       3     3     3    3     3
## 11418      Suc. Belenes     4       3     2     6    7     8
## 11419      Suc. Belenes     2       2     2     2    2     3
## 11420      Suc. Belenes    NA      NA     2     2   NA     4
## 11421      Suc. Belenes     2       4     3     4    2     3
## 11422      Suc. Belenes     1      NA    NA     1    1     1
## 11423      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11424      Suc. Belenes     1      NA    NA     3   NA    NA
## 11425      Suc. Belenes     3      NA    NA     2    2     0
## 11426      Suc. Belenes     2       1    NA     1    1     1
## 11427      Suc. Belenes     3       2     1     3    5     3
## 11428      Suc. Belenes     1       1    NA    NA    2    NA
## 11429      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11430      Suc. Belenes    NA       2    NA    NA   NA    NA
## 11431      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11432      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11433      Suc. Belenes     0      NA    NA     0    0     0
## 11434      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11435      Suc. Belenes    NA       2    NA    NA   NA     2
## 11436      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11437      Suc. Belenes    NA       1     4     8   NA    NA
## 11438      Suc. Belenes    NA      NA     1    NA    3    NA
## 11439      Suc. Belenes    NA       2     1     1    3     4
## 11440      Suc. Belenes     3      NA    NA     1    1     2
## 11441      Suc. Belenes    NA       0     0     0   NA     0
## 11442      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11443      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11444      Suc. Belenes    NA       1     1    NA   NA    NA
## 11445      Suc. Belenes    NA      NA     2    NA    4    NA
## 11446      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11447      Suc. Belenes    NA       2     1     1    1     4
## 11448      Suc. Belenes     1      NA     1     1   NA     3
## 11449      Suc. Belenes    NA       0     0     0   NA     0
## 11450      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11451      Suc. Belenes    NA       1     1     3   NA    NA
## 11452      Suc. Belenes    NA      NA    NA    NA    1    NA
## 11453      Suc. Belenes    NA       2     1     1    1     2
## 11454      Suc. Belenes    NA      NA     1     1   NA     1
## 11455      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11456      Suc. Belenes    NA      NA    NA     3   NA     3
## 11457      Suc. Belenes    NA      NA    NA    NA    8    NA
## 11458      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11459      Suc. Belenes    NA       0     0     0   NA     0
## 11460      Suc. Belenes     2      NA    NA    NA    2    NA
## 11461      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11462      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11463      Suc. Belenes     3       1     4    14   14    NA
## 11464      Suc. Belenes     0       0     0     0    3     2
## 11465      Suc. Belenes     2       2     1     1    5     4
## 11466      Suc. Belenes    NA      NA     1     1    1     3
## 11467      Suc. Belenes    NA       0     0     0   NA     0
## 11468      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11469      Suc. Belenes    NA       1    NA    NA    3    NA
## 11470      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11471      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11472      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11473      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11474      Suc. Belenes    34      15    17    23   27    21
## 11475      Suc. Belenes    19      16    19    38   32    22
## 11476      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11477      Suc. Belenes     5       5     8    13   18     8
## 11478      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11479      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11480      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11481      Suc. Belenes     1      NA     5     4    5     2
## 11482      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11483      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11484      Suc. Belenes     1       4     1     3    1     3
## 11485      Suc. Belenes     7       7     5    15   10     8
## 11486      Suc. Belenes     1       1     1     1    0     2
## 11487      Suc. Belenes     1       4     3    NA    3    NA
## 11488      Suc. Belenes     4      NA     2     6   NA     4
## 11489      Suc. Belenes     3       2     2     2    2     2
## 11490      Suc. Belenes     6       8    14    11    8     6
## 11491      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11492      Suc. Belenes     0       0     0     1    2     1
## 11493      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11494      Suc. Belenes    NA      NA     1     1    1     1
## 11495      Suc. Belenes     2       4    NA     2    2     2
## 11496      Suc. Belenes    11      13     6    13    8    11
## 11497      Suc. Belenes    NA      NA    NA    NA    3    NA
## 11498      Suc. Belenes    14      17    20    14   14    20
## 11499      Suc. Belenes    13      13     6    11    8    13
## 11500      Suc. Belenes     1       1     1     1    3     2
## 11501      Suc. Belenes     4       4     4     6    4     8
## 11502      Suc. Belenes    NA      NA    NA     8    6    11
## 11503      Suc. Belenes     6       4     4     6    6     4
## 11504      Suc. Belenes     2       1    NA    NA    2    NA
## 11505      Suc. Belenes     2       4     2    NA    2    NA
## 11506      Suc. Belenes   108      98   116   153   82    55
## 11507      Suc. Belenes    NA      NA    NA    NA   NA    48
## 11508      Suc. Belenes    63      67    67    98   82    76
## 11509      Suc. Belenes    18      30    11    20   21    14
## 11510      Suc. Belenes     6      NA     3     8    3    NA
## 11511      Suc. Belenes    17      17    11    20   14    20
## 11512      Suc. Belenes    53      67    74   106   95    67
## 11513      Suc. Belenes   229     222   247   296  268   218
## 11514      Suc. Belenes    13      19    23    23   15    27
## 11515      Suc. Belenes    55      46    53    78   51    61
## 11516      Suc. Belenes    89      95    93   139  127    80
## 11517      Suc. Belenes     8       8     6     9    8     7
## 11518      Suc. Belenes     9       6     6     9    5     6
## 11519      Suc. Belenes     8       4     6     8   10    10
## 11520      Suc. Belenes     5       4     7     6    5     4
## 11521      Suc. Belenes    NA       1     1    NA   NA    NA
## 11522      Suc. Belenes     1       1     3     1    5     1
## 11523      Suc. Belenes     1       4     1     1    4     3
## 11524      Suc. Belenes     2       0     1     0    0     0
## 11525      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11526      Suc. Belenes     6       8    12    10   11     8
## 11527      Suc. Belenes    NA       2     2    NA    4     2
## 11528      Suc. Belenes     0       2     0     1    1     1
## 11529      Suc. Belenes     0       0     0     0    0     0
## 11530      Suc. Belenes     3      NA     2     2   NA     1
## 11531      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11532      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11533      Suc. Belenes     5       5     6     6    5     5
## 11534      Suc. Belenes     1       8     1     4    4     2
## 11535      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11536      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11537      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11538      Suc. Belenes     4       1     4     4    1     3
## 11539      Suc. Belenes    NA       0    NA     0   NA    NA
## 11540      Suc. Belenes     3       2     3     5    2     5
## 11541      Suc. Belenes     1      NA     1     1    1     2
## 11542      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11543      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11544      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11545      Suc. Belenes     4       1     1     3    1     3
## 11546      Suc. Belenes    NA       0    NA     0   NA    NA
## 11547      Suc. Belenes     8       3     3     5    2     5
## 11548      Suc. Belenes     1      NA     1     1    1     2
## 11549      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11550      Suc. Belenes    NA      NA    NA     0   NA     0
## 11551      Suc. Belenes    NA      NA    NA    NA   NA     2
## 11552      Suc. Belenes     3       2    NA     2    2     2
## 11553      Suc. Belenes    NA      NA     2     4   NA     2
## 11554      Suc. Belenes    14       8    11    11    6     8
## 11555      Suc. Belenes     2       4     4     6    4     4
## 11556      Suc. Belenes     3       1     1     4    3     1
## 11557      Suc. Belenes    NA       0    NA     0   NA    NA
## 11558      Suc. Belenes    11       6     6     6    5     5
## 11559      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11560      Suc. Belenes     6      NA     4     1    4     2
## 11561      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11562      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11563      Suc. Belenes     2      NA     0    NA   NA    NA
## 11564      Suc. Belenes    NA      NA     2    NA   NA    NA
## 11565      Suc. Belenes    NA      NA    NA     2   NA     2
## 11566      Suc. Belenes     7      13     4     3    3     4
## 11567      Suc. Belenes    NA       0    NA     0   NA    NA
## 11568      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11569      Suc. Belenes    NA       6     3     2    4     6
## 11570      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11571      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11572      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11573      Suc. Belenes     6      11     2     2    2     6
## 11574      Suc. Belenes     3      10     3    13    3    16
## 11575      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11576      Suc. Belenes    NA       5     5    NA    3     8
## 11577      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11578      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11579      Suc. Belenes    NA      NA    NA     0   NA    NA
## 11580      Suc. Belenes    NA       1    NA    NA    1     1
## 11581      Suc. Belenes     2      NA     2    NA   NA    NA
## 11582      Suc. Belenes     2       1     2    NA    1     1
## 11583      Suc. Belenes    NA       3     6    NA   NA    NA
## 11584      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11585      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11586      Suc. Belenes    NA       4     2    NA    4    NA
## 11587      Suc. Belenes     2      NA     2     4   NA     2
## 11588      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11589      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11590      Suc. Belenes    16      34    18    61   NA    NA
## 11591      Suc. Belenes    NA      NA    NA    NA   NA    44
## 11592      Suc. Belenes   187     159   133   250  257   162
## 11593      Suc. Belenes    11      17     2    20    2     2
## 11594      Suc. Belenes    NA      NA    NA     3   NA    NA
## 11595      Suc. Belenes    11      21    14     7   53    NA
## 11596      Suc. Belenes   539     557   535   402  627   472
## 11597      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11598      Suc. Belenes    19      21    NA    NA   NA    NA
## 11599      Suc. Belenes   478     526   454   511  480   249
## 11600      Suc. Belenes    NA       2    NA     1    2     1
## 11601      Suc. Belenes    NA      NA    NA    NA    2    NA
## 11602      Suc. Belenes     2       2     4     2    4     2
## 11603      Suc. Belenes     4       3     1    NA    1     2
## 11604      Suc. Belenes     1      NA     1    NA    1     1
## 11605      Suc. Belenes     8      NA    NA    NA   NA    NA
## 11606      Suc. Belenes     3       0     0    NA    0     0
## 11607      Suc. Belenes    NA      NA    NA    NA    1    NA
## 11608      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11609      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11610      Suc. Belenes     0       0     0    NA    0     0
## 11611      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11612      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11613      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11614      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11615      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11616      Suc. Belenes    NA       9     8     3   12    NA
## 11617      Suc. Belenes    NA       4    NA     7    2     3
## 11618      Suc. Belenes     1      NA    11    10   13    11
## 11619      Suc. Belenes     8      18    NA    NA   NA    NA
## 11620      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11621      Suc. Belenes    NA       0     0     1    0    NA
## 11622      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11623      Suc. Belenes    NA       1     3     3   12    NA
## 11624      Suc. Belenes    NA       2    NA     5    2     3
## 11625      Suc. Belenes     1       2     2     2    4     3
## 11626      Suc. Belenes     3      NA    NA    NA   NA    NA
## 11627      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11628      Suc. Belenes    NA       0     0     1    0    NA
## 11629      Suc. Belenes    NA       1     3     3    9    NA
## 11630      Suc. Belenes    NA       2     0     5    2     3
## 11631      Suc. Belenes     1      NA     2     2   NA     9
## 11632      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11633      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11634      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11635      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11636      Suc. Belenes    NA       6     3     3    3     3
## 11637      Suc. Belenes    NA       2    NA     5    2     3
## 11638      Suc. Belenes    NA      NA     2    19    8     6
## 11639      Suc. Belenes     3      NA    NA    NA   NA    NA
## 11640      Suc. Belenes    NA       0     0     1    0    NA
## 11641      Suc. Belenes    NA      NA    NA    NA   NA    10
## 11642      Suc. Belenes     3      18    14     8   20     8
## 11643      Suc. Belenes     0       7    NA     7    2     7
## 11644      Suc. Belenes     1      NA    17     2    8     9
## 11645      Suc. Belenes     8      10    NA    NA   NA    NA
## 11646      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11647      Suc. Belenes    NA       0     0     1    0    NA
## 11648      Suc. Belenes    NA      NA     1    NA   NA    NA
## 11649      Suc. Belenes    NA      NA     3    NA    3     1
## 11650      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11651      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11652      Suc. Belenes     4       6     8    11   13    17
## 11653      Suc. Belenes     3      16     3    13   22    29
## 11654      Suc. Belenes     3      NA    NA    NA   NA    NA
## 11655      Suc. Belenes     4      NA    NA    NA   NA    NA
## 11656      Suc. Belenes     5       3     3    10   10     8
## 11657      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11658      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11659      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11660      Suc. Belenes     2       1     1     4    4     2
## 11661      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11662      Suc. Belenes     1       1     1     3    1     3
## 11663      Suc. Belenes    NA       2    NA     2   NA    NA
## 11664      Suc. Belenes     2       2     2     2    1     2
## 11665      Suc. Belenes     6      NA     3     8   11    NA
## 11666      Suc. Belenes    NA      NA    NA     0    0     0
## 11667      Suc. Belenes     1       1     1     1    1    NA
## 11668      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11669      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11670      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11671      Suc. Belenes     4       2     6     8    2     6
## 11672      Suc. Belenes     3      NA     3     6    6     3
## 11673      Suc. Belenes     8       8    11    11   11    11
## 11674      Suc. Belenes     2       4    NA     2    4    NA
## 11675      Suc. Belenes     2       2    NA     2    4     2
## 11676      Suc. Belenes    NA      NA    NA    11   30    53
## 11677      Suc. Belenes    42      42    63    37   NA    NA
## 11678      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11679      Suc. Belenes    57      54    60    57   79    82
## 11680      Suc. Belenes    14      15    15    15   21    21
## 11681      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11682      Suc. Belenes    NA      NA    NA     6   NA    NA
## 11683      Suc. Belenes   102     106   144   173  180   190
## 11684      Suc. Belenes   144      99   166   194  187   204
## 11685      Suc. Belenes    36      23    68    42   61    89
## 11686      Suc. Belenes    66      61   106   108  171   123
## 11687      Suc. Belenes     4       4     6     6    3     3
## 11688      Suc. Belenes     6      11     9     9   12    17
## 11689      Suc. Belenes     2       8     6     4    8    12
## 11690      Suc. Belenes     4       3     5     4    4     5
## 11691      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11692      Suc. Belenes     1       2     2     3    1     4
## 11693      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11694      Suc. Belenes     2       1     1     3    2     3
## 11695      Suc. Belenes     5      NA    NA     4    1     2
## 11696      Suc. Belenes     3       0     0     0    0     0
## 11697      Suc. Belenes    NA       1    NA    NA    0    NA
## 11698      Suc. Belenes     6       6     9     4    8     6
## 11699      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11700      Suc. Belenes     8      NA     4     4    4     4
## 11701      Suc. Belenes    NA      NA    NA     1    0     0
## 11702      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11703      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11704      Suc. Belenes     0       0     0     0    0     0
## 11705      Suc. Belenes    NA      NA     1     1    1     1
## 11706      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11707      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11708      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11709      Suc. Belenes     2      NA     2    NA    2    NA
## 11710      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11711      Suc. Belenes    NA       1     4     4    5    NA
## 11712      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11713      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11714      Suc. Belenes     1       0     1     0    3     2
## 11715      Suc. Belenes     2       1     4     4    6     5
## 11716      Suc. Belenes     2       3     3     3    3     1
## 11717      Suc. Belenes     0       1     0     0    0     0
## 11718      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11719      Suc. Belenes     2      NA    NA    NA   NA    NA
## 11720      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11721      Suc. Belenes    NA       4     4     4    2    NA
## 11722      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11723      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11724      Suc. Belenes     0       1     1    NA    3     2
## 11725      Suc. Belenes     2       1     2     2    8     3
## 11726      Suc. Belenes     3       1     2     2    2     2
## 11727      Suc. Belenes     0       1     0     0    0     0
## 11728      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11729      Suc. Belenes     2       2    NA     2    2    NA
## 11730      Suc. Belenes    NA       1     4     4    2    NA
## 11731      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11732      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11733      Suc. Belenes     0       0     1     0    1     2
## 11734      Suc. Belenes     2       1     4     2    8     1
## 11735      Suc. Belenes     1       1    NA     2    1     1
## 11736      Suc. Belenes     0       1     0     0    0     0
## 11737      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11738      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11739      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11740      Suc. Belenes    NA      NA     0    NA   NA    NA
## 11741      Suc. Belenes     2      NA    NA    NA    4    NA
## 11742      Suc. Belenes     1      NA     3     1    1     1
## 11743      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11744      Suc. Belenes     2       2     4     2    2    NA
## 11745      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11746      Suc. Belenes     3       4     4     6    8     3
## 11747      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11748      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11749      Suc. Belenes     2       1     2     0    3     2
## 11750      Suc. Belenes     2       5     4     4   27     7
## 11751      Suc. Belenes     4       2     4     3    4     3
## 11752      Suc. Belenes     0       1     0     0    0     0
## 11753      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11754      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11755      Suc. Belenes     3       3     3     4    6     3
## 11756      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11757      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11758      Suc. Belenes     2       2    NA    NA    4     4
## 11759      Suc. Belenes     3       3    NA    NA    3     3
## 11760      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11761      Suc. Belenes     4       4     7     4    4    NA
## 11762      Suc. Belenes     3      NA     3     5    5     5
## 11763      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11764      Suc. Belenes     1       0    NA     1    0     0
## 11765      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11766      Suc. Belenes    NA      NA    NA    NA    1     1
## 11767      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11768      Suc. Belenes     1       1    NA    NA    1    NA
## 11769      Suc. Belenes    NA       2    NA    NA   NA    NA
## 11770      Suc. Belenes     2       2     1    NA    1    NA
## 11771      Suc. Belenes    NA       6     6    NA    6     6
## 11772      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11773      Suc. Belenes     6      11     6     8    4     6
## 11774      Suc. Belenes    11       8    11     8   11     8
## 11775      Suc. Belenes    11       8    11    13   13    17
## 11776      Suc. Belenes    NA       3    NA    NA   NA    NA
## 11777      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11778      Suc. Belenes    44      44    73    79   51    44
## 11779      Suc. Belenes     5       3     5     8    5     9
## 11780      Suc. Belenes    18      28    28    18   28    25
## 11781      Suc. Belenes   144      88   109    88  102    99
## 11782      Suc. Belenes     6      11     6     8    6    11
## 11783      Suc. Belenes    72      61    72    59   55    66
## 11784      Suc. Belenes     2      NA     2     1    2     4
## 11785      Suc. Belenes    NA       3     2     2    2     2
## 11786      Suc. Belenes    NA      NA    NA     2    2     2
## 11787      Suc. Belenes     3       2     4     4    4     4
## 11788      Suc. Belenes     2       1    NA    NA    1    NA
## 11789      Suc. Belenes    NA       1    NA    NA    1    NA
## 11790      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11791      Suc. Belenes    NA      NA     0    NA   NA    NA
## 11792      Suc. Belenes     3       0    NA    NA    0    NA
## 11793      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11794      Suc. Belenes     2      NA    NA    NA    2    NA
## 11795      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11796      Suc. Belenes     0       0    NA    NA    0    NA
## 11797      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11798      Suc. Belenes     3       6     6     6    6    NA
## 11799      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11800      Suc. Belenes    NA      NA    11     3    3     3
## 11801      Suc. Belenes    NA       4    NA     7    4     4
## 11802      Suc. Belenes     1       0    NA     1    0     0
## 11803      Suc. Belenes     1       1     1     1    2     1
## 11804      Suc. Belenes     4       2     4     2    3     4
## 11805      Suc. Belenes     1       2     1     1    2     1
## 11806      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11807      Suc. Belenes     6       3     3     3    6    NA
## 11808      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11809      Suc. Belenes    NA      NA     3     6   NA    NA
## 11810      Suc. Belenes    NA      NA    NA    NA    5     4
## 11811      Suc. Belenes     0       0    NA     0    0     0
## 11812      Suc. Belenes     1       1     1     1    1     1
## 11813      Suc. Belenes    NA       4     2     4    3     2
## 11814      Suc. Belenes     1       1     1     1    1     3
## 11815      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11816      Suc. Belenes     6       6     6     6    3     6
## 11817      Suc. Belenes    NA      NA    NA     3   NA    NA
## 11818      Suc. Belenes    NA      NA     4     4    2     7
## 11819      Suc. Belenes     1       0    NA     1    0     0
## 11820      Suc. Belenes     0      NA     2     1    2     1
## 11821      Suc. Belenes    NA      NA    NA    NA    3    NA
## 11822      Suc. Belenes     1       2     1     1    3     1
## 11823      Suc. Belenes     1       1     1     1    1     1
## 11824      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11825      Suc. Belenes    NA      NA     6     3   NA    NA
## 11826      Suc. Belenes    NA       7     4    NA    4    NA
## 11827      Suc. Belenes    NA       0    NA     0   NA    NA
## 11828      Suc. Belenes     6       2     2     4   NA     2
## 11829      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11830      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11831      Suc. Belenes     3      10    10    10    6     6
## 11832      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11833      Suc. Belenes     3       3     6     3    3    NA
## 11834      Suc. Belenes    NA      NA     4     7    7     7
## 11835      Suc. Belenes     1       0    NA     1    0     0
## 11836      Suc. Belenes     0       1     2     1    1     2
## 11837      Suc. Belenes    NA       2     4     4    5     4
## 11838      Suc. Belenes     1       3     2     3    3     2
## 11839      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11840      Suc. Belenes    NA      NA    NA    NA    3    NA
## 11841      Suc. Belenes     2      NA     2     2    2     4
## 11842      Suc. Belenes     3      NA    NA    NA    3     6
## 11843      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11844      Suc. Belenes    NA      NA    NA    NA    3    NA
## 11845      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11846      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11847      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11848      Suc. Belenes     4       4     8     9    8     8
## 11849      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11850      Suc. Belenes    NA      NA    NA    NA    1     1
## 11851      Suc. Belenes    NA      NA    NA    NA    1     1
## 11852      Suc. Belenes     4       2    NA    NA    2    NA
## 11853      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11854      Suc. Belenes     3       5    NA    NA   NA     3
## 11855      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11856      Suc. Belenes    73      57    76    67   73    79
## 11857      Suc. Belenes     2      NA     2     2    3     3
## 11858      Suc. Belenes    NA       6    NA    NA   NA    NA
## 11859      Suc. Belenes    NA      NA    NA     4    4    NA
## 11860      Suc. Belenes    81      85    88    99  116    70
## 11861      Suc. Belenes     4      NA     2     4    2     4
## 11862      Suc. Belenes    34      30    53    42   57    55
## 11863      Suc. Belenes    NA       1    NA    NA   NA     1
## 11864      Suc. Belenes     2       2    NA     2   NA     2
## 11865      Suc. Belenes     1       3     1     2   NA     1
## 11866      Suc. Belenes    NA       2     1    NA    2     1
## 11867      Suc. Belenes    NA       1     1    NA    1    NA
## 11868      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11869      Suc. Belenes    NA      NA    NA     0    1     2
## 11870      Suc. Belenes    NA       0    NA    NA    0     0
## 11871      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11872      Suc. Belenes     3       1     7    NA    3     3
## 11873      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11874      Suc. Belenes    NA       0    NA    NA    0     0
## 11875      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11876      Suc. Belenes    NA      NA     6    NA    1     3
## 11877      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11878      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11879      Suc. Belenes     3       1    NA    NA    1    NA
## 11880      Suc. Belenes    NA      NA     1    NA    1     1
## 11881      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11882      Suc. Belenes    NA      NA    NA    NA    1    NA
## 11883      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11884      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11885      Suc. Belenes     1       1     2    NA    3     2
## 11886      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11887      Suc. Belenes    NA      NA    NA    NA    4    NA
## 11888      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11889      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11890      Suc. Belenes     1       1    NA    NA    1    NA
## 11891      Suc. Belenes     1      NA     1    NA    1     1
## 11892      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11893      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11894      Suc. Belenes    NA      NA     2    NA   NA    NA
## 11895      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11896      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11897      Suc. Belenes     3      NA     3    NA    4    NA
## 11898      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11899      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11900      Suc. Belenes     3       1     4    NA    1    NA
## 11901      Suc. Belenes     1       1     1    NA    1     1
## 11902      Suc. Belenes    NA      NA    NA     2   NA    NA
## 11903      Suc. Belenes    NA       0    NA    NA   NA    NA
## 11904      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11905      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11906      Suc. Belenes    11       4    NA     2    8     6
## 11907      Suc. Belenes    16       3    NA     3    6    10
## 11908      Suc. Belenes     5       5    NA    NA   NA    NA
## 11909      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11910      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11911      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11912      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11913      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11914      Suc. Belenes     3      NA    NA    NA   NA    NA
## 11915      Suc. Belenes     3       3     2     4    3     6
## 11916      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11917      Suc. Belenes     1       2    NA     1    3     3
## 11918      Suc. Belenes     2       2    NA     1    2     2
## 11919      Suc. Belenes    NA      NA    NA     3    6     6
## 11920      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11921      Suc. Belenes    NA       0    NA    NA    0    NA
## 11922      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11923      Suc. Belenes    NA      NA    NA    NA   NA     1
## 11924      Suc. Belenes     1      NA    NA    NA   NA    NA
## 11925      Suc. Belenes    NA       4    NA    NA   NA    NA
## 11926      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11927      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11928      Suc. Belenes     6      NA     2    NA    2    NA
## 11929      Suc. Belenes    NA       1    NA    NA   NA    NA
## 11930      Suc. Belenes     4       1     2     5    3     3
## 11931      Suc. Belenes     1      NA     1    NA   NA    NA
## 11932      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11933      Suc. Belenes    11       4     6    13   11    13
## 11934      Suc. Belenes    NA      NA    NA     3   NA    NA
## 11935      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11936      Suc. Belenes     6       3     6     3    3     3
## 11937      Suc. Belenes     8       5     6     9    9    11
## 11938      Suc. Belenes    23      20     8    20   20    23
## 11939      Suc. Belenes    NA       3    NA    NA   NA    NA
## 11940      Suc. Belenes    35      25    21    42   35    35
## 11941      Suc. Belenes     7       4     4     4    4     4
## 11942      Suc. Belenes     8      11     8     2   NA    NA
## 11943      Suc. Belenes    27      15    19    27   21    27
## 11944      Suc. Belenes    49      49    53    57   82    97
## 11945      Suc. Belenes     3       2     1     4    5     8
## 11946      Suc. Belenes     4       4     3     4    4     8
## 11947      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11948      Suc. Belenes     2       1     1     1   NA    NA
## 11949      Suc. Belenes    NA      NA    NA     1   NA    NA
## 11950      Suc. Belenes    NA       1    NA     1    1     2
## 11951      Suc. Belenes     1       1    NA    NA   NA    NA
## 11952      Suc. Belenes     1       1    NA     2    2     3
## 11953      Suc. Belenes     4       0     1     4    3     3
## 11954      Suc. Belenes    NA       0    NA    NA    1    NA
## 11955      Suc. Belenes    NA       3     1     3    3     3
## 11956      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11957      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11958      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11959      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11960      Suc. Belenes     0       0    NA     0    0     0
## 11961      Suc. Belenes     1       1     1     2    2     2
## 11962      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11963      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11964      Suc. Belenes     1       1    NA     3    3    NA
## 11965      Suc. Belenes     0       0     1     0    1     0
## 11966      Suc. Belenes     1      NA    NA    NA    1    NA
## 11967      Suc. Belenes     4       1     1     1    1     3
## 11968      Suc. Belenes    NA       0    NA    NA    1    NA
## 11969      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11970      Suc. Belenes     1       1    NA    NA   NA    NA
## 11971      Suc. Belenes     0      NA     0    NA    1     0
## 11972      Suc. Belenes     1      NA    NA    NA    1    NA
## 11973      Suc. Belenes     3       1    NA     1    1     2
## 11974      Suc. Belenes    NA       0    NA    NA    1    NA
## 11975      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11976      Suc. Belenes     1       1    NA    NA   NA    NA
## 11977      Suc. Belenes     0      NA     1    NA    0     0
## 11978      Suc. Belenes     1      NA    NA    NA    1    NA
## 11979      Suc. Belenes     4       1     1     1    1     3
## 11980      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11981      Suc. Belenes     1      NA    NA    NA   NA     1
## 11982      Suc. Belenes    NA      NA    NA    NA   NA     3
## 11983      Suc. Belenes    NA      NA    NA    NA    0    NA
## 11984      Suc. Belenes     4      NA    NA    NA   NA    NA
## 11985      Suc. Belenes    NA       0    NA    NA    1    NA
## 11986      Suc. Belenes     1       1    NA    NA   NA    NA
## 11987      Suc. Belenes     0      NA     1     0    0     0
## 11988      Suc. Belenes     1       2    NA     2    1     2
## 11989      Suc. Belenes     3       2     2     3    2     3
## 11990      Suc. Belenes    NA       0    NA    NA    1    NA
## 11991      Suc. Belenes     0      NA    NA    NA   NA    NA
## 11992      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11993      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11994      Suc. Belenes    NA       1     1     4    3     4
## 11995      Suc. Belenes    11      11     6     8    8    11
## 11996      Suc. Belenes    10       3     3    10    6    10
## 11997      Suc. Belenes     3       8     3     8    5     8
## 11998      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11999      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12000      Suc. Belenes     0      NA    NA     0   NA     0
## 12001      Suc. Belenes     4       4     3     3    2    11
## 12002      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12003      Suc. Belenes    NA      NA    NA    NA    2     2
## 12004      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12005      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12006      Suc. Belenes    NA      NA    NA     2    1     1
## 12007      Suc. Belenes     6      NA    NA     3    3     3
## 12008      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12009      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12010      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12011      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12012      Suc. Belenes     2       2    NA     2    4     4
## 12013      Suc. Belenes     3      NA     3    NA    6    NA
## 12014      Suc. Belenes     4       4     2     2    6     4
## 12015      Suc. Belenes    NA       1     1     1    1     1
## 12016      Suc. Belenes    NA       1    NA     2   NA    NA
## 12017      Suc. Belenes    NA       3    NA    NA   NA    NA
## 12018      Suc. Belenes     1      NA     1     1    1     1
## 12019      Suc. Belenes     6       8     8     6    4     8
## 12020      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12021      Suc. Belenes     6       6     3     6   10    13
## 12022      Suc. Belenes     2       5     2     5    3     3
## 12023      Suc. Belenes     2       2     3     5   NA    NA
## 12024      Suc. Belenes     6      NA    NA    NA   NA    NA
## 12025      Suc. Belenes    21      11    11     7   14    18
## 12026      Suc. Belenes    42      25    32    39   35    39
## 12027      Suc. Belenes     3       3     3     3    3    NA
## 12028      Suc. Belenes    NA      NA    NA    NA    2     4
## 12029      Suc. Belenes    13      13    15    15   15    19
## 12030      Suc. Belenes    38      30    36    42   36    36
## 12031      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12032      Suc. Belenes     4       5     4     2    5     5
## 12033      Suc. Belenes     3       2     2     2    3     3
## 12034      Suc. Belenes     2       2     1     1    2     1
## 12035      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12036      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12037      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12038      Suc. Belenes     1      NA    NA    NA    2     0
## 12039      Suc. Belenes    NA      NA    NA    NA    0    NA
## 12040      Suc. Belenes     3       1     3     4    3     9
## 12041      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12042      Suc. Belenes     2      NA    NA    NA   NA     2
## 12043      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12044      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12045      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12046      Suc. Belenes    NA      NA    NA     0   NA     0
## 12047      Suc. Belenes    NA       1     1     1    3     1
## 12048      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12049      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12050      Suc. Belenes     4      NA     4     4    4     4
## 12051      Suc. Belenes     0      NA    NA     0   NA     0
## 12052      Suc. Belenes     1       3     1     0   NA     0
## 12053      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12054      Suc. Belenes     1       3     1     1    4     3
## 12055      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12056      Suc. Belenes     0      NA    NA     0   NA     0
## 12057      Suc. Belenes     1      NA     1    NA   NA    NA
## 12058      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12059      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12060      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12061      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12062      Suc. Belenes     0      NA    NA     0   NA     0
## 12063      Suc. Belenes     1      NA     1    NA   NA    NA
## 12064      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12065      Suc. Belenes    NA      NA    NA    NA    3     2
## 12066      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12067      Suc. Belenes     3       1     1     3    1    NA
## 12068      Suc. Belenes    NA       3    NA    NA   NA     3
## 12069      Suc. Belenes     7       4     4     4    4     4
## 12070      Suc. Belenes     0      NA    NA     0   NA     0
## 12071      Suc. Belenes     1      NA     1     0   NA    NA
## 12072      Suc. Belenes     4       4     4     2    6     4
## 12073      Suc. Belenes     3       5     3     4    3     3
## 12074      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12075      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12076      Suc. Belenes     3       3     1     2   NA     2
## 12077      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12078      Suc. Belenes     3       3     3     4    3     3
## 12079      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12080      Suc. Belenes    25     169     8    38   55    17
## 12081      Suc. Belenes     3     111    16    51  101    13
## 12082      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12083      Suc. Belenes    18      63    10    15   36    10
## 12084      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12085      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12086      Suc. Belenes     6       6     5    NA   NA     2
## 12087      Suc. Belenes     8       3     5    NA   NA    NA
## 12088      Suc. Belenes     5      NA    NA    NA   NA    NA
## 12089      Suc. Belenes     3       3     2     4    2     2
## 12090      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12091      Suc. Belenes    NA      NA    NA     0   NA     1
## 12092      Suc. Belenes    10       8     5     5    5     6
## 12093      Suc. Belenes     4       4     1     6    7     4
## 12094      Suc. Belenes     3       3     3     5    1     2
## 12095      Suc. Belenes    NA       1     1    11    6     2
## 12096      Suc. Belenes     2       2    NA    NA   NA    NA
## 12097      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12098      Suc. Belenes     3       2     1     5    1     2
## 12099      Suc. Belenes    NA       3     3    NA    3    NA
## 12100      Suc. Belenes     1      NA    NA     5   NA    NA
## 12101      Suc. Belenes     1       1     0     2    0     1
## 12102      Suc. Belenes     3       1     2     4    3     4
## 12103      Suc. Belenes     5      13     4     3    3     1
## 12104      Suc. Belenes     2      NA    NA    NA   NA    NA
## 12105      Suc. Belenes     4       4     2     4    6     2
## 12106      Suc. Belenes     4       2     1     1    1     1
## 12107      Suc. Belenes     8       6     6     8    6     8
## 12108      Suc. Belenes     8      11     6    11   14     8
## 12109      Suc. Belenes     7       3     3     3    7     2
## 12110      Suc. Belenes    25      19    23    27   27    25
## 12111      Suc. Belenes     3       2     2     4    3     3
## 12112      Suc. Belenes     5       3     3     5    5     2
## 12113      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12114      Suc. Belenes     4       6     2     4    4     4
## 12115      Suc. Belenes     3       2     3     3    3     3
## 12116      Suc. Belenes     6      NA    NA    NA    3    NA
## 12117      Suc. Belenes     6       2     6     6    6     4
## 12118      Suc. Belenes     1       1     1     1    2     1
## 12119      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12120      Suc. Belenes    42      34    25    30   30    23
## 12121      Suc. Belenes     3       3     3    13    3     3
## 12122      Suc. Belenes     6       3     3    NA   NA     6
## 12123      Suc. Belenes    13      13     6    16   16     6
## 12124      Suc. Belenes    41      38    41    42   35    42
## 12125      Suc. Belenes     2      NA    NA    NA    2    NA
## 12126      Suc. Belenes    11      17    17    17   20    20
## 12127      Suc. Belenes    70      67    46    63   70    81
## 12128      Suc. Belenes   134      92   106   127   99   162
## 12129      Suc. Belenes     2      NA    NA    NA   NA    NA
## 12130      Suc. Belenes     4       8     8     8   11     6
## 12131      Suc. Belenes   188     144   142   150  167   165
## 12132      Suc. Belenes   150     144   131   194  180   161
## 12133      Suc. Belenes    24      21    18    21   21    18
## 12134      Suc. Belenes    16      14    13    14   17    15
## 12135      Suc. Belenes    20      17    21    21   26    21
## 12136      Suc. Belenes    12      10    12    12   20    18
## 12137      Suc. Belenes    17      17    11    12   14    15
## 12138      Suc. Belenes    NA      NA     1     1   NA    NA
## 12139      Suc. Belenes     4       2     4     8    1     4
## 12140      Suc. Belenes    NA       1    NA     2   NA    NA
## 12141      Suc. Belenes     5       2     3     6    5     5
## 12142      Suc. Belenes     1      NA    NA    NA   NA     1
## 12143      Suc. Belenes    NA      NA     1    NA    1    NA
## 12144      Suc. Belenes     4       0     0     2    0     0
## 12145      Suc. Belenes    NA       1    NA    NA    2    NA
## 12146      Suc. Belenes    11      14    40    23   34    10
## 12147      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12148      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12149      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12150      Suc. Belenes     8       2     6    15    8    11
## 12151      Suc. Belenes     3       1     2     2    3     3
## 12152      Suc. Belenes    NA       1     1     2    1    NA
## 12153      Suc. Belenes     2       1     1     1    1    NA
## 12154      Suc. Belenes    NA      NA     1     1   NA    NA
## 12155      Suc. Belenes    NA      NA     1    NA    1    NA
## 12156      Suc. Belenes     1       1     1     2    1     1
## 12157      Suc. Belenes     5       3     5     5    6     5
## 12158      Suc. Belenes     2       2     2    NA    2     2
## 12159      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12160      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12161      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12162      Suc. Belenes     4       2    NA     4    4     4
## 12163      Suc. Belenes    14       6    NA     8    6     8
## 12164      Suc. Belenes    NA      NA    NA     0   NA     1
## 12165      Suc. Belenes     3       3     1     0    1     2
## 12166      Suc. Belenes     8       3     2     2    3     4
## 12167      Suc. Belenes    11      11    10    13   10    15
## 12168      Suc. Belenes     0       2     2     2    2    NA
## 12169      Suc. Belenes    NA       0     0     1    1     0
## 12170      Suc. Belenes     1       0    NA    NA   NA    NA
## 12171      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12172      Suc. Belenes     3       3    NA     3    3     3
## 12173      Suc. Belenes    NA      NA    NA     0   NA     0
## 12174      Suc. Belenes     3       2     1     1    1     0
## 12175      Suc. Belenes     2       3     2     2    3     4
## 12176      Suc. Belenes     3       5     3     3    8     5
## 12177      Suc. Belenes     0      NA    NA    NA   NA    NA
## 12178      Suc. Belenes    NA       0     0     1    1     0
## 12179      Suc. Belenes     1       0    NA    NA   NA    NA
## 12180      Suc. Belenes     3      NA    NA    NA   NA     3
## 12181      Suc. Belenes    NA      NA    NA     0   NA     1
## 12182      Suc. Belenes     2       2     1     1    1     3
## 12183      Suc. Belenes     2       3     2     2    3     4
## 12184      Suc. Belenes     8      NA     3     3    3     5
## 12185      Suc. Belenes     0      NA    NA    NA   NA    NA
## 12186      Suc. Belenes     1       0    NA    NA   NA    NA
## 12187      Suc. Belenes    12       8     5     8   10     8
## 12188      Suc. Belenes     3       3     6     8    3    NA
## 12189      Suc. Belenes    NA      NA    NA    NA    4    NA
## 12190      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12191      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12192      Suc. Belenes    13       8    10    10    9    13
## 12193      Suc. Belenes    NA       0     0     1    1     0
## 12194      Suc. Belenes     4       4     2     8    4     6
## 12195      Suc. Belenes     8       8     3    11   20    NA
## 12196      Suc. Belenes    NA      NA     4    NA   NA    NA
## 12197      Suc. Belenes    NA      NA    NA     0   NA     1
## 12198      Suc. Belenes     3       3     1     2    2     4
## 12199      Suc. Belenes     2       3     4     4    5     4
## 12200      Suc. Belenes    30      14    18    16   13    18
## 12201      Suc. Belenes     3       2     5     3    2     3
## 12202      Suc. Belenes    NA       0     0     1    1     0
## 12203      Suc. Belenes     1       0    NA    NA   NA    NA
## 12204      Suc. Belenes     3      NA     1     2    1    NA
## 12205      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12206      Suc. Belenes     7      15    13    13    7     8
## 12207      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12208      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12209      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12210      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12211      Suc. Belenes     2      NA     2     4    2     2
## 12212      Suc. Belenes     3      NA     3     6    3     6
## 12213      Suc. Belenes    NA      NA    NA    NA    0    NA
## 12214      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12215      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12216      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12217      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12218      Suc. Belenes     1       1     1    NA    1    NA
## 12219      Suc. Belenes     2       2     3     3    4     3
## 12220      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12221      Suc. Belenes    NA      NA     1     1    2     2
## 12222      Suc. Belenes    NA      NA     2     1    2     2
## 12223      Suc. Belenes     6       3     8     8    8     6
## 12224      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12225      Suc. Belenes    NA      NA     0    NA    0     0
## 12226      Suc. Belenes     1      NA    NA    NA    1    NA
## 12227      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12228      Suc. Belenes    NA       2    NA    NA   NA    NA
## 12229      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12230      Suc. Belenes     4      NA     2     4    2     2
## 12231      Suc. Belenes     2       1     1     1    1    NA
## 12232      Suc. Belenes    17       8     6    15   19    13
## 12233      Suc. Belenes    NA       5     2     6    6     9
## 12234      Suc. Belenes    17      11     8    20   17    23
## 12235      Suc. Belenes    13      19     6    11   13    17
## 12236      Suc. Belenes     4       3     2     4    3     5
## 12237      Suc. Belenes     5      NA    NA     3    3     2
## 12238      Suc. Belenes     1       1     1     1    1     1
## 12239      Suc. Belenes    NA       2    NA     4    4     4
## 12240      Suc. Belenes     3      NA    NA    NA   NA    NA
## 12241      Suc. Belenes     2       2     2     2    4     4
## 12242      Suc. Belenes     1       1     1     1    2     1
## 12243      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12244      Suc. Belenes    23      21    23    25   38    38
## 12245      Suc. Belenes    NA      NA    NA    NA   NA     6
## 12246      Suc. Belenes    22      13    13    22   32    29
## 12247      Suc. Belenes     9       6     6     5   11     9
## 12248      Suc. Belenes    54      54    48    60   73    70
## 12249      Suc. Belenes    42      32    28    25   46    46
## 12250      Suc. Belenes    74      77    53    77   85    95
## 12251      Suc. Belenes    NA       2     2     4   11    11
## 12252      Suc. Belenes    30      40    27    30   53    49
## 12253      Suc. Belenes    34      34    30    40   55    53
## 12254      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12255      Suc. Belenes    10       6     7     6   10    10
## 12256      Suc. Belenes     6       6     3     6    5     6
## 12257      Suc. Belenes     6       4     4    NA    4     8
## 12258      Suc. Belenes     2       1     1     2    2     1
## 12259      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12260      Suc. Belenes    NA      NA     1     1    3     3
## 12261      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12262      Suc. Belenes     1       1     1     3    1     3
## 12263      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12264      Suc. Belenes     3       0     2     0    0     0
## 12265      Suc. Belenes     1       1     1     1    1     1
## 12266      Suc. Belenes     3       3     3     3    5     4
## 12267      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12268      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12269      Suc. Belenes    NA      NA     1    NA   NA    NA
## 12270      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12271      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12272      Suc. Belenes     0       0     1     0    1     1
## 12273      Suc. Belenes     2       1     3     3    3     1
## 12274      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12275      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12276      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12277      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12278      Suc. Belenes     1       4    NA     6    3     3
## 12279      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12280      Suc. Belenes    NA      NA    NA     0   NA    NA
## 12281      Suc. Belenes     1      NA     1     1    1    NA
## 12282      Suc. Belenes     3       2     3     4    3     2
## 12283      Suc. Belenes    NA       0     0     0    0     0
## 12284      Suc. Belenes     0       0    NA    NA   NA    NA
## 12285      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12286      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12287      Suc. Belenes     1       1    NA    NA    3    NA
## 12288      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12289      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12290      Suc. Belenes     1      NA     1     1    1    NA
## 12291      Suc. Belenes     1       1     1     3    3     1
## 12292      Suc. Belenes    NA       0     0     0    0     0
## 12293      Suc. Belenes     0       0    NA    NA   NA    NA
## 12294      Suc. Belenes     1       1    NA    NA    3    NA
## 12295      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12296      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12297      Suc. Belenes     1      NA     1     1    1    NA
## 12298      Suc. Belenes     3       2    NA     3    1     1
## 12299      Suc. Belenes     0       0    NA    NA   NA    NA
## 12300      Suc. Belenes     2       1     1     1    1    NA
## 12301      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12302      Suc. Belenes    NA      NA    NA    NA    3     3
## 12303      Suc. Belenes    NA      NA    NA    NA    2    NA
## 12304      Suc. Belenes    NA      NA     1    NA   NA     1
## 12305      Suc. Belenes    NA       0     0     0    0     0
## 12306      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12307      Suc. Belenes    NA      NA    NA    NA   NA    10
## 12308      Suc. Belenes     6       4     8     3    6     8
## 12309      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12310      Suc. Belenes     0      NA     0    NA    0     0
## 12311      Suc. Belenes     1      NA     1     1    1     2
## 12312      Suc. Belenes     4       3     3     3    3     2
## 12313      Suc. Belenes    NA       0     0     0    0     0
## 12314      Suc. Belenes     0       0    NA    NA   NA    NA
## 12315      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12316      Suc. Belenes     1       2    NA     3    5     4
## 12317      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12318      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12319      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12320      Suc. Belenes     2       2     2     2    2     4
## 12321      Suc. Belenes     6       3     6     3   10     3
## 12322      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12323      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12324      Suc. Belenes    NA       3     3    NA   NA     3
## 12325      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12326      Suc. Belenes    NA       1    NA     0   NA    NA
## 12327      Suc. Belenes    NA      NA     0    NA    0     0
## 12328      Suc. Belenes     1      NA     1    NA    1     1
## 12329      Suc. Belenes     2       2     1     1    2     3
## 12330      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12331      Suc. Belenes    NA      NA     1     1    1     1
## 12332      Suc. Belenes    NA      NA     1     1    1     1
## 12333      Suc. Belenes     3      NA    NA    NA   NA    NA
## 12334      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12335      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12336      Suc. Belenes     1      NA    NA    NA   NA     1
## 12337      Suc. Belenes     2       4     2     6    4     2
## 12338      Suc. Belenes    NA      NA    NA     3   NA    NA
## 12339      Suc. Belenes     2       2     2     2   NA     2
## 12340      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12341      Suc. Belenes    NA       0     1    NA    0    NA
## 12342      Suc. Belenes     1      NA    NA    NA    0    NA
## 12343      Suc. Belenes    NA       2    NA    NA   NA    NA
## 12344      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12345      Suc. Belenes    13      13     8    24   18    21
## 12346      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12347      Suc. Belenes    76      48    73    82   63    86
## 12348      Suc. Belenes     6       9     6     9    8     8
## 12349      Suc. Belenes    NA      NA    NA     6   NA    NA
## 12350      Suc. Belenes    18      NA     4    11   11     7
## 12351      Suc. Belenes   159     183   113   162  141    92
## 12352      Suc. Belenes     2       4     2     2    4     2
## 12353      Suc. Belenes     6      11     4    13    2     2
## 12354      Suc. Belenes    66      72    76    93   61    78
## 12355      Suc. Belenes     5       5     6     4    6     6
## 12356      Suc. Belenes     2       2     2     3    2    NA
## 12357      Suc. Belenes    NA       2    NA     4    2     2
## 12358      Suc. Belenes     3       2     2     1    2     2
## 12359      Suc. Belenes     1      NA     1     1    1     1
## 12360      Suc. Belenes     1      NA     1     1    1    NA
## 12361      Suc. Belenes     1      NA    NA    NA    1    NA
## 12362      Suc. Belenes    NA      NA     0     0    0     0
## 12363      Suc. Belenes     6       5     3     4    2     5
## 12364      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12365      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12366      Suc. Belenes    NA       0    NA     0    0    NA
## 12367      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12368      Suc. Belenes     0       0     0     0    0     0
## 12369      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12370      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12371      Suc. Belenes    NA       2     2    NA    2    NA
## 12372      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12373      Suc. Belenes    NA       3     3    NA   NA     6
## 12374      Suc. Belenes    NA      NA     0    NA    0     0
## 12375      Suc. Belenes     1       1    NA     1    1     2
## 12376      Suc. Belenes    NA       1     2     3    4     3
## 12377      Suc. Belenes    NA       1     1     1   NA    NA
## 12378      Suc. Belenes    NA      NA    NA     0   NA    NA
## 12379      Suc. Belenes     2      NA    NA     2   NA    NA
## 12380      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12381      Suc. Belenes    NA      NA    NA    NA    3     3
## 12382      Suc. Belenes    NA      NA     0    NA    0     0
## 12383      Suc. Belenes    NA       1    NA     0    0     1
## 12384      Suc. Belenes    NA       3    NA     3    2     1
## 12385      Suc. Belenes    NA       1    NA     1    1     1
## 12386      Suc. Belenes    NA      NA    NA     0   NA    NA
## 12387      Suc. Belenes    NA      NA    NA     2    2    NA
## 12388      Suc. Belenes    NA      NA     0    NA    0     0
## 12389      Suc. Belenes    NA       0    NA    NA   NA     0
## 12390      Suc. Belenes    NA       1    NA     1    2     1
## 12391      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12392      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12393      Suc. Belenes     3       3     3     6   NA     3
## 12394      Suc. Belenes     0       0    NA     0    0    NA
## 12395      Suc. Belenes     2      NA     2    NA   NA    NA
## 12396      Suc. Belenes    NA      NA    NA     0   NA    NA
## 12397      Suc. Belenes     2      NA     5     3   NA     3
## 12398      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12399      Suc. Belenes    NA       3     8     6    3     3
## 12400      Suc. Belenes    NA      NA     4     4   NA    NA
## 12401      Suc. Belenes    NA      NA     0    NA    0     0
## 12402      Suc. Belenes     3       2     1     2    2     3
## 12403      Suc. Belenes     2       3     2     5    4     3
## 12404      Suc. Belenes     1       1     1     2    1     1
## 12405      Suc. Belenes    NA      NA    NA     0   NA    NA
## 12406      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12407      Suc. Belenes    NA      NA     1     1    2    NA
## 12408      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12409      Suc. Belenes     2       2     6     2    4     4
## 12410      Suc. Belenes     3      NA     3     6    3     6
## 12411      Suc. Belenes    NA      NA     3     5   NA    NA
## 12412      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12413      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12414      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12415      Suc. Belenes     1       1     1     1    1     1
## 12416      Suc. Belenes     2       2     2     1    2     3
## 12417      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12418      Suc. Belenes    NA       1     1    NA    2     1
## 12419      Suc. Belenes    NA       2     1    NA   NA     1
## 12420      Suc. Belenes     8       6     3     6    6     6
## 12421      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12422      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12423      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12424      Suc. Belenes     8       6     6     8    6     8
## 12425      Suc. Belenes     3       3     3     3    3     6
## 12426      Suc. Belenes     6       6     8    11    8     8
## 12427      Suc. Belenes     8       4     8     4    6     6
## 12428      Suc. Belenes     1       1    NA    NA   NA     1
## 12429      Suc. Belenes     1      NA     0     0   NA     0
## 12430      Suc. Belenes    NA       2     2     2    2    NA
## 12431      Suc. Belenes     2      NA    NA     2   NA     2
## 12432      Suc. Belenes     1      NA     2    NA    1    NA
## 12433      Suc. Belenes    11      13    11    11   13    17
## 12434      Suc. Belenes     5       5     5     3    5     8
## 12435      Suc. Belenes     6       6     6    10    3    10
## 12436      Suc. Belenes     3       6     6     6    6    10
## 12437      Suc. Belenes     3       3     3     5    5     5
## 12438      Suc. Belenes    14      17    17    17   20    17
## 12439      Suc. Belenes     8      NA     6     8    6     3
## 12440      Suc. Belenes    39      32    28    35   32    39
## 12441      Suc. Belenes    92      46    77    95   92   102
## 12442      Suc. Belenes     8      13    13    15   17    17
## 12443      Suc. Belenes    17      13    15    19   23    25
## 12444      Suc. Belenes     3       3     5     5    6     6
## 12445      Suc. Belenes     2       2     3     2    3     3
## 12446      Suc. Belenes     2       2     2     2    1     2
## 12447      Suc. Belenes    NA       1     1    NA   NA    NA
## 12448      Suc. Belenes    NA      NA     1     3    3     1
## 12449      Suc. Belenes     1       1     1     1    2     1
## 12450      Suc. Belenes     1       1     1     1    3     1
## 12451      Suc. Belenes     1       1     1     1    1     1
## 12452      Suc. Belenes     1       1     1     1    1     1
## 12453      Suc. Belenes     4       4     3     2    2     2
## 12454      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12455      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12456      Suc. Belenes     0      NA    NA    NA   NA    NA
## 12457      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12458      Suc. Belenes    NA      NA     1    NA    1     1
## 12459      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12460      Suc. Belenes    NA      NA     0    NA   NA     1
## 12461      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12462      Suc. Belenes     1       1     2     1    1     1
## 12463      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12464      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12465      Suc. Belenes    NA      NA     0    NA    0    NA
## 12466      Suc. Belenes    NA      NA     2    NA   NA    NA
## 12467      Suc. Belenes     3       1     3     3    2     3
## 12468      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12469      Suc. Belenes     1       1     2     1    1     1
## 12470      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12471      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12472      Suc. Belenes    NA      NA    NA    NA    0    NA
## 12473      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12474      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12475      Suc. Belenes     1       1     2     1    1     1
## 12476      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12477      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12478      Suc. Belenes    NA      NA    NA    NA    0    NA
## 12479      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12480      Suc. Belenes     1       1     1     1    1     3
## 12481      Suc. Belenes     6       6    NA     8    6     6
## 12482      Suc. Belenes     0      NA    NA    NA   NA    NA
## 12483      Suc. Belenes     1      NA     1     1   NA     1
## 12484      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12485      Suc. Belenes     2      NA    NA    NA   NA    NA
## 12486      Suc. Belenes     1       1     2     1    1     1
## 12487      Suc. Belenes    NA      NA     3     3    3     3
## 12488      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12489      Suc. Belenes    NA      NA    NA     0    0    NA
## 12490      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12491      Suc. Belenes     3       1     2     3    2     1
## 12492      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12493      Suc. Belenes     6       2     2     2    4     4
## 12494      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12495      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12496      Suc. Belenes     2      11     4     2    2     2
## 12497      Suc. Belenes     3       3     3     3    3     6
## 12498      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12499      Suc. Belenes    NA      15    NA    NA   NA    NA
## 12500      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12501      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12502      Suc. Belenes     4       2     1     4    4     6
## 12503      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12504      Suc. Belenes     1       1     1     1    1     2
## 12505      Suc. Belenes    NA       1     2     1    1     1
## 12506      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12507      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12508      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12509      Suc. Belenes     6       2     2     4    2     4
## 12510      Suc. Belenes     4      11    NA    NA    2    NA
## 12511      Suc. Belenes     1      NA    NA    NA   NA     1
## 12512      Suc. Belenes    NA      NA    NA    NA   NA     6
## 12513      Suc. Belenes    26      24    18    24   18    11
## 12514      Suc. Belenes    NA      NA    NA    NA   NA    10
## 12515      Suc. Belenes     3      10   111     6   10    44
## 12516      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12517      Suc. Belenes    12      27     8    15   11    12
## 12518      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12519      Suc. Belenes    NA      NA    NA    17   NA    NA
## 12520      Suc. Belenes    NA      14    21    18   21    NA
## 12521      Suc. Belenes    42     109   169    28  296    18
## 12522      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12523      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12524      Suc. Belenes    11      27    25    30   80    NA
## 12525      Suc. Belenes    70      87   120    49  182    30
## 12526      Suc. Belenes     7       5    11     6    9     6
## 12527      Suc. Belenes    10      10    10     4   14     8
## 12528      Suc. Belenes    NA       2     5     2    2    NA
## 12529      Suc. Belenes     1       1     1     1    1     2
## 12530      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12531      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12532      Suc. Belenes     1       2     0     0    0     0
## 12533      Suc. Belenes     2      NA     1     1    1    NA
## 12534      Suc. Belenes     2       2     2    NA   NA    NA
## 12535      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12536      Suc. Belenes     0      NA     0     0    0     1
## 12537      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12538      Suc. Belenes     0       0     0     0    0     0
## 12539      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12540      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12541      Suc. Belenes     3       6     3     3    6    NA
## 12542      Suc. Belenes     0       2     3     2    1     1
## 12543      Suc. Belenes     1       1     9    NA    1     1
## 12544      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12545      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12546      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12547      Suc. Belenes    NA       1    NA    NA    1    NA
## 12548      Suc. Belenes    NA      NA     0     0    0    NA
## 12549      Suc. Belenes     1       1     1    NA    1     1
## 12550      Suc. Belenes    NA       1    NA    NA    1    NA
## 12551      Suc. Belenes    NA      NA     0     0   NA    NA
## 12552      Suc. Belenes     1       1     1     2    1     1
## 12553      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12554      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12555      Suc. Belenes    NA       6     3    NA    3    NA
## 12556      Suc. Belenes    NA      NA     4    NA    4    NA
## 12557      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12558      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12559      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12560      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12561      Suc. Belenes    NA      12     3     3    6     3
## 12562      Suc. Belenes    NA       0     1     1    1     1
## 12563      Suc. Belenes     1       1     1    NA    5     1
## 12564      Suc. Belenes    NA       8    NA    NA   NA     1
## 12565      Suc. Belenes    NA      NA     0    NA   NA    NA
## 12566      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12567      Suc. Belenes     1       1     1     1    3     3
## 12568      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12569      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12570      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12571      Suc. Belenes    13      19    15    11   17    19
## 12572      Suc. Belenes    10      16    10    16   22    22
## 12573      Suc. Belenes     5       8     3     8    8    13
## 12574      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12575      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12576      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12577      Suc. Belenes     0      NA    NA     0   NA     1
## 12578      Suc. Belenes     1       3    NA    NA   NA    NA
## 12579      Suc. Belenes     1       2     1     1    1     2
## 12580      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12581      Suc. Belenes    NA       1     1    NA   NA    NA
## 12582      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12583      Suc. Belenes    NA       2     1    NA   NA    NA
## 12584      Suc. Belenes     6      NA     3     3   NA     3
## 12585      Suc. Belenes    NA       2     2    NA   NA    NA
## 12586      Suc. Belenes    NA      NA    NA    NA    1     2
## 12587      Suc. Belenes     2       2     4     4    4     2
## 12588      Suc. Belenes     1      NA    NA    NA    1     1
## 12589      Suc. Belenes    32      38    32    38   30    42
## 12590      Suc. Belenes    37      37    45    45   42    37
## 12591      Suc. Belenes     8      11    14     6   11    14
## 12592      Suc. Belenes     7       8    14    14   10    10
## 12593      Suc. Belenes    30      27    30    32   30    32
## 12594      Suc. Belenes     3       3     4     4    3     4
## 12595      Suc. Belenes     3       3     5     3    3     6
## 12596      Suc. Belenes    NA       2     2     4    8    11
## 12597      Suc. Belenes    NA       6     6     6    8    11
## 12598      Suc. Belenes     2       6     6     6    8     6
## 12599      Suc. Belenes    NA       1    NA     1   NA     2
## 12600      Suc. Belenes    40      38    42    42   46    49
## 12601      Suc. Belenes     8       8     5    13   11     8
## 12602      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12603      Suc. Belenes     3       3     3    NA    3     3
## 12604      Suc. Belenes     9       3     2    NA   NA    NA
## 12605      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12606      Suc. Belenes    25      31    37    45   39    48
## 12607      Suc. Belenes     8       3    17    11   23    23
## 12608      Suc. Belenes    42      53    49    67   56    56
## 12609      Suc. Belenes    32      35    46    49   39    49
## 12610      Suc. Belenes    15      17    25    32   24     5
## 12611      Suc. Belenes    NA      NA    NA    NA   NA    19
## 12612      Suc. Belenes    40      42    53    57   51    51
## 12613      Suc. Belenes   108      70    80    82   63    57
## 12614      Suc. Belenes    15      16    18    16   14    17
## 12615      Suc. Belenes     8       6     8     9    9     9
## 12616      Suc. Belenes     2       4     8     6    6     2
## 12617      Suc. Belenes     5       8     7     7    6     6
## 12618      Suc. Belenes    NA       1     1    NA   NA    NA
## 12619      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12620      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12621      Suc. Belenes     4       1    NA     1   NA     1
## 12622      Suc. Belenes     2       1     1     1   NA    NA
## 12623      Suc. Belenes     1       2    NA     1   NA    NA
## 12624      Suc. Belenes     2       3    NA     2   NA     3
## 12625      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12626      Suc. Belenes    NA      NA     2     2   NA     2
## 12627      Suc. Belenes     1       0    NA    NA   NA     1
## 12628      Suc. Belenes     1       1    NA     1   NA    NA
## 12629      Suc. Belenes    NA       2     3     2    1    NA
## 12630      Suc. Belenes     1      NA    NA     3   NA    NA
## 12631      Suc. Belenes     2       3     2     2   NA    NA
## 12632      Suc. Belenes     0       0     0    NA   NA    NA
## 12633      Suc. Belenes     8       7     8     6    8     4
## 12634      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12635      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12636      Suc. Belenes     2       4     6     6    4     4
## 12637      Suc. Belenes    NA       3     3    NA   NA     3
## 12638      Suc. Belenes     0      NA    NA     0   NA     1
## 12639      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12640      Suc. Belenes    NA      NA     2    NA   NA    NA
## 12641      Suc. Belenes     4       1     3     6    5     4
## 12642      Suc. Belenes     3      NA     3    NA   NA     3
## 12643      Suc. Belenes     0      NA    NA     0   NA     1
## 12644      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12645      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12646      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12647      Suc. Belenes     2       4     2     4    6     4
## 12648      Suc. Belenes    NA       3     3     3    3     3
## 12649      Suc. Belenes     0      NA    NA     0   NA     1
## 12650      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12651      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12652      Suc. Belenes     6       3     3     6    6     4
## 12653      Suc. Belenes     5       6     4     4    1     4
## 12654      Suc. Belenes    NA       6     3     3    3     3
## 12655      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12656      Suc. Belenes     0      NA     0    NA    2    NA
## 12657      Suc. Belenes     2       4     2     4    2     2
## 12658      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12659      Suc. Belenes     8       6     6     8    8     8
## 12660      Suc. Belenes     3       3     6     6    6     6
## 12661      Suc. Belenes     0      NA    NA     0   NA     1
## 12662      Suc. Belenes    NA       0    NA     1   NA    NA
## 12663      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12664      Suc. Belenes     4       8     8     9    8     7
## 12665      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12666      Suc. Belenes     4       4     2     2   NA     2
## 12667      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12668      Suc. Belenes    NA      NA    NA    NA   NA     8
## 12669      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12670      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12671      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12672      Suc. Belenes    NA      NA    NA    NA   NA     4
## 12673      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12674      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12675      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12676      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12677      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12678      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12679      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12680      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12681      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12682      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12683      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12684      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12685      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12686      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12687      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12688      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12689      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12690      Suc. Belenes    NA      NA    NA    NA   NA     4
## 12691      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12692      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12693      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12694      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12695      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12696      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12697      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12698      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12699      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12700      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12701      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12702      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12703      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12704      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12705      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12706      Suc. Belenes    NA      NA    NA    NA   NA     6
## 12707      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12708      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12709      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12710      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12711      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12712      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12713      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12714      Suc. Belenes     4       8    11     6    2     2
## 12715      Suc. Belenes     6      10     3    10    3     3
## 12716      Suc. Belenes     3       5     3     3   NA    NA
## 12717      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12718      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12719      Suc. Belenes     1       1    NA     1    1     1
## 12720      Suc. Belenes     1       1     0     0   NA    NA
## 12721      Suc. Belenes     1       1     1     2    2     2
## 12722      Suc. Belenes     2       2     1     2    2     2
## 12723      Suc. Belenes    NA       0     0     1    0     2
## 12724      Suc. Belenes    NA       1     1     1    2     1
## 12725      Suc. Belenes     2      NA    NA    NA   NA    NA
## 12726      Suc. Belenes     2       2     1     2    2     2
## 12727      Suc. Belenes    NA       3    NA     3    3     8
## 12728      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12729      Suc. Belenes    NA       1     1    NA    1    NA
## 12730      Suc. Belenes    NA      NA    NA    NA   NA     3
## 12731      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12732      Suc. Belenes     4       6     6     8    2     6
## 12733      Suc. Belenes     2      NA     6     2    4     4
## 12734      Suc. Belenes     1      NA    NA    NA   NA    NA
## 12735      Suc. Belenes     8       8     6     8    8     8
## 12736      Suc. Belenes    17      17    11    17   14     8
## 12737      Suc. Belenes    NA      NA     2    NA    2     2
## 12738      Suc. Belenes    17      15    21    21   34    34
## 12739      Suc. Belenes    NA      NA    NA     6   NA    NA
## 12740      Suc. Belenes     3       3     3     3    3     3
## 12741      Suc. Belenes     3       9    12    12   11    12
## 12742      Suc. Belenes     3       2     3     3    5     5
## 12743      Suc. Belenes    NA      NA    NA     1    3    NA
## 12744      Suc. Belenes    11       8    17    14   25    23
## 12745      Suc. Belenes    14      21    32    35   32    28
## 12746      Suc. Belenes    18      14    14    32   32    28
## 12747      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12748      Suc. Belenes     4       6    17    19   15    11
## 12749      Suc. Belenes    21      21    34    49   78    89
## 12750      Suc. Belenes     3       3     3     3    6     6
## 12751      Suc. Belenes     6       6     8     9    9     9
## 12752      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12753      Suc. Belenes     3       4     3     3    5     4
## 12754      Suc. Belenes    NA       1     1    NA   NA    NA
## 12755      Suc. Belenes     2       1     1     1    2     4
## 12756      Suc. Belenes     2       1     1     2    1     2
## 12757      Suc. Belenes     1      NA     1     1    1     3
## 12758      Suc. Belenes     2       1     1     2    1     3
## 12759      Suc. Belenes     1      NA    NA    NA    0    NA
## 12760      Suc. Belenes     3       3     2     2    2     5
## 12761      Suc. Belenes     4       2     2     3    4     7
## 12762      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12763      Suc. Belenes    NA       0     0    NA    1     1
## 12764      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12765      Suc. Belenes    NA       0     0     0    0     0
## 12766      Suc. Belenes     1       1    NA     1    1     1
## 12767      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12768      Suc. Belenes    NA       6     6     3    6     6
## 12769      Suc. Belenes     0      NA    NA    NA   NA    NA
## 12770      Suc. Belenes     2       2    NA    NA    1    NA
## 12771      Suc. Belenes     2       1     4     3    7     6
## 12772      Suc. Belenes    NA       0     0     0    0     0
## 12773      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12774      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12775      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12776      Suc. Belenes    NA       0     0     0    0     0
## 12777      Suc. Belenes    NA      NA    NA     3   NA    NA
## 12778      Suc. Belenes    NA       0    NA    NA   NA    NA
## 12779      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12780      Suc. Belenes     1       1     3     1    3     3
## 12781      Suc. Belenes     1      NA     1     1    1     4
## 12782      Suc. Belenes     6       8    11     8    8     8
## 12783      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12784      Suc. Belenes    NA       0     0     0    0     0
## 12785      Suc. Belenes     3      NA     3    NA   NA     6
## 12786      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12787      Suc. Belenes    NA      NA     0     0    0     0
## 12788      Suc. Belenes    NA      NA     2    NA    1    NA
## 12789      Suc. Belenes     4       1     4     3    8     7
## 12790      Suc. Belenes    NA       0     0     0    0     0
## 12791      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12792      Suc. Belenes     2       1     4     1    3     7
## 12793      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12794      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12795      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12796      Suc. Belenes    NA       2    NA     2   11    17
## 12797      Suc. Belenes    NA       3    NA    10   16    19
## 12798      Suc. Belenes     7       4     7     7   11     7
## 12799      Suc. Belenes    NA      NA     3    NA   10     5
## 12800      Suc. Belenes     7       5     4    10    5     4
## 12801      Suc. Belenes     8      13     8    13   13    15
## 12802      Suc. Belenes     5       5     8     5   10     8
## 12803      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12804      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12805      Suc. Belenes     3       3    NA    NA    3    NA
## 12806      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12807      Suc. Belenes    46      51    34    53   46    59
## 12808      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12809      Suc. Belenes    34      31    42    14   51    39
## 12810      Suc. Belenes    14      14    14    25   22    14
## 12811      Suc. Belenes    NA      NA    NA    68  108    91
## 12812      Suc. Belenes    21      27    10    11   27    25
## 12813      Suc. Belenes     3       3     8     8   17     9
## 12814      Suc. Belenes     2       2     2     3    1     2
## 12815      Suc. Belenes    13      11    11    13   11    13
## 12816      Suc. Belenes    NA      NA    NA    NA   NA     6
## 12817      Suc. Belenes     8      21    21    30   34    30
## 12818      Suc. Belenes     4       4     4     7    6     5
## 12819      Suc. Belenes    97     110    91   114  137   106
## 12820      Suc. Belenes    71      69    32   103  132    95
## 12821      Suc. Belenes    NA      NA    NA    NA   NA    32
## 12822      Suc. Belenes   371     342   327   501  453   514
## 12823      Suc. Belenes   209     189   239   224  270   191
## 12824      Suc. Belenes    72      38    63    77  113   138
## 12825      Suc. Belenes    68     104   138   192  192   141
## 12826      Suc. Belenes    65      70    37   104   51   104
## 12827      Suc. Belenes   303     299   222   296  363   377
## 12828      Suc. Belenes    NA     898   775    NA   NA    NA
## 12829      Suc. Belenes    10      14    10    10    2    NA
## 12830      Suc. Belenes   275     264   224   256  427   423
## 12831      Suc. Belenes    NA      NA    NA    NA   42   169
## 12832      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12833      Suc. Belenes    NA      NA    NA     1   NA    NA
## 12834      Suc. Belenes    69      63    54    66   66    60
## 12835      Suc. Belenes   107     120   124   152  207   165
## 12836      Suc. Belenes    39      32    44    45   48    47
## 12837      Suc. Belenes    66      60    64    76  122    98
## 12838      Suc. Belenes    35      36     5    NA   NA    NA
## 12839      Suc. Belenes    NA       3    NA    NA   NA    NA
## 12840      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12841      Suc. Belenes     4       3    NA    NA   NA    NA
## 12842      Suc. Belenes     4       2     2     4    4     6
## 12843      Suc. Belenes    NA      NA    NA    NA    0     1
## 12844      Suc. Belenes    NA       5     8     5   10     5
## 12845      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12846      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12847      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12848      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12849      Suc. Belenes    NA      NA    NA    NA    8     2
## 12850      Suc. Belenes    23      34    28    23   39    34
## 12851      Suc. Belenes     9       3     4     8    8     9
## 12852      Suc. Belenes    30      25    22    36   44    34
## 12853      Suc. Belenes     6       4     4     8    6     4
## 12854      Suc. Belenes    59      70    53    74   72    72
## 12855      Suc. Belenes    10       8    30     3   10     8
## 12856      Suc. Belenes    NA       1     0     1    2    NA
## 12857      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12858      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12859      Suc. Belenes     3       3     3     3   NA    NA
## 12860      Suc. Belenes    NA      NA    NA    NA    1    NA
## 12861      Suc. Belenes     3       5     7     3    7     3
## 12862      Suc. Belenes    19      17    25    23   27    23
## 12863      Suc. Belenes    NA      NA    25    NA   NA    NA
## 12864      Suc. Belenes    NA       1    NA     1    2    NA
## 12865      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12866      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12867      Suc. Belenes    NA      NA    NA    NA    5     2
## 12868      Suc. Belenes    20      14    20     8   28    14
## 12869      Suc. Belenes     9       3     3     5    7     4
## 12870      Suc. Belenes    34      25    24    37   42    32
## 12871      Suc. Belenes     6       4     4     6    6     4
## 12872      Suc. Belenes    53      59    42    72   76    70
## 12873      Suc. Belenes     8      NA    30     5   10     3
## 12874      Suc. Belenes    NA      NA     3    NA   NA    NA
## 12875      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12876      Suc. Belenes     8      14     6     6    3    14
## 12877      Suc. Belenes    NA      NA    NA     2   NA    NA
## 12878      Suc. Belenes    19      23    17    23   23    27
## 12879      Suc. Belenes    NA      NA    25    NA   NA     3
## 12880      Suc. Belenes    NA       1     0     1    2    NA
## 12881      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12882      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12883      Suc. Belenes    NA      NA    NA    NA   NA     2
## 12884      Suc. Belenes    NA      NA    NA    NA    8    NA
## 12885      Suc. Belenes    25      23    31    31   39    34
## 12886      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12887      Suc. Belenes    12       3     3     8   10     4
## 12888      Suc. Belenes    34      34    42    36   51    36
## 12889      Suc. Belenes     6       6     6     8   11    15
## 12890      Suc. Belenes    63      74    74    89   76    93
## 12891      Suc. Belenes    15       8    56     8   13    13
## 12892      Suc. Belenes    NA       1     0     1    2    NA
## 12893      Suc. Belenes     1       3    NA    NA   NA     1
## 12894      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12895      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12896      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12897      Suc. Belenes     2       6    NA     2    2     2
## 12898      Suc. Belenes     6       6    NA     3    3     3
## 12899      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12900      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12901      Suc. Belenes     0       0    NA     0   NA     0
## 12902      Suc. Belenes    NA       2     1    NA   NA    NA
## 12903      Suc. Belenes    NA      NA     0     1    3     1
## 12904      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12905      Suc. Belenes     1       1    NA     1    1     1
## 12906      Suc. Belenes     2       4    NA    NA   NA    NA
## 12907      Suc. Belenes    NA       2    NA     1    1     1
## 12908      Suc. Belenes     3       3    NA     3    3    NA
## 12909      Suc. Belenes    NA       1    NA    NA    1     1
## 12910      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12911      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12912      Suc. Belenes     8       2     6     6    8    11
## 12913      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12914      Suc. Belenes     2      NA    NA    NA   NA    NA
## 12915      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12916      Suc. Belenes    16      18    29    13   21    13
## 12917      Suc. Belenes    NA      NA    NA    NA   NA     6
## 12918      Suc. Belenes    54      86    57   181   41   146
## 12919      Suc. Belenes     2       5     2     3    5     3
## 12920      Suc. Belenes    NA      NA     2    NA   NA    NA
## 12921      Suc. Belenes     3       3    NA     6   NA    NA
## 12922      Suc. Belenes    NA      NA    NA     4    7     4
## 12923      Suc. Belenes   151     197   183   116  299   271
## 12924      Suc. Belenes     4       2     2     2    4    NA
## 12925      Suc. Belenes     8       4     6     4    6     4
## 12926      Suc. Belenes    80      89    93   209   80   125
## 12927      Suc. Belenes     1       1     1     2    1     1
## 12928      Suc. Belenes     2       2    NA     3    3    NA
## 12929      Suc. Belenes     2      NA     2     4    4     2
## 12930      Suc. Belenes     2       1     1     2    2     1
## 12931      Suc. Belenes     1       1    NA     1    1     1
## 12932      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12933      Suc. Belenes     1       1    NA    NA   NA    NA
## 12934      Suc. Belenes     1       0     0     0    0     0
## 12935      Suc. Belenes     2      NA     1     1    3     3
## 12936      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12937      Suc. Belenes    NA       1    NA     0    1     1
## 12938      Suc. Belenes    NA       1    NA    NA   NA    NA
## 12939      Suc. Belenes     0       0     0     0    0     0
## 12940      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12941      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12942      Suc. Belenes     2      NA    NA    NA    2     2
## 12943      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12944      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12945      Suc. Belenes     3       3     3    NA    3     1
## 12946      Suc. Belenes     0       0    NA     0   NA     0
## 12947      Suc. Belenes    NA       0     0     4    3     4
## 12948      Suc. Belenes    NA       1     4     1    1    NA
## 12949      Suc. Belenes    NA       1     1     1    1     1
## 12950      Suc. Belenes    NA       0     0    NA   NA    NA
## 12951      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12952      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12953      Suc. Belenes    NA      NA    NA    NA    3     4
## 12954      Suc. Belenes     0       0    NA     0   NA     0
## 12955      Suc. Belenes    NA       0     0     1    0     3
## 12956      Suc. Belenes    NA       1    NA     1    1     2
## 12957      Suc. Belenes    NA       1    NA     1    1     1
## 12958      Suc. Belenes    NA       0     0    NA   NA    NA
## 12959      Suc. Belenes    NA      NA    NA    NA    2     2
## 12960      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12961      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12962      Suc. Belenes     0       0    NA     0   NA     0
## 12963      Suc. Belenes    NA       0    NA     1    3     2
## 12964      Suc. Belenes    NA       1     2     1    1    NA
## 12965      Suc. Belenes    NA       1    NA     1    1     1
## 12966      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12967      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12968      Suc. Belenes    NA       6    NA    NA    3    NA
## 12969      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12970      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12971      Suc. Belenes    NA       0     0    NA   NA    NA
## 12972      Suc. Belenes    NA       2     4    NA    4     2
## 12973      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12974      Suc. Belenes    NA      NA    NA    NA   NA     1
## 12975      Suc. Belenes    NA       3    NA     6    8     1
## 12976      Suc. Belenes     0       0    NA     0   NA     0
## 12977      Suc. Belenes     2       0     0     1    3     2
## 12978      Suc. Belenes     2       1    NA     1    1    NA
## 12979      Suc. Belenes    NA       2     1     1    1     1
## 12980      Suc. Belenes    NA       0     0    NA   NA    NA
## 12981      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12982      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12983      Suc. Belenes    NA      NA    NA    NA    2    NA
## 12984      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12985      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12986      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12987      Suc. Belenes    13      NA    NA    NA   NA    NA
## 12988      Suc. Belenes     3      NA    NA    NA   NA    NA
## 12989      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12990      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12991      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12992      Suc. Belenes     1       1     1     1    1     1
## 12993      Suc. Belenes     3       2     1     2    3     2
## 12994      Suc. Belenes    NA      NA    NA    NA   NA     0
## 12995      Suc. Belenes     2      NA    NA    NA   NA     1
## 12996      Suc. Belenes    NA      NA     2    NA   NA    NA
## 12997      Suc. Belenes    NA      NA     2     1   NA    NA
## 12998      Suc. Belenes    NA       3     3    NA    3     3
## 12999      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13000      Suc. Belenes    NA       0     0     0    0     0
## 13001      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13002      Suc. Belenes    NA      NA    NA     1    1    NA
## 13003      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13004      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13005      Suc. Belenes     6       2     4     4    6     6
## 13006      Suc. Belenes    14      15     8    15   17    12
## 13007      Suc. Belenes     6       6    11    14   11     3
## 13008      Suc. Belenes    NA       4    NA    NA   NA    NA
## 13009      Suc. Belenes     2      NA    NA     2    2    NA
## 13010      Suc. Belenes    11      19     8    15    8    11
## 13011      Suc. Belenes     1       5     2     3    4     5
## 13012      Suc. Belenes     2       2     2    NA    2     2
## 13013      Suc. Belenes    21      15    11    17   23    19
## 13014      Suc. Belenes     8       3     3     3    5     3
## 13015      Suc. Belenes     6      NA     3     3    3    10
## 13016      Suc. Belenes     3      NA     6     3    6     6
## 13017      Suc. Belenes     6       3     3     5    8    24
## 13018      Suc. Belenes     6       6     6     8   11     8
## 13019      Suc. Belenes    20      14     6    30   17    17
## 13020      Suc. Belenes    32      32    18    67   42    46
## 13021      Suc. Belenes    28      25    28    18    4     7
## 13022      Suc. Belenes     3       2     5     2    3    NA
## 13023      Suc. Belenes    40      85    23    32   34    51
## 13024      Suc. Belenes    76      85    72   129  110   169
## 13025      Suc. Belenes     3       3     3     3    9     3
## 13026      Suc. Belenes     7       5     4     4    5     3
## 13027      Suc. Belenes     9       9     3     6    6     5
## 13028      Suc. Belenes     6       2     6     6    6     6
## 13029      Suc. Belenes     4       2     2     3    5     3
## 13030      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13031      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13032      Suc. Belenes    NA      NA    NA    NA    1     1
## 13033      Suc. Belenes     1      NA    NA    NA    1     1
## 13034      Suc. Belenes     3       2    NA     4    1     3
## 13035      Suc. Belenes     2      NA    NA     2   NA    NA
## 13036      Suc. Belenes     1       1     1     1    1     1
## 13037      Suc. Belenes     3       3     1     3    2     3
## 13038      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13039      Suc. Belenes    NA       2    NA    NA    4    NA
## 13040      Suc. Belenes     1       0     0     0    1    NA
## 13041      Suc. Belenes     1       1     2    NA   NA    NA
## 13042      Suc. Belenes     2       1     6    NA   NA    NA
## 13043      Suc. Belenes    NA       1     5    NA   NA    NA
## 13044      Suc. Belenes     3       2     6     2   NA    NA
## 13045      Suc. Belenes    NA       1     1     1    1    NA
## 13046      Suc. Belenes     1       1    NA    NA    1     1
## 13047      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13048      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13049      Suc. Belenes    NA      NA    NA     3    3    NA
## 13050      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13051      Suc. Belenes     4       4    NA     4    6     2
## 13052      Suc. Belenes     1       2     1     1    2     2
## 13053      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13054      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13055      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13056      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13057      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13058      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13059      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13060      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13061      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13062      Suc. Belenes    NA      NA    NA    NA   NA     3
## 13063      Suc. Belenes     3      NA    NA    NA   NA    NA
## 13064      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13065      Suc. Belenes     8       2    NA     6    6     4
## 13066      Suc. Belenes     3       1    NA     3    1    NA
## 13067      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13068      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13069      Suc. Belenes    NA      NA    NA    NA   NA     3
## 13070      Suc. Belenes    NA       3     6    NA   NA    NA
## 13071      Suc. Belenes     0      NA     2    NA    0    NA
## 13072      Suc. Belenes     8       4     2     6    8     4
## 13073      Suc. Belenes     2       3    10     3    4     3
## 13074      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13075      Suc. Belenes    NA       4     1     1    4    NA
## 13076      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13077      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13078      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13079      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13080      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13081      Suc. Belenes     2       2    13     2    2     2
## 13082      Suc. Belenes    NA       3     6     3    3     3
## 13083      Suc. Belenes    NA       5    NA    NA   NA    NA
## 13084      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13085      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13086      Suc. Belenes     0       1    NA    NA   NA    NA
## 13087      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13088      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13089      Suc. Belenes    12      NA    10     4    7     7
## 13090      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13091      Suc. Belenes     2       1     2     1    1    NA
## 13092      Suc. Belenes    NA      NA     2    NA    2     4
## 13093      Suc. Belenes    NA       2     1     2    2     1
## 13094      Suc. Belenes    NA      NA    11    34   NA    28
## 13095      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13096      Suc. Belenes    NA      NA     1     2    2    NA
## 13097      Suc. Belenes    NA      NA    NA    NA    1     3
## 13098      Suc. Belenes     2       2    NA    NA   NA    NA
## 13099      Suc. Belenes    11      32    NA    NA   13    40
## 13100      Suc. Belenes    NA      NA    NA    NA    2     2
## 13101      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13102      Suc. Belenes    14      11    21    11   18    21
## 13103      Suc. Belenes    13      25    27    NA   38    25
## 13104      Suc. Belenes     1       2     3     2    5     2
## 13105      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13106      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13107      Suc. Belenes     2       4     4     6    2     6
## 13108      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13109      Suc. Belenes    NA       2    17    13   23    51
## 13110      Suc. Belenes    32      58    42    32   42     5
## 13111      Suc. Belenes    NA      NA    NA    NA   NA    41
## 13112      Suc. Belenes    10      13    13    10   16    19
## 13113      Suc. Belenes     6      41    21    29   39    44
## 13114      Suc. Belenes     6      NA    NA    NA    3     5
## 13115      Suc. Belenes    NA      NA    NA     6   NA    NA
## 13116      Suc. Belenes     8      11     8     6   11     6
## 13117      Suc. Belenes    32      77    95    42   85   116
## 13118      Suc. Belenes   240     208   356   151  254   257
## 13119      Suc. Belenes    15       2     8    NA   NA    NA
## 13120      Suc. Belenes     6      36    68    25   51    27
## 13121      Suc. Belenes   104     144   171   135  123   213
## 13122      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13123      Suc. Belenes     8      19    NA    17   15    13
## 13124      Suc. Belenes     2       3     3     5    6     8
## 13125      Suc. Belenes    NA      NA     4     4    4     6
## 13126      Suc. Belenes     5      17    NA    NA    5     3
## 13127      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13128      Suc. Belenes     1       2     1     1    1     1
## 13129      Suc. Belenes    NA      NA    NA     1    1    NA
## 13130      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13131      Suc. Belenes     2       0     0     0    0     0
## 13132      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13133      Suc. Belenes    NA       0    23    NA   NA     4
## 13134      Suc. Belenes     3      NA     2     1    2     4
## 13135      Suc. Belenes    NA      NA    NA    NA    0     1
## 13136      Suc. Belenes     6      NA     4     4    6     6
## 13137      Suc. Belenes     0       2     3     2    2     2
## 13138      Suc. Belenes    NA       1     4    NA   NA     6
## 13139      Suc. Belenes    NA       1    13     4   NA     4
## 13140      Suc. Belenes     2       1     2     2   NA     6
## 13141      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13142      Suc. Belenes     0       0     0     0    0     1
## 13143      Suc. Belenes     3       3     2     3    4     4
## 13144      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13145      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13146      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13147      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13148      Suc. Belenes     1       1    NA     3    3     3
## 13149      Suc. Belenes     2       3    NA    NA   NA    NA
## 13150      Suc. Belenes     0       1    NA    NA   NA    NA
## 13151      Suc. Belenes    NA       1     1     1    0     2
## 13152      Suc. Belenes     2       5    10    NA    6     2
## 13153      Suc. Belenes     1       1     1     1    1     1
## 13154      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13155      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13156      Suc. Belenes     1       1    NA     3   NA    NA
## 13157      Suc. Belenes    NA       3    NA     2    2    NA
## 13158      Suc. Belenes     0       0    NA    NA   NA    NA
## 13159      Suc. Belenes    NA       0    NA     0   NA     2
## 13160      Suc. Belenes    NA       3     3     2   11    NA
## 13161      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13162      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13163      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13164      Suc. Belenes     1       1    NA    NA   NA     3
## 13165      Suc. Belenes     2       3    NA     2    2    NA
## 13166      Suc. Belenes     0       1    NA    NA   NA    NA
## 13167      Suc. Belenes     0       0     1    NA    0     0
## 13168      Suc. Belenes    NA       3     3    NA   NA    NA
## 13169      Suc. Belenes    NA       1     1     1   NA    NA
## 13170      Suc. Belenes    NA       1     1    NA    1     3
## 13171      Suc. Belenes    NA       3     6     3    6     6
## 13172      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13173      Suc. Belenes    NA       1     3     2   NA     2
## 13174      Suc. Belenes    NA       2     8     2   11    NA
## 13175      Suc. Belenes     1       1     1    NA    1    NA
## 13176      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13177      Suc. Belenes     1       1     3     3    3     8
## 13178      Suc. Belenes     2       3    NA    NA    2    NA
## 13179      Suc. Belenes     0       1    NA    NA   NA    NA
## 13180      Suc. Belenes     0      NA     2     2    0     2
## 13181      Suc. Belenes    NA       5     5     4    4    NA
## 13182      Suc. Belenes     2       1     1     1    3     1
## 13183      Suc. Belenes    NA      NA     1     1   NA    NA
## 13184      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13185      Suc. Belenes     1      NA     6     6    4     5
## 13186      Suc. Belenes    NA       0    NA     2    1    NA
## 13187      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13188      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13189      Suc. Belenes     2      NA    NA     2   NA    NA
## 13190      Suc. Belenes     3      NA    NA    25    3     3
## 13191      Suc. Belenes    NA      NA    NA     3   NA    NA
## 13192      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13193      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13194      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13195      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13196      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13197      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13198      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13199      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13200      Suc. Belenes     2      NA     2    NA   NA    NA
## 13201      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13202      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13203      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13204      Suc. Belenes     4       2     2     4    6     2
## 13205      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13206      Suc. Belenes    21      13     4    25    6     4
## 13207      Suc. Belenes    NA      NA     3    NA   NA    NA
## 13208      Suc. Belenes    NA      NA    NA     1   NA    NA
## 13209      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13210      Suc. Belenes    NA      NA    NA    NA   32    NA
## 13211      Suc. Belenes    13      26    11    61   21    NA
## 13212      Suc. Belenes    NA      NA    NA    NA   NA    63
## 13213      Suc. Belenes     3      51    73   165  127   155
## 13214      Suc. Belenes    14      12    20    75   20     8
## 13215      Suc. Belenes    NA      NA    NA    17    3    NA
## 13216      Suc. Belenes    NA      NA    NA    NA    3    NA
## 13217      Suc. Belenes    NA      NA    85    28  292   313
## 13218      Suc. Belenes   218     268   162   472  623   289
## 13219      Suc. Belenes    NA      NA     2    NA   NA     8
## 13220      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13221      Suc. Belenes    21      27     4    NA   30   137
## 13222      Suc. Belenes   182     201   258   450  446   412
## 13223      Suc. Belenes    NA      NA     5    NA   NA    NA
## 13224      Suc. Belenes     5       3     3    14   18    12
## 13225      Suc. Belenes     6       2     2     5    3     3
## 13226      Suc. Belenes     2       4     6     2    2    NA
## 13227      Suc. Belenes    NA       3     2     2    1    NA
## 13228      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13229      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13230      Suc. Belenes    NA      NA    NA     1   NA    NA
## 13231      Suc. Belenes     4       5    NA    NA   NA    NA
## 13232      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13233      Suc. Belenes     7      NA     2    NA   NA    NA
## 13234      Suc. Belenes    NA       0    NA    NA   NA     0
## 13235      Suc. Belenes     1       5    NA     4   NA     7
## 13236      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13237      Suc. Belenes    NA      NA    NA     4   NA    NA
## 13238      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13239      Suc. Belenes    NA      NA    NA    NA    1     1
## 13240      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13241      Suc. Belenes    NA      NA    NA     2   NA    NA
## 13242      Suc. Belenes    NA      NA    NA    NA   NA    10
## 13243      Suc. Belenes    NA       6    NA     8    4     8
## 13244      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13245      Suc. Belenes     0       2    NA    NA    2     2
## 13246      Suc. Belenes    NA      NA    NA     2   NA    NA
## 13247      Suc. Belenes     1       6     6     5   19     3
## 13248      Suc. Belenes    NA       4    NA     1    1     1
## 13249      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13250      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13251      Suc. Belenes    NA      NA    NA    NA   NA     3
## 13252      Suc. Belenes    NA      NA    NA    14    1    NA
## 13253      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13254      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13255      Suc. Belenes     1       4     4     3    8     1
## 13256      Suc. Belenes    NA      NA    NA     3    3     1
## 13257      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13258      Suc. Belenes    NA      NA    NA     3   NA    NA
## 13259      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13260      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13261      Suc. Belenes    NA      NA    NA    NA   NA     4
## 13262      Suc. Belenes     1       2     2     1    8     1
## 13263      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13264      Suc. Belenes    NA      NA    NA     1    1    NA
## 13265      Suc. Belenes    NA      NA    NA    NA   NA    13
## 13266      Suc. Belenes    NA       3    NA     6    3     6
## 13267      Suc. Belenes    NA       2     2     4   11     2
## 13268      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13269      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13270      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13271      Suc. Belenes    NA      NA    NA    NA   NA    10
## 13272      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13273      Suc. Belenes     3       6     3    51   46    23
## 13274      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13275      Suc. Belenes    NA       6    NA    NA    2     4
## 13276      Suc. Belenes     1       6     4     1   17     3
## 13277      Suc. Belenes    NA       1    NA     1    1     2
## 13278      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13279      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13280      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13281      Suc. Belenes    NA       4     7     2    3     2
## 13282      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13283      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13284      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13285      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13286      Suc. Belenes     4       2    NA    NA    2     4
## 13287      Suc. Belenes     3       3    NA    NA    3     3
## 13288      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13289      Suc. Belenes    NA      NA    NA    NA   NA     2
## 13290      Suc. Belenes    NA      NA    NA     1    1    NA
## 13291      Suc. Belenes     1       4     1     2    4     4
## 13292      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13293      Suc. Belenes    NA       1    NA    NA    1     1
## 13294      Suc. Belenes    NA       2    NA    NA    1     1
## 13295      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13296      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13297      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13298      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13299      Suc. Belenes     2      NA     2     2    2    NA
## 13300      Suc. Belenes    NA      NA    NA     3   NA    NA
## 13301      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13302      Suc. Belenes     4       2    NA    NA    4     2
## 13303      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13304      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13305      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13306      Suc. Belenes    18      18    13    16   18     8
## 13307      Suc. Belenes    NA      NA    NA    NA   NA     6
## 13308      Suc. Belenes    19      54    22    86   22    25
## 13309      Suc. Belenes     6       9     5     8    8     3
## 13310      Suc. Belenes     2      NA    NA    NA   NA     5
## 13311      Suc. Belenes    42      32    25    46   39    25
## 13312      Suc. Belenes   187      77   116   141   74    70
## 13313      Suc. Belenes     6       2     2    NA   NA    NA
## 13314      Suc. Belenes    13       8     8    11   11     8
## 13315      Suc. Belenes    66      78    68    97   49    63
## 13316      Suc. Belenes     3       4     4     6    3     4
## 13317      Suc. Belenes     2       5     3     5    3     2
## 13318      Suc. Belenes    NA       2    NA    NA    2     2
## 13319      Suc. Belenes    NA       1     1     2    1     2
## 13320      Suc. Belenes    NA       1    NA    NA    1     1
## 13321      Suc. Belenes    NA      NA    NA     1    1    NA
## 13322      Suc. Belenes     1      NA    NA     2   NA    NA
## 13323      Suc. Belenes     1       0    NA    NA    0     1
## 13324      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13325      Suc. Belenes     1       1     1     2    2     2
## 13326      Suc. Belenes    NA      NA    NA    NA   NA     2
## 13327      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13328      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13329      Suc. Belenes    NA       0    NA    NA    0     0
## 13330      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13331      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13332      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13333      Suc. Belenes     8       3    NA     6    3    NA
## 13334      Suc. Belenes     0      NA    NA    NA    0    NA
## 13335      Suc. Belenes     4       1     1    NA    5     3
## 13336      Suc. Belenes     1       1     1     1    1     1
## 13337      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13338      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13339      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13340      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13341      Suc. Belenes    NA      NA    NA    NA    1     0
## 13342      Suc. Belenes     2       1     1     2    3     1
## 13343      Suc. Belenes    NA      NA     1     1    1    NA
## 13344      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13345      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13346      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13347      Suc. Belenes    NA       0    NA    NA    0    NA
## 13348      Suc. Belenes     2       1     1    NA    3     3
## 13349      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13350      Suc. Belenes    NA       1     1    NA   NA    NA
## 13351      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13352      Suc. Belenes     6       3    NA     6   NA     3
## 13353      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13354      Suc. Belenes     2       2    NA    NA   NA    NA
## 13355      Suc. Belenes    NA      NA    NA     1    1     1
## 13356      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13357      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13358      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13359      Suc. Belenes     6       6    NA     6   NA    NA
## 13360      Suc. Belenes    NA      NA    NA    NA    0     1
## 13361      Suc. Belenes     2       1     1     2    3     5
## 13362      Suc. Belenes     1       1     3    NA    1     1
## 13363      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13364      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13365      Suc. Belenes    NA      NA    NA     2    1     1
## 13366      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13367      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13368      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13369      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13370      Suc. Belenes     2      15    NA    NA    8    NA
## 13371      Suc. Belenes    29       6    NA    NA    6    NA
## 13372      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13373      Suc. Belenes    NA       0     0     1   NA     3
## 13374      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13375      Suc. Belenes    NA       2    NA    NA   NA     1
## 13376      Suc. Belenes     2       2    NA     2   NA    NA
## 13377      Suc. Belenes    NA       2    NA    NA   NA     1
## 13378      Suc. Belenes     3       3     3    NA   NA     3
## 13379      Suc. Belenes    NA       3     1    NA   NA    NA
## 13380      Suc. Belenes    NA      NA    NA    NA   NA     1
## 13381      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13382      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13383      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13384      Suc. Belenes     2       2    NA    NA    2     2
## 13385      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13386      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13387      Suc. Belenes    13       5    40    37   63    NA
## 13388      Suc. Belenes    NA      NA    NA    NA   NA    38
## 13389      Suc. Belenes    10      25    44   130    3    98
## 13390      Suc. Belenes     3       6     2    NA   NA    NA
## 13391      Suc. Belenes     3       3    NA     4   NA    NA
## 13392      Suc. Belenes    21      25    56    92   85    85
## 13393      Suc. Belenes    21     173    95   169  169   218
## 13394      Suc. Belenes    11       4    15    25   25    25
## 13395      Suc. Belenes     6      NA    15    25   25    25
## 13396      Suc. Belenes    25     110    57   211  101    76
## 13397      Suc. Belenes     1      NA     2     1    1     2
## 13398      Suc. Belenes     2      NA     2    NA    2     5
## 13399      Suc. Belenes     2      NA     2     2    4     2
## 13400      Suc. Belenes     1       1    NA    NA    2     2
## 13401      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13402      Suc. Belenes     3      NA    NA     1   NA     2
## 13403      Suc. Belenes     1       1     4    NA    1    NA
## 13404      Suc. Belenes     3      NA     1     3    5    NA
## 13405      Suc. Belenes     0      NA     0    NA    2     1
## 13406      Suc. Belenes    NA       0    NA    NA    1    NA
## 13407      Suc. Belenes     7       7     3     2    4     4
## 13408      Suc. Belenes     1       1     1    NA   NA     0
## 13409      Suc. Belenes     2      NA    NA    NA    2    NA
## 13410      Suc. Belenes     0      NA     0     0   NA    NA
## 13411      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13412      Suc. Belenes     0      NA     0     0   NA    NA
## 13413      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13414      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13415      Suc. Belenes    NA      NA     3     6    3    10
## 13416      Suc. Belenes     3      NA     6    NA    3    NA
## 13417      Suc. Belenes     4       4     7    11    7    NA
## 13418      Suc. Belenes     2       1     2     4    5     5
## 13419      Suc. Belenes     2       1     2     4    2     2
## 13420      Suc. Belenes     3       3     2     2    4     3
## 13421      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13422      Suc. Belenes    NA       0    NA    NA    0     0
## 13423      Suc. Belenes    NA      NA     3     3    6     6
## 13424      Suc. Belenes    NA       3     6    NA    3    NA
## 13425      Suc. Belenes     4       4     4    NA    5    NA
## 13426      Suc. Belenes     0       1     2     4    6     3
## 13427      Suc. Belenes    NA       1     2     4    2     2
## 13428      Suc. Belenes     3       1     2     3    3     3
## 13429      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13430      Suc. Belenes    NA       0    NA    NA    0     0
## 13431      Suc. Belenes    NA      NA    NA     3   NA    NA
## 13432      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13433      Suc. Belenes    NA      NA    NA     4    2    NA
## 13434      Suc. Belenes     2       1     2     4    3     3
## 13435      Suc. Belenes     2       1     2     4    2     2
## 13436      Suc. Belenes     3       2     2     3    4     3
## 13437      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13438      Suc. Belenes    NA      NA     1    NA   NA     1
## 13439      Suc. Belenes    NA      NA    NA    NA   NA     3
## 13440      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13441      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13442      Suc. Belenes    NA      NA    NA     2   NA    NA
## 13443      Suc. Belenes    NA       0    NA    NA    0     0
## 13444      Suc. Belenes    NA      NA     3     6    6     6
## 13445      Suc. Belenes    NA      11     3    NA    3    NA
## 13446      Suc. Belenes     4       7     4    11   12     4
## 13447      Suc. Belenes     2       1     2     3    2     5
## 13448      Suc. Belenes     2       1     2     4    2     2
## 13449      Suc. Belenes     3       2     1     3    4     3
## 13450      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13451      Suc. Belenes    NA       0    NA    NA    0     0
## 13452      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13453      Suc. Belenes    NA      NA    NA    NA    1     3
## 13454      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13455      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13456      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13457      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13458      Suc. Belenes    NA       4     6     4    6     6
## 13459      Suc. Belenes    NA       3    10    13   10    13
## 13460      Suc. Belenes     4       7    21    25   21    11
## 13461      Suc. Belenes     3       3     8     3    3     5
## 13462      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13463      Suc. Belenes    NA       1     1    NA   NA    NA
## 13464      Suc. Belenes    NA      NA    NA    NA    0    NA
## 13465      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13466      Suc. Belenes    NA      NA    NA     2    2    NA
## 13467      Suc. Belenes    NA      NA    NA     2    2     2
## 13468      Suc. Belenes     3      NA    NA     3    6     6
## 13469      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13470      Suc. Belenes    NA      NA    NA    NA   NA     2
## 13471      Suc. Belenes     4       4     8     4    6     8
## 13472      Suc. Belenes    11      11     8     6   14    11
## 13473      Suc. Belenes     2       6     6     6    6     8
## 13474      Suc. Belenes     1       1    NA     1    2    NA
## 13475      Suc. Belenes     3       2     1     2    2     2
## 13476      Suc. Belenes     6      11    13    13   13     4
## 13477      Suc. Belenes    11      16    18    16    8     8
## 13478      Suc. Belenes    NA      NA    NA    NA   NA    16
## 13479      Suc. Belenes     3      10     3    10   16    22
## 13480      Suc. Belenes     3       3     2     5    6     3
## 13481      Suc. Belenes    NA       6    NA    NA   NA    NA
## 13482      Suc. Belenes    20      17    20    23   28    31
## 13483      Suc. Belenes    32      32    32    32   56    49
## 13484      Suc. Belenes    35      25    25    21   25    28
## 13485      Suc. Belenes     6       6     4     4    6     6
## 13486      Suc. Belenes     6      17    15    19   23    23
## 13487      Suc. Belenes    44      36    30    30   34    30
## 13488      Suc. Belenes     2       1     1     2    2     4
## 13489      Suc. Belenes     2      NA     3     3    5     8
## 13490      Suc. Belenes     4       2     2     2    6     8
## 13491      Suc. Belenes     2       2     2     3    3     4
## 13492      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13493      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13494      Suc. Belenes     1       1     1    NA    2     1
## 13495      Suc. Belenes    NA      NA    NA    NA    0     1
## 13496      Suc. Belenes     2       1     2     2    2     2
## 13497      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13498      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13499      Suc. Belenes     2      NA     1    NA   NA    NA
## 13500      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13501      Suc. Belenes     0       0     0     1   NA     0
## 13502      Suc. Belenes     1      NA     1     1   NA    NA
## 13503      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13504      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13505      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13506      Suc. Belenes    NA      NA    NA    NA    1     2
## 13507      Suc. Belenes     4       4    11     4    3     2
## 13508      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13509      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13510      Suc. Belenes     1       1     1    NA    1    NA
## 13511      Suc. Belenes    NA      NA     0     0    0     1
## 13512      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13513      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13514      Suc. Belenes    NA      NA    NA    NA    1     2
## 13515      Suc. Belenes    NA      NA    NA    NA    3     2
## 13516      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13517      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13518      Suc. Belenes    NA      NA     0     0    0     1
## 13519      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13520      Suc. Belenes    NA      NA    NA    NA    1     2
## 13521      Suc. Belenes     4       4     4     4    3     2
## 13522      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13523      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13524      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13525      Suc. Belenes    NA      NA     0     0    0     1
## 13526      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13527      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13528      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13529      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13530      Suc. Belenes    NA      NA    NA    NA    1     2
## 13531      Suc. Belenes     4       4    11    NA    3     2
## 13532      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13533      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13534      Suc. Belenes    NA       1     1    NA    1    NA
## 13535      Suc. Belenes    NA      NA     0     0    0     1
## 13536      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13537      Suc. Belenes     1      NA    NA     1    1     2
## 13538      Suc. Belenes    NA      NA    NA    NA   NA     0
## 13539      Suc. Belenes    NA       6     2    NA    2    NA
## 13540      Suc. Belenes    NA      10     3     3    6    NA
## 13541      Suc. Belenes    NA       3     3    NA   NA    NA
## 13542      Suc. Belenes     1       2     3    NA   NA    NA
## 13543      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13544      Suc. Belenes    NA       1     1    NA   NA    NA
## 13545      Suc. Belenes    NA       1     1     1    1    NA
## 13546      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13547      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13548      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13549      Suc. Belenes     3       3    NA     3    3    NA
## 13550      Suc. Belenes    NA      NA    NA     1   NA    NA
## 13551      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13552      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13553      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13554      Suc. Belenes     2       2    NA    NA   NA    NA
## 13555      Suc. Belenes    NA       3     3    NA   NA    NA
## 13556      Suc. Belenes     2       2     2    NA    4    NA
## 13557      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13558      Suc. Belenes    NA      NA    NA     2   NA    NA
## 13559      Suc. Belenes     8       8     5     5    5    NA
## 13560      Suc. Belenes    NA      NA    NA     6    3     3
## 13561      Suc. Belenes     3       3     2    NA   NA     3
## 13562      Suc. Belenes    28      18    32    14   25     7
## 13563      Suc. Belenes    21      25    11    18   18     4
## 13564      Suc. Belenes    13       8     6    13    8     4
## 13565      Suc. Belenes    27      30    17    23   27     8
## 13566      Suc. Belenes     2       2    NA     1   NA    NA
## 13567      Suc. Belenes     5       3     3     2    2    NA
## 13568      Suc. Belenes     2       4     4    NA    4    NA
## 13569      Suc. Belenes    NA       2    NA    NA   NA    NA
## 13570      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13571      Suc. Belenes    NA      NA    NA     0   NA    NA
## 13572      Suc. Belenes     2       2     2     2    1    NA
## 13573      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13574      Suc. Belenes    NA       2     2     2    2    NA
## 13575      Suc. Belenes     0      NA     1     0    0    NA
## 13576      Suc. Belenes    NA       3    NA    NA   NA    NA
## 13577      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13578      Suc. Belenes     1      NA     0    NA   NA    NA
## 13579      Suc. Belenes     1       1     1    NA    1    NA
## 13580      Suc. Belenes    NA       1     1    NA   NA    NA
## 13581      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13582      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13583      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13584      Suc. Belenes     1      NA     0    NA   NA    NA
## 13585      Suc. Belenes     1       1     1    NA    1    NA
## 13586      Suc. Belenes    NA       1     1    NA   NA    NA
## 13587      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13588      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13589      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13590      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13591      Suc. Belenes     1       1     1    NA    1    NA
## 13592      Suc. Belenes    NA       1     1    NA   NA    NA
## 13593      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13594      Suc. Belenes    NA       1     1    NA   NA    NA
## 13595      Suc. Belenes    NA       3    NA    NA   NA    NA
## 13596      Suc. Belenes     1      NA     0    NA   NA    NA
## 13597      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13598      Suc. Belenes    NA       3    NA    NA   NA    NA
## 13599      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13600      Suc. Belenes     1      NA     0    NA   NA    NA
## 13601      Suc. Belenes     1       1     1    NA    1    NA
## 13602      Suc. Belenes    NA       1     1    NA   NA    NA
## 13603      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13604      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13605      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13606      Suc. Belenes     3       3    NA     3   NA    NA
## 13607      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13608      Suc. Belenes    NA       4    NA    NA   NA    NA
## 13609      Suc. Belenes     4       4    NA    NA    4    NA
## 13610      Suc. Belenes     2       6    NA    NA    2    NA
## 13611      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13612      Suc. Belenes     3      NA    NA    NA   NA    NA
## 13613      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13614      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13615      Suc. Belenes     3      NA    NA    NA   NA    NA
## 13616      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13617      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13618      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13619      Suc. Belenes    NA       3    NA    NA   NA    NA
## 13620      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13621      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13622      Suc. Belenes     2      53    NA    NA   NA    NA
## 13623      Suc. Belenes     3      63    NA    NA   NA    NA
## 13624      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13625      Suc. Belenes    NA      38    NA    NA   NA    NA
## 13626      Suc. Belenes    NA      NA     3    NA    4    NA
## 13627      Suc. Belenes     1       1     1    NA    1    NA
## 13628      Suc. Belenes     2       2     1    NA   NA    NA
## 13629      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13630      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13631      Suc. Belenes    NA       3    NA    NA   NA    NA
## 13632      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13633      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13634      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13635      Suc. Belenes     3      NA    19     3    3    NA
## 13636      Suc. Belenes     2      NA    NA    NA   NA    NA
## 13637      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13638      Suc. Belenes     4      NA    11     4   NA    NA
## 13639      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13640      Suc. Belenes     2       2     8    NA    2    NA
## 13641      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13642      Suc. Belenes     1       1     1    NA    3    NA
## 13643      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13644      Suc. Belenes    NA      NA    NA    NA    4    NA
## 13645      Suc. Belenes     2       0     0    NA    0    NA
## 13646      Suc. Belenes    NA       1    NA    NA    1    NA
## 13647      Suc. Belenes    NA       7    NA    NA    1    NA
## 13648      Suc. Belenes    NA       1     1    NA   NA    NA
## 13649      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13650      Suc. Belenes    NA       1     1    NA   NA    NA
## 13651      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13652      Suc. Belenes     0       1     2    NA   NA    NA
## 13653      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13654      Suc. Belenes     0      NA     0    NA   NA    NA
## 13655      Suc. Belenes     1      NA     1    NA   NA    NA
## 13656      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13657      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13658      Suc. Belenes     1      NA     1    NA   NA    NA
## 13659      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13660      Suc. Belenes    NA      NA    NA    NA    0    NA
## 13661      Suc. Belenes     1      NA     1    NA   NA    NA
## 13662      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13663      Suc. Belenes    NA      NA    NA    NA    3    NA
## 13664      Suc. Belenes    NA      NA     0    NA   NA    NA
## 13665      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13666      Suc. Belenes     3      NA    NA    NA    3    NA
## 13667      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13668      Suc. Belenes     1      NA     1    NA   NA    NA
## 13669      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13670      Suc. Belenes    NA       3    NA    NA    1    NA
## 13671      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13672      Suc. Belenes    NA       1     1     1   NA    NA
## 13673      Suc. Belenes     2       6     4     2   NA    NA
## 13674      Suc. Belenes     3      13     3     6   NA    NA
## 13675      Suc. Belenes    NA       0    NA    NA   NA    NA
## 13676      Suc. Belenes     3       3    NA     3   NA    NA
## 13677      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13678      Suc. Belenes    NA      NA    NA    NA    1    NA
## 13679      Suc. Belenes    NA      NA     1    NA   NA    NA
## 13680      Suc. Belenes     2       4     3     3    0    NA
## 13681      Suc. Belenes    NA       1     1     1   NA    NA
## 13682      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13683      Suc. Belenes    NA       1     1     2    1    NA
## 13684      Suc. Belenes    NA       3     3    NA   NA    NA
## 13685      Suc. Belenes    NA      NA     0     0   NA    NA
## 13686      Suc. Belenes     1      NA     1    NA   NA    NA
## 13687      Suc. Belenes     3      NA     3    NA   NA    NA
## 13688      Suc. Belenes    15       6     8    11   NA    NA
## 13689      Suc. Belenes     2       2     2     2   NA    NA
## 13690      Suc. Belenes    16      11     8    11   NA    NA
## 13691      Suc. Belenes    41      57    54    63    6    NA
## 13692      Suc. Belenes     6       6     6     6    2    NA
## 13693      Suc. Belenes     8       6     6     8   NA    NA
## 13694      Suc. Belenes    32      25    18    28    4    NA
## 13695      Suc. Belenes    85      70    70    99    7    NA
## 13696      Suc. Belenes     8       6     6     2   NA    NA
## 13697      Suc. Belenes    85      93    99   110   15    NA
## 13698      Suc. Belenes     3       2     2     2   NA    NA
## 13699      Suc. Belenes     3      NA    NA    NA   NA    NA
## 13700      Suc. Belenes    NA       2    NA     2   NA    NA
## 13701      Suc. Belenes     1       3     2     2   NA    NA
## 13702      Suc. Belenes    NA       1    NA    NA   NA    NA
## 13703      Suc. Belenes    NA       1     1     1   NA    NA
## 13704      Suc. Belenes    NA      NA    NA     1   NA    NA
## 13705      Suc. Belenes    NA       1    NA     1   NA    NA
## 13706      Suc. Belenes     1       0     2     0    0    NA
## 13707      Suc. Belenes     1       2     3     0   NA    NA
## 13708      Suc. Belenes     2       3     3    NA   NA    NA
## 13709      Suc. Belenes    NA      NA     1     0   NA    NA
## 13710      Suc. Belenes     0      NA     1    NA   NA    NA
## 13711      Suc. Belenes     0       0     0     0   NA    NA
## 13712      Suc. Belenes     1       4     1     4   NA    NA
## 13713      Suc. Belenes     0       2     1     0    2    NA
## 13714      Suc. Belenes    NA       3     1     3    2    NA
## 13715      Suc. Belenes     1      NA     1     1   NA    NA
## 13716      Suc. Belenes    NA       0    NA     0   NA    NA
## 13717      Suc. Belenes     1       1     1     1   NA    NA
## 13718      Suc. Belenes    NA       1     1     3    2    NA
## 13719      Suc. Belenes     1       1    NA    NA   NA    NA
## 13720      Suc. Belenes    NA       0    NA     0   NA    NA
## 13721      Suc. Belenes    NA       1     1     1   NA    NA
## 13722      Suc. Belenes    NA       1     1     1   NA    NA
## 13723      Suc. Belenes     3       1     1    NA   NA    NA
## 13724      Suc. Belenes    NA       2     1    NA   NA    NA
## 13725      Suc. Belenes     1      NA    NA    NA   NA    NA
## 13726      Suc. Belenes    NA      NA    NA    NA    2    NA
## 13727      Suc. Belenes    NA       0    NA     0   NA    NA
## 13728      Suc. Belenes     1       4     4     1   NA    NA
## 13729      Suc. Belenes     0       1    NA     1   NA    NA
## 13730      Suc. Belenes     2       3     1     3   NA    NA
## 13731      Suc. Belenes     1       1     1     1   NA    NA
## 13732      Suc. Belenes    NA       0    NA     0   NA    NA
## 13733      Suc. Belenes     1       3     5     2   NA    NA
## 13734 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13735 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13736 Suc. Huentit\x87n     2      11     6    17   11    13
## 13737 Suc. Huentit\x87n    10      10    16    25   22    22
## 13738 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 13739 Suc. Huentit\x87n    NA      NA    NA    NA    7    NA
## 13740 Suc. Huentit\x87n     5       5     5     5    5     8
## 13741 Suc. Huentit\x87n     1      NA    NA    NA    1    NA
## 13742 Suc. Huentit\x87n     1      NA    NA    NA    1    NA
## 13743 Suc. Huentit\x87n     0       0     0     0    1     1
## 13744 Suc. Huentit\x87n     1       1    NA     1   NA     1
## 13745 Suc. Huentit\x87n     4       3     2     5    3     4
## 13746 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13747 Suc. Huentit\x87n     1      NA     2     1   NA     2
## 13748 Suc. Huentit\x87n     2       2    NA     4    4    NA
## 13749 Suc. Huentit\x87n     1       1     3     1    2     2
## 13750 Suc. Huentit\x87n     6       8     3     8    8     3
## 13751 Suc. Huentit\x87n    NA       0     0     0   NA    NA
## 13752 Suc. Huentit\x87n     1      NA     1     1   NA    NA
## 13753 Suc. Huentit\x87n    NA      NA    NA     2   NA    NA
## 13754 Suc. Huentit\x87n     1       1     1    NA   NA    NA
## 13755 Suc. Huentit\x87n     8      11     2    11    8    15
## 13756 Suc. Huentit\x87n     8       8    14    14    8    14
## 13757 Suc. Huentit\x87n    NA      NA    NA    NA    3    NA
## 13758 Suc. Huentit\x87n    11       8     6     8   11     8
## 13759 Suc. Huentit\x87n     1       1     1     2   NA     2
## 13760 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13761 Suc. Huentit\x87n     2       4     4     2    2     6
## 13762 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13763 Suc. Huentit\x87n    NA      NA    NA    NA    2    NA
## 13764 Suc. Huentit\x87n    34      34    29    42   26    29
## 13765 Suc. Huentit\x87n    NA      NA    NA    NA   NA     6
## 13766 Suc. Huentit\x87n    25      35    32    38   41    48
## 13767 Suc. Huentit\x87n    11       9     8    11    6     8
## 13768 Suc. Huentit\x87n     5       2     2    NA   NA    NA
## 13769 Suc. Huentit\x87n    NA      NA     3     6   NA    NA
## 13770 Suc. Huentit\x87n    28      28    28    49   32    32
## 13771 Suc. Huentit\x87n   159     116   183    99  180   183
## 13772 Suc. Huentit\x87n    15      11    11    15   13     8
## 13773 Suc. Huentit\x87n    21      17    21    27   19    19
## 13774 Suc. Huentit\x87n   112      91   146    76  101   137
## 13775 Suc. Huentit\x87n     4       4     6     6    5     7
## 13776 Suc. Huentit\x87n     5       3     3     5    5     5
## 13777 Suc. Huentit\x87n     2       4     2     6    4     6
## 13778 Suc. Huentit\x87n     3       2     3     3    3     3
## 13779 Suc. Huentit\x87n    NA       1    NA    NA    1     1
## 13780 Suc. Huentit\x87n    NA       1     1     2    1     4
## 13781 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13782 Suc. Huentit\x87n    NA       2     1     3    3     2
## 13783 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13784 Suc. Huentit\x87n     1       1     1     2    0     1
## 13785 Suc. Huentit\x87n    NA      NA     0    NA    0    NA
## 13786 Suc. Huentit\x87n     5       3     4     5    3     3
## 13787 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13788 Suc. Huentit\x87n     0      NA    NA    NA   NA     0
## 13789 Suc. Huentit\x87n    NA      NA    NA     1   NA     1
## 13790 Suc. Huentit\x87n    NA      NA     1     7    3    -1
## 13791 Suc. Huentit\x87n     2       1     1     1    1     1
## 13792 Suc. Huentit\x87n    NA       1     1     1    2     3
## 13793 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13794 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13795 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13796 Suc. Huentit\x87n    NA      NA    NA    NA   NA     6
## 13797 Suc. Huentit\x87n     2       4     3     7    4     4
## 13798 Suc. Huentit\x87n     0       0     0     0    1     1
## 13799 Suc. Huentit\x87n     2       2     1     3    3     2
## 13800 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 13801 Suc. Huentit\x87n     3       3     3     3    3     4
## 13802 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 13803 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13804 Suc. Huentit\x87n    NA      NA     0     0    0    NA
## 13805 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13806 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13807 Suc. Huentit\x87n     2       1    NA     4    1     4
## 13808 Suc. Huentit\x87n     0      NA    NA    NA   NA    NA
## 13809 Suc. Huentit\x87n     2       0     0     1    2     1
## 13810 Suc. Huentit\x87n     3       3     3     3    3     4
## 13811 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13812 Suc. Huentit\x87n    NA      NA     0     0    0    NA
## 13813 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13814 Suc. Huentit\x87n     2       1    NA     1    1     4
## 13815 Suc. Huentit\x87n     0       0     0     0    1     1
## 13816 Suc. Huentit\x87n     2       0     1     2    2     1
## 13817 Suc. Huentit\x87n     3       3     3     3    3     4
## 13818 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13819 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13820 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13821 Suc. Huentit\x87n    NA      NA    NA    NA    4     3
## 13822 Suc. Huentit\x87n     2       1     0     0   NA     0
## 13823 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 13824 Suc. Huentit\x87n    NA      NA     0     0    0    NA
## 13825 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13826 Suc. Huentit\x87n    NA      NA    NA    NA   NA     6
## 13827 Suc. Huentit\x87n     2       9     6     7    4     4
## 13828 Suc. Huentit\x87n     0       0     0     0    1     1
## 13829 Suc. Huentit\x87n     3       1     1     2    2     1
## 13830 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 13831 Suc. Huentit\x87n     3       3     3     3    3     4
## 13832 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 13833 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13834 Suc. Huentit\x87n    NA      NA     0     0    0    NA
## 13835 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13836 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13837 Suc. Huentit\x87n     2       3     3     7    5     2
## 13838 Suc. Huentit\x87n    NA      NA    NA    NA    3    NA
## 13839 Suc. Huentit\x87n    NA      NA     1    NA   NA     1
## 13840 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13841 Suc. Huentit\x87n    NA      11    30    34   51    42
## 13842 Suc. Huentit\x87n    NA      32    29    35   60    51
## 13843 Suc. Huentit\x87n    NA      NA    NA    NA    4    NA
## 13844 Suc. Huentit\x87n    NA      NA    18    15   36    28
## 13845 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13846 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13847 Suc. Huentit\x87n     3       2     3     2    3     2
## 13848 Suc. Huentit\x87n     4       3     3     4   12    NA
## 13849 Suc. Huentit\x87n    NA      NA     3     1    4    NA
## 13850 Suc. Huentit\x87n     1       1     2     2    3     1
## 13851 Suc. Huentit\x87n     0      NA    NA     0   NA    NA
## 13852 Suc. Huentit\x87n     1      NA     2     1    2     3
## 13853 Suc. Huentit\x87n     8       7     8     7    8    10
## 13854 Suc. Huentit\x87n     1       1     4     2    2     2
## 13855 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13856 Suc. Huentit\x87n     4      NA     2     4    4     2
## 13857 Suc. Huentit\x87n    NA      NA     2     1   NA     1
## 13858 Suc. Huentit\x87n    14       3     6    11   11    11
## 13859 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13860 Suc. Huentit\x87n    NA      NA     4     1    1    NA
## 13861 Suc. Huentit\x87n    NA       0     0     1    0     0
## 13862 Suc. Huentit\x87n    NA      NA    NA     1    1     1
## 13863 Suc. Huentit\x87n     1      NA     1     1    1     1
## 13864 Suc. Huentit\x87n    NA      NA     2    NA   NA    NA
## 13865 Suc. Huentit\x87n    NA      NA     1    NA    1    NA
## 13866 Suc. Huentit\x87n     2       2     4     2    2     2
## 13867 Suc. Huentit\x87n    19      21    19    23   19    17
## 13868 Suc. Huentit\x87n     3      NA     3    NA   NA     2
## 13869 Suc. Huentit\x87n     8       6     8    11   11    14
## 13870 Suc. Huentit\x87n    45      23    51    34   25    25
## 13871 Suc. Huentit\x87n     2       3     5    NA    3     2
## 13872 Suc. Huentit\x87n    17      13    13    15   11    17
## 13873 Suc. Huentit\x87n     3       3     2     2    3     2
## 13874 Suc. Huentit\x87n     2      NA     3     2    2     2
## 13875 Suc. Huentit\x87n     8       4     8     6   NA     4
## 13876 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13877 Suc. Huentit\x87n    NA       3     3     3   NA    NA
## 13878 Suc. Huentit\x87n    NA      NA    NA     0    0    NA
## 13879 Suc. Huentit\x87n     4       2     2     4    2     6
## 13880 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13881 Suc. Huentit\x87n    NA       1     1    NA    1     1
## 13882 Suc. Huentit\x87n    46      32    53    51   44    51
## 13883 Suc. Huentit\x87n    NA      NA    NA    NA    3    NA
## 13884 Suc. Huentit\x87n    38      29    29    25   32    38
## 13885 Suc. Huentit\x87n    79      89   105   146   86   130
## 13886 Suc. Huentit\x87n    12      11    21    20   11    14
## 13887 Suc. Huentit\x87n     3       2     2     5    3     5
## 13888 Suc. Huentit\x87n    11       6    14    25   17    20
## 13889 Suc. Huentit\x87n    20       8     8    17   20    25
## 13890 Suc. Huentit\x87n    85      92   137    92  137   141
## 13891 Suc. Huentit\x87n   254     134   271   190  250   331
## 13892 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13893 Suc. Huentit\x87n    38      30    44    51   61    66
## 13894 Suc. Huentit\x87n    70      57    68    82   72    76
## 13895 Suc. Huentit\x87n     7       8    11     8   12    15
## 13896 Suc. Huentit\x87n     3       2     5     5    5     3
## 13897 Suc. Huentit\x87n     2       4     2     2   10     4
## 13898 Suc. Huentit\x87n    13      10    13     6    5     9
## 13899 Suc. Huentit\x87n    NA       1    NA    NA   NA    NA
## 13900 Suc. Huentit\x87n     3       2     2     1    5     3
## 13901 Suc. Huentit\x87n     2       1     1     1    2    NA
## 13902 Suc. Huentit\x87n     4      NA     1     1    5     1
## 13903 Suc. Huentit\x87n     9       8     4    11    8     9
## 13904 Suc. Huentit\x87n     4       4     4     4    8     5
## 13905 Suc. Huentit\x87n     3       2     4     3    4     1
## 13906 Suc. Huentit\x87n    12       8    10    12   11     7
## 13907 Suc. Huentit\x87n     4       5     4     4    6     2
## 13908 Suc. Huentit\x87n     4       5     2     2    3     4
## 13909 Suc. Huentit\x87n     2       2     4     4    6     2
## 13910 Suc. Huentit\x87n     0       2     1     1    1    NA
## 13911 Suc. Huentit\x87n     1      NA     4     3    6     3
## 13912 Suc. Huentit\x87n     4       5    NA    NA    4    NA
## 13913 Suc. Huentit\x87n     3       2     5     4    8    NA
## 13914 Suc. Huentit\x87n    NA      NA    NA     1    1    NA
## 13915 Suc. Huentit\x87n     3       4     4     3    4     3
## 13916 Suc. Huentit\x87n     1      NA     2     1    2     3
## 13917 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13918 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13919 Suc. Huentit\x87n     8       3     3    NA   NA    NA
## 13920 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13921 Suc. Huentit\x87n     3       8    12     8    6     6
## 13922 Suc. Huentit\x87n    NA      NA    NA    NA    4    NA
## 13923 Suc. Huentit\x87n     0      NA    NA     0   NA    NA
## 13924 Suc. Huentit\x87n     0      NA     0     0    1     1
## 13925 Suc. Huentit\x87n     3      NA     3     3    3     4
## 13926 Suc. Huentit\x87n     1       3    NA     1    3     2
## 13927 Suc. Huentit\x87n     0      NA    NA    NA   NA    NA
## 13928 Suc. Huentit\x87n    NA       0     0     0    0     0
## 13929 Suc. Huentit\x87n    NA       6    NA    NA   NA     3
## 13930 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13931 Suc. Huentit\x87n     6       6     4     3    3    11
## 13932 Suc. Huentit\x87n    NA      NA     0    NA    1     0
## 13933 Suc. Huentit\x87n     1      NA     1     1    1    NA
## 13934 Suc. Huentit\x87n     2      NA     3     1    1     3
## 13935 Suc. Huentit\x87n     0      NA    NA    NA   NA    NA
## 13936 Suc. Huentit\x87n    NA       0     0     0    0     0
## 13937 Suc. Huentit\x87n    NA      NA     3     3   NA     3
## 13938 Suc. Huentit\x87n    NA      NA    NA     3    1    NA
## 13939 Suc. Huentit\x87n     0      NA    NA     0   NA    NA
## 13940 Suc. Huentit\x87n    NA      NA     0     0   NA    NA
## 13941 Suc. Huentit\x87n     1      NA     1     1    1    NA
## 13942 Suc. Huentit\x87n     1       1     1     1    1     1
## 13943 Suc. Huentit\x87n     0      NA    NA    NA   NA    NA
## 13944 Suc. Huentit\x87n    NA       1     1     3    2     1
## 13945 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13946 Suc. Huentit\x87n     8      14    23     8    5    14
## 13947 Suc. Huentit\x87n    NA      NA    NA     0    1     1
## 13948 Suc. Huentit\x87n    NA       2     2     2    4     4
## 13949 Suc. Huentit\x87n     1       1     3    NA    5     3
## 13950 Suc. Huentit\x87n    NA       0     0     0    0     0
## 13951 Suc. Huentit\x87n    10      NA     5    NA   NA     3
## 13952 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13953 Suc. Huentit\x87n    11       6     9    14    6    14
## 13954 Suc. Huentit\x87n    NA      NA    NA    NA    4    NA
## 13955 Suc. Huentit\x87n     0      NA    NA     0   NA    NA
## 13956 Suc. Huentit\x87n    NA       0    NA    NA    1     0
## 13957 Suc. Huentit\x87n     5       2     5     5    9     4
## 13958 Suc. Huentit\x87n     2       1     4     3    3     6
## 13959 Suc. Huentit\x87n     0      NA    NA    NA   NA    NA
## 13960 Suc. Huentit\x87n    NA       0     0     0    0     0
## 13961 Suc. Huentit\x87n     2       1     4    NA   NA    NA
## 13962 Suc. Huentit\x87n     5       8    11     6   15    10
## 13963 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 13964 Suc. Huentit\x87n     1      NA     1    NA   NA    NA
## 13965 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13966 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13967 Suc. Huentit\x87n     2       4     4     4    4     4
## 13968 Suc. Huentit\x87n    13      10     3     3   10     6
## 13969 Suc. Huentit\x87n    NA      NA     0    NA   NA    NA
## 13970 Suc. Huentit\x87n    NA       3     5    NA   NA    NA
## 13971 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13972 Suc. Huentit\x87n     2       2     2     1    3    NA
## 13973 Suc. Huentit\x87n    NA      NA     2    NA    3    NA
## 13974 Suc. Huentit\x87n    NA      NA     1    NA    1    NA
## 13975 Suc. Huentit\x87n     0       1     1     1    1     1
## 13976 Suc. Huentit\x87n    NA      NA     1     1   NA    NA
## 13977 Suc. Huentit\x87n     4       5     5     5    6     2
## 13978 Suc. Huentit\x87n     0       0    NA    NA    0     1
## 13979 Suc. Huentit\x87n    NA      NA    NA    NA    1     1
## 13980 Suc. Huentit\x87n    NA       2     2     4    2    NA
## 13981 Suc. Huentit\x87n     3       1     1     1    1     1
## 13982 Suc. Huentit\x87n     6       3     3     6    6    NA
## 13983 Suc. Huentit\x87n    NA      NA    NA    NA    0    NA
## 13984 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13985 Suc. Huentit\x87n    NA      NA     1    NA   NA     1
## 13986 Suc. Huentit\x87n     4      NA    NA     4    2     2
## 13987 Suc. Huentit\x87n    NA      NA     0    NA   NA    NA
## 13988 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 13989 Suc. Huentit\x87n     8       2     4     6    4     8
## 13990 Suc. Huentit\x87n    11       6     6     8    8     8
## 13991 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 13992 Suc. Huentit\x87n    11      13     6     8   13    13
## 13993 Suc. Huentit\x87n     1       1     1     1    1     2
## 13994 Suc. Huentit\x87n     2       4     2     4    2     4
## 13995 Suc. Huentit\x87n     6       8     8    11    3    11
## 13996 Suc. Huentit\x87n     2      NA     2     2    2     4
## 13997 Suc. Huentit\x87n     1       1     1     2    1     2
## 13998 Suc. Huentit\x87n    NA      NA    NA    NA    1    NA
## 13999 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14000 Suc. Huentit\x87n    29      29    42    45   37    26
## 14001 Suc. Huentit\x87n    NA      NA    NA    NA   NA    19
## 14002 Suc. Huentit\x87n    22      22    22    29   29    38
## 14003 Suc. Huentit\x87n    12       9    12    20   12    12
## 14004 Suc. Huentit\x87n     9      12     9    15    9    17
## 14005 Suc. Huentit\x87n    NA       6     3    11    3     6
## 14006 Suc. Huentit\x87n     6       6     6    11    6     6
## 14007 Suc. Huentit\x87n    74      49    63    99   74    63
## 14008 Suc. Huentit\x87n   113     113   229    74  137   106
## 14009 Suc. Huentit\x87n    NA      -2    NA    NA   NA    NA
## 14010 Suc. Huentit\x87n    NA      NA    NA    NA    2     2
## 14011 Suc. Huentit\x87n    30      21    23    34   23    13
## 14012 Suc. Huentit\x87n    63      70    74   116   40    76
## 14013 Suc. Huentit\x87n     8       7     9    10   10     6
## 14014 Suc. Huentit\x87n     2       3     3     5    5     3
## 14015 Suc. Huentit\x87n     2       6     2     6    4     4
## 14016 Suc. Huentit\x87n     2       4     3     4    2     2
## 14017 Suc. Huentit\x87n    NA       1    NA    NA   NA    NA
## 14018 Suc. Huentit\x87n     1       1     1     1    4     2
## 14019 Suc. Huentit\x87n     1       1     1     2    2     2
## 14020 Suc. Huentit\x87n     1      NA     1     2    3     3
## 14021 Suc. Huentit\x87n     1      NA     2     1    1    NA
## 14022 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14023 Suc. Huentit\x87n     3       2     1     3    5     0
## 14024 Suc. Huentit\x87n     1      NA     1     0    1     1
## 14025 Suc. Huentit\x87n     3       2     3     0    3     3
## 14026 Suc. Huentit\x87n    NA       1    NA    NA   NA     1
## 14027 Suc. Huentit\x87n    NA       2     2     2    6    NA
## 14028 Suc. Huentit\x87n    NA      NA     0     0   NA     0
## 14029 Suc. Huentit\x87n     2       2     1     2   NA     1
## 14030 Suc. Huentit\x87n     2      NA     3     1   NA     3
## 14031 Suc. Huentit\x87n     1       1     3     1    1     2
## 14032 Suc. Huentit\x87n     1      NA     1    NA   NA    NA
## 14033 Suc. Huentit\x87n     3       3     2     1    3     2
## 14034 Suc. Huentit\x87n     1       1     2    NA    1     1
## 14035 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14036 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14037 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14038 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14039 Suc. Huentit\x87n     5       5     5     6    5     6
## 14040 Suc. Huentit\x87n     6       1     3     3   NA     3
## 14041 Suc. Huentit\x87n     0       1     1     1    1     1
## 14042 Suc. Huentit\x87n     0      NA     1     1    1     1
## 14043 Suc. Huentit\x87n     5       2    NA     3   NA     3
## 14044 Suc. Huentit\x87n     1       1     1    NA   NA    NA
## 14045 Suc. Huentit\x87n    NA       0     1     0    0     0
## 14046 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14047 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14048 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14049 Suc. Huentit\x87n     4       1     3    NA    3    NA
## 14050 Suc. Huentit\x87n     0      NA     1     1    0    NA
## 14051 Suc. Huentit\x87n     1       2    NA     3    2     1
## 14052 Suc. Huentit\x87n     1      NA    NA    NA    1    NA
## 14053 Suc. Huentit\x87n    NA       0     1     0    0     0
## 14054 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14055 Suc. Huentit\x87n     1       1    31     3   NA    NA
## 14056 Suc. Huentit\x87n     0       1     1     1    1     1
## 14057 Suc. Huentit\x87n    NA       0     0     1   NA     0
## 14058 Suc. Huentit\x87n     5       4     4     5   NA     1
## 14059 Suc. Huentit\x87n     1      NA    NA     1   NA    NA
## 14060 Suc. Huentit\x87n     1       1     1     1   NA    NA
## 14061 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14062 Suc. Huentit\x87n     6       3     3    NA    6    NA
## 14063 Suc. Huentit\x87n     0       0     1     0    0    NA
## 14064 Suc. Huentit\x87n     6       6     4     4    2    NA
## 14065 Suc. Huentit\x87n     1       1    NA    NA   NA    NA
## 14066 Suc. Huentit\x87n    NA       0     1     0    0     0
## 14067 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14068 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14069 Suc. Huentit\x87n     6       5     6     6    5     8
## 14070 Suc. Huentit\x87n     4       1     3     8    6     6
## 14071 Suc. Huentit\x87n    NA       4    NA    NA   NA    NA
## 14072 Suc. Huentit\x87n     0       1     1     1    1     1
## 14073 Suc. Huentit\x87n     0      NA     1     1    0     1
## 14074 Suc. Huentit\x87n     7       2     2     3   NA     5
## 14075 Suc. Huentit\x87n     1       1     1     1   NA    NA
## 14076 Suc. Huentit\x87n    NA       0     1     0    0     0
## 14077 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14078 Suc. Huentit\x87n     1       3     3     1    5     5
## 14079 Suc. Huentit\x87n    NA      NA     0     0   NA    NA
## 14080 Suc. Huentit\x87n    NA      NA    NA    NA    1    NA
## 14081 Suc. Huentit\x87n     1      NA     1     1    1    NA
## 14082 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14083 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14084 Suc. Huentit\x87n     2      11     4     8   17    13
## 14085 Suc. Huentit\x87n    25       6    10    19   16    22
## 14086 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14087 Suc. Huentit\x87n     5      NA    NA     5    3     5
## 14088 Suc. Huentit\x87n     1       2     2    NA   NA     2
## 14089 Suc. Huentit\x87n    NA       0     1     1    0     0
## 14090 Suc. Huentit\x87n     0      NA     0    NA   NA    NA
## 14091 Suc. Huentit\x87n    NA       1    NA     1   NA     1
## 14092 Suc. Huentit\x87n     4       2     1     4    3     6
## 14093 Suc. Huentit\x87n    NA       0     1     0   NA     1
## 14094 Suc. Huentit\x87n    NA       1     2    11    1     2
## 14095 Suc. Huentit\x87n    NA       1     1     8    1     1
## 14096 Suc. Huentit\x87n    NA       3     3     3    3     3
## 14097 Suc. Huentit\x87n    NA       1    NA    NA   NA    NA
## 14098 Suc. Huentit\x87n    NA      NA    NA    NA   -2    NA
## 14099 Suc. Huentit\x87n     1      NA     2    NA   NA    NA
## 14100 Suc. Huentit\x87n     2       8     8     6    8     8
## 14101 Suc. Huentit\x87n    NA       3     3     6   NA    NA
## 14102 Suc. Huentit\x87n     6       3     6     8   NA     6
## 14103 Suc. Huentit\x87n    11       8     8     4   11    11
## 14104 Suc. Huentit\x87n     1       1     1     2   NA    NA
## 14105 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14106 Suc. Huentit\x87n    NA       2    NA    NA   NA    NA
## 14107 Suc. Huentit\x87n    NA       1    NA    NA   NA    NA
## 14108 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14109 Suc. Huentit\x87n    21      29    37    29   29    18
## 14110 Suc. Huentit\x87n    NA      NA    NA    NA   NA    16
## 14111 Suc. Huentit\x87n    98     117   146   155  101   133
## 14112 Suc. Huentit\x87n     5       9     9    15    6    11
## 14113 Suc. Huentit\x87n    NA      NA    NA     6   NA    NA
## 14114 Suc. Huentit\x87n    32      28    18    25   28    39
## 14115 Suc. Huentit\x87n   232     232   264   232  190   215
## 14116 Suc. Huentit\x87n     2      NA    NA     2   NA    NA
## 14117 Suc. Huentit\x87n    13      15    13    17   15    17
## 14118 Suc. Huentit\x87n   127     114   152   205  184   135
## 14119 Suc. Huentit\x87n     2       2     1     5    4     4
## 14120 Suc. Huentit\x87n     3      NA     3     5    3     2
## 14121 Suc. Huentit\x87n     2       4     2     4    4     4
## 14122 Suc. Huentit\x87n     5       1     4     3    2     3
## 14123 Suc. Huentit\x87n    NA       1    NA    NA   NA    NA
## 14124 Suc. Huentit\x87n     1       1     1    12    1     1
## 14125 Suc. Huentit\x87n    NA      NA     1    NA   NA     1
## 14126 Suc. Huentit\x87n     3       1     2     2    2     3
## 14127 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14128 Suc. Huentit\x87n     4       2     4     2    2     3
## 14129 Suc. Huentit\x87n     1       0     1     1    1     1
## 14130 Suc. Huentit\x87n     3       3     3     3    4     4
## 14131 Suc. Huentit\x87n    NA      NA    NA    NA   NA     0
## 14132 Suc. Huentit\x87n    NA       2    NA    NA    2    NA
## 14133 Suc. Huentit\x87n     0       0    NA     1    1    NA
## 14134 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14135 Suc. Huentit\x87n     1       0     1     1    1     1
## 14136 Suc. Huentit\x87n    NA       1     1     1    2     1
## 14137 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14138 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14139 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14140 Suc. Huentit\x87n     6       3     4    NA    8     3
## 14141 Suc. Huentit\x87n     0      NA     0    NA   NA    NA
## 14142 Suc. Huentit\x87n     0      NA     0    NA    0    NA
## 14143 Suc. Huentit\x87n     2       3     2     3    3     2
## 14144 Suc. Huentit\x87n     1      NA     1     3    1     1
## 14145 Suc. Huentit\x87n    NA       0     0     0   NA    NA
## 14146 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14147 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14148 Suc. Huentit\x87n    NA      NA     1     3    3     3
## 14149 Suc. Huentit\x87n    NA      NA    NA    NA   NA     0
## 14150 Suc. Huentit\x87n     2       1     2     3    1     2
## 14151 Suc. Huentit\x87n    NA      NA    NA    NA    1    NA
## 14152 Suc. Huentit\x87n    NA       0     0     0   NA    NA
## 14153 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14154 Suc. Huentit\x87n    NA      NA     1    NA    3     3
## 14155 Suc. Huentit\x87n     0      NA     0    NA   NA    NA
## 14156 Suc. Huentit\x87n    NA      NA    NA    NA   NA    -1
## 14157 Suc. Huentit\x87n     2       1     2     3    1     2
## 14158 Suc. Huentit\x87n     1      NA    NA     1    1     1
## 14159 Suc. Huentit\x87n     1      NA    NA     1    2     1
## 14160 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14161 Suc. Huentit\x87n     6      NA     3     3    3     3
## 14162 Suc. Huentit\x87n    NA      NA     0    NA   NA     0
## 14163 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14164 Suc. Huentit\x87n    NA       0     0     0   NA    NA
## 14165 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14166 Suc. Huentit\x87n    NA      NA    NA    NA   NA     2
## 14167 Suc. Huentit\x87n     3       3     1     3    3     3
## 14168 Suc. Huentit\x87n     0      NA     0    NA   NA    NA
## 14169 Suc. Huentit\x87n     0       1     1     0    0     1
## 14170 Suc. Huentit\x87n     2       3     6     3    5     2
## 14171 Suc. Huentit\x87n     2      NA     2     3    4     1
## 14172 Suc. Huentit\x87n    NA       0     0     0   NA    NA
## 14173 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14174 Suc. Huentit\x87n     1       3     5     4    3     8
## 14175 Suc. Huentit\x87n    NA      NA    NA     2    0    NA
## 14176 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14177 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14178 Suc. Huentit\x87n     2       2     6     2    2     4
## 14179 Suc. Huentit\x87n    16       3     6     6    3     6
## 14180 Suc. Huentit\x87n    NA      NA     0    NA   NA    NA
## 14181 Suc. Huentit\x87n     3      NA     3     3    3     3
## 14182 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14183 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14184 Suc. Huentit\x87n    NA       1     1     2    1     1
## 14185 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14186 Suc. Huentit\x87n     2       1     1    NA   NA     1
## 14187 Suc. Huentit\x87n     1       1     1     1    1     2
## 14188 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14189 Suc. Huentit\x87n    NA       1    NA    NA    1    NA
## 14190 Suc. Huentit\x87n     2      NA     6    NA   NA    NA
## 14191 Suc. Huentit\x87n     3       2     4    NA    1    NA
## 14192 Suc. Huentit\x87n     8       8     8    11    8     3
## 14193 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14194 Suc. Huentit\x87n    NA      NA    NA     2    6     4
## 14195 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14196 Suc. Huentit\x87n     0      NA     1     0   NA    NA
## 14197 Suc. Huentit\x87n    NA      NA    NA     0   NA    NA
## 14198 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14199 Suc. Huentit\x87n     5       3     8     5    3     8
## 14200 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14201 Suc. Huentit\x87n    35      32    51    57   38    82
## 14202 Suc. Huentit\x87n     2       3     3     8    2     2
## 14203 Suc. Huentit\x87n     3       3     3     3    3    NA
## 14204 Suc. Huentit\x87n     4      NA     7     4   NA    NA
## 14205 Suc. Huentit\x87n   169     159   148   183  173   208
## 14206 Suc. Huentit\x87n    NA       4     4     2    2    NA
## 14207 Suc. Huentit\x87n     4       2     6     4    4     4
## 14208 Suc. Huentit\x87n    80      78    80    74   89    87
## 14209 Suc. Huentit\x87n     1      NA     1     1   NA     1
## 14210 Suc. Huentit\x87n    NA       2     3     2    2    NA
## 14211 Suc. Huentit\x87n    NA      NA    NA     2   NA    NA
## 14212 Suc. Huentit\x87n     3       2     2     1    1     2
## 14213 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14214 Suc. Huentit\x87n    NA       1     1    -1    1     1
## 14215 Suc. Huentit\x87n     1      NA    NA    NA   NA     1
## 14216 Suc. Huentit\x87n    NA      NA    NA    NA   NA     1
## 14217 Suc. Huentit\x87n    NA       0     0    NA    2     3
## 14218 Suc. Huentit\x87n    NA      NA     0    NA   NA     0
## 14219 Suc. Huentit\x87n     2       3     3     2    3     3
## 14220 Suc. Huentit\x87n     1       0     2     1    0     1
## 14221 Suc. Huentit\x87n    NA       2     2    NA   NA    NA
## 14222 Suc. Huentit\x87n    NA      NA    NA    NA   NA     0
## 14223 Suc. Huentit\x87n    NA       0     0    NA    0    NA
## 14224 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14225 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14226 Suc. Huentit\x87n     3       6     8     6    3     4
## 14227 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14228 Suc. Huentit\x87n    NA       0    NA     0    0    NA
## 14229 Suc. Huentit\x87n     2      NA    NA    -1   NA    NA
## 14230 Suc. Huentit\x87n     2       2     5     6    2     5
## 14231 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14232 Suc. Huentit\x87n     0       0     0     0   NA     0
## 14233 Suc. Huentit\x87n    NA       0     0    NA    0     0
## 14234 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14235 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14236 Suc. Huentit\x87n    NA      NA     3    NA    3     4
## 14237 Suc. Huentit\x87n     2       2     3     4    2     1
## 14238 Suc. Huentit\x87n    NA      NA     0    NA   NA     0
## 14239 Suc. Huentit\x87n    NA       0     0    NA    0     0
## 14240 Suc. Huentit\x87n     6       3    11     3   NA     6
## 14241 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14242 Suc. Huentit\x87n     4       2     5     4    2     3
## 14243 Suc. Huentit\x87n     3      NA    NA    NA   NA     1
## 14244 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14245 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14246 Suc. Huentit\x87n    NA       0     0    NA    0     0
## 14247 Suc. Huentit\x87n     6       6    14    NA    3     9
## 14248 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14249 Suc. Huentit\x87n    NA      NA    NA     0    1     1
## 14250 Suc. Huentit\x87n     2      NA    NA    -1   NA    NA
## 14251 Suc. Huentit\x87n     2       4     7     6    2     7
## 14252 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14253 Suc. Huentit\x87n    NA      NA     0    NA    1     2
## 14254 Suc. Huentit\x87n    NA       0     0    NA    0     0
## 14255 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14256 Suc. Huentit\x87n     1       1    NA     1    3    NA
## 14257 Suc. Huentit\x87n    NA      NA     1    NA   NA     1
## 14258 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14259 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14260 Suc. Huentit\x87n     4      NA     4     6    6     2
## 14261 Suc. Huentit\x87n     6      16    13     6    3    25
## 14262 Suc. Huentit\x87n    NA       0    NA     0    0    NA
## 14263 Suc. Huentit\x87n     2       2     2     3    2     3
## 14264 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14265 Suc. Huentit\x87n    NA      NA    NA    NA   NA     3
## 14266 Suc. Huentit\x87n    NA       0    NA    NA    1    NA
## 14267 Suc. Huentit\x87n    NA       2    NA     2    1     1
## 14268 Suc. Huentit\x87n    NA       1    NA     1    1     1
## 14269 Suc. Huentit\x87n    NA      NA    NA    NA   NA    NA
## 14270 Suc. Huentit\x87n     1       1     1     1   NA     1
## 14271 Suc. Huentit\x87n     1       3     2     1    1     1
## 14272 Suc. Huentit\x87n    10      17     3    19    9    16
## 14273 Suc. Huentit\x87n    NA      NA    NA     1    1    NA
## 14274 Suc. Huentit\x87n    NA      NA     1    NA   NA    NA
## 14275 Suc. Huentit\x87n    NA      NA    NA     2   NA    NA
## 14276 Suc. Huentit\x87n     5       2     3     2    2     2
## 14277 Suc. Huentit\x87n     3       3    NA     3   NA    NA
## 14278 Suc. Huentit\x87n     1      NA    NA    NA   NA    NA
## 14279 Suc. Huentit\x87n    NA      NA     1     0   NA     0
## 14280 Suc. Huentit\x87n     1      NA     1     1    1     1
## 14281 Suc. Huentit\x87n    NA      NA    NA    NA   NA     1
## 14282 Suc. Huentit\x87n     2      NA     4    NA    2     4
## 14283 Suc. Huentit\x87n     5       5     6     6    2     8
## 14284 Suc. Huentit\x87n    NA      NA    NA    NA    3    NA
## 14285 Suc. Huentit\x87n     8      17    25    17   20    42
##  [ reached 'max' / getOption("max.print") -- omitted 452224 rows ]

Filtrar los movimientos por Cedi y tamaño de tienda grande.

filter <- filter(base_de_datos, Tamano.Cte.Industria == "Grande")
filter
##          ID Year  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1    374960 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 2    374961 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 3    374962 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 4    374963 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 5    374964 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 6    374965 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 7    374966 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 8    374967 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 9    374968 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 10   374969 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 11   374970 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 12   374971 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 13   374972 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 14   374973 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 15   374974 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 16   374975 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 17   374976 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 18   374977 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 19   374978 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 20   374979 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 21   374980 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 22   374981 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 23   374982 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 24   374983 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 25   374984 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 26   374985 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 27   374986 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 28   374987 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 29   374988 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 30   374989 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 31   374990 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 32   374991 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 33   374992 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 34   374993 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 35   374994 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 36   374995 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 37   374996 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 38   374997 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 39   374998 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 40   374999 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 41   375000 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 42   375001 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 43   375002 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 44   375003 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 45   375004 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 46   375005 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 47   375006 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 48   375007 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 49   375008 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 50   375009 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 51   375010 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 52   375011 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 53   375012 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 54   375013 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 55   375014 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 56   375015 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 57   375016 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 58   375017 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 59   375018 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 60   375019 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 61   375020 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 62   375021 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 63   375022 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 64   375023 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 65   375024 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 66   375025 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 67   375026 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 68   375027 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 69   375028 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 70   375029 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 71   375030 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 72   375031 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 73   375032 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 74   375033 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 75   375034 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 76   375035 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 77   375036 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 78   375037 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 79   375038 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 80   375039 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 81   375040 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 82   375041 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 83   375042 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 84   375043 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 85   375044 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 86   375045 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 87   375046 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 88   375047 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 89   375048 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 90   375049 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 91   375050 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 92   375051 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 93   375052 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 94   375053 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 95   375054 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 96   375055 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 97   375056 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 98   375057 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 99   375058 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 100  375059 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 101  375060 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 102  375061 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 103  375062 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 104  375063 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 105  375064 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 106  375065 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 107  375066 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 108  375067 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 109  375068 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 110  375069 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 111  375070 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 112  375071 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 113  375072 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 114  375073 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 115  375074 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 116  375075 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 117  375076 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 118  375077 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 119  375078 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 120  375079 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 121  375080 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 122  375081 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 123  375082 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 124  375083 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 125  375084 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 126  375085 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 127  375086 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 128  375087 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 129  375088 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 130  375089 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 131  375090 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 132  375091 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 133  375092 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 134  375093 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 135  375094 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 136  375095 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 137  375096 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 138  375097 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 139  375098 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 140  375099 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 141  375100 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 142  375101 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 143  375102 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 144  375103 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 145  375104 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 146  375105 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 147  375106 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 148  375107 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 149  375108 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 150  375109 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 151  375110 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 152  375111 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 153  375112 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 154  375113 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 155  375114 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 156  375115 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 157  375116 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 158  375117 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 159  375118 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 160  375119 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 161  375120 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 162  375121 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 163  375122 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 164  375123 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 165  375124 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 166  375125 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 167  375126 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 168  375127 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 169  375128 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 170  375129 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 171  375130 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 172  375131 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 173  375132 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 174  375133 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 175  375134 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 176  375135 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 177  375136 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 178  375137 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 179  375138 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 180  375139 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 181  375140 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 182  375141 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 183  375142 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 184  375143 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 185  375144 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 186  375145 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 187  375146 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 188  375147 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 189  375148 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 190  375149 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 191  375150 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 192  375151 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 193  375152 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 194  375153 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 195  375154 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 196  375155 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 197  375156 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 198  375157 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 199  375158 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 200  375159 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 201  375160 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 202  375161 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 203  375162 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 204  375163 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 205  375164 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 206  375165 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 207  375166 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 208  375167 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 209  375168 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 210  375169 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 211  375170 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 212  375171 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 213  375172 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 214  375173 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 215  375174 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 216  375175 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 217  375176 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 218  375177 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 219  375178 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 220  375179 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 221  375180 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 222  375181 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 223  375182 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 224  375183 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 225  375184 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 226  375185 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 227  375186 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 228  375187 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 229  375188 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 230  375189 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 231  375190 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 232  375191 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 233  375192 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 234  375193 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 235  375194 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 236  375195 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 237  375196 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 238  375197 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 239  375198 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 240  375199 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 241  375200 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 242  375201 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 243  375202 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 244  375203 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 245  375204 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 246  375205 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 247  375206 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 248  375207 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 249  375208 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 250  375209 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 251  375210 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 252  375211 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 253  375212 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 254  375213 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 255  375214 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 256  375215 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 257  375216 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 258  375217 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 259  375218 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 260  375219 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 261  375220 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 262  375221 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 263  375222 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 264  375223 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 265  375224 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 266  375225 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 267  375226 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 268  375227 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 269  375228 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 270  375229 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 271  375230 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 272  375231 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 273  375232 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 274  375233 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 275  375234 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 276  375235 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 277  375236 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 278  375237 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 279  375238 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 280  375239 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 281  375240 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 282  375241 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 283  375242 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 284  375243 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 285  375244 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 286  375245 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 287  375246 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 288  375247 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 289  375248 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 290  375249 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 291  375250 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 292  375251 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 293  375252 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 294  375253 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 295  375254 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 296  375255 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 297  375256 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 298  375257 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 299  375258 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 300  375259 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 301  375260 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 302  375261 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 303  375262 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 304  375263 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 305  375264 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 306  375265 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 307  375266 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 308  375267 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 309  375268 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 310  375269 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 311  375270 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 312  375271 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 313  375272 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 314  375273 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 315  375274 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 316  375275 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 317  375276 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 318  375277 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 319  375278 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 320  375279 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 321  375280 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 322  375281 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 323  375282 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 324  375283 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 325  375284 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 326  375285 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 327  375286 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 328  375287 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 329  375288 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 330  375289 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 331  375290 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 332  375291 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 333  375292 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 334  375293 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 335  375294 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 336  375295 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 337  375296 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 338  375297 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 339  375298 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 340  375299 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 341  375300 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 342  375301 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 343  375302 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 344  375303 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 345  375304 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 346  375305 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 347  375306 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 348  375307 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 349  375308 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 350  375309 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 351  375310 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 352  375311 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 353  375312 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 354  375313 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 355  375314 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 356  375315 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 357  375316 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 358  375317 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 359  375318 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 360  375319 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 361  375320 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 362  375321 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 363  375322 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 364  375323 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 365  375324 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 366  375325 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 367  375326 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 368  375327 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 369  375328 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 370  375329 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 371  375330 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 372  375331 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 373  375332 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 374  375333 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 375  375334 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 376  375335 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 377  375336 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 378  375337 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 379  375338 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 380  375339 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 381  375340 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 382  375341 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 383  375342 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 384  375343 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 385  375344 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 386  375345 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 387  375346 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 388  375347 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 389  375348 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 390  375349 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 391  375350 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 392  375351 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 393  375352 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 394  375353 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 395  375354 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 396  375355 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 397  375356 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 398  375357 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 399  375358 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 400  375359 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 401  375360 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 402  375361 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 403  375362 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 404  375363 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 405  375364 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 406  375365 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 407  375366 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 408  375367 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 409  375368 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 410  375369 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 411  375370 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 412  375371 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 413  375372 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 414  375373 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 415  375374 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 416  375375 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 417  375376 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 418  375377 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 419  375378 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 420  375379 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 421  375380 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 422  375381 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 423  375382 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 424  375383 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 425  375384 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 426  375385 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 427  375386 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 428  375387 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 429  375388 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 430  375389 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 431  375390 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 432  375391 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 433  375392 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 434  375393 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 435  375394 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 436  375395 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 437  375396 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 438  375397 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 439  375398 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 440  375399 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 441  375400 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 442  375401 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 443  375402 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 444  375403 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 445  375404 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 446  375405 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 447  375406 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 448  375407 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 449  375408 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 450  375409 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 451  375410 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 452  375411 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 453  375412 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 454  375413 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 455  375414 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 456  375415 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 457  375416 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 458  375417 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 459  375418 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 460  375419 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 461  375420 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 462  375421 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 463  375422 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 464  375423 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 465  375424 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 466  375425 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 467  375426 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 468  375427 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 469  375428 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 470  375429 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 471  375430 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 472  375431 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 473  375432 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 474  375433 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 475  375434 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 476  375435 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 477  375436 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 478  375437 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 479  375438 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 480  375439 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 481  375440 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 482  375441 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 483  375442 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 484  375443 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 485  375444 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 486  375445 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 487  375446 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 488  375447 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 489  375448 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 490  375449 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 491  375450 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 492  375451 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 493  375452 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 494  375453 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 495  375454 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 496  375455 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 497  375456 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 498  375457 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 499  375458 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 500  375459 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 501  375460 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 502  375461 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 503  375462 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 504  375463 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 505  375464 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 506  375465 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 507  375466 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 508  375467 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 509  375468 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 510  375469 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 511  375470 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 512  375471 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 513  375472 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 514  375473 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 515  375474 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 516  375475 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 517  375476 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 518  375477 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 519  375478 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 520  375479 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 521  375480 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 522  375481 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 523  375482 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 524  375483 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 525  375484 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 526  375485 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 527  375486 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 528  375487 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 529  375488 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 530  375489 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 531  375490 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 532  375491 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 533  375492 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 534  375493 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 535  375494 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 536  375495 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 537  375496 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 538  375497 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 539  375498 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 540  375499 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 541  375500 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 542  375501 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 543  375502 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 544  375503 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 545  375504 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 546  375505 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 547  375506 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 548  375507 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 549  375508 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 550  375509 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 551  375510 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 552  375511 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 553  375512 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 554  375513 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 555  375514 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 556  375515 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 557  375516 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 558  375517 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 559  375518 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 560  375519 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 561  375520 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 562  375521 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 563  375522 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 564  375523 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 565  375524 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 566  375525 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 567  375526 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 568  375527 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 569  375528 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 570  375529 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 571  375530 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 572  375531 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 573  375532 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 574  375533 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 575  375534 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 576  375535 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 577  375536 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 578  375537 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 579  375538 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 580  375539 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 581  375540 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 582  375541 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 583  375542 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 584  375543 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 585  375544 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 586  375545 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 587  375546 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 588  375547 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 589  375548 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 590  375549 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 591  375550 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 592  375551 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 593  375552 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 594  375553 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 595  375554 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 596  375555 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 597  375556 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 598  375557 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 599  375558 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 600  375559 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 601  375560 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 602  375561 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 603  375562 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 604  375563 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 605  375564 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 606  375565 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 607  375566 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 608  375567 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 609  375568 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 610  375569 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 611  375570 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 612  375571 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 613  375572 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 614  375573 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 615  375574 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 616  375575 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 617  375576 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 618  375577 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 619  375578 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 620  375579 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 621  375580 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 622  375581 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 623  375582 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 624  375583 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 625  375584 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 626  375585 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 627  375586 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 628  375587 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 629  375588 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 630  375589 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 631  375590 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 632  375591 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 633  375592 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 634  375593 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 635  375594 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 636  375595 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 637  375596 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 638  375597 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 639  375598 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 640  375599 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 641  375600 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 642  375601 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 643  375602 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 644  375603 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 645  375604 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 646  375605 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 647  375606 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 648  375607 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 649  375608 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 650  375609 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 651  375610 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 652  375611 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 653  375612 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 654  375613 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 655  375614 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 656  375615 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 657  375616 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 658  375617 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 659  375618 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 660  375619 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 661  375620 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 662  375621 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 663  375622 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 664  375623 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 665  375624 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 666  375625 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 667  375626 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 668  375627 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 669  375628 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 670  375629 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 671  375630 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 672  375631 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 673  375632 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 674  375633 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 675  375634 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 676  375635 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 677  375636 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 678  375637 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 679  375638 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 680  375639 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 681  375640 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 682  375641 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 683  375642 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 684  375643 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 685  375644 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 686  375645 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 687  375646 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 688  375647 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 689  375648 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 690  375649 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 691  375650 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 692  375651 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 693  375652 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 694  375653 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 695  375654 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 696  375655 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 697  375656 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 698  375657 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 699  375658 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 700  375659 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 701  375660 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 702  375661 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 703  375662 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 704  375663 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 705  375664 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 706  375665 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 707  375666 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 708  375667 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 709  375668 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 710  375669 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 711  375670 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 712  375671 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 713  375672 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 714  375673 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 715  375674 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 716  375675 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 717  375676 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 718  375677 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 719  375678 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 720  375679 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 721  375680 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 722  375681 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 723  375682 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 724  375683 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 725  375684 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 726  375685 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 727  375686 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 728  375687 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 729  375688 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 730  375689 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 731  375690 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 732  375691 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 733  375692 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 734  375693 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 735  375694 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 736  375695 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 737  375696 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 738  375697 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 739  375698 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 740  375699 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 741  375700 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 742  375701 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 743  375702 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 744  375703 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 745  375704 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 746  375705 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 747  375706 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 748  375707 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 749  375708 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 750  375709 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 751  375710 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 752  375711 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 753  375712 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 754  375713 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 755  375714 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 756  375715 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 757  375716 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 758  375717 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 759  375718 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 760  375719 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 761  375720 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 762  375721 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 763  375722 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 764  375723 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 765  375724 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 766  375725 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 767  375726 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 768  375727 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 769  375728 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 770  375729 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 771  375730 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 772  375731 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 773  375732 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 774  375733 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 775  375734 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 776  375735 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 777  375736 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 778  375737 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 779  375738 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 780  375739 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 781  375740 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 782  375741 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 783  375742 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 784  375743 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 785  375744 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 786  375745 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 787  375746 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 788  375747 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 789  375748 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 790  375749 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 791  375750 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 792  375751 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 793  375752 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 794  375753 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 795  375754 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 796  375755 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 797  375756 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 798  375757 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 799  375758 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 800  375759 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 801  375760 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 802  375761 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 803  375762 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 804  375763 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 805  375764 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 806  375765 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 807  375766 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 808  375767 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 809  375768 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 810  375769 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 811  375770 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 812  375771 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 813  375772 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 814  375773 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 815  375774 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 816  375775 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 817  375776 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 818  375777 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 819  375778 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 820  375779 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 821  375780 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 822  375781 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 823  375782 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 824  375783 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 825  375784 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 826  375785 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 827  375786 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 828  375787 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 829  375788 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 830  375789 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 831  375790 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 832  375791 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 833  375792 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 834  375793 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 835  375794 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 836  375795 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 837  375796 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 838  375797 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 839  375798 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 840  375799 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 841  375800 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 842  375801 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 843  375802 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 844  375803 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 845  375804 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 846  375805 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 847  375806 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 848  375807 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 849  375808 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 850  375809 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 851  375810 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 852  375811 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 853  375812 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 854  375813 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 855  375814 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 856  375815 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 857  375816 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 858  375817 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 859  375818 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 860  375819 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 861  375820 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 862  375821 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 863  375822 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 864  375823 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 865  375824 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 866  375825 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 867  375826 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 868  375827 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 869  375828 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 870  375829 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 871  375830 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 872  375831 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 873  375832 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 874  375833 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 875  375834 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 876  375835 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 877  375836 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 878  375837 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 879  375838 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 880  375839 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 881  375840 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 882  375841 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 883  375842 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 884  375843 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 885  375844 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 886  375845 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 887  375846 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 888  375847 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 889  375848 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 890  375849 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 891  375850 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 892  375851 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 893  375852 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 894  375853 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 895  375854 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 896  375855 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 897  375856 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 898  375857 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 899  375858 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 900  375859 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 901  375860 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 902  375861 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 903  375862 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 904  375863 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 905  375864 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 906  375865 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 907  375866 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 908  375867 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 909  375868 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 910  375869 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 911  375870 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 912  375871 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 913  375872 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 914  375873 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 915  375874 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 916  375875 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 917  375876 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 918  375877 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 919  375878 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 920  375879 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 921  375880 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 922  375881 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 923  375882 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 924  375883 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 925  375884 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 926  375885 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 927  375886 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 928  375887 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 929  375888 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 930  375889 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 931  375890 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 932  375891 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 933  375892 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 934  375893 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 935  375894 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 936  375895 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 937  375896 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 938  375897 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 939  375898 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 940  375899 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 941  375900 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 942  375901 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 943  375902 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 944  375903 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 945  375904 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 946  375905 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 947  375906 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 948  375907 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 949  375908 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 950  375909 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 951  375910 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 952  375911 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 953  375912 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 954  375913 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 955  375914 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 956  375915 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 957  375916 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 958  375917 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 959  375918 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 960  375919 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 961  375920 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 962  375921 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 963  375922 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 964  375923 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 965  375924 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 966  375925 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 967  375926 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 968  375927 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 969  375928 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 970  375929 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 971  375930 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 972  375931 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 973  375932 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 974  375933 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 975  375934 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 976  375935 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 977  375936 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 978  375937 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 979  375938 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 980  375939 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 981  375940 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 982  375941 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 983  375942 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 984  375943 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 985  375944 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 986  375945 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 987  375946 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 988  375947 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 989  375948 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 990  375949 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 991  375950 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 992  375951 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 993  375952 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 994  375953 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 995  375954 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 996  375955 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 997  375956 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 998  375957 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 999  375958 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1000 375959 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1001 375960 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1002 375961 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1003 375962 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1004 375963 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1005 375964 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1006 375965 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1007 375966 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1008 375967 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1009 375968 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1010 375969 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1011 375970 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1012 375971 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1013 375972 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1014 375973 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1015 375974 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1016 375975 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1017 375976 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1018 375977 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1019 375978 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1020 375979 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1021 375980 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1022 375981 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1023 375982 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1024 375983 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1025 375984 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1026 375985 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1027 375986 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1028 375987 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1029 375988 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1030 375989 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1031 375990 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1032 375991 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1033 375992 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1034 375993 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1035 375994 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1036 375995 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1037 375996 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1038 375997 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1039 375998 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1040 375999 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1041 376000 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1042 376001 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1043 376002 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1044 376003 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1045 376004 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1046 376005 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1047 376006 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1048 376007 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1049 376008 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1050 376009 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1051 376010 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1052 376011 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1053 376012 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1054 376013 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1055 376014 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1056 376015 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1057 376016 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1058 376017 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1059 376018 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1060 376019 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1061 376020 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1062 376021 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1063 376022 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1064 376023 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1065 376024 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1066 376025 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1067 376026 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1068 376027 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1069 376028 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1070 376029 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1071 376030 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1072 376031 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1073 376032 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1074 376033 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1075 376034 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1076 376035 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1077 376036 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1078 376037 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1079 376038 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1080 376039 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1081 376040 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1082 376041 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1083 376042 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1084 376043 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1085 376044 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1086 376045 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1087 376046 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1088 376047 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1089 376048 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1090 376049 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1091 376050 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1092 376051 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1093 376052 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1094 376053 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1095 376054 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1096 376055 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1097 376056 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1098 376057 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1099 376058 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1100 376059 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1101 376060 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1102 376061 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1103 376062 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1104 376063 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1105 376064 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1106 376065 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1107 376066 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1108 376067 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1109 376068 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1110 376069 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1111 376070 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1112 376071 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1113 376072 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1114 376073 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1115 376074 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1116 376075 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1117 376076 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1118 376077 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1119 376078 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1120 376079 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1121 376080 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1122 376081 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1123 376082 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1124 376083 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1125 376084 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1126 376085 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1127 376086 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1128 376087 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1129 376088 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1130 376089 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1131 376090 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1132 376091 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1133 376092 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1134 376093 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1135 376094 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1136 376095 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1137 376096 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1138 376097 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1139 376098 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1140 376099 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1141 376100 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1142 376101 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1143 376102 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1144 376103 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1145 376104 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1146 376105 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1147 376106 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1148 376107 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1149 376108 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1150 376109 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1151 376110 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1152 376111 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1153 376112 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1154 376113 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1155 376114 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1156 376115 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1157 376116 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1158 376117 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1159 376118 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1160 376119 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1161 376120 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1162 376121 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1163 376122 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1164 376123 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1165 376124 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1166 376125 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1167 376126 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1168 376127 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1169 376128 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1170 376129 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1171 376130 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1172 376131 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1173 376132 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1174 376133 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1175 376134 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1176 376135 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1177 376136 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1178 376137 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1179 376138 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1180 376139 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1181 376140 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1182 376141 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1183 376142 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1184 376143 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1185 376144 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1186 376145 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1187 376146 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1188 376147 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1189 376148 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1190 376149 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1191 376150 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1192 376151 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1193 376152 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1194 376153 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1195 376154 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1196 376155 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1197 376156 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1198 376157 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1199 376158 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1200 376159 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1201 376160 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1202 376161 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1203 376162 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1204 376163 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1205 376164 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1206 376165 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1207 376166 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1208 376167 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1209 376168 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1210 376169 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1211 376170 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1212 376171 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1213 376172 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1214 376173 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1215 376174 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1216 376175 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1217 376176 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1218 376177 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1219 376178 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1220 376179 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1221 376180 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1222 376181 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1223 376182 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1224 376183 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1225 376184 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1226 376185 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1227 376186 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1228 376187 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1229 376188 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1230 376189 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1231 376190 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1232 376191 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1233 376192 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1234 376193 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1235 376194 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1236 376195 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1237 376196 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1238 376197 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1239 376198 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1240 376199 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1241 376200 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1242 376201 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1243 376202 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1244 376203 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1245 376204 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1246 376205 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1247 376206 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1248 376207 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1249 376208 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1250 376209 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1251 376210 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1252 376211 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1253 376212 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1254 376213 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1255 376214 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1256 376215 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1257 376216 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1258 376217 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1259 376218 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1260 376219 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1261 376220 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1262 376221 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1263 376222 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1264 376223 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1265 376224 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1266 376225 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1267 376226 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1268 376227 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1269 376228 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1270 376229 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1271 376230 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1272 376231 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1273 376232 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1274 376233 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1275 376234 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1276 376235 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1277 376236 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1278 376237 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1279 376238 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1280 376239 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1281 376240 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1282 376241 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1283 376242 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1284 376243 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1285 376244 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1286 376245 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1287 376246 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1288 376247 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1289 376248 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1290 376249 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1291 376250 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1292 376251 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1293 376252 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1294 376253 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1295 376254 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1296 376255 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1297 376256 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1298 376257 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1299 376258 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1300 376259 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1301 376260 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1302 376261 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1303 376262 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1304 376263 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1305 376264 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1306 376265 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1307 376266 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1308 376267 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1309 376268 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1310 376269 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1311 376270 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1312 376271 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1313 376272 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1314 376273 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1315 376274 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1316 376275 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1317 376276 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1318 376277 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1319 376278 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1320 376279 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1321 376280 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1322 376281 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1323 376282 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1324 376283 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1325 376284 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1326 376285 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1327 376286 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1328 376287 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1329 376288 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1330 376289 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1331 376290 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1332 376291 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1333 376292 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1334 376293 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1335 376294 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1336 376295 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1337 376296 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1338 376297 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1339 376298 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1340 376299 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1341 376300 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1342 376301 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1343 376302 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1344 376303 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1345 376304 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1346 376305 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1347 376306 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1348 376307 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1349 376308 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1350 376309 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1351 376310 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1352 376311 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1353 376312 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1354 376313 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1355 376314 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1356 376315 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1357 376316 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1358 376317 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1359 376318 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1360 376319 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1361 376320 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1362 376321 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1363 376322 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1364 376323 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1365 376324 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1366 376325 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1367 376326 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1368 376327 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1369 376328 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1370 376329 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1371 376330 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1372 376331 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1373 376332 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1374 376333 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1375 376334 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1376 376335 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1377 376336 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1378 376337 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1379 376338 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1380 376339 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1381 376340 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1382 376341 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1383 376342 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1384 376343 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1385 376344 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1386 376345 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1387 376346 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1388 376347 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1389 376348 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1390 376349 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1391 376350 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1392 376351 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1393 376352 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1394 376353 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1395 376354 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1396 376355 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1397 376356 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1398 376357 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1399 376358 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1400 376359 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1401 376360 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1402 376361 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1403 376362 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1404 376363 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1405 376364 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1406 376365 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1407 376366 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1408 376367 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1409 376368 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1410 376369 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1411 376370 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1412 376371 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1413 376372 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1414 376373 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1415 376374 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1416 376375 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1417 376376 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1418 376377 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1419 376378 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1420 376379 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1421 376380 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1422 376381 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1423 376382 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1424 376383 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1425 376384 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1426 376385 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1427 376386 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1428 376387 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1429 376388 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1430 376389 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1431 376390 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1432 376391 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1433 376392 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1434 376393 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1435 376394 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1436 376395 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1437 376396 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1438 376397 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1439 376398 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1440 376399 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1441 376400 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1442 376401 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1443 376402 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1444 376403 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1445 376404 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1446 376405 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1447 376406 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1448 376407 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1449 376408 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1450 376409 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1451 376410 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1452 376411 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1453 376412 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1454 376413 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1455 376414 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1456 376415 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1457 376416 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1458 376417 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1459 376418 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1460 376419 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1461 376420 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1462 376421 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1463 376422 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1464 376423 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1465 376424 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1466 376425 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1467 376426 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1468 376427 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1469 376428 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1470 376429 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1471 376430 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1472 376431 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1473 376432 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1474 376433 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1475 376434 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1476 376435 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1477 376436 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1478 376437 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1479 376438 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1480 376439 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1481 376440 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1482 376441 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1483 376442 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1484 376443 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1485 376444 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1486 376445 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1487 376446 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1488 376447 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1489 376448 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1490 376449 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1491 376450 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1492 376451 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1493 376452 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1494 376453 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1495 376454 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1496 376455 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1497 376456 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1498 376457 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1499 376458 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1500 376459 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1501 376460 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1502 376461 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1503 376462 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1504 376463 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1505 376464 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1506 376465 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1507 376466 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1508 376467 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1509 376468 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1510 376469 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1511 376470 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1512 376471 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1513 376472 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1514 376473 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1515 376474 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1516 376475 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1517 376476 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1518 376477 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1519 376478 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1520 376479 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1521 376480 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1522 376481 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1523 376482 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1524 376483 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1525 376484 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1526 376485 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1527 376486 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1528 376487 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1529 376488 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1530 376489 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1531 376490 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1532 376491 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1533 376492 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1534 376493 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1535 376494 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1536 376495 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1537 376496 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1538 376497 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1539 376498 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1540 376499 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1541 376500 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1542 376501 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1543 376502 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1544 376503 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1545 376504 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1546 376505 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1547 376506 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1548 376507 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1549 376508 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1550 376509 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1551 376510 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1552 376511 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1553 376512 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1554 376513 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1555 376514 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1556 376515 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1557 376516 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1558 376517 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1559 376518 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1560 376519 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1561 376520 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1562 376521 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1563 376522 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1564 376523 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1565 376524 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1566 376525 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1567 376526 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1568 376527 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1569 376528 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1570 376529 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1571 376530 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1572 376531 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1573 376532 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1574 376533 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1575 376534 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1576 376535 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1577 376536 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1578 376537 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1579 376538 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1580 376539 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1581 376540 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1582 376541 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1583 376542 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1584 376543 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1585 376544 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1586 376545 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1587 376546 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1588 376547 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1589 376548 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1590 376549 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1591 376550 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1592 376551 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1593 376552 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1594 376553 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1595 376554 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1596 376555 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1597 376556 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1598 376557 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1599 376558 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1600 376559 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1601 376560 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1602 376561 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1603 376562 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1604 376563 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1605 376564 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1606 376565 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1607 376566 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1608 376567 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1609 376568 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1610 376569 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1611 376570 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1612 376571 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1613 376572 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1614 376573 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1615 376574 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1616 376575 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1617 376576 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1618 376577 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1619 376578 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1620 376579 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1621 376580 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1622 376581 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1623 376582 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1624 376583 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1625 376584 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1626 376585 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1627 376586 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1628 376587 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1629 376588 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1630 376589 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1631 376590 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1632 376591 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1633 376592 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1634 376593 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1635 376594 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1636 376595 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1637 376596 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1638 376597 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1639 376598 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1640 376599 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1641 376600 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1642 376601 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1643 376602 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1644 376603 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1645 376604 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1646 376605 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1647 376606 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1648 376607 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1649 376608 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1650 376609 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1651 376610 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1652 376611 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1653 376612 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1654 376613 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1655 376614 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1656 376615 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1657 376616 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1658 376617 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1659 376618 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1660 376619 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1661 376620 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1662 376621 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1663 376622 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1664 376623 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1665 376624 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1666 376625 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1667 376626 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1668 376627 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1669 376628 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1670 376629 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1671 376630 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1672 376631 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1673 376632 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1674 376633 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1675 376634 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1676 376635 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1677 376636 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1678 376637 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1679 376638 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1680 376639 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1681 376640 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1682 376641 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1683 376642 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1684 376643 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1685 376644 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1686 376645 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1687 376646 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1688 376647 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1689 376648 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1690 376649 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1691 376650 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1692 376651 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1693 376652 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1694 376653 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1695 376654 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1696 376655 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1697 376656 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1698 376657 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1699 376658 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1700 376659 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1701 376660 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1702 376661 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1703 376662 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1704 376663 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1705 376664 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1706 376665 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1707 376666 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1708 376667 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1709 376668 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1710 376669 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1711 376670 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1712 376671 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1713 376672 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1714 376673 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1715 376674 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1716 376675 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1717 376676 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1718 376677 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1719 376678 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1720 376679 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1721 376680 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1722 376681 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1723 376682 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1724 376683 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1725 376684 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1726 376685 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1727 376686 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1728 376687 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1729 376688 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1730 376689 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1731 376690 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1732 376691 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1733 376692 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1734 376693 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1735 376694 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1736 376695 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1737 376696 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1738 376697 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1739 376698 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1740 376699 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1741 376700 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1742 376701 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1743 376702 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1744 376703 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1745 376704 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1746 376705 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1747 376706 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1748 376707 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1749 376708 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1750 376709 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1751 376710 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1752 376711 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1753 376712 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1754 376713 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1755 376714 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1756 376715 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1757 376716 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1758 376717 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1759 376718 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1760 376719 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1761 376720 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1762 376721 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1763 376722 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1764 376723 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1765 376724 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1766 376725 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1767 376726 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1768 376727 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1769 376728 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1770 376729 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1771 376730 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1772 376731 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1773 376732 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1774 376733 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1775 376734 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1776 376735 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1777 376736 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1778 376737 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1779 376738 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1780 376739 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1781 376740 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1782 376741 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1783 376742 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1784 376743 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1785 376744 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1786 376745 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1787 376746 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1788 376747 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1789 376748 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1790 376749 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1791 376750 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1792 376751 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1793 376752 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1794 376753 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1795 376754 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1796 376755 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1797 376756 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1798 376757 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1799 376758 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1800 376759 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1801 376760 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1802 376761 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1803 376762 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1804 376763 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1805 376764 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1806 376765 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1807 376766 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1808 376767 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1809 376768 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1810 376769 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1811 376770 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1812 376771 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1813 376772 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1814 376773 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1815 376774 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1816 376775 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1817 376776 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1818 376777 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1819 376778 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1820 376779 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1821 376780 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1822 376781 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1823 376782 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1824 376783 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1825 376784 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1826 376785 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1827 376786 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1828 376787 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1829 376788 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1830 376789 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1831 376790 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1832 376791 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1833 376792 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1834 376793 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1835 376794 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1836 376795 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1837 376796 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1838 376797 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1839 376798 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1840 376799 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1841 376800 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1842 376801 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1843 376802 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1844 376803 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1845 376804 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1846 376805 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1847 376806 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1848 376807 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1849 376808 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1850 376809 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1851 376810 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1852 376811 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1853 376812 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1854 376813 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1855 376814 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1856 376815 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1857 376816 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1858 376817 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1859 376818 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1860 376819 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1861 376820 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1862 376821 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1863 376822 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1864 376823 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1865 376824 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1866 376825 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1867 376826 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1868 376827 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1869 376828 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1870 376829 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1871 376830 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1872 376831 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1873 376832 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1874 376833 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1875 376834 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1876 376835 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1877 376836 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1878 376837 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1879 376838 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1880 376839 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1881 376840 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1882 376841 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1883 376842 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1884 376843 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1885 376844 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1886 376845 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1887 376846 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1888 376847 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1889 376848 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1890 376849 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1891 376850 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1892 376851 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1893 376852 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1894 376853 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1895 376854 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1896 376855 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1897 376856 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1898 376857 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1899 376858 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1900 376859 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1901 376860 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1902 376861 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1903 376862 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1904 376863 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1905 376864 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1906 376865 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1907 376866 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1908 376867 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1909 376868 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1910 376869 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1911 376870 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1912 376871 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1913 376872 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1914 376873 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1915 376874 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1916 376875 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1917 376876 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1918 376877 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1919 376878 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1920 376879 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1921 376880 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1922 376881 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1923 376882 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1924 376883 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1925 376884 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1926 376885 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1927 376886 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1928 376887 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1929 376888 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1930 376889 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1931 376890 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1932 376891 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1933 376892 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1934 376893 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1935 376894 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1936 376895 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1937 376896 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1938 376897 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1939 376898 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1940 376899 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1941 376900 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1942 376901 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1943 376902 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1944 376903 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1945 376904 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1946 376905 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1947 376906 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1948 376907 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1949 376908 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1950 376909 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1951 376910 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1952 376911 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1953 376912 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1954 376913 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1955 376914 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1956 376915 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1957 376916 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1958 376917 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1959 376918 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1960 376919 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1961 376920 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1962 376921 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1963 376922 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1964 376923 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1965 376924 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1966 376925 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1967 376926 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1968 376927 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1969 376928 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1970 376929 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1971 376930 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1972 376931 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1973 376932 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1974 376933 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1975 376934 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1976 376935 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1977 376936 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1978 376937 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1979 376938 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1980 376939 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1981 376940 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1982 376941 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1983 376942 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1984 376943 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1985 376944 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1986 376945 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1987 376946 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1988 376947 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1989 376948 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1990 376949 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1991 376950 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1992 376951 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1993 376952 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1994 376953 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1995 376954 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1996 376955 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1997 376956 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1998 376957 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1999 376958 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2000 376959 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2001 376960 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2002 376961 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2003 376962 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2004 376963 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2005 376964 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2006 376965 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2007 376966 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2008 376967 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2009 376968 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2010 376969 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2011 376970 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2012 376971 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2013 376972 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2014 376973 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2015 376974 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2016 376975 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2017 376976 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2018 376977 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2019 376978 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2020 376979 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2021 376980 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2022 376981 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2023 376982 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2024 376983 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2025 376984 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2026 376985 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2027 376986 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2028 376987 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2029 376988 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2030 376989 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2031 376990 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2032 376991 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2033 376992 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2034 376993 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2035 376994 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2036 376995 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2037 376996 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2038 376997 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2039 376998 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2040 376999 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2041 377000 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2042 377001 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2043 377002 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2044 377003 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2045 377004 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2046 377005 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2047 377006 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2048 377007 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2049 377008 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2050 377009 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2051 377010 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2052 377011 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2053 377012 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2054 377013 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2055 377014 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2056 377015 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2057 377016 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2058 377017 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2059 377018 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2060 377019 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2061 377020 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2062 377021 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2063 377022 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2064 377023 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2065 377024 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2066 377025 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2067 377026 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2068 377027 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2069 377028 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2070 377029 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2071 377030 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2072 377031 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2073 377032 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2074 377033 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2075 377034 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2076 377035 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2077 377036 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2078 377037 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2079 377038 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2080 377039 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2081 377040 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2082 377041 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2083 377042 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2084 377043 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2085 377044 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2086 377045 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2087 377046 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2088 377047 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2089 377048 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2090 377049 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2091 377050 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2092 377051 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2093 377052 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2094 377053 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2095 377054 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2096 377055 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2097 377056 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2098 377057 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2099 377058 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2100 377059 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2101 377060 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2102 377061 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2103 377062 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2104 377063 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2105 377064 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2106 377065 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2107 377066 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2108 377067 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2109 377068 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2110 377069 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2111 377070 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2112 377071 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2113 377072 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2114 377073 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2115 377074 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2116 377075 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2117 377076 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2118 377077 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2119 377078 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2120 377079 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2121 377080 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2122 377081 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2123 377082 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2124 377083 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2125 377084 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2126 377085 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2127 377086 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2128 377087 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2129 377088 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2130 377089 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2131 377090 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2132 377091 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2133 377092 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2134 377093 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2135 377094 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2136 377095 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2137 377096 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2138 377097 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2139 377098 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2140 377099 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2141 377100 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2142 377101 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2143 377102 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2144 377103 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2145 377104 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2146 377105 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2147 377106 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2148 377107 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2149 377108 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2150 377109 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2151 377110 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2152 377111 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2153 377112 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2154 377113 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2155 377114 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2156 377115 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2157 377116 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2158 377117 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2159 377118 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2160 377119 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2161 377120 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2162 377121 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2163 377122 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2164 377123 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2165 377124 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2166 377125 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2167 377126 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2168 377127 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2169 377128 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2170 377129 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2171 377130 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2172 377131 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2173 377132 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2174 377133 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2175 377134 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2176 377135 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2177 377136 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2178 377137 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2179 377138 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2180 377139 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2181 377140 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2182 377141 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2183 377142 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2184 377143 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2185 377144 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2186 377145 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2187 377146 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2188 377147 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2189 377148 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2190 377149 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2191 377150 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2192 377151 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2193 377152 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2194 377153 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2195 377154 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2196 377155 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2197 377156 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2198 377157 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2199 377158 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2200 377159 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2201 377160 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2202 377161 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2203 377162 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2204 377163 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2205 377164 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2206 377165 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2207 377166 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2208 377167 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2209 377168 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2210 377169 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2211 377170 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2212 377171 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2213 377172 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2214 377173 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2215 377174 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2216 377175 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2217 377176 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2218 377177 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2219 377178 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2220 377179 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2221 377180 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2222 377181 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2223 377182 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2224 377183 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2225 377184 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2226 377185 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2227 377186 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2228 377187 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2229 377188 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2230 377189 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2231 377190 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2232 377191 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2233 377192 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2234 377193 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2235 377194 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2236 377195 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2237 377196 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2238 377197 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2239 377198 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2240 377199 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2241 377200 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2242 377201 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2243 377202 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2244 377203 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2245 377204 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2246 377205 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2247 377206 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2248 377207 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2249 377208 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2250 377209 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2251 377210 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2252 377211 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2253 377212 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2254 377213 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2255 377214 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2256 377215 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2257 377216 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2258 377217 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2259 377218 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2260 377219 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2261 377220 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2262 377221 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2263 377222 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2264 377223 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2265 377224 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2266 377225 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2267 377226 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2268 377227 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2269 377228 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2270 377229 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2271 377230 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2272 377231 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2273 377232 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2274 377233 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2275 377234 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2276 377235 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2277 377236 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2278 377237 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2279 377238 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2280 377239 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2281 377240 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2282 377241 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2283 377242 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2284 377243 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2285 377244 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2286 377245 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2287 377246 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2288 377247 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2289 377248 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2290 377249 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2291 377250 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2292 377251 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2293 377252 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2294 377253 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2295 377254 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2296 377255 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2297 377256 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2298 377257 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2299 377258 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2300 377259 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2301 377260 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2302 377261 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2303 377262 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2304 377263 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2305 377264 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2306 377265 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2307 377266 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2308 377267 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2309 377268 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2310 377269 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2311 377270 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2312 377271 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2313 377272 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2314 377273 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2315 377274 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2316 377275 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2317 377276 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2318 377277 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2319 377278 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2320 377279 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2321 377280 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2322 377281 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2323 377282 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2324 377283 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2325 377284 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2326 377285 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2327 377286 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2328 377287 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2329 377288 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2330 377289 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2331 377290 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2332 377291 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2333 377292 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2334 377293 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2335 377294 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2336 377295 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2337 377296 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2338 377297 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2339 377298 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2340 377299 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2341 377300 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2342 377301 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2343 377302 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2344 377303 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2345 377304 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2346 377305 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2347 377306 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2348 377307 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2349 377308 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2350 377309 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2351 377310 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2352 377311 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2353 377312 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2354 377313 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2355 377314 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2356 377315 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2357 377316 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2358 377317 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2359 377318 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2360 377319 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2361 377320 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2362 377321 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2363 377322 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2364 377323 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2365 377324 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2366 377325 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2367 377326 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2368 377327 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2369 377328 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2370 377329 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2371 377330 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2372 377331 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2373 377332 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2374 377333 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2375 377334 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2376 377335 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2377 377336 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2378 377337 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2379 377338 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2380 377339 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2381 377340 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2382 377341 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2383 377342 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2384 377343 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2385 377344 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2386 377345 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2387 377346 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2388 377347 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2389 377348 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2390 377349 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2391 377350 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2392 377351 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2393 377352 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2394 377353 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2395 377354 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2396 377355 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2397 377356 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2398 377357 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2399 377358 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2400 377359 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2401 377360 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2402 377361 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2403 377362 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2404 377363 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2405 377364 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2406 377365 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2407 377366 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2408 377367 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2409 377368 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2410 377369 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2411 377370 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2412 377371 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2413 377372 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2414 377373 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2415 377374 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2416 377375 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2417 377376 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2418 377377 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2419 377378 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2420 377379 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2421 377380 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2422 377381 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2423 377382 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2424 377383 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2425 377384 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2426 377385 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2427 377386 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2428 377387 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2429 377388 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2430 377389 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2431 377390 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2432 377391 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2433 377392 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2434 377393 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2435 377394 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2436 377395 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2437 377396 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2438 377397 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2439 377398 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2440 377399 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2441 377400 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2442 377401 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2443 377402 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2444 377403 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2445 377404 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2446 377405 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2447 377406 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2448 377407 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2449 377408 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2450 377409 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2451 377410 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2452 377411 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2453 377412 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2454 377413 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2455 377414 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2456 377415 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2457 377416 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2458 377417 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2459 377418 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2460 377419 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2461 377420 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2462 377421 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2463 377422 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2464 377423 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2465 377424 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2466 377425 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2467 377426 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2468 377427 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2469 377428 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2470 377429 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2471 377430 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2472 377431 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2473 377432 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2474 377433 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2475 377434 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2476 377435 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2477 377436 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2478 377437 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2479 377438 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2480 377439 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2481 377440 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2482 377441 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2483 377442 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2484 377443 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2485 377444 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2486 377445 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2487 377446 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2488 377447 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2489 377448 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2490 377449 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2491 377450 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2492 377451 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2493 377452 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2494 377453 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2495 377454 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2496 377455 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2497 377456 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2498 377457 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2499 377458 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2500 377459 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2501 377460 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2502 377461 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2503 377462 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2504 377463 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2505 377464 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2506 377465 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2507 377466 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2508 377467 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2509 377468 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2510 377469 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2511 377470 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2512 377471 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2513 377472 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2514 377473 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2515 377474 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2516 377475 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2517 377476 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2518 377477 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2519 377478 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2520 377479 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2521 377480 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2522 377481 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2523 377482 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2524 377483 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2525 377484 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2526 377485 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2527 377486 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2528 377487 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2529 377488 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2530 377489 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2531 377490 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2532 377491 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2533 377492 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2534 377493 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2535 377494 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2536 377495 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2537 377496 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2538 377497 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2539 377498 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2540 377499 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2541 377500 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2542 377501 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2543 377502 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2544 377503 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2545 377504 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2546 377505 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2547 377506 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2548 377507 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2549 377508 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2550 377509 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2551 377510 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2552 377511 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2553 377512 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2554 377513 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2555 377514 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2556 377515 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2557 377516 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2558 377517 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2559 377518 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2560 377519 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2561 377520 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2562 377521 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2563 377522 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2564 377523 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2565 377524 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2566 377525 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2567 377526 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2568 377527 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2569 377528 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2570 377529 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2571 377530 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2572 377531 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2573 377532 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2574 377533 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2575 377534 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2576 377535 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2577 377536 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2578 377537 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2579 377538 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2580 377539 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2581 377540 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2582 377541 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2583 377542 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2584 377543 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2585 377544 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2586 377545 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2587 377546 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2588 377547 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2589 377548 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2590 377549 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2591 377550 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2592 377551 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2593 377552 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2594 377553 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2595 377554 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2596 377555 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2597 377556 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2598 377557 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2599 377558 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2600 377559 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2601 377560 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2602 377561 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2603 377562 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2604 377563 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2605 377564 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2606 377565 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2607 377566 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2608 377567 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2609 377568 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2610 377569 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2611 377570 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2612 377571 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2613 377572 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2614 377573 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2615 377574 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2616 377575 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2617 377576 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2618 377577 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2619 377578 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2620 377579 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2621 377580 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2622 377581 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2623 377582 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2624 377583 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2625 377584 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2626 377585 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2627 377586 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2628 377587 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2629 377588 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2630 377589 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2631 377590 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2632 377591 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2633 377592 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2634 377593 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2635 377594 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2636 377595 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2637 377596 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2638 377597 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2639 377598 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2640 377599 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2641 377600 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2642 377601 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2643 377602 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2644 377603 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2645 377604 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2646 377605 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2647 377606 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2648 377607 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2649 377608 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2650 377609 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2651 377610 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2652 377611 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2653 377612 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2654 377613 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2655 377614 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2656 377615 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2657 377616 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2658 377617 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2659 377618 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2660 377619 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2661 377620 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2662 377621 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2663 377622 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2664 377623 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2665 377624 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2666 377625 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2667 377626 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2668 377627 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2669 377628 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2670 377629 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2671 377630 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2672 377631 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2673 377632 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2674 377633 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2675 377634 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2676 377635 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2677 377636 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2678 377637 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2679 377638 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2680 377639 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2681 377640 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2682 377641 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2683 377642 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2684 377643 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2685 377644 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2686 377645 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2687 377646 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2688 377647 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2689 377648 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2690 377649 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2691 377650 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2692 377651 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2693 377652 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2694 377653 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2695 377654 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2696 377655 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2697 377656 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2698 377657 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2699 377658 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2700 377659 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2701 377660 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2702 377661 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2703 377662 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2704 377663 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2705 377664 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2706 377665 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2707 377666 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2708 377667 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2709 377668 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2710 377669 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2711 377670 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2712 377671 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2713 377672 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2714 377673 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2715 377674 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2716 377675 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2717 377676 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2718 377677 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2719 377678 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2720 377679 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2721 377680 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2722 377681 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2723 377682 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2724 377683 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2725 377684 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2726 377685 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2727 377686 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2728 377687 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2729 377688 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2730 377689 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2731 377690 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2732 377691 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2733 377692 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2734 377693 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2735 377694 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2736 377695 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2737 377696 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2738 377697 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2739 377698 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2740 377699 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2741 377700 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2742 377701 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2743 377702 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2744 377703 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2745 377704 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2746 377705 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2747 377706 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2748 377707 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2749 377708 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2750 377709 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2751 377710 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2752 377711 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2753 377712 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2754 377713 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2755 377714 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2756 377715 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2757 377716 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2758 377717 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2759 377718 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2760 377719 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2761 377720 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2762 377721 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2763 377722 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2764 377723 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2765 377724 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2766 377725 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2767 377726 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2768 377727 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2769 377728 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2770 377729 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2771 377730 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2772 377731 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2773 377732 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2774 377733 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2775 377734 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2776 377735 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2777 377736 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2778 377737 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2779 377738 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2780 377739 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2781 377740 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2782 377741 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2783 377742 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2784 377743 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2785 377744 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2786 377745 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2787 377746 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2788 377747 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2789 377748 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2790 377749 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2791 377750 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2792 377751 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2793 377752 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2794 377753 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2795 377754 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2796 377755 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2797 377756 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2798 377757 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2799 377758 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2800 377759 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2801 377760 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2802 377761 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2803 377762 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2804 377763 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2805 377764 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2806 377765 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2807 377766 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2808 377767 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2809 377768 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2810 377769 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2811 377770 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2812 377771 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2813 377772 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2814 377773 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2815 377774 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2816 377775 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2817 377776 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2818 377777 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2819 377778 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2820 377779 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2821 377780 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2822 377781 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2823 377782 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2824 377783 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2825 377784 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2826 377785 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2827 377786 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2828 377787 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2829 377788 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2830 377789 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2831 377790 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2832 377791 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2833 377792 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2834 377793 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2835 377794 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2836 377795 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2837 377796 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2838 377797 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2839 377798 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2840 377799 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2841 377800 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2842 377801 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2843 377802 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2844 377803 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2845 377804 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2846 377805 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2847 377806 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2848 377807 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2849 377808 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2850 377809 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2851 377810 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2852 377811 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2853 377812 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2854 377813 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2855 377814 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2856 377815 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2857 377816 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2858 377817 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2859 377818 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2860 377819 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2861 377820 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2862 377821 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2863 377822 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2864 377823 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2865 377824 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2866 377825 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2867 377826 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2868 377827 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2869 377828 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2870 377829 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2871 377830 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2872 377831 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2873 377832 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2874 377833 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2875 377834 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2876 377835 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2877 377836 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2878 377837 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2879 377838 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2880 377839 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2881 377840 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2882 377841 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2883 377842 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2884 377843 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2885 377844 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2886 377845 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2887 377846 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2888 377847 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2889 377848 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2890 377849 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2891 377850 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2892 377851 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2893 377852 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2894 377853 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2895 377854 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2896 377855 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2897 377856 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2898 377857 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2899 377858 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2900 377859 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2901 377860 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2902 377861 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2903 377862 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2904 377863 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2905 377864 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2906 377865 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2907 377866 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2908 377867 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2909 377868 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2910 377869 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2911 377870 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2912 377871 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2913 377872 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2914 377873 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2915 377874 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2916 377875 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2917 377876 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2918 377877 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2919 377878 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2920 377879 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2921 377880 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2922 377881 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2923 377882 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2924 377883 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2925 377884 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2926 377885 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2927 377886 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2928 377887 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2929 377888 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2930 377889 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2931 377890 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2932 377891 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2933 377892 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2934 377893 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2935 377894 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2936 377895 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2937 377896 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2938 377897 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2939 377898 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2940 377899 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2941 377900 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2942 377901 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2943 377902 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2944 377903 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2945 377904 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2946 377905 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2947 377906 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2948 377907 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2949 377908 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2950 377909 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2951 377910 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2952 377911 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2953 377912 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2954 377913 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2955 377914 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2956 377915 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2957 377916 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2958 377917 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2959 377918 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2960 377919 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2961 377920 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2962 377921 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2963 377922 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2964 377923 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2965 377924 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2966 377925 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2967 377926 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2968 377927 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2969 377928 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2970 377929 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2971 377930 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2972 377931 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2973 377932 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2974 377933 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2975 377934 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2976 377935 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2977 377936 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2978 377937 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2979 377938 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2980 377939 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2981 377940 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2982 377941 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2983 377942 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2984 377943 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2985 377944 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2986 377945 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2987 377946 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2988 377947 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2989 377948 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2990 377949 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2991 377950 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2992 377951 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2993 377952 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2994 377953 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2995 377954 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2996 377955 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2997 377956 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2998 377957 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2999 377958 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3000 377959 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3001 377960 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3002 377961 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3003 377962 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3004 377963 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3005 377964 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3006 377965 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3007 377966 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3008 377967 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3009 377968 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3010 377969 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3011 377970 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3012 377971 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3013 377972 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3014 377973 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3015 377974 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3016 377975 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3017 377976 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3018 377977 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3019 377978 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3020 377979 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3021 377980 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3022 377981 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3023 377982 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3024 377983 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3025 377984 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3026 377985 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3027 377986 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3028 377987 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3029 377988 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3030 377989 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3031 377990 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3032 377991 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3033 377992 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3034 377993 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3035 377994 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3036 377995 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3037 377996 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3038 377997 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3039 377998 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3040 377999 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3041 378000 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3042 378001 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3043 378002 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3044 378003 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3045 378004 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3046 378005 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3047 378006 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3048 378007 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3049 378008 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3050 378009 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3051 378010 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3052 378011 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3053 378012 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3054 378013 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3055 378014 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3056 378015 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3057 378016 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3058 378017 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3059 378018 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3060 378019 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3061 378020 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3062 378021 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3063 378022 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3064 378023 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3065 378024 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3066 378025 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3067 378026 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3068 378027 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3069 378028 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3070 378029 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3071 378030 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3072 378031 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3073 378032 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3074 378033 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3075 378034 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3076 378035 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3077 378036 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3078 378037 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3079 378038 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3080 378039 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3081 378040 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3082 378041 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3083 378042 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3084 378043 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3085 378044 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3086 378045 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3087 378046 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3088 378047 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3089 378048 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3090 378049 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3091 378050 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3092 378051 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3093 378052 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3094 378053 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3095 378054 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3096 378055 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3097 378056 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3098 378057 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3099 378058 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3100 378059 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3101 378060 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3102 378061 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3103 378062 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3104 378063 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3105 378064 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3106 378065 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3107 378066 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3108 378067 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3109 378068 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3110 378069 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3111 378070 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3112 378071 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3113 378072 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3114 378073 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3115 378074 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3116 378075 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3117 378076 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3118 378077 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3119 378078 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3120 378079 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3121 378080 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3122 378081 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3123 378082 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3124 378083 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3125 378084 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3126 378085 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3127 378086 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3128 378087 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3129 378088 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3130 378089 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3131 378090 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3132 378091 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3133 378092 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3134 378093 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3135 378094 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3136 378095 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3137 378096 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3138 378097 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3139 378098 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3140 378099 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3141 378100 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3142 378101 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3143 378102 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3144 378103 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3145 378104 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3146 378105 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3147 378106 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3148 378107 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3149 378108 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3150 378109 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3151 378110 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3152 378111 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3153 378112 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3154 378113 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3155 378114 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3156 378115 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3157 378116 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3158 378117 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3159 378118 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3160 378119 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3161 378120 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3162 378121 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3163 378122 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3164 378123 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3165 378124 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3166 378125 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3167 378126 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3168 378127 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3169 378128 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3170 378129 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3171 378130 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3172 378131 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3173 378132 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3174 378133 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3175 378134 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3176 378135 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3177 378136 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3178 378137 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3179 378138 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3180 378139 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3181 378140 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3182 378141 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3183 378142 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3184 378143 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3185 378144 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3186 378145 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3187 378146 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3188 378147 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3189 378148 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3190 378149 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3191 378150 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3192 378151 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3193 378152 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3194 378153 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3195 378154 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3196 378155 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3197 378156 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3198 378157 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3199 378158 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3200 378159 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3201 378160 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3202 378161 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3203 378162 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3204 378163 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3205 378164 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3206 378165 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3207 378166 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3208 378167 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3209 378168 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3210 378169 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3211 378170 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3212 378171 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3213 378172 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3214 378173 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3215 378174 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3216 378175 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3217 378176 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3218 378177 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3219 378178 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3220 378179 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3221 378180 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3222 378181 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3223 378182 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3224 378183 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3225 378184 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3226 378185 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3227 378186 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3228 378187 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3229 378188 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3230 378189 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3231 378190 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3232 378191 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3233 378192 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3234 378193 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3235 378194 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3236 378195 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3237 378196 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3238 378197 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3239 378198 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3240 378199 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3241 378200 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3242 378201 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3243 378202 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3244 378203 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3245 378204 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3246 378205 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3247 378206 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3248 378207 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3249 378208 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3250 378209 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3251 378210 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3252 378211 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3253 378212 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3254 378213 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3255 378214 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3256 378215 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3257 378216 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3258 378217 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3259 378218 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3260 378219 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3261 378220 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3262 378221 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3263 378222 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3264 378223 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3265 378224 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3266 378225 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3267 378226 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3268 378227 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3269 378228 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3270 378229 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3271 378230 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3272 378231 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3273 378232 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3274 378233 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3275 378234 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3276 378235 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3277 378236 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3278 378237 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3279 378238 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3280 378239 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3281 378240 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3282 378241 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3283 378242 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3284 378243 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3285 378244 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3286 378245 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3287 378246 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3288 378247 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3289 378248 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3290 378249 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3291 378250 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3292 378251 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3293 378252 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3294 378253 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3295 378254 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3296 378255 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3297 378256 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3298 378257 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3299 378258 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3300 378259 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3301 378260 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3302 378261 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3303 378262 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3304 378263 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3305 378264 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3306 378265 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3307 378266 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3308 378267 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3309 378268 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3310 378269 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3311 378270 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3312 378271 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3313 378272 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3314 378273 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3315 378274 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3316 378275 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3317 378276 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3318 378277 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3319 378278 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3320 378279 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3321 378280 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3322 378281 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3323 378282 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3324 378283 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3325 378284 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3326 378285 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3327 378286 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3328 378287 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3329 378288 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3330 378289 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3331 378290 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3332 378291 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3333 378292 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3334 378293 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3335 378294 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3336 378295 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3337 378296 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3338 378297 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3339 378298 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3340 378299 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3341 378300 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3342 378301 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3343 378302 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3344 378303 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3345 378304 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3346 378305 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3347 378306 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3348 378307 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3349 378308 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3350 378309 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3351 378310 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3352 378311 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3353 378312 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3354 378313 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3355 378314 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3356 378315 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3357 378316 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3358 378317 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3359 378318 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3360 378319 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3361 378320 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3362 378321 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3363 378322 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3364 378323 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3365 378324 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3366 378325 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3367 378326 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3368 378327 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3369 378328 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3370 378329 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3371 378330 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3372 378331 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3373 378332 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3374 378333 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3375 378334 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3376 378335 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3377 378336 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3378 378337 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3379 378338 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3380 378339 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3381 378340 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3382 378341 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3383 378342 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3384 378343 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3385 378344 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3386 378345 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3387 378346 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3388 378347 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3389 378348 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3390 378349 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3391 378350 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3392 378351 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3393 378352 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3394 378353 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3395 378354 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3396 378355 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3397 378356 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3398 378357 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3399 378358 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3400 378359 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3401 378360 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3402 378361 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3403 378362 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3404 378363 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3405 378364 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3406 378365 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3407 378366 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3408 378367 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3409 378368 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3410 378369 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3411 378370 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3412 378371 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3413 378372 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3414 378373 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3415 378374 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3416 378375 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3417 378376 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3418 378377 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3419 378378 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3420 378379 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3421 378380 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3422 378381 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3423 378382 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3424 378383 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3425 378384 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3426 378385 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3427 378386 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3428 378387 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3429 378388 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3430 378389 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3431 378390 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3432 378391 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3433 378392 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3434 378393 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3435 378394 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3436 378395 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3437 378396 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3438 378397 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3439 378398 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3440 378399 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3441 378400 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3442 378401 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3443 378402 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3444 378403 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3445 378404 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3446 378405 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3447 378406 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3448 378407 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3449 378408 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3450 378409 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3451 378410 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3452 378411 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3453 378412 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3454 378413 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3455 378414 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3456 378415 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3457 378416 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3458 378417 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3459 378418 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3460 378419 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3461 378420 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3462 378421 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3463 378422 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3464 378423 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3465 378424 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3466 378425 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3467 378426 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3468 378427 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3469 378428 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3470 378429 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3471 378430 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3472 378431 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3473 378432 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3474 378433 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3475 378434 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3476 378435 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3477 378436 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3478 378437 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3479 378438 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3480 378439 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3481 378440 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3482 378441 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3483 378442 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3484 378443 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3485 378444 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3486 378445 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3487 378446 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3488 378447 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3489 378448 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3490 378449 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3491 378450 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3492 378451 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3493 378452 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3494 378453 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3495 378454 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3496 378455 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3497 378456 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3498 378457 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3499 378458 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3500 378459 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3501 378460 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3502 378461 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3503 378462 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3504 378463 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3505 378464 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3506 378465 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3507 378466 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3508 378467 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3509 378468 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3510 378469 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3511 378470 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3512 378471 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3513 378472 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3514 378473 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3515 378474 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3516 378475 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3517 378476 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3518 378477 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3519 378478 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3520 378479 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3521 378480 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3522 378481 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3523 378482 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3524 378483 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3525 378484 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3526 378485 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3527 378486 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3528 378487 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3529 378488 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3530 378489 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3531 378490 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3532 378491 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3533 378492 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3534 378493 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3535 378494 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3536 378495 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3537 378496 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3538 378497 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3539 378498 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3540 378499 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3541 378500 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3542 378501 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3543 378502 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3544 378503 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3545 378504 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3546 378505 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3547 378506 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3548 378507 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3549 378508 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3550 378509 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3551 378510 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3552 378511 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3553 378512 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3554 378513 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3555 378514 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3556 378515 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3557 378516 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3558 378517 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3559 378518 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3560 378519 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3561 378520 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3562 378521 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3563 378522 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3564 378523 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3565 378524 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3566 378525 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3567 378526 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3568 378527 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3569 378528 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3570 378529 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3571 378530 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3572 378531 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3573 378532 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3574 378533 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3575 378534 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3576 378535 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3577 378536 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3578 378537 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3579 378538 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3580 378539 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3581 378540 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3582 378541 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3583 378542 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3584 378543 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3585 378544 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3586 378545 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3587 378546 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3588 378547 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3589 378548 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3590 378549 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3591 378550 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3592 378551 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3593 378552 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3594 378553 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3595 378554 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3596 378555 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3597 378556 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3598 378557 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3599 378558 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3600 378559 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3601 378560 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3602 378561 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3603 378562 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3604 378563 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3605 378564 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3606 378565 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3607 378566 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3608 378567 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3609 378568 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3610 378569 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3611 378570 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3612 378571 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3613 378572 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3614 378573 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3615 378574 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3616 378575 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3617 378576 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3618 378577 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3619 378578 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3620 378579 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3621 378580 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3622 378581 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3623 378582 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3624 378583 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3625 378584 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3626 378585 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3627 378586 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3628 378587 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3629 378588 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3630 378589 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3631 378590 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3632 378591 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3633 378592 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3634 378593 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3635 378594 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3636 378595 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3637 378596 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3638 378597 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3639 378598 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3640 378599 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3641 378600 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3642 378601 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3643 378602 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3644 378603 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3645 378604 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3646 378605 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3647 378606 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3648 378607 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3649 378608 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3650 378609 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3651 378610 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3652 378611 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3653 378612 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3654 378613 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3655 378614 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3656 378615 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3657 378616 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3658 378617 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3659 378618 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3660 378619 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3661 378620 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3662 378621 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3663 378622 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3664 378623 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3665 378624 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3666 378625 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3667 378626 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3668 378627 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3669 378628 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3670 378629 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3671 378630 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3672 378631 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3673 378632 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3674 378633 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3675 378634 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3676 378635 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3677 378636 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3678 378637 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3679 378638 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3680 378639 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3681 378640 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3682 378641 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3683 378642 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3684 378643 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3685 378644 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3686 378645 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3687 378646 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3688 378647 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3689 378648 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3690 378649 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3691 378650 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3692 378651 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3693 378652 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3694 378653 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3695 378654 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3696 378655 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3697 378656 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3698 378657 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3699 378658 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3700 378659 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3701 378660 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3702 378661 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3703 378662 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3704 378663 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3705 378664 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3706 378665 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3707 378666 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3708 378667 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3709 378668 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3710 378669 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3711 378670 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3712 378671 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3713 378672 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3714 378673 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3715 378674 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3716 378675 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3717 378676 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3718 378677 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3719 378678 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3720 378679 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3721 378680 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3722 378681 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3723 378682 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3724 378683 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3725 378684 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3726 378685 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3727 378686 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3728 378687 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3729 378688 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3730 378689 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3731 378690 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3732 378691 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3733 378692 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3734 378693 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3735 378694 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3736 378695 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3737 378696 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3738 378697 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3739 378698 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3740 378699 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3741 378700 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3742 378701 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3743 378702 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3744 378703 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3745 378704 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3746 378705 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3747 378706 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3748 378707 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3749 378708 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3750 378709 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3751 378710 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3752 378711 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3753 378712 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3754 378713 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3755 378714 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3756 378715 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3757 378716 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3758 378717 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3759 378718 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3760 378719 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3761 378720 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3762 378721 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3763 378722 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3764 378723 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3765 378724 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3766 378725 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3767 378726 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3768 378727 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3769 378728 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3770 378729 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3771 378730 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3772 378731 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3773 378732 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3774 378733 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3775 378734 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3776 378735 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3777 378736 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3778 378737 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3779 378738 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3780 378739 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3781 378740 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3782 378741 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3783 378742 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3784 378743 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3785 378744 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3786 378745 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3787 378746 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3788 378747 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3789 378748 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3790 378749 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3791 378750 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3792 378751 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3793 378752 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3794 378753 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3795 378754 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3796 378755 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3797 378756 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3798 378757 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3799 378758 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3800 378759 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3801 378760 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3802 378761 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3803 378762 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3804 378763 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3805 378764 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3806 378765 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3807 378766 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3808 378767 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3809 378768 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3810 378769 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3811 378770 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3812 378771 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3813 378772 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3814 378773 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3815 378774 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3816 378775 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3817 378776 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3818 378777 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3819 378778 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3820 378779 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3821 378780 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3822 378781 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3823 378782 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3824 378783 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3825 378784 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3826 378785 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3827 378786 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3828 378787 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3829 378788 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3830 378789 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3831 378790 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3832 378791 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3833 378792 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3834 378793 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3835 378794 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3836 378795 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3837 378796 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3838 378797 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3839 378798 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3840 378799 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3841 378800 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3842 378801 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3843 378802 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3844 378803 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3845 378804 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3846 378805 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3847 378806 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3848 378807 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3849 378808 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3850 378809 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3851 378810 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3852 378811 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3853 378812 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3854 378813 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3855 378814 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3856 378815 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3857 378816 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3858 378817 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3859 378818 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3860 378819 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3861 378820 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3862 378821 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3863 378822 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3864 378823 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3865 378824 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3866 378825 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3867 378826 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3868 378827 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3869 378828 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3870 378829 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3871 378830 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3872 378831 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3873 378832 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3874 378833 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3875 378834 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3876 378835 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3877 378836 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3878 378837 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3879 378838 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3880 378839 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3881 378840 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3882 378841 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3883 378842 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3884 378843 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3885 378844 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3886 378845 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3887 378846 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3888 378847 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3889 378848 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3890 378849 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3891 378850 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3892 378851 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3893 378852 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3894 378853 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3895 378854 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3896 378855 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3897 378856 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3898 378857 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3899 378858 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3900 378859 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3901 378860 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3902 378861 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3903 378862 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3904 378863 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3905 378864 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3906 378865 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3907 378866 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3908 378867 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3909 378868 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3910 378869 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3911 378870 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3912 378871 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3913 378872 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3914 378873 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3915 378874 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3916 378875 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3917 378876 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3918 378877 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3919 378878 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3920 378879 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3921 378880 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3922 378881 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3923 378882 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3924 378883 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3925 378884 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3926 378885 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3927 378886 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3928 378887 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3929 378888 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3930 378889 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3931 378890 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3932 378891 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3933 378892 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3934 378893 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3935 378894 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3936 378895 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3937 378896 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3938 378897 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3939 378898 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3940 378899 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3941 378900 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3942 378901 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3943 378902 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3944 378903 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3945 378904 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3946 378905 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3947 378906 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3948 378907 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3949 378908 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3950 378909 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3951 378910 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3952 378911 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3953 378912 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3954 378913 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3955 378914 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3956 378915 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3957 378916 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3958 378917 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3959 378918 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3960 378919 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3961 378920 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3962 378921 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3963 378922 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3964 378923 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3965 378924 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3966 378925 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3967 378926 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3968 378927 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3969 378928 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3970 378929 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3971 378930 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3972 378931 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3973 378932 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3974 378933 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3975 378934 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3976 378935 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3977 378936 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3978 378937 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3979 378938 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3980 378939 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3981 378940 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3982 378941 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3983 378942 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3984 378943 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3985 378944 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3986 378945 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3987 378946 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3988 378947 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3989 378948 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3990 378949 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3991 378950 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3992 378951 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3993 378952 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3994 378953 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3995 378954 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3996 378955 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3997 378956 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3998 378957 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3999 378958 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
##      Tamano.Cte.Industria          Segmento.Det                   Marca
## 1                  Grande          Agua Mineral       Ciel Mineralizada
## 2                  Grande          Agua Mineral         Topo Chico A.M.
## 3                  Grande          Agua Mineral         Topo Chico A.M.
## 4                  Grande       Agua Purificada    Ciel Agua Purificada
## 5                  Grande       Agua Purificada    Ciel Agua Purificada
## 6                  Grande       Agua Purificada    Ciel Agua Purificada
## 7                  Grande       Agua Purificada    Ciel Agua Purificada
## 8                  Grande       Agua Saborizada             Ciel Exprim
## 9                  Grande       Agua Saborizada             Ciel Exprim
## 10                 Grande      Bebidas de Fruta          Delaware Punch
## 11                 Grande      Bebidas de Fruta          Delaware Punch
## 12                 Grande      Bebidas de Fruta                  Frutsi
## 13                 Grande      Bebidas de Fruta              Valle Frut
## 14                 Grande      Bebidas de Fruta              Valle Frut
## 15                 Grande      Bebidas de Fruta              Valle Frut
## 16                 Grande      Bebidas de Fruta              Valle Frut
## 17                 Grande       Bebidas de Soya             AdeS Frutal
## 18                 Grande       Bebidas de Soya             AdeS Frutal
## 19                 Grande       Bebidas de Soya          AdeS L\x87cteo
## 20                 Grande   Bebidas Energeticas          Monster Energy
## 21                 Grande           Colas Light         Coca-Cola Light
## 22                 Grande           Colas Light         Coca-Cola Light
## 23                 Grande           Colas Light         Coca-Cola Light
## 24                 Grande           Colas Light         Coca-Cola Light
## 25                 Grande           Colas Light         Coca-Cola Light
## 26                 Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 27                 Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 28                 Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 29                 Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 30                 Grande         Colas Regular               Coca-Cola
## 31                 Grande         Colas Regular               Coca-Cola
## 32                 Grande         Colas Regular               Coca-Cola
## 33                 Grande         Colas Regular               Coca-Cola
## 34                 Grande         Colas Regular               Coca-Cola
## 35                 Grande         Colas Regular               Coca-Cola
## 36                 Grande         Colas Regular               Coca-Cola
## 37                 Grande         Colas Regular               Coca-Cola
## 38                 Grande         Colas Regular               Coca-Cola
## 39                 Grande         Colas Regular               Coca-Cola
## 40                 Grande         Colas Regular               Coca-Cola
## 41                 Grande         Colas Regular               Coca-Cola
## 42                 Grande         Colas Regular               Coca-Cola
## 43                 Grande         Colas Regular               Coca-Cola
## 44                 Grande         Colas Regular               Coca-Cola
## 45                 Grande         Colas Regular               Coca-Cola
## 46                 Grande         Colas Regular               Coca-Cola
## 47                 Grande Isot\x97nicos Regular                Powerade
## 48                 Grande Isot\x97nicos Regular                Powerade
## 49                 Grande   Jugos y N\x8ectares               Del Valle
## 50                 Grande   Jugos y N\x8ectares               Del Valle
## 51                 Grande   Jugos y N\x8ectares               Del Valle
## 52                 Grande   Jugos y N\x8ectares               Del Valle
## 53                 Grande   Jugos y N\x8ectares       Del Valle Reserva
## 54                 Grande   Jugos y N\x8ectares       Del Valle Reserva
## 55                 Grande  Leche UHT Especializ    Santa Clara Deslacto
## 56                 Grande  Leche UHT Especializ    Santa Clara Deslacto
## 57                 Grande     Leche UHT Regular      Santa Clara Entera
## 58                 Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 59                 Grande         Sabores Light        Del Valle y Nada
## 60                 Grande         Sabores Light        Del Valle y Nada
## 61                 Grande         Sabores Light             Sprite Zero
## 62                 Grande       Sabores Regular        Del Valle y Nada
## 63                 Grande       Sabores Regular        Del Valle y Nada
## 64                 Grande       Sabores Regular                   Fanta
## 65                 Grande       Sabores Regular                   Fanta
## 66                 Grande       Sabores Regular                   Fanta
## 67                 Grande       Sabores Regular                   Fanta
## 68                 Grande       Sabores Regular                   Fanta
## 69                 Grande       Sabores Regular                   Fanta
## 70                 Grande       Sabores Regular                  Fresca
## 71                 Grande       Sabores Regular                  Fresca
## 72                 Grande       Sabores Regular                  Fresca
## 73                 Grande       Sabores Regular                  Fresca
## 74                 Grande       Sabores Regular            Manzana Lift
## 75                 Grande       Sabores Regular            Manzana Lift
## 76                 Grande       Sabores Regular            Manzana Lift
## 77                 Grande       Sabores Regular                  Senzao
## 78                 Grande       Sabores Regular           Sidral Mundet
## 79                 Grande       Sabores Regular           Sidral Mundet
## 80                 Grande       Sabores Regular           Sidral Mundet
## 81                 Grande       Sabores Regular                  Sprite
## 82                 Grande       Sabores Regular                  Sprite
## 83                 Grande       Sabores Regular                  Sprite
## 84                 Grande       Sabores Regular                  Sprite
## 85                 Grande       Sabores Regular                  Sprite
## 86                 Grande         T\x8e Regular                Fuze Tea
## 87                 Grande          Agua Mineral         Topo Chico A.M.
## 88                 Grande       Agua Purificada    Ciel Agua Purificada
## 89                 Grande       Agua Purificada    Ciel Agua Purificada
## 90                 Grande       Agua Purificada    Ciel Agua Purificada
## 91                 Grande       Agua Purificada    Ciel Agua Purificada
## 92                 Grande       Agua Saborizada             Ciel Exprim
## 93                 Grande       Agua Saborizada             Ciel Exprim
## 94                 Grande      Bebidas de Fruta          Delaware Punch
## 95                 Grande      Bebidas de Fruta                  Frutsi
## 96                 Grande      Bebidas de Fruta                   Pulpy
## 97                 Grande      Bebidas de Fruta              Valle Frut
## 98                 Grande      Bebidas de Fruta              Valle Frut
## 99                 Grande       Bebidas de Soya          AdeS L\x87cteo
## 100                Grande   Bebidas Energeticas                    Burn
## 101                Grande   Bebidas Energeticas          Monster Energy
## 102                Grande           Colas Light         Coca-Cola Light
## 103                Grande           Colas Light         Coca-Cola Light
## 104                Grande           Colas Light         Coca-Cola Light
## 105                Grande           Colas Light         Coca-Cola Light
## 106                Grande           Colas Light         Coca-Cola Light
## 107                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 108                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 109                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 110                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 111                Grande         Colas Regular               Coca-Cola
## 112                Grande         Colas Regular               Coca-Cola
## 113                Grande         Colas Regular               Coca-Cola
## 114                Grande         Colas Regular               Coca-Cola
## 115                Grande         Colas Regular               Coca-Cola
## 116                Grande         Colas Regular               Coca-Cola
## 117                Grande         Colas Regular               Coca-Cola
## 118                Grande         Colas Regular               Coca-Cola
## 119                Grande         Colas Regular               Coca-Cola
## 120                Grande         Colas Regular               Coca-Cola
## 121                Grande         Colas Regular               Coca-Cola
## 122                Grande         Colas Regular               Coca-Cola
## 123                Grande         Colas Regular               Coca-Cola
## 124                Grande         Colas Regular               Coca-Cola
## 125                Grande         Colas Regular               Coca-Cola
## 126                Grande         Colas Regular               Coca-Cola
## 127                Grande         Colas Regular               Coca-Cola
## 128                Grande Isot\x97nicos Regular                Powerade
## 129                Grande Isot\x97nicos Regular                Powerade
## 130                Grande   Jugos y N\x8ectares               Del Valle
## 131                Grande   Jugos y N\x8ectares               Del Valle
## 132                Grande   Jugos y N\x8ectares               Del Valle
## 133                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 134                Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 135                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 136                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 137                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 138                Grande     Leche UHT Regular      Santa Clara Entera
## 139                Grande     Leche UHT Regular       Santa Clara Light
## 140                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 141                Grande         Sabores Light        Del Valle y Nada
## 142                Grande         Sabores Light             Sprite Zero
## 143                Grande       Sabores Regular        Del Valle y Nada
## 144                Grande       Sabores Regular                   Fanta
## 145                Grande       Sabores Regular                   Fanta
## 146                Grande       Sabores Regular                   Fanta
## 147                Grande       Sabores Regular                   Fanta
## 148                Grande       Sabores Regular                   Fanta
## 149                Grande       Sabores Regular                   Fanta
## 150                Grande       Sabores Regular                  Fresca
## 151                Grande       Sabores Regular                  Fresca
## 152                Grande       Sabores Regular                  Fresca
## 153                Grande       Sabores Regular                    Joya
## 154                Grande       Sabores Regular            Manzana Lift
## 155                Grande       Sabores Regular            Manzana Lift
## 156                Grande       Sabores Regular            Manzana Lift
## 157                Grande       Sabores Regular            Manzana Lift
## 158                Grande       Sabores Regular                  Senzao
## 159                Grande       Sabores Regular           Sidral Mundet
## 160                Grande       Sabores Regular           Sidral Mundet
## 161                Grande       Sabores Regular                  Sprite
## 162                Grande       Sabores Regular                  Sprite
## 163                Grande       Sabores Regular                  Sprite
## 164                Grande       Sabores Regular                  Sprite
## 165                Grande       Sabores Regular                  Sprite
## 166                Grande       Sabores Regular                  Sprite
## 167                Grande       Sabores Regular                  Sprite
## 168                Grande       Sabores Regular                  Sprite
## 169                Grande       Sabores Regular                  Sprite
## 170                Grande         T\x8e Regular                Fuze Tea
## 171                Grande         T\x8e Regular                Fuze Tea
## 172                Grande          Agua Mineral       Ciel Mineralizada
## 173                Grande          Agua Mineral         Topo Chico A.M.
## 174                Grande       Agua Purificada    Ciel Agua Purificada
## 175                Grande       Agua Purificada    Ciel Agua Purificada
## 176                Grande       Agua Purificada    Ciel Agua Purificada
## 177                Grande       Agua Saborizada             Ciel Exprim
## 178                Grande       Agua Saborizada             Ciel Exprim
## 179                Grande      Bebidas de Fruta          Delaware Punch
## 180                Grande      Bebidas de Fruta          Delaware Punch
## 181                Grande      Bebidas de Fruta                  Frutsi
## 182                Grande      Bebidas de Fruta                   Pulpy
## 183                Grande      Bebidas de Fruta              Valle Frut
## 184                Grande      Bebidas de Fruta              Valle Frut
## 185                Grande      Bebidas de Fruta              Valle Frut
## 186                Grande      Bebidas de Fruta              Valle Frut
## 187                Grande       Bebidas de Soya             AdeS Frutal
## 188                Grande       Bebidas de Soya          AdeS L\x87cteo
## 189                Grande   Bebidas Energeticas                    Burn
## 190                Grande   Bebidas Energeticas                    Burn
## 191                Grande   Bebidas Energeticas          Monster Energy
## 192                Grande           Colas Light         Coca-Cola Light
## 193                Grande           Colas Light         Coca-Cola Light
## 194                Grande           Colas Light         Coca-Cola Light
## 195                Grande           Colas Light         Coca-Cola Light
## 196                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 197                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 198                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 199                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 200                Grande         Colas Regular               Coca-Cola
## 201                Grande         Colas Regular               Coca-Cola
## 202                Grande         Colas Regular               Coca-Cola
## 203                Grande         Colas Regular               Coca-Cola
## 204                Grande         Colas Regular               Coca-Cola
## 205                Grande         Colas Regular               Coca-Cola
## 206                Grande         Colas Regular               Coca-Cola
## 207                Grande         Colas Regular               Coca-Cola
## 208                Grande         Colas Regular               Coca-Cola
## 209                Grande         Colas Regular               Coca-Cola
## 210                Grande         Colas Regular               Coca-Cola
## 211                Grande         Colas Regular               Coca-Cola
## 212                Grande         Colas Regular               Coca-Cola
## 213                Grande         Colas Regular               Coca-Cola
## 214                Grande         Colas Regular               Coca-Cola
## 215                Grande         Colas Regular               Coca-Cola
## 216                Grande Isot\x97nicos Regular                Powerade
## 217                Grande Isot\x97nicos Regular                Powerade
## 218                Grande   Jugos y N\x8ectares               Del Valle
## 219                Grande   Jugos y N\x8ectares               Del Valle
## 220                Grande   Jugos y N\x8ectares               Del Valle
## 221                Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 222                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 223                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 224                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 225                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 226                Grande     Leche UHT Regular      Santa Clara Entera
## 227                Grande     Leche UHT Regular       Santa Clara Light
## 228                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 229                Grande         Sabores Light        Del Valle y Nada
## 230                Grande         Sabores Light        Del Valle y Nada
## 231                Grande         Sabores Light             Sprite Zero
## 232                Grande       Sabores Regular        Del Valle y Nada
## 233                Grande       Sabores Regular        Del Valle y Nada
## 234                Grande       Sabores Regular                   Fanta
## 235                Grande       Sabores Regular                   Fanta
## 236                Grande       Sabores Regular                   Fanta
## 237                Grande       Sabores Regular                   Fanta
## 238                Grande       Sabores Regular                   Fanta
## 239                Grande       Sabores Regular                   Fanta
## 240                Grande       Sabores Regular                  Fresca
## 241                Grande       Sabores Regular                  Fresca
## 242                Grande       Sabores Regular                    Joya
## 243                Grande       Sabores Regular            Manzana Lift
## 244                Grande       Sabores Regular            Manzana Lift
## 245                Grande       Sabores Regular            Manzana Lift
## 246                Grande       Sabores Regular                  Senzao
## 247                Grande       Sabores Regular           Sidral Mundet
## 248                Grande       Sabores Regular           Sidral Mundet
## 249                Grande       Sabores Regular           Sidral Mundet
## 250                Grande       Sabores Regular           Sidral Mundet
## 251                Grande       Sabores Regular                  Sprite
## 252                Grande       Sabores Regular                  Sprite
## 253                Grande       Sabores Regular                  Sprite
## 254                Grande       Sabores Regular                  Sprite
## 255                Grande       Sabores Regular                  Sprite
## 256                Grande       Sabores Regular                  Sprite
## 257                Grande         T\x8e Regular                Fuze Tea
## 258                Grande         T\x8e Regular                Fuze Tea
## 259                Grande          Agua Mineral         Topo Chico A.M.
## 260                Grande       Agua Purificada    Ciel Agua Purificada
## 261                Grande       Agua Purificada    Ciel Agua Purificada
## 262                Grande       Agua Purificada    Ciel Agua Purificada
## 263                Grande       Agua Purificada    Ciel Agua Purificada
## 264                Grande       Agua Saborizada             Ciel Exprim
## 265                Grande       Agua Saborizada             Ciel Exprim
## 266                Grande       Agua Saborizada               Ciel Mini
## 267                Grande      Bebidas de Fruta          Delaware Punch
## 268                Grande      Bebidas de Fruta          Delaware Punch
## 269                Grande      Bebidas de Fruta                  Frutsi
## 270                Grande      Bebidas de Fruta              Valle Frut
## 271                Grande      Bebidas de Fruta              Valle Frut
## 272                Grande      Bebidas de Fruta              Valle Frut
## 273                Grande      Bebidas de Fruta              Valle Frut
## 274                Grande       Bebidas de Soya             AdeS Frutal
## 275                Grande       Bebidas de Soya             AdeS Frutal
## 276                Grande       Bebidas de Soya          AdeS L\x87cteo
## 277                Grande   Bebidas Energeticas          Monster Energy
## 278                Grande  Cafe Listo Para Bebe            Barista Bros
## 279                Grande           Colas Light         Coca-Cola Light
## 280                Grande           Colas Light         Coca-Cola Light
## 281                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 282                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 283                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 284                Grande         Colas Regular               Coca-Cola
## 285                Grande         Colas Regular               Coca-Cola
## 286                Grande         Colas Regular               Coca-Cola
## 287                Grande         Colas Regular               Coca-Cola
## 288                Grande         Colas Regular               Coca-Cola
## 289                Grande         Colas Regular               Coca-Cola
## 290                Grande         Colas Regular               Coca-Cola
## 291                Grande         Colas Regular               Coca-Cola
## 292                Grande         Colas Regular               Coca-Cola
## 293                Grande         Colas Regular               Coca-Cola
## 294                Grande         Colas Regular               Coca-Cola
## 295                Grande         Colas Regular               Coca-Cola
## 296                Grande         Colas Regular               Coca-Cola
## 297                Grande         Colas Regular               Coca-Cola
## 298                Grande         Colas Regular               Coca-Cola
## 299                Grande         Colas Regular               Coca-Cola
## 300                Grande Isot\x97nicos Regular                Powerade
## 301                Grande Isot\x97nicos Regular                Powerade
## 302                Grande Isot\x97nicos Regular                Powerade
## 303                Grande   Jugos y N\x8ectares               Del Valle
## 304                Grande   Jugos y N\x8ectares               Del Valle
## 305                Grande   Jugos y N\x8ectares               Del Valle
## 306                Grande   Jugos y N\x8ectares               Del Valle
## 307                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 308                Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 309                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 310                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 311                Grande     Leche UHT Regular      Santa Clara Entera
## 312                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 313                Grande         Sabores Light        Del Valle y Nada
## 314                Grande       Sabores Regular                   Fanta
## 315                Grande       Sabores Regular                   Fanta
## 316                Grande       Sabores Regular                   Fanta
## 317                Grande       Sabores Regular                  Fresca
## 318                Grande       Sabores Regular                  Fresca
## 319                Grande       Sabores Regular                  Fresca
## 320                Grande       Sabores Regular                    Joya
## 321                Grande       Sabores Regular            Manzana Lift
## 322                Grande       Sabores Regular            Manzana Lift
## 323                Grande       Sabores Regular            Manzana Lift
## 324                Grande       Sabores Regular                  Sprite
## 325                Grande       Sabores Regular                  Sprite
## 326                Grande       Sabores Regular                  Sprite
## 327                Grande         T\x8e Regular                Fuze Tea
## 328                Grande         T\x8e Regular                Fuze Tea
## 329                Grande          Agua Mineral       Ciel Mineralizada
## 330                Grande          Agua Mineral         Topo Chico A.M.
## 331                Grande          Agua Mineral         Topo Chico A.M.
## 332                Grande       Agua Purificada    Ciel Agua Purificada
## 333                Grande       Agua Purificada    Ciel Agua Purificada
## 334                Grande       Agua Purificada    Ciel Agua Purificada
## 335                Grande       Agua Saborizada             Ciel Exprim
## 336                Grande       Agua Saborizada             Ciel Exprim
## 337                Grande      Bebidas de Fruta          Delaware Punch
## 338                Grande      Bebidas de Fruta                  Frutsi
## 339                Grande      Bebidas de Fruta                   Pulpy
## 340                Grande      Bebidas de Fruta              Valle Frut
## 341                Grande      Bebidas de Fruta              Valle Frut
## 342                Grande      Bebidas de Fruta              Valle Frut
## 343                Grande   Bebidas Energeticas                    Burn
## 344                Grande   Bebidas Energeticas                    Burn
## 345                Grande   Bebidas Energeticas          Monster Energy
## 346                Grande           Colas Light         Coca-Cola Light
## 347                Grande           Colas Light         Coca-Cola Light
## 348                Grande           Colas Light         Coca-Cola Light
## 349                Grande           Colas Light         Coca-Cola Light
## 350                Grande           Colas Light         Coca-Cola Light
## 351                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 352                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 353                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 354                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 355                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 356                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 357                Grande         Colas Regular               Coca-Cola
## 358                Grande         Colas Regular               Coca-Cola
## 359                Grande         Colas Regular               Coca-Cola
## 360                Grande         Colas Regular               Coca-Cola
## 361                Grande         Colas Regular               Coca-Cola
## 362                Grande         Colas Regular               Coca-Cola
## 363                Grande         Colas Regular               Coca-Cola
## 364                Grande         Colas Regular               Coca-Cola
## 365                Grande         Colas Regular               Coca-Cola
## 366                Grande         Colas Regular               Coca-Cola
## 367                Grande         Colas Regular               Coca-Cola
## 368                Grande         Colas Regular               Coca-Cola
## 369                Grande         Colas Regular               Coca-Cola
## 370                Grande         Colas Regular               Coca-Cola
## 371                Grande         Colas Regular               Coca-Cola
## 372                Grande         Colas Regular               Coca-Cola
## 373                Grande         Colas Regular               Coca-Cola
## 374                Grande Isot\x97nicos Regular                Powerade
## 375                Grande Isot\x97nicos Regular                Powerade
## 376                Grande   Jugos y N\x8ectares               Del Valle
## 377                Grande   Jugos y N\x8ectares               Del Valle
## 378                Grande   Jugos y N\x8ectares               Del Valle
## 379                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 380                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 381                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 382                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 383                Grande     Leche UHT Regular      Santa Clara Entera
## 384                Grande     Leche UHT Regular       Santa Clara Light
## 385                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 386                Grande         Sabores Light        Del Valle y Nada
## 387                Grande         Sabores Light        Del Valle y Nada
## 388                Grande         Sabores Light             Sprite Zero
## 389                Grande       Sabores Regular        Del Valle y Nada
## 390                Grande       Sabores Regular        Del Valle y Nada
## 391                Grande       Sabores Regular                   Fanta
## 392                Grande       Sabores Regular                   Fanta
## 393                Grande       Sabores Regular                   Fanta
## 394                Grande       Sabores Regular                   Fanta
## 395                Grande       Sabores Regular                   Fanta
## 396                Grande       Sabores Regular                   Fanta
## 397                Grande       Sabores Regular                  Fresca
## 398                Grande       Sabores Regular                  Fresca
## 399                Grande       Sabores Regular                  Fresca
## 400                Grande       Sabores Regular            Manzana Lift
## 401                Grande       Sabores Regular            Manzana Lift
## 402                Grande       Sabores Regular                  Senzao
## 403                Grande       Sabores Regular           Sidral Mundet
## 404                Grande       Sabores Regular           Sidral Mundet
## 405                Grande       Sabores Regular           Sidral Mundet
## 406                Grande       Sabores Regular           Sidral Mundet
## 407                Grande       Sabores Regular                  Sprite
## 408                Grande       Sabores Regular                  Sprite
## 409                Grande       Sabores Regular                  Sprite
## 410                Grande       Sabores Regular                  Sprite
## 411                Grande       Sabores Regular                  Sprite
## 412                Grande       Sabores Regular                  Sprite
## 413                Grande       Sabores Regular                  Sprite
## 414                Grande         T\x8e Regular                Fuze Tea
## 415                Grande         T\x8e Regular                Fuze Tea
## 416                Grande         T\x8e Regular                Fuze Tea
## 417                Grande          Agua Mineral         Topo Chico A.M.
## 418                Grande       Agua Purificada    Ciel Agua Purificada
## 419                Grande       Agua Purificada    Ciel Agua Purificada
## 420                Grande       Agua Purificada    Ciel Agua Purificada
## 421                Grande       Agua Saborizada             Ciel Exprim
## 422                Grande       Agua Saborizada             Ciel Exprim
## 423                Grande      Bebidas de Fruta          Delaware Punch
## 424                Grande      Bebidas de Fruta          Delaware Punch
## 425                Grande      Bebidas de Fruta                  Frutsi
## 426                Grande      Bebidas de Fruta                   Pulpy
## 427                Grande      Bebidas de Fruta              Valle Frut
## 428                Grande      Bebidas de Fruta              Valle Frut
## 429                Grande      Bebidas de Fruta              Valle Frut
## 430                Grande      Bebidas de Fruta              Valle Frut
## 431                Grande      Bebidas de Fruta              Valle Frut
## 432                Grande       Bebidas de Soya             AdeS Frutal
## 433                Grande       Bebidas de Soya          AdeS L\x87cteo
## 434                Grande   Bebidas Energeticas          Monster Energy
## 435                Grande  Cafe Listo Para Bebe            Barista Bros
## 436                Grande           Colas Light         Coca-Cola Light
## 437                Grande           Colas Light         Coca-Cola Light
## 438                Grande           Colas Light         Coca-Cola Light
## 439                Grande           Colas Light         Coca-Cola Light
## 440                Grande           Colas Light         Coca-Cola Light
## 441                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 442                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 443                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 444                Grande         Colas Regular               Coca-Cola
## 445                Grande         Colas Regular               Coca-Cola
## 446                Grande         Colas Regular               Coca-Cola
## 447                Grande         Colas Regular               Coca-Cola
## 448                Grande         Colas Regular               Coca-Cola
## 449                Grande         Colas Regular               Coca-Cola
## 450                Grande         Colas Regular               Coca-Cola
## 451                Grande         Colas Regular               Coca-Cola
## 452                Grande         Colas Regular               Coca-Cola
## 453                Grande         Colas Regular               Coca-Cola
## 454                Grande         Colas Regular               Coca-Cola
## 455                Grande         Colas Regular               Coca-Cola
## 456                Grande         Colas Regular               Coca-Cola
## 457                Grande         Colas Regular               Coca-Cola
## 458                Grande         Colas Regular               Coca-Cola
## 459                Grande         Colas Regular               Coca-Cola
## 460                Grande Isot\x97nicos Regular                Powerade
## 461                Grande Isot\x97nicos Regular                Powerade
## 462                Grande Isot\x97nicos Regular                Powerade
## 463                Grande   Jugos y N\x8ectares               Del Valle
## 464                Grande   Jugos y N\x8ectares               Del Valle
## 465                Grande   Jugos y N\x8ectares               Del Valle
## 466                Grande   Jugos y N\x8ectares               Del Valle
## 467                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 468                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 469                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 470                Grande     Leche UHT Regular      Santa Clara Entera
## 471                Grande     Leche UHT Regular       Santa Clara Light
## 472                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 473                Grande         Sabores Light        Del Valle y Nada
## 474                Grande         Sabores Light             Sprite Zero
## 475                Grande       Sabores Regular        Del Valle y Nada
## 476                Grande       Sabores Regular                   Fanta
## 477                Grande       Sabores Regular                   Fanta
## 478                Grande       Sabores Regular                   Fanta
## 479                Grande       Sabores Regular                   Fanta
## 480                Grande       Sabores Regular                   Fanta
## 481                Grande       Sabores Regular                   Fanta
## 482                Grande       Sabores Regular                   Fanta
## 483                Grande       Sabores Regular                  Fresca
## 484                Grande       Sabores Regular                  Fresca
## 485                Grande       Sabores Regular                  Fresca
## 486                Grande       Sabores Regular                  Fresca
## 487                Grande       Sabores Regular                  Fresca
## 488                Grande       Sabores Regular            Manzana Lift
## 489                Grande       Sabores Regular            Manzana Lift
## 490                Grande       Sabores Regular            Manzana Lift
## 491                Grande       Sabores Regular            Manzana Lift
## 492                Grande       Sabores Regular            Manzana Lift
## 493                Grande       Sabores Regular           Sidral Mundet
## 494                Grande       Sabores Regular           Sidral Mundet
## 495                Grande       Sabores Regular           Sidral Mundet
## 496                Grande       Sabores Regular           Sidral Mundet
## 497                Grande       Sabores Regular           Sidral Mundet
## 498                Grande       Sabores Regular           Sidral Mundet
## 499                Grande       Sabores Regular                  Sprite
## 500                Grande       Sabores Regular                  Sprite
## 501                Grande       Sabores Regular                  Sprite
## 502                Grande       Sabores Regular                  Sprite
## 503                Grande       Sabores Regular                  Sprite
## 504                Grande       Sabores Regular                  Sprite
## 505                Grande       Sabores Regular                  Sprite
## 506                Grande       Sabores Regular                  Sprite
## 507                Grande         T\x8e Regular                Fuze Tea
## 508                Grande         T\x8e Regular                Fuze Tea
## 509                Grande          Agua Mineral       Ciel Mineralizada
## 510                Grande          Agua Mineral         Topo Chico A.M.
## 511                Grande       Agua Purificada    Ciel Agua Purificada
## 512                Grande       Agua Purificada    Ciel Agua Purificada
## 513                Grande       Agua Purificada    Ciel Agua Purificada
## 514                Grande       Agua Saborizada             Ciel Exprim
## 515                Grande       Agua Saborizada             Ciel Exprim
## 516                Grande      Bebidas de Fruta                  Frutsi
## 517                Grande      Bebidas de Fruta              Valle Frut
## 518                Grande      Bebidas de Fruta              Valle Frut
## 519                Grande       Bebidas de Soya             AdeS Frutal
## 520                Grande       Bebidas de Soya             AdeS Frutal
## 521                Grande       Bebidas de Soya          AdeS L\x87cteo
## 522                Grande  Cafe Listo Para Bebe            Barista Bros
## 523                Grande           Colas Light         Coca-Cola Light
## 524                Grande           Colas Light         Coca-Cola Light
## 525                Grande           Colas Light         Coca-Cola Light
## 526                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 527                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 528                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 529                Grande         Colas Regular               Coca-Cola
## 530                Grande         Colas Regular               Coca-Cola
## 531                Grande         Colas Regular               Coca-Cola
## 532                Grande         Colas Regular               Coca-Cola
## 533                Grande         Colas Regular               Coca-Cola
## 534                Grande         Colas Regular               Coca-Cola
## 535                Grande         Colas Regular               Coca-Cola
## 536                Grande         Colas Regular               Coca-Cola
## 537                Grande         Colas Regular               Coca-Cola
## 538                Grande         Colas Regular               Coca-Cola
## 539                Grande         Colas Regular               Coca-Cola
## 540                Grande         Colas Regular               Coca-Cola
## 541                Grande         Colas Regular               Coca-Cola
## 542                Grande         Colas Regular               Coca-Cola
## 543                Grande         Colas Regular               Coca-Cola
## 544                Grande Isot\x97nicos Regular                Powerade
## 545                Grande Isot\x97nicos Regular                Powerade
## 546                Grande   Jugos y N\x8ectares               Del Valle
## 547                Grande   Jugos y N\x8ectares               Del Valle
## 548                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 549                Grande     Leche UHT Regular      Santa Clara Entera
## 550                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 551                Grande         Sabores Light        Del Valle y Nada
## 552                Grande       Sabores Regular                   Fanta
## 553                Grande       Sabores Regular                   Fanta
## 554                Grande       Sabores Regular                   Fanta
## 555                Grande       Sabores Regular                   Fanta
## 556                Grande       Sabores Regular                   Fanta
## 557                Grande       Sabores Regular                   Fanta
## 558                Grande       Sabores Regular                  Fresca
## 559                Grande       Sabores Regular                  Fresca
## 560                Grande       Sabores Regular                  Fresca
## 561                Grande       Sabores Regular            Manzana Lift
## 562                Grande       Sabores Regular            Manzana Lift
## 563                Grande       Sabores Regular            Manzana Lift
## 564                Grande       Sabores Regular           Sidral Mundet
## 565                Grande       Sabores Regular           Sidral Mundet
## 566                Grande       Sabores Regular                  Sprite
## 567                Grande       Sabores Regular                  Sprite
## 568                Grande       Sabores Regular                  Sprite
## 569                Grande       Sabores Regular                  Sprite
## 570                Grande       Sabores Regular                  Sprite
## 571                Grande         T\x8e Regular                Fuze Tea
## 572                Grande          Agua Mineral         Topo Chico A.M.
## 573                Grande       Agua Purificada    Ciel Agua Purificada
## 574                Grande       Agua Purificada    Ciel Agua Purificada
## 575                Grande       Agua Purificada    Ciel Agua Purificada
## 576                Grande       Agua Saborizada             Ciel Exprim
## 577                Grande       Agua Saborizada             Ciel Exprim
## 578                Grande      Bebidas de Fruta          Delaware Punch
## 579                Grande      Bebidas de Fruta                   Pulpy
## 580                Grande      Bebidas de Fruta              Valle Frut
## 581                Grande      Bebidas de Fruta              Valle Frut
## 582                Grande   Bebidas Energeticas          Monster Energy
## 583                Grande           Colas Light         Coca-Cola Light
## 584                Grande           Colas Light         Coca-Cola Light
## 585                Grande           Colas Light         Coca-Cola Light
## 586                Grande           Colas Light         Coca-Cola Light
## 587                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 588                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 589                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 590                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 591                Grande         Colas Regular               Coca-Cola
## 592                Grande         Colas Regular               Coca-Cola
## 593                Grande         Colas Regular               Coca-Cola
## 594                Grande         Colas Regular               Coca-Cola
## 595                Grande         Colas Regular               Coca-Cola
## 596                Grande         Colas Regular               Coca-Cola
## 597                Grande         Colas Regular               Coca-Cola
## 598                Grande         Colas Regular               Coca-Cola
## 599                Grande         Colas Regular               Coca-Cola
## 600                Grande         Colas Regular               Coca-Cola
## 601                Grande         Colas Regular               Coca-Cola
## 602                Grande         Colas Regular               Coca-Cola
## 603                Grande         Colas Regular               Coca-Cola
## 604                Grande         Colas Regular               Coca-Cola
## 605                Grande         Colas Regular               Coca-Cola
## 606                Grande Isot\x97nicos Regular                Powerade
## 607                Grande Isot\x97nicos Regular                Powerade
## 608                Grande   Jugos y N\x8ectares               Del Valle
## 609                Grande   Jugos y N\x8ectares               Del Valle
## 610                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 611                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 612                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 613                Grande     Leche UHT Regular      Santa Clara Entera
## 614                Grande     Leche UHT Regular       Santa Clara Light
## 615                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 616                Grande         Sabores Light        Del Valle y Nada
## 617                Grande         Sabores Light        Del Valle y Nada
## 618                Grande         Sabores Light             Sprite Zero
## 619                Grande       Sabores Regular        Del Valle y Nada
## 620                Grande       Sabores Regular        Del Valle y Nada
## 621                Grande       Sabores Regular                   Fanta
## 622                Grande       Sabores Regular                   Fanta
## 623                Grande       Sabores Regular                   Fanta
## 624                Grande       Sabores Regular                   Fanta
## 625                Grande       Sabores Regular                   Fanta
## 626                Grande       Sabores Regular                   Fanta
## 627                Grande       Sabores Regular                  Fresca
## 628                Grande       Sabores Regular            Manzana Lift
## 629                Grande       Sabores Regular            Manzana Lift
## 630                Grande       Sabores Regular            Manzana Lift
## 631                Grande       Sabores Regular           Sidral Mundet
## 632                Grande       Sabores Regular           Sidral Mundet
## 633                Grande       Sabores Regular           Sidral Mundet
## 634                Grande       Sabores Regular           Sidral Mundet
## 635                Grande       Sabores Regular                  Sprite
## 636                Grande       Sabores Regular                  Sprite
## 637                Grande       Sabores Regular                  Sprite
## 638                Grande       Sabores Regular                  Sprite
## 639                Grande       Sabores Regular                  Sprite
## 640                Grande         T\x8e Regular                Fuze Tea
## 641                Grande         T\x8e Regular                Fuze Tea
## 642                Grande          Agua Mineral       Ciel Mineralizada
## 643                Grande          Agua Mineral         Topo Chico A.M.
## 644                Grande       Agua Purificada    Ciel Agua Purificada
## 645                Grande       Agua Purificada    Ciel Agua Purificada
## 646                Grande       Agua Purificada    Ciel Agua Purificada
## 647                Grande       Agua Saborizada             Ciel Exprim
## 648                Grande       Agua Saborizada             Ciel Exprim
## 649                Grande      Bebidas de Fruta          Delaware Punch
## 650                Grande      Bebidas de Fruta                  Frutsi
## 651                Grande      Bebidas de Fruta                   Pulpy
## 652                Grande      Bebidas de Fruta              Valle Frut
## 653                Grande      Bebidas de Fruta              Valle Frut
## 654                Grande      Bebidas de Fruta              Valle Frut
## 655                Grande       Bebidas de Soya             AdeS Frutal
## 656                Grande       Bebidas de Soya             AdeS Frutal
## 657                Grande   Bebidas Energeticas                    Burn
## 658                Grande   Bebidas Energeticas          Monster Energy
## 659                Grande  Cafe Listo Para Bebe            Barista Bros
## 660                Grande           Colas Light         Coca-Cola Light
## 661                Grande           Colas Light         Coca-Cola Light
## 662                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 663                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 664                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 665                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 666                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 667                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 668                Grande         Colas Regular               Coca-Cola
## 669                Grande         Colas Regular               Coca-Cola
## 670                Grande         Colas Regular               Coca-Cola
## 671                Grande         Colas Regular               Coca-Cola
## 672                Grande         Colas Regular               Coca-Cola
## 673                Grande         Colas Regular               Coca-Cola
## 674                Grande         Colas Regular               Coca-Cola
## 675                Grande         Colas Regular               Coca-Cola
## 676                Grande         Colas Regular               Coca-Cola
## 677                Grande         Colas Regular               Coca-Cola
## 678                Grande         Colas Regular               Coca-Cola
## 679                Grande         Colas Regular               Coca-Cola
## 680                Grande         Colas Regular               Coca-Cola
## 681                Grande         Colas Regular               Coca-Cola
## 682                Grande         Colas Regular               Coca-Cola
## 683                Grande Isot\x97nicos Regular                Powerade
## 684                Grande Isot\x97nicos Regular                Powerade
## 685                Grande Isot\x97nicos Regular                Powerade
## 686                Grande   Jugos y N\x8ectares               Del Valle
## 687                Grande   Jugos y N\x8ectares               Del Valle
## 688                Grande   Jugos y N\x8ectares               Del Valle
## 689                Grande   Jugos y N\x8ectares               Del Valle
## 690                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 691                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 692                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 693                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 694                Grande     Leche UHT Regular      Santa Clara Entera
## 695                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 696                Grande         Sabores Light        Del Valle y Nada
## 697                Grande       Sabores Regular        Del Valle y Nada
## 698                Grande       Sabores Regular        Del Valle y Nada
## 699                Grande       Sabores Regular                   Fanta
## 700                Grande       Sabores Regular                   Fanta
## 701                Grande       Sabores Regular                   Fanta
## 702                Grande       Sabores Regular                   Fanta
## 703                Grande       Sabores Regular                   Fanta
## 704                Grande       Sabores Regular                   Fanta
## 705                Grande       Sabores Regular                  Fresca
## 706                Grande       Sabores Regular                    Joya
## 707                Grande       Sabores Regular            Manzana Lift
## 708                Grande       Sabores Regular            Manzana Lift
## 709                Grande       Sabores Regular            Manzana Lift
## 710                Grande       Sabores Regular           Sidral Mundet
## 711                Grande       Sabores Regular           Sidral Mundet
## 712                Grande       Sabores Regular           Sidral Mundet
## 713                Grande       Sabores Regular           Sidral Mundet
## 714                Grande       Sabores Regular           Sidral Mundet
## 715                Grande       Sabores Regular           Sidral Mundet
## 716                Grande       Sabores Regular                  Sprite
## 717                Grande       Sabores Regular                  Sprite
## 718                Grande       Sabores Regular                  Sprite
## 719                Grande       Sabores Regular                  Sprite
## 720                Grande       Sabores Regular                  Sprite
## 721                Grande       Sabores Regular                  Sprite
## 722                Grande         T\x8e Regular                Fuze Tea
## 723                Grande         T\x8e Regular                Fuze Tea
## 724                Grande          Agua Mineral         Topo Chico A.M.
## 725                Grande       Agua Purificada    Ciel Agua Purificada
## 726                Grande       Agua Purificada    Ciel Agua Purificada
## 727                Grande       Agua Purificada    Ciel Agua Purificada
## 728                Grande       Agua Saborizada             Ciel Exprim
## 729                Grande       Agua Saborizada             Ciel Exprim
## 730                Grande      Bebidas de Fruta                  Frutsi
## 731                Grande      Bebidas de Fruta              Valle Frut
## 732                Grande      Bebidas de Fruta              Valle Frut
## 733                Grande      Bebidas de Fruta              Valle Frut
## 734                Grande       Bebidas de Soya             AdeS Frutal
## 735                Grande       Bebidas de Soya          AdeS L\x87cteo
## 736                Grande   Bebidas Energeticas          Monster Energy
## 737                Grande  Cafe Listo Para Bebe            Barista Bros
## 738                Grande           Colas Light         Coca-Cola Light
## 739                Grande           Colas Light         Coca-Cola Light
## 740                Grande           Colas Light         Coca-Cola Light
## 741                Grande           Colas Light         Coca-Cola Light
## 742                Grande           Colas Light         Coca-Cola Light
## 743                Grande           Colas Light         Coca-Cola Light
## 744                Grande           Colas Light         Coca-Cola Light
## 745                Grande           Colas Light         Coca-Cola Light
## 746                Grande           Colas Light         Coca-Cola Light
## 747                Grande           Colas Light         Coca-Cola Light
## 748                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 749                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 750                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 751                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 752                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 753                Grande         Colas Regular               Coca-Cola
## 754                Grande         Colas Regular               Coca-Cola
## 755                Grande         Colas Regular               Coca-Cola
## 756                Grande         Colas Regular               Coca-Cola
## 757                Grande         Colas Regular               Coca-Cola
## 758                Grande         Colas Regular               Coca-Cola
## 759                Grande         Colas Regular               Coca-Cola
## 760                Grande         Colas Regular               Coca-Cola
## 761                Grande         Colas Regular               Coca-Cola
## 762                Grande         Colas Regular               Coca-Cola
## 763                Grande         Colas Regular               Coca-Cola
## 764                Grande         Colas Regular               Coca-Cola
## 765                Grande         Colas Regular               Coca-Cola
## 766                Grande         Colas Regular               Coca-Cola
## 767                Grande         Colas Regular               Coca-Cola
## 768                Grande         Colas Regular               Coca-Cola
## 769                Grande Isot\x97nicos Regular                Powerade
## 770                Grande Isot\x97nicos Regular                Powerade
## 771                Grande   Jugos y N\x8ectares               Del Valle
## 772                Grande   Jugos y N\x8ectares               Del Valle
## 773                Grande   Jugos y N\x8ectares               Del Valle
## 774                Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 775                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 776                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 777                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 778                Grande     Leche UHT Regular      Santa Clara Entera
## 779                Grande     Leche UHT Regular       Santa Clara Light
## 780                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 781                Grande         Sabores Light        Del Valle y Nada
## 782                Grande         Sabores Light        Del Valle y Nada
## 783                Grande         Sabores Light             Sprite Zero
## 784                Grande       Sabores Regular        Del Valle y Nada
## 785                Grande       Sabores Regular        Del Valle y Nada
## 786                Grande       Sabores Regular                   Fanta
## 787                Grande       Sabores Regular                   Fanta
## 788                Grande       Sabores Regular                   Fanta
## 789                Grande       Sabores Regular                   Fanta
## 790                Grande       Sabores Regular                   Fanta
## 791                Grande       Sabores Regular                   Fanta
## 792                Grande       Sabores Regular                  Fresca
## 793                Grande       Sabores Regular                  Fresca
## 794                Grande       Sabores Regular                    Joya
## 795                Grande       Sabores Regular            Manzana Lift
## 796                Grande       Sabores Regular                  Senzao
## 797                Grande       Sabores Regular           Sidral Mundet
## 798                Grande       Sabores Regular           Sidral Mundet
## 799                Grande       Sabores Regular           Sidral Mundet
## 800                Grande       Sabores Regular                  Sprite
## 801                Grande       Sabores Regular                  Sprite
## 802                Grande       Sabores Regular                  Sprite
## 803                Grande       Sabores Regular                  Sprite
## 804                Grande       Sabores Regular                  Sprite
## 805                Grande       Sabores Regular                  Sprite
## 806                Grande       Sabores Regular                  Sprite
## 807                Grande         T\x8e Regular                Fuze Tea
## 808                Grande         T\x8e Regular                Fuze Tea
## 809                Grande          Agua Mineral         Topo Chico A.M.
## 810                Grande          Agua Mineral         Topo Chico A.M.
## 811                Grande          Agua Mineral         Topo Chico A.M.
## 812                Grande       Agua Purificada    Ciel Agua Purificada
## 813                Grande       Agua Purificada    Ciel Agua Purificada
## 814                Grande       Agua Purificada    Ciel Agua Purificada
## 815                Grande       Agua Purificada    Ciel Agua Purificada
## 816                Grande       Agua Saborizada             Ciel Exprim
## 817                Grande       Agua Saborizada             Ciel Exprim
## 818                Grande       Agua Saborizada             Ciel Exprim
## 819                Grande      Bebidas de Fruta          Delaware Punch
## 820                Grande      Bebidas de Fruta                  Frutsi
## 821                Grande      Bebidas de Fruta                   Pulpy
## 822                Grande      Bebidas de Fruta              Valle Frut
## 823                Grande      Bebidas de Fruta              Valle Frut
## 824                Grande      Bebidas de Fruta              Valle Frut
## 825                Grande       Bebidas de Soya             AdeS Frutal
## 826                Grande       Bebidas de Soya             AdeS Frutal
## 827                Grande       Bebidas de Soya          AdeS L\x87cteo
## 828                Grande   Bebidas Energeticas              Glac\x8eau
## 829                Grande   Bebidas Energeticas          Monster Energy
## 830                Grande           Colas Light         Coca-Cola Light
## 831                Grande           Colas Light         Coca-Cola Light
## 832                Grande           Colas Light         Coca-Cola Light
## 833                Grande           Colas Light         Coca-Cola Light
## 834                Grande           Colas Light         Coca-Cola Light
## 835                Grande           Colas Light         Coca-Cola Light
## 836                Grande           Colas Light         Coca-Cola Light
## 837                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 838                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 839                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 840                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 841                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 842                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 843                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 844                Grande         Colas Regular               Coca-Cola
## 845                Grande         Colas Regular               Coca-Cola
## 846                Grande         Colas Regular               Coca-Cola
## 847                Grande         Colas Regular               Coca-Cola
## 848                Grande         Colas Regular               Coca-Cola
## 849                Grande         Colas Regular               Coca-Cola
## 850                Grande         Colas Regular               Coca-Cola
## 851                Grande         Colas Regular               Coca-Cola
## 852                Grande         Colas Regular               Coca-Cola
## 853                Grande         Colas Regular               Coca-Cola
## 854                Grande         Colas Regular               Coca-Cola
## 855                Grande         Colas Regular               Coca-Cola
## 856                Grande         Colas Regular               Coca-Cola
## 857                Grande         Colas Regular               Coca-Cola
## 858                Grande         Colas Regular               Coca-Cola
## 859                Grande         Colas Regular               Coca-Cola
## 860                Grande         Colas Regular               Coca-Cola
## 861                Grande         Colas Regular               Coca-Cola
## 862                Grande         Colas Regular               Coca-Cola
## 863                Grande         Colas Regular               Coca-Cola
## 864                Grande Isot\x97nicos Regular                Powerade
## 865                Grande Isot\x97nicos Regular                Powerade
## 866                Grande Isot\x97nicos Regular                Powerade
## 867                Grande   Jugos y N\x8ectares               Del Valle
## 868                Grande   Jugos y N\x8ectares               Del Valle
## 869                Grande   Jugos y N\x8ectares               Del Valle
## 870                Grande   Jugos y N\x8ectares               Del Valle
## 871                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 872                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 873                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 874                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 875                Grande     Leche UHT Regular      Santa Clara Entera
## 876                Grande     Leche UHT Regular       Santa Clara Light
## 877                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 878                Grande         Sabores Light        Del Valle y Nada
## 879                Grande         Sabores Light        Del Valle y Nada
## 880                Grande         Sabores Light             Sprite Zero
## 881                Grande       Sabores Regular        Del Valle y Nada
## 882                Grande       Sabores Regular        Del Valle y Nada
## 883                Grande       Sabores Regular                   Fanta
## 884                Grande       Sabores Regular                   Fanta
## 885                Grande       Sabores Regular                   Fanta
## 886                Grande       Sabores Regular                   Fanta
## 887                Grande       Sabores Regular                   Fanta
## 888                Grande       Sabores Regular                   Fanta
## 889                Grande       Sabores Regular                  Fresca
## 890                Grande       Sabores Regular                  Fresca
## 891                Grande       Sabores Regular                  Fresca
## 892                Grande       Sabores Regular                  Fresca
## 893                Grande       Sabores Regular                    Joya
## 894                Grande       Sabores Regular                    Joya
## 895                Grande       Sabores Regular            Manzana Lift
## 896                Grande       Sabores Regular            Manzana Lift
## 897                Grande       Sabores Regular            Manzana Lift
## 898                Grande       Sabores Regular                  Senzao
## 899                Grande       Sabores Regular           Sidral Mundet
## 900                Grande       Sabores Regular           Sidral Mundet
## 901                Grande       Sabores Regular           Sidral Mundet
## 902                Grande       Sabores Regular           Sidral Mundet
## 903                Grande       Sabores Regular           Sidral Mundet
## 904                Grande       Sabores Regular                  Sprite
## 905                Grande       Sabores Regular                  Sprite
## 906                Grande       Sabores Regular                  Sprite
## 907                Grande       Sabores Regular                  Sprite
## 908                Grande       Sabores Regular                  Sprite
## 909                Grande         T\x8e Regular                Fuze Tea
## 910                Grande         T\x8e Regular                Fuze Tea
## 911                Grande          Agua Mineral       Ciel Mineralizada
## 912                Grande          Agua Mineral         Topo Chico A.M.
## 913                Grande          Agua Mineral         Topo Chico A.M.
## 914                Grande       Agua Purificada    Ciel Agua Purificada
## 915                Grande       Agua Purificada    Ciel Agua Purificada
## 916                Grande       Agua Purificada    Ciel Agua Purificada
## 917                Grande       Agua Saborizada             Ciel Exprim
## 918                Grande       Agua Saborizada             Ciel Exprim
## 919                Grande       Agua Saborizada               Ciel Mini
## 920                Grande      Bebidas de Fruta          Delaware Punch
## 921                Grande      Bebidas de Fruta          Delaware Punch
## 922                Grande      Bebidas de Fruta                  Frutsi
## 923                Grande      Bebidas de Fruta                   Pulpy
## 924                Grande      Bebidas de Fruta              Valle Frut
## 925                Grande      Bebidas de Fruta              Valle Frut
## 926                Grande      Bebidas de Fruta              Valle Frut
## 927                Grande      Bebidas de Fruta              Valle Frut
## 928                Grande       Bebidas de Soya             AdeS Frutal
## 929                Grande       Bebidas de Soya             AdeS Frutal
## 930                Grande       Bebidas de Soya          AdeS L\x87cteo
## 931                Grande   Bebidas Energeticas              Glac\x8eau
## 932                Grande   Bebidas Energeticas          Monster Energy
## 933                Grande  Cafe Listo Para Bebe            Barista Bros
## 934                Grande           Colas Light         Coca-Cola Light
## 935                Grande           Colas Light         Coca-Cola Light
## 936                Grande           Colas Light         Coca-Cola Light
## 937                Grande           Colas Light         Coca-Cola Light
## 938                Grande           Colas Light         Coca-Cola Light
## 939                Grande           Colas Light         Coca-Cola Light
## 940                Grande           Colas Light         Coca-Cola Light
## 941                Grande           Colas Light         Coca-Cola Light
## 942                Grande           Colas Light         Coca-Cola Light
## 943                Grande           Colas Light         Coca-Cola Light
## 944                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 945                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 946                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 947                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 948                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 949                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 950                Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 951                Grande         Colas Regular               Coca-Cola
## 952                Grande         Colas Regular               Coca-Cola
## 953                Grande         Colas Regular               Coca-Cola
## 954                Grande         Colas Regular               Coca-Cola
## 955                Grande         Colas Regular               Coca-Cola
## 956                Grande         Colas Regular               Coca-Cola
## 957                Grande         Colas Regular               Coca-Cola
## 958                Grande         Colas Regular               Coca-Cola
## 959                Grande         Colas Regular               Coca-Cola
## 960                Grande         Colas Regular               Coca-Cola
## 961                Grande         Colas Regular               Coca-Cola
## 962                Grande         Colas Regular               Coca-Cola
## 963                Grande         Colas Regular               Coca-Cola
## 964                Grande         Colas Regular               Coca-Cola
## 965                Grande         Colas Regular               Coca-Cola
## 966                Grande         Colas Regular               Coca-Cola
## 967                Grande         Colas Regular               Coca-Cola
## 968                Grande         Colas Regular               Coca-Cola
## 969                Grande         Colas Regular               Coca-Cola
## 970                Grande         Colas Regular               Coca-Cola
## 971                Grande         Colas Regular               Coca-Cola
## 972                Grande Isot\x97nicos Regular                Powerade
## 973                Grande Isot\x97nicos Regular                Powerade
## 974                Grande   Jugos y N\x8ectares               Del Valle
## 975                Grande   Jugos y N\x8ectares               Del Valle
## 976                Grande   Jugos y N\x8ectares               Del Valle
## 977                Grande   Jugos y N\x8ectares               Del Valle
## 978                Grande   Jugos y N\x8ectares               Del Valle
## 979                Grande   Jugos y N\x8ectares               Del Valle
## 980                Grande   Jugos y N\x8ectares               Del Valle
## 981                Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 982                Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 983                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 984                Grande   Jugos y N\x8ectares       Del Valle Reserva
## 985                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 986                Grande  Leche UHT Especializ    Santa Clara Deslacto
## 987                Grande     Leche UHT Regular      Santa Clara Entera
## 988                Grande     Leche UHT Regular       Santa Clara Light
## 989                Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 990                Grande         Sabores Light        Del Valle y Nada
## 991                Grande         Sabores Light        Del Valle y Nada
## 992                Grande         Sabores Light             Sprite Zero
## 993                Grande         Sabores Light             Sprite Zero
## 994                Grande         Sabores Light             Sprite Zero
## 995                Grande       Sabores Regular        Del Valle y Nada
## 996                Grande       Sabores Regular        Del Valle y Nada
## 997                Grande       Sabores Regular                   Fanta
## 998                Grande       Sabores Regular                   Fanta
## 999                Grande       Sabores Regular                   Fanta
## 1000               Grande       Sabores Regular                   Fanta
## 1001               Grande       Sabores Regular                   Fanta
## 1002               Grande       Sabores Regular                   Fanta
## 1003               Grande       Sabores Regular                   Fanta
## 1004               Grande       Sabores Regular                  Fresca
## 1005               Grande       Sabores Regular                  Fresca
## 1006               Grande       Sabores Regular                  Fresca
## 1007               Grande       Sabores Regular                  Fresca
## 1008               Grande       Sabores Regular                    Joya
## 1009               Grande       Sabores Regular                    Joya
## 1010               Grande       Sabores Regular            Manzana Lift
## 1011               Grande       Sabores Regular            Manzana Lift
## 1012               Grande       Sabores Regular            Manzana Lift
## 1013               Grande       Sabores Regular            Manzana Lift
## 1014               Grande       Sabores Regular                  Senzao
## 1015               Grande       Sabores Regular           Sidral Mundet
## 1016               Grande       Sabores Regular           Sidral Mundet
## 1017               Grande       Sabores Regular           Sidral Mundet
## 1018               Grande       Sabores Regular           Sidral Mundet
## 1019               Grande       Sabores Regular                  Sprite
## 1020               Grande       Sabores Regular                  Sprite
## 1021               Grande       Sabores Regular                  Sprite
## 1022               Grande       Sabores Regular                  Sprite
## 1023               Grande       Sabores Regular                  Sprite
## 1024               Grande       Sabores Regular                  Sprite
## 1025               Grande       Sabores Regular                  Sprite
## 1026               Grande         T\x8e Regular                Fuze Tea
## 1027               Grande         T\x8e Regular                Fuze Tea
## 1028               Grande         T\x8e Regular                Fuze Tea
## 1029               Grande          Agua Mineral         Topo Chico A.M.
## 1030               Grande       Agua Purificada    Ciel Agua Purificada
## 1031               Grande       Agua Purificada    Ciel Agua Purificada
## 1032               Grande       Agua Purificada    Ciel Agua Purificada
## 1033               Grande       Agua Saborizada             Ciel Exprim
## 1034               Grande       Agua Saborizada             Ciel Exprim
## 1035               Grande      Bebidas de Fruta              Valle Frut
## 1036               Grande      Bebidas de Fruta              Valle Frut
## 1037               Grande       Bebidas de Soya             AdeS Frutal
## 1038               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1039               Grande   Bebidas Energeticas          Monster Energy
## 1040               Grande           Colas Light         Coca-Cola Light
## 1041               Grande           Colas Light         Coca-Cola Light
## 1042               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1043               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1044               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1045               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1046               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1047               Grande         Colas Regular               Coca-Cola
## 1048               Grande         Colas Regular               Coca-Cola
## 1049               Grande         Colas Regular               Coca-Cola
## 1050               Grande         Colas Regular               Coca-Cola
## 1051               Grande         Colas Regular               Coca-Cola
## 1052               Grande         Colas Regular               Coca-Cola
## 1053               Grande         Colas Regular               Coca-Cola
## 1054               Grande         Colas Regular               Coca-Cola
## 1055               Grande         Colas Regular               Coca-Cola
## 1056               Grande         Colas Regular               Coca-Cola
## 1057               Grande         Colas Regular               Coca-Cola
## 1058               Grande         Colas Regular               Coca-Cola
## 1059               Grande         Colas Regular               Coca-Cola
## 1060               Grande Isot\x97nicos Regular                Powerade
## 1061               Grande Isot\x97nicos Regular                Powerade
## 1062               Grande Isot\x97nicos Regular                Powerade
## 1063               Grande   Jugos y N\x8ectares               Del Valle
## 1064               Grande   Jugos y N\x8ectares               Del Valle
## 1065               Grande   Jugos y N\x8ectares               Del Valle
## 1066               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1067               Grande     Leche UHT Regular      Santa Clara Entera
## 1068               Grande     Leche UHT Regular       Santa Clara Light
## 1069               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1070               Grande         Sabores Light        Del Valle y Nada
## 1071               Grande       Sabores Regular        Del Valle y Nada
## 1072               Grande       Sabores Regular                   Fanta
## 1073               Grande       Sabores Regular                   Fanta
## 1074               Grande       Sabores Regular                   Fanta
## 1075               Grande       Sabores Regular                   Fanta
## 1076               Grande       Sabores Regular                   Fanta
## 1077               Grande       Sabores Regular                  Fresca
## 1078               Grande       Sabores Regular                  Fresca
## 1079               Grande       Sabores Regular                  Fresca
## 1080               Grande       Sabores Regular                  Fresca
## 1081               Grande       Sabores Regular                  Fresca
## 1082               Grande       Sabores Regular            Manzana Lift
## 1083               Grande       Sabores Regular            Manzana Lift
## 1084               Grande       Sabores Regular            Manzana Lift
## 1085               Grande       Sabores Regular           Sidral Mundet
## 1086               Grande       Sabores Regular           Sidral Mundet
## 1087               Grande       Sabores Regular           Sidral Mundet
## 1088               Grande       Sabores Regular                  Sprite
## 1089               Grande       Sabores Regular                  Sprite
## 1090               Grande       Sabores Regular                  Sprite
## 1091               Grande       Sabores Regular                  Sprite
## 1092               Grande       Sabores Regular                  Sprite
## 1093               Grande       Sabores Regular                  Sprite
## 1094               Grande       Sabores Regular                  Sprite
## 1095               Grande       Sabores Regular                  Sprite
## 1096               Grande         T\x8e Regular                Fuze Tea
## 1097               Grande          Agua Mineral         Topo Chico A.M.
## 1098               Grande       Agua Purificada    Ciel Agua Purificada
## 1099               Grande       Agua Purificada    Ciel Agua Purificada
## 1100               Grande       Agua Purificada    Ciel Agua Purificada
## 1101               Grande       Agua Saborizada             Ciel Exprim
## 1102               Grande       Agua Saborizada             Ciel Exprim
## 1103               Grande      Bebidas de Fruta                  Frutsi
## 1104               Grande      Bebidas de Fruta                   Pulpy
## 1105               Grande      Bebidas de Fruta              Valle Frut
## 1106               Grande      Bebidas de Fruta              Valle Frut
## 1107               Grande       Bebidas de Soya             AdeS Frutal
## 1108               Grande   Bebidas Energeticas          Monster Energy
## 1109               Grande           Colas Light         Coca-Cola Light
## 1110               Grande           Colas Light         Coca-Cola Light
## 1111               Grande           Colas Light         Coca-Cola Light
## 1112               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1113               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1114               Grande         Colas Regular               Coca-Cola
## 1115               Grande         Colas Regular               Coca-Cola
## 1116               Grande         Colas Regular               Coca-Cola
## 1117               Grande         Colas Regular               Coca-Cola
## 1118               Grande         Colas Regular               Coca-Cola
## 1119               Grande         Colas Regular               Coca-Cola
## 1120               Grande         Colas Regular               Coca-Cola
## 1121               Grande         Colas Regular               Coca-Cola
## 1122               Grande         Colas Regular               Coca-Cola
## 1123               Grande         Colas Regular               Coca-Cola
## 1124               Grande         Colas Regular               Coca-Cola
## 1125               Grande         Colas Regular               Coca-Cola
## 1126               Grande         Colas Regular               Coca-Cola
## 1127               Grande         Colas Regular               Coca-Cola
## 1128               Grande         Colas Regular               Coca-Cola
## 1129               Grande Isot\x97nicos Regular                Powerade
## 1130               Grande Isot\x97nicos Regular                Powerade
## 1131               Grande Isot\x97nicos Regular                Powerade
## 1132               Grande   Jugos y N\x8ectares               Del Valle
## 1133               Grande   Jugos y N\x8ectares               Del Valle
## 1134               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1135               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1136               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1137               Grande     Leche UHT Regular      Santa Clara Entera
## 1138               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1139               Grande         Sabores Light        Del Valle y Nada
## 1140               Grande       Sabores Regular        Del Valle y Nada
## 1141               Grande       Sabores Regular                   Fanta
## 1142               Grande       Sabores Regular                   Fanta
## 1143               Grande       Sabores Regular                   Fanta
## 1144               Grande       Sabores Regular                   Fanta
## 1145               Grande       Sabores Regular                   Fanta
## 1146               Grande       Sabores Regular                   Fanta
## 1147               Grande       Sabores Regular                  Fresca
## 1148               Grande       Sabores Regular                  Fresca
## 1149               Grande       Sabores Regular                    Joya
## 1150               Grande       Sabores Regular            Manzana Lift
## 1151               Grande       Sabores Regular            Manzana Lift
## 1152               Grande       Sabores Regular           Sidral Mundet
## 1153               Grande       Sabores Regular           Sidral Mundet
## 1154               Grande       Sabores Regular           Sidral Mundet
## 1155               Grande       Sabores Regular           Sidral Mundet
## 1156               Grande       Sabores Regular           Sidral Mundet
## 1157               Grande       Sabores Regular                  Sprite
## 1158               Grande       Sabores Regular                  Sprite
## 1159               Grande       Sabores Regular                  Sprite
## 1160               Grande       Sabores Regular                  Sprite
## 1161               Grande       Sabores Regular                  Sprite
## 1162               Grande       Sabores Regular                  Sprite
## 1163               Grande         T\x8e Regular                Fuze Tea
## 1164               Grande          Agua Mineral       Ciel Mineralizada
## 1165               Grande          Agua Mineral       Ciel Mineralizada
## 1166               Grande          Agua Mineral         Topo Chico A.M.
## 1167               Grande          Agua Mineral         Topo Chico A.M.
## 1168               Grande       Agua Purificada    Ciel Agua Purificada
## 1169               Grande       Agua Purificada    Ciel Agua Purificada
## 1170               Grande       Agua Purificada    Ciel Agua Purificada
## 1171               Grande       Agua Purificada    Ciel Agua Purificada
## 1172               Grande       Agua Saborizada             Ciel Exprim
## 1173               Grande       Agua Saborizada             Ciel Exprim
## 1174               Grande       Agua Saborizada             Ciel Exprim
## 1175               Grande      Bebidas de Fruta          Delaware Punch
## 1176               Grande      Bebidas de Fruta                  Frutsi
## 1177               Grande      Bebidas de Fruta                   Pulpy
## 1178               Grande      Bebidas de Fruta              Valle Frut
## 1179               Grande      Bebidas de Fruta              Valle Frut
## 1180               Grande      Bebidas de Fruta              Valle Frut
## 1181               Grande      Bebidas de Fruta              Valle Frut
## 1182               Grande       Bebidas de Soya             AdeS Frutal
## 1183               Grande       Bebidas de Soya             AdeS Frutal
## 1184               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1185               Grande   Bebidas Energeticas              Glac\x8eau
## 1186               Grande   Bebidas Energeticas          Monster Energy
## 1187               Grande  Cafe Listo Para Bebe            Barista Bros
## 1188               Grande           Colas Light         Coca-Cola Light
## 1189               Grande           Colas Light         Coca-Cola Light
## 1190               Grande           Colas Light         Coca-Cola Light
## 1191               Grande           Colas Light         Coca-Cola Light
## 1192               Grande           Colas Light         Coca-Cola Light
## 1193               Grande           Colas Light         Coca-Cola Light
## 1194               Grande           Colas Light         Coca-Cola Light
## 1195               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1196               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1197               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1198               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1199               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1200               Grande         Colas Regular               Coca-Cola
## 1201               Grande         Colas Regular               Coca-Cola
## 1202               Grande         Colas Regular               Coca-Cola
## 1203               Grande         Colas Regular               Coca-Cola
## 1204               Grande         Colas Regular               Coca-Cola
## 1205               Grande         Colas Regular               Coca-Cola
## 1206               Grande         Colas Regular               Coca-Cola
## 1207               Grande         Colas Regular               Coca-Cola
## 1208               Grande         Colas Regular               Coca-Cola
## 1209               Grande         Colas Regular               Coca-Cola
## 1210               Grande         Colas Regular               Coca-Cola
## 1211               Grande         Colas Regular               Coca-Cola
## 1212               Grande         Colas Regular               Coca-Cola
## 1213               Grande         Colas Regular               Coca-Cola
## 1214               Grande         Colas Regular               Coca-Cola
## 1215               Grande         Colas Regular               Coca-Cola
## 1216               Grande         Colas Regular               Coca-Cola
## 1217               Grande         Colas Regular               Coca-Cola
## 1218               Grande         Colas Regular               Coca-Cola
## 1219               Grande Isot\x97nicos Regular                Powerade
## 1220               Grande Isot\x97nicos Regular                Powerade
## 1221               Grande   Jugos y N\x8ectares               Del Valle
## 1222               Grande   Jugos y N\x8ectares               Del Valle
## 1223               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 1224               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1225               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1226               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1227               Grande     Leche UHT Regular      Santa Clara Entera
## 1228               Grande     Leche UHT Regular       Santa Clara Light
## 1229               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1230               Grande         Sabores Light        Del Valle y Nada
## 1231               Grande         Sabores Light        Del Valle y Nada
## 1232               Grande         Sabores Light             Sprite Zero
## 1233               Grande       Sabores Regular        Del Valle y Nada
## 1234               Grande       Sabores Regular        Del Valle y Nada
## 1235               Grande       Sabores Regular                   Fanta
## 1236               Grande       Sabores Regular                   Fanta
## 1237               Grande       Sabores Regular                   Fanta
## 1238               Grande       Sabores Regular                   Fanta
## 1239               Grande       Sabores Regular                   Fanta
## 1240               Grande       Sabores Regular                   Fanta
## 1241               Grande       Sabores Regular                   Fanta
## 1242               Grande       Sabores Regular                   Fanta
## 1243               Grande       Sabores Regular                  Fresca
## 1244               Grande       Sabores Regular                  Fresca
## 1245               Grande       Sabores Regular                  Fresca
## 1246               Grande       Sabores Regular                  Fresca
## 1247               Grande       Sabores Regular                  Fresca
## 1248               Grande       Sabores Regular                  Fresca
## 1249               Grande       Sabores Regular                    Joya
## 1250               Grande       Sabores Regular            Manzana Lift
## 1251               Grande       Sabores Regular            Manzana Lift
## 1252               Grande       Sabores Regular            Manzana Lift
## 1253               Grande       Sabores Regular            Manzana Lift
## 1254               Grande       Sabores Regular            Manzana Lift
## 1255               Grande       Sabores Regular                  Senzao
## 1256               Grande       Sabores Regular           Sidral Mundet
## 1257               Grande       Sabores Regular           Sidral Mundet
## 1258               Grande       Sabores Regular           Sidral Mundet
## 1259               Grande       Sabores Regular           Sidral Mundet
## 1260               Grande       Sabores Regular                  Sprite
## 1261               Grande       Sabores Regular                  Sprite
## 1262               Grande       Sabores Regular                  Sprite
## 1263               Grande       Sabores Regular                  Sprite
## 1264               Grande       Sabores Regular                  Sprite
## 1265               Grande       Sabores Regular                  Sprite
## 1266               Grande       Sabores Regular                  Sprite
## 1267               Grande       Sabores Regular                  Sprite
## 1268               Grande         T\x8e Regular                Fuze Tea
## 1269               Grande         T\x8e Regular                Fuze Tea
## 1270               Grande          Agua Mineral       Ciel Mineralizada
## 1271               Grande          Agua Mineral         Topo Chico A.M.
## 1272               Grande       Agua Purificada    Ciel Agua Purificada
## 1273               Grande       Agua Purificada    Ciel Agua Purificada
## 1274               Grande       Agua Purificada    Ciel Agua Purificada
## 1275               Grande       Agua Saborizada             Ciel Exprim
## 1276               Grande       Agua Saborizada             Ciel Exprim
## 1277               Grande      Bebidas de Fruta          Delaware Punch
## 1278               Grande      Bebidas de Fruta                  Frutsi
## 1279               Grande      Bebidas de Fruta                   Pulpy
## 1280               Grande      Bebidas de Fruta              Valle Frut
## 1281               Grande      Bebidas de Fruta              Valle Frut
## 1282               Grande      Bebidas de Fruta              Valle Frut
## 1283               Grande      Bebidas de Fruta              Valle Frut
## 1284               Grande   Bebidas Energeticas              Glac\x8eau
## 1285               Grande   Bebidas Energeticas          Monster Energy
## 1286               Grande  Cafe Listo Para Bebe            Barista Bros
## 1287               Grande           Colas Light         Coca-Cola Light
## 1288               Grande           Colas Light         Coca-Cola Light
## 1289               Grande           Colas Light         Coca-Cola Light
## 1290               Grande           Colas Light         Coca-Cola Light
## 1291               Grande           Colas Light         Coca-Cola Light
## 1292               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1293               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1294               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1295               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1296               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1297               Grande         Colas Regular               Coca-Cola
## 1298               Grande         Colas Regular               Coca-Cola
## 1299               Grande         Colas Regular               Coca-Cola
## 1300               Grande         Colas Regular               Coca-Cola
## 1301               Grande         Colas Regular               Coca-Cola
## 1302               Grande         Colas Regular               Coca-Cola
## 1303               Grande         Colas Regular               Coca-Cola
## 1304               Grande         Colas Regular               Coca-Cola
## 1305               Grande         Colas Regular               Coca-Cola
## 1306               Grande         Colas Regular               Coca-Cola
## 1307               Grande         Colas Regular               Coca-Cola
## 1308               Grande         Colas Regular               Coca-Cola
## 1309               Grande         Colas Regular               Coca-Cola
## 1310               Grande Isot\x97nicos Regular                Powerade
## 1311               Grande Isot\x97nicos Regular                Powerade
## 1312               Grande Isot\x97nicos Regular                Powerade
## 1313               Grande   Jugos y N\x8ectares               Del Valle
## 1314               Grande   Jugos y N\x8ectares               Del Valle
## 1315               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1316               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1317               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1318               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1319               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1320               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1321               Grande         Sabores Light        Del Valle y Nada
## 1322               Grande         Sabores Light             Sprite Zero
## 1323               Grande       Sabores Regular        Del Valle y Nada
## 1324               Grande       Sabores Regular        Del Valle y Nada
## 1325               Grande       Sabores Regular                   Fanta
## 1326               Grande       Sabores Regular                   Fanta
## 1327               Grande       Sabores Regular                   Fanta
## 1328               Grande       Sabores Regular                   Fanta
## 1329               Grande       Sabores Regular                  Fresca
## 1330               Grande       Sabores Regular                  Fresca
## 1331               Grande       Sabores Regular                  Fresca
## 1332               Grande       Sabores Regular                    Joya
## 1333               Grande       Sabores Regular            Manzana Lift
## 1334               Grande       Sabores Regular            Manzana Lift
## 1335               Grande       Sabores Regular            Manzana Lift
## 1336               Grande       Sabores Regular            Manzana Lift
## 1337               Grande       Sabores Regular                  Senzao
## 1338               Grande       Sabores Regular           Sidral Mundet
## 1339               Grande       Sabores Regular           Sidral Mundet
## 1340               Grande       Sabores Regular           Sidral Mundet
## 1341               Grande       Sabores Regular                  Sprite
## 1342               Grande       Sabores Regular                  Sprite
## 1343               Grande       Sabores Regular                  Sprite
## 1344               Grande       Sabores Regular                  Sprite
## 1345               Grande       Sabores Regular                  Sprite
## 1346               Grande       Sabores Regular                  Sprite
## 1347               Grande       Sabores Regular                  Sprite
## 1348               Grande         T\x8e Regular                Fuze Tea
## 1349               Grande         T\x8e Regular                Fuze Tea
## 1350               Grande          Agua Mineral         Topo Chico A.M.
## 1351               Grande          Agua Mineral         Topo Chico A.M.
## 1352               Grande       Agua Purificada    Ciel Agua Purificada
## 1353               Grande       Agua Purificada    Ciel Agua Purificada
## 1354               Grande       Agua Purificada    Ciel Agua Purificada
## 1355               Grande      Bebidas de Fruta          Delaware Punch
## 1356               Grande      Bebidas de Fruta                  Frutsi
## 1357               Grande      Bebidas de Fruta              Valle Frut
## 1358               Grande      Bebidas de Fruta              Valle Frut
## 1359               Grande      Bebidas de Fruta              Valle Frut
## 1360               Grande   Bebidas Energeticas                    Burn
## 1361               Grande   Bebidas Energeticas                    Burn
## 1362               Grande   Bebidas Energeticas          Monster Energy
## 1363               Grande  Cafe Listo Para Bebe            Barista Bros
## 1364               Grande           Colas Light         Coca-Cola Light
## 1365               Grande           Colas Light         Coca-Cola Light
## 1366               Grande           Colas Light         Coca-Cola Light
## 1367               Grande           Colas Light         Coca-Cola Light
## 1368               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1369               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1370               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1371               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1372               Grande         Colas Regular               Coca-Cola
## 1373               Grande         Colas Regular               Coca-Cola
## 1374               Grande         Colas Regular               Coca-Cola
## 1375               Grande         Colas Regular               Coca-Cola
## 1376               Grande         Colas Regular               Coca-Cola
## 1377               Grande         Colas Regular               Coca-Cola
## 1378               Grande         Colas Regular               Coca-Cola
## 1379               Grande         Colas Regular               Coca-Cola
## 1380               Grande         Colas Regular               Coca-Cola
## 1381               Grande         Colas Regular               Coca-Cola
## 1382               Grande         Colas Regular               Coca-Cola
## 1383               Grande         Colas Regular               Coca-Cola
## 1384               Grande         Colas Regular               Coca-Cola
## 1385               Grande         Colas Regular               Coca-Cola
## 1386               Grande         Colas Regular               Coca-Cola
## 1387               Grande         Colas Regular               Coca-Cola
## 1388               Grande Isot\x97nicos Regular                Powerade
## 1389               Grande Isot\x97nicos Regular                Powerade
## 1390               Grande   Jugos y N\x8ectares               Del Valle
## 1391               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 1392               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1393               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1394               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1395               Grande         Sabores Light        Del Valle y Nada
## 1396               Grande       Sabores Regular        Del Valle y Nada
## 1397               Grande       Sabores Regular                   Fanta
## 1398               Grande       Sabores Regular                   Fanta
## 1399               Grande       Sabores Regular                   Fanta
## 1400               Grande       Sabores Regular                   Fanta
## 1401               Grande       Sabores Regular                  Fresca
## 1402               Grande       Sabores Regular                  Fresca
## 1403               Grande       Sabores Regular                  Fresca
## 1404               Grande       Sabores Regular                  Fresca
## 1405               Grande       Sabores Regular                    Joya
## 1406               Grande       Sabores Regular            Manzana Lift
## 1407               Grande       Sabores Regular            Manzana Lift
## 1408               Grande       Sabores Regular            Manzana Lift
## 1409               Grande       Sabores Regular                  Senzao
## 1410               Grande       Sabores Regular           Sidral Mundet
## 1411               Grande       Sabores Regular           Sidral Mundet
## 1412               Grande       Sabores Regular           Sidral Mundet
## 1413               Grande       Sabores Regular           Sidral Mundet
## 1414               Grande       Sabores Regular                  Sprite
## 1415               Grande       Sabores Regular                  Sprite
## 1416               Grande       Sabores Regular                  Sprite
## 1417               Grande       Sabores Regular                  Sprite
## 1418               Grande         T\x8e Regular                Fuze Tea
## 1419               Grande          Agua Mineral       Ciel Mineralizada
## 1420               Grande          Agua Mineral         Topo Chico A.M.
## 1421               Grande          Agua Mineral         Topo Chico A.M.
## 1422               Grande       Agua Purificada    Ciel Agua Purificada
## 1423               Grande       Agua Purificada    Ciel Agua Purificada
## 1424               Grande       Agua Purificada    Ciel Agua Purificada
## 1425               Grande       Agua Purificada    Ciel Agua Purificada
## 1426               Grande       Agua Saborizada             Ciel Exprim
## 1427               Grande       Agua Saborizada             Ciel Exprim
## 1428               Grande       Agua Saborizada             Ciel Exprim
## 1429               Grande      Bebidas de Fruta          Delaware Punch
## 1430               Grande      Bebidas de Fruta          Delaware Punch
## 1431               Grande      Bebidas de Fruta                  Frutsi
## 1432               Grande      Bebidas de Fruta                   Pulpy
## 1433               Grande      Bebidas de Fruta              Valle Frut
## 1434               Grande      Bebidas de Fruta              Valle Frut
## 1435               Grande      Bebidas de Fruta              Valle Frut
## 1436               Grande       Bebidas de Soya             AdeS Frutal
## 1437               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1438               Grande   Bebidas Energeticas              Glac\x8eau
## 1439               Grande   Bebidas Energeticas          Monster Energy
## 1440               Grande  Cafe Listo Para Bebe            Barista Bros
## 1441               Grande           Colas Light         Coca-Cola Light
## 1442               Grande           Colas Light         Coca-Cola Light
## 1443               Grande           Colas Light         Coca-Cola Light
## 1444               Grande           Colas Light         Coca-Cola Light
## 1445               Grande           Colas Light         Coca-Cola Light
## 1446               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1447               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1448               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1449               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1450               Grande         Colas Regular               Coca-Cola
## 1451               Grande         Colas Regular               Coca-Cola
## 1452               Grande         Colas Regular               Coca-Cola
## 1453               Grande         Colas Regular               Coca-Cola
## 1454               Grande         Colas Regular               Coca-Cola
## 1455               Grande         Colas Regular               Coca-Cola
## 1456               Grande         Colas Regular               Coca-Cola
## 1457               Grande         Colas Regular               Coca-Cola
## 1458               Grande         Colas Regular               Coca-Cola
## 1459               Grande         Colas Regular               Coca-Cola
## 1460               Grande         Colas Regular               Coca-Cola
## 1461               Grande         Colas Regular               Coca-Cola
## 1462               Grande         Colas Regular               Coca-Cola
## 1463               Grande         Colas Regular               Coca-Cola
## 1464               Grande         Colas Regular               Coca-Cola
## 1465               Grande         Colas Regular               Coca-Cola
## 1466               Grande         Colas Regular               Coca-Cola
## 1467               Grande         Colas Regular               Coca-Cola
## 1468               Grande         Colas Regular               Coca-Cola
## 1469               Grande         Colas Regular               Coca-Cola
## 1470               Grande         Colas Regular               Coca-Cola
## 1471               Grande Isot\x97nicos Regular                Powerade
## 1472               Grande Isot\x97nicos Regular                Powerade
## 1473               Grande   Jugos y N\x8ectares               Del Valle
## 1474               Grande   Jugos y N\x8ectares               Del Valle
## 1475               Grande   Jugos y N\x8ectares               Del Valle
## 1476               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1477               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1478               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1479               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1480               Grande     Leche UHT Regular      Santa Clara Entera
## 1481               Grande     Leche UHT Regular       Santa Clara Light
## 1482               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1483               Grande         Sabores Light        Del Valle y Nada
## 1484               Grande         Sabores Light             Sprite Zero
## 1485               Grande       Sabores Regular        Del Valle y Nada
## 1486               Grande       Sabores Regular                   Fanta
## 1487               Grande       Sabores Regular                   Fanta
## 1488               Grande       Sabores Regular                   Fanta
## 1489               Grande       Sabores Regular                   Fanta
## 1490               Grande       Sabores Regular                   Fanta
## 1491               Grande       Sabores Regular                   Fanta
## 1492               Grande       Sabores Regular                   Fanta
## 1493               Grande       Sabores Regular                   Fanta
## 1494               Grande       Sabores Regular                  Fresca
## 1495               Grande       Sabores Regular                  Fresca
## 1496               Grande       Sabores Regular                  Fresca
## 1497               Grande       Sabores Regular                  Fresca
## 1498               Grande       Sabores Regular                  Fresca
## 1499               Grande       Sabores Regular            Manzana Lift
## 1500               Grande       Sabores Regular            Manzana Lift
## 1501               Grande       Sabores Regular            Manzana Lift
## 1502               Grande       Sabores Regular            Manzana Lift
## 1503               Grande       Sabores Regular                  Senzao
## 1504               Grande       Sabores Regular           Sidral Mundet
## 1505               Grande       Sabores Regular           Sidral Mundet
## 1506               Grande       Sabores Regular           Sidral Mundet
## 1507               Grande       Sabores Regular                  Sprite
## 1508               Grande       Sabores Regular                  Sprite
## 1509               Grande       Sabores Regular                  Sprite
## 1510               Grande       Sabores Regular                  Sprite
## 1511               Grande       Sabores Regular                  Sprite
## 1512               Grande       Sabores Regular                  Sprite
## 1513               Grande       Sabores Regular                  Sprite
## 1514               Grande       Sabores Regular                  Sprite
## 1515               Grande         T\x8e Regular                Fuze Tea
## 1516               Grande         T\x8e Regular                Fuze Tea
## 1517               Grande         T\x8e Regular                Fuze Tea
## 1518               Grande          Agua Mineral       Ciel Mineralizada
## 1519               Grande          Agua Mineral         Topo Chico A.M.
## 1520               Grande       Agua Purificada    Ciel Agua Purificada
## 1521               Grande       Agua Purificada    Ciel Agua Purificada
## 1522               Grande       Agua Purificada    Ciel Agua Purificada
## 1523               Grande       Agua Saborizada             Ciel Exprim
## 1524               Grande       Agua Saborizada             Ciel Exprim
## 1525               Grande      Bebidas de Fruta          Delaware Punch
## 1526               Grande      Bebidas de Fruta          Delaware Punch
## 1527               Grande      Bebidas de Fruta                  Frutsi
## 1528               Grande      Bebidas de Fruta              Valle Frut
## 1529               Grande      Bebidas de Fruta              Valle Frut
## 1530               Grande      Bebidas de Fruta              Valle Frut
## 1531               Grande       Bebidas de Soya             AdeS Frutal
## 1532               Grande   Bebidas Energeticas          Monster Energy
## 1533               Grande  Cafe Listo Para Bebe            Barista Bros
## 1534               Grande           Colas Light         Coca-Cola Light
## 1535               Grande           Colas Light         Coca-Cola Light
## 1536               Grande           Colas Light         Coca-Cola Light
## 1537               Grande           Colas Light         Coca-Cola Light
## 1538               Grande           Colas Light         Coca-Cola Light
## 1539               Grande           Colas Light         Coca-Cola Light
## 1540               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1541               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1542               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1543               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1544               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1545               Grande         Colas Regular               Coca-Cola
## 1546               Grande         Colas Regular               Coca-Cola
## 1547               Grande         Colas Regular               Coca-Cola
## 1548               Grande         Colas Regular               Coca-Cola
## 1549               Grande         Colas Regular               Coca-Cola
## 1550               Grande         Colas Regular               Coca-Cola
## 1551               Grande         Colas Regular               Coca-Cola
## 1552               Grande         Colas Regular               Coca-Cola
## 1553               Grande         Colas Regular               Coca-Cola
## 1554               Grande         Colas Regular               Coca-Cola
## 1555               Grande         Colas Regular               Coca-Cola
## 1556               Grande         Colas Regular               Coca-Cola
## 1557               Grande         Colas Regular               Coca-Cola
## 1558               Grande         Colas Regular               Coca-Cola
## 1559               Grande         Colas Regular               Coca-Cola
## 1560               Grande         Colas Regular               Coca-Cola
## 1561               Grande Isot\x97nicos Regular                Powerade
## 1562               Grande Isot\x97nicos Regular                Powerade
## 1563               Grande   Jugos y N\x8ectares               Del Valle
## 1564               Grande   Jugos y N\x8ectares               Del Valle
## 1565               Grande   Jugos y N\x8ectares               Del Valle
## 1566               Grande   Jugos y N\x8ectares               Del Valle
## 1567               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 1568               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1569               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1570               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1571               Grande     Leche UHT Regular      Santa Clara Entera
## 1572               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1573               Grande         Sabores Light        Del Valle y Nada
## 1574               Grande         Sabores Light             Sprite Zero
## 1575               Grande       Sabores Regular        Del Valle y Nada
## 1576               Grande       Sabores Regular                   Fanta
## 1577               Grande       Sabores Regular                   Fanta
## 1578               Grande       Sabores Regular                   Fanta
## 1579               Grande       Sabores Regular                   Fanta
## 1580               Grande       Sabores Regular                   Fanta
## 1581               Grande       Sabores Regular                   Fanta
## 1582               Grande       Sabores Regular                   Fanta
## 1583               Grande       Sabores Regular                  Fresca
## 1584               Grande       Sabores Regular                  Fresca
## 1585               Grande       Sabores Regular                  Fresca
## 1586               Grande       Sabores Regular                  Fresca
## 1587               Grande       Sabores Regular                    Joya
## 1588               Grande       Sabores Regular                    Joya
## 1589               Grande       Sabores Regular            Manzana Lift
## 1590               Grande       Sabores Regular            Manzana Lift
## 1591               Grande       Sabores Regular            Manzana Lift
## 1592               Grande       Sabores Regular            Manzana Lift
## 1593               Grande       Sabores Regular                  Senzao
## 1594               Grande       Sabores Regular           Sidral Mundet
## 1595               Grande       Sabores Regular           Sidral Mundet
## 1596               Grande       Sabores Regular           Sidral Mundet
## 1597               Grande       Sabores Regular                  Sprite
## 1598               Grande       Sabores Regular                  Sprite
## 1599               Grande       Sabores Regular                  Sprite
## 1600               Grande       Sabores Regular                  Sprite
## 1601               Grande       Sabores Regular                  Sprite
## 1602               Grande       Sabores Regular                  Sprite
## 1603               Grande       Sabores Regular                  Sprite
## 1604               Grande         T\x8e Regular                Fuze Tea
## 1605               Grande          Agua Mineral       Ciel Mineralizada
## 1606               Grande          Agua Mineral       Ciel Mineralizada
## 1607               Grande          Agua Mineral         Topo Chico A.M.
## 1608               Grande       Agua Purificada    Ciel Agua Purificada
## 1609               Grande       Agua Purificada    Ciel Agua Purificada
## 1610               Grande       Agua Purificada    Ciel Agua Purificada
## 1611               Grande      Bebidas de Fruta          Delaware Punch
## 1612               Grande      Bebidas de Fruta                  Frutsi
## 1613               Grande      Bebidas de Fruta              Valle Frut
## 1614               Grande      Bebidas de Fruta              Valle Frut
## 1615               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1616               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1617               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1618               Grande         Colas Regular               Coca-Cola
## 1619               Grande         Colas Regular               Coca-Cola
## 1620               Grande         Colas Regular               Coca-Cola
## 1621               Grande         Colas Regular               Coca-Cola
## 1622               Grande         Colas Regular               Coca-Cola
## 1623               Grande         Colas Regular               Coca-Cola
## 1624               Grande         Colas Regular               Coca-Cola
## 1625               Grande         Colas Regular               Coca-Cola
## 1626               Grande Isot\x97nicos Regular                Powerade
## 1627               Grande   Jugos y N\x8ectares               Del Valle
## 1628               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1629               Grande       Sabores Regular                   Fanta
## 1630               Grande       Sabores Regular                  Fresca
## 1631               Grande       Sabores Regular            Manzana Lift
## 1632               Grande       Sabores Regular           Sidral Mundet
## 1633               Grande       Sabores Regular           Sidral Mundet
## 1634               Grande       Sabores Regular                  Sprite
## 1635               Grande         T\x8e Regular                Fuze Tea
## 1636               Grande          Agua Mineral       Ciel Mineralizada
## 1637               Grande          Agua Mineral         Topo Chico A.M.
## 1638               Grande       Agua Purificada    Ciel Agua Purificada
## 1639               Grande       Agua Purificada    Ciel Agua Purificada
## 1640               Grande       Agua Purificada    Ciel Agua Purificada
## 1641               Grande       Agua Purificada    Ciel Agua Purificada
## 1642               Grande       Agua Saborizada             Ciel Exprim
## 1643               Grande       Agua Saborizada             Ciel Exprim
## 1644               Grande      Bebidas de Fruta                  Bebere
## 1645               Grande      Bebidas de Fruta          Delaware Punch
## 1646               Grande      Bebidas de Fruta                  Frutsi
## 1647               Grande      Bebidas de Fruta                   Pulpy
## 1648               Grande      Bebidas de Fruta              Valle Frut
## 1649               Grande      Bebidas de Fruta              Valle Frut
## 1650               Grande      Bebidas de Fruta              Valle Frut
## 1651               Grande      Bebidas de Fruta              Valle Frut
## 1652               Grande       Bebidas de Soya             AdeS Frutal
## 1653               Grande   Bebidas Energeticas          Monster Energy
## 1654               Grande  Cafe Listo Para Bebe            Barista Bros
## 1655               Grande           Colas Light         Coca-Cola Light
## 1656               Grande           Colas Light         Coca-Cola Light
## 1657               Grande           Colas Light         Coca-Cola Light
## 1658               Grande           Colas Light         Coca-Cola Light
## 1659               Grande           Colas Light         Coca-Cola Light
## 1660               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1661               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1662               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1663               Grande         Colas Regular               Coca-Cola
## 1664               Grande         Colas Regular               Coca-Cola
## 1665               Grande         Colas Regular               Coca-Cola
## 1666               Grande         Colas Regular               Coca-Cola
## 1667               Grande         Colas Regular               Coca-Cola
## 1668               Grande         Colas Regular               Coca-Cola
## 1669               Grande         Colas Regular               Coca-Cola
## 1670               Grande         Colas Regular               Coca-Cola
## 1671               Grande         Colas Regular               Coca-Cola
## 1672               Grande         Colas Regular               Coca-Cola
## 1673               Grande         Colas Regular               Coca-Cola
## 1674               Grande         Colas Regular               Coca-Cola
## 1675               Grande         Colas Regular               Coca-Cola
## 1676               Grande         Colas Regular               Coca-Cola
## 1677               Grande         Colas Regular               Coca-Cola
## 1678               Grande         Colas Regular               Coca-Cola
## 1679               Grande         Colas Regular               Coca-Cola
## 1680               Grande         Colas Regular               Coca-Cola
## 1681               Grande Isot\x97nicos Regular                Powerade
## 1682               Grande Isot\x97nicos Regular                Powerade
## 1683               Grande   Jugos y N\x8ectares               Del Valle
## 1684               Grande   Jugos y N\x8ectares               Del Valle
## 1685               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 1686               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1687               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1688               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1689               Grande     Leche UHT Regular      Santa Clara Entera
## 1690               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1691               Grande         Sabores Light        Del Valle y Nada
## 1692               Grande         Sabores Light             Sprite Zero
## 1693               Grande       Sabores Regular                   Fanta
## 1694               Grande       Sabores Regular                   Fanta
## 1695               Grande       Sabores Regular                   Fanta
## 1696               Grande       Sabores Regular                   Fanta
## 1697               Grande       Sabores Regular                   Fanta
## 1698               Grande       Sabores Regular                   Fanta
## 1699               Grande       Sabores Regular                   Fanta
## 1700               Grande       Sabores Regular                   Fanta
## 1701               Grande       Sabores Regular                  Fresca
## 1702               Grande       Sabores Regular                  Fresca
## 1703               Grande       Sabores Regular                    Joya
## 1704               Grande       Sabores Regular            Manzana Lift
## 1705               Grande       Sabores Regular            Manzana Lift
## 1706               Grande       Sabores Regular            Manzana Lift
## 1707               Grande       Sabores Regular            Manzana Lift
## 1708               Grande       Sabores Regular                  Senzao
## 1709               Grande       Sabores Regular           Sidral Mundet
## 1710               Grande       Sabores Regular           Sidral Mundet
## 1711               Grande       Sabores Regular           Sidral Mundet
## 1712               Grande       Sabores Regular           Sidral Mundet
## 1713               Grande       Sabores Regular                  Sprite
## 1714               Grande       Sabores Regular                  Sprite
## 1715               Grande       Sabores Regular                  Sprite
## 1716               Grande       Sabores Regular                  Sprite
## 1717               Grande       Sabores Regular                  Sprite
## 1718               Grande       Sabores Regular                  Sprite
## 1719               Grande       Sabores Regular                  Sprite
## 1720               Grande       Sabores Regular                  Sprite
## 1721               Grande         T\x8e Regular                Fuze Tea
## 1722               Grande          Agua Mineral         Topo Chico A.M.
## 1723               Grande       Agua Purificada    Ciel Agua Purificada
## 1724               Grande       Agua Purificada    Ciel Agua Purificada
## 1725               Grande       Agua Purificada    Ciel Agua Purificada
## 1726               Grande       Agua Purificada    Ciel Agua Purificada
## 1727               Grande       Agua Saborizada             Ciel Exprim
## 1728               Grande       Agua Saborizada             Ciel Exprim
## 1729               Grande      Bebidas de Fruta          Delaware Punch
## 1730               Grande      Bebidas de Fruta                  Frutsi
## 1731               Grande      Bebidas de Fruta                   Pulpy
## 1732               Grande      Bebidas de Fruta              Valle Frut
## 1733               Grande      Bebidas de Fruta              Valle Frut
## 1734               Grande      Bebidas de Fruta              Valle Frut
## 1735               Grande      Bebidas de Fruta              Valle Frut
## 1736               Grande       Bebidas de Soya             AdeS Frutal
## 1737               Grande       Bebidas de Soya             AdeS Frutal
## 1738               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1739               Grande   Bebidas Energeticas          Monster Energy
## 1740               Grande  Cafe Listo Para Bebe            Barista Bros
## 1741               Grande           Colas Light         Coca-Cola Light
## 1742               Grande           Colas Light         Coca-Cola Light
## 1743               Grande           Colas Light         Coca-Cola Light
## 1744               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1745               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1746               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1747               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1748               Grande         Colas Regular               Coca-Cola
## 1749               Grande         Colas Regular               Coca-Cola
## 1750               Grande         Colas Regular               Coca-Cola
## 1751               Grande         Colas Regular               Coca-Cola
## 1752               Grande         Colas Regular               Coca-Cola
## 1753               Grande         Colas Regular               Coca-Cola
## 1754               Grande         Colas Regular               Coca-Cola
## 1755               Grande         Colas Regular               Coca-Cola
## 1756               Grande         Colas Regular               Coca-Cola
## 1757               Grande         Colas Regular               Coca-Cola
## 1758               Grande         Colas Regular               Coca-Cola
## 1759               Grande         Colas Regular               Coca-Cola
## 1760               Grande         Colas Regular               Coca-Cola
## 1761               Grande Isot\x97nicos Regular                Powerade
## 1762               Grande Isot\x97nicos Regular                Powerade
## 1763               Grande Isot\x97nicos Regular                Powerade
## 1764               Grande   Jugos y N\x8ectares               Del Valle
## 1765               Grande   Jugos y N\x8ectares               Del Valle
## 1766               Grande   Jugos y N\x8ectares               Del Valle
## 1767               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1768               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1769               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1770               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1771               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1772               Grande     Leche UHT Regular      Santa Clara Entera
## 1773               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1774               Grande         Sabores Light        Del Valle y Nada
## 1775               Grande         Sabores Light             Sprite Zero
## 1776               Grande       Sabores Regular        Del Valle y Nada
## 1777               Grande       Sabores Regular        Del Valle y Nada
## 1778               Grande       Sabores Regular                   Fanta
## 1779               Grande       Sabores Regular                   Fanta
## 1780               Grande       Sabores Regular                   Fanta
## 1781               Grande       Sabores Regular                   Fanta
## 1782               Grande       Sabores Regular                   Fanta
## 1783               Grande       Sabores Regular                   Fanta
## 1784               Grande       Sabores Regular                  Fresca
## 1785               Grande       Sabores Regular                  Fresca
## 1786               Grande       Sabores Regular                  Fresca
## 1787               Grande       Sabores Regular                    Joya
## 1788               Grande       Sabores Regular                    Joya
## 1789               Grande       Sabores Regular            Manzana Lift
## 1790               Grande       Sabores Regular            Manzana Lift
## 1791               Grande       Sabores Regular            Manzana Lift
## 1792               Grande       Sabores Regular                  Senzao
## 1793               Grande       Sabores Regular           Sidral Mundet
## 1794               Grande       Sabores Regular                  Sprite
## 1795               Grande       Sabores Regular                  Sprite
## 1796               Grande       Sabores Regular                  Sprite
## 1797               Grande       Sabores Regular                  Sprite
## 1798               Grande       Sabores Regular                  Sprite
## 1799               Grande       Sabores Regular                  Sprite
## 1800               Grande         T\x8e Regular                Fuze Tea
## 1801               Grande         T\x8e Regular                Fuze Tea
## 1802               Grande          Agua Mineral       Ciel Mineralizada
## 1803               Grande          Agua Mineral         Topo Chico A.M.
## 1804               Grande       Agua Purificada    Ciel Agua Purificada
## 1805               Grande       Agua Purificada    Ciel Agua Purificada
## 1806               Grande       Agua Purificada    Ciel Agua Purificada
## 1807               Grande       Agua Saborizada             Ciel Exprim
## 1808               Grande      Bebidas de Fruta          Delaware Punch
## 1809               Grande      Bebidas de Fruta          Delaware Punch
## 1810               Grande      Bebidas de Fruta                  Frutsi
## 1811               Grande      Bebidas de Fruta              Valle Frut
## 1812               Grande       Bebidas de Soya             AdeS Frutal
## 1813               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1814               Grande   Bebidas Energeticas              Glac\x8eau
## 1815               Grande   Bebidas Energeticas          Monster Energy
## 1816               Grande  Cafe Listo Para Bebe            Barista Bros
## 1817               Grande           Colas Light         Coca-Cola Light
## 1818               Grande           Colas Light         Coca-Cola Light
## 1819               Grande           Colas Light         Coca-Cola Light
## 1820               Grande           Colas Light         Coca-Cola Light
## 1821               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1822               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1823               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1824               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1825               Grande         Colas Regular               Coca-Cola
## 1826               Grande         Colas Regular               Coca-Cola
## 1827               Grande         Colas Regular               Coca-Cola
## 1828               Grande         Colas Regular               Coca-Cola
## 1829               Grande         Colas Regular               Coca-Cola
## 1830               Grande         Colas Regular               Coca-Cola
## 1831               Grande         Colas Regular               Coca-Cola
## 1832               Grande         Colas Regular               Coca-Cola
## 1833               Grande         Colas Regular               Coca-Cola
## 1834               Grande         Colas Regular               Coca-Cola
## 1835               Grande         Colas Regular               Coca-Cola
## 1836               Grande         Colas Regular               Coca-Cola
## 1837               Grande         Colas Regular               Coca-Cola
## 1838               Grande Isot\x97nicos Regular                Powerade
## 1839               Grande Isot\x97nicos Regular                Powerade
## 1840               Grande   Jugos y N\x8ectares               Del Valle
## 1841               Grande   Jugos y N\x8ectares               Del Valle
## 1842               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1843               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1844               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1845               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1846               Grande     Leche UHT Regular       Santa Clara Light
## 1847               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1848               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1849               Grande         Sabores Light        Del Valle y Nada
## 1850               Grande         Sabores Light        Del Valle y Nada
## 1851               Grande         Sabores Light             Sprite Zero
## 1852               Grande       Sabores Regular        Del Valle y Nada
## 1853               Grande       Sabores Regular        Del Valle y Nada
## 1854               Grande       Sabores Regular                   Fanta
## 1855               Grande       Sabores Regular                   Fanta
## 1856               Grande       Sabores Regular                   Fanta
## 1857               Grande       Sabores Regular                   Fanta
## 1858               Grande       Sabores Regular                  Fresca
## 1859               Grande       Sabores Regular                  Fresca
## 1860               Grande       Sabores Regular            Manzana Lift
## 1861               Grande       Sabores Regular            Manzana Lift
## 1862               Grande       Sabores Regular            Manzana Lift
## 1863               Grande       Sabores Regular           Sidral Mundet
## 1864               Grande       Sabores Regular           Sidral Mundet
## 1865               Grande       Sabores Regular           Sidral Mundet
## 1866               Grande       Sabores Regular                  Sprite
## 1867               Grande       Sabores Regular                  Sprite
## 1868               Grande       Sabores Regular                  Sprite
## 1869               Grande       Sabores Regular                  Sprite
## 1870               Grande         T\x8e Regular                Fuze Tea
## 1871               Grande         T\x8e Regular                Fuze Tea
## 1872               Grande          Agua Mineral         Topo Chico A.M.
## 1873               Grande           Colas Light         Coca-Cola Light
## 1874               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1875               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1876               Grande         Colas Regular               Coca-Cola
## 1877               Grande         Colas Regular               Coca-Cola
## 1878               Grande         Colas Regular               Coca-Cola
## 1879               Grande         Colas Regular               Coca-Cola
## 1880               Grande         Colas Regular               Coca-Cola
## 1881               Grande          Agua Mineral         Topo Chico A.M.
## 1882               Grande       Agua Purificada    Ciel Agua Purificada
## 1883               Grande       Agua Purificada    Ciel Agua Purificada
## 1884               Grande       Agua Purificada    Ciel Agua Purificada
## 1885               Grande       Agua Saborizada             Ciel Exprim
## 1886               Grande       Agua Saborizada             Ciel Exprim
## 1887               Grande      Bebidas de Fruta          Delaware Punch
## 1888               Grande      Bebidas de Fruta              Valle Frut
## 1889               Grande      Bebidas de Fruta              Valle Frut
## 1890               Grande       Bebidas de Soya             AdeS Frutal
## 1891               Grande       Bebidas de Soya             AdeS Frutal
## 1892               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1893               Grande   Bebidas Energeticas          Monster Energy
## 1894               Grande  Cafe Listo Para Bebe            Barista Bros
## 1895               Grande           Colas Light         Coca-Cola Light
## 1896               Grande           Colas Light         Coca-Cola Light
## 1897               Grande           Colas Light         Coca-Cola Light
## 1898               Grande           Colas Light         Coca-Cola Light
## 1899               Grande           Colas Light         Coca-Cola Light
## 1900               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1901               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1902               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1903               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1904               Grande         Colas Regular               Coca-Cola
## 1905               Grande         Colas Regular               Coca-Cola
## 1906               Grande         Colas Regular               Coca-Cola
## 1907               Grande         Colas Regular               Coca-Cola
## 1908               Grande         Colas Regular               Coca-Cola
## 1909               Grande         Colas Regular               Coca-Cola
## 1910               Grande         Colas Regular               Coca-Cola
## 1911               Grande         Colas Regular               Coca-Cola
## 1912               Grande         Colas Regular               Coca-Cola
## 1913               Grande         Colas Regular               Coca-Cola
## 1914               Grande         Colas Regular               Coca-Cola
## 1915               Grande         Colas Regular               Coca-Cola
## 1916               Grande         Colas Regular               Coca-Cola
## 1917               Grande Isot\x97nicos Regular                Powerade
## 1918               Grande Isot\x97nicos Regular                Powerade
## 1919               Grande   Jugos y N\x8ectares               Del Valle
## 1920               Grande   Jugos y N\x8ectares               Del Valle
## 1921               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1922               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1923               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1924               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1925               Grande     Leche UHT Regular      Santa Clara Entera
## 1926               Grande     Leche UHT Regular       Santa Clara Light
## 1927               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1928               Grande         Sabores Light        Del Valle y Nada
## 1929               Grande       Sabores Regular        Del Valle y Nada
## 1930               Grande       Sabores Regular        Del Valle y Nada
## 1931               Grande       Sabores Regular                   Fanta
## 1932               Grande       Sabores Regular                   Fanta
## 1933               Grande       Sabores Regular                   Fanta
## 1934               Grande       Sabores Regular                   Fanta
## 1935               Grande       Sabores Regular                   Fanta
## 1936               Grande       Sabores Regular                  Fresca
## 1937               Grande       Sabores Regular                  Fresca
## 1938               Grande       Sabores Regular                  Fresca
## 1939               Grande       Sabores Regular                    Joya
## 1940               Grande       Sabores Regular            Manzana Lift
## 1941               Grande       Sabores Regular                  Senzao
## 1942               Grande       Sabores Regular           Sidral Mundet
## 1943               Grande       Sabores Regular                  Sprite
## 1944               Grande       Sabores Regular                  Sprite
## 1945               Grande       Sabores Regular                  Sprite
## 1946               Grande       Sabores Regular                  Sprite
## 1947               Grande         T\x8e Regular                Fuze Tea
## 1948               Grande          Agua Mineral         Topo Chico A.M.
## 1949               Grande       Agua Purificada    Ciel Agua Purificada
## 1950               Grande       Agua Purificada    Ciel Agua Purificada
## 1951               Grande       Agua Purificada    Ciel Agua Purificada
## 1952               Grande       Agua Saborizada             Ciel Exprim
## 1953               Grande       Agua Saborizada             Ciel Exprim
## 1954               Grande      Bebidas de Fruta          Delaware Punch
## 1955               Grande      Bebidas de Fruta                  Frutsi
## 1956               Grande      Bebidas de Fruta                   Pulpy
## 1957               Grande      Bebidas de Fruta              Valle Frut
## 1958               Grande      Bebidas de Fruta              Valle Frut
## 1959               Grande       Bebidas de Soya             AdeS Frutal
## 1960               Grande       Bebidas de Soya             AdeS Frutal
## 1961               Grande       Bebidas de Soya          AdeS L\x87cteo
## 1962               Grande   Bebidas Energeticas          Monster Energy
## 1963               Grande  Cafe Listo Para Bebe            Barista Bros
## 1964               Grande           Colas Light         Coca-Cola Light
## 1965               Grande           Colas Light         Coca-Cola Light
## 1966               Grande           Colas Light         Coca-Cola Light
## 1967               Grande           Colas Light         Coca-Cola Light
## 1968               Grande           Colas Light         Coca-Cola Light
## 1969               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1970               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1971               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 1972               Grande         Colas Regular               Coca-Cola
## 1973               Grande         Colas Regular               Coca-Cola
## 1974               Grande         Colas Regular               Coca-Cola
## 1975               Grande         Colas Regular               Coca-Cola
## 1976               Grande         Colas Regular               Coca-Cola
## 1977               Grande         Colas Regular               Coca-Cola
## 1978               Grande         Colas Regular               Coca-Cola
## 1979               Grande         Colas Regular               Coca-Cola
## 1980               Grande         Colas Regular               Coca-Cola
## 1981               Grande         Colas Regular               Coca-Cola
## 1982               Grande         Colas Regular               Coca-Cola
## 1983               Grande         Colas Regular               Coca-Cola
## 1984               Grande         Colas Regular               Coca-Cola
## 1985               Grande         Colas Regular               Coca-Cola
## 1986               Grande Isot\x97nicos Regular                Powerade
## 1987               Grande Isot\x97nicos Regular                Powerade
## 1988               Grande Isot\x97nicos Regular                Powerade
## 1989               Grande   Jugos y N\x8ectares               Del Valle
## 1990               Grande   Jugos y N\x8ectares               Del Valle
## 1991               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 1992               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 1993               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1994               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 1995               Grande     Leche UHT Regular      Santa Clara Entera
## 1996               Grande     Leche UHT Regular       Santa Clara Light
## 1997               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1998               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 1999               Grande         Sabores Light        Del Valle y Nada
## 2000               Grande       Sabores Regular        Del Valle y Nada
## 2001               Grande       Sabores Regular                   Fanta
## 2002               Grande       Sabores Regular                   Fanta
## 2003               Grande       Sabores Regular                   Fanta
## 2004               Grande       Sabores Regular                   Fanta
## 2005               Grande       Sabores Regular                   Fanta
## 2006               Grande       Sabores Regular                   Fanta
## 2007               Grande       Sabores Regular                  Fresca
## 2008               Grande       Sabores Regular                  Fresca
## 2009               Grande       Sabores Regular                  Fresca
## 2010               Grande       Sabores Regular                  Fresca
## 2011               Grande       Sabores Regular                    Joya
## 2012               Grande       Sabores Regular            Manzana Lift
## 2013               Grande       Sabores Regular            Manzana Lift
## 2014               Grande       Sabores Regular                  Senzao
## 2015               Grande       Sabores Regular           Sidral Mundet
## 2016               Grande       Sabores Regular           Sidral Mundet
## 2017               Grande       Sabores Regular           Sidral Mundet
## 2018               Grande       Sabores Regular           Sidral Mundet
## 2019               Grande       Sabores Regular           Sidral Mundet
## 2020               Grande       Sabores Regular                  Sprite
## 2021               Grande       Sabores Regular                  Sprite
## 2022               Grande       Sabores Regular                  Sprite
## 2023               Grande       Sabores Regular                  Sprite
## 2024               Grande       Sabores Regular                  Sprite
## 2025               Grande       Sabores Regular                  Sprite
## 2026               Grande       Sabores Regular                  Sprite
## 2027               Grande         T\x8e Regular                Fuze Tea
## 2028               Grande         T\x8e Regular                Fuze Tea
## 2029               Grande          Agua Mineral         Topo Chico A.M.
## 2030               Grande       Agua Purificada    Ciel Agua Purificada
## 2031               Grande       Agua Purificada    Ciel Agua Purificada
## 2032               Grande       Agua Purificada    Ciel Agua Purificada
## 2033               Grande      Bebidas de Fruta                  Frutsi
## 2034               Grande      Bebidas de Fruta              Valle Frut
## 2035               Grande       Bebidas de Soya             AdeS Frutal
## 2036               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2037               Grande   Bebidas Energeticas          Monster Energy
## 2038               Grande           Colas Light         Coca-Cola Light
## 2039               Grande           Colas Light         Coca-Cola Light
## 2040               Grande           Colas Light         Coca-Cola Light
## 2041               Grande           Colas Light         Coca-Cola Light
## 2042               Grande           Colas Light         Coca-Cola Light
## 2043               Grande           Colas Light         Coca-Cola Light
## 2044               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2045               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2046               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2047               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2048               Grande         Colas Regular               Coca-Cola
## 2049               Grande         Colas Regular               Coca-Cola
## 2050               Grande         Colas Regular               Coca-Cola
## 2051               Grande         Colas Regular               Coca-Cola
## 2052               Grande         Colas Regular               Coca-Cola
## 2053               Grande         Colas Regular               Coca-Cola
## 2054               Grande         Colas Regular               Coca-Cola
## 2055               Grande         Colas Regular               Coca-Cola
## 2056               Grande         Colas Regular               Coca-Cola
## 2057               Grande         Colas Regular               Coca-Cola
## 2058               Grande         Colas Regular               Coca-Cola
## 2059               Grande         Colas Regular               Coca-Cola
## 2060               Grande         Colas Regular               Coca-Cola
## 2061               Grande Isot\x97nicos Regular                Powerade
## 2062               Grande   Jugos y N\x8ectares               Del Valle
## 2063               Grande   Jugos y N\x8ectares               Del Valle
## 2064               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2065               Grande     Leche UHT Regular      Santa Clara Entera
## 2066               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2067               Grande         Sabores Light        Del Valle y Nada
## 2068               Grande         Sabores Light             Sprite Zero
## 2069               Grande       Sabores Regular        Del Valle y Nada
## 2070               Grande       Sabores Regular                   Fanta
## 2071               Grande       Sabores Regular                   Fanta
## 2072               Grande       Sabores Regular            Manzana Lift
## 2073               Grande       Sabores Regular                  Senzao
## 2074               Grande       Sabores Regular           Sidral Mundet
## 2075               Grande       Sabores Regular           Sidral Mundet
## 2076               Grande       Sabores Regular                  Sprite
## 2077               Grande       Sabores Regular                  Sprite
## 2078               Grande       Sabores Regular                  Sprite
## 2079               Grande         T\x8e Regular                Fuze Tea
## 2080               Grande          Agua Mineral         Topo Chico A.M.
## 2081               Grande       Agua Purificada    Ciel Agua Purificada
## 2082               Grande       Agua Purificada    Ciel Agua Purificada
## 2083               Grande       Agua Purificada    Ciel Agua Purificada
## 2084               Grande      Bebidas de Fruta              Valle Frut
## 2085               Grande       Bebidas de Soya             AdeS Frutal
## 2086               Grande   Bebidas Energeticas          Monster Energy
## 2087               Grande           Colas Light         Coca-Cola Light
## 2088               Grande           Colas Light         Coca-Cola Light
## 2089               Grande           Colas Light         Coca-Cola Light
## 2090               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2091               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2092               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2093               Grande         Colas Regular               Coca-Cola
## 2094               Grande         Colas Regular               Coca-Cola
## 2095               Grande         Colas Regular               Coca-Cola
## 2096               Grande         Colas Regular               Coca-Cola
## 2097               Grande         Colas Regular               Coca-Cola
## 2098               Grande         Colas Regular               Coca-Cola
## 2099               Grande         Colas Regular               Coca-Cola
## 2100               Grande         Colas Regular               Coca-Cola
## 2101               Grande         Colas Regular               Coca-Cola
## 2102               Grande         Colas Regular               Coca-Cola
## 2103               Grande         Colas Regular               Coca-Cola
## 2104               Grande         Colas Regular               Coca-Cola
## 2105               Grande Isot\x97nicos Regular                Powerade
## 2106               Grande Isot\x97nicos Regular                Powerade
## 2107               Grande   Jugos y N\x8ectares               Del Valle
## 2108               Grande   Jugos y N\x8ectares               Del Valle
## 2109               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2110               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2111               Grande     Leche UHT Regular      Santa Clara Entera
## 2112               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2113               Grande         Sabores Light             Sprite Zero
## 2114               Grande       Sabores Regular        Del Valle y Nada
## 2115               Grande       Sabores Regular        Del Valle y Nada
## 2116               Grande       Sabores Regular                   Fanta
## 2117               Grande       Sabores Regular                   Fanta
## 2118               Grande       Sabores Regular                  Fresca
## 2119               Grande       Sabores Regular                  Fresca
## 2120               Grande       Sabores Regular                    Joya
## 2121               Grande       Sabores Regular            Manzana Lift
## 2122               Grande       Sabores Regular            Manzana Lift
## 2123               Grande       Sabores Regular           Sidral Mundet
## 2124               Grande       Sabores Regular           Sidral Mundet
## 2125               Grande       Sabores Regular           Sidral Mundet
## 2126               Grande       Sabores Regular                  Sprite
## 2127               Grande       Sabores Regular                  Sprite
## 2128               Grande         T\x8e Regular                Fuze Tea
## 2129               Grande          Agua Mineral         Topo Chico A.M.
## 2130               Grande          Agua Mineral         Topo Chico A.M.
## 2131               Grande       Agua Purificada    Ciel Agua Purificada
## 2132               Grande       Agua Purificada    Ciel Agua Purificada
## 2133               Grande       Agua Purificada    Ciel Agua Purificada
## 2134               Grande       Agua Saborizada             Ciel Exprim
## 2135               Grande       Agua Saborizada             Ciel Exprim
## 2136               Grande      Bebidas de Fruta          Delaware Punch
## 2137               Grande      Bebidas de Fruta                  Frutsi
## 2138               Grande      Bebidas de Fruta                   Pulpy
## 2139               Grande      Bebidas de Fruta              Valle Frut
## 2140               Grande      Bebidas de Fruta              Valle Frut
## 2141               Grande       Bebidas de Soya             AdeS Frutal
## 2142               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2143               Grande   Bebidas Energeticas          Monster Energy
## 2144               Grande  Cafe Listo Para Bebe            Barista Bros
## 2145               Grande           Colas Light         Coca-Cola Light
## 2146               Grande           Colas Light         Coca-Cola Light
## 2147               Grande           Colas Light         Coca-Cola Light
## 2148               Grande           Colas Light         Coca-Cola Light
## 2149               Grande           Colas Light         Coca-Cola Light
## 2150               Grande           Colas Light         Coca-Cola Light
## 2151               Grande           Colas Light         Coca-Cola Light
## 2152               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2153               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2154               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2155               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2156               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2157               Grande         Colas Regular               Coca-Cola
## 2158               Grande         Colas Regular               Coca-Cola
## 2159               Grande         Colas Regular               Coca-Cola
## 2160               Grande         Colas Regular               Coca-Cola
## 2161               Grande         Colas Regular               Coca-Cola
## 2162               Grande         Colas Regular               Coca-Cola
## 2163               Grande         Colas Regular               Coca-Cola
## 2164               Grande         Colas Regular               Coca-Cola
## 2165               Grande         Colas Regular               Coca-Cola
## 2166               Grande         Colas Regular               Coca-Cola
## 2167               Grande         Colas Regular               Coca-Cola
## 2168               Grande         Colas Regular               Coca-Cola
## 2169               Grande         Colas Regular               Coca-Cola
## 2170               Grande         Colas Regular               Coca-Cola
## 2171               Grande         Colas Regular               Coca-Cola
## 2172               Grande Isot\x97nicos Regular                Powerade
## 2173               Grande Isot\x97nicos Regular                Powerade
## 2174               Grande   Jugos y N\x8ectares               Del Valle
## 2175               Grande   Jugos y N\x8ectares               Del Valle
## 2176               Grande   Jugos y N\x8ectares               Del Valle
## 2177               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 2178               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 2179               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2180               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2181               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2182               Grande     Leche UHT Regular      Santa Clara Entera
## 2183               Grande     Leche UHT Regular       Santa Clara Light
## 2184               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2185               Grande         Sabores Light        Del Valle y Nada
## 2186               Grande         Sabores Light             Sprite Zero
## 2187               Grande       Sabores Regular        Del Valle y Nada
## 2188               Grande       Sabores Regular                   Fanta
## 2189               Grande       Sabores Regular                   Fanta
## 2190               Grande       Sabores Regular                   Fanta
## 2191               Grande       Sabores Regular                   Fanta
## 2192               Grande       Sabores Regular                   Fanta
## 2193               Grande       Sabores Regular                   Fanta
## 2194               Grande       Sabores Regular                   Fanta
## 2195               Grande       Sabores Regular                  Fresca
## 2196               Grande       Sabores Regular                  Fresca
## 2197               Grande       Sabores Regular                  Fresca
## 2198               Grande       Sabores Regular                  Fresca
## 2199               Grande       Sabores Regular                    Joya
## 2200               Grande       Sabores Regular            Manzana Lift
## 2201               Grande       Sabores Regular            Manzana Lift
## 2202               Grande       Sabores Regular                  Senzao
## 2203               Grande       Sabores Regular           Sidral Mundet
## 2204               Grande       Sabores Regular           Sidral Mundet
## 2205               Grande       Sabores Regular           Sidral Mundet
## 2206               Grande       Sabores Regular                  Sprite
## 2207               Grande       Sabores Regular                  Sprite
## 2208               Grande       Sabores Regular                  Sprite
## 2209               Grande       Sabores Regular                  Sprite
## 2210               Grande       Sabores Regular                  Sprite
## 2211               Grande       Sabores Regular                  Sprite
## 2212               Grande         T\x8e Regular                Fuze Tea
## 2213               Grande         T\x8e Regular                Fuze Tea
## 2214               Grande          Agua Mineral         Topo Chico A.M.
## 2215               Grande          Agua Mineral         Topo Chico A.M.
## 2216               Grande       Agua Purificada    Ciel Agua Purificada
## 2217               Grande       Agua Purificada    Ciel Agua Purificada
## 2218               Grande       Agua Purificada    Ciel Agua Purificada
## 2219               Grande       Agua Purificada    Ciel Agua Purificada
## 2220               Grande       Agua Saborizada             Ciel Exprim
## 2221               Grande       Agua Saborizada             Ciel Exprim
## 2222               Grande       Agua Saborizada               Ciel Mini
## 2223               Grande      Bebidas de Fruta          Delaware Punch
## 2224               Grande      Bebidas de Fruta                  Frutsi
## 2225               Grande      Bebidas de Fruta                   Pulpy
## 2226               Grande      Bebidas de Fruta              Valle Frut
## 2227               Grande      Bebidas de Fruta              Valle Frut
## 2228               Grande      Bebidas de Fruta              Valle Frut
## 2229               Grande      Bebidas de Fruta              Valle Frut
## 2230               Grande      Bebidas de Fruta              Valle Frut
## 2231               Grande       Bebidas de Soya             AdeS Frutal
## 2232               Grande       Bebidas de Soya             AdeS Frutal
## 2233               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2234               Grande   Bebidas Energeticas                    Burn
## 2235               Grande   Bebidas Energeticas              Glac\x8eau
## 2236               Grande   Bebidas Energeticas          Monster Energy
## 2237               Grande           Colas Light         Coca-Cola Light
## 2238               Grande           Colas Light         Coca-Cola Light
## 2239               Grande           Colas Light         Coca-Cola Light
## 2240               Grande           Colas Light         Coca-Cola Light
## 2241               Grande           Colas Light         Coca-Cola Light
## 2242               Grande           Colas Light         Coca-Cola Light
## 2243               Grande           Colas Light         Coca-Cola Light
## 2244               Grande           Colas Light         Coca-Cola Light
## 2245               Grande           Colas Light         Coca-Cola Light
## 2246               Grande           Colas Light         Coca-Cola Light
## 2247               Grande           Colas Light         Coca-Cola Light
## 2248               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2249               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2250               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2251               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2252               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2253               Grande         Colas Regular               Coca-Cola
## 2254               Grande         Colas Regular               Coca-Cola
## 2255               Grande         Colas Regular               Coca-Cola
## 2256               Grande         Colas Regular               Coca-Cola
## 2257               Grande         Colas Regular               Coca-Cola
## 2258               Grande         Colas Regular               Coca-Cola
## 2259               Grande         Colas Regular               Coca-Cola
## 2260               Grande         Colas Regular               Coca-Cola
## 2261               Grande         Colas Regular               Coca-Cola
## 2262               Grande         Colas Regular               Coca-Cola
## 2263               Grande         Colas Regular               Coca-Cola
## 2264               Grande         Colas Regular               Coca-Cola
## 2265               Grande         Colas Regular               Coca-Cola
## 2266               Grande         Colas Regular               Coca-Cola
## 2267               Grande         Colas Regular               Coca-Cola
## 2268               Grande         Colas Regular               Coca-Cola
## 2269               Grande Isot\x97nicos Regular                Powerade
## 2270               Grande Isot\x97nicos Regular                Powerade
## 2271               Grande   Jugos y N\x8ectares               Del Valle
## 2272               Grande   Jugos y N\x8ectares               Del Valle
## 2273               Grande   Jugos y N\x8ectares               Del Valle
## 2274               Grande   Jugos y N\x8ectares               Del Valle
## 2275               Grande   Jugos y N\x8ectares               Del Valle
## 2276               Grande   Jugos y N\x8ectares        Del Valle Blends
## 2277               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 2278               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2279               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2280               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2281               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2282               Grande     Leche UHT Regular      Santa Clara Entera
## 2283               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2284               Grande         Sabores Light        Del Valle y Nada
## 2285               Grande         Sabores Light        Del Valle y Nada
## 2286               Grande         Sabores Light             Sprite Zero
## 2287               Grande       Sabores Regular        Del Valle y Nada
## 2288               Grande       Sabores Regular        Del Valle y Nada
## 2289               Grande       Sabores Regular                   Fanta
## 2290               Grande       Sabores Regular                   Fanta
## 2291               Grande       Sabores Regular                   Fanta
## 2292               Grande       Sabores Regular                   Fanta
## 2293               Grande       Sabores Regular                   Fanta
## 2294               Grande       Sabores Regular                   Fanta
## 2295               Grande       Sabores Regular                   Fanta
## 2296               Grande       Sabores Regular                  Fresca
## 2297               Grande       Sabores Regular                  Fresca
## 2298               Grande       Sabores Regular                  Fresca
## 2299               Grande       Sabores Regular                  Fresca
## 2300               Grande       Sabores Regular                    Joya
## 2301               Grande       Sabores Regular                    Joya
## 2302               Grande       Sabores Regular            Manzana Lift
## 2303               Grande       Sabores Regular            Manzana Lift
## 2304               Grande       Sabores Regular            Manzana Lift
## 2305               Grande       Sabores Regular                  Senzao
## 2306               Grande       Sabores Regular           Sidral Mundet
## 2307               Grande       Sabores Regular           Sidral Mundet
## 2308               Grande       Sabores Regular           Sidral Mundet
## 2309               Grande       Sabores Regular           Sidral Mundet
## 2310               Grande       Sabores Regular           Sidral Mundet
## 2311               Grande       Sabores Regular                  Sprite
## 2312               Grande       Sabores Regular                  Sprite
## 2313               Grande       Sabores Regular                  Sprite
## 2314               Grande       Sabores Regular                  Sprite
## 2315               Grande       Sabores Regular                  Sprite
## 2316               Grande       Sabores Regular                  Sprite
## 2317               Grande       Sabores Regular                  Sprite
## 2318               Grande         T\x8e Regular                Fuze Tea
## 2319               Grande         T\x8e Regular                Fuze Tea
## 2320               Grande          Agua Mineral       Ciel Mineralizada
## 2321               Grande          Agua Mineral         Topo Chico A.M.
## 2322               Grande       Agua Purificada    Ciel Agua Purificada
## 2323               Grande       Agua Purificada    Ciel Agua Purificada
## 2324               Grande       Agua Purificada    Ciel Agua Purificada
## 2325               Grande       Agua Saborizada             Ciel Exprim
## 2326               Grande       Agua Saborizada             Ciel Exprim
## 2327               Grande      Bebidas de Fruta          Delaware Punch
## 2328               Grande      Bebidas de Fruta          Delaware Punch
## 2329               Grande      Bebidas de Fruta                  Frutsi
## 2330               Grande      Bebidas de Fruta                   Pulpy
## 2331               Grande      Bebidas de Fruta              Valle Frut
## 2332               Grande      Bebidas de Fruta              Valle Frut
## 2333               Grande      Bebidas de Fruta              Valle Frut
## 2334               Grande      Bebidas de Fruta              Valle Frut
## 2335               Grande       Bebidas de Soya             AdeS Frutal
## 2336               Grande       Bebidas de Soya             AdeS Frutal
## 2337               Grande   Bebidas Energeticas                    Burn
## 2338               Grande   Bebidas Energeticas                    Burn
## 2339               Grande   Bebidas Energeticas          Monster Energy
## 2340               Grande  Cafe Listo Para Bebe            Barista Bros
## 2341               Grande           Colas Light         Coca-Cola Light
## 2342               Grande           Colas Light         Coca-Cola Light
## 2343               Grande           Colas Light         Coca-Cola Light
## 2344               Grande           Colas Light         Coca-Cola Light
## 2345               Grande           Colas Light         Coca-Cola Light
## 2346               Grande           Colas Light         Coca-Cola Light
## 2347               Grande           Colas Light     Coca-Cola Light Sin
## 2348               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2349               Grande         Colas Regular               Coca-Cola
## 2350               Grande         Colas Regular               Coca-Cola
## 2351               Grande         Colas Regular               Coca-Cola
## 2352               Grande         Colas Regular               Coca-Cola
## 2353               Grande         Colas Regular               Coca-Cola
## 2354               Grande         Colas Regular               Coca-Cola
## 2355               Grande         Colas Regular               Coca-Cola
## 2356               Grande         Colas Regular               Coca-Cola
## 2357               Grande         Colas Regular               Coca-Cola
## 2358               Grande         Colas Regular               Coca-Cola
## 2359               Grande         Colas Regular               Coca-Cola
## 2360               Grande         Colas Regular               Coca-Cola
## 2361               Grande         Colas Regular               Coca-Cola
## 2362               Grande         Colas Regular               Coca-Cola
## 2363               Grande         Colas Regular               Coca-Cola
## 2364               Grande         Colas Regular               Coca-Cola
## 2365               Grande         Colas Regular               Coca-Cola
## 2366               Grande Isot\x97nicos Regular                Powerade
## 2367               Grande Isot\x97nicos Regular                Powerade
## 2368               Grande   Jugos y N\x8ectares               Del Valle
## 2369               Grande   Jugos y N\x8ectares               Del Valle
## 2370               Grande   Jugos y N\x8ectares               Del Valle
## 2371               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 2372               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2373               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2374               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2375               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2376               Grande     Leche UHT Regular      Santa Clara Entera
## 2377               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2378               Grande         Sabores Light        Del Valle y Nada
## 2379               Grande         Sabores Light             Sprite Zero
## 2380               Grande       Sabores Regular        Del Valle y Nada
## 2381               Grande       Sabores Regular                   Fanta
## 2382               Grande       Sabores Regular                   Fanta
## 2383               Grande       Sabores Regular                   Fanta
## 2384               Grande       Sabores Regular                   Fanta
## 2385               Grande       Sabores Regular                   Fanta
## 2386               Grande       Sabores Regular                  Fresca
## 2387               Grande       Sabores Regular                  Fresca
## 2388               Grande       Sabores Regular                  Fresca
## 2389               Grande       Sabores Regular                  Fresca
## 2390               Grande       Sabores Regular                  Fresca
## 2391               Grande       Sabores Regular                    Joya
## 2392               Grande       Sabores Regular                    Joya
## 2393               Grande       Sabores Regular            Manzana Lift
## 2394               Grande       Sabores Regular            Manzana Lift
## 2395               Grande       Sabores Regular            Manzana Lift
## 2396               Grande       Sabores Regular            Manzana Lift
## 2397               Grande       Sabores Regular                  Senzao
## 2398               Grande       Sabores Regular           Sidral Mundet
## 2399               Grande       Sabores Regular           Sidral Mundet
## 2400               Grande       Sabores Regular           Sidral Mundet
## 2401               Grande       Sabores Regular                  Sprite
## 2402               Grande       Sabores Regular                  Sprite
## 2403               Grande       Sabores Regular                  Sprite
## 2404               Grande       Sabores Regular                  Sprite
## 2405               Grande       Sabores Regular                  Sprite
## 2406               Grande       Sabores Regular                  Sprite
## 2407               Grande       Sabores Regular                  Sprite
## 2408               Grande         T\x8e Regular                Fuze Tea
## 2409               Grande         T\x8e Regular                Fuze Tea
## 2410               Grande         T\x8e Regular                Fuze Tea
## 2411               Grande          Agua Mineral         Topo Chico A.M.
## 2412               Grande       Agua Purificada    Ciel Agua Purificada
## 2413               Grande       Agua Purificada    Ciel Agua Purificada
## 2414               Grande       Agua Purificada    Ciel Agua Purificada
## 2415               Grande       Agua Saborizada             Ciel Exprim
## 2416               Grande       Agua Saborizada             Ciel Exprim
## 2417               Grande      Bebidas de Fruta                   Pulpy
## 2418               Grande      Bebidas de Fruta              Valle Frut
## 2419               Grande      Bebidas de Fruta              Valle Frut
## 2420               Grande       Bebidas de Soya             AdeS Frutal
## 2421               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2422               Grande   Bebidas Energeticas          Monster Energy
## 2423               Grande  Cafe Listo Para Bebe            Barista Bros
## 2424               Grande           Colas Light         Coca-Cola Light
## 2425               Grande           Colas Light         Coca-Cola Light
## 2426               Grande           Colas Light         Coca-Cola Light
## 2427               Grande           Colas Light         Coca-Cola Light
## 2428               Grande           Colas Light         Coca-Cola Light
## 2429               Grande           Colas Light         Coca-Cola Light
## 2430               Grande           Colas Light         Coca-Cola Light
## 2431               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2432               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2433               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2434               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2435               Grande         Colas Regular               Coca-Cola
## 2436               Grande         Colas Regular               Coca-Cola
## 2437               Grande         Colas Regular               Coca-Cola
## 2438               Grande         Colas Regular               Coca-Cola
## 2439               Grande         Colas Regular               Coca-Cola
## 2440               Grande         Colas Regular               Coca-Cola
## 2441               Grande         Colas Regular               Coca-Cola
## 2442               Grande         Colas Regular               Coca-Cola
## 2443               Grande         Colas Regular               Coca-Cola
## 2444               Grande         Colas Regular               Coca-Cola
## 2445               Grande         Colas Regular               Coca-Cola
## 2446               Grande         Colas Regular               Coca-Cola
## 2447               Grande         Colas Regular               Coca-Cola
## 2448               Grande         Colas Regular               Coca-Cola
## 2449               Grande         Colas Regular               Coca-Cola
## 2450               Grande         Colas Regular               Coca-Cola
## 2451               Grande Isot\x97nicos Regular                Powerade
## 2452               Grande Isot\x97nicos Regular                Powerade
## 2453               Grande   Jugos y N\x8ectares               Del Valle
## 2454               Grande   Jugos y N\x8ectares               Del Valle
## 2455               Grande   Jugos y N\x8ectares               Del Valle
## 2456               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2457               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2458               Grande     Leche UHT Regular      Santa Clara Entera
## 2459               Grande     Leche UHT Regular       Santa Clara Light
## 2460               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2461               Grande         Sabores Light        Del Valle y Nada
## 2462               Grande         Sabores Light             Sprite Zero
## 2463               Grande       Sabores Regular        Del Valle y Nada
## 2464               Grande       Sabores Regular                   Fanta
## 2465               Grande       Sabores Regular                   Fanta
## 2466               Grande       Sabores Regular                  Fresca
## 2467               Grande       Sabores Regular           Sidral Mundet
## 2468               Grande       Sabores Regular           Sidral Mundet
## 2469               Grande       Sabores Regular           Sidral Mundet
## 2470               Grande       Sabores Regular                  Sprite
## 2471               Grande       Sabores Regular                  Sprite
## 2472               Grande       Sabores Regular                  Sprite
## 2473               Grande       Sabores Regular                  Sprite
## 2474               Grande         T\x8e Regular                Fuze Tea
## 2475               Grande          Agua Mineral         Topo Chico A.M.
## 2476               Grande       Agua Purificada    Ciel Agua Purificada
## 2477               Grande       Agua Purificada    Ciel Agua Purificada
## 2478               Grande      Bebidas de Fruta                  Frutsi
## 2479               Grande      Bebidas de Fruta              Valle Frut
## 2480               Grande      Bebidas de Fruta              Valle Frut
## 2481               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2482               Grande   Bebidas Energeticas          Monster Energy
## 2483               Grande           Colas Light         Coca-Cola Light
## 2484               Grande           Colas Light         Coca-Cola Light
## 2485               Grande           Colas Light         Coca-Cola Light
## 2486               Grande           Colas Light         Coca-Cola Light
## 2487               Grande           Colas Light         Coca-Cola Light
## 2488               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2489               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2490               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2491               Grande         Colas Regular               Coca-Cola
## 2492               Grande         Colas Regular               Coca-Cola
## 2493               Grande         Colas Regular               Coca-Cola
## 2494               Grande         Colas Regular               Coca-Cola
## 2495               Grande         Colas Regular               Coca-Cola
## 2496               Grande         Colas Regular               Coca-Cola
## 2497               Grande         Colas Regular               Coca-Cola
## 2498               Grande         Colas Regular               Coca-Cola
## 2499               Grande         Colas Regular               Coca-Cola
## 2500               Grande         Colas Regular               Coca-Cola
## 2501               Grande         Colas Regular               Coca-Cola
## 2502               Grande         Colas Regular               Coca-Cola
## 2503               Grande         Colas Regular               Coca-Cola
## 2504               Grande         Colas Regular               Coca-Cola
## 2505               Grande         Colas Regular               Coca-Cola
## 2506               Grande Isot\x97nicos Regular                Powerade
## 2507               Grande Isot\x97nicos Regular                Powerade
## 2508               Grande   Jugos y N\x8ectares               Del Valle
## 2509               Grande   Jugos y N\x8ectares               Del Valle
## 2510               Grande   Jugos y N\x8ectares               Del Valle
## 2511               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 2512               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2513               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2514               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2515               Grande         Sabores Light        Del Valle y Nada
## 2516               Grande         Sabores Light        Del Valle y Nada
## 2517               Grande       Sabores Regular        Del Valle y Nada
## 2518               Grande       Sabores Regular        Del Valle y Nada
## 2519               Grande       Sabores Regular        Del Valle y Nada
## 2520               Grande       Sabores Regular                   Fanta
## 2521               Grande       Sabores Regular                   Fanta
## 2522               Grande       Sabores Regular                   Fanta
## 2523               Grande       Sabores Regular                   Fanta
## 2524               Grande       Sabores Regular                   Fanta
## 2525               Grande       Sabores Regular                  Fresca
## 2526               Grande       Sabores Regular                  Fresca
## 2527               Grande       Sabores Regular                  Fresca
## 2528               Grande       Sabores Regular            Manzana Lift
## 2529               Grande       Sabores Regular            Manzana Lift
## 2530               Grande       Sabores Regular           Sidral Mundet
## 2531               Grande       Sabores Regular           Sidral Mundet
## 2532               Grande       Sabores Regular           Sidral Mundet
## 2533               Grande       Sabores Regular           Sidral Mundet
## 2534               Grande       Sabores Regular                  Sprite
## 2535               Grande       Sabores Regular                  Sprite
## 2536               Grande       Sabores Regular                  Sprite
## 2537               Grande       Sabores Regular                  Sprite
## 2538               Grande       Sabores Regular                  Sprite
## 2539               Grande         T\x8e Regular                Fuze Tea
## 2540               Grande         T\x8e Regular                Fuze Tea
## 2541               Grande          Agua Mineral       Ciel Mineralizada
## 2542               Grande          Agua Mineral         Topo Chico A.M.
## 2543               Grande       Agua Purificada    Ciel Agua Purificada
## 2544               Grande       Agua Purificada    Ciel Agua Purificada
## 2545               Grande       Agua Saborizada             Ciel Exprim
## 2546               Grande       Agua Saborizada             Ciel Exprim
## 2547               Grande      Bebidas de Fruta          Delaware Punch
## 2548               Grande      Bebidas de Fruta                   Pulpy
## 2549               Grande      Bebidas de Fruta              Valle Frut
## 2550               Grande      Bebidas de Fruta              Valle Frut
## 2551               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2552               Grande   Bebidas Energeticas          Monster Energy
## 2553               Grande  Cafe Listo Para Bebe            Barista Bros
## 2554               Grande           Colas Light         Coca-Cola Light
## 2555               Grande           Colas Light         Coca-Cola Light
## 2556               Grande           Colas Light         Coca-Cola Light
## 2557               Grande           Colas Light         Coca-Cola Light
## 2558               Grande           Colas Light         Coca-Cola Light
## 2559               Grande           Colas Light         Coca-Cola Light
## 2560               Grande           Colas Light         Coca-Cola Light
## 2561               Grande           Colas Light         Coca-Cola Light
## 2562               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2563               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2564               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2565               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2566               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2567               Grande         Colas Regular               Coca-Cola
## 2568               Grande         Colas Regular               Coca-Cola
## 2569               Grande         Colas Regular               Coca-Cola
## 2570               Grande         Colas Regular               Coca-Cola
## 2571               Grande         Colas Regular               Coca-Cola
## 2572               Grande         Colas Regular               Coca-Cola
## 2573               Grande         Colas Regular               Coca-Cola
## 2574               Grande         Colas Regular               Coca-Cola
## 2575               Grande         Colas Regular               Coca-Cola
## 2576               Grande         Colas Regular               Coca-Cola
## 2577               Grande         Colas Regular               Coca-Cola
## 2578               Grande         Colas Regular               Coca-Cola
## 2579               Grande         Colas Regular               Coca-Cola
## 2580               Grande         Colas Regular               Coca-Cola
## 2581               Grande         Colas Regular               Coca-Cola
## 2582               Grande         Colas Regular               Coca-Cola
## 2583               Grande Isot\x97nicos Regular                Powerade
## 2584               Grande Isot\x97nicos Regular                Powerade
## 2585               Grande   Jugos y N\x8ectares               Del Valle
## 2586               Grande   Jugos y N\x8ectares               Del Valle
## 2587               Grande   Jugos y N\x8ectares               Del Valle
## 2588               Grande   Jugos y N\x8ectares               Del Valle
## 2589               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 2590               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2591               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2592               Grande     Leche UHT Regular      Santa Clara Entera
## 2593               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2594               Grande         Sabores Light        Del Valle y Nada
## 2595               Grande         Sabores Light             Sprite Zero
## 2596               Grande       Sabores Regular                   Fanta
## 2597               Grande       Sabores Regular                   Fanta
## 2598               Grande       Sabores Regular                   Fanta
## 2599               Grande       Sabores Regular                   Fanta
## 2600               Grande       Sabores Regular                   Fanta
## 2601               Grande       Sabores Regular                  Fresca
## 2602               Grande       Sabores Regular                  Fresca
## 2603               Grande       Sabores Regular                  Fresca
## 2604               Grande       Sabores Regular            Manzana Lift
## 2605               Grande       Sabores Regular            Manzana Lift
## 2606               Grande       Sabores Regular            Manzana Lift
## 2607               Grande       Sabores Regular                  Senzao
## 2608               Grande       Sabores Regular           Sidral Mundet
## 2609               Grande       Sabores Regular           Sidral Mundet
## 2610               Grande       Sabores Regular                  Sprite
## 2611               Grande       Sabores Regular                  Sprite
## 2612               Grande       Sabores Regular                  Sprite
## 2613               Grande       Sabores Regular                  Sprite
## 2614               Grande       Sabores Regular                  Sprite
## 2615               Grande       Sabores Regular                  Sprite
## 2616               Grande         T\x8e Regular                Fuze Tea
## 2617               Grande          Agua Mineral       Ciel Mineralizada
## 2618               Grande          Agua Mineral         Topo Chico A.M.
## 2619               Grande       Agua Purificada    Ciel Agua Purificada
## 2620               Grande       Agua Purificada    Ciel Agua Purificada
## 2621               Grande       Agua Purificada    Ciel Agua Purificada
## 2622               Grande       Agua Saborizada             Ciel Exprim
## 2623               Grande       Agua Saborizada             Ciel Exprim
## 2624               Grande      Bebidas de Fruta          Delaware Punch
## 2625               Grande      Bebidas de Fruta                  Frutsi
## 2626               Grande      Bebidas de Fruta                   Pulpy
## 2627               Grande      Bebidas de Fruta              Valle Frut
## 2628               Grande      Bebidas de Fruta              Valle Frut
## 2629               Grande       Bebidas de Soya             AdeS Frutal
## 2630               Grande       Bebidas de Soya             AdeS Frutal
## 2631               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2632               Grande   Bebidas Energeticas                    Burn
## 2633               Grande   Bebidas Energeticas          Monster Energy
## 2634               Grande           Colas Light         Coca-Cola Light
## 2635               Grande           Colas Light         Coca-Cola Light
## 2636               Grande           Colas Light         Coca-Cola Light
## 2637               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2638               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2639               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2640               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2641               Grande         Colas Regular               Coca-Cola
## 2642               Grande         Colas Regular               Coca-Cola
## 2643               Grande         Colas Regular               Coca-Cola
## 2644               Grande         Colas Regular               Coca-Cola
## 2645               Grande         Colas Regular               Coca-Cola
## 2646               Grande         Colas Regular               Coca-Cola
## 2647               Grande         Colas Regular               Coca-Cola
## 2648               Grande         Colas Regular               Coca-Cola
## 2649               Grande         Colas Regular               Coca-Cola
## 2650               Grande         Colas Regular               Coca-Cola
## 2651               Grande         Colas Regular               Coca-Cola
## 2652               Grande         Colas Regular               Coca-Cola
## 2653               Grande         Colas Regular               Coca-Cola
## 2654               Grande         Colas Regular               Coca-Cola
## 2655               Grande         Colas Regular               Coca-Cola
## 2656               Grande         Colas Regular               Coca-Cola
## 2657               Grande         Colas Regular               Coca-Cola
## 2658               Grande         Colas Regular               Coca-Cola
## 2659               Grande Isot\x97nicos Regular                Powerade
## 2660               Grande Isot\x97nicos Regular                Powerade
## 2661               Grande Isot\x97nicos Regular                Powerade
## 2662               Grande   Jugos y N\x8ectares               Del Valle
## 2663               Grande   Jugos y N\x8ectares               Del Valle
## 2664               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 2665               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2666               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2667               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2668               Grande     Leche UHT Regular      Santa Clara Entera
## 2669               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2670               Grande         Sabores Light        Del Valle y Nada
## 2671               Grande         Sabores Light             Sprite Zero
## 2672               Grande       Sabores Regular        Del Valle y Nada
## 2673               Grande       Sabores Regular                   Fanta
## 2674               Grande       Sabores Regular                   Fanta
## 2675               Grande       Sabores Regular                   Fanta
## 2676               Grande       Sabores Regular                   Fanta
## 2677               Grande       Sabores Regular                   Fanta
## 2678               Grande       Sabores Regular                  Fresca
## 2679               Grande       Sabores Regular                  Fresca
## 2680               Grande       Sabores Regular                  Fresca
## 2681               Grande       Sabores Regular                    Joya
## 2682               Grande       Sabores Regular            Manzana Lift
## 2683               Grande       Sabores Regular            Manzana Lift
## 2684               Grande       Sabores Regular                  Senzao
## 2685               Grande       Sabores Regular           Sidral Mundet
## 2686               Grande       Sabores Regular           Sidral Mundet
## 2687               Grande       Sabores Regular                  Sprite
## 2688               Grande       Sabores Regular                  Sprite
## 2689               Grande       Sabores Regular                  Sprite
## 2690               Grande       Sabores Regular                  Sprite
## 2691               Grande       Sabores Regular                  Sprite
## 2692               Grande       Sabores Regular                  Sprite
## 2693               Grande         T\x8e Regular                Fuze Tea
## 2694               Grande          Agua Mineral       Ciel Mineralizada
## 2695               Grande          Agua Mineral         Topo Chico A.M.
## 2696               Grande       Agua Purificada    Ciel Agua Purificada
## 2697               Grande       Agua Purificada    Ciel Agua Purificada
## 2698               Grande      Bebidas de Fruta          Delaware Punch
## 2699               Grande       Bebidas de Soya             AdeS Frutal
## 2700               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2701               Grande           Colas Light         Coca-Cola Light
## 2702               Grande           Colas Light         Coca-Cola Light
## 2703               Grande           Colas Light         Coca-Cola Light
## 2704               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2705               Grande         Colas Regular               Coca-Cola
## 2706               Grande         Colas Regular               Coca-Cola
## 2707               Grande         Colas Regular               Coca-Cola
## 2708               Grande         Colas Regular               Coca-Cola
## 2709               Grande         Colas Regular               Coca-Cola
## 2710               Grande         Colas Regular               Coca-Cola
## 2711               Grande         Colas Regular               Coca-Cola
## 2712               Grande         Colas Regular               Coca-Cola
## 2713               Grande         Colas Regular               Coca-Cola
## 2714               Grande         Colas Regular               Coca-Cola
## 2715               Grande Isot\x97nicos Regular                Powerade
## 2716               Grande   Jugos y N\x8ectares               Del Valle
## 2717               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2718               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2719               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2720               Grande     Leche UHT Regular      Santa Clara Entera
## 2721               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2722               Grande         Sabores Light        Del Valle y Nada
## 2723               Grande         Sabores Light             Sprite Zero
## 2724               Grande       Sabores Regular                   Fanta
## 2725               Grande       Sabores Regular                   Fanta
## 2726               Grande       Sabores Regular                  Fresca
## 2727               Grande       Sabores Regular                  Sprite
## 2728               Grande       Sabores Regular                  Sprite
## 2729               Grande         T\x8e Regular                Fuze Tea
## 2730               Grande          Agua Mineral         Topo Chico A.M.
## 2731               Grande       Agua Purificada    Ciel Agua Purificada
## 2732               Grande       Agua Purificada    Ciel Agua Purificada
## 2733               Grande       Agua Purificada    Ciel Agua Purificada
## 2734               Grande       Agua Purificada    Ciel Agua Purificada
## 2735               Grande       Agua Saborizada             Ciel Exprim
## 2736               Grande       Agua Saborizada             Ciel Exprim
## 2737               Grande      Bebidas de Fruta              Valle Frut
## 2738               Grande      Bebidas de Fruta              Valle Frut
## 2739               Grande       Bebidas de Soya             AdeS Frutal
## 2740               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2741               Grande   Bebidas Energeticas          Monster Energy
## 2742               Grande           Colas Light         Coca-Cola Light
## 2743               Grande           Colas Light         Coca-Cola Light
## 2744               Grande           Colas Light         Coca-Cola Light
## 2745               Grande           Colas Light         Coca-Cola Light
## 2746               Grande           Colas Light         Coca-Cola Light
## 2747               Grande           Colas Light         Coca-Cola Light
## 2748               Grande           Colas Light         Coca-Cola Light
## 2749               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2750               Grande         Colas Regular               Coca-Cola
## 2751               Grande         Colas Regular               Coca-Cola
## 2752               Grande         Colas Regular               Coca-Cola
## 2753               Grande         Colas Regular               Coca-Cola
## 2754               Grande         Colas Regular               Coca-Cola
## 2755               Grande         Colas Regular               Coca-Cola
## 2756               Grande         Colas Regular               Coca-Cola
## 2757               Grande         Colas Regular               Coca-Cola
## 2758               Grande         Colas Regular               Coca-Cola
## 2759               Grande         Colas Regular               Coca-Cola
## 2760               Grande         Colas Regular               Coca-Cola
## 2761               Grande         Colas Regular               Coca-Cola
## 2762               Grande         Colas Regular               Coca-Cola
## 2763               Grande Isot\x97nicos Regular                Powerade
## 2764               Grande Isot\x97nicos Regular                Powerade
## 2765               Grande   Jugos y N\x8ectares               Del Valle
## 2766               Grande   Jugos y N\x8ectares               Del Valle
## 2767               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2768               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2769               Grande     Leche UHT Regular      Santa Clara Entera
## 2770               Grande     Leche UHT Regular       Santa Clara Light
## 2771               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2772               Grande         Sabores Light        Del Valle y Nada
## 2773               Grande         Sabores Light             Sprite Zero
## 2774               Grande         Sabores Light             Sprite Zero
## 2775               Grande       Sabores Regular                   Fanta
## 2776               Grande       Sabores Regular                   Fanta
## 2777               Grande       Sabores Regular                   Fanta
## 2778               Grande       Sabores Regular                   Fanta
## 2779               Grande       Sabores Regular                   Fanta
## 2780               Grande       Sabores Regular                  Fresca
## 2781               Grande       Sabores Regular                  Fresca
## 2782               Grande       Sabores Regular                  Fresca
## 2783               Grande       Sabores Regular                  Fresca
## 2784               Grande       Sabores Regular                    Joya
## 2785               Grande       Sabores Regular            Manzana Lift
## 2786               Grande       Sabores Regular            Manzana Lift
## 2787               Grande       Sabores Regular            Manzana Lift
## 2788               Grande       Sabores Regular                  Senzao
## 2789               Grande       Sabores Regular           Sidral Mundet
## 2790               Grande       Sabores Regular           Sidral Mundet
## 2791               Grande       Sabores Regular           Sidral Mundet
## 2792               Grande       Sabores Regular           Sidral Mundet
## 2793               Grande       Sabores Regular                  Sprite
## 2794               Grande       Sabores Regular                  Sprite
## 2795               Grande       Sabores Regular                  Sprite
## 2796               Grande       Sabores Regular                  Sprite
## 2797               Grande       Sabores Regular                  Sprite
## 2798               Grande         T\x8e Regular                Fuze Tea
## 2799               Grande         T\x8e Regular                Fuze Tea
## 2800               Grande          Agua Mineral       Ciel Mineralizada
## 2801               Grande          Agua Mineral         Topo Chico A.M.
## 2802               Grande       Agua Purificada    Ciel Agua Purificada
## 2803               Grande       Agua Purificada    Ciel Agua Purificada
## 2804               Grande       Agua Purificada    Ciel Agua Purificada
## 2805               Grande       Agua Purificada    Ciel Agua Purificada
## 2806               Grande       Agua Saborizada             Ciel Exprim
## 2807               Grande       Agua Saborizada             Ciel Exprim
## 2808               Grande       Agua Saborizada             Ciel Exprim
## 2809               Grande      Bebidas de Fruta          Delaware Punch
## 2810               Grande      Bebidas de Fruta                  Frutsi
## 2811               Grande      Bebidas de Fruta                   Pulpy
## 2812               Grande      Bebidas de Fruta              Valle Frut
## 2813               Grande      Bebidas de Fruta              Valle Frut
## 2814               Grande      Bebidas de Fruta              Valle Frut
## 2815               Grande       Bebidas de Soya             AdeS Frutal
## 2816               Grande       Bebidas de Soya             AdeS Frutal
## 2817               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2818               Grande   Bebidas Energeticas                    Burn
## 2819               Grande   Bebidas Energeticas                    Burn
## 2820               Grande   Bebidas Energeticas              Glac\x8eau
## 2821               Grande   Bebidas Energeticas          Monster Energy
## 2822               Grande  Cafe Listo Para Bebe            Barista Bros
## 2823               Grande           Colas Light         Coca-Cola Light
## 2824               Grande           Colas Light         Coca-Cola Light
## 2825               Grande           Colas Light         Coca-Cola Light
## 2826               Grande           Colas Light         Coca-Cola Light
## 2827               Grande           Colas Light         Coca-Cola Light
## 2828               Grande           Colas Light         Coca-Cola Light
## 2829               Grande           Colas Light         Coca-Cola Light
## 2830               Grande           Colas Light         Coca-Cola Light
## 2831               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2832               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2833               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2834               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2835               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2836               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2837               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2838               Grande         Colas Regular               Coca-Cola
## 2839               Grande         Colas Regular               Coca-Cola
## 2840               Grande         Colas Regular               Coca-Cola
## 2841               Grande         Colas Regular               Coca-Cola
## 2842               Grande         Colas Regular               Coca-Cola
## 2843               Grande         Colas Regular               Coca-Cola
## 2844               Grande         Colas Regular               Coca-Cola
## 2845               Grande         Colas Regular               Coca-Cola
## 2846               Grande         Colas Regular               Coca-Cola
## 2847               Grande         Colas Regular               Coca-Cola
## 2848               Grande         Colas Regular               Coca-Cola
## 2849               Grande         Colas Regular               Coca-Cola
## 2850               Grande         Colas Regular               Coca-Cola
## 2851               Grande         Colas Regular               Coca-Cola
## 2852               Grande         Colas Regular               Coca-Cola
## 2853               Grande         Colas Regular               Coca-Cola
## 2854               Grande         Colas Regular               Coca-Cola
## 2855               Grande         Colas Regular               Coca-Cola
## 2856               Grande Isot\x97nicos Regular                Powerade
## 2857               Grande Isot\x97nicos Regular                Powerade
## 2858               Grande   Jugos y N\x8ectares               Del Valle
## 2859               Grande   Jugos y N\x8ectares               Del Valle
## 2860               Grande   Jugos y N\x8ectares               Del Valle
## 2861               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 2862               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2863               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2864               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2865               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 2866               Grande     Leche UHT Regular      Santa Clara Entera
## 2867               Grande     Leche UHT Regular       Santa Clara Light
## 2868               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2869               Grande         Sabores Light        Del Valle y Nada
## 2870               Grande         Sabores Light        Del Valle y Nada
## 2871               Grande         Sabores Light             Sprite Zero
## 2872               Grande       Sabores Regular        Del Valle y Nada
## 2873               Grande       Sabores Regular        Del Valle y Nada
## 2874               Grande       Sabores Regular                   Fanta
## 2875               Grande       Sabores Regular                   Fanta
## 2876               Grande       Sabores Regular                   Fanta
## 2877               Grande       Sabores Regular                   Fanta
## 2878               Grande       Sabores Regular                   Fanta
## 2879               Grande       Sabores Regular                  Fresca
## 2880               Grande       Sabores Regular                  Fresca
## 2881               Grande       Sabores Regular                  Fresca
## 2882               Grande       Sabores Regular                  Fresca
## 2883               Grande       Sabores Regular                    Joya
## 2884               Grande       Sabores Regular            Manzana Lift
## 2885               Grande       Sabores Regular            Manzana Lift
## 2886               Grande       Sabores Regular            Manzana Lift
## 2887               Grande       Sabores Regular                  Senzao
## 2888               Grande       Sabores Regular           Sidral Mundet
## 2889               Grande       Sabores Regular           Sidral Mundet
## 2890               Grande       Sabores Regular           Sidral Mundet
## 2891               Grande       Sabores Regular           Sidral Mundet
## 2892               Grande       Sabores Regular                  Sprite
## 2893               Grande       Sabores Regular                  Sprite
## 2894               Grande       Sabores Regular                  Sprite
## 2895               Grande       Sabores Regular                  Sprite
## 2896               Grande       Sabores Regular                  Sprite
## 2897               Grande       Sabores Regular                  Sprite
## 2898               Grande       Sabores Regular                  Sprite
## 2899               Grande         T\x8e Regular                Fuze Tea
## 2900               Grande         T\x8e Regular                Fuze Tea
## 2901               Grande          Agua Mineral         Topo Chico A.M.
## 2902               Grande       Agua Purificada    Ciel Agua Purificada
## 2903               Grande       Agua Purificada    Ciel Agua Purificada
## 2904               Grande       Agua Saborizada             Ciel Exprim
## 2905               Grande      Bebidas de Fruta          Delaware Punch
## 2906               Grande      Bebidas de Fruta                  Frutsi
## 2907               Grande      Bebidas de Fruta              Valle Frut
## 2908               Grande       Bebidas de Soya             AdeS Frutal
## 2909               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2910               Grande   Bebidas Energeticas          Monster Energy
## 2911               Grande           Colas Light         Coca-Cola Light
## 2912               Grande           Colas Light         Coca-Cola Light
## 2913               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2914               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2915               Grande         Colas Regular               Coca-Cola
## 2916               Grande         Colas Regular               Coca-Cola
## 2917               Grande         Colas Regular               Coca-Cola
## 2918               Grande         Colas Regular               Coca-Cola
## 2919               Grande         Colas Regular               Coca-Cola
## 2920               Grande         Colas Regular               Coca-Cola
## 2921               Grande         Colas Regular               Coca-Cola
## 2922               Grande         Colas Regular               Coca-Cola
## 2923               Grande         Colas Regular               Coca-Cola
## 2924               Grande Isot\x97nicos Regular                Powerade
## 2925               Grande   Jugos y N\x8ectares               Del Valle
## 2926               Grande   Jugos y N\x8ectares               Del Valle
## 2927               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 2928               Grande     Leche UHT Regular      Santa Clara Entera
## 2929               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2930               Grande         Sabores Light        Del Valle y Nada
## 2931               Grande         T\x8e Regular                Fuze Tea
## 2932               Grande          Agua Mineral         Topo Chico A.M.
## 2933               Grande       Agua Purificada    Ciel Agua Purificada
## 2934               Grande       Agua Purificada    Ciel Agua Purificada
## 2935               Grande       Agua Purificada    Ciel Agua Purificada
## 2936               Grande      Bebidas de Fruta                  Frutsi
## 2937               Grande      Bebidas de Fruta              Valle Frut
## 2938               Grande       Bebidas de Soya          AdeS L\x87cteo
## 2939               Grande           Colas Light         Coca-Cola Light
## 2940               Grande           Colas Light         Coca-Cola Light
## 2941               Grande           Colas Light         Coca-Cola Light
## 2942               Grande           Colas Light         Coca-Cola Light
## 2943               Grande           Colas Light         Coca-Cola Light
## 2944               Grande           Colas Light         Coca-Cola Light
## 2945               Grande           Colas Light         Coca-Cola Light
## 2946               Grande           Colas Light         Coca-Cola Light
## 2947               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2948               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2949               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2950               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 2951               Grande         Colas Regular               Coca-Cola
## 2952               Grande         Colas Regular               Coca-Cola
## 2953               Grande         Colas Regular               Coca-Cola
## 2954               Grande         Colas Regular               Coca-Cola
## 2955               Grande         Colas Regular               Coca-Cola
## 2956               Grande         Colas Regular               Coca-Cola
## 2957               Grande         Colas Regular               Coca-Cola
## 2958               Grande         Colas Regular               Coca-Cola
## 2959               Grande         Colas Regular               Coca-Cola
## 2960               Grande         Colas Regular               Coca-Cola
## 2961               Grande         Colas Regular               Coca-Cola
## 2962               Grande         Colas Regular               Coca-Cola
## 2963               Grande         Colas Regular               Coca-Cola
## 2964               Grande         Colas Regular               Coca-Cola
## 2965               Grande         Colas Regular               Coca-Cola
## 2966               Grande         Colas Regular               Coca-Cola
## 2967               Grande Isot\x97nicos Regular                Powerade
## 2968               Grande Isot\x97nicos Regular                Powerade
## 2969               Grande   Jugos y N\x8ectares               Del Valle
## 2970               Grande   Jugos y N\x8ectares               Del Valle
## 2971               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 2972               Grande         Sabores Light        Del Valle y Nada
## 2973               Grande       Sabores Regular                  Fresca
## 2974               Grande       Sabores Regular                    Joya
## 2975               Grande         T\x8e Regular                Fuze Tea
## 2976               Grande          Agua Mineral       Ciel Mineralizada
## 2977               Grande          Agua Mineral         Topo Chico A.M.
## 2978               Grande          Agua Mineral         Topo Chico A.M.
## 2979               Grande       Agua Purificada    Ciel Agua Purificada
## 2980               Grande       Agua Purificada    Ciel Agua Purificada
## 2981               Grande       Agua Purificada    Ciel Agua Purificada
## 2982               Grande       Agua Saborizada             Ciel Exprim
## 2983               Grande       Agua Saborizada             Ciel Exprim
## 2984               Grande      Bebidas de Fruta          Delaware Punch
## 2985               Grande      Bebidas de Fruta          Delaware Punch
## 2986               Grande      Bebidas de Fruta                  Frutsi
## 2987               Grande      Bebidas de Fruta                   Pulpy
## 2988               Grande      Bebidas de Fruta              Valle Frut
## 2989               Grande      Bebidas de Fruta              Valle Frut
## 2990               Grande      Bebidas de Fruta              Valle Frut
## 2991               Grande      Bebidas de Fruta              Valle Frut
## 2992               Grande       Bebidas de Soya             AdeS Frutal
## 2993               Grande       Bebidas de Soya             AdeS Frutal
## 2994               Grande   Bebidas Energeticas          Monster Energy
## 2995               Grande  Cafe Listo Para Bebe            Barista Bros
## 2996               Grande           Colas Light         Coca-Cola Light
## 2997               Grande           Colas Light         Coca-Cola Light
## 2998               Grande           Colas Light         Coca-Cola Light
## 2999               Grande           Colas Light         Coca-Cola Light
## 3000               Grande           Colas Light         Coca-Cola Light
## 3001               Grande           Colas Light         Coca-Cola Light
## 3002               Grande           Colas Light         Coca-Cola Light
## 3003               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3004               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3005               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3006               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3007               Grande         Colas Regular               Coca-Cola
## 3008               Grande         Colas Regular               Coca-Cola
## 3009               Grande         Colas Regular               Coca-Cola
## 3010               Grande         Colas Regular               Coca-Cola
## 3011               Grande         Colas Regular               Coca-Cola
## 3012               Grande         Colas Regular               Coca-Cola
## 3013               Grande         Colas Regular               Coca-Cola
## 3014               Grande         Colas Regular               Coca-Cola
## 3015               Grande         Colas Regular               Coca-Cola
## 3016               Grande         Colas Regular               Coca-Cola
## 3017               Grande         Colas Regular               Coca-Cola
## 3018               Grande         Colas Regular               Coca-Cola
## 3019               Grande         Colas Regular               Coca-Cola
## 3020               Grande         Colas Regular               Coca-Cola
## 3021               Grande         Colas Regular               Coca-Cola
## 3022               Grande         Colas Regular               Coca-Cola
## 3023               Grande Isot\x97nicos Regular                Powerade
## 3024               Grande Isot\x97nicos Regular                Powerade
## 3025               Grande   Jugos y N\x8ectares               Del Valle
## 3026               Grande   Jugos y N\x8ectares               Del Valle
## 3027               Grande   Jugos y N\x8ectares               Del Valle
## 3028               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 3029               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3030               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3031               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3032               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3033               Grande     Leche UHT Regular      Santa Clara Entera
## 3034               Grande     Leche UHT Regular       Santa Clara Light
## 3035               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3036               Grande         Sabores Light        Del Valle y Nada
## 3037               Grande         Sabores Light        Del Valle y Nada
## 3038               Grande         Sabores Light             Sprite Zero
## 3039               Grande       Sabores Regular        Del Valle y Nada
## 3040               Grande       Sabores Regular        Del Valle y Nada
## 3041               Grande       Sabores Regular                   Fanta
## 3042               Grande       Sabores Regular                   Fanta
## 3043               Grande       Sabores Regular                   Fanta
## 3044               Grande       Sabores Regular                   Fanta
## 3045               Grande       Sabores Regular                   Fanta
## 3046               Grande       Sabores Regular                   Fanta
## 3047               Grande       Sabores Regular                  Fresca
## 3048               Grande       Sabores Regular                  Fresca
## 3049               Grande       Sabores Regular                  Fresca
## 3050               Grande       Sabores Regular                  Fresca
## 3051               Grande       Sabores Regular                  Fresca
## 3052               Grande       Sabores Regular                    Joya
## 3053               Grande       Sabores Regular                    Joya
## 3054               Grande       Sabores Regular            Manzana Lift
## 3055               Grande       Sabores Regular            Manzana Lift
## 3056               Grande       Sabores Regular            Manzana Lift
## 3057               Grande       Sabores Regular            Manzana Lift
## 3058               Grande       Sabores Regular                  Senzao
## 3059               Grande       Sabores Regular           Sidral Mundet
## 3060               Grande       Sabores Regular           Sidral Mundet
## 3061               Grande       Sabores Regular           Sidral Mundet
## 3062               Grande       Sabores Regular           Sidral Mundet
## 3063               Grande       Sabores Regular           Sidral Mundet
## 3064               Grande       Sabores Regular                  Sprite
## 3065               Grande       Sabores Regular                  Sprite
## 3066               Grande       Sabores Regular                  Sprite
## 3067               Grande       Sabores Regular                  Sprite
## 3068               Grande       Sabores Regular                  Sprite
## 3069               Grande       Sabores Regular                  Sprite
## 3070               Grande       Sabores Regular                  Sprite
## 3071               Grande         T\x8e Regular                Fuze Tea
## 3072               Grande         T\x8e Regular                Fuze Tea
## 3073               Grande         T\x8e Regular                Fuze Tea
## 3074               Grande          Agua Mineral         Topo Chico A.M.
## 3075               Grande       Agua Purificada    Ciel Agua Purificada
## 3076               Grande       Agua Purificada    Ciel Agua Purificada
## 3077               Grande       Agua Purificada    Ciel Agua Purificada
## 3078               Grande       Agua Saborizada             Ciel Exprim
## 3079               Grande       Agua Saborizada             Ciel Exprim
## 3080               Grande      Bebidas de Fruta          Delaware Punch
## 3081               Grande      Bebidas de Fruta                  Frutsi
## 3082               Grande      Bebidas de Fruta              Valle Frut
## 3083               Grande      Bebidas de Fruta              Valle Frut
## 3084               Grande       Bebidas de Soya             AdeS Frutal
## 3085               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3086               Grande           Colas Light         Coca-Cola Light
## 3087               Grande           Colas Light         Coca-Cola Light
## 3088               Grande           Colas Light         Coca-Cola Light
## 3089               Grande           Colas Light         Coca-Cola Light
## 3090               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3091               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3092               Grande         Colas Regular               Coca-Cola
## 3093               Grande         Colas Regular               Coca-Cola
## 3094               Grande         Colas Regular               Coca-Cola
## 3095               Grande         Colas Regular               Coca-Cola
## 3096               Grande         Colas Regular               Coca-Cola
## 3097               Grande         Colas Regular               Coca-Cola
## 3098               Grande         Colas Regular               Coca-Cola
## 3099               Grande         Colas Regular               Coca-Cola
## 3100               Grande         Colas Regular               Coca-Cola
## 3101               Grande         Colas Regular               Coca-Cola
## 3102               Grande Isot\x97nicos Regular                Powerade
## 3103               Grande Isot\x97nicos Regular                Powerade
## 3104               Grande Isot\x97nicos Regular                Powerade
## 3105               Grande   Jugos y N\x8ectares               Del Valle
## 3106               Grande   Jugos y N\x8ectares               Del Valle
## 3107               Grande   Jugos y N\x8ectares               Del Valle
## 3108               Grande     Leche UHT Regular      Santa Clara Entera
## 3109               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3110               Grande         Sabores Light        Del Valle y Nada
## 3111               Grande         Sabores Light             Sprite Zero
## 3112               Grande       Sabores Regular                   Fanta
## 3113               Grande       Sabores Regular                   Fanta
## 3114               Grande       Sabores Regular                  Fresca
## 3115               Grande       Sabores Regular                  Fresca
## 3116               Grande       Sabores Regular                  Fresca
## 3117               Grande       Sabores Regular                    Joya
## 3118               Grande       Sabores Regular            Manzana Lift
## 3119               Grande       Sabores Regular            Manzana Lift
## 3120               Grande       Sabores Regular           Sidral Mundet
## 3121               Grande       Sabores Regular                  Sprite
## 3122               Grande       Sabores Regular                  Sprite
## 3123               Grande         T\x8e Regular                Fuze Tea
## 3124               Grande         T\x8e Regular                Fuze Tea
## 3125               Grande          Agua Mineral         Topo Chico A.M.
## 3126               Grande       Agua Purificada    Ciel Agua Purificada
## 3127               Grande       Agua Purificada    Ciel Agua Purificada
## 3128               Grande       Agua Purificada    Ciel Agua Purificada
## 3129               Grande      Bebidas de Fruta          Delaware Punch
## 3130               Grande      Bebidas de Fruta                  Frutsi
## 3131               Grande      Bebidas de Fruta                   Pulpy
## 3132               Grande      Bebidas de Fruta              Valle Frut
## 3133               Grande       Bebidas de Soya             AdeS Frutal
## 3134               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3135               Grande   Bebidas Energeticas              Glac\x8eau
## 3136               Grande   Bebidas Energeticas          Monster Energy
## 3137               Grande  Cafe Listo Para Bebe            Barista Bros
## 3138               Grande           Colas Light         Coca-Cola Light
## 3139               Grande           Colas Light         Coca-Cola Light
## 3140               Grande           Colas Light         Coca-Cola Light
## 3141               Grande           Colas Light         Coca-Cola Light
## 3142               Grande           Colas Light         Coca-Cola Light
## 3143               Grande           Colas Light         Coca-Cola Light
## 3144               Grande           Colas Light         Coca-Cola Light
## 3145               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3146               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3147               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3148               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3149               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3150               Grande         Colas Regular               Coca-Cola
## 3151               Grande         Colas Regular               Coca-Cola
## 3152               Grande         Colas Regular               Coca-Cola
## 3153               Grande         Colas Regular               Coca-Cola
## 3154               Grande         Colas Regular               Coca-Cola
## 3155               Grande         Colas Regular               Coca-Cola
## 3156               Grande         Colas Regular               Coca-Cola
## 3157               Grande         Colas Regular               Coca-Cola
## 3158               Grande         Colas Regular               Coca-Cola
## 3159               Grande         Colas Regular               Coca-Cola
## 3160               Grande         Colas Regular               Coca-Cola
## 3161               Grande         Colas Regular               Coca-Cola
## 3162               Grande         Colas Regular               Coca-Cola
## 3163               Grande         Colas Regular               Coca-Cola
## 3164               Grande         Colas Regular               Coca-Cola
## 3165               Grande Isot\x97nicos Regular                Powerade
## 3166               Grande Isot\x97nicos Regular                Powerade
## 3167               Grande   Jugos y N\x8ectares               Del Valle
## 3168               Grande   Jugos y N\x8ectares               Del Valle
## 3169               Grande   Jugos y N\x8ectares               Del Valle
## 3170               Grande   Jugos y N\x8ectares               Del Valle
## 3171               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3172               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3173               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3174               Grande     Leche UHT Regular      Santa Clara Entera
## 3175               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3176               Grande         Sabores Light        Del Valle y Nada
## 3177               Grande         Sabores Light        Del Valle y Nada
## 3178               Grande         Sabores Light             Sprite Zero
## 3179               Grande       Sabores Regular        Del Valle y Nada
## 3180               Grande       Sabores Regular                   Fanta
## 3181               Grande       Sabores Regular                   Fanta
## 3182               Grande       Sabores Regular                   Fanta
## 3183               Grande       Sabores Regular                   Fanta
## 3184               Grande       Sabores Regular                  Fresca
## 3185               Grande       Sabores Regular                    Joya
## 3186               Grande       Sabores Regular            Manzana Lift
## 3187               Grande       Sabores Regular            Manzana Lift
## 3188               Grande       Sabores Regular                  Senzao
## 3189               Grande       Sabores Regular           Sidral Mundet
## 3190               Grande       Sabores Regular           Sidral Mundet
## 3191               Grande       Sabores Regular           Sidral Mundet
## 3192               Grande       Sabores Regular           Sidral Mundet
## 3193               Grande       Sabores Regular                  Sprite
## 3194               Grande       Sabores Regular                  Sprite
## 3195               Grande       Sabores Regular                  Sprite
## 3196               Grande       Sabores Regular                  Sprite
## 3197               Grande         T\x8e Regular                Fuze Tea
## 3198               Grande          Agua Mineral       Ciel Mineralizada
## 3199               Grande          Agua Mineral         Topo Chico A.M.
## 3200               Grande       Agua Purificada    Ciel Agua Purificada
## 3201               Grande       Agua Purificada    Ciel Agua Purificada
## 3202               Grande       Agua Purificada    Ciel Agua Purificada
## 3203               Grande       Agua Saborizada             Ciel Exprim
## 3204               Grande       Agua Saborizada             Ciel Exprim
## 3205               Grande      Bebidas de Fruta          Delaware Punch
## 3206               Grande      Bebidas de Fruta                  Frutsi
## 3207               Grande      Bebidas de Fruta                   Pulpy
## 3208               Grande      Bebidas de Fruta              Valle Frut
## 3209               Grande      Bebidas de Fruta              Valle Frut
## 3210               Grande       Bebidas de Soya             AdeS Frutal
## 3211               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3212               Grande   Bebidas Energeticas          Monster Energy
## 3213               Grande           Colas Light         Coca-Cola Light
## 3214               Grande           Colas Light         Coca-Cola Light
## 3215               Grande           Colas Light         Coca-Cola Light
## 3216               Grande           Colas Light         Coca-Cola Light
## 3217               Grande           Colas Light         Coca-Cola Light
## 3218               Grande           Colas Light         Coca-Cola Light
## 3219               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3220               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3221               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3222               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3223               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3224               Grande         Colas Regular               Coca-Cola
## 3225               Grande         Colas Regular               Coca-Cola
## 3226               Grande         Colas Regular               Coca-Cola
## 3227               Grande         Colas Regular               Coca-Cola
## 3228               Grande         Colas Regular               Coca-Cola
## 3229               Grande         Colas Regular               Coca-Cola
## 3230               Grande         Colas Regular               Coca-Cola
## 3231               Grande         Colas Regular               Coca-Cola
## 3232               Grande         Colas Regular               Coca-Cola
## 3233               Grande         Colas Regular               Coca-Cola
## 3234               Grande         Colas Regular               Coca-Cola
## 3235               Grande         Colas Regular               Coca-Cola
## 3236               Grande         Colas Regular               Coca-Cola
## 3237               Grande         Colas Regular               Coca-Cola
## 3238               Grande         Colas Regular               Coca-Cola
## 3239               Grande         Colas Regular               Coca-Cola
## 3240               Grande Isot\x97nicos Regular                Powerade
## 3241               Grande Isot\x97nicos Regular                Powerade
## 3242               Grande   Jugos y N\x8ectares               Del Valle
## 3243               Grande   Jugos y N\x8ectares               Del Valle
## 3244               Grande   Jugos y N\x8ectares               Del Valle
## 3245               Grande   Jugos y N\x8ectares               Del Valle
## 3246               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3247               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3248               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3249               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3250               Grande     Leche UHT Regular      Santa Clara Entera
## 3251               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3252               Grande         Sabores Light        Del Valle y Nada
## 3253               Grande         Sabores Light             Sprite Zero
## 3254               Grande       Sabores Regular        Del Valle y Nada
## 3255               Grande       Sabores Regular        Del Valle y Nada
## 3256               Grande       Sabores Regular                   Fanta
## 3257               Grande       Sabores Regular                   Fanta
## 3258               Grande       Sabores Regular                   Fanta
## 3259               Grande       Sabores Regular                  Fresca
## 3260               Grande       Sabores Regular                    Joya
## 3261               Grande       Sabores Regular                    Joya
## 3262               Grande       Sabores Regular                  Senzao
## 3263               Grande       Sabores Regular           Sidral Mundet
## 3264               Grande       Sabores Regular           Sidral Mundet
## 3265               Grande       Sabores Regular           Sidral Mundet
## 3266               Grande       Sabores Regular                  Sprite
## 3267               Grande       Sabores Regular                  Sprite
## 3268               Grande       Sabores Regular                  Sprite
## 3269               Grande       Sabores Regular                  Sprite
## 3270               Grande       Sabores Regular                  Sprite
## 3271               Grande         T\x8e Regular                Fuze Tea
## 3272               Grande         T\x8e Regular                Fuze Tea
## 3273               Grande          Agua Mineral       Ciel Mineralizada
## 3274               Grande          Agua Mineral         Topo Chico A.M.
## 3275               Grande       Agua Purificada    Ciel Agua Purificada
## 3276               Grande       Agua Purificada    Ciel Agua Purificada
## 3277               Grande       Agua Purificada    Ciel Agua Purificada
## 3278               Grande       Agua Purificada    Ciel Agua Purificada
## 3279               Grande       Agua Purificada    Ciel Agua Purificada
## 3280               Grande       Agua Saborizada             Ciel Exprim
## 3281               Grande       Agua Saborizada             Ciel Exprim
## 3282               Grande       Agua Saborizada             Ciel Exprim
## 3283               Grande       Agua Saborizada               Ciel Mini
## 3284               Grande      Bebidas de Fruta          Delaware Punch
## 3285               Grande      Bebidas de Fruta          Delaware Punch
## 3286               Grande      Bebidas de Fruta                  Frutsi
## 3287               Grande      Bebidas de Fruta                   Pulpy
## 3288               Grande      Bebidas de Fruta              Valle Frut
## 3289               Grande      Bebidas de Fruta              Valle Frut
## 3290               Grande      Bebidas de Fruta              Valle Frut
## 3291               Grande       Bebidas de Soya             AdeS Frutal
## 3292               Grande       Bebidas de Soya             AdeS Frutal
## 3293               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3294               Grande   Bebidas Energeticas              Glac\x8eau
## 3295               Grande   Bebidas Energeticas          Monster Energy
## 3296               Grande  Cafe Listo Para Bebe            Barista Bros
## 3297               Grande           Colas Light         Coca-Cola Light
## 3298               Grande           Colas Light         Coca-Cola Light
## 3299               Grande           Colas Light         Coca-Cola Light
## 3300               Grande           Colas Light         Coca-Cola Light
## 3301               Grande           Colas Light         Coca-Cola Light
## 3302               Grande           Colas Light         Coca-Cola Light
## 3303               Grande           Colas Light         Coca-Cola Light
## 3304               Grande           Colas Light         Coca-Cola Light
## 3305               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3306               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3307               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3308               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3309               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3310               Grande         Colas Regular               Coca-Cola
## 3311               Grande         Colas Regular               Coca-Cola
## 3312               Grande         Colas Regular               Coca-Cola
## 3313               Grande         Colas Regular               Coca-Cola
## 3314               Grande         Colas Regular               Coca-Cola
## 3315               Grande         Colas Regular               Coca-Cola
## 3316               Grande         Colas Regular               Coca-Cola
## 3317               Grande         Colas Regular               Coca-Cola
## 3318               Grande         Colas Regular               Coca-Cola
## 3319               Grande         Colas Regular               Coca-Cola
## 3320               Grande         Colas Regular               Coca-Cola
## 3321               Grande         Colas Regular               Coca-Cola
## 3322               Grande         Colas Regular               Coca-Cola
## 3323               Grande         Colas Regular               Coca-Cola
## 3324               Grande         Colas Regular               Coca-Cola
## 3325               Grande         Colas Regular               Coca-Cola
## 3326               Grande         Colas Regular               Coca-Cola
## 3327               Grande Isot\x97nicos Regular                Powerade
## 3328               Grande Isot\x97nicos Regular                Powerade
## 3329               Grande   Jugos y N\x8ectares               Del Valle
## 3330               Grande   Jugos y N\x8ectares               Del Valle
## 3331               Grande   Jugos y N\x8ectares               Del Valle
## 3332               Grande   Jugos y N\x8ectares               Del Valle
## 3333               Grande   Jugos y N\x8ectares               Del Valle
## 3334               Grande   Jugos y N\x8ectares               Del Valle
## 3335               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3336               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 3337               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3338               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3339               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3340               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3341               Grande     Leche UHT Regular      Santa Clara Entera
## 3342               Grande     Leche UHT Regular       Santa Clara Light
## 3343               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3344               Grande         Sabores Light        Del Valle y Nada
## 3345               Grande         Sabores Light             Sprite Zero
## 3346               Grande       Sabores Regular        Del Valle y Nada
## 3347               Grande       Sabores Regular                   Fanta
## 3348               Grande       Sabores Regular                   Fanta
## 3349               Grande       Sabores Regular                   Fanta
## 3350               Grande       Sabores Regular                   Fanta
## 3351               Grande       Sabores Regular                   Fanta
## 3352               Grande       Sabores Regular                   Fanta
## 3353               Grande       Sabores Regular                   Fanta
## 3354               Grande       Sabores Regular                  Fresca
## 3355               Grande       Sabores Regular                  Fresca
## 3356               Grande       Sabores Regular                  Fresca
## 3357               Grande       Sabores Regular                  Fresca
## 3358               Grande       Sabores Regular                    Joya
## 3359               Grande       Sabores Regular                    Joya
## 3360               Grande       Sabores Regular            Manzana Lift
## 3361               Grande       Sabores Regular            Manzana Lift
## 3362               Grande       Sabores Regular            Manzana Lift
## 3363               Grande       Sabores Regular                  Senzao
## 3364               Grande       Sabores Regular           Sidral Mundet
## 3365               Grande       Sabores Regular           Sidral Mundet
## 3366               Grande       Sabores Regular           Sidral Mundet
## 3367               Grande       Sabores Regular           Sidral Mundet
## 3368               Grande       Sabores Regular                  Sprite
## 3369               Grande       Sabores Regular                  Sprite
## 3370               Grande       Sabores Regular                  Sprite
## 3371               Grande       Sabores Regular                  Sprite
## 3372               Grande       Sabores Regular                  Sprite
## 3373               Grande       Sabores Regular                  Sprite
## 3374               Grande       Sabores Regular                  Sprite
## 3375               Grande       Sabores Regular                  Sprite
## 3376               Grande         T\x8e Regular                Fuze Tea
## 3377               Grande         T\x8e Regular                Fuze Tea
## 3378               Grande         T\x8e Regular                Fuze Tea
## 3379               Grande          Agua Mineral         Topo Chico A.M.
## 3380               Grande       Agua Purificada    Ciel Agua Purificada
## 3381               Grande       Agua Purificada    Ciel Agua Purificada
## 3382               Grande       Agua Purificada    Ciel Agua Purificada
## 3383               Grande       Agua Saborizada             Ciel Exprim
## 3384               Grande       Bebidas de Soya             AdeS Frutal
## 3385               Grande       Bebidas de Soya             AdeS Frutal
## 3386               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3387               Grande   Bebidas Energeticas          Monster Energy
## 3388               Grande           Colas Light         Coca-Cola Light
## 3389               Grande           Colas Light         Coca-Cola Light
## 3390               Grande           Colas Light         Coca-Cola Light
## 3391               Grande           Colas Light         Coca-Cola Light
## 3392               Grande           Colas Light         Coca-Cola Light
## 3393               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3394               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3395               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3396               Grande         Colas Regular               Coca-Cola
## 3397               Grande         Colas Regular               Coca-Cola
## 3398               Grande         Colas Regular               Coca-Cola
## 3399               Grande         Colas Regular               Coca-Cola
## 3400               Grande         Colas Regular               Coca-Cola
## 3401               Grande         Colas Regular               Coca-Cola
## 3402               Grande         Colas Regular               Coca-Cola
## 3403               Grande         Colas Regular               Coca-Cola
## 3404               Grande         Colas Regular               Coca-Cola
## 3405               Grande         Colas Regular               Coca-Cola
## 3406               Grande         Colas Regular               Coca-Cola
## 3407               Grande         Colas Regular               Coca-Cola
## 3408               Grande         Colas Regular               Coca-Cola
## 3409               Grande   Jugos y N\x8ectares               Del Valle
## 3410               Grande   Jugos y N\x8ectares               Del Valle
## 3411               Grande   Jugos y N\x8ectares               Del Valle
## 3412               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3413               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 3414               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3415               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3416               Grande     Leche UHT Regular      Santa Clara Entera
## 3417               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3418               Grande         Sabores Light        Del Valle y Nada
## 3419               Grande         Sabores Light             Sprite Zero
## 3420               Grande       Sabores Regular                   Fanta
## 3421               Grande       Sabores Regular                   Fanta
## 3422               Grande       Sabores Regular                   Fanta
## 3423               Grande       Sabores Regular                  Fresca
## 3424               Grande       Sabores Regular                  Fresca
## 3425               Grande       Sabores Regular                  Fresca
## 3426               Grande       Sabores Regular                    Joya
## 3427               Grande       Sabores Regular            Manzana Lift
## 3428               Grande       Sabores Regular                  Senzao
## 3429               Grande       Sabores Regular           Sidral Mundet
## 3430               Grande       Sabores Regular           Sidral Mundet
## 3431               Grande       Sabores Regular                  Sprite
## 3432               Grande       Sabores Regular                  Sprite
## 3433               Grande       Sabores Regular                  Sprite
## 3434               Grande         T\x8e Regular                Fuze Tea
## 3435               Grande          Agua Mineral         Topo Chico A.M.
## 3436               Grande          Agua Mineral         Topo Chico A.M.
## 3437               Grande       Agua Purificada    Ciel Agua Purificada
## 3438               Grande       Agua Purificada    Ciel Agua Purificada
## 3439               Grande       Agua Purificada    Ciel Agua Purificada
## 3440               Grande       Agua Saborizada             Ciel Exprim
## 3441               Grande       Agua Saborizada             Ciel Exprim
## 3442               Grande      Bebidas de Fruta          Delaware Punch
## 3443               Grande      Bebidas de Fruta              Valle Frut
## 3444               Grande      Bebidas de Fruta              Valle Frut
## 3445               Grande      Bebidas de Fruta              Valle Frut
## 3446               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3447               Grande   Bebidas Energeticas          Monster Energy
## 3448               Grande  Cafe Listo Para Bebe            Barista Bros
## 3449               Grande           Colas Light         Coca-Cola Light
## 3450               Grande           Colas Light         Coca-Cola Light
## 3451               Grande           Colas Light         Coca-Cola Light
## 3452               Grande           Colas Light         Coca-Cola Light
## 3453               Grande           Colas Light         Coca-Cola Light
## 3454               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3455               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3456               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3457               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3458               Grande         Colas Regular               Coca-Cola
## 3459               Grande         Colas Regular               Coca-Cola
## 3460               Grande         Colas Regular               Coca-Cola
## 3461               Grande         Colas Regular               Coca-Cola
## 3462               Grande         Colas Regular               Coca-Cola
## 3463               Grande         Colas Regular               Coca-Cola
## 3464               Grande         Colas Regular               Coca-Cola
## 3465               Grande         Colas Regular               Coca-Cola
## 3466               Grande         Colas Regular               Coca-Cola
## 3467               Grande         Colas Regular               Coca-Cola
## 3468               Grande         Colas Regular               Coca-Cola
## 3469               Grande         Colas Regular               Coca-Cola
## 3470               Grande Isot\x97nicos Regular                Powerade
## 3471               Grande Isot\x97nicos Regular                Powerade
## 3472               Grande   Jugos y N\x8ectares               Del Valle
## 3473               Grande   Jugos y N\x8ectares               Del Valle
## 3474               Grande   Jugos y N\x8ectares               Del Valle
## 3475               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3476               Grande   Jugos y N\x8ectares    Del Valle NutriVeget
## 3477               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3478               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3479               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3480               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3481               Grande     Leche UHT Regular      Santa Clara Entera
## 3482               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3483               Grande         Sabores Light        Del Valle y Nada
## 3484               Grande         Sabores Light        Del Valle y Nada
## 3485               Grande         Sabores Light             Sprite Zero
## 3486               Grande       Sabores Regular        Del Valle y Nada
## 3487               Grande       Sabores Regular                   Fanta
## 3488               Grande       Sabores Regular                   Fanta
## 3489               Grande       Sabores Regular                   Fanta
## 3490               Grande       Sabores Regular                   Fanta
## 3491               Grande       Sabores Regular                   Fanta
## 3492               Grande       Sabores Regular                  Fresca
## 3493               Grande       Sabores Regular                  Fresca
## 3494               Grande       Sabores Regular                  Fresca
## 3495               Grande       Sabores Regular                    Joya
## 3496               Grande       Sabores Regular            Manzana Lift
## 3497               Grande       Sabores Regular            Manzana Lift
## 3498               Grande       Sabores Regular                  Senzao
## 3499               Grande       Sabores Regular           Sidral Mundet
## 3500               Grande       Sabores Regular           Sidral Mundet
## 3501               Grande       Sabores Regular           Sidral Mundet
## 3502               Grande       Sabores Regular           Sidral Mundet
## 3503               Grande       Sabores Regular                  Sprite
## 3504               Grande       Sabores Regular                  Sprite
## 3505               Grande       Sabores Regular                  Sprite
## 3506               Grande       Sabores Regular                  Sprite
## 3507               Grande       Sabores Regular                  Sprite
## 3508               Grande         T\x8e Regular                Fuze Tea
## 3509               Grande          Agua Mineral         Topo Chico A.M.
## 3510               Grande       Agua Purificada    Ciel Agua Purificada
## 3511               Grande       Agua Purificada    Ciel Agua Purificada
## 3512               Grande       Agua Purificada    Ciel Agua Purificada
## 3513               Grande       Agua Saborizada             Ciel Exprim
## 3514               Grande       Agua Saborizada             Ciel Exprim
## 3515               Grande       Agua Saborizada               Ciel Mini
## 3516               Grande      Bebidas de Fruta                  Bebere
## 3517               Grande      Bebidas de Fruta          Delaware Punch
## 3518               Grande      Bebidas de Fruta                  Frutsi
## 3519               Grande      Bebidas de Fruta                   Pulpy
## 3520               Grande      Bebidas de Fruta              Valle Frut
## 3521               Grande      Bebidas de Fruta              Valle Frut
## 3522               Grande      Bebidas de Fruta              Valle Frut
## 3523               Grande   Bebidas Energeticas          Monster Energy
## 3524               Grande           Colas Light         Coca-Cola Light
## 3525               Grande           Colas Light         Coca-Cola Light
## 3526               Grande           Colas Light         Coca-Cola Light
## 3527               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3528               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3529               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3530               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3531               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3532               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3533               Grande         Colas Regular               Coca-Cola
## 3534               Grande         Colas Regular               Coca-Cola
## 3535               Grande         Colas Regular               Coca-Cola
## 3536               Grande         Colas Regular               Coca-Cola
## 3537               Grande         Colas Regular               Coca-Cola
## 3538               Grande         Colas Regular               Coca-Cola
## 3539               Grande         Colas Regular               Coca-Cola
## 3540               Grande         Colas Regular               Coca-Cola
## 3541               Grande         Colas Regular               Coca-Cola
## 3542               Grande         Colas Regular               Coca-Cola
## 3543               Grande         Colas Regular               Coca-Cola
## 3544               Grande         Colas Regular               Coca-Cola
## 3545               Grande         Colas Regular               Coca-Cola
## 3546               Grande Isot\x97nicos Regular                Powerade
## 3547               Grande Isot\x97nicos Regular                Powerade
## 3548               Grande   Jugos y N\x8ectares               Del Valle
## 3549               Grande   Jugos y N\x8ectares               Del Valle
## 3550               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3551               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3552               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3553               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3554               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3555               Grande     Leche UHT Regular      Santa Clara Entera
## 3556               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3557               Grande         Sabores Light        Del Valle y Nada
## 3558               Grande         Sabores Light        Del Valle y Nada
## 3559               Grande         Sabores Light             Sprite Zero
## 3560               Grande       Sabores Regular        Del Valle y Nada
## 3561               Grande       Sabores Regular                   Fanta
## 3562               Grande       Sabores Regular                   Fanta
## 3563               Grande       Sabores Regular                   Fanta
## 3564               Grande       Sabores Regular                   Fanta
## 3565               Grande       Sabores Regular                   Fanta
## 3566               Grande       Sabores Regular                   Fanta
## 3567               Grande       Sabores Regular                  Fresca
## 3568               Grande       Sabores Regular                  Fresca
## 3569               Grande       Sabores Regular                    Joya
## 3570               Grande       Sabores Regular            Manzana Lift
## 3571               Grande       Sabores Regular            Manzana Lift
## 3572               Grande       Sabores Regular            Manzana Lift
## 3573               Grande       Sabores Regular           Sidral Mundet
## 3574               Grande       Sabores Regular           Sidral Mundet
## 3575               Grande       Sabores Regular           Sidral Mundet
## 3576               Grande       Sabores Regular           Sidral Mundet
## 3577               Grande       Sabores Regular                  Sprite
## 3578               Grande       Sabores Regular                  Sprite
## 3579               Grande       Sabores Regular                  Sprite
## 3580               Grande       Sabores Regular                  Sprite
## 3581               Grande       Sabores Regular                  Sprite
## 3582               Grande         T\x8e Regular                Fuze Tea
## 3583               Grande         T\x8e Regular                Fuze Tea
## 3584               Grande         T\x8e Regular                Fuze Tea
## 3585               Grande          Agua Mineral         Topo Chico A.M.
## 3586               Grande          Agua Mineral         Topo Chico A.M.
## 3587               Grande       Agua Purificada    Ciel Agua Purificada
## 3588               Grande       Agua Purificada    Ciel Agua Purificada
## 3589               Grande       Agua Purificada    Ciel Agua Purificada
## 3590               Grande       Agua Purificada    Ciel Agua Purificada
## 3591               Grande       Agua Saborizada             Ciel Exprim
## 3592               Grande       Agua Saborizada             Ciel Exprim
## 3593               Grande      Bebidas de Fruta          Delaware Punch
## 3594               Grande      Bebidas de Fruta                  Frutsi
## 3595               Grande      Bebidas de Fruta              Valle Frut
## 3596               Grande      Bebidas de Fruta              Valle Frut
## 3597               Grande      Bebidas de Fruta              Valle Frut
## 3598               Grande      Bebidas de Fruta              Valle Frut
## 3599               Grande       Bebidas de Soya             AdeS Frutal
## 3600               Grande       Bebidas de Soya             AdeS Frutal
## 3601               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3602               Grande   Bebidas Energeticas              Glac\x8eau
## 3603               Grande   Bebidas Energeticas          Monster Energy
## 3604               Grande  Cafe Listo Para Bebe            Barista Bros
## 3605               Grande           Colas Light         Coca-Cola Light
## 3606               Grande           Colas Light         Coca-Cola Light
## 3607               Grande           Colas Light         Coca-Cola Light
## 3608               Grande           Colas Light         Coca-Cola Light
## 3609               Grande           Colas Light         Coca-Cola Light
## 3610               Grande           Colas Light         Coca-Cola Light
## 3611               Grande           Colas Light         Coca-Cola Light
## 3612               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3613               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3614               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3615               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3616               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3617               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3618               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3619               Grande         Colas Regular               Coca-Cola
## 3620               Grande         Colas Regular               Coca-Cola
## 3621               Grande         Colas Regular               Coca-Cola
## 3622               Grande         Colas Regular               Coca-Cola
## 3623               Grande         Colas Regular               Coca-Cola
## 3624               Grande         Colas Regular               Coca-Cola
## 3625               Grande         Colas Regular               Coca-Cola
## 3626               Grande         Colas Regular               Coca-Cola
## 3627               Grande         Colas Regular               Coca-Cola
## 3628               Grande         Colas Regular               Coca-Cola
## 3629               Grande         Colas Regular               Coca-Cola
## 3630               Grande         Colas Regular               Coca-Cola
## 3631               Grande         Colas Regular               Coca-Cola
## 3632               Grande         Colas Regular               Coca-Cola
## 3633               Grande         Colas Regular               Coca-Cola
## 3634               Grande         Colas Regular               Coca-Cola
## 3635               Grande         Colas Regular               Coca-Cola
## 3636               Grande Isot\x97nicos Regular                Powerade
## 3637               Grande Isot\x97nicos Regular                Powerade
## 3638               Grande   Jugos y N\x8ectares               Del Valle
## 3639               Grande   Jugos y N\x8ectares               Del Valle
## 3640               Grande   Jugos y N\x8ectares               Del Valle
## 3641               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3642               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3643               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3644               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3645               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3646               Grande     Leche UHT Regular      Santa Clara Entera
## 3647               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3648               Grande         Sabores Light        Del Valle y Nada
## 3649               Grande         Sabores Light        Del Valle y Nada
## 3650               Grande         Sabores Light             Sprite Zero
## 3651               Grande       Sabores Regular        Del Valle y Nada
## 3652               Grande       Sabores Regular        Del Valle y Nada
## 3653               Grande       Sabores Regular                   Fanta
## 3654               Grande       Sabores Regular                   Fanta
## 3655               Grande       Sabores Regular                   Fanta
## 3656               Grande       Sabores Regular                   Fanta
## 3657               Grande       Sabores Regular                   Fanta
## 3658               Grande       Sabores Regular                   Fanta
## 3659               Grande       Sabores Regular                  Fresca
## 3660               Grande       Sabores Regular                  Fresca
## 3661               Grande       Sabores Regular                  Fresca
## 3662               Grande       Sabores Regular                    Joya
## 3663               Grande       Sabores Regular            Manzana Lift
## 3664               Grande       Sabores Regular            Manzana Lift
## 3665               Grande       Sabores Regular            Manzana Lift
## 3666               Grande       Sabores Regular            Manzana Lift
## 3667               Grande       Sabores Regular                  Senzao
## 3668               Grande       Sabores Regular           Sidral Mundet
## 3669               Grande       Sabores Regular           Sidral Mundet
## 3670               Grande       Sabores Regular           Sidral Mundet
## 3671               Grande       Sabores Regular                  Sprite
## 3672               Grande       Sabores Regular                  Sprite
## 3673               Grande       Sabores Regular                  Sprite
## 3674               Grande       Sabores Regular                  Sprite
## 3675               Grande       Sabores Regular                  Sprite
## 3676               Grande       Sabores Regular                  Sprite
## 3677               Grande       Sabores Regular                  Sprite
## 3678               Grande         T\x8e Regular                Fuze Tea
## 3679               Grande         T\x8e Regular                Fuze Tea
## 3680               Grande          Agua Mineral       Ciel Mineralizada
## 3681               Grande          Agua Mineral         Topo Chico A.M.
## 3682               Grande          Agua Mineral         Topo Chico A.M.
## 3683               Grande       Agua Purificada    Ciel Agua Purificada
## 3684               Grande       Agua Purificada    Ciel Agua Purificada
## 3685               Grande       Agua Purificada    Ciel Agua Purificada
## 3686               Grande       Agua Saborizada             Ciel Exprim
## 3687               Grande       Agua Saborizada             Ciel Exprim
## 3688               Grande      Bebidas de Fruta          Delaware Punch
## 3689               Grande      Bebidas de Fruta                  Frutsi
## 3690               Grande      Bebidas de Fruta              Valle Frut
## 3691               Grande      Bebidas de Fruta              Valle Frut
## 3692               Grande      Bebidas de Fruta              Valle Frut
## 3693               Grande   Bebidas Energeticas          Monster Energy
## 3694               Grande  Cafe Listo Para Bebe            Barista Bros
## 3695               Grande           Colas Light         Coca-Cola Light
## 3696               Grande           Colas Light         Coca-Cola Light
## 3697               Grande           Colas Light         Coca-Cola Light
## 3698               Grande           Colas Light         Coca-Cola Light
## 3699               Grande           Colas Light         Coca-Cola Light
## 3700               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3701               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3702               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3703               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3704               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3705               Grande         Colas Regular               Coca-Cola
## 3706               Grande         Colas Regular               Coca-Cola
## 3707               Grande         Colas Regular               Coca-Cola
## 3708               Grande         Colas Regular               Coca-Cola
## 3709               Grande         Colas Regular               Coca-Cola
## 3710               Grande         Colas Regular               Coca-Cola
## 3711               Grande         Colas Regular               Coca-Cola
## 3712               Grande         Colas Regular               Coca-Cola
## 3713               Grande         Colas Regular               Coca-Cola
## 3714               Grande         Colas Regular               Coca-Cola
## 3715               Grande         Colas Regular               Coca-Cola
## 3716               Grande         Colas Regular               Coca-Cola
## 3717               Grande         Colas Regular               Coca-Cola
## 3718               Grande         Colas Regular               Coca-Cola
## 3719               Grande         Colas Regular               Coca-Cola
## 3720               Grande         Colas Regular               Coca-Cola
## 3721               Grande Isot\x97nicos Regular                Powerade
## 3722               Grande Isot\x97nicos Regular                Powerade
## 3723               Grande   Jugos y N\x8ectares               Del Valle
## 3724               Grande   Jugos y N\x8ectares               Del Valle
## 3725               Grande   Jugos y N\x8ectares               Del Valle
## 3726               Grande   Jugos y N\x8ectares               Del Valle
## 3727               Grande   Jugos y N\x8ectares               Del Valle
## 3728               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3729               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3730               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3731               Grande     Leche UHT Regular      Santa Clara Entera
## 3732               Grande     Leche UHT Regular       Santa Clara Light
## 3733               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3734               Grande         Sabores Light        Del Valle y Nada
## 3735               Grande         Sabores Light             Sprite Zero
## 3736               Grande       Sabores Regular        Del Valle y Nada
## 3737               Grande       Sabores Regular                   Fanta
## 3738               Grande       Sabores Regular                   Fanta
## 3739               Grande       Sabores Regular                   Fanta
## 3740               Grande       Sabores Regular                   Fanta
## 3741               Grande       Sabores Regular                   Fanta
## 3742               Grande       Sabores Regular                   Fanta
## 3743               Grande       Sabores Regular                   Fanta
## 3744               Grande       Sabores Regular                  Fresca
## 3745               Grande       Sabores Regular                  Fresca
## 3746               Grande       Sabores Regular                    Joya
## 3747               Grande       Sabores Regular            Manzana Lift
## 3748               Grande       Sabores Regular            Manzana Lift
## 3749               Grande       Sabores Regular            Manzana Lift
## 3750               Grande       Sabores Regular            Manzana Lift
## 3751               Grande       Sabores Regular                  Senzao
## 3752               Grande       Sabores Regular           Sidral Mundet
## 3753               Grande       Sabores Regular           Sidral Mundet
## 3754               Grande       Sabores Regular           Sidral Mundet
## 3755               Grande       Sabores Regular           Sidral Mundet
## 3756               Grande       Sabores Regular           Sidral Mundet
## 3757               Grande       Sabores Regular                  Sprite
## 3758               Grande       Sabores Regular                  Sprite
## 3759               Grande       Sabores Regular                  Sprite
## 3760               Grande       Sabores Regular                  Sprite
## 3761               Grande       Sabores Regular                  Sprite
## 3762               Grande       Sabores Regular                  Sprite
## 3763               Grande       Sabores Regular                  Sprite
## 3764               Grande       Sabores Regular                  Sprite
## 3765               Grande         T\x8e Regular                Fuze Tea
## 3766               Grande          Agua Mineral         Topo Chico A.M.
## 3767               Grande          Agua Mineral         Topo Chico A.M.
## 3768               Grande       Agua Purificada    Ciel Agua Purificada
## 3769               Grande       Agua Purificada    Ciel Agua Purificada
## 3770               Grande       Agua Purificada    Ciel Agua Purificada
## 3771               Grande       Agua Saborizada             Ciel Exprim
## 3772               Grande      Bebidas de Fruta          Delaware Punch
## 3773               Grande       Bebidas de Soya             AdeS Frutal
## 3774               Grande   Bebidas Energeticas                    Burn
## 3775               Grande   Bebidas Energeticas              Glac\x8eau
## 3776               Grande   Bebidas Energeticas          Monster Energy
## 3777               Grande           Colas Light         Coca-Cola Light
## 3778               Grande           Colas Light         Coca-Cola Light
## 3779               Grande           Colas Light         Coca-Cola Light
## 3780               Grande           Colas Light         Coca-Cola Light
## 3781               Grande           Colas Light         Coca-Cola Light
## 3782               Grande           Colas Light         Coca-Cola Light
## 3783               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3784               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3785               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3786               Grande         Colas Regular               Coca-Cola
## 3787               Grande         Colas Regular               Coca-Cola
## 3788               Grande         Colas Regular               Coca-Cola
## 3789               Grande         Colas Regular               Coca-Cola
## 3790               Grande         Colas Regular               Coca-Cola
## 3791               Grande         Colas Regular               Coca-Cola
## 3792               Grande         Colas Regular               Coca-Cola
## 3793               Grande         Colas Regular               Coca-Cola
## 3794               Grande         Colas Regular               Coca-Cola
## 3795               Grande         Colas Regular               Coca-Cola
## 3796               Grande         Colas Regular               Coca-Cola
## 3797               Grande         Colas Regular               Coca-Cola
## 3798               Grande Isot\x97nicos Regular                Powerade
## 3799               Grande   Jugos y N\x8ectares               Del Valle
## 3800               Grande   Jugos y N\x8ectares               Del Valle
## 3801               Grande   Jugos y N\x8ectares               Del Valle
## 3802               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3803               Grande         Sabores Light        Del Valle y Nada
## 3804               Grande         Sabores Light             Sprite Zero
## 3805               Grande       Sabores Regular        Del Valle y Nada
## 3806               Grande       Sabores Regular        Del Valle y Nada
## 3807               Grande       Sabores Regular                   Fanta
## 3808               Grande       Sabores Regular                   Fanta
## 3809               Grande       Sabores Regular                   Fanta
## 3810               Grande       Sabores Regular                   Fanta
## 3811               Grande       Sabores Regular                  Fresca
## 3812               Grande       Sabores Regular                  Fresca
## 3813               Grande       Sabores Regular                  Fresca
## 3814               Grande       Sabores Regular                    Joya
## 3815               Grande       Sabores Regular            Manzana Lift
## 3816               Grande       Sabores Regular            Manzana Lift
## 3817               Grande       Sabores Regular            Manzana Lift
## 3818               Grande       Sabores Regular            Manzana Lift
## 3819               Grande       Sabores Regular                  Senzao
## 3820               Grande       Sabores Regular           Sidral Mundet
## 3821               Grande       Sabores Regular           Sidral Mundet
## 3822               Grande       Sabores Regular           Sidral Mundet
## 3823               Grande       Sabores Regular                  Sprite
## 3824               Grande       Sabores Regular                  Sprite
## 3825               Grande       Sabores Regular                  Sprite
## 3826               Grande       Sabores Regular                  Sprite
## 3827               Grande       Sabores Regular                  Sprite
## 3828               Grande         T\x8e Regular                Fuze Tea
## 3829               Grande          Agua Mineral         Topo Chico A.M.
## 3830               Grande       Agua Purificada    Ciel Agua Purificada
## 3831               Grande       Agua Purificada    Ciel Agua Purificada
## 3832               Grande       Agua Purificada    Ciel Agua Purificada
## 3833               Grande       Agua Saborizada             Ciel Exprim
## 3834               Grande       Agua Saborizada             Ciel Exprim
## 3835               Grande      Bebidas de Fruta          Delaware Punch
## 3836               Grande      Bebidas de Fruta              Valle Frut
## 3837               Grande      Bebidas de Fruta              Valle Frut
## 3838               Grande       Bebidas de Soya             AdeS Frutal
## 3839               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3840               Grande           Colas Light         Coca-Cola Light
## 3841               Grande           Colas Light         Coca-Cola Light
## 3842               Grande           Colas Light         Coca-Cola Light
## 3843               Grande           Colas Light         Coca-Cola Light
## 3844               Grande           Colas Light         Coca-Cola Light
## 3845               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3846               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3847               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3848               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3849               Grande         Colas Regular               Coca-Cola
## 3850               Grande         Colas Regular               Coca-Cola
## 3851               Grande         Colas Regular               Coca-Cola
## 3852               Grande         Colas Regular               Coca-Cola
## 3853               Grande         Colas Regular               Coca-Cola
## 3854               Grande         Colas Regular               Coca-Cola
## 3855               Grande         Colas Regular               Coca-Cola
## 3856               Grande         Colas Regular               Coca-Cola
## 3857               Grande         Colas Regular               Coca-Cola
## 3858               Grande         Colas Regular               Coca-Cola
## 3859               Grande         Colas Regular               Coca-Cola
## 3860               Grande         Colas Regular               Coca-Cola
## 3861               Grande Isot\x97nicos Regular                Powerade
## 3862               Grande Isot\x97nicos Regular                Powerade
## 3863               Grande   Jugos y N\x8ectares               Del Valle
## 3864               Grande   Jugos y N\x8ectares               Del Valle
## 3865               Grande   Jugos y N\x8ectares               Del Valle
## 3866               Grande   Jugos y N\x8ectares               Del Valle
## 3867               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3868               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3869               Grande     Leche UHT Regular      Santa Clara Entera
## 3870               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3871               Grande         Sabores Light        Del Valle y Nada
## 3872               Grande         Sabores Light        Del Valle y Nada
## 3873               Grande         Sabores Light             Sprite Zero
## 3874               Grande       Sabores Regular        Del Valle y Nada
## 3875               Grande       Sabores Regular                   Fanta
## 3876               Grande       Sabores Regular                   Fanta
## 3877               Grande       Sabores Regular                   Fanta
## 3878               Grande       Sabores Regular                   Fanta
## 3879               Grande       Sabores Regular                   Fanta
## 3880               Grande       Sabores Regular                   Fanta
## 3881               Grande       Sabores Regular                  Fresca
## 3882               Grande       Sabores Regular                  Fresca
## 3883               Grande       Sabores Regular                  Fresca
## 3884               Grande       Sabores Regular                    Joya
## 3885               Grande       Sabores Regular            Manzana Lift
## 3886               Grande       Sabores Regular            Manzana Lift
## 3887               Grande       Sabores Regular            Manzana Lift
## 3888               Grande       Sabores Regular            Manzana Lift
## 3889               Grande       Sabores Regular           Sidral Mundet
## 3890               Grande       Sabores Regular           Sidral Mundet
## 3891               Grande       Sabores Regular                  Sprite
## 3892               Grande       Sabores Regular                  Sprite
## 3893               Grande       Sabores Regular                  Sprite
## 3894               Grande       Sabores Regular                  Sprite
## 3895               Grande       Sabores Regular                  Sprite
## 3896               Grande       Sabores Regular                  Sprite
## 3897               Grande       Sabores Regular                  Sprite
## 3898               Grande         T\x8e Regular                Fuze Tea
## 3899               Grande          Agua Mineral         Topo Chico A.M.
## 3900               Grande          Agua Mineral         Topo Chico A.M.
## 3901               Grande       Agua Purificada    Ciel Agua Purificada
## 3902               Grande       Agua Purificada    Ciel Agua Purificada
## 3903               Grande       Agua Purificada    Ciel Agua Purificada
## 3904               Grande      Bebidas de Fruta          Delaware Punch
## 3905               Grande      Bebidas de Fruta          Delaware Punch
## 3906               Grande      Bebidas de Fruta                  Frutsi
## 3907               Grande           Colas Light         Coca-Cola Light
## 3908               Grande           Colas Light         Coca-Cola Light
## 3909               Grande           Colas Light         Coca-Cola Light
## 3910               Grande           Colas Light         Coca-Cola Light
## 3911               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3912               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3913               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3914               Grande         Colas Regular               Coca-Cola
## 3915               Grande         Colas Regular               Coca-Cola
## 3916               Grande         Colas Regular               Coca-Cola
## 3917               Grande         Colas Regular               Coca-Cola
## 3918               Grande         Colas Regular               Coca-Cola
## 3919               Grande         Colas Regular               Coca-Cola
## 3920               Grande         Colas Regular               Coca-Cola
## 3921               Grande         Colas Regular               Coca-Cola
## 3922               Grande         Colas Regular               Coca-Cola
## 3923               Grande         Colas Regular               Coca-Cola
## 3924               Grande         Colas Regular               Coca-Cola
## 3925               Grande   Jugos y N\x8ectares               Del Valle
## 3926               Grande   Jugos y N\x8ectares               Del Valle
## 3927               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3928               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3929               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3930               Grande     Leche UHT Regular      Santa Clara Entera
## 3931               Grande     Leche UHT Regular       Santa Clara Light
## 3932               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3933               Grande       Sabores Regular        Del Valle y Nada
## 3934               Grande       Sabores Regular                   Fanta
## 3935               Grande       Sabores Regular                  Fresca
## 3936               Grande       Sabores Regular           Sidral Mundet
## 3937               Grande       Sabores Regular                  Sprite
## 3938               Grande       Sabores Regular                  Sprite
## 3939               Grande         T\x8e Regular                Fuze Tea
## 3940               Grande          Agua Mineral       Ciel Mineralizada
## 3941               Grande          Agua Mineral         Topo Chico A.M.
## 3942               Grande       Agua Purificada    Ciel Agua Purificada
## 3943               Grande       Agua Purificada    Ciel Agua Purificada
## 3944               Grande       Agua Purificada    Ciel Agua Purificada
## 3945               Grande       Agua Purificada    Ciel Agua Purificada
## 3946               Grande       Agua Saborizada             Ciel Exprim
## 3947               Grande       Agua Saborizada             Ciel Exprim
## 3948               Grande      Bebidas de Fruta          Delaware Punch
## 3949               Grande      Bebidas de Fruta                  Frutsi
## 3950               Grande      Bebidas de Fruta                   Pulpy
## 3951               Grande      Bebidas de Fruta              Valle Frut
## 3952               Grande      Bebidas de Fruta              Valle Frut
## 3953               Grande      Bebidas de Fruta              Valle Frut
## 3954               Grande       Bebidas de Soya          AdeS L\x87cteo
## 3955               Grande   Bebidas Energeticas          Monster Energy
## 3956               Grande           Colas Light         Coca-Cola Light
## 3957               Grande           Colas Light         Coca-Cola Light
## 3958               Grande           Colas Light         Coca-Cola Light
## 3959               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3960               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3961               Grande           Colas Light Coca-Cola Sin Az\x9ccar
## 3962               Grande         Colas Regular               Coca-Cola
## 3963               Grande         Colas Regular               Coca-Cola
## 3964               Grande         Colas Regular               Coca-Cola
## 3965               Grande         Colas Regular               Coca-Cola
## 3966               Grande         Colas Regular               Coca-Cola
## 3967               Grande         Colas Regular               Coca-Cola
## 3968               Grande         Colas Regular               Coca-Cola
## 3969               Grande         Colas Regular               Coca-Cola
## 3970               Grande         Colas Regular               Coca-Cola
## 3971               Grande         Colas Regular               Coca-Cola
## 3972               Grande         Colas Regular               Coca-Cola
## 3973               Grande         Colas Regular               Coca-Cola
## 3974               Grande Isot\x97nicos Regular                Powerade
## 3975               Grande Isot\x97nicos Regular                Powerade
## 3976               Grande   Jugos y N\x8ectares               Del Valle
## 3977               Grande   Jugos y N\x8ectares               Del Valle
## 3978               Grande   Jugos y N\x8ectares    Del Valle NutriForte
## 3979               Grande   Jugos y N\x8ectares       Del Valle Reserva
## 3980               Grande  Leche UHT Especializ    Santa Clara Deslacto
## 3981               Grande     Leche UHT Regular      Santa Clara Entera
## 3982               Grande  Leche UHT Saborizada    Santa Clara Saboriza
## 3983               Grande         Sabores Light        Del Valle y Nada
## 3984               Grande         Sabores Light             Sprite Zero
## 3985               Grande       Sabores Regular                   Fanta
## 3986               Grande       Sabores Regular                   Fanta
## 3987               Grande       Sabores Regular                   Fanta
## 3988               Grande       Sabores Regular                   Fanta
## 3989               Grande       Sabores Regular                   Fanta
## 3990               Grande       Sabores Regular                   Fanta
## 3991               Grande       Sabores Regular                  Fresca
## 3992               Grande       Sabores Regular                  Fresca
## 3993               Grande       Sabores Regular                  Fresca
## 3994               Grande       Sabores Regular            Manzana Lift
## 3995               Grande       Sabores Regular            Manzana Lift
## 3996               Grande       Sabores Regular            Manzana Lift
## 3997               Grande       Sabores Regular            Manzana Lift
## 3998               Grande       Sabores Regular           Sidral Mundet
## 3999               Grande       Sabores Regular           Sidral Mundet
##          Presentacion     Tamano Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2         1.5 Lts. NR   Familiar No Retornable    NA       2     5     2    2
## 3           600 ml NR Individual No Retornable     1       3     3     3    4
## 4        1 Ltro. N.R. Individual No Retornable     8       2    23    13   21
## 5         1.5 Lts. NR Individual No Retornable    13      13    25    22   29
## 6           5 Lts. NR   Familiar No Retornable     4       7    14    14   11
## 7           600 ml NR Individual No Retornable    NA      NA     3     5    3
## 8        1 Ltro. N.R. Individual No Retornable     1       1    NA     1   NA
## 9           600 ml NR Individual No Retornable     1       1    NA     1   NA
## 10     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 11          600 ml NR Individual No Retornable     1       1    NA     1    1
## 12     250 ml. NR PET Individual No Retornable     1       1     2    NA    2
## 13       1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 14      12 Oz. NR Pet Individual No Retornable     1       1     2     2    1
## 15          2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 16          600 ml NR Individual No Retornable     1       1     1     1    1
## 17       200 ml Tetra Individual No Retornable     1       1     1     3    1
## 18    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 19    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 20        Lata 16 Oz. Individual No Retornable     2       1     3     2    3
## 21       1 Ltro. N.R.   Familiar No Retornable    17      13    15    15   15
## 22          2 Lts. NR   Familiar No Retornable    37      34    42    28   48
## 23      235 ml NR Vid Individual No Retornable     2       2     3     1    2
## 24   500 ml NR Vidrio Individual No Retornable     6      11     8    11    6
## 25               Lata Individual No Retornable    NA       2    NA     2   NA
## 26        1.5 Lts. NR   Familiar No Retornable     4       2     2     2    6
## 27          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 28        2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA    4
## 29   500 ml NR Vidrio Individual No Retornable     4       4     6     6   13
## 30        1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 31       1.250 Lts NR   Familiar No Retornable    26      26    40    37   34
## 32        1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 33       1.5 Lts. Ret   Familiar    Retornable     3       3    NA     3   NA
## 34       1.750 Lts NR   Familiar No Retornable    NA      17    15    12   15
## 35      12 Oz. NR Pet Individual No Retornable     6       5     6     3    8
## 36         12 Oz. Ret Individual    Retornable     3       9     5     5    6
## 37          2 Lts. NR   Familiar No Retornable    NA      31    14    23   48
## 38        2.5 Lts. NR   Familiar No Retornable     4      63    42    39   92
## 39   2.5 Lts. Ret Pet   Familiar    Retornable    53      35    53    46   32
## 40      235 ml NR Vid Individual No Retornable    11      11    14     8   11
## 41   500 ml NR Vidrio Individual No Retornable    17      17    25    19   23
## 42         500 ml Ret Individual    Retornable    32      30    49    44   46
## 43          600 ml NR Individual No Retornable     8       5    13     8   13
## 44               Lata Individual No Retornable     2       2     2     2    3
## 45        Lata 16 Oz. Individual No Retornable     2      NA    NA     2    2
## 46        Lata 235 ml Individual No Retornable     1       1     1     1    1
## 47       1 Ltro. N.R. Individual No Retornable     1       1     2     3    4
## 48          600 ml NR Individual No Retornable     1       1     3     2    3
## 49       250 ml Tetra Individual No Retornable     5       0     5     4    4
## 50      413 ml NR VId Individual No Retornable     3       4     5     2    5
## 51    946 ml NR Tetra Individual No Retornable     6       2     6    10   12
## 52        Lata 335 ml Individual No Retornable     0       1     1     1    1
## 53       1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    2
## 54      237 ml NR Pet Individual No Retornable    NA       0     0     1   NA
## 55      1 Ltro. Tetra   Familiar No Retornable     1      NA     2     1   NA
## 56      1 Ltro. Tetra   Familiar No Retornable     1       1     1     2   NA
## 57      1 Ltro. Tetra   Familiar No Retornable     4       6     2     2    4
## 58       200 ml Tetra Individual No Retornable     4       2     5     3    3
## 59        1.5 Lts. NR   Familiar No Retornable     2      NA     2     4    8
## 60          600 ml NR Individual No Retornable     4       4     5     1    4
## 61          600 ml NR Individual No Retornable    NA       4     1     3    5
## 62        1.5 Lts. NR   Familiar No Retornable    13       4     8     2   NA
## 63          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 64         12 Oz. Ret Individual    Retornable     2      NA    NA     2   NA
## 65          2 Lts. NR   Familiar No Retornable    11       6    11     8    8
## 66     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 67         500 ml Ret Individual    Retornable     1       4    NA     2   NA
## 68          600 ml NR Individual No Retornable     1       5     3     3    3
## 69        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 70          2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 71         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 72          600 ml NR Individual No Retornable     1       1    NA    NA    2
## 73        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 74     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 75         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 76          600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 77          600 ml NR Individual No Retornable    NA       1     1     3    1
## 78          2 Lts. NR   Familiar No Retornable    20      11    14    14   14
## 79          600 ml NR Individual No Retornable     3      NA     1     3   NA
## 80        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 81          2 Lts. NR   Familiar No Retornable    14       8    11    11   20
## 82     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 83         500 ml Ret Individual    Retornable     1      NA    NA     2   NA
## 84          600 ml NR Individual No Retornable     3       3     3     1    8
## 85        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 86          600 ml NR Individual No Retornable     7       4     6     4    5
## 87          600 ml NR Individual No Retornable    NA       3    NA     1    1
## 88       1 Ltro. N.R. Individual No Retornable     8       2     6     6    4
## 89        1.5 Lts. NR Individual No Retornable     6       3     6    22   13
## 90          5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 91          600 ml NR Individual No Retornable     3       3     3    NA    3
## 92       1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 93          600 ml NR Individual No Retornable     1       1     1     1    1
## 94          600 ml NR Individual No Retornable     1      NA    NA     1    1
## 95     250 ml. NR PET Individual No Retornable     1       1    NA    NA    1
## 96          400 ml NR Individual No Retornable    NA      NA     1     1   NA
## 97       1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 98          2 Lts. NR   Familiar No Retornable     3       3     8     6    3
## 99    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 100       Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 101       Lata 16 Oz. Individual No Retornable     0       0     0    NA    0
## 102      1 Ltro. N.R.   Familiar No Retornable     8       2     6     2    4
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 104       2.5 Lts. NR   Familiar No Retornable     4       4     7     4    4
## 105  500 ml NR Vidrio Individual No Retornable    11       4     6     8   15
## 106         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 107         2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 108  500 ml NR Vidrio Individual No Retornable     4       3     2     6    2
## 109        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 110       Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 111       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     8      11    11     8   13
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable    41      32    51    44   44
## 115      1.750 Lts NR   Familiar No Retornable     2       7     2     2    2
## 116     12 Oz. NR Pet Individual No Retornable     6      14     5     6    3
## 117       2.5 Lts. NR   Familiar No Retornable     7      14    18    14   25
## 118  2.5 Lts. Ret Pet   Familiar    Retornable    88      35    77    74   81
## 119     235 ml NR Vid Individual No Retornable     2       2     2     2    3
## 120    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 121     500 ml NR PET Individual No Retornable     8       6     6     2    4
## 122  500 ml NR Vidrio Individual No Retornable     2       4    13    15   11
## 123        500 ml Ret Individual    Retornable    66      72    74    87   80
## 124         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 125              Lata Individual No Retornable     2       0     3     3   NA
## 126       Lata 16 Oz. Individual No Retornable    NA       2     2     2    2
## 127       Lata 235 ml Individual No Retornable    NA       1     1     2    1
## 128      1 Ltro. N.R. Individual No Retornable     1       3     1     1    1
## 129         600 ml NR Individual No Retornable     1       1     1     1    1
## 130     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    1
## 131      250 ml Tetra Individual No Retornable     2       3     2     3    2
## 132     413 ml NR VId Individual No Retornable     8       6     6     5    3
## 133      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 134     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 135      1 Ltro. N.R.   Familiar No Retornable     2       1    NA    NA   NA
## 136     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 137     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 138     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 139     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 140      200 ml Tetra Individual No Retornable     1       2     1     1    1
## 141         600 ml NR Individual No Retornable    NA       1     1     1    1
## 142         600 ml NR Individual No Retornable     2       2     1     2    2
## 143         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 144       1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 145         2 Lts. NR   Familiar No Retornable     4       6     6     3    3
## 146    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 147         400 ml NR Individual No Retornable     1       0    NA     0    0
## 148        500 ml Ret Individual    Retornable     7       5     6     4    5
## 149         600 ml NR Individual No Retornable     2       3     1     1    2
## 150         2 Lts. NR   Familiar No Retornable     1      NA    NA     3   NA
## 151         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 152        500 ml Ret Individual    Retornable     1       1    NA     2    5
## 153         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 154         2 Lts. NR   Familiar No Retornable    NA       6     3     6    6
## 155         400 ml NR Individual No Retornable     0       0    NA     0    0
## 156        500 ml Ret Individual    Retornable     1       1    NA     2    1
## 157         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 158         600 ml NR Individual No Retornable     3       2     4     2    3
## 159         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 160        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 161      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    2
## 162       1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    4
## 163         2 Lts. NR   Familiar No Retornable     4      NA     3     6    3
## 164       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 165    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 166         400 ml NR Individual No Retornable     1      NA     1    NA    0
## 167        500 ml Ret Individual    Retornable     5       3     2     8    9
## 168         600 ml NR Individual No Retornable     1       2     3     1    4
## 169       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 170     413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 171         600 ml NR Individual No Retornable     1       1     1     1    1
## 172         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 173         600 ml NR Individual No Retornable    NA      NA     1     1    1
## 174      1 Ltro. N.R. Individual No Retornable    15      13    21    17   21
## 175       1.5 Lts. NR Individual No Retornable    13       6    29    22   29
## 176         600 ml NR Individual No Retornable     8       5     5    10   10
## 177      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 178         600 ml NR Individual No Retornable     1       1     1     1    1
## 179    250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 180         600 ml NR Individual No Retornable     1       3     3     1    1
## 181    250 ml. NR PET Individual No Retornable     3       1     3     2    2
## 182         400 ml NR Individual No Retornable     0       1     1     1    1
## 183      1 Ltro. N.R.   Familiar No Retornable     2       1     1     1   NA
## 184      1 Ltro. N.R. Individual No Retornable     2      NA     4    NA    2
## 185     12 Oz. NR Pet Individual No Retornable     2       1     2     2    2
## 186         2 Lts. NR   Familiar No Retornable     8       6    14     8    8
## 187      200 ml Tetra Individual No Retornable     1       1     2     1    1
## 188   946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 189       Lata 235 ml Individual No Retornable     0      NA     0     0    0
## 190       Lata 450 ml Individual No Retornable     1      NA     1    NA    1
## 191       Lata 16 Oz. Individual No Retornable    NA      NA     0     0    0
## 192      1 Ltro. N.R.   Familiar No Retornable    11       8    11    13   15
## 193         2 Lts. NR   Familiar No Retornable     3       6     8     6    6
## 194     235 ml NR Vid Individual No Retornable     3       2     3     1    2
## 195  500 ml NR Vidrio Individual No Retornable     8       8    15    11   13
## 196       1.5 Lts. NR   Familiar No Retornable    11       8    11    11    8
## 197         2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   11
## 198  500 ml NR Vidrio Individual No Retornable     8       8     6     8   11
## 199       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 200       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 201      1.250 Lts NR   Familiar No Retornable    37      34    53    40   48
## 202       1.5 Lts. NR   Familiar No Retornable    25      10    NA    NA   NA
## 203      1.5 Lts. Ret   Familiar    Retornable    25      22    35    29   35
## 204      1.750 Lts NR   Familiar No Retornable    NA       5    20    17   22
## 205     12 Oz. NR Pet Individual No Retornable     9       9    14     3   12
## 206        12 Oz. Ret Individual    Retornable    12       5     5     5    6
## 207       2.5 Lts. NR   Familiar No Retornable    92      28    60    63   70
## 208  2.5 Lts. Ret Pet   Familiar    Retornable   120      49    99    88  120
## 209     235 ml NR Vid Individual No Retornable     5       7     6     6    7
## 210     500 ml NR PET Individual No Retornable    NA      NA    NA     6   NA
## 211  500 ml NR Vidrio Individual No Retornable    27      19    30    17   30
## 212        500 ml Ret Individual    Retornable    49      51    59    44   68
## 213              Lata Individual No Retornable     3       2     4     5    5
## 214       Lata 16 Oz. Individual No Retornable     2       2     2     4    4
## 215       Lata 235 ml Individual No Retornable     2       3     7     2    5
## 216      1 Ltro. N.R. Individual No Retornable     2       1     3     2    5
## 217         600 ml NR Individual No Retornable     2       1     1     3    5
## 218     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 219      250 ml Tetra Individual No Retornable     1       1     0     0    1
## 220     413 ml NR VId Individual No Retornable     8       7    13     9    9
## 221     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 222      1 Ltro. N.R.   Familiar No Retornable     2       3     4     4    4
## 223     237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 224     1 Ltro. Tetra   Familiar No Retornable     4       2     3     5    5
## 225     1 Ltro. Tetra   Familiar No Retornable     2       3     4     2    2
## 226     1 Ltro. Tetra   Familiar No Retornable     3       3     2     2    2
## 227     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    2
## 228      200 ml Tetra Individual No Retornable     3       3     3     3    4
## 229       1.5 Lts. NR   Familiar No Retornable     2       8     4     2   11
## 230         600 ml NR Individual No Retornable     2       2     6     4    5
## 231         600 ml NR Individual No Retornable     4       4     4     6    8
## 232       1.5 Lts. NR   Familiar No Retornable     4       2     4     2   NA
## 233         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 234       1.5 Lts. NR   Familiar No Retornable     2       2     4     2    4
## 235         2 Lts. NR   Familiar No Retornable     6       3     6     6    6
## 236    250 ml. NR PET Individual No Retornable     1       1     2     1    2
## 237         400 ml NR Individual No Retornable     1       2     1     1    1
## 238        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 239         600 ml NR Individual No Retornable     2       1     1     1    1
## 240         2 Lts. NR   Familiar No Retornable    NA      NA     1     1   NA
## 241        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 242         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 243    250 ml. NR PET Individual No Retornable     1       1     2     1    2
## 244         400 ml NR Individual No Retornable     1       1     1     1    1
## 245        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 246         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 247         2 Lts. NR   Familiar No Retornable     8       6     6     8    6
## 248         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 249        500 ml Ret Individual    Retornable     8       6     4     4    6
## 250         600 ml NR Individual No Retornable     1       1     1     1    1
## 251       1.5 Lts. NR   Familiar No Retornable     6       8     4     6    4
## 252         2 Lts. NR   Familiar No Retornable     8       6     8     8    8
## 253    250 ml. NR PET Individual No Retornable     2       1     2     2    2
## 254         400 ml NR Individual No Retornable     1       1     1     1    1
## 255        500 ml Ret Individual    Retornable     6       2     2     4    4
## 256         600 ml NR Individual No Retornable     4       2     3     2    3
## 257      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 258         600 ml NR Individual No Retornable     4       3     3     5    6
## 259         600 ml NR Individual No Retornable     1      NA     3     1    1
## 260      1 Ltro. N.R. Individual No Retornable     2       2     2     8   11
## 261       1.5 Lts. NR Individual No Retornable     6       3     3    10   19
## 262     355 Ml NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 263         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 264      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 265         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 266    300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 267    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 268         600 ml NR Individual No Retornable     1       1     2     1   NA
## 269    250 ml. NR PET Individual No Retornable     2       1     1     1    2
## 270      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 271      1 Ltro. N.R. Individual No Retornable     2       2    NA     2   NA
## 272     12 Oz. NR Pet Individual No Retornable     1      NA    NA    NA    1
## 273         2 Lts. NR   Familiar No Retornable     8       6    NA     6    3
## 274      200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 275   946 ml NR Tetra   Familiar No Retornable    NA       0     1    NA   NA
## 276   946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 277       Lata 16 Oz. Individual No Retornable    NA      NA     1     2    0
## 278    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 279      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 280  500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 281         2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 282  500 ml NR Vidrio Individual No Retornable     7       1     4     4   NA
## 283       Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 284       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 285      1.250 Lts NR   Familiar No Retornable    NA      NA     3     5    8
## 286      1.5 Lts. Ret   Familiar    Retornable    38      48    51    63   51
## 287      1.750 Lts NR   Familiar No Retornable    17      20    12    17   12
## 288     12 Oz. NR Pet Individual No Retornable     2       3     5     5   NA
## 289       2.5 Lts. NR   Familiar No Retornable    18      18    14    21   21
## 290  2.5 Lts. Ret Pet   Familiar    Retornable    56      49    67    60   70
## 291     235 ml NR Vid Individual No Retornable     3       1     3     3    4
## 292    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 293     500 ml NR PET Individual No Retornable     4       6     4     6    4
## 294  500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 295        500 ml Ret Individual    Retornable    25      27    40    36   44
## 296         600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 297              Lata Individual No Retornable     2      NA     3     3    3
## 298       Lata 16 Oz. Individual No Retornable    NA       2    NA     2    4
## 299       Lata 235 ml Individual No Retornable     2       1     2     2   NA
## 300      1 Ltro. N.R. Individual No Retornable    NA       1     3    NA    3
## 301     500 ml NR PET Individual No Retornable    NA      NA     1     1    2
## 302         600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 303     237 ml NR Pet Individual No Retornable    NA       1     3     2    2
## 304      250 ml Tetra Individual No Retornable     1       1     1     1    1
## 305    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 306     413 ml NR VId Individual No Retornable     3       3     3    NA    3
## 307      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 308     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 309      1 Ltro. N.R.   Familiar No Retornable     4       1     2     2    3
## 310     237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 311     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 312      200 ml Tetra Individual No Retornable     1       1     0     1    2
## 313         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 314         2 Lts. NR   Familiar No Retornable    NA       6     3     6    8
## 315         400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 316        500 ml Ret Individual    Retornable     1       1     1     1    3
## 317         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 318         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 319        500 ml Ret Individual    Retornable     1       1     1     1    1
## 320         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 321         2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 322         400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 323        500 ml Ret Individual    Retornable     1       1     1     1    1
## 324         2 Lts. NR   Familiar No Retornable     3       3     6     6    6
## 325         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 326        500 ml Ret Individual    Retornable     1       1     1     1    1
## 327     413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 328         600 ml NR Individual No Retornable     1       2     1     1   NA
## 329         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 330       1.5 Lts. NR   Familiar No Retornable    NA       2     2     2    2
## 331         600 ml NR Individual No Retornable    NA       4     8     4    5
## 332      1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 333       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 334         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 335      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 336         600 ml NR Individual No Retornable     1       1     1     1    1
## 337         600 ml NR Individual No Retornable     1      NA     1     1    3
## 338    250 ml. NR PET Individual No Retornable    NA       1    NA     1    1
## 339         400 ml NR Individual No Retornable    NA      NA     2     3   NA
## 340      1 Ltro. N.R.   Familiar No Retornable     1      NA     1    NA    1
## 341      1 Ltro. N.R. Individual No Retornable    NA       2    NA     2   NA
## 342         2 Lts. NR   Familiar No Retornable     6      11     3     8    8
## 343       Lata 235 ml Individual No Retornable     0       0     0    NA    0
## 344       Lata 450 ml Individual No Retornable     1      NA     1    NA    1
## 345       Lata 16 Oz. Individual No Retornable     0       0     2     1    2
## 346      1 Ltro. N.R.   Familiar No Retornable    13      13    23    19   23
## 347        12 Oz. Ret Individual    Retornable     5       3    NA     5    9
## 348         2 Lts. NR   Familiar No Retornable    31      23    25    17   20
## 349     235 ml NR Vid Individual No Retornable     3       2     3     3    4
## 350  500 ml NR Vidrio Individual No Retornable     6      11     8     8   13
## 351       1.5 Lts. NR   Familiar No Retornable    13      13    15    11   NA
## 352         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   31
## 353       2.5 Lts. NR   Familiar No Retornable    NA      NA     4     7   NA
## 354     235 ml NR Vid Individual No Retornable     1       1    NA    NA   NA
## 355  500 ml NR Vidrio Individual No Retornable     4       6     8     4    6
## 356       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 357       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 358      1.250 Lts NR   Familiar No Retornable    32      32    32    34   37
## 359       1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 360      1.5 Lts. Ret   Familiar    Retornable    16      19    16    25   25
## 361      1.750 Lts NR   Familiar No Retornable    47      44    47    44   59
## 362     12 Oz. NR Pet Individual No Retornable     3       6     8     5    3
## 363        12 Oz. Ret Individual    Retornable     6       3     3    12    8
## 364       2.5 Lts. NR   Familiar No Retornable    53      49    28    46   63
## 365  2.5 Lts. Ret Pet   Familiar    Retornable    46      49    77    60   77
## 366     235 ml NR Vid Individual No Retornable     5       6     9     9    6
## 367     500 ml NR PET Individual No Retornable     6       8    11     6    6
## 368  500 ml NR Vidrio Individual No Retornable    36      34    44    21   46
## 369        500 ml Ret Individual    Retornable    25      36    42    53   44
## 370       6.5 Oz. Ret Individual    Retornable     1      NA     1     1   NA
## 371         600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 372              Lata Individual No Retornable     2       3     3     2    5
## 373       Lata 235 ml Individual No Retornable     1       2     6    NA    1
## 374      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 375         600 ml NR Individual No Retornable     1       1     1     1    1
## 376     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 377      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 378     413 ml NR VId Individual No Retornable    10      12    14    13   13
## 379      1 Ltro. N.R.   Familiar No Retornable     2       3     4     4    1
## 380     237 ml NR Pet Individual No Retornable    NA       1     0     1    1
## 381     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    3
## 382     1 Ltro. Tetra   Familiar No Retornable     1      NA     3     1    2
## 383     1 Ltro. Tetra   Familiar No Retornable     5       3     2     2    3
## 384     1 Ltro. Tetra   Familiar No Retornable     3       1     1     1    3
## 385      200 ml Tetra Individual No Retornable     4       4     5     3    4
## 386       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 387         600 ml NR Individual No Retornable     1       3     4     1    3
## 388         600 ml NR Individual No Retornable     1       2     3     3    6
## 389       1.5 Lts. NR   Familiar No Retornable     4       2     4     2   NA
## 390         600 ml NR Individual No Retornable     1       1    NA     1   NA
## 391       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 392         2 Lts. NR   Familiar No Retornable    NA       6     3     6   NA
## 393    250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 394        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 395         600 ml NR Individual No Retornable     1       1     1     3    4
## 396       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 397         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 398        500 ml Ret Individual    Retornable     1       1     2     1    1
## 399       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 400        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 401         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA       1     1     1    4
## 403         2 Lts. NR   Familiar No Retornable     8      NA     6     6    3
## 404        500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 405         600 ml NR Individual No Retornable    NA       1    NA     1    1
## 406       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 407       1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2   NA
## 408         2 Lts. NR   Familiar No Retornable     6       3    NA     6    8
## 409    250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 410         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 411        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 412         600 ml NR Individual No Retornable     3       1     3     3    4
## 413       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 414      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 415     413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 416         600 ml NR Individual No Retornable     3      11     4     6   10
## 417         600 ml NR Individual No Retornable    NA       1    NA     3    2
## 418      1 Ltro. N.R. Individual No Retornable     2       3     4     2    4
## 419       1.5 Lts. NR Individual No Retornable     6       5     6     3   10
## 420         600 ml NR Individual No Retornable     3      NA     3     5    8
## 421      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 422         600 ml NR Individual No Retornable     1       1     1     1    1
## 423    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 424         600 ml NR Individual No Retornable     3       2     1     1    1
## 425    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 426         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 427      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 428      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 429     12 Oz. NR Pet Individual No Retornable     4       2     2     2    3
## 430         2 Lts. NR   Familiar No Retornable     6       3     6     6    8
## 431         600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 432      200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 433   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 434       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 435    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    17      11    17    21   17
## 437         2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 438       2.5 Lts. NR   Familiar No Retornable    18      18     4    18   25
## 439     235 ml NR Vid Individual No Retornable     8       6     8     6    6
## 440  500 ml NR Vidrio Individual No Retornable    17      15    15    11   15
## 441       1.5 Lts. NR   Familiar No Retornable     6       4     6     2   NA
## 442         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    8
## 443  500 ml NR Vidrio Individual No Retornable     1       3     4     5    5
## 444       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 445      1.250 Lts NR   Familiar No Retornable    32      26    26    24   24
## 446      1.5 Lts. Ret   Familiar    Retornable    51      32    79    29   57
## 447      1.750 Lts NR   Familiar No Retornable     7      17    22    15   17
## 448     12 Oz. NR Pet Individual No Retornable     8       6     5    11    8
## 449        12 Oz. Ret Individual    Retornable     9      14    11    14   12
## 450         2 Lts. NR   Familiar No Retornable     8      11     6     8    6
## 451       2.5 Lts. NR   Familiar No Retornable    28      18    35    21   32
## 452  2.5 Lts. Ret Pet   Familiar    Retornable   106     113   155   148  148
## 453     235 ml NR Vid Individual No Retornable     6       6     7     5    5
## 454     500 ml NR PET Individual No Retornable     8       6     4     4   NA
## 455  500 ml NR Vidrio Individual No Retornable    11       8    15     6   17
## 456        500 ml Ret Individual    Retornable    53      70    59    72   78
## 457         600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 458              Lata Individual No Retornable    NA      NA    NA    NA    1
## 459       Lata 235 ml Individual No Retornable     2      NA     1     1    2
## 460      1 Ltro. N.R. Individual No Retornable     1       1     1     2    3
## 461     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 462         600 ml NR Individual No Retornable     1       2     1     3    3
## 463     237 ml NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 464      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 465    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 466     413 ml NR VId Individual No Retornable     4       1     4     3    4
## 467      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 468     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 469     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA     1    2
## 470     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    8
## 471     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    3
## 472      200 ml Tetra Individual No Retornable     1       1     0     1    0
## 473         600 ml NR Individual No Retornable    NA      NA     1     1    1
## 474         600 ml NR Individual No Retornable     1       1     3    NA    1
## 475         600 ml NR Individual No Retornable     1       1    NA     1    1
## 476       1.5 Lts. NR   Familiar No Retornable    NA       2     2     2   NA
## 477         2 Lts. NR   Familiar No Retornable     3       6     8     3    6
## 478    250 ml. NR PET Individual No Retornable     1       2     2     1    1
## 479         400 ml NR Individual No Retornable     0      NA     0     1    2
## 480        500 ml Ret Individual    Retornable     1       1     1     2    2
## 481         600 ml NR Individual No Retornable     2       2     3     2    2
## 482       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 483         2 Lts. NR   Familiar No Retornable     4      NA     4     6   11
## 484         400 ml NR Individual No Retornable    NA      NA     0     1    0
## 485        500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 486         600 ml NR Individual No Retornable     2      NA     1     1    2
## 487       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 488         2 Lts. NR   Familiar No Retornable     6       3    NA     6    3
## 489    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 490         400 ml NR Individual No Retornable     0      NA     0     1    1
## 491        500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 492         600 ml NR Individual No Retornable     1       1     1     1    2
## 493      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 494         2 Lts. NR   Familiar No Retornable     8      NA     3     8   NA
## 495    250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 496         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 497         600 ml NR Individual No Retornable    NA      NA     1     1   NA
## 498       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 499       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 500         2 Lts. NR   Familiar No Retornable     8       6     8    11    3
## 501    250 ml. NR PET Individual No Retornable     1       2     1     1    1
## 502         400 ml NR Individual No Retornable     0      NA     0     1    2
## 503        500 ml Ret Individual    Retornable     1       1     1     2    4
## 504         600 ml NR Individual No Retornable     2       1     2     3    2
## 505              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 506       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 507     413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 508         600 ml NR Individual No Retornable    10       8    10     4   10
## 509         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 510         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 511      1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 512       1.5 Lts. NR Individual No Retornable    NA       3     3    NA    3
## 513         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 514      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 515         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 516    250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 517      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 518         2 Lts. NR   Familiar No Retornable     3       6    NA    NA   NA
## 519      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 520   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 521   946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 522    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 523      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 524  500 ml NR Vidrio Individual No Retornable     4       4     2     4   NA
## 525              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 526       1.5 Lts. NR   Familiar No Retornable     2      NA     1    NA    1
## 527         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 528  500 ml NR Vidrio Individual No Retornable     1      NA    NA    NA   NA
## 529       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 530      1.250 Lts NR   Familiar No Retornable    NA       8    11    13   11
## 531       1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 532      1.5 Lts. Ret   Familiar    Retornable     3       3    NA    NA   NA
## 533      1.750 Lts NR   Familiar No Retornable     5       7     5     2   NA
## 534     12 Oz. NR Pet Individual No Retornable     5      NA     3     2    2
## 535       2.5 Lts. NR   Familiar No Retornable     4       4     4     7   NA
## 536  2.5 Lts. Ret Pet   Familiar    Retornable    11      21    28    35   21
## 537     235 ml NR Vid Individual No Retornable     2       1     3     4    2
## 538     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 539  500 ml NR Vidrio Individual No Retornable     4       4    11    11   19
## 540        500 ml Ret Individual    Retornable     4      13    15    34   66
## 541         600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 542              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 543       Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 544      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 545         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 546      250 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 547     413 ml NR VId Individual No Retornable     1       5     1     1   NA
## 548      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 549     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 550      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 551         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 552       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 553         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 554    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 555         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 556        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 557         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 558         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 559        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 560         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 561         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 562        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 563         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 564        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 565         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 566       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 567         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 568         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 569        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 570         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 571         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 573      1 Ltro. N.R. Individual No Retornable     4      15    15    21   23
## 574       1.5 Lts. NR Individual No Retornable    10       3    16    29   41
## 575         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 576      1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 577         600 ml NR Individual No Retornable     1       1     1     1   NA
## 578         600 ml NR Individual No Retornable     1       1     1     1    3
## 579         400 ml NR Individual No Retornable    NA      NA     2     3   NA
## 580      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 581         2 Lts. NR   Familiar No Retornable     6       3     6     6    3
## 582       Lata 16 Oz. Individual No Retornable    NA      NA     0     1   NA
## 583      1 Ltro. N.R.   Familiar No Retornable     8      11    11    15   15
## 584       2.5 Lts. NR   Familiar No Retornable     7      14    14     7   11
## 585     235 ml NR Vid Individual No Retornable     2       1     4     2    3
## 586  500 ml NR Vidrio Individual No Retornable     4       4     4     8   11
## 587       1.5 Lts. NR   Familiar No Retornable     4       8     3    NA   NA
## 588         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   11
## 589       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 590  500 ml NR Vidrio Individual No Retornable     2       3     3     3    4
## 591       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 592      1.250 Lts NR   Familiar No Retornable    29      34    42    48   45
## 593       1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 594      1.5 Lts. Ret   Familiar    Retornable    16      13    16    16   22
## 595      1.750 Lts NR   Familiar No Retornable    NA      22    35    27   17
## 596     12 Oz. NR Pet Individual No Retornable     2      NA     3    NA    3
## 597       2.5 Lts. NR   Familiar No Retornable    14      35    32    49   35
## 598  2.5 Lts. Ret Pet   Familiar    Retornable    53      81    92   130  155
## 599     235 ml NR Vid Individual No Retornable     6       7     7     8   10
## 600     500 ml NR PET Individual No Retornable     2       2     2     2    4
## 601  500 ml NR Vidrio Individual No Retornable    13      19    21    13   32
## 602        500 ml Ret Individual    Retornable    51      59    85    85   87
## 603         600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 604       Lata 16 Oz. Individual No Retornable     6       6     6     4    4
## 605       Lata 235 ml Individual No Retornable     3       4     4     3    2
## 606      1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 607         600 ml NR Individual No Retornable     1       1     1     1   NA
## 608      250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 609     413 ml NR VId Individual No Retornable    11      11    11    17   17
## 610      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 611     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 612     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 613     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 614     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 615      200 ml Tetra Individual No Retornable     0       0     0     0    0
## 616       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 617         600 ml NR Individual No Retornable    NA       1     2     2    1
## 618         600 ml NR Individual No Retornable     1       1     1     2    1
## 619       1.5 Lts. NR   Familiar No Retornable     2      NA     4     2   NA
## 620         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 621       1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 622         2 Lts. NR   Familiar No Retornable     8       6    11    11    8
## 623    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 624         400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 625        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 626         600 ml NR Individual No Retornable     1       3     3     4    5
## 627        500 ml Ret Individual    Retornable     3      NA     1     1    1
## 628         2 Lts. NR   Familiar No Retornable     8       6     6    17   14
## 629        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 630         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 631         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 632         400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 633        500 ml Ret Individual    Retornable     2       2     2    NA   NA
## 634         600 ml NR Individual No Retornable    NA       3     2     2    4
## 635       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 636         2 Lts. NR   Familiar No Retornable     3       3     8     6   11
## 637    250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 638        500 ml Ret Individual    Retornable     1       2     3     1    1
## 639         600 ml NR Individual No Retornable     2       3     3     3    4
## 640     413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 641         600 ml NR Individual No Retornable     4       1     4     4    6
## 642         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 643         600 ml NR Individual No Retornable    NA      NA    NA     1    3
## 644      1 Ltro. N.R. Individual No Retornable     8       4     6    19    4
## 645       1.5 Lts. NR Individual No Retornable    13       3    10    10   13
## 646         600 ml NR Individual No Retornable    NA      NA    NA    NA    5
## 647      1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 648         600 ml NR Individual No Retornable     1       1     1     1    1
## 649         600 ml NR Individual No Retornable     1       1    NA     1    2
## 650    250 ml. NR PET Individual No Retornable     2      NA     1     1    1
## 651         400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 652      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 653     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 654         2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 655      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 656   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 657       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 658       Lata 16 Oz. Individual No Retornable    NA      NA     0    NA    1
## 659    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 660      1 Ltro. N.R.   Familiar No Retornable     4       2     4     4    4
## 661  500 ml NR Vidrio Individual No Retornable     2       4     2     6    2
## 662       1.5 Lts. NR   Familiar No Retornable     2      NA     3     3    3
## 663         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 664     235 ml NR Vid Individual No Retornable    NA       2    NA     1    1
## 665  500 ml NR Vidrio Individual No Retornable     1       1     1     1    1
## 666        500 ml Ret Individual    Retornable     6       2     6     2   NA
## 667              Lata Individual No Retornable    NA      NA     0     0   NA
## 668       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 669      1.250 Lts NR   Familiar No Retornable    11       8     8    11   11
## 670      1.5 Lts. Ret   Familiar    Retornable    25      19    29    32   32
## 671      1.750 Lts NR   Familiar No Retornable     7      10    17    15   20
## 672     12 Oz. NR Pet Individual No Retornable     3       2     3     8    6
## 673       2.5 Lts. NR   Familiar No Retornable    25      14    35    35   32
## 674  2.5 Lts. Ret Pet   Familiar    Retornable    14      35    67    81   77
## 675     235 ml NR Vid Individual No Retornable     1       3     4     3    4
## 676    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 677     500 ml NR PET Individual No Retornable     2       2     6     6    8
## 678  500 ml NR Vidrio Individual No Retornable     6       8    13    11   11
## 679        500 ml Ret Individual    Retornable    40      19    44    38   49
## 680              Lata Individual No Retornable    NA      NA     1     2    1
## 681       Lata 16 Oz. Individual No Retornable    NA      NA     2     2    2
## 682       Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 683      1 Ltro. N.R. Individual No Retornable     1       1     3     2    3
## 684     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 685         600 ml NR Individual No Retornable     1       1     1     1    4
## 686     237 ml NR Pet Individual No Retornable    NA       0     1     1    1
## 687      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 688    250 ML. NR VID Individual No Retornable     2      NA    NA    NA   NA
## 689     413 ml NR VId Individual No Retornable     3       2     3     2    3
## 690      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 691      1 Ltro. N.R.   Familiar No Retornable     3      NA    NA    NA    3
## 692     237 ml NR Pet Individual No Retornable     0       0    NA     1   NA
## 693     1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 694     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    1
## 695      200 ml Tetra Individual No Retornable     0       1     0     0    1
## 696         600 ml NR Individual No Retornable    NA      NA     2     1    2
## 697       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 698         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 699       1.5 Lts. NR   Familiar No Retornable     2      NA     4    NA   NA
## 700         2 Lts. NR   Familiar No Retornable     6       3     3     3    3
## 701    250 ml. NR PET Individual No Retornable     1      NA     2     1    1
## 702         400 ml NR Individual No Retornable     1       0    NA     1   NA
## 703        500 ml Ret Individual    Retornable     2       2     2    NA    2
## 704         600 ml NR Individual No Retornable    NA       1     1     1    3
## 705         2 Lts. NR   Familiar No Retornable    NA       1     3     1   NA
## 706       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 707    250 ml. NR PET Individual No Retornable     1      NA     2     2    1
## 708         400 ml NR Individual No Retornable     1       1     2     1    0
## 709         600 ml NR Individual No Retornable     1       1     2     1    3
## 710       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 711         2 Lts. NR   Familiar No Retornable     6       3     6    11    3
## 712       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable     4      NA     4     4    4
## 715         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 716       1.5 Lts. NR   Familiar No Retornable    NA       2     4     2    2
## 717         2 Lts. NR   Familiar No Retornable     3      NA     3     3    6
## 718    250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 719         400 ml NR Individual No Retornable     1       1     1     2    0
## 720        500 ml Ret Individual    Retornable     2       2     2     2    2
## 721         600 ml NR Individual No Retornable     1       2     2     3    4
## 722     413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 723         600 ml NR Individual No Retornable     1       1     1     1    1
## 724         600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 725      1 Ltro. N.R. Individual No Retornable     2       2     4     6   11
## 726       1.5 Lts. NR Individual No Retornable     3       3     6    10   10
## 727         600 ml NR Individual No Retornable    NA       3     3     3    8
## 728      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 729         600 ml NR Individual No Retornable     1       1     1     1    1
## 730    250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 731      1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 732      1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 733         2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 734      200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 735   946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 736       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 737    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 738      1 Ltro. N.R.   Familiar No Retornable    13      27    23    15   30
## 739        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 740         2 Lts. NR   Familiar No Retornable    17      23    17    17   23
## 741        2 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 742       2.5 Lts. NR   Familiar No Retornable    14      25    14    18   21
## 743     235 ml NR Vid Individual No Retornable     3       5     4     3    6
## 744         400 ml NR Individual No Retornable     3       2     3     2    5
## 745  500 ml NR Vidrio Individual No Retornable    21      25    32    13   36
## 746         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 747              Lata Individual No Retornable    NA       2     3    NA    3
## 748       1.5 Lts. NR   Familiar No Retornable    13      NA     2    NA   NA
## 749       2.5 Lts. NR   Familiar No Retornable    NA      18    21    18   21
## 750     235 ml NR Vid Individual No Retornable    NA       3     5     2    4
## 751  500 ml NR Vidrio Individual No Retornable     4       8     6     6   13
## 752        500 ml Ret Individual    Retornable     2       2     2     4    6
## 753       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 754      1.250 Lts NR   Familiar No Retornable    NA      21    32    29   48
## 755       1.5 Lts. NR   Familiar No Retornable    38      19    NA    NA   NA
## 756      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 757      1.750 Lts NR   Familiar No Retornable    NA      12    32    27   59
## 758     12 Oz. NR Pet Individual No Retornable     5       6     5     5    6
## 759        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 760       2.5 Lts. NR   Familiar No Retornable     7      49    46    46   67
## 761  2.5 Lts. Ret Pet   Familiar    Retornable    25      63    56    63   85
## 762     235 ml NR Vid Individual No Retornable     9      14    10     8   15
## 763  500 ml NR Vidrio Individual No Retornable    30      40    42    32   49
## 764        500 ml Ret Individual    Retornable    32      42    21    36   55
## 765         600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 766              Lata Individual No Retornable     3       2     2     2    2
## 767       Lata 16 Oz. Individual No Retornable     4       2     2     2    2
## 768       Lata 235 ml Individual No Retornable     1       1     1     1    1
## 769      1 Ltro. N.R. Individual No Retornable     1       2     1     1    1
## 770         600 ml NR Individual No Retornable     1       1     1     1    1
## 771     237 ml NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 772      250 ml Tetra Individual No Retornable     2       0     0     0    0
## 773     413 ml NR VId Individual No Retornable     1       1     1     1    1
## 774     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 775     237 ml NR Pet Individual No Retornable     0       0    NA    NA   NA
## 776     1 Ltro. Tetra   Familiar No Retornable     3       3     2     2    4
## 777     1 Ltro. Tetra   Familiar No Retornable     4       3     2     1    1
## 778     1 Ltro. Tetra   Familiar No Retornable     2       4     1     3    3
## 779     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    1
## 780      200 ml Tetra Individual No Retornable     0       1     1     0    0
## 781       1.5 Lts. NR   Familiar No Retornable     2       4     2     4    6
## 782         600 ml NR Individual No Retornable     1       2     2     3    3
## 783         600 ml NR Individual No Retornable     1       1    NA     1    1
## 784       1.5 Lts. NR   Familiar No Retornable    NA       4     2     2   NA
## 785         600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 786       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 787         2 Lts. NR   Familiar No Retornable    NA      NA     6     3    6
## 788    250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 789        500 ml Ret Individual    Retornable     2       4     2    NA    2
## 790         600 ml NR Individual No Retornable     2       1     2     1    2
## 791       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 792         2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 793       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 794         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 795         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 796         600 ml NR Individual No Retornable    NA       1     1     1    2
## 797         2 Lts. NR   Familiar No Retornable     3       6     6     8   11
## 798        500 ml Ret Individual    Retornable     2       4    NA     2    2
## 799       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 800       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 801         2 Lts. NR   Familiar No Retornable     3       3     6     8    8
## 802    250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 803         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 804        500 ml Ret Individual    Retornable     4       2     2     2    2
## 805         600 ml NR Individual No Retornable     1       1     1     3    3
## 806       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 807     413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 808         600 ml NR Individual No Retornable     4       3     3     4    7
## 809       1.5 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 810  12 Oz. NR Vidrio Individual No Retornable    NA      NA     1    NA    1
## 811         600 ml NR Individual No Retornable     1       4     3     3    4
## 812      1 Ltro. N.R. Individual No Retornable     4      17    89     2    8
## 813       1.5 Lts. NR Individual No Retornable    13      19   149     3    3
## 814         5 Lts. NR   Familiar No Retornable    NA       4     7    NA    4
## 815         600 ml NR Individual No Retornable     3      10    15     3   10
## 816      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 817       1.5 Lts. NR Individual No Retornable    NA      NA     5     5   NA
## 818         600 ml NR Individual No Retornable    NA       1     1     1    1
## 819         600 ml NR Individual No Retornable     1       1     1     2    2
## 820    250 ml. NR PET Individual No Retornable     2       4     4    NA    4
## 821         400 ml NR Individual No Retornable     1       1     1    NA    1
## 822      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 823      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable     8       6     8     8    6
## 825      200 ml Tetra Individual No Retornable     1       2     1     4    1
## 826   946 ml NR Tetra   Familiar No Retornable     2       3    NA     2    3
## 827   946 ml NR Tetra   Familiar No Retornable     4       2    NA     2    4
## 828     500 ml NR PET Individual No Retornable    NA      NA     1     1    1
## 829       Lata 16 Oz. Individual No Retornable     1       1     1     1    2
## 830      1 Ltro. N.R.   Familiar No Retornable    11      13    23    13   21
## 831        12 Oz. Ret Individual    Retornable    NA       2     2    NA   NA
## 832         2 Lts. NR   Familiar No Retornable    NA       6     6    11    8
## 833       2.5 Lts. NR   Familiar No Retornable    25      25    25    18   18
## 834     235 ml NR Vid Individual No Retornable     3       3     3     2    2
## 835  500 ml NR Vidrio Individual No Retornable     6       6     8     4    6
## 836              Lata Individual No Retornable     0       1     1     2    1
## 837       1.5 Lts. NR   Familiar No Retornable     4       2    11     6    2
## 838         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    8
## 839       2.5 Lts. NR   Familiar No Retornable    14      11    18    18   18
## 840     235 ml NR Vid Individual No Retornable    NA      NA    NA     2    1
## 841  500 ml NR Vidrio Individual No Retornable     4       4     7    11    4
## 842        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 843       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 844       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 845      1.250 Lts NR   Familiar No Retornable    40      45    53    55   79
## 846       1.5 Lts. NR   Familiar No Retornable    38      NA    NA    NA   NA
## 847      1.5 Lts. Ret   Familiar    Retornable    NA      16    13    10   19
## 848      1.750 Lts NR   Familiar No Retornable    NA      17    17    12   17
## 849     12 Oz. NR Pet Individual No Retornable     8       9    12     9   17
## 850        12 Oz. Ret Individual    Retornable     5       6     5     5    8
## 851         2 Lts. NR   Familiar No Retornable     3      11     6    NA   NA
## 852        2 Lts. Ret   Familiar    Retornable    11      25    14     8    3
## 853       2.5 Lts. NR   Familiar No Retornable    60      77    67    74   92
## 854  2.5 Lts. Ret Pet   Familiar    Retornable   113      25    63    67  106
## 855     235 ml NR Vid Individual No Retornable     7       8     9     8    9
## 856     500 ml NR PET Individual No Retornable     2       4     8     6    6
## 857  500 ml NR Vidrio Individual No Retornable    23      44    15    23   36
## 858        500 ml Ret Individual    Retornable    63      49    85    70   82
## 859       6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 860         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 861              Lata Individual No Retornable     2       5     3     3    3
## 862       Lata 16 Oz. Individual No Retornable    NA       2     2     4    4
## 863       Lata 235 ml Individual No Retornable     2       2     3     2   NA
## 864      1 Ltro. N.R. Individual No Retornable    NA       2     3     2    5
## 865     500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 866         600 ml NR Individual No Retornable    NA       1     2     3    2
## 867      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    3
## 868      250 ml Tetra Individual No Retornable    NA       0     0     0    0
## 869     413 ml NR VId Individual No Retornable     4       3     4     2    4
## 870     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 871      1 Ltro. N.R.   Familiar No Retornable    NA      NA     1    NA    2
## 872     237 ml NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 873     1 Ltro. Tetra   Familiar No Retornable     5       4     4     2    3
## 874     1 Ltro. Tetra   Familiar No Retornable     7       5     4     4    3
## 875     1 Ltro. Tetra   Familiar No Retornable     6       4     5     2    3
## 876     1 Ltro. Tetra   Familiar No Retornable     2       2     2     1    1
## 877      200 ml Tetra Individual No Retornable     4       5     7     5    3
## 878       1.5 Lts. NR   Familiar No Retornable    NA       2     2     4    6
## 879         600 ml NR Individual No Retornable    NA       3     2     3    2
## 880         600 ml NR Individual No Retornable     2       4     1     3    3
## 881       1.5 Lts. NR   Familiar No Retornable     2       4     6     4   NA
## 882         600 ml NR Individual No Retornable     1       1    NA     1   NA
## 883       1.5 Lts. NR   Familiar No Retornable     2       4     4     4    2
## 884         2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 885    250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 886        500 ml Ret Individual    Retornable    NA      NA     1    NA    3
## 887         600 ml NR Individual No Retornable     1       4     1     1    3
## 888       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 889         2 Lts. NR   Familiar No Retornable    NA       6     3     3   11
## 890        500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 891         600 ml NR Individual No Retornable     1       1     1    NA    1
## 892       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 893       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 894         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 895       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 896        500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 897         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 898         600 ml NR Individual No Retornable     1       3     2    NA    3
## 899       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 900         2 Lts. NR   Familiar No Retornable     6       6     6     6    8
## 901        500 ml Ret Individual    Retornable    NA       2    NA     2   NA
## 902         600 ml NR Individual No Retornable    NA       1     1     1    1
## 903       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 904       1.5 Lts. NR   Familiar No Retornable     2       4     6     6    4
## 905         2 Lts. NR   Familiar No Retornable    NA       6     8     3    8
## 906        500 ml Ret Individual    Retornable    NA       2     1     2    3
## 907         600 ml NR Individual No Retornable     1       4     3     4    4
## 908       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 909      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    1
## 910         600 ml NR Individual No Retornable     7      10    13     4   14
## 911         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 912       1.5 Lts. NR   Familiar No Retornable    NA       2     2     3    2
## 913         600 ml NR Individual No Retornable    NA       3     1     4    1
## 914      1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 915       1.5 Lts. NR Individual No Retornable    32      35    51    29   38
## 916         600 ml NR Individual No Retornable     8      13     8     8    3
## 917      1 Ltro. N.R. Individual No Retornable     1       2     2     2    4
## 918         600 ml NR Individual No Retornable     1       1     1     1    2
## 919    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    2
## 920    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 921         600 ml NR Individual No Retornable     2       4     3     3    3
## 922    250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 923         400 ml NR Individual No Retornable    NA      NA    NA     1    3
## 924      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 925      1 Ltro. N.R. Individual No Retornable     4       4     4     6    6
## 926     12 Oz. NR Pet Individual No Retornable     2      NA     2     2    1
## 927         2 Lts. NR   Familiar No Retornable     3       3     3     8    6
## 928      200 ml Tetra Individual No Retornable     3       3     3     2    4
## 929   946 ml NR Tetra   Familiar No Retornable     4       0    NA     1    1
## 930   946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 931     500 ml NR PET Individual No Retornable     1       2    NA     2    1
## 932       Lata 16 Oz. Individual No Retornable     1       1     2     1    4
## 933    250 ml. NR PET Individual No Retornable    NA       1     0    NA   NA
## 934      1 Ltro. N.R.   Familiar No Retornable    19      30    25    25   23
## 935        12 Oz. Ret Individual    Retornable     3       2     5     6    5
## 936         2 Lts. NR   Familiar No Retornable    17      23     6    23   20
## 937        2 Lts. Ret   Familiar    Retornable     8      17    20     6    3
## 938       2.5 Lts. NR   Familiar No Retornable     4      11     7     7   NA
## 939     235 ml NR Vid Individual No Retornable     1       3     4     1    3
## 940  500 ml NR Vidrio Individual No Retornable    13      15    21    19   21
## 941         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 942              Lata Individual No Retornable    NA       2     3     2    2
## 943       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 944       1.5 Lts. NR   Familiar No Retornable     4       6     4    NA   11
## 945         2 Lts. NR   Familiar No Retornable    NA      NA    NA    17    6
## 946       2.5 Lts. NR   Familiar No Retornable    18      18    25    28   25
## 947     235 ml NR Vid Individual No Retornable     5       5     3     5    4
## 948  500 ml NR Vidrio Individual No Retornable    13      15    15    11   15
## 949        500 ml Ret Individual    Retornable     2      NA    NA     2   NA
## 950       Lata 235 ml Individual No Retornable    NA       1    NA    NA    2
## 951       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 952      1.250 Lts NR   Familiar No Retornable    50      53    55    61   77
## 953       1.5 Lts. NR   Familiar No Retornable    10      NA    NA    NA   NA
## 954      1.5 Lts. Ret   Familiar    Retornable     3      10    10     3   10
## 955      1.750 Lts NR   Familiar No Retornable    30      32    30    42   37
## 956     12 Oz. NR Pet Individual No Retornable    11      12    12     6    9
## 957        12 Oz. Ret Individual    Retornable     5       3    NA     8    3
## 958         2 Lts. NR   Familiar No Retornable    25      31    37    39   42
## 959        2 Lts. Ret   Familiar    Retornable     6       3     6     6   NA
## 960       2.5 Lts. NR   Familiar No Retornable    70      39    63    81   95
## 961  2.5 Lts. Ret Pet   Familiar    Retornable    63      74    74    99   77
## 962     235 ml NR Vid Individual No Retornable    10       9     8     9   10
## 963    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 964     500 ml NR PET Individual No Retornable    11      11    13     6   15
## 965  500 ml NR Vidrio Individual No Retornable    13      61    40    42   49
## 966        500 ml Ret Individual    Retornable    53      59    78    57   57
## 967       6.5 Oz. Ret Individual    Retornable     1       2    NA     2   NA
## 968         600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 969              Lata Individual No Retornable     3       3     6     5    5
## 970       Lata 16 Oz. Individual No Retornable     2       2     2     2    4
## 971       Lata 235 ml Individual No Retornable     1       3    NA     1    1
## 972      1 Ltro. N.R. Individual No Retornable     1       1     5    13   10
## 973         600 ml NR Individual No Retornable     1       1     5     5    4
## 974      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    3
## 975     237 ml NR Pet Individual No Retornable    NA       3     3     2    3
## 976      250 ml Tetra Individual No Retornable     4       3     2     4    1
## 977    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 978     413 ml NR VId Individual No Retornable     7      14    12    10   12
## 979   946 ml NR Tetra Individual No Retornable    NA      NA    NA     2   NA
## 980       Lata 335 ml Individual No Retornable     0      NA    NA    NA   NA
## 981      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 982     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 983      1 Ltro. N.R.   Familiar No Retornable     1       4     6     6    3
## 984     237 ml NR Pet Individual No Retornable     1       0     1     1    1
## 985     1 Ltro. Tetra   Familiar No Retornable     1       3     1     3    4
## 986     1 Ltro. Tetra   Familiar No Retornable     5       2     4     3    4
## 987     1 Ltro. Tetra   Familiar No Retornable    13       6    11    10   13
## 988     1 Ltro. Tetra   Familiar No Retornable     1       2     4     2    3
## 989      200 ml Tetra Individual No Retornable     6       5     3     5    3
## 990       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 991         600 ml NR Individual No Retornable     3       6     7     8    9
## 992       1.5 Lts. NR   Familiar No Retornable    NA      NA     6     6    6
## 993         600 ml NR Individual No Retornable     3       6     6     8    7
## 994              Lata Individual No Retornable    NA      NA     3     2   NA
## 995       1.5 Lts. NR   Familiar No Retornable     4      NA    NA     2   NA
## 996         600 ml NR Individual No Retornable     3       1    NA     1   NA
## 997      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 998       1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 999         2 Lts. NR   Familiar No Retornable     8       6     6     3    8
## 1000   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1001       500 ml Ret Individual    Retornable    NA       2     2     2   NA
## 1002        600 ml NR Individual No Retornable     3       3     4     3    4
## 1003      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1004        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1005       500 ml Ret Individual    Retornable    NA      NA     2     2    2
## 1006        600 ml NR Individual No Retornable     1       1     2     3    2
## 1007      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1008      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1009        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1010      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1011   250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 1012       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1013        600 ml NR Individual No Retornable     1       1     1     1    1
## 1014        600 ml NR Individual No Retornable     3       5     4     4    4
## 1015        2 Lts. NR   Familiar No Retornable     6       6     8    11    8
## 1016       500 ml Ret Individual    Retornable     4       2     2     4    2
## 1017        600 ml NR Individual No Retornable     1       4     1     3    1
## 1018      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1019     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1020      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2   NA
## 1021        2 Lts. NR   Familiar No Retornable     8       8     8     6    8
## 1022   250 ml. NR PET Individual No Retornable     1       1     2     1    1
## 1023       500 ml Ret Individual    Retornable     2       2    NA     2   NA
## 1024        600 ml NR Individual No Retornable     4       6     4     6    4
## 1025      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1026     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1027    413 ml NR VId Individual No Retornable     2      NA    NA    NA   NA
## 1028        600 ml NR Individual No Retornable     2       5     4     5    4
## 1029        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1030     1 Ltro. N.R. Individual No Retornable     2       2     2    NA    2
## 1031      1.5 Lts. NR Individual No Retornable     6       3     3    NA    6
## 1032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1033     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    1
## 1034        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1035     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    1
## 1036        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1037     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1038  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1039      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 1040     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1041 500 ml NR Vidrio Individual No Retornable     2       2     4     2    2
## 1042      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA    2
## 1043        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 1044    235 ml NR Vid Individual No Retornable     1      NA     1    NA   NA
## 1045 500 ml NR Vidrio Individual No Retornable     3       1    NA    NA    2
## 1046      Lata 235 ml Individual No Retornable    NA      NA     1     2   NA
## 1047      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1048     1.5 Lts. Ret   Familiar    Retornable    48      63    63    63   73
## 1049     1.750 Lts NR   Familiar No Retornable    10      17    22    20   17
## 1050    12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 1051      2.5 Lts. NR   Familiar No Retornable    28      32    35    21   18
## 1052 2.5 Lts. Ret Pet   Familiar    Retornable    49      63    81    77  109
## 1053    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 1054 500 ml NR Vidrio Individual No Retornable    11      11    15     8   13
## 1055       500 ml Ret Individual    Retornable    46      55    59    61   72
## 1056        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1057             Lata Individual No Retornable     2      NA     2     2   NA
## 1058      Lata 16 Oz. Individual No Retornable    NA       2    NA     2    2
## 1059      Lata 235 ml Individual No Retornable     3       4     6    10    3
## 1060     1 Ltro. N.R. Individual No Retornable    NA       2    NA     2    2
## 1061    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1062        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 1063     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1064   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 1065    413 ml NR VId Individual No Retornable     3       5     3     1    1
## 1066     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1067    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1068    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1069     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1070        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1071        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1072      1.5 Lts. NR   Familiar No Retornable     6       4     6     6   15
## 1073   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1074       500 ml Ret Individual    Retornable     1       5     1     4    4
## 1075        600 ml NR Individual No Retornable     3       1     1     3    3
## 1076      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1077      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1078        2 Lts. NR   Familiar No Retornable     3       6    11    14   11
## 1079       500 ml Ret Individual    Retornable     1       3     1    NA    4
## 1080        600 ml NR Individual No Retornable    NA       1     2     1    2
## 1081      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1082      1.5 Lts. NR   Familiar No Retornable     4       6     6     4    6
## 1083       500 ml Ret Individual    Retornable     3       3     3     4    2
## 1084        600 ml NR Individual No Retornable     1       3     1     1    3
## 1085      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1086       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 1087      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1088      1.5 Lts. NR   Familiar No Retornable     2       2     6     2    4
## 1089     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1090        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 1091   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1092        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1093       500 ml Ret Individual    Retornable     3       1     3    NA    4
## 1094        600 ml NR Individual No Retornable     1       1     2     1    2
## 1095      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1096        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 1097        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1098     1 Ltro. N.R. Individual No Retornable     4       3     2    11    6
## 1099      1.5 Lts. NR Individual No Retornable     6       5     3     3   10
## 1100        600 ml NR Individual No Retornable     3       3     3     5    3
## 1101     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1102        600 ml NR Individual No Retornable     1       1     1     1    1
## 1103   250 ml. NR PET Individual No Retornable     0      NA     1    NA    1
## 1104        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1105     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1106        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1107     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1108      Lata 16 Oz. Individual No Retornable    NA       0    NA    NA   NA
## 1109     1 Ltro. N.R.   Familiar No Retornable     6       6     6     4    2
## 1110    235 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 1111 500 ml NR Vidrio Individual No Retornable     2       4     4     4    6
## 1112 500 ml NR Vidrio Individual No Retornable     2       1     2     5    5
## 1113      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 1114     1.250 Lts NR   Familiar No Retornable    13      13    11    11   21
## 1115      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1116     1.5 Lts. Ret   Familiar    Retornable    25      29    29    19   29
## 1117     1.750 Lts NR   Familiar No Retornable    10      10    10     7   15
## 1118    12 Oz. NR Pet Individual No Retornable     6       5     5     6    6
## 1119      2.5 Lts. NR   Familiar No Retornable    53       4     4    14   21
## 1120 2.5 Lts. Ret Pet   Familiar    Retornable    42       4    28    32   53
## 1121    235 ml NR Vid Individual No Retornable     3       1     4     2    3
## 1122    500 ml NR PET Individual No Retornable     4       2     6     6   13
## 1123 500 ml NR Vidrio Individual No Retornable     4      21     8     6   21
## 1124       500 ml Ret Individual    Retornable    55      38    61    55   57
## 1125        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1126             Lata Individual No Retornable     2       1     3     2    2
## 1127      Lata 16 Oz. Individual No Retornable     2       2     4    NA    4
## 1128      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 1129     1 Ltro. N.R. Individual No Retornable     1       1     1     1    4
## 1130    500 ml NR PET Individual No Retornable    NA       1     1     2    1
## 1131        600 ml NR Individual No Retornable     1       1     1     1    1
## 1132     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1133    413 ml NR VId Individual No Retornable     4       3     3     3    5
## 1134     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1135     1 Ltro. N.R.   Familiar No Retornable     3      NA    NA     2    2
## 1136    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1137    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    2
## 1138     200 ml Tetra Individual No Retornable     1       0     0     0    0
## 1139        600 ml NR Individual No Retornable     1       1     4     1    2
## 1140        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1141      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1142        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1143        400 ml NR Individual No Retornable    NA       2     1     1    1
## 1144       500 ml Ret Individual    Retornable     6       6     6     2    8
## 1145        600 ml NR Individual No Retornable     2       1     3     2    3
## 1146      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1147        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 1148      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1149        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1150        400 ml NR Individual No Retornable     1       1     1    NA    0
## 1151        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1152      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1154        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1155       500 ml Ret Individual    Retornable     4       6     4     8    4
## 1156      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1157      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 1158        2 Lts. NR   Familiar No Retornable    NA       3    NA     1    3
## 1159        400 ml NR Individual No Retornable     0       1     0     1    1
## 1160       500 ml Ret Individual    Retornable     2       4     2     2    6
## 1161        600 ml NR Individual No Retornable     2       1     3     2    2
## 1162      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1163        600 ml NR Individual No Retornable     1       1     1     1    3
## 1164        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1165        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1166      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1167        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 1168     1 Ltro. N.R. Individual No Retornable     4       2    13     8   15
## 1169      1.5 Lts. NR Individual No Retornable     6       3    13    10   25
## 1170        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1171        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1172     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 1173      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   10
## 1174        600 ml NR Individual No Retornable     1       1     1     1    1
## 1175        600 ml NR Individual No Retornable     1       1     2     3    3
## 1176   250 ml. NR PET Individual No Retornable    NA      NA     3    NA    1
## 1177        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1178     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 1179     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA    4
## 1180        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1181        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1182     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1183  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    4
## 1184  946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1185    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1186      Lata 16 Oz. Individual No Retornable     1      NA    NA    NA    1
## 1187   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1188     1 Ltro. N.R.   Familiar No Retornable    19      23    21    25   25
## 1189       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1190        2 Lts. NR   Familiar No Retornable     3       6     6    NA    6
## 1191       2 Lts. Ret   Familiar    Retornable    11       8    11    11    3
## 1192    235 ml NR Vid Individual No Retornable     1       2     1     1    2
## 1193 500 ml NR Vidrio Individual No Retornable    13       8    13     8   17
## 1194             Lata Individual No Retornable    NA      NA    NA    NA    2
## 1195      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 1196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1197    235 ml NR Vid Individual No Retornable    NA      NA    NA     1    2
## 1198 500 ml NR Vidrio Individual No Retornable     4       4     4     4    8
## 1199      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1200      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1201     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 1202     1.250 Lts NR   Familiar No Retornable    26      32    40    48   63
## 1203      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 1204     1.5 Lts. Ret   Familiar    Retornable    19      19    22    25   48
## 1205     1.750 Lts NR   Familiar No Retornable    NA       5     2     2   37
## 1206    12 Oz. NR Pet Individual No Retornable     6       6     9     5    9
## 1207       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1208       2 Lts. Ret   Familiar    Retornable    11       8    14    11   NA
## 1209      2.5 Lts. NR   Familiar No Retornable    35      60    85    70   95
## 1210 2.5 Lts. Ret Pet   Familiar    Retornable     4      21    35    42   85
## 1211    235 ml NR Vid Individual No Retornable     7       8     7    11    9
## 1212    500 ml NR PET Individual No Retornable    13      11    17    11   13
## 1213 500 ml NR Vidrio Individual No Retornable    27      27    34    17   49
## 1214       500 ml Ret Individual    Retornable    44      53    61    55  104
## 1215        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 1216             Lata Individual No Retornable     3       5     2    NA    8
## 1217      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    6
## 1218      Lata 235 ml Individual No Retornable     3       3     2     3    8
## 1219     1 Ltro. N.R. Individual No Retornable     1       2     4     3    4
## 1220        600 ml NR Individual No Retornable     1       1     2     1    4
## 1221     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1222    413 ml NR VId Individual No Retornable     0       2     3     1   11
## 1223    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1224     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1225    1 Ltro. Tetra   Familiar No Retornable     2       1     3     2    2
## 1226    1 Ltro. Tetra   Familiar No Retornable     2      NA     3     1   NA
## 1227    1 Ltro. Tetra   Familiar No Retornable     2       1    NA    NA    1
## 1228    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1229     200 ml Tetra Individual No Retornable     1       0     1     1    1
## 1230      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1231        600 ml NR Individual No Retornable     1       3     5     5    4
## 1232        600 ml NR Individual No Retornable     1       1     4     4    3
## 1233      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1234        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1235      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1236        2 Lts. NR   Familiar No Retornable     3      NA     3     3   11
## 1237   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 1238        400 ml NR Individual No Retornable     1       1     1     2    1
## 1239       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1240        600 ml NR Individual No Retornable     1       1     3     3    3
## 1241             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1242      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1243        2 Lts. NR   Familiar No Retornable    NA      NA     1     6   11
## 1244        400 ml NR Individual No Retornable     1       1     1     2    1
## 1245       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1246        600 ml NR Individual No Retornable     1       1     2     3    4
## 1247             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1248      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1249        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1250   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1251        400 ml NR Individual No Retornable     1       1     1     2    1
## 1252       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1253        600 ml NR Individual No Retornable     2       1     1     3    2
## 1254             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1255        600 ml NR Individual No Retornable     1       1     3     3    3
## 1256        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    8
## 1257        400 ml NR Individual No Retornable     0       0     0    NA   NA
## 1258        600 ml NR Individual No Retornable     3       1     1    NA    3
## 1259      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1260      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 1261        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   11
## 1262   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1263        400 ml NR Individual No Retornable     1       1     1     2    1
## 1264       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1265        600 ml NR Individual No Retornable     1       1     3     3    4
## 1266             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1267      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1268     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1269        600 ml NR Individual No Retornable     1       1     3     1   10
## 1270        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1271        600 ml NR Individual No Retornable     1       1     4     3    4
## 1272     1 Ltro. N.R. Individual No Retornable    19      23    30    32   23
## 1273      1.5 Lts. NR Individual No Retornable    16      19    22    32   32
## 1274        600 ml NR Individual No Retornable    10      10    15    10   18
## 1275     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1276        600 ml NR Individual No Retornable     1       1     1     1    1
## 1277        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1278   250 ml. NR PET Individual No Retornable     1       2     1     1    1
## 1279        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1280     1 Ltro. N.R. Individual No Retornable     2       2     4     4    6
## 1281    12 Oz. NR Pet Individual No Retornable     2       1     2     2    2
## 1282        2 Lts. NR   Familiar No Retornable    11      11    14    11   11
## 1283        600 ml NR Individual No Retornable     1       1     3     3    3
## 1284    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1285      Lata 16 Oz. Individual No Retornable     1       1     2     2    1
## 1286   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1287     1 Ltro. N.R.   Familiar No Retornable     8       8    15    11   11
## 1288       2 Lts. Ret   Familiar    Retornable     6       3     6     8    3
## 1289      2.5 Lts. NR   Familiar No Retornable    11      11    11    14   18
## 1290    235 ml NR Vid Individual No Retornable     2       1     3     1    1
## 1291 500 ml NR Vidrio Individual No Retornable     6      11    13     8   15
## 1292      1.5 Lts. NR   Familiar No Retornable     4       4     4     2    2
## 1293        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1294    235 ml NR Vid Individual No Retornable     2       1     1     2    3
## 1295 500 ml NR Vidrio Individual No Retornable     6       6     6     4    6
## 1296      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1297     1.250 Lts NR   Familiar No Retornable    18      21    32    26   24
## 1298     1.5 Lts. Ret   Familiar    Retornable    13      10    13    10   13
## 1299     1.750 Lts NR   Familiar No Retornable    27      27    32    25   32
## 1300    12 Oz. NR Pet Individual No Retornable    15      15    18    15   17
## 1301       2 Lts. Ret   Familiar    Retornable     3       3     6     8    3
## 1302      2.5 Lts. NR   Familiar No Retornable    14      28    35    35   35
## 1303 2.5 Lts. Ret Pet   Familiar    Retornable    25      32    42    49   70
## 1304    235 ml NR Vid Individual No Retornable     5       5     5     5    6
## 1305    500 ml NR PET Individual No Retornable     6      11    11    13    6
## 1306 500 ml NR Vidrio Individual No Retornable    34      34    42    30   40
## 1307       500 ml Ret Individual    Retornable    36      32    42    55   57
## 1308             Lata Individual No Retornable     3      NA     3     2    3
## 1309      Lata 235 ml Individual No Retornable     2       2     3     2    2
## 1310     1 Ltro. N.R. Individual No Retornable     2       3     2     4    5
## 1311    500 ml NR PET Individual No Retornable     1       1     2     2    3
## 1312        600 ml NR Individual No Retornable     1       2     2     1    3
## 1313     250 ml Tetra Individual No Retornable     3       2     1     1    1
## 1314    413 ml NR VId Individual No Retornable     4       5     6     5    5
## 1315     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1316     1 Ltro. N.R.   Familiar No Retornable     3       2     3     2    3
## 1317    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    0
## 1318    1 Ltro. Tetra   Familiar No Retornable     1       1     1     2    1
## 1319    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1320     200 ml Tetra Individual No Retornable     1       2     2     2    2
## 1321        600 ml NR Individual No Retornable     1       1     3     2    2
## 1322        600 ml NR Individual No Retornable     2       3     3     2    3
## 1323      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1324        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1325      1.5 Lts. NR   Familiar No Retornable     4       2     6     4    4
## 1326        400 ml NR Individual No Retornable     1       1     2     1    2
## 1327       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1328        600 ml NR Individual No Retornable     3       1     3     3    3
## 1329        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1330        400 ml NR Individual No Retornable     0       1     1     1    1
## 1331       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1332        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1333   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1334        400 ml NR Individual No Retornable     2       1     2     1    2
## 1335       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1336        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1337        600 ml NR Individual No Retornable     2       3     4     4    4
## 1338        2 Lts. NR   Familiar No Retornable     6       8     6     6    8
## 1339       500 ml Ret Individual    Retornable     2       2     2     2    2
## 1340        600 ml NR Individual No Retornable     3       1     1     1    1
## 1341      1.5 Lts. NR   Familiar No Retornable     2       6     4     2    4
## 1342        2 Lts. NR   Familiar No Retornable    11       6     8    11    8
## 1343   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 1344        400 ml NR Individual No Retornable     2       2     3     2    2
## 1345       500 ml Ret Individual    Retornable     3       3     6     1    2
## 1346        600 ml NR Individual No Retornable     3       3     6     4    5
## 1347      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1348     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 1349        600 ml NR Individual No Retornable     4       4     6     4    5
## 1350      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1351        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1352     1 Ltro. N.R. Individual No Retornable     4       2     4     8    2
## 1353      1.5 Lts. NR Individual No Retornable    NA      NA     6    NA   NA
## 1354        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355        600 ml NR Individual No Retornable     1       1     1     1    1
## 1356   250 ml. NR PET Individual No Retornable    NA       1     2     1    2
## 1357     1 Ltro. N.R. Individual No Retornable     4      NA     6     4    2
## 1358    12 Oz. NR Pet Individual No Retornable     2       1     2     2    3
## 1359        2 Lts. NR   Familiar No Retornable     8       3     6     3    6
## 1360      Lata 235 ml Individual No Retornable     0       0     0    NA   NA
## 1361      Lata 450 ml Individual No Retornable     1       1     1    NA   NA
## 1362      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1363   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1364     1 Ltro. N.R.   Familiar No Retornable    13      11    15    13   11
## 1365        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1366    235 ml NR Vid Individual No Retornable     1       1     2     1    2
## 1367 500 ml NR Vidrio Individual No Retornable     4       8    11     6    6
## 1368      1.5 Lts. NR   Familiar No Retornable     4       6     6     4    4
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1370 500 ml NR Vidrio Individual No Retornable     4      NA    NA    NA   NA
## 1371      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1372      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1373     1.250 Lts NR   Familiar No Retornable    21      29    40    32   26
## 1374      1.5 Lts. NR   Familiar No Retornable    32      13    NA    NA   NA
## 1375     1.5 Lts. Ret   Familiar    Retornable    60      41    63    82   79
## 1376     1.750 Lts NR   Familiar No Retornable    NA      17    42    44   47
## 1377    12 Oz. NR Pet Individual No Retornable     8       5     9     3    8
## 1378        2 Lts. NR   Familiar No Retornable     6       6     6     6    3
## 1379      2.5 Lts. NR   Familiar No Retornable    39      21    39    25   28
## 1380 2.5 Lts. Ret Pet   Familiar    Retornable   123     109   162   148  144
## 1381    235 ml NR Vid Individual No Retornable     6       6     7     9    8
## 1382    500 ml NR PET Individual No Retornable     8      13    11    11   13
## 1383 500 ml NR Vidrio Individual No Retornable    21      17    30    27   32
## 1384       500 ml Ret Individual    Retornable    87      87   114   114  104
## 1385             Lata Individual No Retornable     3       2     3     2    3
## 1386      Lata 16 Oz. Individual No Retornable     2       4    NA     4   NA
## 1387      Lata 235 ml Individual No Retornable     5       6     8     6    6
## 1388     1 Ltro. N.R. Individual No Retornable     2       2     1     3    3
## 1389        600 ml NR Individual No Retornable     1       1     1     1    2
## 1390    413 ml NR VId Individual No Retornable     4       3     7     5   10
## 1391    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1392     1 Ltro. N.R.   Familiar No Retornable     1       1     2     3    1
## 1393    237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 1394     200 ml Tetra Individual No Retornable     2       1     1     2    2
## 1395        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 1396      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1397        2 Lts. NR   Familiar No Retornable     6      NA     3     6    6
## 1398        400 ml NR Individual No Retornable     2       1     0     2    3
## 1399       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1400        600 ml NR Individual No Retornable     1      NA     1    NA    2
## 1401        2 Lts. NR   Familiar No Retornable     3      NA     3     3   NA
## 1402        400 ml NR Individual No Retornable     0       0     1     1    2
## 1403       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1404        600 ml NR Individual No Retornable     1       1    NA     1   NA
## 1405        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1406        400 ml NR Individual No Retornable     1       1     2     1    2
## 1407       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1408        600 ml NR Individual No Retornable    NA       1     1     1   NA
## 1409        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1410        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 1411        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1412       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 1413        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1414        2 Lts. NR   Familiar No Retornable     3      NA     3     3    6
## 1415        400 ml NR Individual No Retornable     2       1     1     2    2
## 1416       500 ml Ret Individual    Retornable     1       1     3     5    3
## 1417        600 ml NR Individual No Retornable     1       1     1     1    2
## 1418        600 ml NR Individual No Retornable     1       1     3     3    8
## 1419        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1420      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1421        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 1422     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 1423      1.5 Lts. NR Individual No Retornable     3      13     3     6    6
## 1424        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1425        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1426     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1427      1.5 Lts. NR Individual No Retornable    NA      NA     2    NA   NA
## 1428        600 ml NR Individual No Retornable     1       1     1     1    1
## 1429   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1430        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1431   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 1432        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1433     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1   NA
## 1434     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 1435        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 1436     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1437  946 ml NR Tetra   Familiar No Retornable     6       2    NA    50   NA
## 1438    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1439      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1440   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1441     1 Ltro. N.R.   Familiar No Retornable    15       8     8     6    8
## 1442        2 Lts. NR   Familiar No Retornable     6      NA     3     3    6
## 1443    235 ml NR Vid Individual No Retornable     3       3     3     3    6
## 1444 500 ml NR Vidrio Individual No Retornable    15       8    11     6   11
## 1445             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1446      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 1447        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1448 500 ml NR Vidrio Individual No Retornable     4       2     2     6    4
## 1449       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1450      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1451     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 1452     1.250 Lts NR   Familiar No Retornable    26      37    45    42   32
## 1453      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1454     1.5 Lts. Ret   Familiar    Retornable    41      35    44    32   41
## 1455     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1456    12 Oz. NR Pet Individual No Retornable     9       3     6     3    5
## 1457       12 Oz. Ret Individual    Retornable     5       6     3     6    2
## 1458        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1459      2.5 Lts. NR   Familiar No Retornable    39      46    39    25   35
## 1460 2.5 Lts. Ret Pet   Familiar    Retornable   106      92   120   123  134
## 1461    235 ml NR Vid Individual No Retornable     5       7     9     6    7
## 1462   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1463    500 ml NR PET Individual No Retornable     4       8     4     6    4
## 1464 500 ml NR Vidrio Individual No Retornable    21      27    30    34   32
## 1465       500 ml Ret Individual    Retornable    72      74    93    76   93
## 1466      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1467        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1468             Lata Individual No Retornable     3      NA     3     2    2
## 1469      Lata 16 Oz. Individual No Retornable     2      NA     2     2    2
## 1470      Lata 235 ml Individual No Retornable     2      NA     1     1    1
## 1471     1 Ltro. N.R. Individual No Retornable     2       2     3     1    3
## 1472        600 ml NR Individual No Retornable     1       1     1     1    3
## 1473     250 ml Tetra Individual No Retornable     2       0     0     0    2
## 1474    413 ml NR VId Individual No Retornable     2       0     1     3    3
## 1475      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1476     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    3
## 1477    237 ml NR Pet Individual No Retornable     1      NA    NA    NA   NA
## 1478    1 Ltro. Tetra   Familiar No Retornable     3       2     4     1    2
## 1479    1 Ltro. Tetra   Familiar No Retornable     3       2     4     1    2
## 1480    1 Ltro. Tetra   Familiar No Retornable     2       2     3     1    1
## 1481    1 Ltro. Tetra   Familiar No Retornable     3      NA     2     1    1
## 1482     200 ml Tetra Individual No Retornable     2       0     1     1    0
## 1483        600 ml NR Individual No Retornable     1       3     1     1    1
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1485        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1486      1.5 Lts. NR   Familiar No Retornable     2       4     2     2    2
## 1487        2 Lts. NR   Familiar No Retornable     8       6     3     6   NA
## 1488   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1489        400 ml NR Individual No Retornable     1       1     0     1   NA
## 1490       500 ml Ret Individual    Retornable     1      NA     2     2    2
## 1491        600 ml NR Individual No Retornable     4       3     3     1    2
## 1492             Lata Individual No Retornable     0      NA     0    NA   NA
## 1493      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1494      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1495        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1496       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1497             Lata Individual No Retornable     0      NA     0    NA   NA
## 1498      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1499   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1500       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1501        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1502             Lata Individual No Retornable     0      NA     0    NA   NA
## 1503        600 ml NR Individual No Retornable     1       3     1     3    1
## 1504        2 Lts. NR   Familiar No Retornable     6      NA     3    NA   NA
## 1505       500 ml Ret Individual    Retornable     4       2     4     6    4
## 1506      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1507      1.5 Lts. NR   Familiar No Retornable     2       2     4     4   NA
## 1508        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1509   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1510        400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1511       500 ml Ret Individual    Retornable     3      NA     2     2    2
## 1512        600 ml NR Individual No Retornable     3       3     3     1    2
## 1513             Lata Individual No Retornable     0      NA     0    NA   NA
## 1514      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1515     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1516    413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 1517        600 ml NR Individual No Retornable     2       1     3     1    4
## 1518        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1519        600 ml NR Individual No Retornable    NA       1    NA     3    3
## 1520     1 Ltro. N.R. Individual No Retornable     4       2     2     8    2
## 1521      1.5 Lts. NR Individual No Retornable     6       3     3     3    3
## 1522        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 1523     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1524        600 ml NR Individual No Retornable     1       1     1     1    1
## 1525   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1526        600 ml NR Individual No Retornable     3       2     2     3    4
## 1527   250 ml. NR PET Individual No Retornable    NA       2    NA    NA    1
## 1528     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1529    12 Oz. NR Pet Individual No Retornable     2       1    NA    NA    1
## 1530        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1531     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1532      Lata 16 Oz. Individual No Retornable     1       0    NA     0    1
## 1533   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1534     1 Ltro. N.R.   Familiar No Retornable     8       6    11     6   13
## 1535        2 Lts. NR   Familiar No Retornable     3       8     8     8    8
## 1536      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1537    235 ml NR Vid Individual No Retornable     5       2     3     4    5
## 1538 500 ml NR Vidrio Individual No Retornable    15      11    17    13   15
## 1539             Lata Individual No Retornable     1       1     1     2    2
## 1540      1.5 Lts. NR   Familiar No Retornable     4       2     4    NA    6
## 1541        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1542    235 ml NR Vid Individual No Retornable     2       2     3     1    3
## 1543 500 ml NR Vidrio Individual No Retornable    11       6     8     8   13
## 1544       500 ml Ret Individual    Retornable     2       2    NA    NA   NA
## 1545      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1546     1.250 Lts NR   Familiar No Retornable    16      11    16    16   21
## 1547      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1548     1.5 Lts. Ret   Familiar    Retornable     3       3    13     3    6
## 1549     1.750 Lts NR   Familiar No Retornable     7       7    10    10   12
## 1550    12 Oz. NR Pet Individual No Retornable     8       8     8     6    8
## 1551      2.5 Lts. NR   Familiar No Retornable    14      25    25    18   28
## 1552 2.5 Lts. Ret Pet   Familiar    Retornable     7      11    11    11    7
## 1553    235 ml NR Vid Individual No Retornable    13      16    13    14   15
## 1554    500 ml NR PET Individual No Retornable     8       8     6     4    8
## 1555 500 ml NR Vidrio Individual No Retornable    51      53    44    38   63
## 1556       500 ml Ret Individual    Retornable    66      63    80    87  110
## 1557        600 ml NR Individual No Retornable     5       8     5     8    8
## 1558             Lata Individual No Retornable     3       2     3     3    5
## 1559      Lata 16 Oz. Individual No Retornable     4       2     2     4    4
## 1560      Lata 235 ml Individual No Retornable     3       4     4     4    5
## 1561     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1562        600 ml NR Individual No Retornable     1       1     1     1    3
## 1563    237 ml NR Pet Individual No Retornable    NA       1    NA     0    1
## 1564     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 1565   250 ML. NR VID Individual No Retornable     2      NA    NA    NA   NA
## 1566    413 ml NR VId Individual No Retornable     5       3     4     3    7
## 1567    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1568     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     2    2
## 1569    237 ml NR Pet Individual No Retornable     1       0    NA     1    1
## 1570    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1571    1 Ltro. Tetra   Familiar No Retornable     1       1     1    NA    1
## 1572     200 ml Tetra Individual No Retornable     0       0     0     0    1
## 1573        600 ml NR Individual No Retornable     1       2     3     4    5
## 1574        600 ml NR Individual No Retornable     3       2     1     3    3
## 1575        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1576      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA    2
## 1577        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1578   250 ml. NR PET Individual No Retornable     1       1     1     1   NA
## 1579        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1580       500 ml Ret Individual    Retornable     2       5     1     5    3
## 1581        600 ml NR Individual No Retornable     2       3     4     3    4
## 1582      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1583        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1584       500 ml Ret Individual    Retornable     2       1     1     1    3
## 1585        600 ml NR Individual No Retornable     1       1     1     1    3
## 1586      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1587      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1588        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1589        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1590   250 ml. NR PET Individual No Retornable    NA      NA     1     1   NA
## 1591       500 ml Ret Individual    Retornable     2       1     1     1    3
## 1592        600 ml NR Individual No Retornable     2       1     1     2    2
## 1593        600 ml NR Individual No Retornable     1       2     4     2    3
## 1594        2 Lts. NR   Familiar No Retornable     3      NA     3    NA   NA
## 1595        600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 1596      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1597      1.5 Lts. NR   Familiar No Retornable     2      NA    NA     2   NA
## 1598        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 1599   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 1600        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1601       500 ml Ret Individual    Retornable     4       3     1     1    3
## 1602        600 ml NR Individual No Retornable     4       3     3     3    4
## 1603      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1604        600 ml NR Individual No Retornable     1       2     4     4    7
## 1605       12 Oz. Ret Individual    Retornable     2      NA    NA     2   NA
## 1606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1607        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1608     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2   NA
## 1609      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1610        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1611        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1612   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 1613     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1614    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1615        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 1616 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1617      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1618     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1619     1.5 Lts. Ret   Familiar    Retornable     6       6     3     6    6
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    32      14    35    32   28
## 1621    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 1622   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1623 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1624       500 ml Ret Individual    Retornable     6       4     6     8   13
## 1625      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 1626        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1627    413 ml NR VId Individual No Retornable     2      NA     3    NA   NA
## 1628     200 ml Tetra Individual No Retornable     0      NA    NA     0    1
## 1629       500 ml Ret Individual    Retornable     6       3     2    NA    1
## 1630       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 1631       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 1632        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1633       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1634       500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 1635   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1636        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1637        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1638     1 Ltro. N.R. Individual No Retornable    13       4     6    13    6
## 1639      1.5 Lts. NR Individual No Retornable    13      22    19    22   22
## 1640        5 Lts. NR   Familiar No Retornable     4       4    14     7    4
## 1641        600 ml NR Individual No Retornable    NA       3    NA     3    5
## 1642     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 1643        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1644        473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1645   250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 1646   250 ml. NR PET Individual No Retornable     1       3     3     3    2
## 1647        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1648     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1649     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1650    12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 1651        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 1652     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1653      Lata 16 Oz. Individual No Retornable     1       0     2     2    2
## 1654   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1655     1 Ltro. N.R.   Familiar No Retornable     6       4     6    11    6
## 1656       12 Oz. Ret Individual    Retornable     3       2     2    NA   NA
## 1657       2 Lts. Ret   Familiar    Retornable     8       3     6     6    3
## 1658    235 ml NR Vid Individual No Retornable     1       1     1    NA    1
## 1659 500 ml NR Vidrio Individual No Retornable     6       4     4     2    4
## 1660    235 ml NR Vid Individual No Retornable     2       3     2     3    1
## 1661 500 ml NR Vidrio Individual No Retornable     2       2     2    NA    2
## 1662       500 ml Ret Individual    Retornable     4       2     4     2    2
## 1663      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1664     1.250 Lts NR   Familiar No Retornable    13      13    13    16   13
## 1665      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1666     1.5 Lts. Ret   Familiar    Retornable    25      16    22    19   16
## 1667     1.750 Lts NR   Familiar No Retornable    12      15     2    12   10
## 1668    12 Oz. NR Pet Individual No Retornable     3       3     3     2    2
## 1669       12 Oz. Ret Individual    Retornable     2       2     2    NA    2
## 1670      2.5 Lts. NR   Familiar No Retornable    56       4     4     4   21
## 1671 2.5 Lts. Ret Pet   Familiar    Retornable     7      60    11    35   28
## 1672    235 ml NR Vid Individual No Retornable     5       6     6     6    3
## 1673   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1674    500 ml NR PET Individual No Retornable     2       4     2     2    4
## 1675 500 ml NR Vidrio Individual No Retornable    21      17    19    23   21
## 1676       500 ml Ret Individual    Retornable    68      15    44    40   49
## 1677      6.5 Oz. Ret Individual    Retornable     2      NA     1    NA    1
## 1678             Lata Individual No Retornable    NA      NA    NA     2    2
## 1679      Lata 16 Oz. Individual No Retornable    NA       2    NA    NA    2
## 1680      Lata 235 ml Individual No Retornable    NA       1    NA    NA    1
## 1681     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 1682        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1683     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1684    413 ml NR VId Individual No Retornable     3       1     3     0    1
## 1685    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1686     1 Ltro. N.R.   Familiar No Retornable     4       3     2     3    2
## 1687    237 ml NR Pet Individual No Retornable     0       0     0     0    1
## 1688    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 1689    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA    1
## 1690     200 ml Tetra Individual No Retornable     2       2     1     2    1
## 1691        600 ml NR Individual No Retornable     1       2     2     1    1
## 1692        600 ml NR Individual No Retornable     1      NA     1     2    2
## 1693     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    2
## 1694      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1695        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 1696      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1697   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 1698        400 ml NR Individual No Retornable     0       1     0     1    0
## 1699       500 ml Ret Individual    Retornable     4      NA     2     4   NA
## 1700        600 ml NR Individual No Retornable     1       2     3     1    2
## 1701        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1702       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 1703        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1704      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1705        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1706       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 1707        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1708        600 ml NR Individual No Retornable     2       1     1     2    2
## 1709        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1710        400 ml NR Individual No Retornable    NA       0     0     1    0
## 1711       500 ml Ret Individual    Retornable    NA       2    NA     4    2
## 1712        600 ml NR Individual No Retornable    NA      NA     1    NA    3
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1714      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 1715        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    6
## 1716      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1717   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 1718        400 ml NR Individual No Retornable     1       0     0     0    1
## 1719       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 1720        600 ml NR Individual No Retornable     3       1     2     2    1
## 1721        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1722        600 ml NR Individual No Retornable    NA       1    NA     3    3
## 1723     1 Ltro. N.R. Individual No Retornable     2       5     2    15    2
## 1724      1.5 Lts. NR Individual No Retornable     3       5     3    44    3
## 1725        5 Lts. NR   Familiar No Retornable    NA      NA     7    NA    7
## 1726        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1727     1 Ltro. N.R. Individual No Retornable     2       1     1     1    1
## 1728        600 ml NR Individual No Retornable     1       1     1     1    1
## 1729        600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 1730   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1731        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1732     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 1733     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA    2
## 1734    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 1735        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1736     200 ml Tetra Individual No Retornable     0       1    NA    NA    0
## 1737  946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1738  946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1739      Lata 16 Oz. Individual No Retornable     0      NA    NA    NA    1
## 1740   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1741     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    2
## 1742    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 1743 500 ml NR Vidrio Individual No Retornable    13      11    13    11   11
## 1744      1.5 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 1745        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 1746    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 1747 500 ml NR Vidrio Individual No Retornable     2       2     1     2    5
## 1748      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1749     1.250 Lts NR   Familiar No Retornable     8      21    26    16   24
## 1750     1.5 Lts. Ret   Familiar    Retornable    13      10    13    13   22
## 1751     1.750 Lts NR   Familiar No Retornable    17      17    22    15   25
## 1752    12 Oz. NR Pet Individual No Retornable     6       6     6     8    9
## 1753      2.5 Lts. NR   Familiar No Retornable    46      53    70    60   74
## 1754 2.5 Lts. Ret Pet   Familiar    Retornable    49      81    95   102  137
## 1755    235 ml NR Vid Individual No Retornable     3       3     5     4    3
## 1756 500 ml NR Vidrio Individual No Retornable    40      36    42    21   42
## 1757       500 ml Ret Individual    Retornable    91     104   137   110  123
## 1758        600 ml NR Individual No Retornable    NA      NA    NA    20   NA
## 1759             Lata Individual No Retornable     1       0    NA     2    3
## 1760      Lata 16 Oz. Individual No Retornable     2       2    NA     2   NA
## 1761     1 Ltro. N.R. Individual No Retornable     1       3     1     1    1
## 1762    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 1763        600 ml NR Individual No Retornable     1       3     1     1    3
## 1764     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 1765   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 1766    413 ml NR VId Individual No Retornable     2       0     2     3    2
## 1767     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1768     1 Ltro. N.R.   Familiar No Retornable     3      NA     1     1    2
## 1769    237 ml NR Pet Individual No Retornable     0      NA    NA     0    1
## 1770    1 Ltro. Tetra   Familiar No Retornable    NA       1     1     1   NA
## 1771    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1772    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1773     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1774        600 ml NR Individual No Retornable     1       1     1     1    2
## 1775        600 ml NR Individual No Retornable     1      NA     1     2    3
## 1776      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1777        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1778      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 1779        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1780   250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 1781        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1782       500 ml Ret Individual    Retornable     1       3     1     1    2
## 1783        600 ml NR Individual No Retornable     4       4     5     3    4
## 1784        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    2
## 1786        600 ml NR Individual No Retornable    NA      NA     2     1   NA
## 1787      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1788        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1789   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 1790       500 ml Ret Individual    Retornable     1       1     1     1    2
## 1791        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1792        600 ml NR Individual No Retornable     2       1     1     4    1
## 1793        600 ml NR Individual No Retornable     3       2     3     3    1
## 1794      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2    2
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 1797        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1798       500 ml Ret Individual    Retornable     1       3     1     1    2
## 1799        600 ml NR Individual No Retornable     4       2     3     2    3
## 1800     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 1801        600 ml NR Individual No Retornable     1       1     1     1    1
## 1802        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1803        600 ml NR Individual No Retornable    NA       3     3     1    4
## 1804     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     8   NA
## 1805      1.5 Lts. NR Individual No Retornable     6      NA     3    NA    3
## 1806        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1807     1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 1808   250 ml. NR PET Individual No Retornable    NA       1     1    NA    1
## 1809        600 ml NR Individual No Retornable     3       3     1     3    3
## 1810   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1811        2 Lts. NR   Familiar No Retornable    11      11    17    11   11
## 1812     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1813  946 ml NR Tetra   Familiar No Retornable     4       2    NA    NA   NA
## 1814    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1815      Lata 16 Oz. Individual No Retornable     1       1     1     0    0
## 1816   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 1817     1 Ltro. N.R.   Familiar No Retornable    11       6     8    13    8
## 1818        2 Lts. NR   Familiar No Retornable     8       6     6    11    8
## 1819    235 ml NR Vid Individual No Retornable     1       1     1     2    2
## 1820 500 ml NR Vidrio Individual No Retornable     6       6    11    11    8
## 1821      1.5 Lts. NR   Familiar No Retornable     4       6     4    NA   NA
## 1822        2 Lts. NR   Familiar No Retornable    NA      NA    NA    14   11
## 1823    235 ml NR Vid Individual No Retornable     1      NA     1    NA    1
## 1824 500 ml NR Vidrio Individual No Retornable     4       4     4     4    4
## 1825      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1826     1.250 Lts NR   Familiar No Retornable    24      18    26    26   32
## 1827     1.5 Lts. Ret   Familiar    Retornable    19      25    22    35   25
## 1828     1.750 Lts NR   Familiar No Retornable    25      37    37    42   47
## 1829    12 Oz. NR Pet Individual No Retornable     3       5     6     3    6
## 1830      2.5 Lts. NR   Familiar No Retornable    21      53    39    56   74
## 1831 2.5 Lts. Ret Pet   Familiar    Retornable    99     102    81   123  120
## 1832    235 ml NR Vid Individual No Retornable     6       4     6     8    7
## 1833    500 ml NR PET Individual No Retornable    13      11    13    13   21
## 1834 500 ml NR Vidrio Individual No Retornable    19      13    19    19   25
## 1835       500 ml Ret Individual    Retornable    42      32    51    53   57
## 1836             Lata Individual No Retornable     2       3     3     5    5
## 1837      Lata 235 ml Individual No Retornable     4       6     3     3    5
## 1838     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 1839        600 ml NR Individual No Retornable    NA      NA     1     1    3
## 1840     250 ml Tetra Individual No Retornable     2       2     2    NA   NA
## 1841    413 ml NR VId Individual No Retornable     7      11    16    13   16
## 1842     1 Ltro. N.R.   Familiar No Retornable     5       2     4     3    4
## 1843    237 ml NR Pet Individual No Retornable     0       1     0     1   NA
## 1844    1 Ltro. Tetra   Familiar No Retornable     1       2     2     5   NA
## 1845    1 Ltro. Tetra   Familiar No Retornable    NA       2     1     2    2
## 1846    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1847     200 ml Tetra Individual No Retornable     3       2     3     2    2
## 1848   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1849      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 1850        600 ml NR Individual No Retornable     1       1     3     2    5
## 1851        600 ml NR Individual No Retornable     1       3     1     2    4
## 1852      1.5 Lts. NR   Familiar No Retornable     2       2     4    NA   NA
## 1853        600 ml NR Individual No Retornable    NA       3     1     1   NA
## 1854        2 Lts. NR   Familiar No Retornable     6       6    NA     6    6
## 1855   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1856        600 ml NR Individual No Retornable     1       3     2     3    4
## 1857             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1858        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 1859             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1860        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 1861   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 1862             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1863        2 Lts. NR   Familiar No Retornable    NA       6     8     3   14
## 1864   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1865        600 ml NR Individual No Retornable     3      NA     3    NA    5
## 1866        2 Lts. NR   Familiar No Retornable     6      14    14    11   17
## 1867   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1868        600 ml NR Individual No Retornable     3       4     7     4    6
## 1869             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1870    413 ml NR VId Individual No Retornable     3       3     1    NA   NA
## 1871        600 ml NR Individual No Retornable     7       9     8    10    8
## 1872        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1873 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1874        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1875      Lata 235 ml Individual No Retornable    NA       1    NA    NA    0
## 1876    12 Oz. NR Pet Individual No Retornable     3      NA     2     5   NA
## 1877      2.5 Lts. NR   Familiar No Retornable    11      11    18     7   14
## 1878    235 ml NR Vid Individual No Retornable     1       1    NA    NA    2
## 1879 500 ml NR Vidrio Individual No Retornable     2       4     2    NA    2
## 1880       500 ml Ret Individual    Retornable     6      11    13    15    4
## 1881        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1882     1 Ltro. N.R. Individual No Retornable     2       3    11    11    2
## 1883      1.5 Lts. NR Individual No Retornable     6       5     6     3    3
## 1884        600 ml NR Individual No Retornable     3      NA    NA    NA    5
## 1885     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1886        600 ml NR Individual No Retornable     1       1     1     1    1
## 1887        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1888     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1889        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1890     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1891  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1892  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1893      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1894   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1895     1 Ltro. N.R.   Familiar No Retornable    13       6    11     8   11
## 1896        2 Lts. NR   Familiar No Retornable     8      NA     6     3    8
## 1897    235 ml NR Vid Individual No Retornable     5       3     4     4    3
## 1898 500 ml NR Vidrio Individual No Retornable    17      11    13    11   19
## 1899        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1900        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1901    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 1902 500 ml NR Vidrio Individual No Retornable     1       1     1     1    1
## 1903      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1904     1.250 Lts NR   Familiar No Retornable    16      16    16    13   18
## 1905     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1906     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1907    12 Oz. NR Pet Individual No Retornable    11       6     6     5    5
## 1908       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1909        2 Lts. NR   Familiar No Retornable    11       3     3     6   23
## 1910      2.5 Lts. NR   Familiar No Retornable     4       4     4     4    4
## 1911 2.5 Lts. Ret Pet   Familiar    Retornable    70       4    21    25   18
## 1912    235 ml NR Vid Individual No Retornable     4       3     4     4    5
## 1913 500 ml NR Vidrio Individual No Retornable    27      19    21     4   17
## 1914       500 ml Ret Individual    Retornable    55      44    44    44   66
## 1915        600 ml NR Individual No Retornable    NA      NA    NA    13    8
## 1916      Lata 235 ml Individual No Retornable    NA      NA    NA     2   NA
## 1917     1 Ltro. N.R. Individual No Retornable     1       2     1     1    1
## 1918        600 ml NR Individual No Retornable     1       1     1     1    1
## 1919     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1920    413 ml NR VId Individual No Retornable     0       0     0     0    4
## 1921     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1922    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 1923    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1924    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 1925    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    1
## 1926    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1927     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1928        600 ml NR Individual No Retornable     1      NA     1     1    1
## 1929      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1930        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1931      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 1932   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 1933        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1934       500 ml Ret Individual    Retornable     1       2     1     2    5
## 1935        600 ml NR Individual No Retornable     1       1     3     1    1
## 1936        2 Lts. NR   Familiar No Retornable     1       1     1     1    1
## 1937       500 ml Ret Individual    Retornable     1      NA     1    NA    1
## 1938        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1939        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1940       500 ml Ret Individual    Retornable     1      NA     1    NA    1
## 1941        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1942        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1943      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2    2
## 1944        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1945       500 ml Ret Individual    Retornable     1       2     1     2    1
## 1946        600 ml NR Individual No Retornable     1       1     3     1    1
## 1947        600 ml NR Individual No Retornable     1       1     1     1    3
## 1948        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1949     1 Ltro. N.R. Individual No Retornable     2       5    21     2    2
## 1950      1.5 Lts. NR Individual No Retornable     3       5    51     3    3
## 1951        600 ml NR Individual No Retornable    NA       3     3    NA   NA
## 1952     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1953        600 ml NR Individual No Retornable     2       1     1     1    1
## 1954        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1955   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 1956        400 ml NR Individual No Retornable    NA      NA     1     0   NA
## 1957     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1958        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1959     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1960  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1961  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1962      Lata 16 Oz. Individual No Retornable    NA       0    NA     0   NA
## 1963   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1964     1 Ltro. N.R.   Familiar No Retornable     8       8    13     6   11
## 1965        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1966    235 ml NR Vid Individual No Retornable     1       2     1     2    1
## 1967 500 ml NR Vidrio Individual No Retornable     8       6     6     8    6
## 1968        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1969        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1970 500 ml NR Vidrio Individual No Retornable     1       1     1     4    2
## 1971      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1972     1.250 Lts NR   Familiar No Retornable    13       5    16     8   13
## 1973     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1974     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1975        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 1976      2.5 Lts. NR   Familiar No Retornable     7      11    14    14   11
## 1977 2.5 Lts. Ret Pet   Familiar    Retornable   102      28    56    63   88
## 1978    235 ml NR Vid Individual No Retornable     5       5     5     4    7
## 1979   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1980    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1981 500 ml NR Vidrio Individual No Retornable    13      11    15     4   15
## 1982       500 ml Ret Individual    Retornable    55      46    59    72   89
## 1983        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 1984             Lata Individual No Retornable     3       3     2     1    2
## 1985      Lata 235 ml Individual No Retornable    NA      NA     1     2   NA
## 1986     1 Ltro. N.R. Individual No Retornable     1       3     1     4    2
## 1987    500 ml NR PET Individual No Retornable    NA       1     1     1    1
## 1988        600 ml NR Individual No Retornable     1       3     2     3    1
## 1989     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1990    413 ml NR VId Individual No Retornable     1       1     5     2    2
## 1991     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1992     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1993    1 Ltro. Tetra   Familiar No Retornable     1      NA     2     1    2
## 1994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1995    1 Ltro. Tetra   Familiar No Retornable     2       3     4     3    2
## 1996    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1997     200 ml Tetra Individual No Retornable     3       3     2     1    2
## 1998   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1999        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2000        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2001      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 2002        2 Lts. NR   Familiar No Retornable     1       3     4     1    1
## 2003   250 ml. NR PET Individual No Retornable     2       1     1    NA   NA
## 2004       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2005        600 ml NR Individual No Retornable     2       1     2     1    3
## 2006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2007        2 Lts. NR   Familiar No Retornable     4      NA     2     1    1
## 2008       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2009        600 ml NR Individual No Retornable     1      NA     2    NA    1
## 2010      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2011        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2012       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2013        600 ml NR Individual No Retornable     2      NA     1     1    1
## 2014        600 ml NR Individual No Retornable    NA      NA     1     1    2
## 2015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2016        2 Lts. NR   Familiar No Retornable     1      NA     1     1    1
## 2017   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 2018        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2019      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2020      1.5 Lts. NR   Familiar No Retornable    NA       2     2     2   NA
## 2021        2 Lts. NR   Familiar No Retornable     1       3     6     4    1
## 2022   250 ml. NR PET Individual No Retornable     1       1     1    NA   NA
## 2023        400 ml NR Individual No Retornable    NA      NA     0     0    0
## 2024       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2025        600 ml NR Individual No Retornable     3       1     3     1    2
## 2026      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2027    413 ml NR VId Individual No Retornable    NA      NA     1    NA   NA
## 2028        600 ml NR Individual No Retornable     1       1     1     1    3
## 2029        600 ml NR Individual No Retornable     3       4     3     5    4
## 2030     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    2
## 2031      1.5 Lts. NR Individual No Retornable     3       3    NA    NA    3
## 2032        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2033   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2034        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2035  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2036  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2037      Lata 16 Oz. Individual No Retornable     1       1    NA     0   NA
## 2038     1 Ltro. N.R.   Familiar No Retornable     6       2     4     2    6
## 2039        2 Lts. NR   Familiar No Retornable    14       8     8     6   14
## 2040      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2041    235 ml NR Vid Individual No Retornable     1       2     1     1    2
## 2042 500 ml NR Vidrio Individual No Retornable     6       6     6     6    6
## 2043             Lata Individual No Retornable     1       2     2     1    2
## 2044        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2045    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2046 500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 2047             Lata Individual No Retornable     1       0     1     0    1
## 2048     1.250 Lts NR   Familiar No Retornable    16      21    26    16   26
## 2049      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2050     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2051     1.750 Lts NR   Familiar No Retornable    20      20    25    20   30
## 2052    12 Oz. NR Pet Individual No Retornable     5       5     6     8    6
## 2053      2.5 Lts. NR   Familiar No Retornable    49      32    42    39   56
## 2054 2.5 Lts. Ret Pet   Familiar    Retornable    39      28    39    39   42
## 2055    235 ml NR Vid Individual No Retornable     9      10    10    11   12
## 2056 500 ml NR Vidrio Individual No Retornable    23      23    27    13   34
## 2057       500 ml Ret Individual    Retornable    15      19    27    23   32
## 2058        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 2059             Lata Individual No Retornable     3       1     3     2    3
## 2060      Lata 235 ml Individual No Retornable     2       2     1     3    2
## 2061        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2062     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2063    413 ml NR VId Individual No Retornable    NA      NA     1    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable     1       2     2     1    1
## 2065    1 Ltro. Tetra   Familiar No Retornable     3       2     2     1    1
## 2066     200 ml Tetra Individual No Retornable     1       0     1     1    0
## 2067        600 ml NR Individual No Retornable    NA      NA    NA     1    2
## 2068        600 ml NR Individual No Retornable     1       1     2     2    1
## 2069        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2070   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 2071        600 ml NR Individual No Retornable     1       1     3     1    1
## 2072   250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2073        600 ml NR Individual No Retornable     1       1     1     1    1
## 2074        2 Lts. NR   Familiar No Retornable     3      NA     3     3   NA
## 2075        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2076        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 2077   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2078        600 ml NR Individual No Retornable     2       1     3     3    2
## 2079        600 ml NR Individual No Retornable     3       3     3     5    6
## 2080        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 2081     1 Ltro. N.R. Individual No Retornable     4       2    17    NA    2
## 2082      1.5 Lts. NR Individual No Retornable     6       3    48    NA    3
## 2083        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2084        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2085     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2086      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2087     1 Ltro. N.R.   Familiar No Retornable    13       2     8    11    8
## 2088    235 ml NR Vid Individual No Retornable     2       3     2     3    2
## 2089 500 ml NR Vidrio Individual No Retornable     6       6     8    11    6
## 2090        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2091 500 ml NR Vidrio Individual No Retornable    NA      NA     2     3    2
## 2092      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2093     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 2094     1.250 Lts NR   Familiar No Retornable    18      18    24    32   34
## 2095    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2096      2.5 Lts. NR   Familiar No Retornable    46      42    NA    49   53
## 2097 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA     4   NA
## 2098    235 ml NR Vid Individual No Retornable     4       5     3     5    2
## 2099   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2100 500 ml NR Vidrio Individual No Retornable    17      15    19    13   23
## 2101       500 ml Ret Individual    Retornable    23      32    25    34   63
## 2102        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2103             Lata Individual No Retornable     2       2     2     0   NA
## 2104      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2105    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 2106        600 ml NR Individual No Retornable    NA      NA    NA     3    5
## 2107     250 ml Tetra Individual No Retornable     2       2     2    NA   NA
## 2108    413 ml NR VId Individual No Retornable     0      NA    NA     3    9
## 2109     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    1
## 2110    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2111    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2112     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2113        600 ml NR Individual No Retornable     2       1     1     4    2
## 2114      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 2115        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2116        2 Lts. NR   Familiar No Retornable     3       6     6     8    3
## 2117        600 ml NR Individual No Retornable     2       2     2     4    3
## 2118        2 Lts. NR   Familiar No Retornable     1       1     3     6    8
## 2119        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2120      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2121        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 2122        600 ml NR Individual No Retornable     1       1     1     1    1
## 2123      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2124        2 Lts. NR   Familiar No Retornable     3       3     6     3    8
## 2125        600 ml NR Individual No Retornable    NA      NA     1     3   NA
## 2126        2 Lts. NR   Familiar No Retornable     6       6     6    11    6
## 2127        600 ml NR Individual No Retornable     3       3     4     4    7
## 2128        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2129      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2130        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 2131     1 Ltro. N.R. Individual No Retornable     2      59     2    NA    2
## 2132      1.5 Lts. NR Individual No Retornable     6       3     3    NA    3
## 2133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2134     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2135        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2137   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2138        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2139     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA    1
## 2140        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2141  946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2142  946 ml NR Tetra   Familiar No Retornable     1       3     1    NA   NA
## 2143      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2144   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2145     1 Ltro. N.R.   Familiar No Retornable    34      32    42    30   36
## 2146        2 Lts. NR   Familiar No Retornable    31      28    23    28   28
## 2147    235 ml NR Vid Individual No Retornable     2       1     3     3    3
## 2148        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2149 500 ml NR Vidrio Individual No Retornable    11      17    17    19   23
## 2150        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2151             Lata Individual No Retornable     2       2     2     3    2
## 2152      1.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 2153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    28   18
## 2154      2.5 Lts. NR   Familiar No Retornable    25       4    18    NA   NA
## 2155    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2156 500 ml NR Vidrio Individual No Retornable    11       8     6     8   11
## 2157      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2158     1.250 Lts NR   Familiar No Retornable    82      82    63    79   98
## 2159     1.5 Lts. Ret   Familiar    Retornable    NA       3     3     3    6
## 2160     1.750 Lts NR   Familiar No Retornable     7       2     2     2    2
## 2161    12 Oz. NR Pet Individual No Retornable    14      21    32    23   27
## 2162        2 Lts. NR   Familiar No Retornable    65      37    37    39   42
## 2163      2.5 Lts. NR   Familiar No Retornable    77      67    49    77  120
## 2164 2.5 Lts. Ret Pet   Familiar    Retornable   130      35    92   120  141
## 2165    235 ml NR Vid Individual No Retornable     9       9    13    13   16
## 2166    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2167 500 ml NR Vidrio Individual No Retornable    38      70    46    32   61
## 2168       500 ml Ret Individual    Retornable    46      49    53    49   55
## 2169        600 ml NR Individual No Retornable    NA      NA    NA    28   NA
## 2170             Lata Individual No Retornable     5       5     8     8    6
## 2171      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2172     1 Ltro. N.R. Individual No Retornable    NA       2     1    NA    2
## 2173        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2174     250 ml Tetra Individual No Retornable     1       0     0    NA    0
## 2175   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2176    413 ml NR VId Individual No Retornable     3       5     2     3    5
## 2177     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2178    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2179     1 Ltro. N.R.   Familiar No Retornable     1       3    NA    NA    1
## 2180    1 Ltro. Tetra   Familiar No Retornable     4       1     2     1    1
## 2181    1 Ltro. Tetra   Familiar No Retornable     2       1    NA     1    2
## 2182    1 Ltro. Tetra   Familiar No Retornable     3       1     1    NA    4
## 2183    1 Ltro. Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 2184     200 ml Tetra Individual No Retornable     4       2     3     1    4
## 2185        600 ml NR Individual No Retornable    NA       2     4     2    3
## 2186        600 ml NR Individual No Retornable     3       3     3     5    1
## 2187        600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 2188      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2189        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2190   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2191        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2192       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2193        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2194      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2195        2 Lts. NR   Familiar No Retornable     6       3    NA     3    8
## 2196       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2197        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2198      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2201        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2202        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2203        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2204        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2205      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2206      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA    2
## 2207        2 Lts. NR   Familiar No Retornable     6       3     6     3    8
## 2208        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2209       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2210        600 ml NR Individual No Retornable     5       5    10    10    6
## 2211      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2212    413 ml NR VId Individual No Retornable    NA       0    NA    NA   NA
## 2213        600 ml NR Individual No Retornable     4       6     7     5   11
## 2214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2215        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 2216     1 Ltro. N.R. Individual No Retornable     2      87     2     6   15
## 2217      1.5 Lts. NR Individual No Retornable     3      82     3    NA   44
## 2218   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2219        600 ml NR Individual No Retornable    NA      15    NA    NA   10
## 2220     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 2221        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2222   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2223        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 2224   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2225        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2226     1 Ltro. N.R.   Familiar No Retornable     1       1     2    NA   NA
## 2227     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 2228    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 2230        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2231     200 ml Tetra Individual No Retornable     1      NA     0    NA   NA
## 2232  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2233  946 ml NR Tetra   Familiar No Retornable     4      NA     1    NA   NA
## 2234      Lata 450 ml Individual No Retornable     1      NA    NA    NA   NA
## 2235    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2236      Lata 16 Oz. Individual No Retornable    NA      NA     1    NA    0
## 2237     1 Ltro. N.R.   Familiar No Retornable     6       4     4    NA    4
## 2238       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 2239        2 Lts. NR   Familiar No Retornable     8       6     8    NA    3
## 2240       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 2241      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 2242    235 ml NR Vid Individual No Retornable     2       2     3    NA    2
## 2243        400 ml NR Individual No Retornable     2       2    NA    NA   NA
## 2244 500 ml NR Vidrio Individual No Retornable    15      19    25    NA   11
## 2245        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2246             Lata Individual No Retornable     0      NA     1    NA    1
## 2247      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 2248      1.5 Lts. NR   Familiar No Retornable     2       4     6    NA   NA
## 2249        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2250      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA   NA
## 2251    235 ml NR Vid Individual No Retornable     2       2     2    NA   NA
## 2252 500 ml NR Vidrio Individual No Retornable     6       6     8    NA    2
## 2253     1.250 Lts NR   Familiar No Retornable    11      11    16    NA    5
## 2254     1.5 Lts. Ret   Familiar    Retornable    13      35    35    10   13
## 2255     1.750 Lts NR   Familiar No Retornable     7      12    10    NA    5
## 2256    12 Oz. NR Pet Individual No Retornable     2       5     6    NA   NA
## 2257        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2258      2.5 Lts. NR   Familiar No Retornable    53      56    39     4   25
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable     4      28    32     4   14
## 2260    235 ml NR Vid Individual No Retornable     4       6     6     1    2
## 2261   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262    500 ml NR PET Individual No Retornable     6       4     8     2    4
## 2263 500 ml NR Vidrio Individual No Retornable    27      17    32     2   15
## 2264       500 ml Ret Individual    Retornable    36      42    27    15   30
## 2265        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2266             Lata Individual No Retornable     0       3     3    NA   NA
## 2267      Lata 16 Oz. Individual No Retornable     2       2     2    NA    2
## 2268      Lata 235 ml Individual No Retornable     1       1     2    NA   NA
## 2269     1 Ltro. N.R. Individual No Retornable     1       2     1    NA    1
## 2270        600 ml NR Individual No Retornable     2       3     1    NA    1
## 2271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2272    237 ml NR Pet Individual No Retornable    NA       1    NA    NA   NA
## 2273     250 ml Tetra Individual No Retornable     2       3     2    NA    0
## 2274   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2275    413 ml NR VId Individual No Retornable     9       2     3    NA    2
## 2276        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2277     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2278     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 2279    237 ml NR Pet Individual No Retornable    NA       0    NA    NA    0
## 2280    1 Ltro. Tetra   Familiar No Retornable     1       2     5    NA    1
## 2281    1 Ltro. Tetra   Familiar No Retornable     6       3     5    NA    2
## 2282    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2283     200 ml Tetra Individual No Retornable     1       1     1    NA    0
## 2284      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA    4
## 2285        600 ml NR Individual No Retornable     1       2     3    NA    2
## 2286        600 ml NR Individual No Retornable     1       1     2    NA    2
## 2287      1.5 Lts. NR   Familiar No Retornable     4      NA     2    NA   NA
## 2288        600 ml NR Individual No Retornable     2       1    NA    NA   NA
## 2289      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 2290        2 Lts. NR   Familiar No Retornable    NA       3     6    NA    1
## 2291   250 ml. NR PET Individual No Retornable    NA       1     2    NA   NA
## 2292        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2293       500 ml Ret Individual    Retornable     2       2     2    NA    3
## 2294        600 ml NR Individual No Retornable     2       1     1    NA    1
## 2295      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2296        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    1
## 2297       500 ml Ret Individual    Retornable     2       2     2    NA    1
## 2298        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 2299      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2300      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2301        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2302   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303       500 ml Ret Individual    Retornable     2       2     2    NA    1
## 2304        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2305        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2306        2 Lts. NR   Familiar No Retornable     3       6     8    NA    6
## 2307   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 2308       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2309        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2310      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2311      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 2312        2 Lts. NR   Familiar No Retornable     6       3     8    NA    9
## 2313   250 ml. NR PET Individual No Retornable     1       1     1    NA   NA
## 2314        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 2315       500 ml Ret Individual    Retornable     2       2     2    NA    5
## 2316        600 ml NR Individual No Retornable     3       3     4    NA    1
## 2317      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2318    413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 2319        600 ml NR Individual No Retornable     5       1     3    NA    1
## 2320        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2321        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2322     1 Ltro. N.R. Individual No Retornable    19      21    38    49   36
## 2323      1.5 Lts. NR Individual No Retornable    22      25    41    57   63
## 2324        600 ml NR Individual No Retornable    13      13    18    25   18
## 2325     1 Ltro. N.R. Individual No Retornable     1       1     2     1    1
## 2326        600 ml NR Individual No Retornable     1       1     1     1    1
## 2327   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2328        600 ml NR Individual No Retornable     4       3     3     3    5
## 2329   250 ml. NR PET Individual No Retornable     1       4     3     4    4
## 2330        400 ml NR Individual No Retornable    NA      NA     1     2   NA
## 2331     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2332     1 Ltro. N.R. Individual No Retornable     2       2     4     6    6
## 2333    12 Oz. NR Pet Individual No Retornable     1       2     2     2    3
## 2334        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 2335     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2336  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2337      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2338      Lata 450 ml Individual No Retornable     1       1     1     2    1
## 2339      Lata 16 Oz. Individual No Retornable     1       1     1     2    2
## 2340   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 2341     1 Ltro. N.R.   Familiar No Retornable    17      15    23    25   25
## 2342        2 Lts. NR   Familiar No Retornable    20      11    20    20   28
## 2343    235 ml NR Vid Individual No Retornable     4       3     5     4    4
## 2344 500 ml NR Vidrio Individual No Retornable    19      23    21    25   25
## 2345        600 ml NR Individual No Retornable    10       5     8     8    3
## 2346             Lata Individual No Retornable     5       2     3     2    3
## 2347        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2348 500 ml NR Vidrio Individual No Retornable    12      13    15    13   17
## 2349      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2350     1.250 Lts NR   Familiar No Retornable    45      40    48    55   55
## 2351      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2352     1.5 Lts. Ret   Familiar    Retornable    16      16    19    16   22
## 2353     1.750 Lts NR   Familiar No Retornable    NA       2     2     2    2
## 2354        2 Lts. NR   Familiar No Retornable    23      11    25    20   28
## 2355      2.5 Lts. NR   Familiar No Retornable    21      39    39    35   46
## 2356 2.5 Lts. Ret Pet   Familiar    Retornable     4      14    28    39   28
## 2357    235 ml NR Vid Individual No Retornable     8       6     7     9   10
## 2358   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2359    500 ml NR PET Individual No Retornable    17      13    13    13   17
## 2360 500 ml NR Vidrio Individual No Retornable    40      38    42    30   44
## 2361       500 ml Ret Individual    Retornable    42      51    63    78   89
## 2362        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2363             Lata Individual No Retornable     5       5     6     5    9
## 2364      Lata 16 Oz. Individual No Retornable     4       2     4     4    6
## 2365      Lata 235 ml Individual No Retornable     6       5     6     9    6
## 2366     1 Ltro. N.R. Individual No Retornable     1       1     1     1    6
## 2367        600 ml NR Individual No Retornable     2       1     4     7    7
## 2368    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    1
## 2369     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 2370    413 ml NR VId Individual No Retornable     5       5     7     7   10
## 2371    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2372     1 Ltro. N.R.   Familiar No Retornable     2       2     2     3    2
## 2373    237 ml NR Pet Individual No Retornable     2       2     2     2    2
## 2374    1 Ltro. Tetra   Familiar No Retornable     5       1     2     2    1
## 2375    1 Ltro. Tetra   Familiar No Retornable    10       7     5     7    6
## 2376    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2377     200 ml Tetra Individual No Retornable     0       1     0     0    0
## 2378        600 ml NR Individual No Retornable     3       1     5     3    4
## 2379        600 ml NR Individual No Retornable     1       2     3     2    3
## 2380        600 ml NR Individual No Retornable     1       1     1     1   NA
## 2381      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 2382        2 Lts. NR   Familiar No Retornable     6       6     3     8    8
## 2383       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2384        600 ml NR Individual No Retornable     4       3     3     4    3
## 2385      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2386        2 Lts. NR   Familiar No Retornable    NA       3     1    NA   NA
## 2387        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2388       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2389        600 ml NR Individual No Retornable     1       1     1     3    3
## 2390      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2391      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2392        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2393        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2394   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2395       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2396        600 ml NR Individual No Retornable     3      NA     3     3    3
## 2397        600 ml NR Individual No Retornable    NA       1    NA     2    3
## 2398        2 Lts. NR   Familiar No Retornable     8       6     8     8    8
## 2399        600 ml NR Individual No Retornable    NA       1    NA    NA    3
## 2400      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2401      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2   NA
## 2402        2 Lts. NR   Familiar No Retornable     8       3     8     8   11
## 2403   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2404        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2405       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2406        600 ml NR Individual No Retornable     4       4     3     4    5
## 2407      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2408     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2409    413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 2410        600 ml NR Individual No Retornable    10      10    10    12   11
## 2411        600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2412     1 Ltro. N.R. Individual No Retornable     4       2     2    NA    2
## 2413      1.5 Lts. NR Individual No Retornable    19       3     3    NA    3
## 2414        5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 2415     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2416        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2417        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2418     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 2419        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 2420  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    7
## 2421  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2422      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 2423   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 2424     1 Ltro. N.R.   Familiar No Retornable    11       8    11    11   NA
## 2425        2 Lts. NR   Familiar No Retornable     3       6     6     3   NA
## 2426       2 Lts. Ret   Familiar    Retornable     6       8    11     6   NA
## 2427    235 ml NR Vid Individual No Retornable     5       2     5     2   NA
## 2428 500 ml NR Vidrio Individual No Retornable    13      11    11    11   NA
## 2429             Lata Individual No Retornable     0       0    NA     0   NA
## 2430      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 2431      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 2432    235 ml NR Vid Individual No Retornable     2       1     1     2   NA
## 2433 500 ml NR Vidrio Individual No Retornable     3      NA     2     4   NA
## 2434      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2435     1.250 Lts NR   Familiar No Retornable    26      21    24    24   NA
## 2436      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2437     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 2438     1.750 Lts NR   Familiar No Retornable     5       5     2     2   NA
## 2439    12 Oz. NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 2440        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 2441       2 Lts. Ret   Familiar    Retornable    11      14     8     8   NA
## 2442      2.5 Lts. NR   Familiar No Retornable    63      NA     4    28   NA
## 2443 2.5 Lts. Ret Pet   Familiar    Retornable    21      11    25    18   NA
## 2444    235 ml NR Vid Individual No Retornable     6       7     8     6   NA
## 2445    500 ml NR PET Individual No Retornable     2       2    NA    NA    2
## 2446 500 ml NR Vidrio Individual No Retornable    17      21    17    11    2
## 2447       500 ml Ret Individual    Retornable    19      15    17    15   11
## 2448        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2449             Lata Individual No Retornable    NA       1     1     1    0
## 2450      Lata 235 ml Individual No Retornable     2      NA     1     2   NA
## 2451     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2452        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2453     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2454    413 ml NR VId Individual No Retornable     1       3     2     3    3
## 2455  946 ml NR Tetra Individual No Retornable     2       2    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA   NA
## 2457    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    3
## 2458    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2459    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2460     200 ml Tetra Individual No Retornable     0      NA    NA     0    7
## 2461        600 ml NR Individual No Retornable     1       1     1     1   NA
## 2462        600 ml NR Individual No Retornable     1       3     1     2   NA
## 2463      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 2464        600 ml NR Individual No Retornable     1       2     3     2   NA
## 2465      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2466      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2467        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2468       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 2469      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2470        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2471       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 2472        600 ml NR Individual No Retornable     1       2     1     1   NA
## 2473      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2474        600 ml NR Individual No Retornable     2       1     3     3    3
## 2475        600 ml NR Individual No Retornable    NA       1    NA     1    2
## 2476     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    2
## 2477      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 2478   250 ml. NR PET Individual No Retornable    NA      NA     3    NA   NA
## 2479     1 Ltro. N.R.   Familiar No Retornable     1       1    NA    NA   NA
## 2480        2 Lts. NR   Familiar No Retornable     6       3     3     3    3
## 2481     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2482      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2483     1 Ltro. N.R.   Familiar No Retornable     4       4     8     6    6
## 2484        2 Lts. NR   Familiar No Retornable    14       6     8     6   11
## 2485      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2486    235 ml NR Vid Individual No Retornable     1       1     1     1    2
## 2487 500 ml NR Vidrio Individual No Retornable     2       6     6     4    6
## 2488      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 2489        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 2490 500 ml NR Vidrio Individual No Retornable     2       4     2     2    2
## 2491     1.250 Lts NR   Familiar No Retornable     3      13    32    16   29
## 2492      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 2493     1.5 Lts. Ret   Familiar    Retornable    NA       3    NA    NA    3
## 2494     1.750 Lts NR   Familiar No Retornable     5      30    42    32   47
## 2495    12 Oz. NR Pet Individual No Retornable    NA      NA     2     6    8
## 2496       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2497      2.5 Lts. NR   Familiar No Retornable     4      35    49    18   35
## 2498 2.5 Lts. Ret Pet   Familiar    Retornable   236     271   359   285  313
## 2499    235 ml NR Vid Individual No Retornable    NA      NA     2     3    4
## 2500    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 2501 500 ml NR Vidrio Individual No Retornable    15      23    30    21   27
## 2502       500 ml Ret Individual    Retornable    68      61    80    82   99
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504             Lata Individual No Retornable    NA      NA    NA     2    5
## 2505      Lata 235 ml Individual No Retornable     1       3     1     2    3
## 2506     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2507        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2508     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    1
## 2509     250 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2510    413 ml NR VId Individual No Retornable     1       2    NA     2    3
## 2511     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2512     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2513    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2514     200 ml Tetra Individual No Retornable     1       4     5     2    3
## 2515        600 ml NR Individual No Retornable     1       3     3     3    2
## 2516      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2517      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 2518        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2519      Lata 235 ml Individual No Retornable     1      NA     1    NA   NA
## 2520      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2521        2 Lts. NR   Familiar No Retornable     8       6    11     3    7
## 2522       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2523        600 ml NR Individual No Retornable     3       1     2     1    3
## 2524      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2525        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2526       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2527      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2528       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2529        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2530        2 Lts. NR   Familiar No Retornable    NA      NA     3     6    7
## 2531       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 2532        600 ml NR Individual No Retornable     3       2     3     1    3
## 2533      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2534      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2535        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2536       500 ml Ret Individual    Retornable    NA       1    NA    NA    2
## 2537        600 ml NR Individual No Retornable     1       2     2     1    3
## 2538      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2539    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 2540        600 ml NR Individual No Retornable     6       4     5     5   11
## 2541        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2542        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2543     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 2544      1.5 Lts. NR Individual No Retornable     3       3     3    NA   NA
## 2545     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2546        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2547        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2548        400 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2549     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2550        2 Lts. NR   Familiar No Retornable     6      NA     6     3   11
## 2551  946 ml NR Tetra   Familiar No Retornable     0       2    NA    NA   NA
## 2552      Lata 16 Oz. Individual No Retornable     0       0     0     0   NA
## 2553   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    0
## 2554     1 Ltro. N.R.   Familiar No Retornable     8       2     2     4   13
## 2555        2 Lts. NR   Familiar No Retornable    14      20    17    14   31
## 2556       2 Lts. Ret   Familiar    Retornable    14      14    17    20    3
## 2557    235 ml NR Vid Individual No Retornable     2       1     2     1    2
## 2558 500 ml NR Vidrio Individual No Retornable     6       8     8     6    8
## 2559        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2560             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2561      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2562      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 2563        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2564      2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    4
## 2565    235 ml NR Vid Individual No Retornable    NA      NA     2     1    1
## 2566 500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 2567      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2568     1 Ltro. N.R.   Familiar No Retornable    13      NA    NA    NA   NA
## 2569     1.250 Lts NR   Familiar No Retornable    42      53    61    66   58
## 2570     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2571     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2572    12 Oz. NR Pet Individual No Retornable     9       6     8     9    6
## 2573        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 2574      2.5 Lts. NR   Familiar No Retornable    63      35    46    56   63
## 2575 2.5 Lts. Ret Pet   Familiar    Retornable    28      18    21    25   35
## 2576    235 ml NR Vid Individual No Retornable    10      11    11    12    9
## 2577    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   21
## 2578 500 ml NR Vidrio Individual No Retornable    42      23    44    30   42
## 2579       500 ml Ret Individual    Retornable    46      51    59    59   46
## 2580        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 2581             Lata Individual No Retornable     3       5     3     2    5
## 2582      Lata 235 ml Individual No Retornable     1       1     1     3    3
## 2583     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2584        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2585    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2586     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2587   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 2588    413 ml NR VId Individual No Retornable     8       7     5     3    5
## 2589    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2590     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA    1
## 2591    237 ml NR Pet Individual No Retornable     1      NA    NA    NA    0
## 2592    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2593     200 ml Tetra Individual No Retornable    NA       1     1    NA    1
## 2594        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2595        600 ml NR Individual No Retornable     4       5     3     4    4
## 2596     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2     2    2
## 2597      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2598        2 Lts. NR   Familiar No Retornable     3       6     8     6   NA
## 2599       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2600        600 ml NR Individual No Retornable     4       4     5     3    4
## 2601     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 2602        2 Lts. NR   Familiar No Retornable     6      NA     3     3   NA
## 2603        600 ml NR Individual No Retornable     3       1     4     2    1
## 2604     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA   NA
## 2605        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2606        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2607        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2608        2 Lts. NR   Familiar No Retornable     6       8     6     6    8
## 2609        600 ml NR Individual No Retornable     1      NA     4     5    1
## 2610     1 Ltro. N.R.   Familiar No Retornable     4       2     6     4    4
## 2611      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2612        2 Lts. NR   Familiar No Retornable     6       8     8     8   14
## 2613        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2614       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2615        600 ml NR Individual No Retornable     4       3     5     5    4
## 2616        600 ml NR Individual No Retornable     1       1     2     3    2
## 2617        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2618        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2619     1 Ltro. N.R. Individual No Retornable     2       2     2    NA    2
## 2620      1.5 Lts. NR Individual No Retornable     3       3     3    NA    3
## 2621        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2622     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA    1
## 2623        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2624        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2625   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2626        400 ml NR Individual No Retornable    NA      NA     3     2   NA
## 2627     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    1
## 2628        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 2629     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2630  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2631  946 ml NR Tetra   Familiar No Retornable    NA      NA     3     1   NA
## 2632      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2633      Lata 16 Oz. Individual No Retornable    NA      NA    NA     2   NA
## 2634     1 Ltro. N.R.   Familiar No Retornable     2      NA     6     6    4
## 2635       2 Lts. Ret   Familiar    Retornable    NA       3     3     3   NA
## 2636 500 ml NR Vidrio Individual No Retornable     2       2     6     2    4
## 2637      1.5 Lts. NR   Familiar No Retornable     2      NA     3     2    4
## 2638        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2639    235 ml NR Vid Individual No Retornable     1      NA     1     1   NA
## 2640 500 ml NR Vidrio Individual No Retornable     3      NA    NA    NA    1
## 2641      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2642     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 2643     1.250 Lts NR   Familiar No Retornable    13      24    26    24   32
## 2644      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 2645     1.5 Lts. Ret   Familiar    Retornable    10      10     6    16   16
## 2646     1.750 Lts NR   Familiar No Retornable     2      10    17    12   17
## 2647    12 Oz. NR Pet Individual No Retornable    11      14    12     6   11
## 2648       12 Oz. Ret Individual    Retornable     2       2    NA    NA   NA
## 2649      2.5 Lts. NR   Familiar No Retornable    21      18    28    35   21
## 2650 2.5 Lts. Ret Pet   Familiar    Retornable    42      46    92    88  123
## 2651    235 ml NR Vid Individual No Retornable     3       4     4     4    6
## 2652    500 ml NR PET Individual No Retornable    NA       2    NA     4    4
## 2653 500 ml NR Vidrio Individual No Retornable    13      19    36    17   25
## 2654       500 ml Ret Individual    Retornable    34      32    44    49   57
## 2655        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2656             Lata Individual No Retornable     2       3     2     3    3
## 2657      Lata 16 Oz. Individual No Retornable     2       2     4     2    6
## 2658      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2659     1 Ltro. N.R. Individual No Retornable     1       4     3     5    7
## 2660    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2661        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 2662     250 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 2663    413 ml NR VId Individual No Retornable     9       9    12     9    9
## 2664     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     1      NA     1    NA    1
## 2666    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2667    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2668    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2669     200 ml Tetra Individual No Retornable     0      NA     0    NA    0
## 2670        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2671        600 ml NR Individual No Retornable     1      NA     2     1    2
## 2672        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2673      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2674        2 Lts. NR   Familiar No Retornable     1       1     1     1    2
## 2675        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2676       500 ml Ret Individual    Retornable     3       1     2     2    3
## 2677        600 ml NR Individual No Retornable     1       1     2     2    2
## 2678        2 Lts. NR   Familiar No Retornable     1       1     2     1    2
## 2679       500 ml Ret Individual    Retornable     1       1     2     2    3
## 2680        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2681        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2682       500 ml Ret Individual    Retornable     1       1     2     2    3
## 2683        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2684        600 ml NR Individual No Retornable     1       3     1     1    1
## 2685        2 Lts. NR   Familiar No Retornable     4       4     4     1    2
## 2686        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2687      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 2688        2 Lts. NR   Familiar No Retornable     1       4     1     1    2
## 2689   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2690        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2691       500 ml Ret Individual    Retornable     3       1     2     2    3
## 2692        600 ml NR Individual No Retornable     1       1     2     2    3
## 2693        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2694        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2695        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2696     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 2697      1.5 Lts. NR Individual No Retornable     3       3    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 2699     200 ml Tetra Individual No Retornable    NA       0    NA     1   NA
## 2700  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2701     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    2
## 2702        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2703 500 ml NR Vidrio Individual No Retornable     6       2     6    11   11
## 2704      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 2705     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA    5
## 2706      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2707     1.750 Lts NR   Familiar No Retornable     5       7    12     7    2
## 2708    12 Oz. NR Pet Individual No Retornable     3       8     2     3    6
## 2709      2.5 Lts. NR   Familiar No Retornable     7      11    14    11   21
## 2710 2.5 Lts. Ret Pet   Familiar    Retornable     7      NA     7     7    7
## 2711    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2712 500 ml NR Vidrio Individual No Retornable    13      11    11     2   19
## 2713       500 ml Ret Individual    Retornable    19      13    23    11   30
## 2714        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2715        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2716     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2717    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2718    1 Ltro. Tetra   Familiar No Retornable     1       1     1     1    1
## 2719    1 Ltro. Tetra   Familiar No Retornable     3       2     2    NA   NA
## 2720    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721     200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 2722        600 ml NR Individual No Retornable    NA       1     1    NA   NA
## 2723        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2724        2 Lts. NR   Familiar No Retornable    NA       3    NA     3    3
## 2725        600 ml NR Individual No Retornable    NA       1    NA     1    3
## 2726        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2727       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2728        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 2729        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2730        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2731     1 Ltro. N.R. Individual No Retornable    23      15    NA    NA    2
## 2732      1.5 Lts. NR Individual No Retornable    16       3    NA    NA   NA
## 2733        5 Lts. NR   Familiar No Retornable     7       7    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2735     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2736        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2737     1 Ltro. N.R.   Familiar No Retornable     2       1     1     3    3
## 2738        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2739     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2740  946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 2741      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    0
## 2742     1 Ltro. N.R.   Familiar No Retornable     6       6     8     8   11
## 2743        2 Lts. NR   Familiar No Retornable    11      14    20    14   25
## 2744      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 2745    235 ml NR Vid Individual No Retornable     3       4     3     3    4
## 2746        400 ml NR Individual No Retornable     3       3     2     3    5
## 2747 500 ml NR Vidrio Individual No Retornable     6       8     8     4   11
## 2748             Lata Individual No Retornable     3       2     2     2    3
## 2749 500 ml NR Vidrio Individual No Retornable     4       4     4     2    8
## 2750      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2751     1.250 Lts NR   Familiar No Retornable    16      24    24    24   29
## 2752     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2753    12 Oz. NR Pet Individual No Retornable     5       5     3     5    5
## 2754      2.5 Lts. NR   Familiar No Retornable    39      32    39    32   49
## 2755 2.5 Lts. Ret Pet   Familiar    Retornable    25      32    46    35   42
## 2756    235 ml NR Vid Individual No Retornable     5       4     6     5    5
## 2757   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758    500 ml NR PET Individual No Retornable     4       8     8     4    4
## 2759 500 ml NR Vidrio Individual No Retornable    15      11    19     4   17
## 2760       500 ml Ret Individual    Retornable    17      23    25    36   32
## 2761             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2762      Lata 235 ml Individual No Retornable     3       2     2     2    3
## 2763     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2764        600 ml NR Individual No Retornable    NA      NA     2     4    3
## 2765     250 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 2766    413 ml NR VId Individual No Retornable    NA      NA    NA     3    4
## 2767    237 ml NR Pet Individual No Retornable     0      NA    NA    NA   NA
## 2768    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2769    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2770    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 2771     200 ml Tetra Individual No Retornable     0      NA    NA     2    2
## 2772        600 ml NR Individual No Retornable    NA      NA    NA     2    2
## 2773      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2774        600 ml NR Individual No Retornable     2       3     2     3    3
## 2775        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 2776   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2777       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2778        600 ml NR Individual No Retornable     3       1     2     3    3
## 2779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2780        2 Lts. NR   Familiar No Retornable    NA       3     3     6    3
## 2781       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2782        600 ml NR Individual No Retornable     1       1     1    NA    2
## 2783      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2784        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2785      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2786       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2787        600 ml NR Individual No Retornable     1       1     3     1   NA
## 2788        600 ml NR Individual No Retornable     3       1     3     3    1
## 2789        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 2790       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2791        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 2792      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2793        2 Lts. NR   Familiar No Retornable     6       6    14     8   11
## 2794   250 ml. NR PET Individual No Retornable     2       1     2     2    2
## 2795       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2796        600 ml NR Individual No Retornable     3       1     4     3    3
## 2797      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2798    413 ml NR VId Individual No Retornable     1       0     2    NA   NA
## 2799        600 ml NR Individual No Retornable    NA      NA    NA     2    3
## 2800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2801        600 ml NR Individual No Retornable     1      NA     1     3    1
## 2802     1 Ltro. N.R. Individual No Retornable     2       2    13     2    6
## 2803      1.5 Lts. NR Individual No Retornable     6       6    10    19   16
## 2804        5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2805        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2806     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2807      1.5 Lts. NR Individual No Retornable     2      NA     2     3    5
## 2808        600 ml NR Individual No Retornable     1       1     1     1    1
## 2809        600 ml NR Individual No Retornable     1       1     1     1    2
## 2810   250 ml. NR PET Individual No Retornable     1      NA    NA     2   NA
## 2811        400 ml NR Individual No Retornable    NA      NA     1     0    0
## 2812     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 2813    12 Oz. NR Pet Individual No Retornable    NA       1     1    NA   NA
## 2814        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2815     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2816  946 ml NR Tetra   Familiar No Retornable     1       1     2     1   NA
## 2817  946 ml NR Tetra   Familiar No Retornable     0       1    NA     0   NA
## 2818      Lata 235 ml Individual No Retornable     0       0    NA     0    0
## 2819      Lata 450 ml Individual No Retornable    NA       1     1     1    1
## 2820    500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 2821      Lata 16 Oz. Individual No Retornable     1       1    NA     1    1
## 2822   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2823     1 Ltro. N.R.   Familiar No Retornable    17      13    19    25   30
## 2824       12 Oz. Ret Individual    Retornable    NA       3    NA     2    2
## 2825        2 Lts. NR   Familiar No Retornable    17      14    20     6   14
## 2826       2 Lts. Ret   Familiar    Retornable    23      20    20    25    3
## 2827    235 ml NR Vid Individual No Retornable     2       1     2     4    2
## 2828 500 ml NR Vidrio Individual No Retornable     6       6     6     4    6
## 2829        600 ml NR Individual No Retornable    NA       3     3     3    3
## 2830             Lata Individual No Retornable    NA       2    NA     2   NA
## 2831      1.5 Lts. NR   Familiar No Retornable     2       6     8     8    4
## 2832        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2833      2.5 Lts. NR   Familiar No Retornable     7      11    11    18   18
## 2834    235 ml NR Vid Individual No Retornable     1       2     2     3    2
## 2835 500 ml NR Vidrio Individual No Retornable     2       2     6     2    4
## 2836       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 2837      Lata 235 ml Individual No Retornable    NA       1     2    NA   NA
## 2838      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2839     1.250 Lts NR   Familiar No Retornable    40      40    37    37   45
## 2840     1.5 Lts. Ret   Familiar    Retornable     6      10     6     3   13
## 2841     1.750 Lts NR   Familiar No Retornable     7      10    12    10   17
## 2842    12 Oz. NR Pet Individual No Retornable     2       2    NA     2    3
## 2843       12 Oz. Ret Individual    Retornable     6       6     8     6    9
## 2844        2 Lts. NR   Familiar No Retornable    11       3     8    11    8
## 2845       2 Lts. Ret   Familiar    Retornable     3       6    11     6    3
## 2846      2.5 Lts. NR   Familiar No Retornable    49      NA    11    21   35
## 2847 2.5 Lts. Ret Pet   Familiar    Retornable    49      35    46    53   46
## 2848    235 ml NR Vid Individual No Retornable     3       6     6     7    6
## 2849    500 ml NR PET Individual No Retornable     4       6     4     4    6
## 2850 500 ml NR Vidrio Individual No Retornable    23      23    23    23   25
## 2851       500 ml Ret Individual    Retornable    32      34    36    49   51
## 2852        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2853             Lata Individual No Retornable     2       3     3     2    3
## 2854      Lata 16 Oz. Individual No Retornable     2      NA     2     2    2
## 2855      Lata 235 ml Individual No Retornable     4       3     5     1    2
## 2856     1 Ltro. N.R. Individual No Retornable     1       1     1     1    3
## 2857        600 ml NR Individual No Retornable     1       1     1     2    1
## 2858    237 ml NR Pet Individual No Retornable    NA       1     0    NA    1
## 2859     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2860    413 ml NR VId Individual No Retornable     3       3     5     3    3
## 2861    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2862     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    2
## 2863    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    0
## 2864    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA    1
## 2865    1 Ltro. Tetra   Familiar No Retornable     2       2     2     1   NA
## 2866    1 Ltro. Tetra   Familiar No Retornable     4       2     3     1    3
## 2867    1 Ltro. Tetra   Familiar No Retornable     2       2     1     2    1
## 2868     200 ml Tetra Individual No Retornable     1       2     2     1    2
## 2869      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 2870        600 ml NR Individual No Retornable     1       2     1     4    1
## 2871        600 ml NR Individual No Retornable     9       4     6    11   10
## 2872      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 2873        600 ml NR Individual No Retornable     2       1     5     3    1
## 2874      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 2875   250 ml. NR PET Individual No Retornable    NA       1    NA    NA    1
## 2876       500 ml Ret Individual    Retornable     2       1    NA     2    1
## 2877        600 ml NR Individual No Retornable     1       1     1     1    2
## 2878      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2879        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 2880       500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 2881        600 ml NR Individual No Retornable     1       1     1     1    1
## 2882      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2883        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2884   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 2885       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 2886        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2887        600 ml NR Individual No Retornable     3       4     3     3    3
## 2888        2 Lts. NR   Familiar No Retornable    NA       3    NA     3    6
## 2889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 2890        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2891      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2892      1.5 Lts. NR   Familiar No Retornable     2      NA    NA     2    2
## 2893        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2894   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2895        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2896       500 ml Ret Individual    Retornable     2       1    NA     2    1
## 2897        600 ml NR Individual No Retornable     2       1     3     2    2
## 2898      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2899    413 ml NR VId Individual No Retornable     1      NA     0    NA   NA
## 2900        600 ml NR Individual No Retornable     2       1     1     2    2
## 2901        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2902     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 2903      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 2904     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2905        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2906   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2907    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2908  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   11
## 2909  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2910      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    1
## 2911     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 2912 500 ml NR Vidrio Individual No Retornable     6       4     4     4    6
## 2913        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 2914 500 ml NR Vidrio Individual No Retornable     1       1     1    NA    1
## 2915     1.250 Lts NR   Familiar No Retornable    11      11    13    16   18
## 2916     1.5 Lts. Ret   Familiar    Retornable    19      16    22    10   19
## 2917     1.750 Lts NR   Familiar No Retornable    NA      NA     2    NA   NA
## 2918    12 Oz. NR Pet Individual No Retornable     6       9     9    11    5
## 2919      2.5 Lts. NR   Familiar No Retornable    18       7    14    14   11
## 2920 2.5 Lts. Ret Pet   Familiar    Retornable    53      53    56    60   56
## 2921    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2922 500 ml NR Vidrio Individual No Retornable    11       8    15    15   15
## 2923       500 ml Ret Individual    Retornable    23      23    34    27   34
## 2924     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2925     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2926    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2927     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2928    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2929     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 2930        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2931        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2933     1 Ltro. N.R. Individual No Retornable     2       2    17    NA    2
## 2934      1.5 Lts. NR Individual No Retornable     3       3    48    NA    3
## 2935        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 2936   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2937        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2938  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2939     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2940       12 Oz. Ret Individual    Retornable     2      NA     2    NA    2
## 2941        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2942       2 Lts. Ret   Familiar    Retornable     3      NA    NA     3   NA
## 2943      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 2944    235 ml NR Vid Individual No Retornable     3      NA     2    NA    1
## 2945        400 ml NR Individual No Retornable     3       7     5     3    3
## 2946 500 ml NR Vidrio Individual No Retornable     2      11     8     6   11
## 2947      1.5 Lts. NR   Familiar No Retornable    NA       1     4    NA   NA
## 2948        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 2949    235 ml NR Vid Individual No Retornable     4       7     6     6    6
## 2950 500 ml NR Vidrio Individual No Retornable     4       3     5     2    4
## 2951      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2952     1.250 Lts NR   Familiar No Retornable    16      18    24    24   32
## 2953     1.5 Lts. Ret   Familiar    Retornable    16      19    16    19   16
## 2954     1.750 Lts NR   Familiar No Retornable    NA      NA     2     2    2
## 2955    12 Oz. NR Pet Individual No Retornable     3       8     3     5   11
## 2956        2 Lts. NR   Familiar No Retornable     8       3     8    11   14
## 2957      2.5 Lts. NR   Familiar No Retornable    14      14    25    21   32
## 2958 2.5 Lts. Ret Pet   Familiar    Retornable    70      56    74    81  123
## 2959    235 ml NR Vid Individual No Retornable     5       6     6     6    8
## 2960 500 ml NR Vidrio Individual No Retornable     8      15    15     8   15
## 2961       500 ml Ret Individual    Retornable    21      27    36    46   59
## 2962      6.5 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 2963        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2964             Lata Individual No Retornable    NA       3     2     3    2
## 2965      Lata 16 Oz. Individual No Retornable     2       2     4     2    4
## 2966      Lata 235 ml Individual No Retornable     1       2     2     2    2
## 2967     1 Ltro. N.R. Individual No Retornable     1       2     2     2    2
## 2968        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2969     250 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2970    413 ml NR VId Individual No Retornable     3       3     2     1    5
## 2971     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2972        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2973        2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 2974        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2975        600 ml NR Individual No Retornable     3       3     4     3    4
## 2976        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2977      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2978        600 ml NR Individual No Retornable    NA      NA    NA     1    3
## 2979     1 Ltro. N.R. Individual No Retornable     2       2     2    NA   15
## 2980      1.5 Lts. NR Individual No Retornable     3       3     3    NA   44
## 2981        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2982     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2983        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2984   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 2985        600 ml NR Individual No Retornable     2       1     3    NA    3
## 2986   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2987        400 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2988     1 Ltro. N.R.   Familiar No Retornable    NA       1     2    NA    1
## 2989     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2990        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 2991        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 2992     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2993  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4    2
## 2994      Lata 16 Oz. Individual No Retornable    NA       0     0     1    1
## 2995   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2996     1 Ltro. N.R.   Familiar No Retornable     6       6     8    13   17
## 2997     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2998        2 Lts. NR   Familiar No Retornable     8       6     8     6   17
## 2999       2 Lts. Ret   Familiar    Retornable    20       8    23    20    6
## 3000    235 ml NR Vid Individual No Retornable     2       2     2     2    1
## 3001        400 ml NR Individual No Retornable    NA       2     2    NA   NA
## 3002 500 ml NR Vidrio Individual No Retornable    13      11    13    13   25
## 3003      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 3004        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3005 500 ml NR Vidrio Individual No Retornable     4       1     4     4    6
## 3006      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3007      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3008     1.250 Lts NR   Familiar No Retornable    29      21    32    16   37
## 3009      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3010     1.5 Lts. Ret   Familiar    Retornable    10      13    10    10   16
## 3011     1.750 Lts NR   Familiar No Retornable     2       2     5     5    5
## 3012    12 Oz. NR Pet Individual No Retornable     8       5     8     6    9
## 3013      2.5 Lts. NR   Familiar No Retornable    46      39     4    25   35
## 3014 2.5 Lts. Ret Pet   Familiar    Retornable    46      85    53    81  116
## 3015    235 ml NR Vid Individual No Retornable     5       5     5     4    9
## 3016    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 3017 500 ml NR Vidrio Individual No Retornable     6      21    36    27   34
## 3018       500 ml Ret Individual    Retornable   108      13    44    44   85
## 3019        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 3020             Lata Individual No Retornable     2       5     3     5    8
## 3021      Lata 16 Oz. Individual No Retornable    NA      NA     4     2    6
## 3022      Lata 235 ml Individual No Retornable     3       3     6    NA    2
## 3023     1 Ltro. N.R. Individual No Retornable     1       2     2     1    4
## 3024        600 ml NR Individual No Retornable     1       2     3     1    1
## 3025    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 3026     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 3027    413 ml NR VId Individual No Retornable     2       2     4     0    5
## 3028    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3029     1 Ltro. N.R.   Familiar No Retornable     3       2     2     1    3
## 3030    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 3031    1 Ltro. Tetra   Familiar No Retornable     4       6     3     3    6
## 3032    1 Ltro. Tetra   Familiar No Retornable     4       4     1     3    3
## 3033    1 Ltro. Tetra   Familiar No Retornable     2       1     1    NA    1
## 3034    1 Ltro. Tetra   Familiar No Retornable    NA       2    NA     1    1
## 3035     200 ml Tetra Individual No Retornable     2       1     1     1    0
## 3036      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    8
## 3037        600 ml NR Individual No Retornable     1       2     5    NA    1
## 3038        600 ml NR Individual No Retornable     5      NA     3    NA    4
## 3039      1.5 Lts. NR   Familiar No Retornable     4      NA     4     2   NA
## 3040        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3041      1.5 Lts. NR   Familiar No Retornable     4      NA     2     4    4
## 3042        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3043   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 3044       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 3045        600 ml NR Individual No Retornable     3       1     3     1    4
## 3046      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3047      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3048        2 Lts. NR   Familiar No Retornable    NA      NA     3     4    6
## 3049       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 3050        600 ml NR Individual No Retornable     2       1     2     1    3
## 3051      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3052      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3053        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3054      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     4    2
## 3055   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3056       500 ml Ret Individual    Retornable    NA      NA     2     2   NA
## 3057        600 ml NR Individual No Retornable     1      NA     3     1   NA
## 3058        600 ml NR Individual No Retornable     3       2     1     2    3
## 3059      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3060        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3061       500 ml Ret Individual    Retornable    NA       2     2     2    2
## 3062        600 ml NR Individual No Retornable     1      NA    NA     3    1
## 3063      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3064      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     6    4
## 3065        2 Lts. NR   Familiar No Retornable     3       3    NA    NA   NA
## 3066   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 3067        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3068       500 ml Ret Individual    Retornable     2       2     2     2    4
## 3069        600 ml NR Individual No Retornable     3       2     3     1    5
## 3070      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3071     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3072    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3073        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3074        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3075     1 Ltro. N.R. Individual No Retornable     8       2    17    NA    2
## 3076      1.5 Lts. NR Individual No Retornable    13       3    48    NA    3
## 3077        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 3078     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3079        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3080        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3081   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 3082     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 3083        600 ml NR Individual No Retornable     1       1     1     1    3
## 3084     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3085  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3086     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3087      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3088    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3089 500 ml NR Vidrio Individual No Retornable     2       6     4     4    2
## 3090 500 ml NR Vidrio Individual No Retornable     1      NA     2    NA   NA
## 3091      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3092     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     1.5 Lts. Ret   Familiar    Retornable     6       3     3     3    3
## 3094     1.750 Lts NR   Familiar No Retornable    NA       2     2    NA   NA
## 3095      2.5 Lts. NR   Familiar No Retornable     4       7    21    18   14
## 3096 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    11    32   25
## 3097    235 ml NR Vid Individual No Retornable     1      NA    NA     1    1
## 3098 500 ml NR Vidrio Individual No Retornable    13      11    19     6   13
## 3099       500 ml Ret Individual    Retornable    32      34    40    36   40
## 3100        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 3101      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3102     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3103    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 3104        600 ml NR Individual No Retornable     1       1     2     4    3
## 3105     250 ml Tetra Individual No Retornable     1      NA     0     1    1
## 3106   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3107    413 ml NR VId Individual No Retornable     5       2     3     2    2
## 3108    1 Ltro. Tetra   Familiar No Retornable     2       2     4     2    5
## 3109     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 3110        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3111        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 3112       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3113        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3114        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3115       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3116        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3117        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3118       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3119        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3120        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3121       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3122        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3123     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 3124        600 ml NR Individual No Retornable    NA       1    NA    NA    3
## 3125        600 ml NR Individual No Retornable     1      NA     3     2    1
## 3126     1 Ltro. N.R. Individual No Retornable     6       6     8     2    4
## 3127      1.5 Lts. NR Individual No Retornable     3       6     6     6    6
## 3128        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3129        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3130   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3131        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3132        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 3133  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3134  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3135    500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3136      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3138     1 Ltro. N.R.   Familiar No Retornable     4       2    NA     2    2
## 3139       12 Oz. Ret Individual    Retornable     2       2     3     2    3
## 3140        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3141       2 Lts. Ret   Familiar    Retornable     6       6    11     8    3
## 3142    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 3143 500 ml NR Vidrio Individual No Retornable     4       4     4     8    4
## 3144        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3145      1.5 Lts. NR   Familiar No Retornable     1      NA     1    NA   NA
## 3146        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3147 500 ml NR Vidrio Individual No Retornable    NA      NA     2    NA    3
## 3148       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3149        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 3150      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3151     1.250 Lts NR   Familiar No Retornable    11      13     8     8   16
## 3152     1.5 Lts. Ret   Familiar    Retornable     3       6     6     3    3
## 3153     1.750 Lts NR   Familiar No Retornable     5       7    10     5    5
## 3154    12 Oz. NR Pet Individual No Retornable     2       3     3     5    3
## 3155        2 Lts. NR   Familiar No Retornable     6       3     6     3    3
## 3156      2.5 Lts. NR   Familiar No Retornable     4       4     7    11   11
## 3157 2.5 Lts. Ret Pet   Familiar    Retornable    42      42    53    49   77
## 3158    235 ml NR Vid Individual No Retornable    NA       1    NA     1    1
## 3159   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3160 500 ml NR Vidrio Individual No Retornable     2       4     2     2    6
## 3161       500 ml Ret Individual    Retornable     8       8     8    17   27
## 3162        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3163             Lata Individual No Retornable     1       0    NA     0    0
## 3164      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 3165     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3166        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3167    237 ml NR Pet Individual No Retornable    NA      NA    NA     1   NA
## 3168     250 ml Tetra Individual No Retornable     0      NA     0    NA    0
## 3169   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 3170    413 ml NR VId Individual No Retornable     3       1     1     1    0
## 3171     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3172    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 3173    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3174    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3175     200 ml Tetra Individual No Retornable     1       1     2     1    2
## 3176      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3177        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3178        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3179        600 ml NR Individual No Retornable    NA       1    NA     3   NA
## 3180        2 Lts. NR   Familiar No Retornable    NA       3     3    NA    3
## 3181        400 ml NR Individual No Retornable     1       1    NA     0    1
## 3182       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3183        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3184       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186        400 ml NR Individual No Retornable     0       0     0     0   NA
## 3187       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3188        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     8       3    NA     3   NA
## 3190        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3191       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3192        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3193        2 Lts. NR   Familiar No Retornable     3      NA     6     3   NA
## 3194        400 ml NR Individual No Retornable     0       0     0     1    0
## 3195       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3196        600 ml NR Individual No Retornable     1      NA     1     1    1
## 3197        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 3198        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3199        600 ml NR Individual No Retornable     1       1     3     1    3
## 3200     1 Ltro. N.R. Individual No Retornable     2       6     4     2    4
## 3201      1.5 Lts. NR Individual No Retornable     6      13    13    16   25
## 3202        600 ml NR Individual No Retornable    NA       3     3    NA   NA
## 3203     1 Ltro. N.R. Individual No Retornable    NA       1     2     1   NA
## 3204        600 ml NR Individual No Retornable    NA       1     1     1   NA
## 3205        600 ml NR Individual No Retornable     3       2     5     3    4
## 3206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3207        400 ml NR Individual No Retornable    NA      NA     2     2   NA
## 3208     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1   NA
## 3209        2 Lts. NR   Familiar No Retornable    NA       3    14     8   11
## 3210  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3211  946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3212      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 3213     1 Ltro. N.R.   Familiar No Retornable    23      21    34    25   27
## 3214        2 Lts. NR   Familiar No Retornable    20      25    28    20   34
## 3215      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 3216    235 ml NR Vid Individual No Retornable     3       6     9     4    5
## 3217 500 ml NR Vidrio Individual No Retornable    11      17    17    15   15
## 3218             Lata Individual No Retornable    NA       2    NA    NA   NA
## 3219      1.5 Lts. NR   Familiar No Retornable     1      NA     4     2    4
## 3220        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 3221      2.5 Lts. NR   Familiar No Retornable    18       7    21    25   21
## 3222 500 ml NR Vidrio Individual No Retornable     4       4     5     8    6
## 3223      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3224      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3225     1.250 Lts NR   Familiar No Retornable    58      61    63    50   63
## 3226      1.5 Lts. NR   Familiar No Retornable    35      NA    NA    NA   NA
## 3227     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 3228     1.750 Lts NR   Familiar No Retornable    15      67    62    64   74
## 3229    12 Oz. NR Pet Individual No Retornable     5       8    11     5    6
## 3230        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3231      2.5 Lts. NR   Familiar No Retornable    32      32    46    42   42
## 3232 2.5 Lts. Ret Pet   Familiar    Retornable   127     144   148   127  137
## 3233    235 ml NR Vid Individual No Retornable     5       9    11     6   11
## 3234 500 ml NR Vidrio Individual No Retornable    27      30    46    19   34
## 3235       500 ml Ret Individual    Retornable    40      49    70    53   55
## 3236        600 ml NR Individual No Retornable    NA      NA    NA    18   NA
## 3237             Lata Individual No Retornable     2       3     2     3    2
## 3238      Lata 16 Oz. Individual No Retornable     2       2     2     6    4
## 3239      Lata 235 ml Individual No Retornable     1       1     1     2    3
## 3240     1 Ltro. N.R. Individual No Retornable    NA       1     1     2    1
## 3241        600 ml NR Individual No Retornable     1       1     1     1    1
## 3242    237 ml NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 3243     250 ml Tetra Individual No Retornable    NA       0     0     0   NA
## 3244   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3245    413 ml NR VId Individual No Retornable     5       7    11     9    7
## 3246     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3247     1 Ltro. N.R.   Familiar No Retornable     1       2     1     2    3
## 3248    237 ml NR Pet Individual No Retornable     0       1     1    NA   NA
## 3249    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1    1
## 3250    1 Ltro. Tetra   Familiar No Retornable    NA       1     1     1   NA
## 3251     200 ml Tetra Individual No Retornable     1       1     1     2    1
## 3252        600 ml NR Individual No Retornable     4       5     8     8    6
## 3253        600 ml NR Individual No Retornable     4       3     6     3    4
## 3254      1.5 Lts. NR   Familiar No Retornable     2       2     2     2   NA
## 3255        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 3256        2 Lts. NR   Familiar No Retornable    11       8    20    11   11
## 3257       500 ml Ret Individual    Retornable    NA      NA     2     2    2
## 3258        600 ml NR Individual No Retornable     2       6     5     4    8
## 3259        2 Lts. NR   Familiar No Retornable    NA      NA     1     1   NA
## 3260      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262        600 ml NR Individual No Retornable     1       5     6     5    3
## 3263        2 Lts. NR   Familiar No Retornable    11       8    20    11   17
## 3264       500 ml Ret Individual    Retornable     2       2    NA    NA    2
## 3265        600 ml NR Individual No Retornable     4       5     6     4    5
## 3266        2 Lts. NR   Familiar No Retornable    14      20    17    20   20
## 3267   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3268        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3269       500 ml Ret Individual    Retornable     2       2     2     2    2
## 3270        600 ml NR Individual No Retornable     5       8     4     6    6
## 3271    413 ml NR VId Individual No Retornable    NA       0    NA    NA   NA
## 3272        600 ml NR Individual No Retornable     6       5     6     3    6
## 3273        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3274        600 ml NR Individual No Retornable     5       5     6     6    8
## 3275     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3276      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 3277   300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3278        5 Lts. NR   Familiar No Retornable    11      NA    NA    NA   NA
## 3279        600 ml NR Individual No Retornable    NA       3     3    NA   10
## 3280     1 Ltro. N.R. Individual No Retornable     1       1     6     1    1
## 3281      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3282        600 ml NR Individual No Retornable     1       1     1     1    1
## 3283   300 ML. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3284   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3285        600 ml NR Individual No Retornable     1       2     3     1    1
## 3286   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3287        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1    1
## 3289     1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 3290        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3291     200 ml Tetra Individual No Retornable     1       1    NA    NA   NA
## 3292  946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    2
## 3293  946 ml NR Tetra   Familiar No Retornable     1       0    NA    NA   NA
## 3294    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 3295      Lata 16 Oz. Individual No Retornable    NA       0     0     1    0
## 3296   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3297     1 Ltro. N.R.   Familiar No Retornable     2       6     8     8    8
## 3298        2 Lts. NR   Familiar No Retornable     3       6     3     6   11
## 3299       2 Lts. Ret   Familiar    Retornable    17      25    25    20    6
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3301    235 ml NR Vid Individual No Retornable     3       3     3     1    4
## 3302        400 ml NR Individual No Retornable     2       2     2     3    3
## 3303 500 ml NR Vidrio Individual No Retornable     4      11     8     6    8
## 3304             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3305      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 3306        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6    3
## 3307    235 ml NR Vid Individual No Retornable    NA       1     1     1    1
## 3308 500 ml NR Vidrio Individual No Retornable     2       2     4     6    4
## 3309       500 ml Ret Individual    Retornable    NA      NA    NA    NA    4
## 3310     1.250 Lts NR   Familiar No Retornable    13      21    21    21   29
## 3311      1.5 Lts. NR   Familiar No Retornable    10       3    NA    NA   NA
## 3312     1.5 Lts. Ret   Familiar    Retornable    13      19    16    10   16
## 3313     1.750 Lts NR   Familiar No Retornable     5      17    12    10   10
## 3314    12 Oz. NR Pet Individual No Retornable     6       6    11     5    5
## 3315        2 Lts. NR   Familiar No Retornable    11      11    11    11   11
## 3316       2 Lts. Ret   Familiar    Retornable     6      11    17    11    8
## 3317      2.5 Lts. NR   Familiar No Retornable    49       4     7    67   21
## 3318 2.5 Lts. Ret Pet   Familiar    Retornable    46       4    56    60   92
## 3319    235 ml NR Vid Individual No Retornable     4       5     6     4    6
## 3320   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3321 500 ml NR Vidrio Individual No Retornable     2       6    30    13   27
## 3322       500 ml Ret Individual    Retornable    34      44    70    42   72
## 3323        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 3324             Lata Individual No Retornable    NA      NA    NA     3    3
## 3325      Lata 16 Oz. Individual No Retornable    NA      NA    NA     2    2
## 3326      Lata 235 ml Individual No Retornable    NA       4    NA    NA    1
## 3327     1 Ltro. N.R. Individual No Retornable     1       1     2     2    3
## 3328        600 ml NR Individual No Retornable     1       1     1     3    2
## 3329     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3330    237 ml NR Pet Individual No Retornable    NA       1    NA     2    1
## 3331     250 ml Tetra Individual No Retornable     4       4     8     6    9
## 3332    413 ml NR VId Individual No Retornable     0       1     2     3    5
## 3333  946 ml NR Tetra Individual No Retornable     4      NA     8     6    4
## 3334      Lata 335 ml Individual No Retornable     0       1    NA     1    1
## 3335     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3336    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3337     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3338    237 ml NR Pet Individual No Retornable     1       1     0     0    1
## 3339    1 Ltro. Tetra   Familiar No Retornable     1       3     2     1    2
## 3340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3341    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3342    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1    1
## 3343     200 ml Tetra Individual No Retornable     2       2     2     2    4
## 3344        600 ml NR Individual No Retornable     1       2     4     3    3
## 3345        600 ml NR Individual No Retornable     1       2     2     1    3
## 3346        600 ml NR Individual No Retornable     1       1     1     3    1
## 3347      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3348        2 Lts. NR   Familiar No Retornable    NA       3    11     8    3
## 3349   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3350        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3351       500 ml Ret Individual    Retornable    NA       2     3    NA    6
## 3352        600 ml NR Individual No Retornable     1       1     3     3    3
## 3353      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3354        2 Lts. NR   Familiar No Retornable     3      NA    NA     6    6
## 3355       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 3356        600 ml NR Individual No Retornable     3       3     3     2    4
## 3357      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3358      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3359        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3360   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3361       500 ml Ret Individual    Retornable    NA      NA     3     2    2
## 3362        600 ml NR Individual No Retornable     1       1     1     1    2
## 3363        600 ml NR Individual No Retornable     2       1     3     1    2
## 3364        2 Lts. NR   Familiar No Retornable    NA       6     8     6    8
## 3365       500 ml Ret Individual    Retornable     2       2     2     4    2
## 3366        600 ml NR Individual No Retornable    NA       1     1    NA    4
## 3367      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3368     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3369      1.5 Lts. NR   Familiar No Retornable     2       2     2     2   NA
## 3370        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6    3
## 3371   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3372        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3373       500 ml Ret Individual    Retornable     2      NA     5     2    6
## 3374        600 ml NR Individual No Retornable    NA      NA     3     1    4
## 3375      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3376     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3377    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3378        600 ml NR Individual No Retornable     1       3     4     6    3
## 3379        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3380     1 Ltro. N.R. Individual No Retornable    NA      19    17    NA    4
## 3381      1.5 Lts. NR Individual No Retornable    NA       3    48    NA    3
## 3382        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 3383     1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 3384     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3385  946 ml NR Tetra   Familiar No Retornable     1       0     1    NA   NA
## 3386  946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0   NA
## 3387      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3388     1 Ltro. N.R.   Familiar No Retornable     6       4    NA    NA   NA
## 3389        2 Lts. NR   Familiar No Retornable    NA       6     8     6    8
## 3390      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 3391    235 ml NR Vid Individual No Retornable    NA      NA     2    NA   NA
## 3392 500 ml NR Vidrio Individual No Retornable     6       2     4    NA    6
## 3393      1.5 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3394 500 ml NR Vidrio Individual No Retornable     1       2    NA    NA   NA
## 3395      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3396     1.250 Lts NR   Familiar No Retornable     5       5    NA     5   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398     1.750 Lts NR   Familiar No Retornable     7      12    10    12   10
## 3399    12 Oz. NR Pet Individual No Retornable    NA      NA     2     2   NA
## 3400        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3401      2.5 Lts. NR   Familiar No Retornable     4       7    14    18    7
## 3402 2.5 Lts. Ret Pet   Familiar    Retornable    NA      56    NA    NA   39
## 3403    235 ml NR Vid Individual No Retornable     5       3     5     2    3
## 3404 500 ml NR Vidrio Individual No Retornable    NA      NA    13    13   13
## 3405       500 ml Ret Individual    Retornable    19      19    21    15   19
## 3406        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3407             Lata Individual No Retornable    NA       1     1     2    2
## 3408      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3409     250 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 3410    413 ml NR VId Individual No Retornable     0       5     2     6    2
## 3411      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 3412     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3413    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3414    1 Ltro. Tetra   Familiar No Retornable     6       2     1     1    1
## 3415    1 Ltro. Tetra   Familiar No Retornable     3       2    NA     1    1
## 3416    1 Ltro. Tetra   Familiar No Retornable     3       5     4     1    1
## 3417     200 ml Tetra Individual No Retornable    NA       1     1    NA    0
## 3418        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3419        600 ml NR Individual No Retornable    NA       1     2    NA   NA
## 3420        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3421       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3422        600 ml NR Individual No Retornable     2       3     2     1    1
## 3423        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3424       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3425        600 ml NR Individual No Retornable    NA       1     1    NA   NA
## 3426        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3427       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3428        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3429        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3430        600 ml NR Individual No Retornable     1       2    NA     1    1
## 3431        2 Lts. NR   Familiar No Retornable     3       3     3     6    6
## 3432       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3433        600 ml NR Individual No Retornable     3       1     2     2    2
## 3434        600 ml NR Individual No Retornable     1       1     8    NA    3
## 3435      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3436        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 3437     1 Ltro. N.R. Individual No Retornable     4       2     2     2    2
## 3438      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3439        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3440     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3441        600 ml NR Individual No Retornable    NA      NA     1     1   NA
## 3442        600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 3443     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3445        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 3446  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3448   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3449     1 Ltro. N.R.   Familiar No Retornable     6       2     2     2    4
## 3450      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3451    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3452        400 ml NR Individual No Retornable     2      NA     2    NA   NA
## 3453 500 ml NR Vidrio Individual No Retornable     6       6     6     8    4
## 3454      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3455        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3456    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3457 500 ml NR Vidrio Individual No Retornable     4       5     4     4    3
## 3458     1.250 Lts NR   Familiar No Retornable     8      11    18    18   18
## 3459     1.5 Lts. Ret   Familiar    Retornable    22       3    10    13   19
## 3460     1.750 Lts NR   Familiar No Retornable    10       2     2     2   NA
## 3461    12 Oz. NR Pet Individual No Retornable     6       5     3     5    8
## 3462      2.5 Lts. NR   Familiar No Retornable    25       7    28    21   25
## 3463 2.5 Lts. Ret Pet   Familiar    Retornable    21      25    46    46   70
## 3464    235 ml NR Vid Individual No Retornable     4       3     4     6    5
## 3465    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3466 500 ml NR Vidrio Individual No Retornable     6       6     6    11   15
## 3467       500 ml Ret Individual    Retornable    27      23    30    38   51
## 3468        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3469             Lata Individual No Retornable    NA      NA    NA    NA    2
## 3470     1 Ltro. N.R. Individual No Retornable     1       2     2     3    3
## 3471        600 ml NR Individual No Retornable     3       3     1     4    4
## 3472     250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3473   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 3474    413 ml NR VId Individual No Retornable     1      NA     0     0    2
## 3475     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3476    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3477     1 Ltro. N.R.   Familiar No Retornable     1       1    NA    NA   NA
## 3478    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3479    1 Ltro. Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 3480    1 Ltro. Tetra   Familiar No Retornable     3       4     3     3    5
## 3481    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3482     200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3483      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 3484        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 3485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3486      1.5 Lts. NR   Familiar No Retornable    NA       2     4     2   NA
## 3487        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3488      2.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 3489   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3490       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3491        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3492        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 3493       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3494        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3495        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3496       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3497        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3498        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3499      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 3501       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 3502        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3503        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3504      2.5 Lts. NR   Familiar No Retornable     4       2     4     2    5
## 3505        400 ml NR Individual No Retornable    NA      NA     1     0   NA
## 3506       500 ml Ret Individual    Retornable     1      NA     3     1    1
## 3507        600 ml NR Individual No Retornable     1       1     1     1    1
## 3508        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3509        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3510     1 Ltro. N.R. Individual No Retornable     6      10    27    19   15
## 3511      1.5 Lts. NR Individual No Retornable    16       8    60    48   19
## 3512        600 ml NR Individual No Retornable     3       8    10    10   10
## 3513     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3514        600 ml NR Individual No Retornable     1       1     1     1    1
## 3515   300 ML. NR PET Individual No Retornable     3       2     2     1    3
## 3516        473 ml NR Individual No Retornable     0       0     0     0    1
## 3517        600 ml NR Individual No Retornable     2       2     2     1    2
## 3518   250 ml. NR PET Individual No Retornable     2       2     1     1    3
## 3519        400 ml NR Individual No Retornable     1       2     1     1    1
## 3520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3521    12 Oz. NR Pet Individual No Retornable     1      NA     2     1    1
## 3522        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3523      Lata 16 Oz. Individual No Retornable    NA       1    NA    NA   NA
## 3524     1 Ltro. N.R.   Familiar No Retornable    11      11     6    11   11
## 3525    235 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3526 500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 3527      1.5 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3528        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3529    235 ml NR Vid Individual No Retornable    NA       3     3     2    1
## 3530 500 ml NR Vidrio Individual No Retornable     2       3     6     4    4
## 3531        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3532      Lata 235 ml Individual No Retornable    NA      NA    NA     2   NA
## 3533      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3534     1.250 Lts NR   Familiar No Retornable    24      21    21    26   32
## 3535     1.5 Lts. Ret   Familiar    Retornable    19      16    22    19   22
## 3536     1.750 Lts NR   Familiar No Retornable     2       7    10     5    7
## 3537    12 Oz. NR Pet Individual No Retornable     3       6     5     9    5
## 3538      2.5 Lts. NR   Familiar No Retornable     4       7     7     7    7
## 3539 2.5 Lts. Ret Pet   Familiar    Retornable    67      63   113    70  109
## 3540    235 ml NR Vid Individual No Retornable     4       4     3     4    6
## 3541 500 ml NR Vidrio Individual No Retornable    21      25    17    11   27
## 3542       500 ml Ret Individual    Retornable    68      59    70    66   97
## 3543        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3544      Lata 16 Oz. Individual No Retornable     2       2     2     2    6
## 3545      Lata 235 ml Individual No Retornable     3       3     2     7    4
## 3546     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3547        600 ml NR Individual No Retornable     1       1     1     1    1
## 3548     250 ml Tetra Individual No Retornable     2       2     2     2    2
## 3549    413 ml NR VId Individual No Retornable     4       2     3     3    3
## 3550     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3551     1 Ltro. N.R.   Familiar No Retornable     4       3     2     3    2
## 3552    237 ml NR Pet Individual No Retornable     0       1     0     1    0
## 3553    1 Ltro. Tetra   Familiar No Retornable     1      NA     1     1    1
## 3554    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3555    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3556     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3557      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3558        600 ml NR Individual No Retornable     1       1     1     2    3
## 3559        600 ml NR Individual No Retornable     1       1     1     2    1
## 3560        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3561      1.5 Lts. NR   Familiar No Retornable     2       2     4     2    2
## 3562        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3563   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3564        400 ml NR Individual No Retornable     2       1     2     1    2
## 3565       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3566        600 ml NR Individual No Retornable     2       1     1     1    1
## 3567        2 Lts. NR   Familiar No Retornable     1      NA     2     1    1
## 3568       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3569        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3570        400 ml NR Individual No Retornable     2       2     1     1    1
## 3571       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3572        600 ml NR Individual No Retornable     2       1     1     1   NA
## 3573        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3574        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3575       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3577      1.5 Lts. NR   Familiar No Retornable     4       2     2     2    2
## 3578        2 Lts. NR   Familiar No Retornable    NA       3     1    NA   NA
## 3579        400 ml NR Individual No Retornable     2       2     1     1    2
## 3580       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3581        600 ml NR Individual No Retornable     1       1     1     1    1
## 3582     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3583    413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 3584        600 ml NR Individual No Retornable     2       3     4     2    3
## 3585      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3586        600 ml NR Individual No Retornable     1       1     3     4    4
## 3587     1 Ltro. N.R. Individual No Retornable     2       4     4     2   17
## 3588      1.5 Lts. NR Individual No Retornable     6       3     3     3   51
## 3589    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA    2
## 3590        600 ml NR Individual No Retornable    NA       3     3     3    3
## 3591     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3592        600 ml NR Individual No Retornable     1       1     1     1    1
## 3593        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3594   250 ml. NR PET Individual No Retornable     2      NA    NA     1    3
## 3595     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    2
## 3596     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3597    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3598        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 3599     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3600  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3601  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3602    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3603      Lata 16 Oz. Individual No Retornable    NA       0    NA     0    1
## 3604   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3605     1 Ltro. N.R.   Familiar No Retornable     4       4     2     4    4
## 3606        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3607      2.5 Lts. NR   Familiar No Retornable     4       7    11    18    7
## 3608    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 3609 500 ml NR Vidrio Individual No Retornable     6       6     8     6    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA    5
## 3611             Lata Individual No Retornable    NA      NA     1    NA   NA
## 3612      1.5 Lts. NR   Familiar No Retornable     2       5     8     5    2
## 3613        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   10
## 3614    235 ml NR Vid Individual No Retornable     2       1     1     1    2
## 3615 500 ml NR Vidrio Individual No Retornable     3       2     4     3    3
## 3616       500 ml Ret Individual    Retornable     2       4     2     2    4
## 3617             Lata Individual No Retornable     2      NA    NA    NA   NA
## 3618      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3619      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3620     1.250 Lts NR   Familiar No Retornable     5       8     8    11   16
## 3621      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3622     1.5 Lts. Ret   Familiar    Retornable     6       6    10    13   10
## 3623     1.750 Lts NR   Familiar No Retornable     2       7    12     7    2
## 3624    12 Oz. NR Pet Individual No Retornable     9       9     9     8    9
## 3625      2.5 Lts. NR   Familiar No Retornable    14      14    25    21   35
## 3626 2.5 Lts. Ret Pet   Familiar    Retornable    11       7    35    18   35
## 3627    235 ml NR Vid Individual No Retornable     7       6     7     6   10
## 3628   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3629 500 ml NR Vidrio Individual No Retornable    30      21    30    11   32
## 3630       500 ml Ret Individual    Retornable    34      32    46    46   51
## 3631      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3632        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 3633             Lata Individual No Retornable     2       2     2     2    5
## 3634      Lata 16 Oz. Individual No Retornable     2      NA     2     2    4
## 3635      Lata 235 ml Individual No Retornable     1       1     1     3    1
## 3636     1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 3637        600 ml NR Individual No Retornable     1       1     1     1    1
## 3638     250 ml Tetra Individual No Retornable     0       0     1     0    0
## 3639    413 ml NR VId Individual No Retornable     3       4     3     2    3
## 3640  946 ml NR Tetra Individual No Retornable     2      NA     2     2   NA
## 3641     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3642     1 Ltro. N.R.   Familiar No Retornable     2       1     1     2    2
## 3643    237 ml NR Pet Individual No Retornable     1      NA     0     0    1
## 3644    1 Ltro. Tetra   Familiar No Retornable     1       1     1    NA    1
## 3645    1 Ltro. Tetra   Familiar No Retornable     2      NA     5    NA    1
## 3646    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3647     200 ml Tetra Individual No Retornable     1       2     1     1    2
## 3648      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3649        600 ml NR Individual No Retornable    NA       1     3     1    1
## 3650        600 ml NR Individual No Retornable     1       1     1     3    2
## 3651      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 3652        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3653      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3654        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3655   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 3656        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3657       500 ml Ret Individual    Retornable    NA       3     5     2    1
## 3658        600 ml NR Individual No Retornable     3       3     2     2    3
## 3659        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    3
## 3660       500 ml Ret Individual    Retornable    NA       1     1     2    1
## 3661        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 3662        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3663        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3664   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 3665       500 ml Ret Individual    Retornable    NA       1     1     2    1
## 3666        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3667        600 ml NR Individual No Retornable     2       2     2     2    5
## 3668        2 Lts. NR   Familiar No Retornable     3       3     6    NA    6
## 3669       500 ml Ret Individual    Retornable     4      NA     2     2    2
## 3670        600 ml NR Individual No Retornable     2       1     1     1    1
## 3671      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 3672     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3673        2 Lts. NR   Familiar No Retornable    NA       3     6    NA    3
## 3674   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3675        400 ml NR Individual No Retornable     1      NA     0     0    1
## 3676       500 ml Ret Individual    Retornable     2       3     1     2    3
## 3677        600 ml NR Individual No Retornable     4       4     3     4    6
## 3678    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3679        600 ml NR Individual No Retornable     6       1     4     5    5
## 3680        600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 3681      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3682        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3683     1 Ltro. N.R. Individual No Retornable     2       4     4    11    8
## 3684      1.5 Lts. NR Individual No Retornable     6      10     6    13   16
## 3685        600 ml NR Individual No Retornable     5       3     8     3    5
## 3686     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 3687        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3688        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3689   250 ml. NR PET Individual No Retornable     1       2     1     3    2
## 3690     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 3691     1 Ltro. N.R. Individual No Retornable     2       2     2     2   NA
## 3692        2 Lts. NR   Familiar No Retornable     3       3    NA     8    3
## 3693      Lata 16 Oz. Individual No Retornable    NA      NA     0     0    0
## 3694   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3695     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6    6
## 3696       12 Oz. Ret Individual    Retornable     2       2    NA     2    3
## 3697      2.5 Lts. NR   Familiar No Retornable    11      NA     4    NA    7
## 3698    235 ml NR Vid Individual No Retornable     1       1     3     1    2
## 3699 500 ml NR Vidrio Individual No Retornable     4       8     6     6    6
## 3700      1.5 Lts. NR   Familiar No Retornable    NA       4     2    NA    2
## 3701        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3702      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3703    235 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 3704 500 ml NR Vidrio Individual No Retornable    NA       2     4     2    2
## 3705      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3706     1.250 Lts NR   Familiar No Retornable    NA       3     5     8    5
## 3707      1.5 Lts. NR   Familiar No Retornable    19       6    NA    NA   NA
## 3708     1.5 Lts. Ret   Familiar    Retornable    16      10     6     6   10
## 3709     1.750 Lts NR   Familiar No Retornable     2      12    32    22   37
## 3710    12 Oz. NR Pet Individual No Retornable     5       5     5     5    5
## 3711       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3712      2.5 Lts. NR   Familiar No Retornable    11      14    25    14   18
## 3713 2.5 Lts. Ret Pet   Familiar    Retornable    88      70    85    81  116
## 3714    235 ml NR Vid Individual No Retornable     5       2     4     4    4
## 3715    500 ml NR PET Individual No Retornable     6       4     4     6    4
## 3716 500 ml NR Vidrio Individual No Retornable    15      15    19    13   25
## 3717       500 ml Ret Individual    Retornable    57      53    59    61   57
## 3718      6.5 Oz. Ret Individual    Retornable    NA       1     2     2    2
## 3719        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3720             Lata Individual No Retornable     2       3     3     2    6
## 3721     1 Ltro. N.R. Individual No Retornable     1      NA     2     2    3
## 3722        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3723     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3724     250 ml Tetra Individual No Retornable     2       1     0     0    0
## 3725   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3726    413 ml NR VId Individual No Retornable    10       4     9    10   14
## 3727      Lata 335 ml Individual No Retornable     1       3    NA     3    0
## 3728     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA    1
## 3729    1 Ltro. Tetra   Familiar No Retornable     2       2     2     2    1
## 3730    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 3731    1 Ltro. Tetra   Familiar No Retornable     1       2     1    NA    3
## 3732    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA    1
## 3733     200 ml Tetra Individual No Retornable     2       2     2     2    2
## 3734        600 ml NR Individual No Retornable    NA      NA     1     1    3
## 3735        600 ml NR Individual No Retornable    NA       4     4     1    3
## 3736        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3737      1.5 Lts. NR   Familiar No Retornable     2      NA     8     2   NA
## 3738        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3739      2.5 Lts. NR   Familiar No Retornable     4       4    NA     4    4
## 3740   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 3741       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 3742        600 ml NR Individual No Retornable     3       1     1     3    3
## 3743      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3744        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3745      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3746        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3747      1.5 Lts. NR   Familiar No Retornable     2       2     2     4   NA
## 3748      2.5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 3749   250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3750        600 ml NR Individual No Retornable     4       3     1     3    1
## 3751        600 ml NR Individual No Retornable    NA       4     1     3    3
## 3752        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3753      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 3754       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 3755        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 3756      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3757      1.5 Lts. NR   Familiar No Retornable     4       4     6     2    4
## 3758        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 3759      2.5 Lts. NR   Familiar No Retornable     4       4     4     7   NA
## 3760   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3761        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3762       500 ml Ret Individual    Retornable     2      NA     4     2    4
## 3763        600 ml NR Individual No Retornable     5       3     4     3    5
## 3764      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3765        600 ml NR Individual No Retornable     1       1    NA     2    1
## 3766      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 3767        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3768     1 Ltro. N.R. Individual No Retornable     2       8     4    NA    6
## 3769      1.5 Lts. NR Individual No Retornable    10       6     6    NA    6
## 3770        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 3771        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3772        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3773     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3774      Lata 450 ml Individual No Retornable     1       1    NA    NA   NA
## 3775    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3776      Lata 16 Oz. Individual No Retornable     0       1    NA    NA    0
## 3777     1 Ltro. N.R.   Familiar No Retornable     2       4    NA    NA    2
## 3778        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3779      2.5 Lts. NR   Familiar No Retornable    11       7    NA    NA   NA
## 3780    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3781 500 ml NR Vidrio Individual No Retornable     4       4     2    NA    4
## 3782             Lata Individual No Retornable    NA       0     0    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3784 500 ml NR Vidrio Individual No Retornable     2       2    NA    NA    1
## 3785      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3786     1.250 Lts NR   Familiar No Retornable     5       8    NA    NA    3
## 3787     1.5 Lts. Ret   Familiar    Retornable    22      22     6    NA    6
## 3788     1.750 Lts NR   Familiar No Retornable    NA       7    NA    NA   NA
## 3789    12 Oz. NR Pet Individual No Retornable     5       3    NA    NA    2
## 3790      2.5 Lts. NR   Familiar No Retornable    14       7     4    NA    7
## 3791 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    14    NA   18
## 3792    235 ml NR Vid Individual No Retornable     3       2     1    NA    1
## 3793 500 ml NR Vidrio Individual No Retornable    13      11     2    NA    8
## 3794       500 ml Ret Individual    Retornable    42      34    17    NA   25
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796             Lata Individual No Retornable    NA       0     1    NA    3
## 3797      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3798        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3799    237 ml NR Pet Individual No Retornable    NA       0    NA    NA   NA
## 3800     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 3801    413 ml NR VId Individual No Retornable     1       2    NA    NA    0
## 3802     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3803        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3804        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3805      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3806        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3807        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    1
## 3808        400 ml NR Individual No Retornable     1       1     0    NA   NA
## 3809       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3810        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3811        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    1
## 3812       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3813        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3816        400 ml NR Individual No Retornable     1       1     1    NA   NA
## 3817       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3818        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3819        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3820        2 Lts. NR   Familiar No Retornable     3       6    NA    NA    1
## 3821       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 3822        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3823        2 Lts. NR   Familiar No Retornable     3       3     3    NA    1
## 3824   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3825        400 ml NR Individual No Retornable     1       1     0    NA    0
## 3826       500 ml Ret Individual    Retornable     1       3    NA    NA   NA
## 3827        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3828        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3829        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3830     1 Ltro. N.R. Individual No Retornable     2       4     6     2    6
## 3831      1.5 Lts. NR Individual No Retornable     3       3    10     3    3
## 3832        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3833     1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 3834        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3835        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3836     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 3837        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 3838  946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 3839  946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 3840     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 3841       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3842    235 ml NR Vid Individual No Retornable     3       2     2     2    1
## 3843 500 ml NR Vidrio Individual No Retornable     4       4     4     2    2
## 3844             Lata Individual No Retornable    NA       1    NA    NA   NA
## 3845      1.5 Lts. NR   Familiar No Retornable     2       1     1    NA   NA
## 3846        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3848 500 ml NR Vidrio Individual No Retornable     1       2     2     1    2
## 3849     1.250 Lts NR   Familiar No Retornable     5       3     3     3   NA
## 3850     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 3851     1.750 Lts NR   Familiar No Retornable     2       2     2     2    5
## 3852    12 Oz. NR Pet Individual No Retornable     3       3     5    NA   NA
## 3853      2.5 Lts. NR   Familiar No Retornable     4       4     4     4   11
## 3854 2.5 Lts. Ret Pet   Familiar    Retornable     7       7     4     4    7
## 3855    235 ml NR Vid Individual No Retornable     4       4     3     2    1
## 3856 500 ml NR Vidrio Individual No Retornable    13      11    11     4   11
## 3857       500 ml Ret Individual    Retornable   123      85    95   116   21
## 3858        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3859             Lata Individual No Retornable     1      NA    NA     2   NA
## 3860      Lata 235 ml Individual No Retornable     1      NA     1    NA   NA
## 3861     1 Ltro. N.R. Individual No Retornable     1       2     2     1   NA
## 3862        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3863    237 ml NR Pet Individual No Retornable    NA      NA    NA     1    1
## 3864     250 ml Tetra Individual No Retornable     4       5     3     4   NA
## 3865    413 ml NR VId Individual No Retornable     2       1     2     1    1
## 3866    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3867    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3868    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 3869    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA    1
## 3870     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3871      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3872        600 ml NR Individual No Retornable     1      NA     1     1    1
## 3873        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 3874        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3875      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 3876        2 Lts. NR   Familiar No Retornable     1       4    NA    NA   NA
## 3877   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3878       500 ml Ret Individual    Retornable     3       2     2     5   NA
## 3879        600 ml NR Individual No Retornable     1       1     1     1    3
## 3880             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3881        2 Lts. NR   Familiar No Retornable     1       1     1    NA    1
## 3882       500 ml Ret Individual    Retornable     3       2     2     3   NA
## 3883             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3884        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3885      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2    2
## 3886       500 ml Ret Individual    Retornable     3       2     2     3    2
## 3887        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3888             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3889        2 Lts. NR   Familiar No Retornable     1       1    NA    NA    3
## 3890        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 3891      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 3892        2 Lts. NR   Familiar No Retornable     1       1    NA     3   NA
## 3893   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3894        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3895       500 ml Ret Individual    Retornable     3       2     2     5   NA
## 3896        600 ml NR Individual No Retornable     1       1     1     1    1
## 3897             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3898        600 ml NR Individual No Retornable     2       1     1     1   NA
## 3899 12 Oz. NR Vidrio Individual No Retornable    NA       1    NA    NA   NA
## 3900        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3901     1 Ltro. N.R. Individual No Retornable    NA       4     2    NA   NA
## 3902      1.5 Lts. NR Individual No Retornable    NA       3     3    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3905        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3906   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3907     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 3908       12 Oz. Ret Individual    Retornable     2       3     3     3    5
## 3909    235 ml NR Vid Individual No Retornable     2      NA     3     1    3
## 3910 500 ml NR Vidrio Individual No Retornable    NA       2     2    NA   NA
## 3911       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 3912    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3913 500 ml NR Vidrio Individual No Retornable     1      NA     4     2   NA
## 3914     1.250 Lts NR   Familiar No Retornable     5       3     5     3    3
## 3915     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 3916    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA   NA
## 3917       12 Oz. Ret Individual    Retornable     3      NA     6    NA    5
## 3918      2.5 Lts. NR   Familiar No Retornable     4       4     4     4   NA
## 3919 2.5 Lts. Ret Pet   Familiar    Retornable    14      11    14    14   14
## 3920    235 ml NR Vid Individual No Retornable     3       4     5     5    5
## 3921 500 ml NR Vidrio Individual No Retornable     4       6     8     4    8
## 3922       500 ml Ret Individual    Retornable    25      32    38    40   36
## 3923        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3924             Lata Individual No Retornable    NA       2    NA    NA   NA
## 3925     250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3926    413 ml NR VId Individual No Retornable     0       0    NA    NA    2
## 3927     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1    NA    1
## 3928    237 ml NR Pet Individual No Retornable    NA      NA     1    NA    1
## 3929    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3930    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 3931    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3932     200 ml Tetra Individual No Retornable     0       1     0     0    0
## 3933      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 3934        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3935        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3936       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3937       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 3938        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3939        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 3940        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3941        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3942     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3943      1.5 Lts. NR Individual No Retornable     3      10     6     3    3
## 3944        5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 3945        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R. Individual No Retornable     1       1     2     1    3
## 3947        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3948        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3949   250 ml. NR PET Individual No Retornable     2       2     2     2   NA
## 3950        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3951     1 Ltro. N.R.   Familiar No Retornable     1       2     2     3    1
## 3952    12 Oz. NR Pet Individual No Retornable     2       1     1     2   NA
## 3953        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 3954  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3955      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3956     1 Ltro. N.R.   Familiar No Retornable     2       2     4     4    2
## 3957       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3958 500 ml NR Vidrio Individual No Retornable     2       4     2     2    2
## 3959      1.5 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3961 500 ml NR Vidrio Individual No Retornable     1       1     1     1   NA
## 3962      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3963     1.250 Lts NR   Familiar No Retornable     8      11    13     8    8
## 3964     1.5 Lts. Ret   Familiar    Retornable    13      10    13    10   10
## 3965     1.750 Lts NR   Familiar No Retornable     2       2     2     5   NA
## 3966    12 Oz. NR Pet Individual No Retornable     5       5     8     5    3
## 3967      2.5 Lts. NR   Familiar No Retornable    14      11    11    11   11
## 3968 2.5 Lts. Ret Pet   Familiar    Retornable   109      92    85    74   70
## 3969    235 ml NR Vid Individual No Retornable     3       1     3     2    2
## 3970 500 ml NR Vidrio Individual No Retornable     8       8    13     4    6
## 3971       500 ml Ret Individual    Retornable    53      42    44    38   36
## 3972        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3973      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3974     1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 3975        600 ml NR Individual No Retornable     2       1     1     1    1
## 3976     250 ml Tetra Individual No Retornable     4       4     2     4    4
## 3977    413 ml NR VId Individual No Retornable     3       3     5     3    2
## 3978     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3979     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA    1
## 3980    1 Ltro. Tetra   Familiar No Retornable     2       1     1     2   NA
## 3981    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3982     200 ml Tetra Individual No Retornable     0       1     2     1   NA
## 3983        600 ml NR Individual No Retornable     1       1     1     1    1
## 3984        600 ml NR Individual No Retornable     3       1     1     1    1
## 3985       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3986        2 Lts. NR   Familiar No Retornable     3       3     3    NA    3
## 3987   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3988        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3989       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3990        600 ml NR Individual No Retornable     3       2     1     1    1
## 3991        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 3992       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3993        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3994      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3995        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3996       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3997        600 ml NR Individual No Retornable     2       1     1     1    1
## 3998      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3999       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA        NA
## 2        2    NA      2         NA      NA        NA        NA
## 3        1     1      3         NA      NA        NA        NA
## 4        8    15     19         NA      NA        NA        NA
## 5       13    10     22         NA      NA        NA        NA
## 6       11     7     11         NA      NA        NA        NA
## 7        3    NA      5         NA      NA        NA        NA
## 8       NA    NA     NA         NA      NA        NA        NA
## 9       NA    NA     NA         NA      NA        NA        NA
## 10       1    NA      1         NA      NA        NA        NA
## 11      NA     1      2         NA      NA        NA        NA
## 12       1     1      1         NA      NA        NA        NA
## 13       4     2      2         NA      NA        NA        NA
## 14       1     2      1         NA      NA        NA        NA
## 15      11     6     17         NA      NA        NA        NA
## 16       1    NA      1         NA      NA        NA        NA
## 17       1    NA      2         NA      NA        NA        NA
## 18       4    NA      4         NA      NA        NA        NA
## 19       2    NA      2         NA      NA        NA        NA
## 20       2     0      2         NA      NA        NA        NA
## 21      19    13     15         NA      NA        NA        NA
## 22      34    31     48         NA      NA        NA        NA
## 23       2     2      1         NA      NA        NA        NA
## 24       6     6     11         NA      NA        NA        NA
## 25       2     2     NA         NA      NA        NA        NA
## 26      NA    NA     NA         NA      NA        NA        NA
## 27       3    NA     NA         NA      NA        NA        NA
## 28      NA    NA     NA         NA      NA        NA        NA
## 29       6     8      8         NA      NA        NA        NA
## 30      NA     2     NA         NA      NA        NA        NA
## 31      34    37     40         NA      NA        NA        NA
## 32      NA    NA     NA         NA      NA        NA        NA
## 33      NA    NA     NA         NA      NA        NA        NA
## 34      15    17     20         NA      NA        NA        NA
## 35       8     3      8         NA      NA        NA        NA
## 36       5     6     11         NA      NA        NA        NA
## 37      28    34     14         NA      NA        NA        NA
## 38      39    53     95         NA      NA        NA        NA
## 39      39    35     42         NA      NA        NA        NA
## 40       7     8      8         NA      NA        NA        NA
## 41      21    15     15         NA      NA        NA        NA
## 42      44    36     42         NA      NA        NA        NA
## 43      10    10     15         NA      NA        NA        NA
## 44       3     3      2         NA      NA        NA        NA
## 45       2    NA      2         NA      NA        NA        NA
## 46       1     2     NA         NA      NA        NA        NA
## 47      NA     4      3         NA      NA        NA        NA
## 48       3    NA      1         NA      NA        NA        NA
## 49       2     2      2         NA      NA        NA        NA
## 50       3     3      5         NA      NA        NA        NA
## 51       4     6      4         NA      NA        NA        NA
## 52       1     0      0         NA      NA        NA        NA
## 53       8    NA      3         NA      NA        NA        NA
## 54       1    NA     NA         NA      NA        NA        NA
## 55       1    NA      1         NA      NA        NA        NA
## 56       1     1      1         NA      NA        NA        NA
## 57       3     2      3         NA      NA        NA        NA
## 58       3     1      4         NA      NA        NA        NA
## 59      NA    13     11         NA      NA        NA        NA
## 60      NA     1      3         NA      NA        NA        NA
## 61       1     5      1         NA      NA        NA        NA
## 62      NA    NA     NA         NA      NA        NA        NA
## 63      NA    NA     NA         NA      NA        NA        NA
## 64      NA     2     NA         NA      NA        NA        NA
## 65       8     8     11         NA      NA        NA        NA
## 66       1     1     NA         NA      NA        NA        NA
## 67      NA    NA     NA         NA      NA        NA        NA
## 68       3     3      3         NA      NA        NA        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3     3      3         NA      NA        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72      NA    NA     NA         NA      NA        NA        NA
## 73      NA    NA     NA         NA      NA        NA        NA
## 74       1     1     NA         NA      NA        NA        NA
## 75      NA    NA     NA         NA      NA        NA        NA
## 76      NA    NA      1         NA      NA        NA        NA
## 77      NA    NA     NA         NA      NA        NA        NA
## 78      14    17     11         NA      NA        NA        NA
## 79       1    NA      1         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA        NA
## 81      11    11     14         NA      NA        NA        NA
## 82       1    NA      1         NA      NA        NA        NA
## 83      NA    NA     NA         NA      NA        NA        NA
## 84       1     5      3         NA      NA        NA        NA
## 85      NA    NA     NA         NA      NA        NA        NA
## 86       1     6      6         NA      NA        NA        NA
## 87       2     2      3         NA      NA        NA        NA
## 88       4     2      2         NA      NA        NA        NA
## 89      13    13      6         NA      NA        NA        NA
## 90      NA    NA     NA         NA      NA        NA        NA
## 91       5    NA      3         NA      NA        NA        NA
## 92       1     1      1         NA      NA        NA        NA
## 93       1     1      1         NA      NA        NA        NA
## 94      NA    NA     NA         NA      NA        NA        NA
## 95       1     1      1         NA      NA        NA        NA
## 96      NA    NA     NA         NA      NA        NA        NA
## 97       1     1      1         NA      NA        NA        NA
## 98       3     3      3         NA      NA        NA        NA
## 99       0     0     NA         NA      NA        NA        NA
## 100      1    NA     NA         NA      NA        NA        NA
## 101     NA    NA      0         NA      NA        NA        NA
## 102     11     4      4         NA      NA        NA        NA
## 103     NA    NA      3         NA      NA        NA        NA
## 104     11     4     NA         NA      NA        NA        NA
## 105      2     6      6         NA      NA        NA        NA
## 106      5    NA     NA         NA      NA        NA        NA
## 107      1     1      1         NA      NA        NA        NA
## 108      6     6      4         NA      NA        NA        NA
## 109     NA    NA     NA         NA      NA        NA        NA
## 110     NA    NA     NA         NA      NA        NA        NA
## 111     NA    30     27         NA      NA        NA        NA
## 112     11    13     11         NA      NA        NA        NA
## 113      3    NA     NA         NA      NA        NA        NA
## 114     51    51     29         NA      NA        NA        NA
## 115     NA     2      2         NA      NA        NA        NA
## 116      6     3      9         NA      NA        NA        NA
## 117     11    18     18         NA      NA        NA        NA
## 118     85    70     74         NA      NA        NA        NA
## 119      2     1      1         NA      NA        NA        NA
## 120     NA     1      1         NA      NA        NA        NA
## 121      8     4      2         NA      NA        NA        NA
## 122      8    15     15         NA      NA        NA        NA
## 123     78    80     70         NA      NA        NA        NA
## 124      3    NA     NA         NA      NA        NA        NA
## 125      2     3     NA         NA      NA        NA        NA
## 126      2     2      2         NA      NA        NA        NA
## 127      1     1      1         NA      NA        NA        NA
## 128      1     1      1         NA      NA        NA        NA
## 129      1     1      1         NA      NA        NA        NA
## 130     NA    NA     NA         NA      NA        NA        NA
## 131      2     1      3         NA      NA        NA        NA
## 132      8     4      5         NA      NA        NA        NA
## 133     NA     0     NA         NA      NA        NA        NA
## 134     NA     0      0         NA      NA        NA        NA
## 135     NA    NA     NA         NA      NA        NA        NA
## 136      1     1      1         NA      NA        NA        NA
## 137     NA    NA     NA         NA      NA        NA        NA
## 138     NA    NA     NA         NA      NA        NA        NA
## 139     NA    NA     NA         NA      NA        NA        NA
## 140      1     2      1         NA      NA        NA        NA
## 141      1     1      1         NA      NA        NA        NA
## 142      3     4      2         NA      NA        NA        NA
## 143     NA    NA     NA         NA      NA        NA        NA
## 144      2     2     NA         NA      NA        NA        NA
## 145      3     3      6         NA      NA        NA        NA
## 146     NA     1      1         NA      NA        NA        NA
## 147      1     1      0         NA      NA        NA        NA
## 148      4     6      5         NA      NA        NA        NA
## 149      1     1      2         NA      NA        NA        NA
## 150     NA    NA     NA         NA      NA        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152      2     2      1         NA      NA        NA        NA
## 153     NA    NA      3         NA      NA        NA        NA
## 154      3     3     NA         NA      NA        NA        NA
## 155      0     1     NA         NA      NA        NA        NA
## 156      2     4      1         NA      NA        NA        NA
## 157      1     1     NA         NA      NA        NA        NA
## 158      3     4      4         NA      NA        NA        NA
## 159     NA    NA     NA         NA      NA        NA        NA
## 160     NA    NA     NA         NA      NA        NA        NA
## 161     NA    NA     NA         NA      NA        NA        NA
## 162     NA    NA      2         NA      NA        NA        NA
## 163     NA     6      6         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA        NA        NA
## 165     NA    NA      1         NA      NA        NA        NA
## 166      0     0      1         NA      NA        NA        NA
## 167      4     8      7         NA      NA        NA        NA
## 168      3     4      3         NA      NA        NA        NA
## 169     NA     1     NA         NA      NA        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171      1     3      3         NA      NA        NA        NA
## 172     NA    NA     NA         NA      NA        NA        NA
## 173      3     1      1         NA      NA        NA        NA
## 174     19    21     19         NA      NA        NA        NA
## 175     19    22     19         NA      NA        NA        NA
## 176     NA     5      8         NA      NA        NA        NA
## 177      1     1      1         NA      NA        NA        NA
## 178      1     1      1         NA      NA        NA        NA
## 179     NA     1      1         NA      NA        NA        NA
## 180      1     1      1         NA      NA        NA        NA
## 181      2     2      2         NA      NA        NA        NA
## 182      0     2      1         NA      NA        NA        NA
## 183     NA     1     NA         NA      NA        NA        NA
## 184      2     2      2         NA      NA        NA        NA
## 185      2     1      1         NA      NA        NA        NA
## 186      6     6      8         NA      NA        NA        NA
## 187      2     1      2         NA      NA        NA        NA
## 188     NA     1     NA         NA      NA        NA        NA
## 189      0     0     NA         NA      NA        NA        NA
## 190     NA     1     NA         NA      NA        NA        NA
## 191      0     1      1         NA      NA        NA        NA
## 192     13    15     11         NA      NA        NA        NA
## 193     11     8      6         NA      NA        NA        NA
## 194      2     2      4         NA      NA        NA        NA
## 195      8    15      8         NA      NA        NA        NA
## 196      6     4     NA         NA      NA        NA        NA
## 197     14    17     39         NA      NA        NA        NA
## 198     11    11      8         NA      NA        NA        NA
## 199     NA    NA     NA         NA      NA        NA        NA
## 200     NA    25     59         NA      NA        NA        NA
## 201     55    45     48         NA      NA        NA        NA
## 202     NA    NA     NA         NA      NA        NA        NA
## 203     22    29     22         NA      NA        NA        NA
## 204     15    15     25         NA      NA        NA        NA
## 205     11    11      9         NA      NA        NA        NA
## 206      9     8      5         NA      NA        NA        NA
## 207     81    49     63         NA      NA        NA        NA
## 208     92   113    113         NA      NA        NA        NA
## 209      6     8     10         NA      NA        NA        NA
## 210      6    NA     NA         NA      NA        NA        NA
## 211     17    27     25         NA      NA        NA        NA
## 212     63    57     66         NA      NA        NA        NA
## 213      2     3      5         NA      NA        NA        NA
## 214      4     4      2         NA      NA        NA        NA
## 215      5     2      2         NA      NA        NA        NA
## 216      1     3      1         NA      NA        NA        NA
## 217      2     3      1         NA      NA        NA        NA
## 218     NA     0     NA         NA      NA        NA        NA
## 219      1     1      0         NA      NA        NA        NA
## 220      9     7      9         NA      NA        NA        NA
## 221     NA     0     NA         NA      NA        NA        NA
## 222      2     3      4         NA      NA        NA        NA
## 223      1     1      1         NA      NA        NA        NA
## 224      3     4      2         NA      NA        NA        NA
## 225      2     2      1         NA      NA        NA        NA
## 226      2     2      2         NA      NA        NA        NA
## 227      1    NA      1         NA      NA        NA        NA
## 228      4     4      4         NA      NA        NA        NA
## 229      6    13      6         NA      NA        NA        NA
## 230      6     6      6         NA      NA        NA        NA
## 231      6     7      4         NA      NA        NA        NA
## 232     NA    NA     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      2     4      4         NA      NA        NA        NA
## 235      6     8      6         NA      NA        NA        NA
## 236      1     1      1         NA      NA        NA        NA
## 237      1     1      1         NA      NA        NA        NA
## 238      1    NA     NA         NA      NA        NA        NA
## 239      1     1      1         NA      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      1    NA     NA         NA      NA        NA        NA
## 242      1     1     NA         NA      NA        NA        NA
## 243      1     1      1         NA      NA        NA        NA
## 244      1     0     NA         NA      NA        NA        NA
## 245      1    NA     NA         NA      NA        NA        NA
## 246      1     2     NA         NA      NA        NA        NA
## 247      8    11      8         NA      NA        NA        NA
## 248     NA     1      1         NA      NA        NA        NA
## 249      2     6      4         NA      NA        NA        NA
## 250      1     1      1         NA      NA        NA        NA
## 251      6     4      2         NA      NA        NA        NA
## 252     11    11      8         NA      NA        NA        NA
## 253      1     2      2         NA      NA        NA        NA
## 254      2     2      1         NA      NA        NA        NA
## 255      5     2      4         NA      NA        NA        NA
## 256      2     3      2         NA      NA        NA        NA
## 257     NA    NA     NA         NA      NA        NA        NA
## 258      7     5      4         NA      NA        NA        NA
## 259      1     1      1         NA      NA        NA        NA
## 260     11    15      8         NA      NA        NA        NA
## 261      3    10      6         NA      NA        NA        NA
## 262     NA    NA     NA         NA      NA        NA        NA
## 263     NA     5      8         NA      NA        NA        NA
## 264     NA    NA     NA         NA      NA        NA        NA
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA     1     NA         NA      NA        NA        NA
## 268     NA     1      1         NA      NA        NA        NA
## 269      1     1      2         NA      NA        NA        NA
## 270      2    NA      1         NA      NA        NA        NA
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      2     1     NA         NA      NA        NA        NA
## 273     NA     3      3         NA      NA        NA        NA
## 274     NA    NA     NA         NA      NA        NA        NA
## 275      1    NA     NA         NA      NA        NA        NA
## 276     NA     0     NA         NA      NA        NA        NA
## 277     NA     0      0         NA      NA        NA        NA
## 278     NA    NA     NA         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        NA
## 280      2     4      2         NA      NA        NA        NA
## 281      1     1      1         NA      NA        NA        NA
## 282      2     2      2         NA      NA        NA        NA
## 283     NA    NA     NA         NA      NA        NA        NA
## 284     NA    34     53         NA      NA        NA        NA
## 285     13    13     11         NA      NA        NA        NA
## 286     70    51     57         NA      NA        NA        NA
## 287     12    17     12         NA      NA        NA        NA
## 288      5     5      2         NA      NA        NA        NA
## 289     11    18     18         NA      NA        NA        NA
## 290     74    81     77         NA      NA        NA        NA
## 291      3     4      1         NA      NA        NA        NA
## 292     NA    NA      3         NA      NA        NA        NA
## 293      6     6      6         NA      NA        NA        NA
## 294      6    11      6         NA      NA        NA        NA
## 295     46    38     32         NA      NA        NA        NA
## 296     NA    NA     NA         NA      NA        NA        NA
## 297     NA     2      2         NA      NA        NA        NA
## 298      2     2     NA         NA      NA        NA        NA
## 299      2    NA      2         NA      NA        NA        NA
## 300     NA     2     NA         NA      NA        NA        NA
## 301     NA     3     NA         NA      NA        NA        NA
## 302      1     2     NA         NA      NA        NA        NA
## 303      1     1      2         NA      NA        NA        NA
## 304      1    NA      1         NA      NA        NA        NA
## 305     NA    NA     NA         NA      NA        NA        NA
## 306      3     3      2         NA      NA        NA        NA
## 307     NA     1     NA         NA      NA        NA        NA
## 308     NA     1     NA         NA      NA        NA        NA
## 309      2     4      3         NA      NA        NA        NA
## 310      1     0      0         NA      NA        NA        NA
## 311     NA    NA     NA         NA      NA        NA        NA
## 312      0     0      1         NA      NA        NA        NA
## 313     NA     1     NA         NA      NA        NA        NA
## 314      3     3     11         NA      NA        NA        NA
## 315      0    NA     NA         NA      NA        NA        NA
## 316      1     1      1         NA      NA        NA        NA
## 317     NA    NA     NA         NA      NA        NA        NA
## 318      0    NA     NA         NA      NA        NA        NA
## 319      1     1      1         NA      NA        NA        NA
## 320      3    NA     NA         NA      NA        NA        NA
## 321     NA    NA      3         NA      NA        NA        NA
## 322      0    NA     NA         NA      NA        NA        NA
## 323      1     1      1         NA      NA        NA        NA
## 324      6     3      6         NA      NA        NA        NA
## 325      0    NA     NA         NA      NA        NA        NA
## 326      1     1      1         NA      NA        NA        NA
## 327     NA    NA      1         NA      NA        NA        NA
## 328      2     1     NA         NA      NA        NA        NA
## 329     NA    NA     NA         NA      NA        NA        NA
## 330     NA    NA     NA         NA      NA        NA        NA
## 331      4     4      4         NA      NA        NA        NA
## 332      2     2      2         NA      NA        NA        NA
## 333      3     3      3         NA      NA        NA        NA
## 334      3    NA     NA         NA      NA        NA        NA
## 335      1     1      1         NA      NA        NA        NA
## 336      1     1      1         NA      NA        NA        NA
## 337     NA    NA      1         NA      NA        NA        NA
## 338      1    NA      1         NA      NA        NA        NA
## 339     NA    NA     NA         NA      NA        NA        NA
## 340      1     1      1         NA      NA        NA        NA
## 341     NA    NA     NA         NA      NA        NA        NA
## 342      6     6      3         NA      NA        NA        NA
## 343      1     0      1         NA      NA        NA        NA
## 344      1     1      1         NA      NA        NA        NA
## 345      1     1      1         NA      NA        NA        NA
## 346     19    19     21         NA      NA        NA        NA
## 347      8     8      8         NA      NA        NA        NA
## 348     17    25     20         NA      NA        NA        NA
## 349      3     2      2         NA      NA        NA        NA
## 350      6    11     13         NA      NA        NA        NA
## 351     NA    NA     NA         NA      NA        NA        NA
## 352     28    34     28         NA      NA        NA        NA
## 353     NA    NA     NA         NA      NA        NA        NA
## 354     NA     1     NA         NA      NA        NA        NA
## 355      4     8      4         NA      NA        NA        NA
## 356     NA    NA     NA         NA      NA        NA        NA
## 357     NA    23     17         NA      NA        NA        NA
## 358     32    21     26         NA      NA        NA        NA
## 359     NA    NA     NA         NA      NA        NA        NA
## 360     19    13     16         NA      NA        NA        NA
## 361     52    42     42         NA      NA        NA        NA
## 362      6     5      6         NA      NA        NA        NA
## 363      5     6      8         NA      NA        NA        NA
## 364     46    49     39         NA      NA        NA        NA
## 365     74    88     63         NA      NA        NA        NA
## 366      9    12      9         NA      NA        NA        NA
## 367      6     4      4         NA      NA        NA        NA
## 368     21    30     36         NA      NA        NA        NA
## 369     59    49     49         NA      NA        NA        NA
## 370      2     1      1         NA      NA        NA        NA
## 371     NA    NA     NA         NA      NA        NA        NA
## 372      3     2      3         NA      NA        NA        NA
## 373      1    NA      2         NA      NA        NA        NA
## 374      1     1      1         NA      NA        NA        NA
## 375      1     1      1         NA      NA        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377      0     0      0         NA      NA        NA        NA
## 378     14    14     11         NA      NA        NA        NA
## 379      4     2      1         NA      NA        NA        NA
## 380     NA    NA     NA         NA      NA        NA        NA
## 381      3     3      1         NA      NA        NA        NA
## 382      1     1      1         NA      NA        NA        NA
## 383      2     3      4         NA      NA        NA        NA
## 384      1    NA      1         NA      NA        NA        NA
## 385      3     2      3         NA      NA        NA        NA
## 386      2     2      2         NA      NA        NA        NA
## 387      3     3      1         NA      NA        NA        NA
## 388      4     6      4         NA      NA        NA        NA
## 389     NA    NA     NA         NA      NA        NA        NA
## 390      1    NA     NA         NA      NA        NA        NA
## 391     NA     2     NA         NA      NA        NA        NA
## 392      6    NA      3         NA      NA        NA        NA
## 393     NA    NA     NA         NA      NA        NA        NA
## 394      1     4     NA         NA      NA        NA        NA
## 395      1     3      3         NA      NA        NA        NA
## 396      0     0      0         NA      NA        NA        NA
## 397     NA    NA      3         NA      NA        NA        NA
## 398      1    NA     NA         NA      NA        NA        NA
## 399      0     0      0         NA      NA        NA        NA
## 400      1    NA     NA         NA      NA        NA        NA
## 401     NA    NA      1         NA      NA        NA        NA
## 402      2     3      1         NA      NA        NA        NA
## 403      6     3     11         NA      NA        NA        NA
## 404     NA     2      4         NA      NA        NA        NA
## 405      3     1      3         NA      NA        NA        NA
## 406      0     0      0         NA      NA        NA        NA
## 407      2    NA      2         NA      NA        NA        NA
## 408      3     3      6         NA      NA        NA        NA
## 409     NA    NA     NA         NA      NA        NA        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411      3     2      2         NA      NA        NA        NA
## 412      3     3      3         NA      NA        NA        NA
## 413      0     0      0         NA      NA        NA        NA
## 414     NA    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA      NA        NA        NA
## 416     12     6     10         NA      NA        NA        NA
## 417      2     1      3         NA      NA        NA        NA
## 418      6     8     13         NA      NA        NA        NA
## 419     16    16     22         NA      NA        NA        NA
## 420      8     5      8         NA      NA        NA        NA
## 421      1     1      2         NA      NA        NA        NA
## 422      1     1      1         NA      NA        NA        NA
## 423      1     1      2         NA      NA        NA        NA
## 424      3     1      3         NA      NA        NA        NA
## 425     NA    NA     NA         NA      NA        NA        NA
## 426     NA    NA     NA         NA      NA        NA        NA
## 427      1     1      1         NA      NA        NA        NA
## 428     NA    NA      4         NA      NA        NA        NA
## 429      3     3      6         NA      NA        NA        NA
## 430      6     6      8         NA      NA        NA        NA
## 431     NA    NA     NA         NA      NA        NA        NA
## 432     NA    NA     NA         NA      NA        NA        NA
## 433      0    NA     NA         NA      NA        NA        NA
## 434     NA    NA      0         NA      NA        NA        NA
## 435      0    NA     NA         NA      NA        NA        NA
## 436     21    23     25         NA      NA        NA        NA
## 437     NA    NA     NA         NA      NA        NA        NA
## 438     18    18     21         NA      NA        NA        NA
## 439      7     7     10         NA      NA        NA        NA
## 440     13    15     17         NA      NA        NA        NA
## 441     NA    NA     NA         NA      NA        NA        NA
## 442      7     6     14         NA      NA        NA        NA
## 443      6     1      4         NA      NA        NA        NA
## 444     NA     4     NA         NA      NA        NA        NA
## 445     29    26     24         NA      NA        NA        NA
## 446     41    41     35         NA      NA        NA        NA
## 447     17    27     30         NA      NA        NA        NA
## 448      9     9      8         NA      NA        NA        NA
## 449     18     9     17         NA      NA        NA        NA
## 450     NA    NA     NA         NA      NA        NA        NA
## 451     32    28     35         NA      NA        NA        NA
## 452    162   144    159         NA      NA        NA        NA
## 453      5     6      6         NA      NA        NA        NA
## 454     NA    NA     11         NA      NA        NA        NA
## 455     15    15     11         NA      NA        NA        NA
## 456     78    78     76         NA      NA        NA        NA
## 457      3    NA     NA         NA      NA        NA        NA
## 458     NA    NA     NA         NA      NA        NA        NA
## 459      1     1      2         NA      NA        NA        NA
## 460      1     1      1         NA      NA        NA        NA
## 461     NA    NA     NA         NA      NA        NA        NA
## 462      1     1      1         NA      NA        NA        NA
## 463     NA    NA     NA         NA      NA        NA        NA
## 464      0     0      0         NA      NA        NA        NA
## 465     NA    NA     NA         NA      NA        NA        NA
## 466      3     2      6         NA      NA        NA        NA
## 467     NA    NA      0         NA      NA        NA        NA
## 468      1    NA      2         NA      NA        NA        NA
## 469     NA    NA     NA         NA      NA        NA        NA
## 470      1    NA     NA         NA      NA        NA        NA
## 471     NA     1     NA         NA      NA        NA        NA
## 472      0     0      0         NA      NA        NA        NA
## 473      1     1      1         NA      NA        NA        NA
## 474     NA     3      1         NA      NA        NA        NA
## 475     NA    NA     NA         NA      NA        NA        NA
## 476     NA    NA      2         NA      NA        NA        NA
## 477      3     6      6         NA      NA        NA        NA
## 478      1     1      1         NA      NA        NA        NA
## 479      1     1     NA         NA      NA        NA        NA
## 480      2     1      1         NA      NA        NA        NA
## 481      3     4      2         NA      NA        NA        NA
## 482      0    NA      0         NA      NA        NA        NA
## 483     NA     3     NA         NA      NA        NA        NA
## 484      1     0     NA         NA      NA        NA        NA
## 485     NA     1      1         NA      NA        NA        NA
## 486     NA     1      1         NA      NA        NA        NA
## 487      0    NA      0         NA      NA        NA        NA
## 488      8    NA     NA         NA      NA        NA        NA
## 489      1     1     NA         NA      NA        NA        NA
## 490      1    NA      0         NA      NA        NA        NA
## 491     NA     1      1         NA      NA        NA        NA
## 492      1    NA     NA         NA      NA        NA        NA
## 493     NA     2     NA         NA      NA        NA        NA
## 494     NA     3      8         NA      NA        NA        NA
## 495     NA    NA     NA         NA      NA        NA        NA
## 496     NA     1     NA         NA      NA        NA        NA
## 497     NA     1      1         NA      NA        NA        NA
## 498      0    NA      0         NA      NA        NA        NA
## 499      2     2      2         NA      NA        NA        NA
## 500     14    17      8         NA      NA        NA        NA
## 501      1     1      1         NA      NA        NA        NA
## 502      1     1      0         NA      NA        NA        NA
## 503      2     1      1         NA      NA        NA        NA
## 504      3     3      3         NA      NA        NA        NA
## 505     NA    NA      2         NA      NA        NA        NA
## 506      0    NA      0         NA      NA        NA        NA
## 507     NA    NA     NA         NA      NA        NA        NA
## 508      5     3      7         NA      NA        NA        NA
## 509      3    NA     NA         NA      NA        NA        NA
## 510      1     1      1         NA      NA        NA        NA
## 511      2     2      4         NA      NA        NA        NA
## 512      3     3      6         NA      NA        NA        NA
## 513     NA     3     NA         NA      NA        NA        NA
## 514     NA     1      1         NA      NA        NA        NA
## 515     NA     1      1         NA      NA        NA        NA
## 516     NA    NA      1         NA      NA        NA        NA
## 517     NA     1      1         NA      NA        NA        NA
## 518     NA     3      3         NA      NA        NA        NA
## 519     NA     0      0         NA      NA        NA        NA
## 520     19    NA     NA         NA      NA        NA        NA
## 521      0    NA     NA         NA      NA        NA        NA
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA     2     11         NA      NA        NA        NA
## 524      2     2      6         NA      NA        NA        NA
## 525      3    NA     NA         NA      NA        NA        NA
## 526     NA    NA     NA         NA      NA        NA        NA
## 527      1    NA     NA         NA      NA        NA        NA
## 528     NA     1      3         NA      NA        NA        NA
## 529     NA     6      8         NA      NA        NA        NA
## 530      8    NA     16         NA      NA        NA        NA
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      3     3      6         NA      NA        NA        NA
## 533     NA     2      7         NA      NA        NA        NA
## 534      3     2      2         NA      NA        NA        NA
## 535     11     7     18         NA      NA        NA        NA
## 536     14     4     39         NA      NA        NA        NA
## 537      1     1      6         NA      NA        NA        NA
## 538      2    NA     NA         NA      NA        NA        NA
## 539      2     2     11         NA      NA        NA        NA
## 540     55    44     42         NA      NA        NA        NA
## 541     NA    NA     NA         NA      NA        NA        NA
## 542      3    NA      1         NA      NA        NA        NA
## 543     NA    NA      1         NA      NA        NA        NA
## 544     NA     1      1         NA      NA        NA        NA
## 545     NA     1      5         NA      NA        NA        NA
## 546     NA     0      0         NA      NA        NA        NA
## 547     NA     0      5         NA      NA        NA        NA
## 548     NA     0      0         NA      NA        NA        NA
## 549      1     1      1         NA      NA        NA        NA
## 550      9     0      3         NA      NA        NA        NA
## 551      1     1      2         NA      NA        NA        NA
## 552     NA    NA      4         NA      NA        NA        NA
## 553     NA    NA     NA         NA      NA        NA        NA
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     NA    NA      1         NA      NA        NA        NA
## 556     NA    NA      1         NA      NA        NA        NA
## 557     NA     1      2         NA      NA        NA        NA
## 558     NA    NA     NA         NA      NA        NA        NA
## 559     53    21      1         NA      NA        NA        NA
## 560     NA    NA     NA         NA      NA        NA        NA
## 561     NA    NA      0         NA      NA        NA        NA
## 562     32    44     22         NA      NA        NA        NA
## 563     NA    NA      1         NA      NA        NA        NA
## 564      2    NA     NA         NA      NA        NA        NA
## 565     NA    NA     NA         NA      NA        NA        NA
## 566     NA     2      4         NA      NA        NA        NA
## 567     NA     3      3         NA      NA        NA        NA
## 568     NA     0      0         NA      NA        NA        NA
## 569     NA    NA      1         NA      NA        NA        NA
## 570     NA     1      1         NA      NA        NA        NA
## 571     NA     1      1         NA      NA        NA        NA
## 572      1     1     NA         NA      NA        NA        NA
## 573     23    19     34         NA      NA        NA        NA
## 574     57    35     67         NA      NA        NA        NA
## 575     NA     5     NA         NA      NA        NA        NA
## 576     NA    NA     NA         NA      NA        NA        NA
## 577     NA    NA     NA         NA      NA        NA        NA
## 578     NA     1      1         NA      NA        NA        NA
## 579     NA    NA     NA         NA      NA        NA        NA
## 580     NA    NA     NA         NA      NA        NA        NA
## 581     14     6      3         NA      NA        NA        NA
## 582     NA     0      0         NA      NA        NA        NA
## 583     13    15     17         NA      NA        NA        NA
## 584     14    11     11         NA      NA        NA        NA
## 585      4     4      4         NA      NA        NA        NA
## 586      6    13      4         NA      NA        NA        NA
## 587     NA    NA     NA         NA      NA        NA        NA
## 588     11    20     37         NA      NA        NA        NA
## 589     NA    NA     NA         NA      NA        NA        NA
## 590      2     6      4         NA      NA        NA        NA
## 591     NA    11     17         NA      NA        NA        NA
## 592     48    40     61         NA      NA        NA        NA
## 593     NA    NA     NA         NA      NA        NA        NA
## 594     22    16     16         NA      NA        NA        NA
## 595     25    35     44         NA      NA        NA        NA
## 596      2     2      3         NA      NA        NA        NA
## 597     60    70     53         NA      NA        NA        NA
## 598    120   137    144         NA      NA        NA        NA
## 599      7    11     10         NA      NA        NA        NA
## 600     NA     4      4         NA      NA        NA        NA
## 601     19    46     30         NA      NA        NA        NA
## 602     89   120    114         NA      NA        NA        NA
## 603      5    NA     NA         NA      NA        NA        NA
## 604      4     2      4         NA      NA        NA        NA
## 605      2     3      3         NA      NA        NA        NA
## 606     NA    NA     NA         NA      NA        NA        NA
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     11    16     16         NA      NA        NA        NA
## 610      1    NA     NA         NA      NA        NA        NA
## 611     NA     2     NA         NA      NA        NA        NA
## 612     NA     2     NA         NA      NA        NA        NA
## 613     NA     5     NA         NA      NA        NA        NA
## 614     NA     4     NA         NA      NA        NA        NA
## 615     NA    NA     NA         NA      NA        NA        NA
## 616     NA    NA     NA         NA      NA        NA        NA
## 617      1     3      1         NA      NA        NA        NA
## 618      2     4      4         NA      NA        NA        NA
## 619     NA    NA     NA         NA      NA        NA        NA
## 620     NA    NA     NA         NA      NA        NA        NA
## 621     NA    NA     NA         NA      NA        NA        NA
## 622      3    14     17         NA      NA        NA        NA
## 623     NA    NA     NA         NA      NA        NA        NA
## 624     NA    NA     NA         NA      NA        NA        NA
## 625      1     1      2         NA      NA        NA        NA
## 626      3     8      4         NA      NA        NA        NA
## 627      1     1      2         NA      NA        NA        NA
## 628      8    NA     NA         NA      NA        NA        NA
## 629      1     1      2         NA      NA        NA        NA
## 630     NA    NA     NA         NA      NA        NA        NA
## 631      3    14     14         NA      NA        NA        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633     NA    NA     NA         NA      NA        NA        NA
## 634      4     5      6         NA      NA        NA        NA
## 635     NA    NA     NA         NA      NA        NA        NA
## 636     11     8     14         NA      NA        NA        NA
## 637     NA    NA     NA         NA      NA        NA        NA
## 638      1     1      2         NA      NA        NA        NA
## 639      6    10      8         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA        NA
## 641      4     6      8         NA      NA        NA        NA
## 642     NA    NA     NA         NA      NA        NA        NA
## 643      2     2      1         NA      NA        NA        NA
## 644      6     8      8         NA      NA        NA        NA
## 645     10    10     16         NA      NA        NA        NA
## 646     15     5     NA         NA      NA        NA        NA
## 647      1     1      1         NA      NA        NA        NA
## 648      1     1      1         NA      NA        NA        NA
## 649      2     1      1         NA      NA        NA        NA
## 650     NA    NA     NA         NA      NA        NA        NA
## 651     NA    NA     NA         NA      NA        NA        NA
## 652      1     1      1         NA      NA        NA        NA
## 653      1    NA     NA         NA      NA        NA        NA
## 654      3     3      3         NA      NA        NA        NA
## 655     NA     0     NA         NA      NA        NA        NA
## 656     NA     0     NA         NA      NA        NA        NA
## 657     NA     0     NA         NA      NA        NA        NA
## 658     NA    NA      0         NA      NA        NA        NA
## 659     NA    NA     NA         NA      NA        NA        NA
## 660     NA     2      2         NA      NA        NA        NA
## 661      4     2      4         NA      NA        NA        NA
## 662      2     1      1         NA      NA        NA        NA
## 663      3     4      6         NA      NA        NA        NA
## 664      1    NA      1         NA      NA        NA        NA
## 665      1     2      2         NA      NA        NA        NA
## 666      4     4      8         NA      NA        NA        NA
## 667      0    NA     NA         NA      NA        NA        NA
## 668     NA    27     49         NA      NA        NA        NA
## 669     16     8      8         NA      NA        NA        NA
## 670     32    29     35         NA      NA        NA        NA
## 671     12    15     20         NA      NA        NA        NA
## 672      6     5      5         NA      NA        NA        NA
## 673     32    28     21         NA      NA        NA        NA
## 674     92    70     77         NA      NA        NA        NA
## 675      3     3      3         NA      NA        NA        NA
## 676     NA    NA      3         NA      NA        NA        NA
## 677      6     6      6         NA      NA        NA        NA
## 678     11    15     13         NA      NA        NA        NA
## 679     70    44     53         NA      NA        NA        NA
## 680      2     2      0         NA      NA        NA        NA
## 681      2    NA      2         NA      NA        NA        NA
## 682      1     1     NA         NA      NA        NA        NA
## 683      2     2      3         NA      NA        NA        NA
## 684     NA    NA     NA         NA      NA        NA        NA
## 685      1     2      1         NA      NA        NA        NA
## 686      2     2      1         NA      NA        NA        NA
## 687     NA    NA     NA         NA      NA        NA        NA
## 688     NA    NA     NA         NA      NA        NA        NA
## 689      3     1      2         NA      NA        NA        NA
## 690     NA    NA      0         NA      NA        NA        NA
## 691      2     3      2         NA      NA        NA        NA
## 692      0     0      0         NA      NA        NA        NA
## 693     NA    NA     NA         NA      NA        NA        NA
## 694      1     1      2         NA      NA        NA        NA
## 695      0     1      2         NA      NA        NA        NA
## 696      1     1      1         NA      NA        NA        NA
## 697     NA    NA     NA         NA      NA        NA        NA
## 698     NA    NA     NA         NA      NA        NA        NA
## 699      2     2     NA         NA      NA        NA        NA
## 700      3     3     NA         NA      NA        NA        NA
## 701      2     2      1         NA      NA        NA        NA
## 702      0     0      0         NA      NA        NA        NA
## 703      4     2      2         NA      NA        NA        NA
## 704      1     2      1         NA      NA        NA        NA
## 705     NA    NA      1         NA      NA        NA        NA
## 706      2    NA     NA         NA      NA        NA        NA
## 707      2     2      2         NA      NA        NA        NA
## 708     NA     0      1         NA      NA        NA        NA
## 709      2     3      1         NA      NA        NA        NA
## 710     NA     2     NA         NA      NA        NA        NA
## 711      8    NA      6         NA      NA        NA        NA
## 712     NA     4     NA         NA      NA        NA        NA
## 713     NA     0     NA         NA      NA        NA        NA
## 714      8     6      8         NA      NA        NA        NA
## 715     NA     1     NA         NA      NA        NA        NA
## 716      4    NA      2         NA      NA        NA        NA
## 717      6     3      8         NA      NA        NA        NA
## 718      3     2      2         NA      NA        NA        NA
## 719      1     1      1         NA      NA        NA        NA
## 720      2     2      2         NA      NA        NA        NA
## 721      2     2      1         NA      NA        NA        NA
## 722     NA    NA     NA         NA      NA        NA        NA
## 723      1     1      1         NA      NA        NA        NA
## 724      1     1      1         NA      NA        NA        NA
## 725      4     2      4         NA      NA        NA        NA
## 726      6     3      3         NA      NA        NA        NA
## 727      3     3     NA         NA      NA        NA        NA
## 728      1     1      1         NA      NA        NA        NA
## 729      1     1      1         NA      NA        NA        NA
## 730      1     1      0         NA      NA        NA        NA
## 731     NA     1      1         NA      NA        NA        NA
## 732      2    NA     NA         NA      NA        NA        NA
## 733      3     3      3         NA      NA        NA        NA
## 734     NA    NA      0         NA      NA        NA        NA
## 735     NA     2     NA         NA      NA        NA        NA
## 736      0     0      0         NA      NA        NA        NA
## 737     NA    NA     NA         NA      NA        NA        NA
## 738     21    17     21         NA      NA        NA        NA
## 739     NA     2     NA         NA      NA        NA        NA
## 740     14    14     23         NA      NA        NA        NA
## 741     NA    NA     NA         NA      NA        NA        NA
## 742     18    18     18         NA      NA        NA        NA
## 743      3     3      4         NA      NA        NA        NA
## 744      3     3      3         NA      NA        NA        NA
## 745     19    23     23         NA      NA        NA        NA
## 746      3    NA     NA         NA      NA        NA        NA
## 747      2     3      2         NA      NA        NA        NA
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      7    25     25         NA      NA        NA        NA
## 750      1     3      2         NA      NA        NA        NA
## 751      6     8     11         NA      NA        NA        NA
## 752      6     6      6         NA      NA        NA        NA
## 753     NA    15     30         NA      NA        NA        NA
## 754     32    29     29         NA      NA        NA        NA
## 755     NA    NA     NA         NA      NA        NA        NA
## 756      3     3      3         NA      NA        NA        NA
## 757     35    39     52         NA      NA        NA        NA
## 758      5     3      5         NA      NA        NA        NA
## 759     NA     2     NA         NA      NA        NA        NA
## 760     63    60     70         NA      NA        NA        NA
## 761     70    70     88         NA      NA        NA        NA
## 762     11    11     13         NA      NA        NA        NA
## 763     23    23     30         NA      NA        NA        NA
## 764     59    36     59         NA      NA        NA        NA
## 765      3    NA     NA         NA      NA        NA        NA
## 766      3     2      2         NA      NA        NA        NA
## 767      2     2      2         NA      NA        NA        NA
## 768      1     1      1         NA      NA        NA        NA
## 769      1     1      1         NA      NA        NA        NA
## 770      1     1      1         NA      NA        NA        NA
## 771     NA    NA     NA         NA      NA        NA        NA
## 772      0     0      0         NA      NA        NA        NA
## 773      2     0      1         NA      NA        NA        NA
## 774     NA     0     NA         NA      NA        NA        NA
## 775     NA    NA      0         NA      NA        NA        NA
## 776      5     1      5         NA      NA        NA        NA
## 777      4     2      4         NA      NA        NA        NA
## 778     NA     2      3         NA      NA        NA        NA
## 779      1     1      1         NA      NA        NA        NA
## 780      0     0      1         NA      NA        NA        NA
## 781      2     4      4         NA      NA        NA        NA
## 782      2     1      1         NA      NA        NA        NA
## 783      1    NA      1         NA      NA        NA        NA
## 784     NA    NA     NA         NA      NA        NA        NA
## 785     NA    NA     NA         NA      NA        NA        NA
## 786     NA     2     NA         NA      NA        NA        NA
## 787      6     6      8         NA      NA        NA        NA
## 788     NA     1     NA         NA      NA        NA        NA
## 789      2     2     NA         NA      NA        NA        NA
## 790      2     1      2         NA      NA        NA        NA
## 791      0     0      0         NA      NA        NA        NA
## 792     NA    NA      1         NA      NA        NA        NA
## 793      0     0      0         NA      NA        NA        NA
## 794      1    NA      1         NA      NA        NA        NA
## 795     NA    NA     NA         NA      NA        NA        NA
## 796      1     1      1         NA      NA        NA        NA
## 797     11     8     11         NA      NA        NA        NA
## 798      2     2      2         NA      NA        NA        NA
## 799      0     0      0         NA      NA        NA        NA
## 800      2    NA      2         NA      NA        NA        NA
## 801      8     8      6         NA      NA        NA        NA
## 802      2     1      2         NA      NA        NA        NA
## 803     NA    NA     NA         NA      NA        NA        NA
## 804      2     2      2         NA      NA        NA        NA
## 805      2     1      3         NA      NA        NA        NA
## 806      0     0      0         NA      NA        NA        NA
## 807     NA    NA     NA         NA      NA        NA        NA
## 808      7     3      3         NA      NA        NA        NA
## 809      3     5      3         NA      NA        NA        NA
## 810      1    NA      1         NA      NA        NA        NA
## 811      3     3      3         NA      NA        NA        NA
## 812      8     8     25         NA      NA        NA        NA
## 813     22    16     48         NA      NA        NA        NA
## 814     NA     4     28         NA      NA        NA        NA
## 815      5     8      3         NA      NA        NA        NA
## 816      1     1      1         NA      NA        NA        NA
## 817      5     5      6         NA      NA        NA        NA
## 818      1     1      1         NA      NA        NA        NA
## 819      1     1      1         NA      NA        NA        NA
## 820      3     1      2         NA      NA        NA        NA
## 821     NA     1      0         NA      NA        NA        NA
## 822     NA    NA     NA         NA      NA        NA        NA
## 823      2     2      2         NA      NA        NA        NA
## 824      8     3      3         NA      NA        NA        NA
## 825      2     1      2         NA      NA        NA        NA
## 826      1     1      0         NA      NA        NA        NA
## 827      4     0      1         NA      NA        NA        NA
## 828     NA    NA     NA         NA      NA        NA        NA
## 829      1     3      0         NA      NA        NA        NA
## 830     19    13     21         NA      NA        NA        NA
## 831      2     2     NA         NA      NA        NA        NA
## 832      3    NA     NA         NA      NA        NA        NA
## 833     18    21     28         NA      NA        NA        NA
## 834      1     2      3         NA      NA        NA        NA
## 835      8     8      8         NA      NA        NA        NA
## 836      1     0      0         NA      NA        NA        NA
## 837     NA    NA     NA         NA      NA        NA        NA
## 838     11    20     42         NA      NA        NA        NA
## 839     21    21     25         NA      NA        NA        NA
## 840      1     1      2         NA      NA        NA        NA
## 841      6     8      6         NA      NA        NA        NA
## 842     NA     4     NA         NA      NA        NA        NA
## 843     NA    NA     NA         NA      NA        NA        NA
## 844     NA    32     36         NA      NA        NA        NA
## 845     58    48     61         NA      NA        NA        NA
## 846     NA    NA     NA         NA      NA        NA        NA
## 847      6    10     10         NA      NA        NA        NA
## 848     10    15     15         NA      NA        NA        NA
## 849     14    14     12         NA      NA        NA        NA
## 850      3     5      5         NA      NA        NA        NA
## 851      3    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA      NA        NA        NA
## 853     70    92     81         NA      NA        NA        NA
## 854    106    92    106         NA      NA        NA        NA
## 855      9     8     10         NA      NA        NA        NA
## 856     11     4      8         NA      NA        NA        NA
## 857     27    25     36         NA      NA        NA        NA
## 858    106    72     82         NA      NA        NA        NA
## 859     NA     1     NA         NA      NA        NA        NA
## 860     NA    NA     NA         NA      NA        NA        NA
## 861      5     5      3         NA      NA        NA        NA
## 862      2     4      4         NA      NA        NA        NA
## 863      2     1      2         NA      NA        NA        NA
## 864      4     1      4         NA      NA        NA        NA
## 865     NA    NA     NA         NA      NA        NA        NA
## 866      4     4      2         NA      NA        NA        NA
## 867      2     4      1         NA      NA        NA        NA
## 868      0     0      0         NA      NA        NA        NA
## 869      4     4      4         NA      NA        NA        NA
## 870      3    NA     NA         NA      NA        NA        NA
## 871      2     1      2         NA      NA        NA        NA
## 872      1    NA      0         NA      NA        NA        NA
## 873      3     5      5         NA      NA        NA        NA
## 874      6     4      4         NA      NA        NA        NA
## 875      5     4      5         NA      NA        NA        NA
## 876      1     1      2         NA      NA        NA        NA
## 877      4     5      3         NA      NA        NA        NA
## 878      6     4      6         NA      NA        NA        NA
## 879      3     2      3         NA      NA        NA        NA
## 880      1     3      2         NA      NA        NA        NA
## 881     NA    NA     NA         NA      NA        NA        NA
## 882     NA    NA     NA         NA      NA        NA        NA
## 883      6     2      4         NA      NA        NA        NA
## 884      6     3      6         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      3     1      1         NA      NA        NA        NA
## 887      3     2      1         NA      NA        NA        NA
## 888      0     0      0         NA      NA        NA        NA
## 889      3     3      3         NA      NA        NA        NA
## 890      1     1      1         NA      NA        NA        NA
## 891      1     1     NA         NA      NA        NA        NA
## 892      0     0      0         NA      NA        NA        NA
## 893      8    NA     NA         NA      NA        NA        NA
## 894      4    NA      4         NA      NA        NA        NA
## 895     NA    NA     NA         NA      NA        NA        NA
## 896      1     1      1         NA      NA        NA        NA
## 897      1    NA     NA         NA      NA        NA        NA
## 898      2     3      1         NA      NA        NA        NA
## 899     NA    NA      4         NA      NA        NA        NA
## 900      8     6      6         NA      NA        NA        NA
## 901      4    NA      4         NA      NA        NA        NA
## 902      3     4      1         NA      NA        NA        NA
## 903      0     0      0         NA      NA        NA        NA
## 904      8     2      6         NA      NA        NA        NA
## 905      8     8      6         NA      NA        NA        NA
## 906      3     1      3         NA      NA        NA        NA
## 907      4     3      3         NA      NA        NA        NA
## 908      0     0      0         NA      NA        NA        NA
## 909     NA    NA     NA         NA      NA        NA        NA
## 910     10     8      8         NA      NA        NA        NA
## 911      1     1      1         NA      NA        NA        NA
## 912      3     2      2         NA      NA        NA        NA
## 913      1     1      3         NA      NA        NA        NA
## 914      2    21     17         NA      NA        NA        NA
## 915     38    25     22         NA      NA        NA        NA
## 916      5    NA      5         NA      NA        NA        NA
## 917      1     2      3         NA      NA        NA        NA
## 918      1     1      1         NA      NA        NA        NA
## 919     NA    NA      1         NA      NA        NA        NA
## 920      1     1     NA         NA      NA        NA        NA
## 921      3     3      1         NA      NA        NA        NA
## 922      0     2      1         NA      NA        NA        NA
## 923      1    NA      1         NA      NA        NA        NA
## 924      1     1     NA         NA      NA        NA        NA
## 925     NA    NA      2         NA      NA        NA        NA
## 926      2    NA      2         NA      NA        NA        NA
## 927      6     6      3         NA      NA        NA        NA
## 928      3     1      3         NA      NA        NA        NA
## 929      6    NA      4         NA      NA        NA        NA
## 930      2     1      3         NA      NA        NA        NA
## 931      3     1      1         NA      NA        NA        NA
## 932      1     1      1         NA      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     19    21     17         NA      NA        NA        NA
## 935      5     3      3         NA      NA        NA        NA
## 936     20    20     11         NA      NA        NA        NA
## 937     NA    NA     NA         NA      NA        NA        NA
## 938     11     7     NA         NA      NA        NA        NA
## 939      2     4     NA         NA      NA        NA        NA
## 940     19    21     11         NA      NA        NA        NA
## 941      5    NA     NA         NA      NA        NA        NA
## 942      3    NA     NA         NA      NA        NA        NA
## 943     NA    NA      1         NA      NA        NA        NA
## 944     NA    NA     NA         NA      NA        NA        NA
## 945     23    31     11         NA      NA        NA        NA
## 946     28    32      7         NA      NA        NA        NA
## 947      2     3      3         NA      NA        NA        NA
## 948     15     6      8         NA      NA        NA        NA
## 949      2     4     NA         NA      NA        NA        NA
## 950      2    NA      1         NA      NA        NA        NA
## 951     NA    19     25         NA      NA        NA        NA
## 952     63    61     37         NA      NA        NA        NA
## 953     NA    NA     NA         NA      NA        NA        NA
## 954      6    13      3         NA      NA        NA        NA
## 955     37    39     25         NA      NA        NA        NA
## 956      8     9      8         NA      NA        NA        NA
## 957      3    NA      5         NA      NA        NA        NA
## 958     45    48     34         NA      NA        NA        NA
## 959     NA    NA     NA         NA      NA        NA        NA
## 960     67    42     53         NA      NA        NA        NA
## 961     67    85     67         NA      NA        NA        NA
## 962     11    14      7         NA      NA        NA        NA
## 963     NA     2      4         NA      NA        NA        NA
## 964      4     6      6         NA      NA        NA        NA
## 965     49    46     34         NA      NA        NA        NA
## 966     49    51     42         NA      NA        NA        NA
## 967     NA     1      1         NA      NA        NA        NA
## 968     NA    NA     NA         NA      NA        NA        NA
## 969      5     5     NA         NA      NA        NA        NA
## 970      2    NA     NA         NA      NA        NA        NA
## 971      2     1      2         NA      NA        NA        NA
## 972     10     4      4         NA      NA        NA        NA
## 973      4     4      1         NA      NA        NA        NA
## 974      1     2      1         NA      NA        NA        NA
## 975      2     2      1         NA      NA        NA        NA
## 976      4     2      2         NA      NA        NA        NA
## 977     NA    NA     NA         NA      NA        NA        NA
## 978     17    17      8         NA      NA        NA        NA
## 979     NA     2      2         NA      NA        NA        NA
## 980     NA    NA     NA         NA      NA        NA        NA
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     NA     1     NA         NA      NA        NA        NA
## 983      4     2      2         NA      NA        NA        NA
## 984      1     1      1         NA      NA        NA        NA
## 985      1     3      2         NA      NA        NA        NA
## 986      6     5      3         NA      NA        NA        NA
## 987     12    18     12         NA      NA        NA        NA
## 988      3     5      3         NA      NA        NA        NA
## 989     12     0      3         NA      NA        NA        NA
## 990     NA     4      4         NA      NA        NA        NA
## 991      9     4      7         NA      NA        NA        NA
## 992     10    NA     NA         NA      NA        NA        NA
## 993      8     4      3         NA      NA        NA        NA
## 994      5    NA      2         NA      NA        NA        NA
## 995     NA    NA     NA         NA      NA        NA        NA
## 996      1    NA     NA         NA      NA        NA        NA
## 997      2    NA     NA         NA      NA        NA        NA
## 998     NA     2     NA         NA      NA        NA        NA
## 999      3     6      3         NA      NA        NA        NA
## 1000     1    NA      1         NA      NA        NA        NA
## 1001     1     2      2         NA      NA        NA        NA
## 1002     3     4      3         NA      NA        NA        NA
## 1003     0     0      0         NA      NA        NA        NA
## 1004    NA    NA      1         NA      NA        NA        NA
## 1005     1    NA      2         NA      NA        NA        NA
## 1006     1     1      1         NA      NA        NA        NA
## 1007     0     0      0         NA      NA        NA        NA
## 1008    NA    NA      2         NA      NA        NA        NA
## 1009     4     8      3         NA      NA        NA        NA
## 1010     2    NA     NA         NA      NA        NA        NA
## 1011     1    NA     NA         NA      NA        NA        NA
## 1012     1    NA     NA         NA      NA        NA        NA
## 1013     2     1      1         NA      NA        NA        NA
## 1014     7     6      3         NA      NA        NA        NA
## 1015    11    11      6         NA      NA        NA        NA
## 1016     2     2      2         NA      NA        NA        NA
## 1017    NA     3      1         NA      NA        NA        NA
## 1018     0     0      0         NA      NA        NA        NA
## 1019     2    NA     NA         NA      NA        NA        NA
## 1020    NA    NA     NA         NA      NA        NA        NA
## 1021    11     6      6         NA      NA        NA        NA
## 1022     1    NA      1         NA      NA        NA        NA
## 1023     3     2      2         NA      NA        NA        NA
## 1024     6     5      4         NA      NA        NA        NA
## 1025     0     0      0         NA      NA        NA        NA
## 1026    NA     1     NA         NA      NA        NA        NA
## 1027    NA    NA     NA         NA      NA        NA        NA
## 1028     2     1      3         NA      NA        NA        NA
## 1029     1     1      1         NA      NA        NA        NA
## 1030     4     4      2         NA      NA        NA        NA
## 1031     3     6      3         NA      NA        NA        NA
## 1032    NA     5     NA         NA      NA        NA        NA
## 1033     1     1      1         NA      NA        NA        NA
## 1034     1     1      1         NA      NA        NA        NA
## 1035     1     1      1         NA      NA        NA        NA
## 1036     3     3      3         NA      NA        NA        NA
## 1037    NA     0     NA         NA      NA        NA        NA
## 1038     0    NA     NA         NA      NA        NA        NA
## 1039    NA    NA      0         NA      NA        NA        NA
## 1040     2     2      2         NA      NA        NA        NA
## 1041     2     6      4         NA      NA        NA        NA
## 1042     2    NA     NA         NA      NA        NA        NA
## 1043     1     1     NA         NA      NA        NA        NA
## 1044    NA    NA     NA         NA      NA        NA        NA
## 1045     1     1      1         NA      NA        NA        NA
## 1046    NA    NA     NA         NA      NA        NA        NA
## 1047    NA     6     61         NA      NA        NA        NA
## 1048    60    67     48         NA      NA        NA        NA
## 1049    17    15      5         NA      NA        NA        NA
## 1050    NA     2      2         NA      NA        NA        NA
## 1051    11     7     11         NA      NA        NA        NA
## 1052    77   106     67         NA      NA        NA        NA
## 1053     2     2      1         NA      NA        NA        NA
## 1054    11    13     11         NA      NA        NA        NA
## 1055    61    72     53         NA      NA        NA        NA
## 1056     3    NA     NA         NA      NA        NA        NA
## 1057     2    NA      2         NA      NA        NA        NA
## 1058    NA    NA      2         NA      NA        NA        NA
## 1059     4     3      2         NA      NA        NA        NA
## 1060     1     2      1         NA      NA        NA        NA
## 1061     1    NA     NA         NA      NA        NA        NA
## 1062     1     1      1         NA      NA        NA        NA
## 1063     0     0      0         NA      NA        NA        NA
## 1064    NA    NA     NA         NA      NA        NA        NA
## 1065     2     1      2         NA      NA        NA        NA
## 1066    NA     0      0         NA      NA        NA        NA
## 1067     1     1      1         NA      NA        NA        NA
## 1068    NA    NA     NA         NA      NA        NA        NA
## 1069     0     0      0         NA      NA        NA        NA
## 1070     1     1      1         NA      NA        NA        NA
## 1071    NA    NA     NA         NA      NA        NA        NA
## 1072     6     6      8         NA      NA        NA        NA
## 1073    NA    NA     NA         NA      NA        NA        NA
## 1074     3     4      3         NA      NA        NA        NA
## 1075    NA     1      1         NA      NA        NA        NA
## 1076     0     0     NA         NA      NA        NA        NA
## 1077     4     2      2         NA      NA        NA        NA
## 1078     3    NA     NA         NA      NA        NA        NA
## 1079     3     2      3         NA      NA        NA        NA
## 1080     2    NA      1         NA      NA        NA        NA
## 1081     0     0     NA         NA      NA        NA        NA
## 1082    NA    NA     NA         NA      NA        NA        NA
## 1083     5     2      1         NA      NA        NA        NA
## 1084     1     1      1         NA      NA        NA        NA
## 1085    NA     6      2         NA      NA        NA        NA
## 1086    NA     2      2         NA      NA        NA        NA
## 1087     0     0     NA         NA      NA        NA        NA
## 1088    NA     2     NA         NA      NA        NA        NA
## 1089    NA    NA     NA         NA      NA        NA        NA
## 1090     3     3      3         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA        NA        NA
## 1092    NA     0      1         NA      NA        NA        NA
## 1093     3     4      3         NA      NA        NA        NA
## 1094     1     1      1         NA      NA        NA        NA
## 1095     0     0     NA         NA      NA        NA        NA
## 1096     1     1      1         NA      NA        NA        NA
## 1097     1     1      1         NA      NA        NA        NA
## 1098     8     8      2         NA      NA        NA        NA
## 1099     6     6      6         NA      NA        NA        NA
## 1100     3     5     NA         NA      NA        NA        NA
## 1101     1     1      1         NA      NA        NA        NA
## 1102     1     1      1         NA      NA        NA        NA
## 1103    NA     0      0         NA      NA        NA        NA
## 1104    NA    NA     NA         NA      NA        NA        NA
## 1105     1     1      1         NA      NA        NA        NA
## 1106     3     3      3         NA      NA        NA        NA
## 1107    NA     0     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA      NA        NA        NA
## 1109     6     4      8         NA      NA        NA        NA
## 1110    NA     1      1         NA      NA        NA        NA
## 1111     6     4      4         NA      NA        NA        NA
## 1112     6     3      4         NA      NA        NA        NA
## 1113    NA    NA     NA         NA      NA        NA        NA
## 1114    16    13     11         NA      NA        NA        NA
## 1115    NA    NA     NA         NA      NA        NA        NA
## 1116    29    25     29         NA      NA        NA        NA
## 1117    15    10      7         NA      NA        NA        NA
## 1118     6     6      5         NA      NA        NA        NA
## 1119    28    18     14         NA      NA        NA        NA
## 1120    63    70     53         NA      NA        NA        NA
## 1121     3     2      2         NA      NA        NA        NA
## 1122     8     8      6         NA      NA        NA        NA
## 1123    15    21     13         NA      NA        NA        NA
## 1124    51    34     42         NA      NA        NA        NA
## 1125    NA    NA     NA         NA      NA        NA        NA
## 1126     2     1      1         NA      NA        NA        NA
## 1127     2     2     NA         NA      NA        NA        NA
## 1128     2     2      1         NA      NA        NA        NA
## 1129     3     2      2         NA      NA        NA        NA
## 1130     1     2      1         NA      NA        NA        NA
## 1131     3     1      1         NA      NA        NA        NA
## 1132     0     0      0         NA      NA        NA        NA
## 1133     4     5      2         NA      NA        NA        NA
## 1134    NA    NA      0         NA      NA        NA        NA
## 1135     1     2      1         NA      NA        NA        NA
## 1136     1    NA      1         NA      NA        NA        NA
## 1137    NA     1     NA         NA      NA        NA        NA
## 1138     0     0      0         NA      NA        NA        NA
## 1139     2     1      3         NA      NA        NA        NA
## 1140    NA     1     NA         NA      NA        NA        NA
## 1141    NA    NA      2         NA      NA        NA        NA
## 1142    NA     3     NA         NA      NA        NA        NA
## 1143     1     1      1         NA      NA        NA        NA
## 1144     6     6      6         NA      NA        NA        NA
## 1145     2     1      2         NA      NA        NA        NA
## 1146     0     0      0         NA      NA        NA        NA
## 1147     1    NA     NA         NA      NA        NA        NA
## 1148     0     0      0         NA      NA        NA        NA
## 1149     1    NA     NA         NA      NA        NA        NA
## 1150    NA    NA     NA         NA      NA        NA        NA
## 1151    NA    NA     NA         NA      NA        NA        NA
## 1152    NA     2     NA         NA      NA        NA        NA
## 1153    NA    NA     NA         NA      NA        NA        NA
## 1154    NA     0     NA         NA      NA        NA        NA
## 1155     8     6      6         NA      NA        NA        NA
## 1156     0     0      0         NA      NA        NA        NA
## 1157     2     2     NA         NA      NA        NA        NA
## 1158    NA    NA      3         NA      NA        NA        NA
## 1159     0     0      1         NA      NA        NA        NA
## 1160     4     4      4         NA      NA        NA        NA
## 1161     2     1      3         NA      NA        NA        NA
## 1162     0     0      0         NA      NA        NA        NA
## 1163     1     1      1         NA      NA        NA        NA
## 1164    NA    NA     NA         NA      NA        NA        NA
## 1165    NA    NA     NA         NA      NA        NA        NA
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167     1     4      4         NA      NA        NA        NA
## 1168    21     2     11         NA      NA        NA        NA
## 1169    32    16      6         NA      NA        NA        NA
## 1170    NA    NA     11         NA      NA        NA        NA
## 1171     8    NA      3         NA      NA        NA        NA
## 1172     1     1      1         NA      NA        NA        NA
## 1173    NA    NA     NA         NA      NA        NA        NA
## 1174     1     1      1         NA      NA        NA        NA
## 1175     4     3      4         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA        NA
## 1177    NA    NA     NA         NA      NA        NA        NA
## 1178    NA     1      1         NA      NA        NA        NA
## 1179     2    NA     NA         NA      NA        NA        NA
## 1180     8     3      3         NA      NA        NA        NA
## 1181     1    NA     NA         NA      NA        NA        NA
## 1182     2    NA      1         NA      NA        NA        NA
## 1183     6    NA     NA         NA      NA        NA        NA
## 1184     4    NA     NA         NA      NA        NA        NA
## 1185     1    NA      1         NA      NA        NA        NA
## 1186     2     1      1         NA      NA        NA        NA
## 1187     0    NA     NA         NA      NA        NA        NA
## 1188    27    17     19         NA      NA        NA        NA
## 1189     2    NA     NA         NA      NA        NA        NA
## 1190    14     6     14         NA      NA        NA        NA
## 1191    NA    NA     NA         NA      NA        NA        NA
## 1192     1     1      3         NA      NA        NA        NA
## 1193     4    11     11         NA      NA        NA        NA
## 1194    NA    NA     NA         NA      NA        NA        NA
## 1195    NA    NA     NA         NA      NA        NA        NA
## 1196    17     8     14         NA      NA        NA        NA
## 1197     1    NA      1         NA      NA        NA        NA
## 1198     4     2      4         NA      NA        NA        NA
## 1199     1    NA     NA         NA      NA        NA        NA
## 1200    NA    21     36         NA      NA        NA        NA
## 1201    NA    NA     NA         NA      NA        NA        NA
## 1202    32    45     40         NA      NA        NA        NA
## 1203    NA    NA     NA         NA      NA        NA        NA
## 1204    13    38     32         NA      NA        NA        NA
## 1205    15    25     27         NA      NA        NA        NA
## 1206    NA    NA      2         NA      NA        NA        NA
## 1207     2    NA     NA         NA      NA        NA        NA
## 1208    NA    NA     NA         NA      NA        NA        NA
## 1209    56    53     53         NA      NA        NA        NA
## 1210    63    74     67         NA      NA        NA        NA
## 1211     6     7     10         NA      NA        NA        NA
## 1212    NA     4      4         NA      NA        NA        NA
## 1213     6    32     27         NA      NA        NA        NA
## 1214    78    66     55         NA      NA        NA        NA
## 1215    13     5     10         NA      NA        NA        NA
## 1216     3     3      6         NA      NA        NA        NA
## 1217     2    NA      4         NA      NA        NA        NA
## 1218     6     4      3         NA      NA        NA        NA
## 1219     1     2      2         NA      NA        NA        NA
## 1220     3     1      1         NA      NA        NA        NA
## 1221     2     0      0         NA      NA        NA        NA
## 1222     5     5      5         NA      NA        NA        NA
## 1223    NA     1     NA         NA      NA        NA        NA
## 1224     1     4      2         NA      NA        NA        NA
## 1225     7    NA      1         NA      NA        NA        NA
## 1226    NA     1      1         NA      NA        NA        NA
## 1227     5    NA      1         NA      NA        NA        NA
## 1228     2    NA      1         NA      NA        NA        NA
## 1229     3     0      0         NA      NA        NA        NA
## 1230     2    NA     NA         NA      NA        NA        NA
## 1231     1     2      1         NA      NA        NA        NA
## 1232    NA     1      2         NA      NA        NA        NA
## 1233    NA    NA     NA         NA      NA        NA        NA
## 1234    NA    NA     NA         NA      NA        NA        NA
## 1235    NA     2     NA         NA      NA        NA        NA
## 1236     3     3      6         NA      NA        NA        NA
## 1237    NA    NA      1         NA      NA        NA        NA
## 1238     0    NA      0         NA      NA        NA        NA
## 1239     2     1      2         NA      NA        NA        NA
## 1240     1     1      3         NA      NA        NA        NA
## 1241    NA    NA     NA         NA      NA        NA        NA
## 1242     0     0      0         NA      NA        NA        NA
## 1243     3     3     NA         NA      NA        NA        NA
## 1244     0    NA      0         NA      NA        NA        NA
## 1245     2     1      4         NA      NA        NA        NA
## 1246    NA     1     NA         NA      NA        NA        NA
## 1247    NA    NA     NA         NA      NA        NA        NA
## 1248     0     0      0         NA      NA        NA        NA
## 1249     1    NA      3         NA      NA        NA        NA
## 1250    NA    NA      1         NA      NA        NA        NA
## 1251     0    NA      0         NA      NA        NA        NA
## 1252     2     1      2         NA      NA        NA        NA
## 1253    NA     1     NA         NA      NA        NA        NA
## 1254    NA    NA     NA         NA      NA        NA        NA
## 1255     4     2      4         NA      NA        NA        NA
## 1256     6     6      3         NA      NA        NA        NA
## 1257    NA    NA     NA         NA      NA        NA        NA
## 1258    NA     1      5         NA      NA        NA        NA
## 1259     0     0      0         NA      NA        NA        NA
## 1260     2    NA      2         NA      NA        NA        NA
## 1261     6     3      3         NA      NA        NA        NA
## 1262    NA    NA      2         NA      NA        NA        NA
## 1263     0    NA      0         NA      NA        NA        NA
## 1264     2     1      2         NA      NA        NA        NA
## 1265     5     3      4         NA      NA        NA        NA
## 1266    NA    NA     NA         NA      NA        NA        NA
## 1267     0     0      0         NA      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     4     1      4         NA      NA        NA        NA
## 1270    NA    NA     NA         NA      NA        NA        NA
## 1271     1     3      3         NA      NA        NA        NA
## 1272    23    25     23         NA      NA        NA        NA
## 1273    25    19     22         NA      NA        NA        NA
## 1274    10     8      5         NA      NA        NA        NA
## 1275     1     1      1         NA      NA        NA        NA
## 1276     1     1      1         NA      NA        NA        NA
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278     1     1      1         NA      NA        NA        NA
## 1279    NA    NA     NA         NA      NA        NA        NA
## 1280     2     2      4         NA      NA        NA        NA
## 1281     2     1      1         NA      NA        NA        NA
## 1282    11    11     11         NA      NA        NA        NA
## 1283     3    NA      3         NA      NA        NA        NA
## 1284    NA    NA     NA         NA      NA        NA        NA
## 1285     2     1      2         NA      NA        NA        NA
## 1286    NA    NA     NA         NA      NA        NA        NA
## 1287     8    11     11         NA      NA        NA        NA
## 1288    NA    NA     NA         NA      NA        NA        NA
## 1289    18    18      4         NA      NA        NA        NA
## 1290     1     2      1         NA      NA        NA        NA
## 1291     6     6      8         NA      NA        NA        NA
## 1292    NA    NA     NA         NA      NA        NA        NA
## 1293     6     8      8         NA      NA        NA        NA
## 1294     1     1      2         NA      NA        NA        NA
## 1295     4     8      8         NA      NA        NA        NA
## 1296    NA     1     NA         NA      NA        NA        NA
## 1297    26    34     37         NA      NA        NA        NA
## 1298    22    13     13         NA      NA        NA        NA
## 1299    27    30     30         NA      NA        NA        NA
## 1300    15    12     18         NA      NA        NA        NA
## 1301    NA    NA     NA         NA      NA        NA        NA
## 1302    35    25     32         NA      NA        NA        NA
## 1303    53    49     60         NA      NA        NA        NA
## 1304     7     7      5         NA      NA        NA        NA
## 1305     6     4      4         NA      NA        NA        NA
## 1306    34    42     44         NA      NA        NA        NA
## 1307    51    46     59         NA      NA        NA        NA
## 1308     2     3      2         NA      NA        NA        NA
## 1309     1     1      1         NA      NA        NA        NA
## 1310     5     4      2         NA      NA        NA        NA
## 1311     1    NA      1         NA      NA        NA        NA
## 1312     3     3      1         NA      NA        NA        NA
## 1313     2     0      1         NA      NA        NA        NA
## 1314     3     3      4         NA      NA        NA        NA
## 1315    NA     1     NA         NA      NA        NA        NA
## 1316     3     1      2         NA      NA        NA        NA
## 1317    NA    NA     NA         NA      NA        NA        NA
## 1318     3     1      1         NA      NA        NA        NA
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320     2     2      2         NA      NA        NA        NA
## 1321     2     1      3         NA      NA        NA        NA
## 1322     1     2      1         NA      NA        NA        NA
## 1323    NA    NA     NA         NA      NA        NA        NA
## 1324    NA    NA     NA         NA      NA        NA        NA
## 1325     4     2      4         NA      NA        NA        NA
## 1326     2     1      1         NA      NA        NA        NA
## 1327    NA    NA     NA         NA      NA        NA        NA
## 1328     3     2      3         NA      NA        NA        NA
## 1329    NA    NA      3         NA      NA        NA        NA
## 1330     1    NA      0         NA      NA        NA        NA
## 1331    NA    NA     NA         NA      NA        NA        NA
## 1332     3    NA     NA         NA      NA        NA        NA
## 1333    NA    NA     NA         NA      NA        NA        NA
## 1334     1     0      0         NA      NA        NA        NA
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA    NA     NA         NA      NA        NA        NA
## 1337     4     3      3         NA      NA        NA        NA
## 1338     6     8      3         NA      NA        NA        NA
## 1339     4     4      4         NA      NA        NA        NA
## 1340    NA     1      4         NA      NA        NA        NA
## 1341     6     4      4         NA      NA        NA        NA
## 1342    11     6      8         NA      NA        NA        NA
## 1343     1     1      1         NA      NA        NA        NA
## 1344     2     2      1         NA      NA        NA        NA
## 1345     4     4      2         NA      NA        NA        NA
## 1346     4     4      3         NA      NA        NA        NA
## 1347    NA    NA      1         NA      NA        NA        NA
## 1348    NA    NA     NA         NA      NA        NA        NA
## 1349     6     3      6         NA      NA        NA        NA
## 1350    NA    NA     10         NA      NA        NA        NA
## 1351     1     1      1         NA      NA        NA        NA
## 1352     2     2     NA         NA      NA        NA        NA
## 1353    NA    NA     NA         NA      NA        NA        NA
## 1354     5    NA     NA         NA      NA        NA        NA
## 1355    NA     1      1         NA      NA        NA        NA
## 1356     2    NA      2         NA      NA        NA        NA
## 1357     4     2      2         NA      NA        NA        NA
## 1358     2     1      3         NA      NA        NA        NA
## 1359     8     8     11         NA      NA        NA        NA
## 1360    NA    NA     NA         NA      NA        NA        NA
## 1361    NA    NA     NA         NA      NA        NA        NA
## 1362     0     0      0         NA      NA        NA        NA
## 1363    NA    NA     NA         NA      NA        NA        NA
## 1364    11    15     15         NA      NA        NA        NA
## 1365    NA    NA      3         NA      NA        NA        NA
## 1366     1     2     NA         NA      NA        NA        NA
## 1367     6     8      6         NA      NA        NA        NA
## 1368    NA    NA     NA         NA      NA        NA        NA
## 1369     8     8      8         NA      NA        NA        NA
## 1370    NA    NA     NA         NA      NA        NA        NA
## 1371    NA     1     NA         NA      NA        NA        NA
## 1372    NA    40     66         NA      NA        NA        NA
## 1373    32    26     26         NA      NA        NA        NA
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    73    67     63         NA      NA        NA        NA
## 1376    44    44     35         NA      NA        NA        NA
## 1377     8     9      3         NA      NA        NA        NA
## 1378     6     3      6         NA      NA        NA        NA
## 1379    39    32     21         NA      NA        NA        NA
## 1380   166   166    180         NA      NA        NA        NA
## 1381     8     7      8         NA      NA        NA        NA
## 1382    11     8      8         NA      NA        NA        NA
## 1383    27    21     23         NA      NA        NA        NA
## 1384   104   104    104         NA      NA        NA        NA
## 1385     3     2      3         NA      NA        NA        NA
## 1386     2     4      2         NA      NA        NA        NA
## 1387     7     4      8         NA      NA        NA        NA
## 1388     4     4      2         NA      NA        NA        NA
## 1389     3     3      2         NA      NA        NA        NA
## 1390     5     5      4         NA      NA        NA        NA
## 1391    NA     0     NA         NA      NA        NA        NA
## 1392     3     3      4         NA      NA        NA        NA
## 1393     1     1      1         NA      NA        NA        NA
## 1394     3     3      1         NA      NA        NA        NA
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396    NA    NA     NA         NA      NA        NA        NA
## 1397     6     3      6         NA      NA        NA        NA
## 1398     3     1      2         NA      NA        NA        NA
## 1399     4     4      2         NA      NA        NA        NA
## 1400     1    NA      1         NA      NA        NA        NA
## 1401    NA    NA      6         NA      NA        NA        NA
## 1402     2     2      1         NA      NA        NA        NA
## 1403     2     4      2         NA      NA        NA        NA
## 1404     1    NA     NA         NA      NA        NA        NA
## 1405     1    NA     NA         NA      NA        NA        NA
## 1406     3     1      1         NA      NA        NA        NA
## 1407     2     2      2         NA      NA        NA        NA
## 1408     1    NA     NA         NA      NA        NA        NA
## 1409     1     1     NA         NA      NA        NA        NA
## 1410     6     3      3         NA      NA        NA        NA
## 1411    NA     0      0         NA      NA        NA        NA
## 1412    NA     2     NA         NA      NA        NA        NA
## 1413    NA    NA      1         NA      NA        NA        NA
## 1414     8     8     NA         NA      NA        NA        NA
## 1415     3     3      3         NA      NA        NA        NA
## 1416     4     4      6         NA      NA        NA        NA
## 1417     1    NA      1         NA      NA        NA        NA
## 1418     7     6      3         NA      NA        NA        NA
## 1419    NA     1     NA         NA      NA        NA        NA
## 1420     2     2     NA         NA      NA        NA        NA
## 1421     1     4      1         NA      NA        NA        NA
## 1422     2     4     21         NA      NA        NA        NA
## 1423     6    10     35         NA      NA        NA        NA
## 1424    NA    NA     28         NA      NA        NA        NA
## 1425    10     3      5         NA      NA        NA        NA
## 1426     1     1      1         NA      NA        NA        NA
## 1427    NA    NA     NA         NA      NA        NA        NA
## 1428     1     1      1         NA      NA        NA        NA
## 1429     1    NA     NA         NA      NA        NA        NA
## 1430    NA    NA      1         NA      NA        NA        NA
## 1431     1    NA     NA         NA      NA        NA        NA
## 1432    NA    NA     NA         NA      NA        NA        NA
## 1433     1     1      1         NA      NA        NA        NA
## 1434    NA    NA     NA         NA      NA        NA        NA
## 1435     3     3      3         NA      NA        NA        NA
## 1436     1    NA     NA         NA      NA        NA        NA
## 1437    NA     2      2         NA      NA        NA        NA
## 1438    NA    NA     NA         NA      NA        NA        NA
## 1439     0     0      0         NA      NA        NA        NA
## 1440    NA     3     NA         NA      NA        NA        NA
## 1441     8     8     11         NA      NA        NA        NA
## 1442     3     8      3         NA      NA        NA        NA
## 1443     3     4      4         NA      NA        NA        NA
## 1444    11    13     15         NA      NA        NA        NA
## 1445    NA    NA      2         NA      NA        NA        NA
## 1446    NA    NA     NA         NA      NA        NA        NA
## 1447    NA    NA     NA         NA      NA        NA        NA
## 1448     1     2      4         NA      NA        NA        NA
## 1449    NA    NA     NA         NA      NA        NA        NA
## 1450    NA    23     36         NA      NA        NA        NA
## 1451    NA    NA     NA         NA      NA        NA        NA
## 1452    42    45     53         NA      NA        NA        NA
## 1453    NA    NA     NA         NA      NA        NA        NA
## 1454    57    48     44         NA      NA        NA        NA
## 1455     2     2      2         NA      NA        NA        NA
## 1456     5     6      6         NA      NA        NA        NA
## 1457    NA    NA      2         NA      NA        NA        NA
## 1458    NA    NA     NA         NA      NA        NA        NA
## 1459    25    25     32         NA      NA        NA        NA
## 1460   116   123    169         NA      NA        NA        NA
## 1461     6     7      6         NA      NA        NA        NA
## 1462    NA     2      2         NA      NA        NA        NA
## 1463     4     2     NA         NA      NA        NA        NA
## 1464    38    30     38         NA      NA        NA        NA
## 1465    91    80     85         NA      NA        NA        NA
## 1466     2     2      2         NA      NA        NA        NA
## 1467     8    NA     NA         NA      NA        NA        NA
## 1468     2     2      2         NA      NA        NA        NA
## 1469     2     2      4         NA      NA        NA        NA
## 1470     2    NA      1         NA      NA        NA        NA
## 1471     1     1      2         NA      NA        NA        NA
## 1472     2     1      1         NA      NA        NA        NA
## 1473     0     2      1         NA      NA        NA        NA
## 1474     4     6      3         NA      NA        NA        NA
## 1475    NA    NA      1         NA      NA        NA        NA
## 1476     1     2      1         NA      NA        NA        NA
## 1477     0     0      0         NA      NA        NA        NA
## 1478     3     3      3         NA      NA        NA        NA
## 1479     4     3      5         NA      NA        NA        NA
## 1480     2     2      3         NA      NA        NA        NA
## 1481     2     2      2         NA      NA        NA        NA
## 1482     2     0      1         NA      NA        NA        NA
## 1483     1     1      1         NA      NA        NA        NA
## 1484    NA    NA     NA         NA      NA        NA        NA
## 1485    NA     1     NA         NA      NA        NA        NA
## 1486    NA     2     NA         NA      NA        NA        NA
## 1487     6     6      8         NA      NA        NA        NA
## 1488     1    NA      1         NA      NA        NA        NA
## 1489    NA     0      3         NA      NA        NA        NA
## 1490     2    NA      2         NA      NA        NA        NA
## 1491     3     1     NA         NA      NA        NA        NA
## 1492     0    NA     NA         NA      NA        NA        NA
## 1493     0     0     NA         NA      NA        NA        NA
## 1494    NA    NA     NA         NA      NA        NA        NA
## 1495    NA    NA      3         NA      NA        NA        NA
## 1496    NA    NA     NA         NA      NA        NA        NA
## 1497     0    NA     NA         NA      NA        NA        NA
## 1498     0     0     NA         NA      NA        NA        NA
## 1499     1    NA     NA         NA      NA        NA        NA
## 1500    NA    NA     NA         NA      NA        NA        NA
## 1501    NA    NA     NA         NA      NA        NA        NA
## 1502     0    NA     NA         NA      NA        NA        NA
## 1503    NA    NA      1         NA      NA        NA        NA
## 1504     3    NA      3         NA      NA        NA        NA
## 1505     4     8      8         NA      NA        NA        NA
## 1506     0     0     NA         NA      NA        NA        NA
## 1507     2    NA      2         NA      NA        NA        NA
## 1508     3     6      3         NA      NA        NA        NA
## 1509     1    NA     NA         NA      NA        NA        NA
## 1510    NA     0      2         NA      NA        NA        NA
## 1511     2     2      2         NA      NA        NA        NA
## 1512     3     1      3         NA      NA        NA        NA
## 1513     0    NA     NA         NA      NA        NA        NA
## 1514     0     0     NA         NA      NA        NA        NA
## 1515    NA    NA     NA         NA      NA        NA        NA
## 1516    NA    NA      1         NA      NA        NA        NA
## 1517     5     1      1         NA      NA        NA        NA
## 1518    NA    NA     NA         NA      NA        NA        NA
## 1519     1     3      3         NA      NA        NA        NA
## 1520     6     6      4         NA      NA        NA        NA
## 1521    10     6      3         NA      NA        NA        NA
## 1522     3     3     NA         NA      NA        NA        NA
## 1523     1     1      1         NA      NA        NA        NA
## 1524     1     1      1         NA      NA        NA        NA
## 1525    NA    NA     NA         NA      NA        NA        NA
## 1526     2     1      3         NA      NA        NA        NA
## 1527    NA    NA     NA         NA      NA        NA        NA
## 1528     1     1      1         NA      NA        NA        NA
## 1529    NA    NA     NA         NA      NA        NA        NA
## 1530     3     3      3         NA      NA        NA        NA
## 1531     1    NA     NA         NA      NA        NA        NA
## 1532     0     0      0         NA      NA        NA        NA
## 1533     0    NA     NA         NA      NA        NA        NA
## 1534     8     8      8         NA      NA        NA        NA
## 1535     3     6      8         NA      NA        NA        NA
## 1536    NA    NA     NA         NA      NA        NA        NA
## 1537     7     4      3         NA      NA        NA        NA
## 1538    11    15     13         NA      NA        NA        NA
## 1539     2     2      0         NA      NA        NA        NA
## 1540     4    NA      6         NA      NA        NA        NA
## 1541     3    NA     NA         NA      NA        NA        NA
## 1542     5     1      1         NA      NA        NA        NA
## 1543    11    11     13         NA      NA        NA        NA
## 1544    NA    NA     NA         NA      NA        NA        NA
## 1545    NA    17     23         NA      NA        NA        NA
## 1546    13    18     11         NA      NA        NA        NA
## 1547    NA    NA     NA         NA      NA        NA        NA
## 1548     3    10      3         NA      NA        NA        NA
## 1549    12     7     15         NA      NA        NA        NA
## 1550     6     6      5         NA      NA        NA        NA
## 1551    25    11     21         NA      NA        NA        NA
## 1552     7    11      4         NA      NA        NA        NA
## 1553    15    13     13         NA      NA        NA        NA
## 1554    11     6      6         NA      NA        NA        NA
## 1555    30    49     53         NA      NA        NA        NA
## 1556   101    80     63         NA      NA        NA        NA
## 1557    20     8      8         NA      NA        NA        NA
## 1558     7     4      2         NA      NA        NA        NA
## 1559     4     8      2         NA      NA        NA        NA
## 1560     3     4      2         NA      NA        NA        NA
## 1561     3     1      1         NA      NA        NA        NA
## 1562     2     1      1         NA      NA        NA        NA
## 1563     1     1      2         NA      NA        NA        NA
## 1564     0    NA     NA         NA      NA        NA        NA
## 1565    NA    NA     NA         NA      NA        NA        NA
## 1566     5     3      5         NA      NA        NA        NA
## 1567    NA     0     NA         NA      NA        NA        NA
## 1568     1     2      2         NA      NA        NA        NA
## 1569     1     0      1         NA      NA        NA        NA
## 1570    NA    NA     NA         NA      NA        NA        NA
## 1571     1     1      1         NA      NA        NA        NA
## 1572     1     0      1         NA      NA        NA        NA
## 1573     3     3      3         NA      NA        NA        NA
## 1574     2     1      2         NA      NA        NA        NA
## 1575    NA    NA     NA         NA      NA        NA        NA
## 1576    NA     2     NA         NA      NA        NA        NA
## 1577     3     1      3         NA      NA        NA        NA
## 1578     1    NA      1         NA      NA        NA        NA
## 1579    NA     0     NA         NA      NA        NA        NA
## 1580     4     3      2         NA      NA        NA        NA
## 1581     3     3      3         NA      NA        NA        NA
## 1582     0    NA      0         NA      NA        NA        NA
## 1583    NA     1     NA         NA      NA        NA        NA
## 1584     2     1      2         NA      NA        NA        NA
## 1585     1     1      1         NA      NA        NA        NA
## 1586     0    NA      0         NA      NA        NA        NA
## 1587    NA    NA      2         NA      NA        NA        NA
## 1588     1     1     NA         NA      NA        NA        NA
## 1589    NA     3     NA         NA      NA        NA        NA
## 1590    NA     1     NA         NA      NA        NA        NA
## 1591     2     1      2         NA      NA        NA        NA
## 1592     2     1      1         NA      NA        NA        NA
## 1593     2     2      3         NA      NA        NA        NA
## 1594     3     1      3         NA      NA        NA        NA
## 1595    NA     2     NA         NA      NA        NA        NA
## 1596     0    NA      0         NA      NA        NA        NA
## 1597     2    NA     NA         NA      NA        NA        NA
## 1598    NA     1      3         NA      NA        NA        NA
## 1599     1     1      1         NA      NA        NA        NA
## 1600    NA    NA      0         NA      NA        NA        NA
## 1601     4     3      2         NA      NA        NA        NA
## 1602     4     4      3         NA      NA        NA        NA
## 1603     0    NA      0         NA      NA        NA        NA
## 1604     6     4      3         NA      NA        NA        NA
## 1605    NA    NA     NA         NA      NA        NA        NA
## 1606    NA     1     NA         NA      NA        NA        NA
## 1607     1     1      1         NA      NA        NA        NA
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA      3         NA      NA        NA        NA
## 1610    NA    NA     NA         NA      NA        NA        NA
## 1611    NA    NA     NA         NA      NA        NA        NA
## 1612    NA    NA     NA         NA      NA        NA        NA
## 1613    NA    NA     NA         NA      NA        NA        NA
## 1614     1     1     NA         NA      NA        NA        NA
## 1615    NA    NA     NA         NA      NA        NA        NA
## 1616     1    NA     NA         NA      NA        NA        NA
## 1617    NA     0      0         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619     3     3     NA         NA      NA        NA        NA
## 1620    35    32     14         NA      NA        NA        NA
## 1621     2    NA     NA         NA      NA        NA        NA
## 1622    NA     1     NA         NA      NA        NA        NA
## 1623    NA    NA     NA         NA      NA        NA        NA
## 1624     8    11     11         NA      NA        NA        NA
## 1625    NA    NA      1         NA      NA        NA        NA
## 1626     1     1      1         NA      NA        NA        NA
## 1627    NA     1     NA         NA      NA        NA        NA
## 1628     0     0      1         NA      NA        NA        NA
## 1629     3    NA     NA         NA      NA        NA        NA
## 1630     1    NA     NA         NA      NA        NA        NA
## 1631     1    NA     NA         NA      NA        NA        NA
## 1632    NA    NA     NA         NA      NA        NA        NA
## 1633    NA     2     NA         NA      NA        NA        NA
## 1634     1    NA     NA         NA      NA        NA        NA
## 1635    NA    NA      0         NA      NA        NA        NA
## 1636    NA    NA     NA         NA      NA        NA        NA
## 1637     1     1      1         NA      NA        NA        NA
## 1638     8     8      6         NA      NA        NA        NA
## 1639    25    32     10         NA      NA        NA        NA
## 1640    NA     4      7         NA      NA        NA        NA
## 1641     5     5     NA         NA      NA        NA        NA
## 1642     1    NA      1         NA      NA        NA        NA
## 1643     1    NA      1         NA      NA        NA        NA
## 1644    NA    NA     NA         NA      NA        NA        NA
## 1645     1    NA     NA         NA      NA        NA        NA
## 1646     3     3      3         NA      NA        NA        NA
## 1647    NA    NA     NA         NA      NA        NA        NA
## 1648     1    NA      1         NA      NA        NA        NA
## 1649     2     2     NA         NA      NA        NA        NA
## 1650     1    NA      1         NA      NA        NA        NA
## 1651     3    NA      3         NA      NA        NA        NA
## 1652    NA    NA      2         NA      NA        NA        NA
## 1653     1     3      3         NA      NA        NA        NA
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     8    15     15         NA      NA        NA        NA
## 1656     2    NA     NA         NA      NA        NA        NA
## 1657    NA    NA     NA         NA      NA        NA        NA
## 1658     1     2      1         NA      NA        NA        NA
## 1659     4     8      6         NA      NA        NA        NA
## 1660     3    NA     NA         NA      NA        NA        NA
## 1661     2     4      2         NA      NA        NA        NA
## 1662     4     6      4         NA      NA        NA        NA
## 1663    NA    15      4         NA      NA        NA        NA
## 1664    16    13     16         NA      NA        NA        NA
## 1665    NA    NA     NA         NA      NA        NA        NA
## 1666    16    16     13         NA      NA        NA        NA
## 1667    10     7      5         NA      NA        NA        NA
## 1668     5     2      2         NA      NA        NA        NA
## 1669     2     2     NA         NA      NA        NA        NA
## 1670    18    25     18         NA      NA        NA        NA
## 1671    32    28     25         NA      NA        NA        NA
## 1672     5     3      5         NA      NA        NA        NA
## 1673    NA     2      2         NA      NA        NA        NA
## 1674     4     2      2         NA      NA        NA        NA
## 1675    23    27     21         NA      NA        NA        NA
## 1676    42    53     51         NA      NA        NA        NA
## 1677    NA     1      1         NA      NA        NA        NA
## 1678    NA     2     NA         NA      NA        NA        NA
## 1679    NA     2     NA         NA      NA        NA        NA
## 1680    NA     1     NA         NA      NA        NA        NA
## 1681     1    NA      1         NA      NA        NA        NA
## 1682     2     1      1         NA      NA        NA        NA
## 1683     0     0      0         NA      NA        NA        NA
## 1684     2     4      3         NA      NA        NA        NA
## 1685    NA     0     NA         NA      NA        NA        NA
## 1686     3     2      7         NA      NA        NA        NA
## 1687     0     1     NA         NA      NA        NA        NA
## 1688    NA    NA     NA         NA      NA        NA        NA
## 1689     1    NA      1         NA      NA        NA        NA
## 1690     2     2      2         NA      NA        NA        NA
## 1691     1     1      1         NA      NA        NA        NA
## 1692     1     1      1         NA      NA        NA        NA
## 1693    NA    NA     NA         NA      NA        NA        NA
## 1694    NA     2     NA         NA      NA        NA        NA
## 1695     3    NA      3         NA      NA        NA        NA
## 1696    NA     4     NA         NA      NA        NA        NA
## 1697     1    NA      1         NA      NA        NA        NA
## 1698     1    NA      0         NA      NA        NA        NA
## 1699     2    NA     NA         NA      NA        NA        NA
## 1700     1     2      1         NA      NA        NA        NA
## 1701    NA    NA      1         NA      NA        NA        NA
## 1702    NA    NA     NA         NA      NA        NA        NA
## 1703     3     3     NA         NA      NA        NA        NA
## 1704    NA    NA     NA         NA      NA        NA        NA
## 1705    NA    NA     NA         NA      NA        NA        NA
## 1706    NA    NA     NA         NA      NA        NA        NA
## 1707    NA     1      1         NA      NA        NA        NA
## 1708     2     1      1         NA      NA        NA        NA
## 1709     3    NA      3         NA      NA        NA        NA
## 1710     0     0      0         NA      NA        NA        NA
## 1711     2     2      2         NA      NA        NA        NA
## 1712     1    NA      3         NA      NA        NA        NA
## 1713    NA     2     NA         NA      NA        NA        NA
## 1714     2    NA      2         NA      NA        NA        NA
## 1715     3    NA      3         NA      NA        NA        NA
## 1716    NA     4     NA         NA      NA        NA        NA
## 1717     1     1     NA         NA      NA        NA        NA
## 1718     1     1     NA         NA      NA        NA        NA
## 1719     2    NA      2         NA      NA        NA        NA
## 1720     1     2      2         NA      NA        NA        NA
## 1721     1     2      1         NA      NA        NA        NA
## 1722     3     1      5         NA      NA        NA        NA
## 1723     2     6      2         NA      NA        NA        NA
## 1724     6    13      3         NA      NA        NA        NA
## 1725     7     7     NA         NA      NA        NA        NA
## 1726    NA     8     NA         NA      NA        NA        NA
## 1727     1     1      1         NA      NA        NA        NA
## 1728     1     1      1         NA      NA        NA        NA
## 1729    NA     1     NA         NA      NA        NA        NA
## 1730    NA     2     NA         NA      NA        NA        NA
## 1731    NA    NA     NA         NA      NA        NA        NA
## 1732     1    NA     NA         NA      NA        NA        NA
## 1733    NA     2      2         NA      NA        NA        NA
## 1734    NA    NA     NA         NA      NA        NA        NA
## 1735     3     3      3         NA      NA        NA        NA
## 1736     0    NA      0         NA      NA        NA        NA
## 1737     1     2     NA         NA      NA        NA        NA
## 1738    NA    NA     NA         NA      NA        NA        NA
## 1739     1     1      1         NA      NA        NA        NA
## 1740     0    NA     NA         NA      NA        NA        NA
## 1741     6     6      4         NA      NA        NA        NA
## 1742     1    NA     NA         NA      NA        NA        NA
## 1743    11     8      8         NA      NA        NA        NA
## 1744    NA    NA     NA         NA      NA        NA        NA
## 1745     1    NA     NA         NA      NA        NA        NA
## 1746    NA    NA     NA         NA      NA        NA        NA
## 1747     3     5      6         NA      NA        NA        NA
## 1748    NA     4     NA         NA      NA        NA        NA
## 1749    24    18     18         NA      NA        NA        NA
## 1750    16     6     10         NA      NA        NA        NA
## 1751    20    22     17         NA      NA        NA        NA
## 1752    14     5      9         NA      NA        NA        NA
## 1753    70    67     46         NA      NA        NA        NA
## 1754    92    95    102         NA      NA        NA        NA
## 1755     6     3      5         NA      NA        NA        NA
## 1756    34    40     40         NA      NA        NA        NA
## 1757    99   104    118         NA      NA        NA        NA
## 1758    13     5     NA         NA      NA        NA        NA
## 1759     2     2     NA         NA      NA        NA        NA
## 1760     2    NA     NA         NA      NA        NA        NA
## 1761     1     1      1         NA      NA        NA        NA
## 1762    NA    NA     NA         NA      NA        NA        NA
## 1763     1     1      1         NA      NA        NA        NA
## 1764     0     0     NA         NA      NA        NA        NA
## 1765    NA    NA     NA         NA      NA        NA        NA
## 1766     3     2      2         NA      NA        NA        NA
## 1767    NA     0      0         NA      NA        NA        NA
## 1768     1     1      2         NA      NA        NA        NA
## 1769     0    NA      0         NA      NA        NA        NA
## 1770     1     1     NA         NA      NA        NA        NA
## 1771    NA    NA     NA         NA      NA        NA        NA
## 1772    NA     1      1         NA      NA        NA        NA
## 1773     0     0      1         NA      NA        NA        NA
## 1774     3     1      1         NA      NA        NA        NA
## 1775     1     1     NA         NA      NA        NA        NA
## 1776    NA    NA     NA         NA      NA        NA        NA
## 1777    NA    NA     NA         NA      NA        NA        NA
## 1778     2    NA     NA         NA      NA        NA        NA
## 1779    NA    NA     NA         NA      NA        NA        NA
## 1780     1     1      1         NA      NA        NA        NA
## 1781    NA    NA     NA         NA      NA        NA        NA
## 1782     3     2      2         NA      NA        NA        NA
## 1783     2     2      2         NA      NA        NA        NA
## 1784    NA     3     NA         NA      NA        NA        NA
## 1785     1     2      2         NA      NA        NA        NA
## 1786    NA     1      2         NA      NA        NA        NA
## 1787    NA    NA      2         NA      NA        NA        NA
## 1788     1    NA      1         NA      NA        NA        NA
## 1789    NA     1     NA         NA      NA        NA        NA
## 1790     1     2      2         NA      NA        NA        NA
## 1791    NA    NA      1         NA      NA        NA        NA
## 1792     2     1      1         NA      NA        NA        NA
## 1793     2     1      3         NA      NA        NA        NA
## 1794    NA     2     NA         NA      NA        NA        NA
## 1795     3    NA      3         NA      NA        NA        NA
## 1796     1     1      1         NA      NA        NA        NA
## 1797     0     0      0         NA      NA        NA        NA
## 1798     1     2      2         NA      NA        NA        NA
## 1799     1     2      3         NA      NA        NA        NA
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801     3     1      3         NA      NA        NA        NA
## 1802    NA    NA     NA         NA      NA        NA        NA
## 1803     3     3      1         NA      NA        NA        NA
## 1804     2    NA     NA         NA      NA        NA        NA
## 1805    NA    NA     NA         NA      NA        NA        NA
## 1806    NA    NA     NA         NA      NA        NA        NA
## 1807    NA    NA     NA         NA      NA        NA        NA
## 1808     1     1     NA         NA      NA        NA        NA
## 1809     3     4      3         NA      NA        NA        NA
## 1810    NA    NA     NA         NA      NA        NA        NA
## 1811    14    11      8         NA      NA        NA        NA
## 1812    NA    NA     NA         NA      NA        NA        NA
## 1813     6     3     10         NA      NA        NA        NA
## 1814    NA    NA     NA         NA      NA        NA        NA
## 1815     1     0      0         NA      NA        NA        NA
## 1816    NA    NA     NA         NA      NA        NA        NA
## 1817    15    11      8         NA      NA        NA        NA
## 1818    14     6     17         NA      NA        NA        NA
## 1819     2     2      3         NA      NA        NA        NA
## 1820    11    11      8         NA      NA        NA        NA
## 1821    NA    NA     NA         NA      NA        NA        NA
## 1822    23    20     20         NA      NA        NA        NA
## 1823     1    NA      1         NA      NA        NA        NA
## 1824     6     4      8         NA      NA        NA        NA
## 1825    NA    11     15         NA      NA        NA        NA
## 1826    37    34     26         NA      NA        NA        NA
## 1827    32    25     22         NA      NA        NA        NA
## 1828    39    32     35         NA      NA        NA        NA
## 1829     6     5      6         NA      NA        NA        NA
## 1830    81    70     74         NA      NA        NA        NA
## 1831   127   109     92         NA      NA        NA        NA
## 1832     9     4      8         NA      NA        NA        NA
## 1833    15     8     11         NA      NA        NA        NA
## 1834    25    19     25         NA      NA        NA        NA
## 1835    53    55     46         NA      NA        NA        NA
## 1836     3     3      2         NA      NA        NA        NA
## 1837     3     3      3         NA      NA        NA        NA
## 1838    NA    NA     NA         NA      NA        NA        NA
## 1839    NA     2      3         NA      NA        NA        NA
## 1840    NA    NA     NA         NA      NA        NA        NA
## 1841    14     9     14         NA      NA        NA        NA
## 1842     3     2      3         NA      NA        NA        NA
## 1843     0     1      0         NA      NA        NA        NA
## 1844    NA     1      2         NA      NA        NA        NA
## 1845     2     3      5         NA      NA        NA        NA
## 1846     1    NA     NA         NA      NA        NA        NA
## 1847     3     3      3         NA      NA        NA        NA
## 1848    NA    NA     NA         NA      NA        NA        NA
## 1849    NA    NA     NA         NA      NA        NA        NA
## 1850     3     2      3         NA      NA        NA        NA
## 1851     3     4      1         NA      NA        NA        NA
## 1852    NA    NA     NA         NA      NA        NA        NA
## 1853    NA    NA     NA         NA      NA        NA        NA
## 1854     8     8      6         NA      NA        NA        NA
## 1855     1     1     NA         NA      NA        NA        NA
## 1856     2     1      2         NA      NA        NA        NA
## 1857    NA    NA      0         NA      NA        NA        NA
## 1858    NA    NA      1         NA      NA        NA        NA
## 1859    NA    NA      0         NA      NA        NA        NA
## 1860    NA    NA     NA         NA      NA        NA        NA
## 1861     1     1      1         NA      NA        NA        NA
## 1862    NA    NA      0         NA      NA        NA        NA
## 1863    11    11     17         NA      NA        NA        NA
## 1864    NA    NA     NA         NA      NA        NA        NA
## 1865     1     1      2         NA      NA        NA        NA
## 1866     8    14     14         NA      NA        NA        NA
## 1867     1     1      1         NA      NA        NA        NA
## 1868     4     3      4         NA      NA        NA        NA
## 1869    NA    NA      0         NA      NA        NA        NA
## 1870    NA    NA     NA         NA      NA        NA        NA
## 1871    10     8     13         NA      NA        NA        NA
## 1872    NA    NA      1         NA      NA        NA        NA
## 1873     2     2      2         NA      NA        NA        NA
## 1874     1    NA     NA         NA      NA        NA        NA
## 1875    NA    NA     NA         NA      NA        NA        NA
## 1876     2     3     NA         NA      NA        NA        NA
## 1877    21     7     11         NA      NA        NA        NA
## 1878     3     2      2         NA      NA        NA        NA
## 1879    NA     4      2         NA      NA        NA        NA
## 1880     2     8      8         NA      NA        NA        NA
## 1881     1     1     NA         NA      NA        NA        NA
## 1882     2     6     NA         NA      NA        NA        NA
## 1883    10    22     NA         NA      NA        NA        NA
## 1884     8     8     NA         NA      NA        NA        NA
## 1885     1     1     NA         NA      NA        NA        NA
## 1886     1     1     NA         NA      NA        NA        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     1     NA         NA      NA        NA        NA
## 1889     3     3     NA         NA      NA        NA        NA
## 1890    NA    NA      0         NA      NA        NA        NA
## 1891    NA    NA      1         NA      NA        NA        NA
## 1892    NA    NA      0         NA      NA        NA        NA
## 1893    NA    NA      0         NA      NA        NA        NA
## 1894     1    NA     NA         NA      NA        NA        NA
## 1895     8     8      6         NA      NA        NA        NA
## 1896     8     6      8         NA      NA        NA        NA
## 1897     4     4      4         NA      NA        NA        NA
## 1898     8    15     15         NA      NA        NA        NA
## 1899     3    NA     NA         NA      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA      NA        NA        NA
## 1902     1     1      2         NA      NA        NA        NA
## 1903    NA    NA     NA         NA      NA        NA        NA
## 1904    18    16     18         NA      NA        NA        NA
## 1905     3     3      3         NA      NA        NA        NA
## 1906     2     2     NA         NA      NA        NA        NA
## 1907     9     6      3         NA      NA        NA        NA
## 1908    NA    NA     NA         NA      NA        NA        NA
## 1909    17    17     17         NA      NA        NA        NA
## 1910     4     4     NA         NA      NA        NA        NA
## 1911    18    11     18         NA      NA        NA        NA
## 1912     4     4      4         NA      NA        NA        NA
## 1913    15    21     21         NA      NA        NA        NA
## 1914    53    44     57         NA      NA        NA        NA
## 1915     8    NA     NA         NA      NA        NA        NA
## 1916    NA    NA     NA         NA      NA        NA        NA
## 1917     1     1     NA         NA      NA        NA        NA
## 1918     1     1     NA         NA      NA        NA        NA
## 1919     0     0     NA         NA      NA        NA        NA
## 1920     2     2      2         NA      NA        NA        NA
## 1921    NA     0     NA         NA      NA        NA        NA
## 1922    NA    NA     NA         NA      NA        NA        NA
## 1923    NA    NA     NA         NA      NA        NA        NA
## 1924     1     1     NA         NA      NA        NA        NA
## 1925    NA     1     NA         NA      NA        NA        NA
## 1926    NA    NA      1         NA      NA        NA        NA
## 1927     0     0      0         NA      NA        NA        NA
## 1928     1     1     NA         NA      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930    NA    NA     NA         NA      NA        NA        NA
## 1931     2    NA     NA         NA      NA        NA        NA
## 1932    NA    NA     NA         NA      NA        NA        NA
## 1933    NA    NA     NA         NA      NA        NA        NA
## 1934     2     2      3         NA      NA        NA        NA
## 1935     1     1     NA         NA      NA        NA        NA
## 1936     1     1     NA         NA      NA        NA        NA
## 1937    NA    NA      1         NA      NA        NA        NA
## 1938    NA    NA     NA         NA      NA        NA        NA
## 1939     3    NA     NA         NA      NA        NA        NA
## 1940    NA    NA      1         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA        NA
## 1942    NA    NA     NA         NA      NA        NA        NA
## 1943    NA     2     NA         NA      NA        NA        NA
## 1944     0     0     NA         NA      NA        NA        NA
## 1945     4     2      1         NA      NA        NA        NA
## 1946     1     1     NA         NA      NA        NA        NA
## 1947     2     3      1         NA      NA        NA        NA
## 1948     1     1      1         NA      NA        NA        NA
## 1949     4     2      4         NA      NA        NA        NA
## 1950     3     3      6         NA      NA        NA        NA
## 1951    NA     3     NA         NA      NA        NA        NA
## 1952     1     1      1         NA      NA        NA        NA
## 1953     1     1      1         NA      NA        NA        NA
## 1954     1     1     NA         NA      NA        NA        NA
## 1955    NA    NA     NA         NA      NA        NA        NA
## 1956    NA    NA     NA         NA      NA        NA        NA
## 1957     1     1      1         NA      NA        NA        NA
## 1958     3     3      8         NA      NA        NA        NA
## 1959    NA     0      0         NA      NA        NA        NA
## 1960    NA     2     NA         NA      NA        NA        NA
## 1961     0    NA     NA         NA      NA        NA        NA
## 1962     0     1      2         NA      NA        NA        NA
## 1963     0    NA     NA         NA      NA        NA        NA
## 1964     8     6     11         NA      NA        NA        NA
## 1965    NA     3      6         NA      NA        NA        NA
## 1966     2     2      1         NA      NA        NA        NA
## 1967     4     6      6         NA      NA        NA        NA
## 1968     3    NA     NA         NA      NA        NA        NA
## 1969    NA    NA      3         NA      NA        NA        NA
## 1970     1     1      2         NA      NA        NA        NA
## 1971    NA    NA      0         NA      NA        NA        NA
## 1972    11    11     13         NA      NA        NA        NA
## 1973     3     3      3         NA      NA        NA        NA
## 1974     2     2      2         NA      NA        NA        NA
## 1975    NA    NA     NA         NA      NA        NA        NA
## 1976    14    11     18         NA      NA        NA        NA
## 1977    63    70     88         NA      NA        NA        NA
## 1978     7     4      7         NA      NA        NA        NA
## 1979    NA     1      2         NA      NA        NA        NA
## 1980     2    NA     NA         NA      NA        NA        NA
## 1981     8    15     13         NA      NA        NA        NA
## 1982    76    42     72         NA      NA        NA        NA
## 1983     5    NA     NA         NA      NA        NA        NA
## 1984     1     1      2         NA      NA        NA        NA
## 1985    NA    NA     NA         NA      NA        NA        NA
## 1986     4     1      1         NA      NA        NA        NA
## 1987    NA    NA     NA         NA      NA        NA        NA
## 1988     1     1      1         NA      NA        NA        NA
## 1989     0     0      0         NA      NA        NA        NA
## 1990     0     2      2         NA      NA        NA        NA
## 1991    NA     0      1         NA      NA        NA        NA
## 1992    NA     1     NA         NA      NA        NA        NA
## 1993     1     3     NA         NA      NA        NA        NA
## 1994    NA    NA     NA         NA      NA        NA        NA
## 1995     1     3      3         NA      NA        NA        NA
## 1996    NA    NA     NA         NA      NA        NA        NA
## 1997     2     1      1         NA      NA        NA        NA
## 1998    NA    NA     NA         NA      NA        NA        NA
## 1999     1     1      1         NA      NA        NA        NA
## 2000    NA    NA     NA         NA      NA        NA        NA
## 2001     2    NA     NA         NA      NA        NA        NA
## 2002     2     1      6         NA      NA        NA        NA
## 2003    NA    NA     NA         NA      NA        NA        NA
## 2004     1     1      1         NA      NA        NA        NA
## 2005     1     3      1         NA      NA        NA        NA
## 2006     0    NA     NA         NA      NA        NA        NA
## 2007     2     1     NA         NA      NA        NA        NA
## 2008     1     1      1         NA      NA        NA        NA
## 2009    NA     1      1         NA      NA        NA        NA
## 2010     0    NA     NA         NA      NA        NA        NA
## 2011     1    NA     NA         NA      NA        NA        NA
## 2012     1     1      1         NA      NA        NA        NA
## 2013     1    NA     NA         NA      NA        NA        NA
## 2014     2     3      2         NA      NA        NA        NA
## 2015    NA     2     NA         NA      NA        NA        NA
## 2016     2     1     NA         NA      NA        NA        NA
## 2017    NA    NA     NA         NA      NA        NA        NA
## 2018     1     1      2         NA      NA        NA        NA
## 2019     0    NA     NA         NA      NA        NA        NA
## 2020    NA     2      2         NA      NA        NA        NA
## 2021     5     4      6         NA      NA        NA        NA
## 2022    NA    NA     NA         NA      NA        NA        NA
## 2023    NA     0      0         NA      NA        NA        NA
## 2024     1     1      1         NA      NA        NA        NA
## 2025     3     3      3         NA      NA        NA        NA
## 2026     0    NA     NA         NA      NA        NA        NA
## 2027    NA    NA     NA         NA      NA        NA        NA
## 2028     2     3      4         NA      NA        NA        NA
## 2029     3     3      3         NA      NA        NA        NA
## 2030     2     2     NA         NA      NA        NA        NA
## 2031     3     6     NA         NA      NA        NA        NA
## 2032    NA    NA     NA         NA      NA        NA        NA
## 2033    NA    NA     NA         NA      NA        NA        NA
## 2034    NA     3     NA         NA      NA        NA        NA
## 2035    NA    NA      1         NA      NA        NA        NA
## 2036    NA    NA      0         NA      NA        NA        NA
## 2037     0     1      0         NA      NA        NA        NA
## 2038    11     6      6         NA      NA        NA        NA
## 2039     6    11     NA         NA      NA        NA        NA
## 2040    NA    11     21         NA      NA        NA        NA
## 2041     1     2     NA         NA      NA        NA        NA
## 2042     6     8      8         NA      NA        NA        NA
## 2043     2     1      2         NA      NA        NA        NA
## 2044     1    NA     NA         NA      NA        NA        NA
## 2045    NA    NA      2         NA      NA        NA        NA
## 2046     4     2      4         NA      NA        NA        NA
## 2047     1     0      1         NA      NA        NA        NA
## 2048    18    16     16         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     3    NA     NA         NA      NA        NA        NA
## 2051    20    25     27         NA      NA        NA        NA
## 2052     6     6      6         NA      NA        NA        NA
## 2053    42    49     32         NA      NA        NA        NA
## 2054    35    28     35         NA      NA        NA        NA
## 2055     8     9      9         NA      NA        NA        NA
## 2056    13    27     30         NA      NA        NA        NA
## 2057    25    15     19         NA      NA        NA        NA
## 2058     8    NA     NA         NA      NA        NA        NA
## 2059     4     3      2         NA      NA        NA        NA
## 2060     2     2      2         NA      NA        NA        NA
## 2061    NA    NA     NA         NA      NA        NA        NA
## 2062    NA    NA     NA         NA      NA        NA        NA
## 2063    NA    NA     NA         NA      NA        NA        NA
## 2064     1     2      1         NA      NA        NA        NA
## 2065    NA    NA      2         NA      NA        NA        NA
## 2066     0     0      0         NA      NA        NA        NA
## 2067     1     1      1         NA      NA        NA        NA
## 2068     1     3      2         NA      NA        NA        NA
## 2069    NA    NA     NA         NA      NA        NA        NA
## 2070     1     1      1         NA      NA        NA        NA
## 2071     1     1      2         NA      NA        NA        NA
## 2072    NA    NA     NA         NA      NA        NA        NA
## 2073     1     1      1         NA      NA        NA        NA
## 2074    NA    NA      3         NA      NA        NA        NA
## 2075    NA    NA      1         NA      NA        NA        NA
## 2076     8     3      6         NA      NA        NA        NA
## 2077     1    NA     NA         NA      NA        NA        NA
## 2078     2     3      2         NA      NA        NA        NA
## 2079     4     6      5         NA      NA        NA        NA
## 2080     1     1      1         NA      NA        NA        NA
## 2081     2     6     NA         NA      NA        NA        NA
## 2082     3     6     NA         NA      NA        NA        NA
## 2083    NA     5     NA         NA      NA        NA        NA
## 2084    NA    NA     NA         NA      NA        NA        NA
## 2085    NA    NA      0         NA      NA        NA        NA
## 2086    NA     1      1         NA      NA        NA        NA
## 2087     8    11     11         NA      NA        NA        NA
## 2088     1     2      2         NA      NA        NA        NA
## 2089     8     8      6         NA      NA        NA        NA
## 2090    NA    NA     NA         NA      NA        NA        NA
## 2091     3     3      3         NA      NA        NA        NA
## 2092    NA    NA     NA         NA      NA        NA        NA
## 2093    NA    NA     NA         NA      NA        NA        NA
## 2094    37    32     26         NA      NA        NA        NA
## 2095    NA    NA      2         NA      NA        NA        NA
## 2096    77    42     42         NA      NA        NA        NA
## 2097    NA    NA     NA         NA      NA        NA        NA
## 2098     5     4      1         NA      NA        NA        NA
## 2099    NA     3      3         NA      NA        NA        NA
## 2100    13    19     15         NA      NA        NA        NA
## 2101    42    32     42         NA      NA        NA        NA
## 2102    10    NA     NA         NA      NA        NA        NA
## 2103     1     1      0         NA      NA        NA        NA
## 2104    NA    NA     NA         NA      NA        NA        NA
## 2105    NA    NA     NA         NA      NA        NA        NA
## 2106     3     2      3         NA      NA        NA        NA
## 2107    NA    NA     NA         NA      NA        NA        NA
## 2108     4     5      6         NA      NA        NA        NA
## 2109    NA     3     NA         NA      NA        NA        NA
## 2110    NA     1     NA         NA      NA        NA        NA
## 2111     2     1      2         NA      NA        NA        NA
## 2112    NA    NA      0         NA      NA        NA        NA
## 2113     2     1      1         NA      NA        NA        NA
## 2114    NA    NA     NA         NA      NA        NA        NA
## 2115    NA    NA     NA         NA      NA        NA        NA
## 2116     8     3      6         NA      NA        NA        NA
## 2117     3     4      3         NA      NA        NA        NA
## 2118     8     3      8         NA      NA        NA        NA
## 2119    NA    NA      1         NA      NA        NA        NA
## 2120    NA    NA      2         NA      NA        NA        NA
## 2121    NA    NA     NA         NA      NA        NA        NA
## 2122    NA    NA     NA         NA      NA        NA        NA
## 2123    NA     2     NA         NA      NA        NA        NA
## 2124     6     8     11         NA      NA        NA        NA
## 2125     3    NA      3         NA      NA        NA        NA
## 2126    11     8     11         NA      NA        NA        NA
## 2127     4     7      4         NA      NA        NA        NA
## 2128    NA    NA      1         NA      NA        NA        NA
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     1     1     NA         NA      NA        NA        NA
## 2131     2     4      4         NA      NA        NA        NA
## 2132     3    19      3         NA      NA        NA        NA
## 2133    NA     3     NA         NA      NA        NA        NA
## 2134     1     1      1         NA      NA        NA        NA
## 2135     1     1      1         NA      NA        NA        NA
## 2136    NA    NA      1         NA      NA        NA        NA
## 2137    NA    NA      1         NA      NA        NA        NA
## 2138    NA    NA     NA         NA      NA        NA        NA
## 2139     1     1      1         NA      NA        NA        NA
## 2140    11     6      8         NA      NA        NA        NA
## 2141     2    NA      1         NA      NA        NA        NA
## 2142     1     0      0         NA      NA        NA        NA
## 2143    NA     2      1         NA      NA        NA        NA
## 2144    NA     0     NA         NA      NA        NA        NA
## 2145    30    30     36         NA      NA        NA        NA
## 2146    28    31     39         NA      NA        NA        NA
## 2147     6     4      4         NA      NA        NA        NA
## 2148    NA    NA      3         NA      NA        NA        NA
## 2149    15    17     23         NA      NA        NA        NA
## 2150     5    NA     NA         NA      NA        NA        NA
## 2151     3     3      1         NA      NA        NA        NA
## 2152    NA    NA     NA         NA      NA        NA        NA
## 2153     6    11     23         NA      NA        NA        NA
## 2154    NA    NA     NA         NA      NA        NA        NA
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    15    11     13         NA      NA        NA        NA
## 2157    NA    19     21         NA      NA        NA        NA
## 2158   106    85     71         NA      NA        NA        NA
## 2159     3     3      3         NA      NA        NA        NA
## 2160     2     2      2         NA      NA        NA        NA
## 2161    23    26     15         NA      NA        NA        NA
## 2162    34    31     62         NA      NA        NA        NA
## 2163   134    81     81         NA      NA        NA        NA
## 2164   134   148    120         NA      NA        NA        NA
## 2165    15    11     16         NA      NA        NA        NA
## 2166    NA    NA     NA         NA      NA        NA        NA
## 2167    40    53     51         NA      NA        NA        NA
## 2168    49    53     49         NA      NA        NA        NA
## 2169    20    NA     NA         NA      NA        NA        NA
## 2170     8     5      1         NA      NA        NA        NA
## 2171    NA    NA      2         NA      NA        NA        NA
## 2172     1     1      5         NA      NA        NA        NA
## 2173     1     1      3         NA      NA        NA        NA
## 2174     0     0      0         NA      NA        NA        NA
## 2175    NA    NA     NA         NA      NA        NA        NA
## 2176     4     6      4         NA      NA        NA        NA
## 2177    NA     0      0         NA      NA        NA        NA
## 2178    NA     1     NA         NA      NA        NA        NA
## 2179     1     2     NA         NA      NA        NA        NA
## 2180     2     2      1         NA      NA        NA        NA
## 2181     2     2      1         NA      NA        NA        NA
## 2182     3     4      1         NA      NA        NA        NA
## 2183    NA    NA     NA         NA      NA        NA        NA
## 2184     2     4      3         NA      NA        NA        NA
## 2185     3     1      1         NA      NA        NA        NA
## 2186     6     5      5         NA      NA        NA        NA
## 2187    NA    NA     NA         NA      NA        NA        NA
## 2188     2    NA      2         NA      NA        NA        NA
## 2189     8     1      3         NA      NA        NA        NA
## 2190    NA    NA     NA         NA      NA        NA        NA
## 2191     0     0     NA         NA      NA        NA        NA
## 2192     1     1      1         NA      NA        NA        NA
## 2193     1     1      3         NA      NA        NA        NA
## 2194    NA    NA      0         NA      NA        NA        NA
## 2195     6     1      3         NA      NA        NA        NA
## 2196     1     1      1         NA      NA        NA        NA
## 2197    NA     1      3         NA      NA        NA        NA
## 2198    NA    NA      0         NA      NA        NA        NA
## 2199     1    NA     NA         NA      NA        NA        NA
## 2200     1     1      1         NA      NA        NA        NA
## 2201     1    NA     NA         NA      NA        NA        NA
## 2202    NA    NA      1         NA      NA        NA        NA
## 2203     3     1      3         NA      NA        NA        NA
## 2204    NA     1      1         NA      NA        NA        NA
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206    NA     2     NA         NA      NA        NA        NA
## 2207     8     4      3         NA      NA        NA        NA
## 2208    NA    NA     NA         NA      NA        NA        NA
## 2209     1     1      1         NA      NA        NA        NA
## 2210    14    10      4         NA      NA        NA        NA
## 2211    NA    NA      0         NA      NA        NA        NA
## 2212    NA    NA     NA         NA      NA        NA        NA
## 2213    10    10     11         NA      NA        NA        NA
## 2214    NA     2     NA         NA      NA        NA        NA
## 2215    NA    NA      1         NA      NA        NA        NA
## 2216     6    13      2         NA      NA        NA        NA
## 2217    19    22      3         NA      NA        NA        NA
## 2218    NA    NA     NA         NA      NA        NA        NA
## 2219    10    15     NA         NA      NA        NA        NA
## 2220    NA     1      1         NA      NA        NA        NA
## 2221    NA     1      1         NA      NA        NA        NA
## 2222    NA    NA     NA         NA      NA        NA        NA
## 2223    NA    NA     NA         NA      NA        NA        NA
## 2224    NA    NA     NA         NA      NA        NA        NA
## 2225    NA    NA     NA         NA      NA        NA        NA
## 2226    NA    NA      1         NA      NA        NA        NA
## 2227    NA     2     NA         NA      NA        NA        NA
## 2228    NA    NA     NA         NA      NA        NA        NA
## 2229    NA     3      3         NA      NA        NA        NA
## 2230    NA    NA     NA         NA      NA        NA        NA
## 2231    NA    NA     NA         NA      NA        NA        NA
## 2232    NA    NA      0         NA      NA        NA        NA
## 2233    NA    NA     NA         NA      NA        NA        NA
## 2234    NA    NA     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236    NA     1      1         NA      NA        NA        NA
## 2237     4     8     11         NA      NA        NA        NA
## 2238    NA    NA     NA         NA      NA        NA        NA
## 2239     8     8     11         NA      NA        NA        NA
## 2240    NA    NA     NA         NA      NA        NA        NA
## 2241    NA    NA     NA         NA      NA        NA        NA
## 2242     2     3      3         NA      NA        NA        NA
## 2243    NA     2     NA         NA      NA        NA        NA
## 2244    13    13     13         NA      NA        NA        NA
## 2245     3    NA     NA         NA      NA        NA        NA
## 2246     2     1      1         NA      NA        NA        NA
## 2247     1     1      1         NA      NA        NA        NA
## 2248    NA    NA     NA         NA      NA        NA        NA
## 2249     6     6      3         NA      NA        NA        NA
## 2250    NA    NA     NA         NA      NA        NA        NA
## 2251     3     1      1         NA      NA        NA        NA
## 2252     6     2      5         NA      NA        NA        NA
## 2253    11    18     21         NA      NA        NA        NA
## 2254    25    25     32         NA      NA        NA        NA
## 2255    10    12     15         NA      NA        NA        NA
## 2256     3     3      3         NA      NA        NA        NA
## 2257    NA    NA      3         NA      NA        NA        NA
## 2258    53    32     39         NA      NA        NA        NA
## 2259    28    39     35         NA      NA        NA        NA
## 2260     6     5      7         NA      NA        NA        NA
## 2261    NA     1     NA         NA      NA        NA        NA
## 2262     2     2      4         NA      NA        NA        NA
## 2263    19    21     36         NA      NA        NA        NA
## 2264    36    44     36         NA      NA        NA        NA
## 2265     5    NA     NA         NA      NA        NA        NA
## 2266     3     2      2         NA      NA        NA        NA
## 2267     2     2      4         NA      NA        NA        NA
## 2268     1     1      2         NA      NA        NA        NA
## 2269    NA     1      1         NA      NA        NA        NA
## 2270    NA     1      1         NA      NA        NA        NA
## 2271    NA    NA     NA         NA      NA        NA        NA
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     0     0      0         NA      NA        NA        NA
## 2274    NA    NA     NA         NA      NA        NA        NA
## 2275     1     1      1         NA      NA        NA        NA
## 2276    NA    NA     NA         NA      NA        NA        NA
## 2277    NA    NA      0         NA      NA        NA        NA
## 2278    NA    NA     NA         NA      NA        NA        NA
## 2279    NA     0     NA         NA      NA        NA        NA
## 2280     2     1     NA         NA      NA        NA        NA
## 2281     1     2      2         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283     1     1      0         NA      NA        NA        NA
## 2284     2    NA      4         NA      NA        NA        NA
## 2285     3     2      3         NA      NA        NA        NA
## 2286     2     3      2         NA      NA        NA        NA
## 2287    NA    NA     NA         NA      NA        NA        NA
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289    NA    NA     NA         NA      NA        NA        NA
## 2290     3     3      1         NA      NA        NA        NA
## 2291     1    NA     NA         NA      NA        NA        NA
## 2292    NA     0     NA         NA      NA        NA        NA
## 2293     2     2      2         NA      NA        NA        NA
## 2294     3     1      2         NA      NA        NA        NA
## 2295    NA    NA      0         NA      NA        NA        NA
## 2296     3     3      1         NA      NA        NA        NA
## 2297    NA    NA      2         NA      NA        NA        NA
## 2298     1     1      1         NA      NA        NA        NA
## 2299    NA    NA      0         NA      NA        NA        NA
## 2300    NA     2     NA         NA      NA        NA        NA
## 2301    NA     3      1         NA      NA        NA        NA
## 2302     1     1      1         NA      NA        NA        NA
## 2303    NA    NA      2         NA      NA        NA        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305     1     1      1         NA      NA        NA        NA
## 2306     6     6      6         NA      NA        NA        NA
## 2307    NA    NA     NA         NA      NA        NA        NA
## 2308    NA     4     NA         NA      NA        NA        NA
## 2309     3     2      1         NA      NA        NA        NA
## 2310    NA    NA      0         NA      NA        NA        NA
## 2311    NA     2      2         NA      NA        NA        NA
## 2312    23     6      4         NA      NA        NA        NA
## 2313    NA     1      1         NA      NA        NA        NA
## 2314    NA    NA     NA         NA      NA        NA        NA
## 2315     2     4      2         NA      NA        NA        NA
## 2316     4     6      3         NA      NA        NA        NA
## 2317    NA    NA      0         NA      NA        NA        NA
## 2318    NA    NA     NA         NA      NA        NA        NA
## 2319     2     3      1         NA      NA        NA        NA
## 2320    NA    NA     NA         NA      NA        NA        NA
## 2321     1     1      1         NA      NA        NA        NA
## 2322    46    34     32         NA      NA        NA        NA
## 2323    48    57     38         NA      NA        NA        NA
## 2324    13    15     18         NA      NA        NA        NA
## 2325     1     1      1         NA      NA        NA        NA
## 2326     1     1      1         NA      NA        NA        NA
## 2327    NA    NA     NA         NA      NA        NA        NA
## 2328     4     2      4         NA      NA        NA        NA
## 2329     4     5      4         NA      NA        NA        NA
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331    NA    NA      1         NA      NA        NA        NA
## 2332     2     4      6         NA      NA        NA        NA
## 2333     2     2      3         NA      NA        NA        NA
## 2334     3     3      3         NA      NA        NA        NA
## 2335    NA    NA     NA         NA      NA        NA        NA
## 2336     2    NA     NA         NA      NA        NA        NA
## 2337     1     1      1         NA      NA        NA        NA
## 2338     3     3      3         NA      NA        NA        NA
## 2339     2     2      3         NA      NA        NA        NA
## 2340    NA     0     NA         NA      NA        NA        NA
## 2341    23    19     25         NA      NA        NA        NA
## 2342    25    17     23         NA      NA        NA        NA
## 2343     3     5      4         NA      NA        NA        NA
## 2344    15    17     17         NA      NA        NA        NA
## 2345     3     3      3         NA      NA        NA        NA
## 2346     3     5      3         NA      NA        NA        NA
## 2347     5    NA     NA         NA      NA        NA        NA
## 2348    15    11     19         NA      NA        NA        NA
## 2349    NA    15      8         NA      NA        NA        NA
## 2350    42    48     53         NA      NA        NA        NA
## 2351    NA    NA     NA         NA      NA        NA        NA
## 2352    16    16     16         NA      NA        NA        NA
## 2353     2     2      2         NA      NA        NA        NA
## 2354    20    17     23         NA      NA        NA        NA
## 2355    25    35     32         NA      NA        NA        NA
## 2356    28    35     42         NA      NA        NA        NA
## 2357     8     8      8         NA      NA        NA        NA
## 2358    NA     1      3         NA      NA        NA        NA
## 2359    15     6     13         NA      NA        NA        NA
## 2360    36    38     42         NA      NA        NA        NA
## 2361    89    74     68         NA      NA        NA        NA
## 2362     5    NA     NA         NA      NA        NA        NA
## 2363     6     6      8         NA      NA        NA        NA
## 2364     4     6      4         NA      NA        NA        NA
## 2365     7     5      6         NA      NA        NA        NA
## 2366     7     1      1         NA      NA        NA        NA
## 2367     6     6      5         NA      NA        NA        NA
## 2368    NA    NA     NA         NA      NA        NA        NA
## 2369     2     0     NA         NA      NA        NA        NA
## 2370     7     8      8         NA      NA        NA        NA
## 2371    NA     1     NA         NA      NA        NA        NA
## 2372    NA     1      3         NA      NA        NA        NA
## 2373     2     1      1         NA      NA        NA        NA
## 2374     2    NA      2         NA      NA        NA        NA
## 2375     8     5      7         NA      NA        NA        NA
## 2376    NA    NA      1         NA      NA        NA        NA
## 2377     0     0      1         NA      NA        NA        NA
## 2378     5     4      3         NA      NA        NA        NA
## 2379     3     1      2         NA      NA        NA        NA
## 2380    NA    NA     NA         NA      NA        NA        NA
## 2381    NA    NA     NA         NA      NA        NA        NA
## 2382     3     6      6         NA      NA        NA        NA
## 2383     4     4      3         NA      NA        NA        NA
## 2384     3     3      3         NA      NA        NA        NA
## 2385     0     0      0         NA      NA        NA        NA
## 2386    NA    NA      3         NA      NA        NA        NA
## 2387    NA    NA     NA         NA      NA        NA        NA
## 2388     4     4      3         NA      NA        NA        NA
## 2389     2     1      2         NA      NA        NA        NA
## 2390     0     0      0         NA      NA        NA        NA
## 2391    NA    NA      6         NA      NA        NA        NA
## 2392     3     3      1         NA      NA        NA        NA
## 2393    NA    NA     NA         NA      NA        NA        NA
## 2394    NA    NA     NA         NA      NA        NA        NA
## 2395     4     4      3         NA      NA        NA        NA
## 2396     1     2      1         NA      NA        NA        NA
## 2397     2     1      3         NA      NA        NA        NA
## 2398     6     3      6         NA      NA        NA        NA
## 2399     1     2     NA         NA      NA        NA        NA
## 2400     0     0      0         NA      NA        NA        NA
## 2401     2     2     NA         NA      NA        NA        NA
## 2402     8     6     11         NA      NA        NA        NA
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404    NA    NA     NA         NA      NA        NA        NA
## 2405     4     4      3         NA      NA        NA        NA
## 2406     4     4      4         NA      NA        NA        NA
## 2407     0     0      0         NA      NA        NA        NA
## 2408    NA    NA     NA         NA      NA        NA        NA
## 2409    NA    NA     NA         NA      NA        NA        NA
## 2410    11    13     15         NA      NA        NA        NA
## 2411    NA    NA     NA         NA      NA        NA        NA
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    NA    NA     NA         NA      NA        NA        NA
## 2414    NA    NA     NA         NA      NA        NA        NA
## 2415    NA    NA     NA         NA      NA        NA        NA
## 2416    NA    NA     NA         NA      NA        NA        NA
## 2417    NA    NA     NA         NA      NA        NA        NA
## 2418    NA    NA     NA         NA      NA        NA        NA
## 2419    NA    NA     NA         NA      NA        NA        NA
## 2420    NA    NA     NA         NA      NA        NA        NA
## 2421    NA    NA     NA         NA      NA        NA        NA
## 2422    NA    NA     NA         NA      NA        NA        NA
## 2423    NA    NA     NA         NA      NA        NA        NA
## 2424    NA    NA     NA         NA      NA        NA        NA
## 2425    NA    NA     NA         NA      NA        NA        NA
## 2426    NA    NA     NA         NA      NA        NA        NA
## 2427    NA    NA     NA         NA      NA        NA        NA
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    NA    NA     NA         NA      NA        NA        NA
## 2430    NA    NA     NA         NA      NA        NA        NA
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    NA    NA     NA         NA      NA        NA        NA
## 2433    NA    NA     NA         NA      NA        NA        NA
## 2434    NA    NA     NA         NA      NA        NA        NA
## 2435    NA    NA     NA         NA      NA        NA        NA
## 2436    NA    NA     NA         NA      NA        NA        NA
## 2437    NA    NA     NA         NA      NA        NA        NA
## 2438    NA    NA     NA         NA      NA        NA        NA
## 2439    NA    NA     NA         NA      NA        NA        NA
## 2440    NA    NA     NA         NA      NA        NA        NA
## 2441    NA    NA     NA         NA      NA        NA        NA
## 2442    NA    NA     NA         NA      NA        NA        NA
## 2443     4    NA     NA         NA      NA        NA        NA
## 2444     1    NA     NA         NA      NA        NA        NA
## 2445    NA    NA     NA         NA      NA        NA        NA
## 2446    NA    NA     NA         NA      NA        NA        NA
## 2447     8    NA     NA         NA      NA        NA        NA
## 2448    NA    NA     NA         NA      NA        NA        NA
## 2449    NA    NA     NA         NA      NA        NA        NA
## 2450    NA    NA     NA         NA      NA        NA        NA
## 2451    NA    NA     NA         NA      NA        NA        NA
## 2452    NA    NA     NA         NA      NA        NA        NA
## 2453    NA    NA     NA         NA      NA        NA        NA
## 2454    NA    NA     NA         NA      NA        NA        NA
## 2455    NA    NA     NA         NA      NA        NA        NA
## 2456    NA    NA     NA         NA      NA        NA        NA
## 2457     1    NA     NA         NA      NA        NA        NA
## 2458    NA    NA     NA         NA      NA        NA        NA
## 2459    NA    NA     NA         NA      NA        NA        NA
## 2460    NA    NA     NA         NA      NA        NA        NA
## 2461    NA    NA     NA         NA      NA        NA        NA
## 2462    NA    NA     NA         NA      NA        NA        NA
## 2463    NA    NA     NA         NA      NA        NA        NA
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA     NA         NA      NA        NA        NA
## 2466    NA    NA     NA         NA      NA        NA        NA
## 2467    NA    NA     NA         NA      NA        NA        NA
## 2468    NA    NA     NA         NA      NA        NA        NA
## 2469    NA    NA     NA         NA      NA        NA        NA
## 2470    NA    NA     NA         NA      NA        NA        NA
## 2471    NA    NA     NA         NA      NA        NA        NA
## 2472    NA    NA     NA         NA      NA        NA        NA
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA         NA      NA        NA        NA
## 2475     1     1      1         NA      NA        NA        NA
## 2476     2     2     NA         NA      NA        NA        NA
## 2477     3     6     NA         NA      NA        NA        NA
## 2478     1     0      2         NA      NA        NA        NA
## 2479    NA    NA     NA         NA      NA        NA        NA
## 2480     3    NA      6         NA      NA        NA        NA
## 2481    NA    NA     NA         NA      NA        NA        NA
## 2482     1     1     NA         NA      NA        NA        NA
## 2483     6     6      6         NA      NA        NA        NA
## 2484    11     8      6         NA      NA        NA        NA
## 2485     4    NA     NA         NA      NA        NA        NA
## 2486     1     1      1         NA      NA        NA        NA
## 2487     4     6      6         NA      NA        NA        NA
## 2488    NA    NA     NA         NA      NA        NA        NA
## 2489    NA    NA      3         NA      NA        NA        NA
## 2490     4     4      4         NA      NA        NA        NA
## 2491    26    21     21         NA      NA        NA        NA
## 2492    NA    NA     NA         NA      NA        NA        NA
## 2493    NA     3      3         NA      NA        NA        NA
## 2494    42    39     30         NA      NA        NA        NA
## 2495     6     6      5         NA      NA        NA        NA
## 2496    NA    NA      2         NA      NA        NA        NA
## 2497    35    35     35         NA      NA        NA        NA
## 2498   321   285    285         NA      NA        NA        NA
## 2499     4     4      4         NA      NA        NA        NA
## 2500    NA    NA      4         NA      NA        NA        NA
## 2501    19    23     17         NA      NA        NA        NA
## 2502    91    87     63         NA      NA        NA        NA
## 2503     8     5     NA         NA      NA        NA        NA
## 2504     3     2      2         NA      NA        NA        NA
## 2505     2     3     NA         NA      NA        NA        NA
## 2506    NA    NA     NA         NA      NA        NA        NA
## 2507     4    NA      2         NA      NA        NA        NA
## 2508    NA    NA     NA         NA      NA        NA        NA
## 2509     0    NA      0         NA      NA        NA        NA
## 2510     5     1      3         NA      NA        NA        NA
## 2511    NA    NA     NA         NA      NA        NA        NA
## 2512    NA    NA      1         NA      NA        NA        NA
## 2513     1     1      1         NA      NA        NA        NA
## 2514     5     1      3         NA      NA        NA        NA
## 2515     2     1      1         NA      NA        NA        NA
## 2516     0     0     NA         NA      NA        NA        NA
## 2517    NA    NA     NA         NA      NA        NA        NA
## 2518    NA    NA     NA         NA      NA        NA        NA
## 2519     1     1     NA         NA      NA        NA        NA
## 2520    NA     2     NA         NA      NA        NA        NA
## 2521     6     6      1         NA      NA        NA        NA
## 2522    NA     1     NA         NA      NA        NA        NA
## 2523     2     2      2         NA      NA        NA        NA
## 2524     0     0     NA         NA      NA        NA        NA
## 2525     4     1      1         NA      NA        NA        NA
## 2526    NA     1     NA         NA      NA        NA        NA
## 2527     0     0     NA         NA      NA        NA        NA
## 2528    NA     1     NA         NA      NA        NA        NA
## 2529    NA    NA      1         NA      NA        NA        NA
## 2530     6     6      1         NA      NA        NA        NA
## 2531    NA    NA     NA         NA      NA        NA        NA
## 2532     2     1      1         NA      NA        NA        NA
## 2533     0     0     NA         NA      NA        NA        NA
## 2534     2    NA     NA         NA      NA        NA        NA
## 2535     9     3      1         NA      NA        NA        NA
## 2536    NA     1      2         NA      NA        NA        NA
## 2537     3     2      1         NA      NA        NA        NA
## 2538     0     0     NA         NA      NA        NA        NA
## 2539    NA    NA     NA         NA      NA        NA        NA
## 2540    12     7      5         NA      NA        NA        NA
## 2541    NA    NA     NA         NA      NA        NA        NA
## 2542     1     1      1         NA      NA        NA        NA
## 2543     4     2     NA         NA      NA        NA        NA
## 2544     3     3     NA         NA      NA        NA        NA
## 2545     1     1     NA         NA      NA        NA        NA
## 2546     1     1     NA         NA      NA        NA        NA
## 2547    NA    NA     NA         NA      NA        NA        NA
## 2548    NA    NA     NA         NA      NA        NA        NA
## 2549     1     1     NA         NA      NA        NA        NA
## 2550     3     6      3         NA      NA        NA        NA
## 2551    NA    NA     NA         NA      NA        NA        NA
## 2552     0     0      0         NA      NA        NA        NA
## 2553    NA    NA     NA         NA      NA        NA        NA
## 2554     4    11      4         NA      NA        NA        NA
## 2555    23    14     23         NA      NA        NA        NA
## 2556    NA    NA     NA         NA      NA        NA        NA
## 2557     3     2      2         NA      NA        NA        NA
## 2558     8     4     13         NA      NA        NA        NA
## 2559     3    NA     NA         NA      NA        NA        NA
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1    NA     NA         NA      NA        NA        NA
## 2562    NA    NA     NA         NA      NA        NA        NA
## 2563    NA     3     NA         NA      NA        NA        NA
## 2564    11     7     11         NA      NA        NA        NA
## 2565     1     2     NA         NA      NA        NA        NA
## 2566     6     6      6         NA      NA        NA        NA
## 2567    NA    11      4         NA      NA        NA        NA
## 2568    NA    NA     NA         NA      NA        NA        NA
## 2569    69    53     55         NA      NA        NA        NA
## 2570    NA     3     NA         NA      NA        NA        NA
## 2571    NA     2     NA         NA      NA        NA        NA
## 2572     6     6      8         NA      NA        NA        NA
## 2573    NA    NA     NA         NA      NA        NA        NA
## 2574    77    42     46         NA      NA        NA        NA
## 2575    28    35     46         NA      NA        NA        NA
## 2576     9     8     12         NA      NA        NA        NA
## 2577    NA    NA     NA         NA      NA        NA        NA
## 2578    32    34     36         NA      NA        NA        NA
## 2579    68    66     63         NA      NA        NA        NA
## 2580    20    NA     NA         NA      NA        NA        NA
## 2581     3     2      3         NA      NA        NA        NA
## 2582     2     3      1         NA      NA        NA        NA
## 2583     1     1     NA         NA      NA        NA        NA
## 2584     1     1     NA         NA      NA        NA        NA
## 2585    NA     0     NA         NA      NA        NA        NA
## 2586     0    NA     NA         NA      NA        NA        NA
## 2587    NA    NA     NA         NA      NA        NA        NA
## 2588     4     3      4         NA      NA        NA        NA
## 2589    NA     1     NA         NA      NA        NA        NA
## 2590     2    NA      1         NA      NA        NA        NA
## 2591    NA    NA     NA         NA      NA        NA        NA
## 2592     1     1     NA         NA      NA        NA        NA
## 2593     0     0      1         NA      NA        NA        NA
## 2594    NA     1      1         NA      NA        NA        NA
## 2595     3     1      3         NA      NA        NA        NA
## 2596    NA     2     NA         NA      NA        NA        NA
## 2597    NA     2     NA         NA      NA        NA        NA
## 2598     6     3     NA         NA      NA        NA        NA
## 2599    NA     2     NA         NA      NA        NA        NA
## 2600     4     4      2         NA      NA        NA        NA
## 2601    NA    NA      2         NA      NA        NA        NA
## 2602    NA     3      1         NA      NA        NA        NA
## 2603     2     2      2         NA      NA        NA        NA
## 2604    NA    NA     NA         NA      NA        NA        NA
## 2605    NA     3     NA         NA      NA        NA        NA
## 2606    NA    NA      1         NA      NA        NA        NA
## 2607    NA    NA      2         NA      NA        NA        NA
## 2608     8     3      3         NA      NA        NA        NA
## 2609     5     1      1         NA      NA        NA        NA
## 2610     2     2      4         NA      NA        NA        NA
## 2611     2    NA     NA         NA      NA        NA        NA
## 2612    11     3      8         NA      NA        NA        NA
## 2613     0     0     NA         NA      NA        NA        NA
## 2614    NA     2     NA         NA      NA        NA        NA
## 2615     5     4      5         NA      NA        NA        NA
## 2616     2     1      1         NA      NA        NA        NA
## 2617    NA    NA     NA         NA      NA        NA        NA
## 2618     1     1      1         NA      NA        NA        NA
## 2619     2     2      2         NA      NA        NA        NA
## 2620     3     3      3         NA      NA        NA        NA
## 2621    NA     3     NA         NA      NA        NA        NA
## 2622     1     1      1         NA      NA        NA        NA
## 2623     1     1      1         NA      NA        NA        NA
## 2624     1     1     NA         NA      NA        NA        NA
## 2625     4    NA     NA         NA      NA        NA        NA
## 2626    NA    NA     NA         NA      NA        NA        NA
## 2627     1     1      1         NA      NA        NA        NA
## 2628     3     3      3         NA      NA        NA        NA
## 2629    NA     0     NA         NA      NA        NA        NA
## 2630     1    NA     NA         NA      NA        NA        NA
## 2631    NA    NA     NA         NA      NA        NA        NA
## 2632    NA    NA     NA         NA      NA        NA        NA
## 2633    NA     2     NA         NA      NA        NA        NA
## 2634     6     8      4         NA      NA        NA        NA
## 2635    NA    NA     NA         NA      NA        NA        NA
## 2636     6     2      4         NA      NA        NA        NA
## 2637     4     6      4         NA      NA        NA        NA
## 2638    NA     1     NA         NA      NA        NA        NA
## 2639    NA     1     NA         NA      NA        NA        NA
## 2640     1     1      1         NA      NA        NA        NA
## 2641    NA    13     19         NA      NA        NA        NA
## 2642    NA    NA     NA         NA      NA        NA        NA
## 2643    32    32     18         NA      NA        NA        NA
## 2644    NA    NA     NA         NA      NA        NA        NA
## 2645     3    13      6         NA      NA        NA        NA
## 2646    10    10      7         NA      NA        NA        NA
## 2647     8    12     14         NA      NA        NA        NA
## 2648     3     2      2         NA      NA        NA        NA
## 2649    25    28     21         NA      NA        NA        NA
## 2650   127   113     85         NA      NA        NA        NA
## 2651     8     6      7         NA      NA        NA        NA
## 2652     8    NA      2         NA      NA        NA        NA
## 2653    17    30     25         NA      NA        NA        NA
## 2654    32    49     36         NA      NA        NA        NA
## 2655     5    NA     NA         NA      NA        NA        NA
## 2656     3     2      3         NA      NA        NA        NA
## 2657     2     4      2         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    10     5      4         NA      NA        NA        NA
## 2660    NA    NA      1         NA      NA        NA        NA
## 2661     1     1      1         NA      NA        NA        NA
## 2662     6     2      5         NA      NA        NA        NA
## 2663    11    15      5         NA      NA        NA        NA
## 2664    NA     0     NA         NA      NA        NA        NA
## 2665     1     1     NA         NA      NA        NA        NA
## 2666    NA    NA     NA         NA      NA        NA        NA
## 2667     1    NA     NA         NA      NA        NA        NA
## 2668     1     1      1         NA      NA        NA        NA
## 2669     0     3      3         NA      NA        NA        NA
## 2670     1     2      1         NA      NA        NA        NA
## 2671     1     3      4         NA      NA        NA        NA
## 2672    NA    NA     NA         NA      NA        NA        NA
## 2673     2    NA      2         NA      NA        NA        NA
## 2674     2     3      3         NA      NA        NA        NA
## 2675     0    NA     NA         NA      NA        NA        NA
## 2676     1     1      2         NA      NA        NA        NA
## 2677     3     3      2         NA      NA        NA        NA
## 2678     2    NA     NA         NA      NA        NA        NA
## 2679     5    12      2         NA      NA        NA        NA
## 2680    NA    NA     NA         NA      NA        NA        NA
## 2681     1    NA     NA         NA      NA        NA        NA
## 2682     5    24     23         NA      NA        NA        NA
## 2683     1     1     NA         NA      NA        NA        NA
## 2684     1     1      1         NA      NA        NA        NA
## 2685     2     6     NA         NA      NA        NA        NA
## 2686    NA     1      1         NA      NA        NA        NA
## 2687    NA     2     NA         NA      NA        NA        NA
## 2688     5    NA     NA         NA      NA        NA        NA
## 2689    NA    NA     NA         NA      NA        NA        NA
## 2690    NA     0      0         NA      NA        NA        NA
## 2691     3     1      2         NA      NA        NA        NA
## 2692     2     3      3         NA      NA        NA        NA
## 2693     4     3      4         NA      NA        NA        NA
## 2694     1    NA     NA         NA      NA        NA        NA
## 2695    NA    NA      1         NA      NA        NA        NA
## 2696    NA    NA     NA         NA      NA        NA        NA
## 2697    NA    NA     NA         NA      NA        NA        NA
## 2698    NA    NA     NA         NA      NA        NA        NA
## 2699    NA    NA      0         NA      NA        NA        NA
## 2700    NA    NA     NA         NA      NA        NA        NA
## 2701     4     4      6         NA      NA        NA        NA
## 2702    NA    NA     NA         NA      NA        NA        NA
## 2703     8    13     15         NA      NA        NA        NA
## 2704     0    NA     NA         NA      NA        NA        NA
## 2705    NA    NA     NA         NA      NA        NA        NA
## 2706    NA    NA     NA         NA      NA        NA        NA
## 2707    10    10     12         NA      NA        NA        NA
## 2708     5     8      5         NA      NA        NA        NA
## 2709    18    18     18         NA      NA        NA        NA
## 2710     4     4      7         NA      NA        NA        NA
## 2711     2    NA     NA         NA      NA        NA        NA
## 2712    17    23     27         NA      NA        NA        NA
## 2713    38     2      2         NA      NA        NA        NA
## 2714    NA    NA     NA         NA      NA        NA        NA
## 2715    NA    NA      1         NA      NA        NA        NA
## 2716    NA    NA     NA         NA      NA        NA        NA
## 2717     0    NA     NA         NA      NA        NA        NA
## 2718     2     1     NA         NA      NA        NA        NA
## 2719     1     3      2         NA      NA        NA        NA
## 2720     1     3     NA         NA      NA        NA        NA
## 2721    NA    NA     NA         NA      NA        NA        NA
## 2722    NA    NA     NA         NA      NA        NA        NA
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     3     3      3         NA      NA        NA        NA
## 2725    NA     3     NA         NA      NA        NA        NA
## 2726     3     3      3         NA      NA        NA        NA
## 2727    NA    NA      2         NA      NA        NA        NA
## 2728     1    NA     NA         NA      NA        NA        NA
## 2729     1     2     NA         NA      NA        NA        NA
## 2730     1     1      1         NA      NA        NA        NA
## 2731     2     4     15         NA      NA        NA        NA
## 2732     3     6     10         NA      NA        NA        NA
## 2733    NA    NA      4         NA      NA        NA        NA
## 2734    NA    NA      5         NA      NA        NA        NA
## 2735     1    NA     NA         NA      NA        NA        NA
## 2736     1    NA     NA         NA      NA        NA        NA
## 2737     2     1      1         NA      NA        NA        NA
## 2738     3     3     NA         NA      NA        NA        NA
## 2739    NA    NA     NA         NA      NA        NA        NA
## 2740     1     2      2         NA      NA        NA        NA
## 2741     1     0      1         NA      NA        NA        NA
## 2742     6    11      6         NA      NA        NA        NA
## 2743    17    20     20         NA      NA        NA        NA
## 2744    NA    NA     NA         NA      NA        NA        NA
## 2745     2     3      3         NA      NA        NA        NA
## 2746    NA     3      3         NA      NA        NA        NA
## 2747     4     8      8         NA      NA        NA        NA
## 2748     3     3      3         NA      NA        NA        NA
## 2749     2     4      4         NA      NA        NA        NA
## 2750    NA     4     NA         NA      NA        NA        NA
## 2751    32    32     24         NA      NA        NA        NA
## 2752     2    NA     NA         NA      NA        NA        NA
## 2753     5     3      5         NA      NA        NA        NA
## 2754    35    25     25         NA      NA        NA        NA
## 2755    35    32     35         NA      NA        NA        NA
## 2756     4     4      4         NA      NA        NA        NA
## 2757    NA     1     NA         NA      NA        NA        NA
## 2758     4     4      4         NA      NA        NA        NA
## 2759    13    13     19         NA      NA        NA        NA
## 2760    36    36     36         NA      NA        NA        NA
## 2761     2    NA     NA         NA      NA        NA        NA
## 2762     1     3      2         NA      NA        NA        NA
## 2763     1    NA     NA         NA      NA        NA        NA
## 2764     1     3      2         NA      NA        NA        NA
## 2765     0    NA     NA         NA      NA        NA        NA
## 2766     4     2      6         NA      NA        NA        NA
## 2767    NA    NA     NA         NA      NA        NA        NA
## 2768     1    NA     NA         NA      NA        NA        NA
## 2769    NA    NA     NA         NA      NA        NA        NA
## 2770    NA    NA     NA         NA      NA        NA        NA
## 2771     1     3      3         NA      NA        NA        NA
## 2772     1     1     NA         NA      NA        NA        NA
## 2773    NA    NA     NA         NA      NA        NA        NA
## 2774     3     3      2         NA      NA        NA        NA
## 2775     6     3      6         NA      NA        NA        NA
## 2776     1     1      2         NA      NA        NA        NA
## 2777     1    NA     NA         NA      NA        NA        NA
## 2778     3     2      2         NA      NA        NA        NA
## 2779     0    NA     NA         NA      NA        NA        NA
## 2780    NA     3      3         NA      NA        NA        NA
## 2781     1    NA     NA         NA      NA        NA        NA
## 2782     1     1      2         NA      NA        NA        NA
## 2783     0    NA     NA         NA      NA        NA        NA
## 2784     1    NA     NA         NA      NA        NA        NA
## 2785     2    NA     NA         NA      NA        NA        NA
## 2786     1    NA     NA         NA      NA        NA        NA
## 2787     1     1     NA         NA      NA        NA        NA
## 2788     2     2      3         NA      NA        NA        NA
## 2789     6     8     11         NA      NA        NA        NA
## 2790    NA    NA      2         NA      NA        NA        NA
## 2791    NA    NA      4         NA      NA        NA        NA
## 2792     0    NA     NA         NA      NA        NA        NA
## 2793     8    11     11         NA      NA        NA        NA
## 2794     2     1      1         NA      NA        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     3     3      3         NA      NA        NA        NA
## 2797     0    NA     NA         NA      NA        NA        NA
## 2798    NA    NA     NA         NA      NA        NA        NA
## 2799     3     4      4         NA      NA        NA        NA
## 2800    NA    NA     NA         NA      NA        NA        NA
## 2801     1     1      1         NA      NA        NA        NA
## 2802     4     6      4         NA      NA        NA        NA
## 2803    13     6     16         NA      NA        NA        NA
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     3    NA     NA         NA      NA        NA        NA
## 2806     1     1      1         NA      NA        NA        NA
## 2807     3     2     NA         NA      NA        NA        NA
## 2808     1     1      1         NA      NA        NA        NA
## 2809     3     1      2         NA      NA        NA        NA
## 2810     1     1     NA         NA      NA        NA        NA
## 2811    NA     0      0         NA      NA        NA        NA
## 2812     1     1      1         NA      NA        NA        NA
## 2813    NA     1      2         NA      NA        NA        NA
## 2814     3     3      3         NA      NA        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     1    NA      1         NA      NA        NA        NA
## 2817    NA    NA      1         NA      NA        NA        NA
## 2818     0    NA      0         NA      NA        NA        NA
## 2819     1    NA      1         NA      NA        NA        NA
## 2820    NA    NA     NA         NA      NA        NA        NA
## 2821     1     0      2         NA      NA        NA        NA
## 2822    NA    NA     NA         NA      NA        NA        NA
## 2823    27    27     36         NA      NA        NA        NA
## 2824     2    NA     NA         NA      NA        NA        NA
## 2825     8    17     11         NA      NA        NA        NA
## 2826    NA    NA     NA         NA      NA        NA        NA
## 2827     2     2      1         NA      NA        NA        NA
## 2828     8     6      6         NA      NA        NA        NA
## 2829     3     3      3         NA      NA        NA        NA
## 2830    NA     2      1         NA      NA        NA        NA
## 2831     2     2      4         NA      NA        NA        NA
## 2832    NA    NA      6         NA      NA        NA        NA
## 2833    14    18     25         NA      NA        NA        NA
## 2834     2     1      1         NA      NA        NA        NA
## 2835     4     6      8         NA      NA        NA        NA
## 2836     2     4      2         NA      NA        NA        NA
## 2837     1     1     NA         NA      NA        NA        NA
## 2838    NA     8      6         NA      NA        NA        NA
## 2839    48    37     42         NA      NA        NA        NA
## 2840     6     3     10         NA      NA        NA        NA
## 2841    17    12     17         NA      NA        NA        NA
## 2842     2     2      3         NA      NA        NA        NA
## 2843     9     6     11         NA      NA        NA        NA
## 2844    17    17     14         NA      NA        NA        NA
## 2845    NA    NA     NA         NA      NA        NA        NA
## 2846    25    35     28         NA      NA        NA        NA
## 2847    74    56     77         NA      NA        NA        NA
## 2848     9     6      6         NA      NA        NA        NA
## 2849     2     2      4         NA      NA        NA        NA
## 2850    27    32     32         NA      NA        NA        NA
## 2851    46    51     55         NA      NA        NA        NA
## 2852     8     5      3         NA      NA        NA        NA
## 2853     3     5      2         NA      NA        NA        NA
## 2854     2     4     NA         NA      NA        NA        NA
## 2855     4     4      2         NA      NA        NA        NA
## 2856     6     3      4         NA      NA        NA        NA
## 2857     3     1      1         NA      NA        NA        NA
## 2858    NA    NA      1         NA      NA        NA        NA
## 2859     0     0     NA         NA      NA        NA        NA
## 2860     3     2      3         NA      NA        NA        NA
## 2861    NA     0     NA         NA      NA        NA        NA
## 2862     3     4      4         NA      NA        NA        NA
## 2863    NA    NA     NA         NA      NA        NA        NA
## 2864     1     1      1         NA      NA        NA        NA
## 2865     1    NA      1         NA      NA        NA        NA
## 2866     2     2      2         NA      NA        NA        NA
## 2867     3     3      2         NA      NA        NA        NA
## 2868     5     0      0         NA      NA        NA        NA
## 2869     4     2     NA         NA      NA        NA        NA
## 2870     2     1      2         NA      NA        NA        NA
## 2871    10     7      8         NA      NA        NA        NA
## 2872    NA    NA     NA         NA      NA        NA        NA
## 2873     1    NA     NA         NA      NA        NA        NA
## 2874     2     2      2         NA      NA        NA        NA
## 2875     1     1      1         NA      NA        NA        NA
## 2876     3     2      3         NA      NA        NA        NA
## 2877     1     1      2         NA      NA        NA        NA
## 2878     0     0     NA         NA      NA        NA        NA
## 2879    NA    NA      3         NA      NA        NA        NA
## 2880     1    NA      1         NA      NA        NA        NA
## 2881     1     1      1         NA      NA        NA        NA
## 2882     0     0     NA         NA      NA        NA        NA
## 2883     1    NA     NA         NA      NA        NA        NA
## 2884     1     1     NA         NA      NA        NA        NA
## 2885     1    NA      1         NA      NA        NA        NA
## 2886     1    NA     NA         NA      NA        NA        NA
## 2887     3     2      5         NA      NA        NA        NA
## 2888     3    NA      3         NA      NA        NA        NA
## 2889    NA     2     NA         NA      NA        NA        NA
## 2890     1     3      3         NA      NA        NA        NA
## 2891     0     0     NA         NA      NA        NA        NA
## 2892    NA    NA     NA         NA      NA        NA        NA
## 2893    NA     3      6         NA      NA        NA        NA
## 2894     1     1      1         NA      NA        NA        NA
## 2895    NA    NA      0         NA      NA        NA        NA
## 2896     1     4      3         NA      NA        NA        NA
## 2897     3     3      3         NA      NA        NA        NA
## 2898     0     0     NA         NA      NA        NA        NA
## 2899    NA    NA      2         NA      NA        NA        NA
## 2900     4     4      2         NA      NA        NA        NA
## 2901     1     1      1         NA      NA        NA        NA
## 2902     2     2     NA         NA      NA        NA        NA
## 2903     3     3     NA         NA      NA        NA        NA
## 2904    NA    NA      1         NA      NA        NA        NA
## 2905     1    NA     NA         NA      NA        NA        NA
## 2906    NA    NA      1         NA      NA        NA        NA
## 2907    NA    NA      1         NA      NA        NA        NA
## 2908    NA    NA     NA         NA      NA        NA        NA
## 2909     1    NA     NA         NA      NA        NA        NA
## 2910    NA     0      0         NA      NA        NA        NA
## 2911    NA    NA     NA         NA      NA        NA        NA
## 2912     2     4      4         NA      NA        NA        NA
## 2913    NA    NA      1         NA      NA        NA        NA
## 2914     1     1     NA         NA      NA        NA        NA
## 2915    13     8      8         NA      NA        NA        NA
## 2916    10     6      6         NA      NA        NA        NA
## 2917    NA    NA     NA         NA      NA        NA        NA
## 2918     8     6      6         NA      NA        NA        NA
## 2919    11    14     11         NA      NA        NA        NA
## 2920    56    56     46         NA      NA        NA        NA
## 2921     1     1     NA         NA      NA        NA        NA
## 2922     8    11      8         NA      NA        NA        NA
## 2923    30    30     30         NA      NA        NA        NA
## 2924    NA    NA      4         NA      NA        NA        NA
## 2925     1    NA     NA         NA      NA        NA        NA
## 2926    NA     2      1         NA      NA        NA        NA
## 2927     1     1      1         NA      NA        NA        NA
## 2928    NA    NA     NA         NA      NA        NA        NA
## 2929    NA    NA     NA         NA      NA        NA        NA
## 2930    NA    NA     NA         NA      NA        NA        NA
## 2931     1    NA      1         NA      NA        NA        NA
## 2932     1     1      1         NA      NA        NA        NA
## 2933     2     2     NA         NA      NA        NA        NA
## 2934     3     3     NA         NA      NA        NA        NA
## 2935     3     3     NA         NA      NA        NA        NA
## 2936    NA    NA      0         NA      NA        NA        NA
## 2937    NA     6      3         NA      NA        NA        NA
## 2938    NA    NA      0         NA      NA        NA        NA
## 2939    NA    NA     NA         NA      NA        NA        NA
## 2940     2    NA     NA         NA      NA        NA        NA
## 2941     3     3      3         NA      NA        NA        NA
## 2942    NA    NA     NA         NA      NA        NA        NA
## 2943    NA    NA     NA         NA      NA        NA        NA
## 2944    NA     2      1         NA      NA        NA        NA
## 2945     5     5      3         NA      NA        NA        NA
## 2946     6    11      6         NA      NA        NA        NA
## 2947    NA    NA     NA         NA      NA        NA        NA
## 2948     3     8     NA         NA      NA        NA        NA
## 2949     5     6      4         NA      NA        NA        NA
## 2950     6     3      6         NA      NA        NA        NA
## 2951    NA     4      4         NA      NA        NA        NA
## 2952    26    21     18         NA      NA        NA        NA
## 2953    16    16     22         NA      NA        NA        NA
## 2954     2     2     NA         NA      NA        NA        NA
## 2955     5     6     NA         NA      NA        NA        NA
## 2956    11     6      8         NA      NA        NA        NA
## 2957    25    25     32         NA      NA        NA        NA
## 2958   116   120    127         NA      NA        NA        NA
## 2959     7     5      6         NA      NA        NA        NA
## 2960    11    13     17         NA      NA        NA        NA
## 2961    44    40     46         NA      NA        NA        NA
## 2962     2     2      2         NA      NA        NA        NA
## 2963    NA    NA     NA         NA      NA        NA        NA
## 2964     3    NA      2         NA      NA        NA        NA
## 2965     4     2      2         NA      NA        NA        NA
## 2966     1     2      1         NA      NA        NA        NA
## 2967     1     3     NA         NA      NA        NA        NA
## 2968    NA    NA      1         NA      NA        NA        NA
## 2969    NA    NA     NA         NA      NA        NA        NA
## 2970     3     1      1         NA      NA        NA        NA
## 2971    NA    NA     NA         NA      NA        NA        NA
## 2972    NA    NA     NA         NA      NA        NA        NA
## 2973    NA    NA     NA         NA      NA        NA        NA
## 2974     1    NA     NA         NA      NA        NA        NA
## 2975     4     3      3         NA      NA        NA        NA
## 2976    NA    NA     NA         NA      NA        NA        NA
## 2977     2     3     NA         NA      NA        NA        NA
## 2978     5     4      4         NA      NA        NA        NA
## 2979     2    19      8         NA      NA        NA        NA
## 2980     3    29      6         NA      NA        NA        NA
## 2981     3    20      3         NA      NA        NA        NA
## 2982     1     1      1         NA      NA        NA        NA
## 2983     1     1      1         NA      NA        NA        NA
## 2984     1    NA     NA         NA      NA        NA        NA
## 2985    NA     1      1         NA      NA        NA        NA
## 2986    NA    NA     NA         NA      NA        NA        NA
## 2987    NA    NA     NA         NA      NA        NA        NA
## 2988    NA     1      1         NA      NA        NA        NA
## 2989     2    NA     NA         NA      NA        NA        NA
## 2990     8     3      3         NA      NA        NA        NA
## 2991    NA    NA     NA         NA      NA        NA        NA
## 2992    NA    NA      1         NA      NA        NA        NA
## 2993    NA    NA     NA         NA      NA        NA        NA
## 2994     1     0      1         NA      NA        NA        NA
## 2995     1    NA     NA         NA      NA        NA        NA
## 2996    17    11      8         NA      NA        NA        NA
## 2997    NA    NA     NA         NA      NA        NA        NA
## 2998    20    17     20         NA      NA        NA        NA
## 2999    NA    NA     NA         NA      NA        NA        NA
## 3000     3     3      3         NA      NA        NA        NA
## 3001     2    NA      2         NA      NA        NA        NA
## 3002    15    15     19         NA      NA        NA        NA
## 3003     2    NA     NA         NA      NA        NA        NA
## 3004     6     8     20         NA      NA        NA        NA
## 3005     4     4      4         NA      NA        NA        NA
## 3006    NA    NA     NA         NA      NA        NA        NA
## 3007    NA    15     17         NA      NA        NA        NA
## 3008    34    34     40         NA      NA        NA        NA
## 3009    NA    NA     NA         NA      NA        NA        NA
## 3010    13    16     13         NA      NA        NA        NA
## 3011     5     5      7         NA      NA        NA        NA
## 3012     5     6      8         NA      NA        NA        NA
## 3013    63    35     53         NA      NA        NA        NA
## 3014   109   106    106         NA      NA        NA        NA
## 3015     6     7      8         NA      NA        NA        NA
## 3016    NA    NA     NA         NA      NA        NA        NA
## 3017    23    40     25         NA      NA        NA        NA
## 3018    72    78     57         NA      NA        NA        NA
## 3019    NA    NA     NA         NA      NA        NA        NA
## 3020     5     3      8         NA      NA        NA        NA
## 3021     4     2      6         NA      NA        NA        NA
## 3022     2     2      2         NA      NA        NA        NA
## 3023     1     1      1         NA      NA        NA        NA
## 3024     3     1      1         NA      NA        NA        NA
## 3025    NA    NA     NA         NA      NA        NA        NA
## 3026     1     0      0         NA      NA        NA        NA
## 3027     2     2      2         NA      NA        NA        NA
## 3028    NA     0     NA         NA      NA        NA        NA
## 3029    NA    NA     NA         NA      NA        NA        NA
## 3030    NA    NA     NA         NA      NA        NA        NA
## 3031     5     4      5         NA      NA        NA        NA
## 3032     2     2      3         NA      NA        NA        NA
## 3033     2     2     NA         NA      NA        NA        NA
## 3034     4     5      4         NA      NA        NA        NA
## 3035     3     0      0         NA      NA        NA        NA
## 3036     6     2      6         NA      NA        NA        NA
## 3037     1     3      2         NA      NA        NA        NA
## 3038     2     1      4         NA      NA        NA        NA
## 3039    NA    NA     NA         NA      NA        NA        NA
## 3040    NA    NA     NA         NA      NA        NA        NA
## 3041     4     4      4         NA      NA        NA        NA
## 3042    NA     3     NA         NA      NA        NA        NA
## 3043     1     1      1         NA      NA        NA        NA
## 3044     2     3      2         NA      NA        NA        NA
## 3045     2     1      3         NA      NA        NA        NA
## 3046     0     0      0         NA      NA        NA        NA
## 3047    NA     2     NA         NA      NA        NA        NA
## 3048     6    NA      3         NA      NA        NA        NA
## 3049     2     3     NA         NA      NA        NA        NA
## 3050     1    NA      1         NA      NA        NA        NA
## 3051     0     0      0         NA      NA        NA        NA
## 3052    NA    NA      6         NA      NA        NA        NA
## 3053     3     1     NA         NA      NA        NA        NA
## 3054    NA     2     NA         NA      NA        NA        NA
## 3055     1     1      1         NA      NA        NA        NA
## 3056     2     3     NA         NA      NA        NA        NA
## 3057     1     1     NA         NA      NA        NA        NA
## 3058     3     1      1         NA      NA        NA        NA
## 3059    NA     2      2         NA      NA        NA        NA
## 3060     6    NA     NA         NA      NA        NA        NA
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA     1      1         NA      NA        NA        NA
## 3063     0     0      0         NA      NA        NA        NA
## 3064     4     4      4         NA      NA        NA        NA
## 3065    NA    NA      3         NA      NA        NA        NA
## 3066     1     1      1         NA      NA        NA        NA
## 3067    NA    NA     NA         NA      NA        NA        NA
## 3068     2     3      2         NA      NA        NA        NA
## 3069     2     1      4         NA      NA        NA        NA
## 3070     0     0      0         NA      NA        NA        NA
## 3071    NA    NA     NA         NA      NA        NA        NA
## 3072    NA    NA     NA         NA      NA        NA        NA
## 3073     3     1      1         NA      NA        NA        NA
## 3074    NA     1      1         NA      NA        NA        NA
## 3075     2     8     NA         NA      NA        NA        NA
## 3076    16    16     NA         NA      NA        NA        NA
## 3077    NA    10     NA         NA      NA        NA        NA
## 3078    NA     1     NA         NA      NA        NA        NA
## 3079    NA     1     NA         NA      NA        NA        NA
## 3080    NA    NA      1         NA      NA        NA        NA
## 3081     1     1     NA         NA      NA        NA        NA
## 3082    NA    NA     NA         NA      NA        NA        NA
## 3083     1     1      2         NA      NA        NA        NA
## 3084    NA    NA      1         NA      NA        NA        NA
## 3085    NA    NA      0         NA      NA        NA        NA
## 3086    NA    NA     NA         NA      NA        NA        NA
## 3087     4    NA      4         NA      NA        NA        NA
## 3088     1    NA     NA         NA      NA        NA        NA
## 3089     4     6      2         NA      NA        NA        NA
## 3090     1     1      1         NA      NA        NA        NA
## 3091    NA    NA     NA         NA      NA        NA        NA
## 3092     5     3      3         NA      NA        NA        NA
## 3093     6     3      3         NA      NA        NA        NA
## 3094    NA    NA     NA         NA      NA        NA        NA
## 3095    25    14     28         NA      NA        NA        NA
## 3096    39    35     28         NA      NA        NA        NA
## 3097     2     2      1         NA      NA        NA        NA
## 3098    15    13     13         NA      NA        NA        NA
## 3099    49    36     38         NA      NA        NA        NA
## 3100     5    NA     NA         NA      NA        NA        NA
## 3101    NA    NA     NA         NA      NA        NA        NA
## 3102     1    NA     NA         NA      NA        NA        NA
## 3103    NA    NA     NA         NA      NA        NA        NA
## 3104     1     2      3         NA      NA        NA        NA
## 3105     1     0     NA         NA      NA        NA        NA
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107     4     2      2         NA      NA        NA        NA
## 3108     2     3      3         NA      NA        NA        NA
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA      NA        NA        NA
## 3111    NA     1     NA         NA      NA        NA        NA
## 3112     1    NA     NA         NA      NA        NA        NA
## 3113     1     1      1         NA      NA        NA        NA
## 3114    NA    NA     NA         NA      NA        NA        NA
## 3115     1    NA     NA         NA      NA        NA        NA
## 3116     1     1      1         NA      NA        NA        NA
## 3117     1    NA     NA         NA      NA        NA        NA
## 3118     1    NA     NA         NA      NA        NA        NA
## 3119    NA    NA     NA         NA      NA        NA        NA
## 3120     1     1      1         NA      NA        NA        NA
## 3121     1    NA     NA         NA      NA        NA        NA
## 3122     1     1      1         NA      NA        NA        NA
## 3123    NA    NA     NA         NA      NA        NA        NA
## 3124    NA     2     NA         NA      NA        NA        NA
## 3125     1     1      1         NA      NA        NA        NA
## 3126     6     4      2         NA      NA        NA        NA
## 3127     3    16      3         NA      NA        NA        NA
## 3128     5     5     NA         NA      NA        NA        NA
## 3129     1     1     NA         NA      NA        NA        NA
## 3130    NA     1     NA         NA      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA        NA
## 3132    NA    NA     NA         NA      NA        NA        NA
## 3133    NA    NA      1         NA      NA        NA        NA
## 3134     0    NA      0         NA      NA        NA        NA
## 3135     1    NA     NA         NA      NA        NA        NA
## 3136    NA    NA      0         NA      NA        NA        NA
## 3137    NA     0     NA         NA      NA        NA        NA
## 3138     2     2      2         NA      NA        NA        NA
## 3139     2     2      3         NA      NA        NA        NA
## 3140    NA     3      3         NA      NA        NA        NA
## 3141    NA    NA     NA         NA      NA        NA        NA
## 3142    NA    NA      1         NA      NA        NA        NA
## 3143     2     2      6         NA      NA        NA        NA
## 3144     3    NA     NA         NA      NA        NA        NA
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     8    11      6         NA      NA        NA        NA
## 3147    NA    NA     NA         NA      NA        NA        NA
## 3148    NA     2     NA         NA      NA        NA        NA
## 3149     1    NA      3         NA      NA        NA        NA
## 3150    NA     6     19         NA      NA        NA        NA
## 3151    11    11      8         NA      NA        NA        NA
## 3152     3     3     NA         NA      NA        NA        NA
## 3153     7     7      7         NA      NA        NA        NA
## 3154     5     3      3         NA      NA        NA        NA
## 3155     6     3      3         NA      NA        NA        NA
## 3156     7     4      7         NA      NA        NA        NA
## 3157    77    63     67         NA      NA        NA        NA
## 3158     1     3     NA         NA      NA        NA        NA
## 3159    NA     2     NA         NA      NA        NA        NA
## 3160     2     6      4         NA      NA        NA        NA
## 3161    15    21     19         NA      NA        NA        NA
## 3162    NA    NA     NA         NA      NA        NA        NA
## 3163    NA     0      0         NA      NA        NA        NA
## 3164    NA     1      1         NA      NA        NA        NA
## 3165     1    NA     NA         NA      NA        NA        NA
## 3166    NA     1     NA         NA      NA        NA        NA
## 3167     0     1      1         NA      NA        NA        NA
## 3168     0     0     NA         NA      NA        NA        NA
## 3169    NA    NA     NA         NA      NA        NA        NA
## 3170     3     1      1         NA      NA        NA        NA
## 3171    NA    NA     NA         NA      NA        NA        NA
## 3172     0    NA     NA         NA      NA        NA        NA
## 3173     1     1      3         NA      NA        NA        NA
## 3174    NA    NA      4         NA      NA        NA        NA
## 3175     2     1      2         NA      NA        NA        NA
## 3176    NA     4     NA         NA      NA        NA        NA
## 3177     1     1      1         NA      NA        NA        NA
## 3178     1     1     NA         NA      NA        NA        NA
## 3179    NA    NA     NA         NA      NA        NA        NA
## 3180    NA     3     NA         NA      NA        NA        NA
## 3181     0     1     NA         NA      NA        NA        NA
## 3182    NA    NA     NA         NA      NA        NA        NA
## 3183    NA     2     NA         NA      NA        NA        NA
## 3184    NA    NA     NA         NA      NA        NA        NA
## 3185     1    NA     NA         NA      NA        NA        NA
## 3186     0    NA     NA         NA      NA        NA        NA
## 3187    NA    NA     NA         NA      NA        NA        NA
## 3188     1    NA      1         NA      NA        NA        NA
## 3189     3     3      3         NA      NA        NA        NA
## 3190    NA     0      0         NA      NA        NA        NA
## 3191    NA    NA      2         NA      NA        NA        NA
## 3192    NA     1     NA         NA      NA        NA        NA
## 3193     3    NA      3         NA      NA        NA        NA
## 3194     1     0     NA         NA      NA        NA        NA
## 3195    NA    NA     NA         NA      NA        NA        NA
## 3196    NA     1      1         NA      NA        NA        NA
## 3197     2    NA      2         NA      NA        NA        NA
## 3198    NA    NA     NA         NA      NA        NA        NA
## 3199     3     1      1         NA      NA        NA        NA
## 3200     6     2      2         NA      NA        NA        NA
## 3201     6     3      6         NA      NA        NA        NA
## 3202    NA     3     NA         NA      NA        NA        NA
## 3203    NA    NA     NA         NA      NA        NA        NA
## 3204    NA    NA     NA         NA      NA        NA        NA
## 3205     4     5      1         NA      NA        NA        NA
## 3206     1     1     NA         NA      NA        NA        NA
## 3207    NA    NA     NA         NA      NA        NA        NA
## 3208    NA    NA     NA         NA      NA        NA        NA
## 3209     3     8     11         NA      NA        NA        NA
## 3210    NA    NA      0         NA      NA        NA        NA
## 3211    NA    NA      0         NA      NA        NA        NA
## 3212     0    NA      1         NA      NA        NA        NA
## 3213    30    19     30         NA      NA        NA        NA
## 3214    14    23     20         NA      NA        NA        NA
## 3215    NA    NA     NA         NA      NA        NA        NA
## 3216     4     6      4         NA      NA        NA        NA
## 3217    17    11     13         NA      NA        NA        NA
## 3218    NA    NA      2         NA      NA        NA        NA
## 3219    NA    NA      2         NA      NA        NA        NA
## 3220    NA    NA     NA         NA      NA        NA        NA
## 3221    18    14     14         NA      NA        NA        NA
## 3222     4     6      6         NA      NA        NA        NA
## 3223    NA    NA     NA         NA      NA        NA        NA
## 3224    NA     6     NA         NA      NA        NA        NA
## 3225    55    55     61         NA      NA        NA        NA
## 3226    NA    NA     NA         NA      NA        NA        NA
## 3227     3    NA     NA         NA      NA        NA        NA
## 3228    79    64     84         NA      NA        NA        NA
## 3229     5     8      8         NA      NA        NA        NA
## 3230     3    NA     NA         NA      NA        NA        NA
## 3231    56    39     46         NA      NA        NA        NA
## 3232   215   155    162         NA      NA        NA        NA
## 3233     9    10     11         NA      NA        NA        NA
## 3234    25    40     36         NA      NA        NA        NA
## 3235    44    51     42         NA      NA        NA        NA
## 3236     8    NA     NA         NA      NA        NA        NA
## 3237     2     2      2         NA      NA        NA        NA
## 3238     6     6      4         NA      NA        NA        NA
## 3239     2     2      2         NA      NA        NA        NA
## 3240     3     1      1         NA      NA        NA        NA
## 3241     1     1      1         NA      NA        NA        NA
## 3242    NA    NA     NA         NA      NA        NA        NA
## 3243     1    NA     NA         NA      NA        NA        NA
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     9    11      8         NA      NA        NA        NA
## 3246    NA     0     NA         NA      NA        NA        NA
## 3247     1     3      4         NA      NA        NA        NA
## 3248     0     0      0         NA      NA        NA        NA
## 3249    NA    NA     NA         NA      NA        NA        NA
## 3250    NA    NA      1         NA      NA        NA        NA
## 3251     2     0      1         NA      NA        NA        NA
## 3252    11     6     10         NA      NA        NA        NA
## 3253     6     4      4         NA      NA        NA        NA
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255    NA    NA     NA         NA      NA        NA        NA
## 3256    17     8     14         NA      NA        NA        NA
## 3257     2    NA      2         NA      NA        NA        NA
## 3258     3     6      5         NA      NA        NA        NA
## 3259    NA    NA     NA         NA      NA        NA        NA
## 3260    NA     2     NA         NA      NA        NA        NA
## 3261    NA     1     NA         NA      NA        NA        NA
## 3262     5     5      5         NA      NA        NA        NA
## 3263    14    17     14         NA      NA        NA        NA
## 3264     2    NA      2         NA      NA        NA        NA
## 3265     4     5      3         NA      NA        NA        NA
## 3266    17    20     20         NA      NA        NA        NA
## 3267    NA    NA     NA         NA      NA        NA        NA
## 3268    NA    NA     NA         NA      NA        NA        NA
## 3269     2    NA      2         NA      NA        NA        NA
## 3270     5     8      8         NA      NA        NA        NA
## 3271    NA    NA     NA         NA      NA        NA        NA
## 3272     6     4      5         NA      NA        NA        NA
## 3273    NA    NA     NA         NA      NA        NA        NA
## 3274     5     8      9         NA      NA        NA        NA
## 3275     2     2     21         NA      NA        NA        NA
## 3276     3     6     41         NA      NA        NA        NA
## 3277    NA    NA     NA         NA      NA        NA        NA
## 3278    NA    NA     28         NA      NA        NA        NA
## 3279     8    NA     NA         NA      NA        NA        NA
## 3280     1     1      1         NA      NA        NA        NA
## 3281     2    NA     NA         NA      NA        NA        NA
## 3282     1     1      1         NA      NA        NA        NA
## 3283    NA    NA     NA         NA      NA        NA        NA
## 3284     1     1      1         NA      NA        NA        NA
## 3285     1     2      1         NA      NA        NA        NA
## 3286     1     1      1         NA      NA        NA        NA
## 3287    NA    NA     NA         NA      NA        NA        NA
## 3288     1     1      1         NA      NA        NA        NA
## 3289    NA    NA     NA         NA      NA        NA        NA
## 3290     3     3      3         NA      NA        NA        NA
## 3291     1    NA      1         NA      NA        NA        NA
## 3292    NA     1      4         NA      NA        NA        NA
## 3293    NA     2      1         NA      NA        NA        NA
## 3294     1     2      1         NA      NA        NA        NA
## 3295     0     1      0         NA      NA        NA        NA
## 3296     1    NA     NA         NA      NA        NA        NA
## 3297     8     8      2         NA      NA        NA        NA
## 3298     8    14     14         NA      NA        NA        NA
## 3299    NA    NA     NA         NA      NA        NA        NA
## 3300    25     4     11         NA      NA        NA        NA
## 3301     3     3      6         NA      NA        NA        NA
## 3302    NA     2      3         NA      NA        NA        NA
## 3303     6    11      8         NA      NA        NA        NA
## 3304    NA    NA      2         NA      NA        NA        NA
## 3305    NA    NA     NA         NA      NA        NA        NA
## 3306     6     6     17         NA      NA        NA        NA
## 3307     1    NA      2         NA      NA        NA        NA
## 3308     2     4      2         NA      NA        NA        NA
## 3309     6    NA      6         NA      NA        NA        NA
## 3310    16    24     26         NA      NA        NA        NA
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312    16    13     16         NA      NA        NA        NA
## 3313    12    22     22         NA      NA        NA        NA
## 3314     6     8      6         NA      NA        NA        NA
## 3315    11    11      8         NA      NA        NA        NA
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     4     4     14         NA      NA        NA        NA
## 3318    63   102     77         NA      NA        NA        NA
## 3319     4     6     10         NA      NA        NA        NA
## 3320    NA     1      2         NA      NA        NA        NA
## 3321    19    34     27         NA      NA        NA        NA
## 3322    51    93     87         NA      NA        NA        NA
## 3323     3    NA     NA         NA      NA        NA        NA
## 3324     2    NA      2         NA      NA        NA        NA
## 3325     2    NA      2         NA      NA        NA        NA
## 3326    NA     1      1         NA      NA        NA        NA
## 3327     1     3      1         NA      NA        NA        NA
## 3328     2     1      1         NA      NA        NA        NA
## 3329     1     3      1         NA      NA        NA        NA
## 3330     1     1      2         NA      NA        NA        NA
## 3331     3     8      5         NA      NA        NA        NA
## 3332     2     7      5         NA      NA        NA        NA
## 3333    NA    NA     NA         NA      NA        NA        NA
## 3334     1     1      1         NA      NA        NA        NA
## 3335    NA     0     NA         NA      NA        NA        NA
## 3336    NA     1     NA         NA      NA        NA        NA
## 3337    NA     1      1         NA      NA        NA        NA
## 3338     0     0      1         NA      NA        NA        NA
## 3339     2     2      1         NA      NA        NA        NA
## 3340    NA    NA      1         NA      NA        NA        NA
## 3341     2     1      1         NA      NA        NA        NA
## 3342     1     1      1         NA      NA        NA        NA
## 3343     3     0      1         NA      NA        NA        NA
## 3344     3     3      1         NA      NA        NA        NA
## 3345     1     2      2         NA      NA        NA        NA
## 3346     1    NA     NA         NA      NA        NA        NA
## 3347    NA     2     NA         NA      NA        NA        NA
## 3348     6     8      8         NA      NA        NA        NA
## 3349     1     1      1         NA      NA        NA        NA
## 3350    NA    NA      0         NA      NA        NA        NA
## 3351     2     2      4         NA      NA        NA        NA
## 3352     3     2      3         NA      NA        NA        NA
## 3353     0     0     NA         NA      NA        NA        NA
## 3354    NA     3      8         NA      NA        NA        NA
## 3355    NA    NA     NA         NA      NA        NA        NA
## 3356     2     4      3         NA      NA        NA        NA
## 3357     0     0     NA         NA      NA        NA        NA
## 3358     4    NA      4         NA      NA        NA        NA
## 3359     1    NA     NA         NA      NA        NA        NA
## 3360     1     1      1         NA      NA        NA        NA
## 3361    NA    NA     NA         NA      NA        NA        NA
## 3362     1     1     NA         NA      NA        NA        NA
## 3363     1     1      1         NA      NA        NA        NA
## 3364     8     8     14         NA      NA        NA        NA
## 3365     2     4      8         NA      NA        NA        NA
## 3366    NA     1      3         NA      NA        NA        NA
## 3367     0     0     NA         NA      NA        NA        NA
## 3368     2     2      2         NA      NA        NA        NA
## 3369     2    NA     NA         NA      NA        NA        NA
## 3370     6     3      6         NA      NA        NA        NA
## 3371     1     1      1         NA      NA        NA        NA
## 3372    NA    NA     NA         NA      NA        NA        NA
## 3373     4     8      6         NA      NA        NA        NA
## 3374     3     3      3         NA      NA        NA        NA
## 3375     0     0     NA         NA      NA        NA        NA
## 3376    NA    NA     NA         NA      NA        NA        NA
## 3377    NA    NA     NA         NA      NA        NA        NA
## 3378     3     3      4         NA      NA        NA        NA
## 3379     1     1      1         NA      NA        NA        NA
## 3380     2     4     NA         NA      NA        NA        NA
## 3381     3     6     NA         NA      NA        NA        NA
## 3382    NA    NA     NA         NA      NA        NA        NA
## 3383    NA    NA     NA         NA      NA        NA        NA
## 3384    NA     0      0         NA      NA        NA        NA
## 3385     2     2      2         NA      NA        NA        NA
## 3386    NA    NA      0         NA      NA        NA        NA
## 3387    NA    NA      0         NA      NA        NA        NA
## 3388    NA    NA     NA         NA      NA        NA        NA
## 3389     3     3      8         NA      NA        NA        NA
## 3390    NA    NA     NA         NA      NA        NA        NA
## 3391     1     1      1         NA      NA        NA        NA
## 3392     4     8      8         NA      NA        NA        NA
## 3393    NA    NA     NA         NA      NA        NA        NA
## 3394    NA    NA     NA         NA      NA        NA        NA
## 3395    NA    NA     NA         NA      NA        NA        NA
## 3396    NA    NA     NA         NA      NA        NA        NA
## 3397    NA     6      6         NA      NA        NA        NA
## 3398    12     5     10         NA      NA        NA        NA
## 3399    NA    NA      2         NA      NA        NA        NA
## 3400    11    NA     NA         NA      NA        NA        NA
## 3401    18    NA     11         NA      NA        NA        NA
## 3402    35    21     28         NA      NA        NA        NA
## 3403     3     3      2         NA      NA        NA        NA
## 3404    13    15     17         NA      NA        NA        NA
## 3405    19    15     19         NA      NA        NA        NA
## 3406    NA    NA     NA         NA      NA        NA        NA
## 3407    NA     1      0         NA      NA        NA        NA
## 3408    NA    NA     NA         NA      NA        NA        NA
## 3409    NA    NA     NA         NA      NA        NA        NA
## 3410     5     3      4         NA      NA        NA        NA
## 3411    NA    NA     NA         NA      NA        NA        NA
## 3412    NA    NA     NA         NA      NA        NA        NA
## 3413    NA     1     NA         NA      NA        NA        NA
## 3414     1     3      2         NA      NA        NA        NA
## 3415     1    NA      1         NA      NA        NA        NA
## 3416     2     2      4         NA      NA        NA        NA
## 3417    NA     0      0         NA      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA    NA     NA         NA      NA        NA        NA
## 3420     6    NA     NA         NA      NA        NA        NA
## 3421     1    NA     NA         NA      NA        NA        NA
## 3422     2     1      2         NA      NA        NA        NA
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424     1    NA     NA         NA      NA        NA        NA
## 3425    NA    NA     NA         NA      NA        NA        NA
## 3426     3    NA     NA         NA      NA        NA        NA
## 3427     1    NA     NA         NA      NA        NA        NA
## 3428    NA    NA     NA         NA      NA        NA        NA
## 3429     6    NA     NA         NA      NA        NA        NA
## 3430     1    NA     NA         NA      NA        NA        NA
## 3431     6    NA      3         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     1     1      2         NA      NA        NA        NA
## 3434     4     3      2         NA      NA        NA        NA
## 3435    NA    NA      3         NA      NA        NA        NA
## 3436     2     1      5         NA      NA        NA        NA
## 3437     2     2      2         NA      NA        NA        NA
## 3438     3    10      3         NA      NA        NA        NA
## 3439    NA     3      3         NA      NA        NA        NA
## 3440    NA    NA     NA         NA      NA        NA        NA
## 3441    NA    NA     NA         NA      NA        NA        NA
## 3442     1    NA     NA         NA      NA        NA        NA
## 3443     1    NA      1         NA      NA        NA        NA
## 3444    NA     2     NA         NA      NA        NA        NA
## 3445    NA     3     NA         NA      NA        NA        NA
## 3446    NA    NA      1         NA      NA        NA        NA
## 3447    NA    NA      0         NA      NA        NA        NA
## 3448     0    NA     NA         NA      NA        NA        NA
## 3449     4     2      2         NA      NA        NA        NA
## 3450    NA    NA      4         NA      NA        NA        NA
## 3451    NA    NA      1         NA      NA        NA        NA
## 3452    NA     2     NA         NA      NA        NA        NA
## 3453     4     4      2         NA      NA        NA        NA
## 3454    NA    NA     NA         NA      NA        NA        NA
## 3455    NA    NA      3         NA      NA        NA        NA
## 3456    NA    NA      2         NA      NA        NA        NA
## 3457     5     3      3         NA      NA        NA        NA
## 3458    11    13     16         NA      NA        NA        NA
## 3459    13    13     25         NA      NA        NA        NA
## 3460     7     5     15         NA      NA        NA        NA
## 3461     3     6      6         NA      NA        NA        NA
## 3462     7    18     28         NA      NA        NA        NA
## 3463    32    49     95         NA      NA        NA        NA
## 3464     4     4      6         NA      NA        NA        NA
## 3465    NA    NA      4         NA      NA        NA        NA
## 3466     6     6     15         NA      NA        NA        NA
## 3467    25    36     49         NA      NA        NA        NA
## 3468    NA    NA     NA         NA      NA        NA        NA
## 3469    NA    NA     NA         NA      NA        NA        NA
## 3470     5     6      4         NA      NA        NA        NA
## 3471     3     3      3         NA      NA        NA        NA
## 3472    NA    NA      1         NA      NA        NA        NA
## 3473    NA    NA     NA         NA      NA        NA        NA
## 3474     2     1      3         NA      NA        NA        NA
## 3475    NA     0     NA         NA      NA        NA        NA
## 3476    NA     1     NA         NA      NA        NA        NA
## 3477    NA    NA      2         NA      NA        NA        NA
## 3478    NA    NA      0         NA      NA        NA        NA
## 3479    NA    NA     NA         NA      NA        NA        NA
## 3480     2     4      3         NA      NA        NA        NA
## 3481     1    NA      2         NA      NA        NA        NA
## 3482    NA    NA      1         NA      NA        NA        NA
## 3483     2     4     NA         NA      NA        NA        NA
## 3484    NA    NA      1         NA      NA        NA        NA
## 3485    NA    NA      1         NA      NA        NA        NA
## 3486    NA    NA     NA         NA      NA        NA        NA
## 3487    NA    NA      6         NA      NA        NA        NA
## 3488     4     4      2         NA      NA        NA        NA
## 3489    NA    NA     NA         NA      NA        NA        NA
## 3490    NA    NA      2         NA      NA        NA        NA
## 3491     1    NA      2         NA      NA        NA        NA
## 3492    NA    NA      3         NA      NA        NA        NA
## 3493    NA    NA      2         NA      NA        NA        NA
## 3494    NA    NA      1         NA      NA        NA        NA
## 3495     1    NA     NA         NA      NA        NA        NA
## 3496    NA    NA      2         NA      NA        NA        NA
## 3497    NA    NA      1         NA      NA        NA        NA
## 3498    NA    NA     NA         NA      NA        NA        NA
## 3499    NA     2     NA         NA      NA        NA        NA
## 3500     6     6      6         NA      NA        NA        NA
## 3501    NA    NA      2         NA      NA        NA        NA
## 3502    NA    NA      1         NA      NA        NA        NA
## 3503    NA     3      6         NA      NA        NA        NA
## 3504     4    NA      2         NA      NA        NA        NA
## 3505    NA    NA     NA         NA      NA        NA        NA
## 3506    NA    NA      2         NA      NA        NA        NA
## 3507    NA    NA      2         NA      NA        NA        NA
## 3508     1     1      6         NA      NA        NA        NA
## 3509     1     1      1         NA      NA        NA        NA
## 3510    13    13      8         NA      NA        NA        NA
## 3511    19    19     13         NA      NA        NA        NA
## 3512     6    10      5         NA      NA        NA        NA
## 3513     1     2      1         NA      NA        NA        NA
## 3514     1     1      1         NA      NA        NA        NA
## 3515     2     1      3         NA      NA        NA        NA
## 3516     0     0      1         NA      NA        NA        NA
## 3517     2     3      1         NA      NA        NA        NA
## 3518     2     2      3         NA      NA        NA        NA
## 3519     0     1      1         NA      NA        NA        NA
## 3520     1     1      1         NA      NA        NA        NA
## 3521     1    NA     NA         NA      NA        NA        NA
## 3522     3     6      3         NA      NA        NA        NA
## 3523    NA     0     NA         NA      NA        NA        NA
## 3524     8    11      8         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526     6     8      4         NA      NA        NA        NA
## 3527    NA    NA     NA         NA      NA        NA        NA
## 3528     1     1     NA         NA      NA        NA        NA
## 3529     2     2      2         NA      NA        NA        NA
## 3530     6     5      3         NA      NA        NA        NA
## 3531    NA    NA     NA         NA      NA        NA        NA
## 3532    NA    NA     NA         NA      NA        NA        NA
## 3533    NA     8      8         NA      NA        NA        NA
## 3534    24    29     26         NA      NA        NA        NA
## 3535    22    13     13         NA      NA        NA        NA
## 3536     2     5      2         NA      NA        NA        NA
## 3537     6     3      3         NA      NA        NA        NA
## 3538     4     4     11         NA      NA        NA        NA
## 3539   109    99     88         NA      NA        NA        NA
## 3540     5     3      3         NA      NA        NA        NA
## 3541    19    25     21         NA      NA        NA        NA
## 3542    87    74     66         NA      NA        NA        NA
## 3543    NA    NA     NA         NA      NA        NA        NA
## 3544     4     4      2         NA      NA        NA        NA
## 3545     3     3      2         NA      NA        NA        NA
## 3546     1     1      1         NA      NA        NA        NA
## 3547     1     1      1         NA      NA        NA        NA
## 3548     1     1      1         NA      NA        NA        NA
## 3549     3     3      2         NA      NA        NA        NA
## 3550    NA     0      0         NA      NA        NA        NA
## 3551     3     2      1         NA      NA        NA        NA
## 3552     0     1      0         NA      NA        NA        NA
## 3553     1     2     NA         NA      NA        NA        NA
## 3554    NA    NA      1         NA      NA        NA        NA
## 3555    NA    NA     NA         NA      NA        NA        NA
## 3556     0     1      2         NA      NA        NA        NA
## 3557     4     4      2         NA      NA        NA        NA
## 3558     2     2      1         NA      NA        NA        NA
## 3559     1     1      1         NA      NA        NA        NA
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561     2     2      2         NA      NA        NA        NA
## 3562     3    NA     NA         NA      NA        NA        NA
## 3563    NA    NA     NA         NA      NA        NA        NA
## 3564     1     2     NA         NA      NA        NA        NA
## 3565     1     2     NA         NA      NA        NA        NA
## 3566     1     1      1         NA      NA        NA        NA
## 3567    NA     1      1         NA      NA        NA        NA
## 3568     1    NA     NA         NA      NA        NA        NA
## 3569     1    NA     NA         NA      NA        NA        NA
## 3570     1    NA     NA         NA      NA        NA        NA
## 3571     1    NA     NA         NA      NA        NA        NA
## 3572     1    NA     NA         NA      NA        NA        NA
## 3573    NA    NA     NA         NA      NA        NA        NA
## 3574    NA     2      0         NA      NA        NA        NA
## 3575    NA    NA      2         NA      NA        NA        NA
## 3576    NA     1     NA         NA      NA        NA        NA
## 3577     2     2     NA         NA      NA        NA        NA
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579     2     2      0         NA      NA        NA        NA
## 3580     1     2      2         NA      NA        NA        NA
## 3581     1     1      1         NA      NA        NA        NA
## 3582    NA    NA     NA         NA      NA        NA        NA
## 3583    NA    NA     NA         NA      NA        NA        NA
## 3584     1     3      4         NA      NA        NA        NA
## 3585     2    NA     NA         NA      NA        NA        NA
## 3586     1     1     NA         NA      NA        NA        NA
## 3587     2     8      4         NA      NA        NA        NA
## 3588     3    13      6         NA      NA        NA        NA
## 3589    NA    NA     NA         NA      NA        NA        NA
## 3590     3    10     NA         NA      NA        NA        NA
## 3591     2     1      1         NA      NA        NA        NA
## 3592     1     1      1         NA      NA        NA        NA
## 3593    NA    NA      1         NA      NA        NA        NA
## 3594    NA     1      1         NA      NA        NA        NA
## 3595     1     1      1         NA      NA        NA        NA
## 3596    NA    NA     NA         NA      NA        NA        NA
## 3597    NA    NA      2         NA      NA        NA        NA
## 3598     3     3      3         NA      NA        NA        NA
## 3599     0     0     NA         NA      NA        NA        NA
## 3600     0    10      0         NA      NA        NA        NA
## 3601    NA    NA      1         NA      NA        NA        NA
## 3602    NA    NA      1         NA      NA        NA        NA
## 3603     0     1      1         NA      NA        NA        NA
## 3604    NA    NA     NA         NA      NA        NA        NA
## 3605     2     4      4         NA      NA        NA        NA
## 3606     3    NA     NA         NA      NA        NA        NA
## 3607     7     4     11         NA      NA        NA        NA
## 3608     1     2      1         NA      NA        NA        NA
## 3609     6     8      8         NA      NA        NA        NA
## 3610     3    NA     NA         NA      NA        NA        NA
## 3611    NA    NA      1         NA      NA        NA        NA
## 3612    NA    NA     NA         NA      NA        NA        NA
## 3613    11    14      6         NA      NA        NA        NA
## 3614     2     1      2         NA      NA        NA        NA
## 3615     3     4      4         NA      NA        NA        NA
## 3616     4     4      2         NA      NA        NA        NA
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618    NA    NA     NA         NA      NA        NA        NA
## 3619    NA    19     11         NA      NA        NA        NA
## 3620    13     8     13         NA      NA        NA        NA
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     6     3      3         NA      NA        NA        NA
## 3623     5    10      7         NA      NA        NA        NA
## 3624     6     8      6         NA      NA        NA        NA
## 3625    32    21     18         NA      NA        NA        NA
## 3626    21    25     25         NA      NA        NA        NA
## 3627     3     7      7         NA      NA        NA        NA
## 3628    NA    NA      2         NA      NA        NA        NA
## 3629    15    19     19         NA      NA        NA        NA
## 3630    36    34     42         NA      NA        NA        NA
## 3631    NA    NA      1         NA      NA        NA        NA
## 3632     8    NA     NA         NA      NA        NA        NA
## 3633     1     2      1         NA      NA        NA        NA
## 3634     2     2      2         NA      NA        NA        NA
## 3635     1     1      1         NA      NA        NA        NA
## 3636     2     1      1         NA      NA        NA        NA
## 3637     1     1      1         NA      NA        NA        NA
## 3638     1    NA      0         NA      NA        NA        NA
## 3639     1     4      3         NA      NA        NA        NA
## 3640     2     2      2         NA      NA        NA        NA
## 3641    NA     0     NA         NA      NA        NA        NA
## 3642     2     1      2         NA      NA        NA        NA
## 3643     0     0      0         NA      NA        NA        NA
## 3644     2     1      2         NA      NA        NA        NA
## 3645    NA     1      2         NA      NA        NA        NA
## 3646    NA     1     NA         NA      NA        NA        NA
## 3647     2    26      1         NA      NA        NA        NA
## 3648    NA    NA     NA         NA      NA        NA        NA
## 3649     1     1      1         NA      NA        NA        NA
## 3650     1     1      1         NA      NA        NA        NA
## 3651    NA    NA     NA         NA      NA        NA        NA
## 3652    NA    NA     NA         NA      NA        NA        NA
## 3653     2    NA     NA         NA      NA        NA        NA
## 3654    NA     3     NA         NA      NA        NA        NA
## 3655    NA     1      1         NA      NA        NA        NA
## 3656    NA    NA      1         NA      NA        NA        NA
## 3657     2     2      1         NA      NA        NA        NA
## 3658     1     3      2         NA      NA        NA        NA
## 3659    NA     3     NA         NA      NA        NA        NA
## 3660     2     2      1         NA      NA        NA        NA
## 3661     1     1      1         NA      NA        NA        NA
## 3662     1    NA      1         NA      NA        NA        NA
## 3663    NA    NA     NA         NA      NA        NA        NA
## 3664    NA    NA     NA         NA      NA        NA        NA
## 3665     2     2      3         NA      NA        NA        NA
## 3666     1    NA     NA         NA      NA        NA        NA
## 3667     1     2      1         NA      NA        NA        NA
## 3668    NA     3      3         NA      NA        NA        NA
## 3669    NA    NA     NA         NA      NA        NA        NA
## 3670     1     1      1         NA      NA        NA        NA
## 3671    NA     2      2         NA      NA        NA        NA
## 3672     2    NA     NA         NA      NA        NA        NA
## 3673     3     6     NA         NA      NA        NA        NA
## 3674     1     1      1         NA      NA        NA        NA
## 3675     1     1      1         NA      NA        NA        NA
## 3676     2     2      3         NA      NA        NA        NA
## 3677     5     5      4         NA      NA        NA        NA
## 3678    NA    NA     NA         NA      NA        NA        NA
## 3679     5     4      4         NA      NA        NA        NA
## 3680    NA    NA     NA         NA      NA        NA        NA
## 3681    NA    NA     NA         NA      NA        NA        NA
## 3682     1     1      1         NA      NA        NA        NA
## 3683     8     4      6         NA      NA        NA        NA
## 3684    16     6     16         NA      NA        NA        NA
## 3685     5     3      3         NA      NA        NA        NA
## 3686     1     1      1         NA      NA        NA        NA
## 3687     1     1      1         NA      NA        NA        NA
## 3688    NA    NA     NA         NA      NA        NA        NA
## 3689     1     1      1         NA      NA        NA        NA
## 3690    NA    NA     NA         NA      NA        NA        NA
## 3691     2     2      4         NA      NA        NA        NA
## 3692     3     3      3         NA      NA        NA        NA
## 3693     0     0      1         NA      NA        NA        NA
## 3694    NA    NA     NA         NA      NA        NA        NA
## 3695     6     2      6         NA      NA        NA        NA
## 3696     3     5      5         NA      NA        NA        NA
## 3697    NA     4      7         NA      NA        NA        NA
## 3698     3     1      3         NA      NA        NA        NA
## 3699     2     4      2         NA      NA        NA        NA
## 3700    NA     2     NA         NA      NA        NA        NA
## 3701     3    NA     NA         NA      NA        NA        NA
## 3702    NA    NA     NA         NA      NA        NA        NA
## 3703     1    NA     NA         NA      NA        NA        NA
## 3704     2     2      2         NA      NA        NA        NA
## 3705    NA    15     19         NA      NA        NA        NA
## 3706     3     3     NA         NA      NA        NA        NA
## 3707    NA    NA     NA         NA      NA        NA        NA
## 3708     6    10      6         NA      NA        NA        NA
## 3709    35    30     30         NA      NA        NA        NA
## 3710     5     3      3         NA      NA        NA        NA
## 3711    NA     2      2         NA      NA        NA        NA
## 3712    18    11     14         NA      NA        NA        NA
## 3713    95    77     77         NA      NA        NA        NA
## 3714     5     3      5         NA      NA        NA        NA
## 3715    11     4      4         NA      NA        NA        NA
## 3716    13    19     25         NA      NA        NA        NA
## 3717    63    44     42         NA      NA        NA        NA
## 3718     1     2      2         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720    NA     2      2         NA      NA        NA        NA
## 3721     1     1      1         NA      NA        NA        NA
## 3722     1     1      1         NA      NA        NA        NA
## 3723    NA     2     NA         NA      NA        NA        NA
## 3724     0     0      0         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726     7     6      7         NA      NA        NA        NA
## 3727     3    NA      1         NA      NA        NA        NA
## 3728    NA     2     NA         NA      NA        NA        NA
## 3729    NA     1      1         NA      NA        NA        NA
## 3730    NA    NA     NA         NA      NA        NA        NA
## 3731     3     2      1         NA      NA        NA        NA
## 3732    NA    NA     NA         NA      NA        NA        NA
## 3733     2     0      1         NA      NA        NA        NA
## 3734     1     1      2         NA      NA        NA        NA
## 3735     1     1      1         NA      NA        NA        NA
## 3736    NA    NA     NA         NA      NA        NA        NA
## 3737    NA     2     NA         NA      NA        NA        NA
## 3738    NA     1     NA         NA      NA        NA        NA
## 3739    NA    NA     NA         NA      NA        NA        NA
## 3740     1     1      1         NA      NA        NA        NA
## 3741     2    NA      2         NA      NA        NA        NA
## 3742     3     1      3         NA      NA        NA        NA
## 3743     0     0      0         NA      NA        NA        NA
## 3744    NA     1     NA         NA      NA        NA        NA
## 3745     0     0      0         NA      NA        NA        NA
## 3746     1    NA     NA         NA      NA        NA        NA
## 3747    NA    NA     NA         NA      NA        NA        NA
## 3748    NA    NA     NA         NA      NA        NA        NA
## 3749     1    NA     NA         NA      NA        NA        NA
## 3750    NA     1      1         NA      NA        NA        NA
## 3751     1     1      1         NA      NA        NA        NA
## 3752    NA     1     NA         NA      NA        NA        NA
## 3753    NA    NA     NA         NA      NA        NA        NA
## 3754    NA     2      2         NA      NA        NA        NA
## 3755     1    NA      3         NA      NA        NA        NA
## 3756     0     0      0         NA      NA        NA        NA
## 3757     8     2      4         NA      NA        NA        NA
## 3758     3     1      3         NA      NA        NA        NA
## 3759     4     4     NA         NA      NA        NA        NA
## 3760    NA     1      1         NA      NA        NA        NA
## 3761    NA    NA     NA         NA      NA        NA        NA
## 3762     2     2      4         NA      NA        NA        NA
## 3763     4     4      6         NA      NA        NA        NA
## 3764     0     0      0         NA      NA        NA        NA
## 3765     1     1      1         NA      NA        NA        NA
## 3766    NA    NA     NA         NA      NA        NA        NA
## 3767     2     1      4         NA      NA        NA        NA
## 3768     2     4      4         NA      NA        NA        NA
## 3769    10     6     13         NA      NA        NA        NA
## 3770     5    NA     NA         NA      NA        NA        NA
## 3771    NA     1     NA         NA      NA        NA        NA
## 3772    NA    NA     NA         NA      NA        NA        NA
## 3773    NA     0     NA         NA      NA        NA        NA
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775    NA    NA     NA         NA      NA        NA        NA
## 3776    NA     0     NA         NA      NA        NA        NA
## 3777     2     4      2         NA      NA        NA        NA
## 3778    NA    NA      3         NA      NA        NA        NA
## 3779     4    11      7         NA      NA        NA        NA
## 3780    NA     1      1         NA      NA        NA        NA
## 3781     2     4      4         NA      NA        NA        NA
## 3782    NA    NA     NA         NA      NA        NA        NA
## 3783    NA     3     NA         NA      NA        NA        NA
## 3784     3     2      2         NA      NA        NA        NA
## 3785    NA    NA     NA         NA      NA        NA        NA
## 3786    11    11      8         NA      NA        NA        NA
## 3787    16    10     13         NA      NA        NA        NA
## 3788    NA    NA     NA         NA      NA        NA        NA
## 3789     3     5      5         NA      NA        NA        NA
## 3790    11    25     11         NA      NA        NA        NA
## 3791    28    37     32         NA      NA        NA        NA
## 3792     3     5      6         NA      NA        NA        NA
## 3793     8    13     13         NA      NA        NA        NA
## 3794    61    51     38         NA      NA        NA        NA
## 3795     5    NA     NA         NA      NA        NA        NA
## 3796     5     4      3         NA      NA        NA        NA
## 3797    NA    NA     NA         NA      NA        NA        NA
## 3798     1     1     NA         NA      NA        NA        NA
## 3799    NA    NA     NA         NA      NA        NA        NA
## 3800    NA    NA     NA         NA      NA        NA        NA
## 3801     1     2      2         NA      NA        NA        NA
## 3802    NA    NA     NA         NA      NA        NA        NA
## 3803     1     2      1         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806    NA    NA     NA         NA      NA        NA        NA
## 3807     4     1      1         NA      NA        NA        NA
## 3808     0     0      0         NA      NA        NA        NA
## 3809     1     1      1         NA      NA        NA        NA
## 3810     1     1      1         NA      NA        NA        NA
## 3811     1     1      1         NA      NA        NA        NA
## 3812     1     1      1         NA      NA        NA        NA
## 3813    NA     1     NA         NA      NA        NA        NA
## 3814     1    NA     NA         NA      NA        NA        NA
## 3815    NA    NA     NA         NA      NA        NA        NA
## 3816    NA    NA     NA         NA      NA        NA        NA
## 3817     1     1      1         NA      NA        NA        NA
## 3818     1    NA     NA         NA      NA        NA        NA
## 3819    NA     1      1         NA      NA        NA        NA
## 3820     1     1      1         NA      NA        NA        NA
## 3821    NA    NA     NA         NA      NA        NA        NA
## 3822     1     1      1         NA      NA        NA        NA
## 3823     4     1      4         NA      NA        NA        NA
## 3824    NA    NA     NA         NA      NA        NA        NA
## 3825     0     0      0         NA      NA        NA        NA
## 3826     1     1      1         NA      NA        NA        NA
## 3827     1     1      1         NA      NA        NA        NA
## 3828     1     1      1         NA      NA        NA        NA
## 3829     1     1     NA         NA      NA        NA        NA
## 3830     2     2     NA         NA      NA        NA        NA
## 3831     3     3     NA         NA      NA        NA        NA
## 3832    NA     3     NA         NA      NA        NA        NA
## 3833    NA    NA     NA         NA      NA        NA        NA
## 3834    NA    NA     NA         NA      NA        NA        NA
## 3835    NA    NA     NA         NA      NA        NA        NA
## 3836    NA    NA     NA         NA      NA        NA        NA
## 3837    NA    NA     NA         NA      NA        NA        NA
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA      NA        NA        NA
## 3840     2    NA     NA         NA      NA        NA        NA
## 3841    NA    NA     NA         NA      NA        NA        NA
## 3842    NA    NA     NA         NA      NA        NA        NA
## 3843    NA    NA     NA         NA      NA        NA        NA
## 3844    NA    NA     NA         NA      NA        NA        NA
## 3845    NA    NA     NA         NA      NA        NA        NA
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     1    NA     NA         NA      NA        NA        NA
## 3848    NA    NA     NA         NA      NA        NA        NA
## 3849     3    NA     NA         NA      NA        NA        NA
## 3850    NA    NA     NA         NA      NA        NA        NA
## 3851    NA    NA     NA         NA      NA        NA        NA
## 3852     2    NA     NA         NA      NA        NA        NA
## 3853    NA    NA     NA         NA      NA        NA        NA
## 3854    NA    NA     NA         NA      NA        NA        NA
## 3855     1     1     NA         NA      NA        NA        NA
## 3856    NA    NA     NA         NA      NA        NA        NA
## 3857     8    NA     NA         NA      NA        NA        NA
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA        NA        NA
## 3861    NA    NA     NA         NA      NA        NA        NA
## 3862    NA    NA     NA         NA      NA        NA        NA
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864    NA    NA     NA         NA      NA        NA        NA
## 3865    NA    NA     NA         NA      NA        NA        NA
## 3866    NA    NA     NA         NA      NA        NA        NA
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA         NA      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA        NA        NA
## 3871     2    NA     NA         NA      NA        NA        NA
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873    NA    NA     NA         NA      NA        NA        NA
## 3874    NA    NA     NA         NA      NA        NA        NA
## 3875    NA    NA     NA         NA      NA        NA        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1    NA     NA         NA      NA        NA        NA
## 3878    NA    NA     NA         NA      NA        NA        NA
## 3879     1    NA     NA         NA      NA        NA        NA
## 3880    NA    NA     NA         NA      NA        NA        NA
## 3881    NA    NA     NA         NA      NA        NA        NA
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA     NA         NA      NA        NA        NA
## 3884     1     1     NA         NA      NA        NA        NA
## 3885    NA    NA     NA         NA      NA        NA        NA
## 3886    NA    NA     NA         NA      NA        NA        NA
## 3887     1    NA     NA         NA      NA        NA        NA
## 3888    NA    NA     NA         NA      NA        NA        NA
## 3889    NA    NA     NA         NA      NA        NA        NA
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA         NA      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA    NA     NA         NA      NA        NA        NA
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA      NA        NA        NA
## 3896    NA    NA     NA         NA      NA        NA        NA
## 3897    NA    NA     NA         NA      NA        NA        NA
## 3898    NA    NA     NA         NA      NA        NA        NA
## 3899    NA    NA     NA         NA      NA        NA        NA
## 3900    NA    NA     NA         NA      NA        NA        NA
## 3901    NA     4     NA         NA      NA        NA        NA
## 3902    NA     6     NA         NA      NA        NA        NA
## 3903    NA     5     NA         NA      NA        NA        NA
## 3904    NA    NA     NA         NA      NA        NA        NA
## 3905    NA    NA     NA         NA      NA        NA        NA
## 3906    NA    NA     NA         NA      NA        NA        NA
## 3907    NA    NA      2         NA      NA        NA        NA
## 3908     6     5      5         NA      NA        NA        NA
## 3909     1     3      2         NA      NA        NA        NA
## 3910     2     2      2         NA      NA        NA        NA
## 3911    NA    NA     NA         NA      NA        NA        NA
## 3912    NA    NA     NA         NA      NA        NA        NA
## 3913     2    NA      1         NA      NA        NA        NA
## 3914     3     5      3         NA      NA        NA        NA
## 3915    NA    NA     NA         NA      NA        NA        NA
## 3916    NA    NA      2         NA      NA        NA        NA
## 3917     6     5      3         NA      NA        NA        NA
## 3918     4     4      4         NA      NA        NA        NA
## 3919    11    14     11         NA      NA        NA        NA
## 3920     4     4      4         NA      NA        NA        NA
## 3921     8     6     11         NA      NA        NA        NA
## 3922    34    30     44         NA      NA        NA        NA
## 3923    NA    NA     NA         NA      NA        NA        NA
## 3924     2    NA      2         NA      NA        NA        NA
## 3925     0    NA     NA         NA      NA        NA        NA
## 3926    NA    NA      0         NA      NA        NA        NA
## 3927    NA     1     NA         NA      NA        NA        NA
## 3928     0     0      0         NA      NA        NA        NA
## 3929    NA    NA     NA         NA      NA        NA        NA
## 3930    NA    NA     NA         NA      NA        NA        NA
## 3931    NA    NA     NA         NA      NA        NA        NA
## 3932     0     4      1         NA      NA        NA        NA
## 3933    NA    NA     NA         NA      NA        NA        NA
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA    NA     NA         NA      NA        NA        NA
## 3936    NA    NA      2         NA      NA        NA        NA
## 3937    NA    NA      2         NA      NA        NA        NA
## 3938    NA    NA     NA         NA      NA        NA        NA
## 3939    NA     2     NA         NA      NA        NA        NA
## 3940    NA    NA     NA         NA      NA        NA        NA
## 3941     2     2     NA         NA      NA        NA        NA
## 3942     2     6     NA         NA      NA        NA        NA
## 3943     3    10     NA         NA      NA        NA        NA
## 3944    NA    NA     NA         NA      NA        NA        NA
## 3945    NA     8     NA         NA      NA        NA        NA
## 3946     4     2     NA         NA      NA        NA        NA
## 3947    NA    NA     NA         NA      NA        NA        NA
## 3948    NA    NA      1         NA      NA        NA        NA
## 3949     1     1     NA         NA      NA        NA        NA
## 3950    NA    NA     NA         NA      NA        NA        NA
## 3951     2     1     NA         NA      NA        NA        NA
## 3952     1     1     NA         NA      NA        NA        NA
## 3953    NA    NA     NA         NA      NA        NA        NA
## 3954    NA     0      0         NA      NA        NA        NA
## 3955    NA    NA      0         NA      NA        NA        NA
## 3956     4     4     NA         NA      NA        NA        NA
## 3957    NA    NA      2         NA      NA        NA        NA
## 3958     4     2     NA         NA      NA        NA        NA
## 3959    NA    NA     NA         NA      NA        NA        NA
## 3960    NA     1     NA         NA      NA        NA        NA
## 3961     1    NA     NA         NA      NA        NA        NA
## 3962    NA     6      4         NA      NA        NA        NA
## 3963     8     5     NA         NA      NA        NA        NA
## 3964    10     6     NA         NA      NA        NA        NA
## 3965     2     2     NA         NA      NA        NA        NA
## 3966     3     5      2         NA      NA        NA        NA
## 3967    11     7     NA         NA      NA        NA        NA
## 3968    77    49     NA         NA      NA        NA        NA
## 3969     4     1      1         NA      NA        NA        NA
## 3970     4     6     NA         NA      NA        NA        NA
## 3971    34    23      6         NA      NA        NA        NA
## 3972    NA    NA     NA         NA      NA        NA        NA
## 3973    NA     1     NA         NA      NA        NA        NA
## 3974     1     1     NA         NA      NA        NA        NA
## 3975     1     1     NA         NA      NA        NA        NA
## 3976     2     3      0         NA      NA        NA        NA
## 3977     2     2     NA         NA      NA        NA        NA
## 3978    NA     0     NA         NA      NA        NA        NA
## 3979    NA    NA     NA         NA      NA        NA        NA
## 3980     1    NA      2         NA      NA        NA        NA
## 3981     1    NA      3         NA      NA        NA        NA
## 3982     0     0     NA         NA      NA        NA        NA
## 3983     1     1     NA         NA      NA        NA        NA
## 3984     1     1     NA         NA      NA        NA        NA
## 3985    NA    NA      2         NA      NA        NA        NA
## 3986     6     6     NA         NA      NA        NA        NA
## 3987    NA    NA     NA         NA      NA        NA        NA
## 3988    NA    NA     NA         NA      NA        NA        NA
## 3989     1     1     NA         NA      NA        NA        NA
## 3990     2     1     NA         NA      NA        NA        NA
## 3991    NA    NA     NA         NA      NA        NA        NA
## 3992     1     1     NA         NA      NA        NA        NA
## 3993    NA    NA     NA         NA      NA        NA        NA
## 3994    NA    NA     NA         NA      NA        NA        NA
## 3995    NA    NA     NA         NA      NA        NA        NA
## 3996     1     1     NA         NA      NA        NA        NA
## 3997     1     1     NA         NA      NA        NA        NA
## 3998    NA     2     NA         NA      NA        NA        NA
## 3999    NA     2      2         NA      NA        NA        NA
##  [ reached 'max' / getOption("max.print") -- omitted 37334 rows ]

Ordenar la base_de_datos por Cedi, Marca y Presentación.

arrange <- arrange(base_de_datos, CEDI, Marca, Presentacion)
arrange
##          ID Year  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1    184065 2018  Territorio Sub Territorio         CEDI      NA Nombre
## 2    200110 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3    200224 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 4    200461 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 5    200576 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 6    200682 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 7    200783 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 8    200968 2018 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 9    201041 2018 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 10   201313 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 11   201415 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 12   201520 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 13   201625 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 14   201751 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 15   201865 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 16   201985 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 17   202101 2018 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 18   202268 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 19   202356 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 20   202474 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 21   202608 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 22   202725 2018 Guadalajara        Belenes Suc. Belenes    9492  JOEL 
## 23   202809 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 24   202923 2018 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 25   203027 2018 Guadalajara        Belenes Suc. Belenes    9591  ABARR
## 26   203103 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 27   203208 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 28   203408 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 29   203520 2018 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 30   203625 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 31   203728 2018 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 32   203811 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 33   203900 2018 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 34   204008 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 35   204223 2018 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 36   204324 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 37   204425 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 38   204948 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 39   205054 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 40   205159 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 41   205278 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 42   205381 2018 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 43   205475 2018 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 44   205581 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 45   205802 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 46   205913 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 47   206111 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 48   206246 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 49   206347 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 50   206568 2018 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 51   206661 2018 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 52   206791 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 53   206899 2018 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 54   207015 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 55   207122 2018 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 56   207210 2018 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 57   207304 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 58   207428 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 59   207683 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 60   207799 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 61   207886 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 62   207991 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 63   208096 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 64   208214 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 65   208304 2018 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 66   208409 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 67   208517 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 68   208632 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 69   208735 2018 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 70   208810 2018 Guadalajara        Belenes Suc. Belenes    1428  VINOS
## 71   208869 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 72   208979 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 73   209095 2018 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 74   209289 2018 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 75   209407 2018 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 76   209567 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 77   209683 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 78   209785 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 79   209902 2018 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 80   210001 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 81   210115 2018 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 82   210329 2018 Guadalajara        Belenes Suc. Belenes    1897  ABARR
## 83   210407 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 84   210521 2018 Guadalajara        Belenes Suc. Belenes    1927  ISMAE
## 85   210623 2018 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 86   210737 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 87   211017 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 88   211130 2018 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 89   211222 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 90   211485 2018 Guadalajara        Belenes Suc. Belenes    2456  ABARR
## 91   211563 2018 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 92   211744 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 93   211863 2018 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 94   211948 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 95   212082 2018 Guadalajara        Belenes Suc. Belenes    2759  JOSE 
## 96   212175 2018 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 97   212277 2018 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 98   212378 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 99   212489 2018 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 100  212574 2018 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 101  212661 2018 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 102  212770 2018 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 103  212844 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 104  212981 2018 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 105  213091 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 106  213180 2018 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 107  213284 2018 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 108  213565 2018 Guadalajara        Belenes Suc. Belenes    2516  JOSE 
## 109  213763 2018 Guadalajara        Belenes Suc. Belenes    2611  JESUS
## 110  213844 2018 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 111  213917 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 112  214028 2018 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 113  214201 2018 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 114  214339 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 115  243323 2018 Guadalajara        Belenes Suc. Belenes    7731  VINOS
## 116  243373 2018 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 117  243457 2018 Guadalajara        Belenes Suc. Belenes    7760  MARIC
## 118  243629 2018 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 119  243731 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 120  243819 2018 Guadalajara        Belenes Suc. Belenes    7809  MARIA
## 121  243842 2018 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 122  243972 2018 Guadalajara        Belenes Suc. Belenes    8074  MIGUE
## 123  244023 2018 Guadalajara        Belenes Suc. Belenes    8187  CREME
## 124  244075 2018 Guadalajara        Belenes Suc. Belenes    8190  GUSTA
## 125  244159 2018 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 126  244431 2018 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 127  244484 2018 Guadalajara        Belenes Suc. Belenes    8681  MARGA
## 128  244589 2018 Guadalajara        Belenes Suc. Belenes    8874  OFELI
## 129  244788 2018 Guadalajara        Belenes Suc. Belenes    8985  TERES
## 130  245044 2018 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 131  245183 2018 Guadalajara        Belenes Suc. Belenes    9102  RAFAE
## 132  245365 2018 Guadalajara        Belenes Suc. Belenes    9149  MARIA
## 133  245419 2018 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 134  245575 2018 Guadalajara        Belenes Suc. Belenes    9281  JUAN 
## 135  245624 2018 Guadalajara        Belenes Suc. Belenes    9338  CARME
## 136  245662 2018 Guadalajara        Belenes Suc. Belenes    9376  PATRI
## 137  245699 2018 Guadalajara        Belenes Suc. Belenes    9403  MARIA
## 138  245732 2018 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 139  245801 2018 Guadalajara        Belenes Suc. Belenes    9408  MARIA
## 140  245844 2018 Guadalajara        Belenes Suc. Belenes    9411  ESTHE
## 141  245876 2018 Guadalajara        Belenes Suc. Belenes    9415  EVELI
## 142  245935 2018 Guadalajara        Belenes Suc. Belenes    9432  MARIA
## 143  246018 2018 Guadalajara        Belenes Suc. Belenes    9448  JOSE 
## 144  246079 2018 Guadalajara        Belenes Suc. Belenes    9453  MARIA
## 145  246117 2018 Guadalajara        Belenes Suc. Belenes    9459  OBDUL
## 146  246147 2018 Guadalajara        Belenes Suc. Belenes    9478  MARIA
## 147  246209 2018 Guadalajara        Belenes Suc. Belenes    9486  ELISA
## 148  246264 2018 Guadalajara        Belenes Suc. Belenes    9500  RAFAE
## 149  246291 2018 Guadalajara        Belenes Suc. Belenes    9525  SARA 
## 150  246388 2018 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 151  246444 2018 Guadalajara        Belenes Suc. Belenes    9554  MARIA
## 152  246513 2018 Guadalajara        Belenes Suc. Belenes    9625  SILVI
## 153  246777 2018 Guadalajara        Belenes Suc. Belenes    9730  LETIC
## 154  246818 2018 Guadalajara        Belenes Suc. Belenes    9736  FELIC
## 155  246915 2018 Guadalajara        Belenes Suc. Belenes    9791  SILVI
## 156  246972 2018 Guadalajara        Belenes Suc. Belenes    9804  CARME
## 157  247093 2018 Guadalajara        Belenes Suc. Belenes    9835  EMILI
## 158  247144 2018 Guadalajara        Belenes Suc. Belenes    9858  MARGA
## 159  247158 2018 Guadalajara        Belenes Suc. Belenes    9862  MARIA
## 160  247258 2018 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 161  247282 2018 Guadalajara        Belenes Suc. Belenes    9937  MARIA
## 162  247299 2018 Guadalajara        Belenes Suc. Belenes    9954  ELIOD
## 163  247316 2018 Guadalajara        Belenes Suc. Belenes    9960  MARIA
## 164  247328 2018 Guadalajara        Belenes Suc. Belenes    9964  JOSE 
## 165  247361 2018 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 166  247455 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 167  247512 2018 Guadalajara        Belenes Suc. Belenes      73  MARIA
## 168  247618 2018 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 169  247678 2018 Guadalajara        Belenes Suc. Belenes     139  SILVI
## 170  247853 2018 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 171  247974 2018 Guadalajara        Belenes Suc. Belenes     193  CLAUD
## 172  248058 2018 Guadalajara        Belenes Suc. Belenes     212  JOSE 
## 173  248213 2018 Guadalajara        Belenes Suc. Belenes     285  ANA G
## 174  248322 2018 Guadalajara        Belenes Suc. Belenes     353  MARIA
## 175  248341 2018 Guadalajara        Belenes Suc. Belenes     356  MARIA
## 176  248387 2018 Guadalajara        Belenes Suc. Belenes     357  MARIA
## 177  248455 2018 Guadalajara        Belenes Suc. Belenes     409  JUANA
## 178  248474 2018 Guadalajara        Belenes Suc. Belenes     427  OLIVI
## 179  248557 2018 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 180  248656 2018 Guadalajara        Belenes Suc. Belenes     492  LUIS 
## 181  248807 2018 Guadalajara        Belenes Suc. Belenes     518  ABARR
## 182  248937 2018 Guadalajara        Belenes Suc. Belenes     527  SERGI
## 183  248964 2018 Guadalajara        Belenes Suc. Belenes     544  CLAUD
## 184  248990 2018 Guadalajara        Belenes Suc. Belenes     553  LILIA
## 185  249111 2018 Guadalajara        Belenes Suc. Belenes     591  ANA A
## 186  249150 2018 Guadalajara        Belenes Suc. Belenes     600  ABARR
## 187  249238 2018 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 188  249366 2018 Guadalajara        Belenes Suc. Belenes     694  XOCHI
## 189  249486 2018 Guadalajara        Belenes Suc. Belenes     730  ADALB
## 190  249546 2018 Guadalajara        Belenes Suc. Belenes     732  ANDRE
## 191  249608 2018 Guadalajara        Belenes Suc. Belenes     763  ROCIO
## 192  249746 2018 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 193  249882 2018 Guadalajara        Belenes Suc. Belenes     802  LUIS 
## 194  249984 2018 Guadalajara        Belenes Suc. Belenes     837  JOSEF
## 195  250060 2018 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 196  250081 2018 Guadalajara        Belenes Suc. Belenes     923  MARIA
## 197  250141 2018 Guadalajara        Belenes Suc. Belenes     933  JUANA
## 198  250169 2018 Guadalajara        Belenes Suc. Belenes     945  LUCIA
## 199  250250 2018 Guadalajara        Belenes Suc. Belenes     952  LICON
## 200  250331 2018 Guadalajara        Belenes Suc. Belenes     959  ROSA 
## 201  250362 2018 Guadalajara        Belenes Suc. Belenes     989  HOGAR
## 202  250507 2018 Guadalajara        Belenes Suc. Belenes    1014  ALEJA
## 203  250621 2018 Guadalajara        Belenes Suc. Belenes    1064  SOCOR
## 204  250761 2018 Guadalajara        Belenes Suc. Belenes    1118  MARIA
## 205  250801 2018 Guadalajara        Belenes Suc. Belenes    1123  MARIA
## 206  250835 2018 Guadalajara        Belenes Suc. Belenes    1156  TEODU
## 207  250938 2018 Guadalajara        Belenes Suc. Belenes    1166  JANET
## 208  250999 2018 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 209  251074 2018 Guadalajara        Belenes Suc. Belenes    1190  EVANG
## 210  251107 2018 Guadalajara        Belenes Suc. Belenes    1219  ANGEL
## 211  251187 2018 Guadalajara        Belenes Suc. Belenes    1267  MARIA
## 212  251299 2018 Guadalajara        Belenes Suc. Belenes    1316  MARIS
## 213  251427 2018 Guadalajara        Belenes Suc. Belenes    1351  JUAN 
## 214  251528 2018 Guadalajara        Belenes Suc. Belenes    1368  RAUL 
## 215  251586 2018 Guadalajara        Belenes Suc. Belenes    1411  ALICI
## 216  251702 2018 Guadalajara        Belenes Suc. Belenes    1433  EVARI
## 217  251786 2018 Guadalajara        Belenes Suc. Belenes    1456  MARIA
## 218  251872 2018 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 219  251991 2018 Guadalajara        Belenes Suc. Belenes    1542  RODOL
## 220  252062 2018 Guadalajara        Belenes Suc. Belenes    1671  LUIS 
## 221  252087 2018 Guadalajara        Belenes Suc. Belenes    1721  RAMON
## 222  252226 2018 Guadalajara        Belenes Suc. Belenes    1766  MA AG
## 223  252243 2018 Guadalajara        Belenes Suc. Belenes    1790  CESAR
## 224  252295 2018 Guadalajara        Belenes Suc. Belenes    1803  FARMA
## 225  252313 2018 Guadalajara        Belenes Suc. Belenes    1808  MARGA
## 226  252470 2018 Guadalajara        Belenes Suc. Belenes    1888  MIGUE
## 227  252574 2018 Guadalajara        Belenes Suc. Belenes    1914  ANTON
## 228  252602 2018 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 229  252645 2018 Guadalajara        Belenes Suc. Belenes    2001  MICHA
## 230  252686 2018 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 231  252824 2018 Guadalajara        Belenes Suc. Belenes    2053  JOSE 
## 232  252859 2018 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 233  252899 2018 Guadalajara        Belenes Suc. Belenes    2065  LOS P
## 234  252931 2018 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 235  252974 2018 Guadalajara        Belenes Suc. Belenes    2080  MARTH
## 236  253145 2018 Guadalajara        Belenes Suc. Belenes    2225  LUZ D
## 237  253283 2018 Guadalajara        Belenes Suc. Belenes    2252  ARTUR
## 238  253327 2018 Guadalajara        Belenes Suc. Belenes    2256  LA PR
## 239  253372 2018 Guadalajara        Belenes Suc. Belenes    2322  JOSE 
## 240  253437 2018 Guadalajara        Belenes Suc. Belenes    2336  MARIA
## 241  253519 2018 Guadalajara        Belenes Suc. Belenes    2359  JUANA
## 242  253605 2018 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 243  253630 2018 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 244  253690 2018 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 245  253802 2018 Guadalajara        Belenes Suc. Belenes    2430  ABARR
## 246  253853 2018 Guadalajara        Belenes Suc. Belenes    2445  JULIA
## 247  253955 2018 Guadalajara        Belenes Suc. Belenes    2489  MARIA
## 248  253991 2018 Guadalajara        Belenes Suc. Belenes    2504  ELPID
## 249  254092 2018 Guadalajara        Belenes Suc. Belenes    2546  MODEL
## 250  254157 2018 Guadalajara        Belenes Suc. Belenes    2561  MARIA
## 251  254197 2018 Guadalajara        Belenes Suc. Belenes    2578  JUAN 
## 252  254323 2018 Guadalajara        Belenes Suc. Belenes    2620  JAVIE
## 253  254356 2018 Guadalajara        Belenes Suc. Belenes    2625  JUAN 
## 254  254444 2018 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 255  254450 2018 Guadalajara        Belenes Suc. Belenes    2645  MARIA
## 256  254638 2018 Guadalajara        Belenes Suc. Belenes    2738  ELISA
## 257  254725 2018 Guadalajara        Belenes Suc. Belenes    2756  DE TE
## 258  254786 2018 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 259  254853 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 260  254991 2018 Guadalajara        Belenes Suc. Belenes    2788  ALBER
## 261  255043 2018 Guadalajara        Belenes Suc. Belenes    2805  NOHEM
## 262  255078 2018 Guadalajara        Belenes Suc. Belenes    2808  RAMIR
## 263  255336 2018 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 264  255387 2018 Guadalajara        Belenes Suc. Belenes    2918  ISABE
## 265  255463 2018 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 266  255528 2018 Guadalajara        Belenes Suc. Belenes    2960  ANTON
## 267  255620 2018 Guadalajara        Belenes Suc. Belenes    2972  ELENA
## 268  255644 2018 Guadalajara        Belenes Suc. Belenes    2974  NORMA
## 269  255734 2018 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 270  255847 2018 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 271  255885 2018 Guadalajara        Belenes Suc. Belenes    3066  FARMA
## 272  256133 2018 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 273  256315 2018 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 274  256457 2018 Guadalajara        Belenes Suc. Belenes    1056  ABARR
## 275  256582 2018 Guadalajara        Belenes Suc. Belenes    8597  CERVE
## 276  256753 2018 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 277  256830 2018 Guadalajara        Belenes Suc. Belenes    6614  ABARR
## 278  256865 2018 Guadalajara        Belenes Suc. Belenes    6633  ABARR
## 279  256918 2018 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 280  256951 2018 Guadalajara        Belenes Suc. Belenes    9562  VINOS
## 281  257248 2018 Guadalajara        Belenes Suc. Belenes    4841  LICOR
## 282  257369 2018 Guadalajara        Belenes Suc. Belenes    3279  ANTON
## 283  257443 2018 Guadalajara        Belenes Suc. Belenes    2523  GRACI
## 284  257471 2018 Guadalajara        Belenes Suc. Belenes    2530  MARIA
## 285  257679 2018 Guadalajara        Belenes Suc. Belenes    2623  LEONO
## 286  257716 2018 Guadalajara        Belenes Suc. Belenes    2667  FRANC
## 287  257728 2018 Guadalajara        Belenes Suc. Belenes    2668  CRIST
## 288  257751 2018 Guadalajara        Belenes Suc. Belenes    2693  CONSU
## 289  257764 2018 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 290  257889 2018 Guadalajara        Belenes Suc. Belenes    2825  MARIA
## 291  257915 2018 Guadalajara        Belenes Suc. Belenes    2829  LETIC
## 292  257929 2018 Guadalajara        Belenes Suc. Belenes    2837  MARIA
## 293  257964 2018 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 294  258082 2018 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 295  258305 2018 Guadalajara        Belenes Suc. Belenes    3003  LAS L
## 296  258338 2018 Guadalajara        Belenes Suc. Belenes    3035  ROCIO
## 297  258356 2018 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 298  258463 2018 Guadalajara        Belenes Suc. Belenes    3105  EDUAR
## 299  258493 2018 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 300  258606 2018 Guadalajara        Belenes Suc. Belenes    3158  JOAQU
## 301  258680 2018 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 302  258733 2018 Guadalajara        Belenes Suc. Belenes    3183  CRIST
## 303  258755 2018 Guadalajara        Belenes Suc. Belenes    3184  CARLO
## 304  258764 2018 Guadalajara        Belenes Suc. Belenes    3191  MARIA
## 305  258842 2018 Guadalajara        Belenes Suc. Belenes    3230  SALVA
## 306  258912 2018 Guadalajara        Belenes Suc. Belenes    3257  MARIA
## 307  258955 2018 Guadalajara        Belenes Suc. Belenes    3290  JOSE 
## 308  259136 2018 Guadalajara        Belenes Suc. Belenes    8329  ANA B
## 309  259231 2018 Guadalajara        Belenes Suc. Belenes    6981  SUSAN
## 310  259303 2018 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 311  259376 2018 Guadalajara        Belenes Suc. Belenes    9635  ANA I
## 312  259413 2018 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 313  259472 2018 Guadalajara        Belenes Suc. Belenes    2441  DEPOS
## 314  259550 2018 Guadalajara        Belenes Suc. Belenes    8583  HOGAR
## 315  259636 2018 Guadalajara        Belenes Suc. Belenes     153  HOGAR
## 316  259678 2018 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 317  259753 2018 Guadalajara        Belenes Suc. Belenes    3057  HOGAR
## 318  259804 2018 Guadalajara        Belenes Suc. Belenes    3596  MISCE
## 319  259897 2018 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 320  259968 2018 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 321  260036 2018 Guadalajara        Belenes Suc. Belenes    9547  HOGAR
## 322  260104 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 323  260229 2018 Guadalajara        Belenes Suc. Belenes     905  MARIA
## 324  260239 2018 Guadalajara        Belenes Suc. Belenes    1229  MA DE
## 325  260252 2018 Guadalajara        Belenes Suc. Belenes    1230  ELIDA
## 326  260271 2018 Guadalajara        Belenes Suc. Belenes    1231  MISCE
## 327  260318 2018 Guadalajara        Belenes Suc. Belenes    1289  MISCE
## 328  260450 2018 Guadalajara        Belenes Suc. Belenes    3978  HOGAR
## 329  260478 2018 Guadalajara        Belenes Suc. Belenes    3986  NOEMI
## 330  260524 2018 Guadalajara        Belenes Suc. Belenes    3996  MISCE
## 331  260566 2018 Guadalajara        Belenes Suc. Belenes    4286  ANA R
## 332  260605 2018 Guadalajara        Belenes Suc. Belenes    4287  MISCE
## 333  260742 2018 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 334  260787 2018 Guadalajara        Belenes Suc. Belenes    7705  DEPOS
## 335  260801 2018 Guadalajara        Belenes Suc. Belenes    7718  FRUTE
## 336  260838 2018 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 337  260879 2018 Guadalajara        Belenes Suc. Belenes    7723  ABARR
## 338  260966 2018 Guadalajara        Belenes Suc. Belenes    8523  DEPOS
## 339  260978 2018 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 340  260988 2018 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 341  261102 2018 Guadalajara        Belenes Suc. Belenes    8537  SIX E
## 342  261141 2018 Guadalajara        Belenes Suc. Belenes    8539  ABARR
## 343  261180 2018 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 344  261223 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 345  261328 2018 Guadalajara        Belenes Suc. Belenes    9505  MISCE
## 346  261482 2018 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 347  261524 2018 Guadalajara        Belenes Suc. Belenes    5418  MISCE
## 348  261628 2018 Guadalajara        Belenes Suc. Belenes    5139  MISCE
## 349  261686 2018 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 350  261750 2018 Guadalajara        Belenes Suc. Belenes    7440  FARMA
## 351  261758 2018 Guadalajara        Belenes Suc. Belenes    7445  HOGAR
## 352  261771 2018 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 353  261797 2018 Guadalajara        Belenes Suc. Belenes    3105  MISCE
## 354  261987 2018 Guadalajara        Belenes Suc. Belenes    3620  MISCE
## 355  262032 2018 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 356  262070 2018 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 357  262098 2018 Guadalajara        Belenes Suc. Belenes    7372  MISCE
## 358  262134 2018 Guadalajara        Belenes Suc. Belenes    8727  VINOS
## 359  262237 2018 Guadalajara        Belenes Suc. Belenes    3925  JOSE 
## 360  262303 2018 Guadalajara        Belenes Suc. Belenes    4069  OLGA 
## 361  262312 2018 Guadalajara        Belenes Suc. Belenes    8618  ABARR
## 362  262382 2018 Guadalajara        Belenes Suc. Belenes    5583  FERNA
## 363  262398 2018 Guadalajara        Belenes Suc. Belenes    5584  JOSE 
## 364  262423 2018 Guadalajara        Belenes Suc. Belenes    5587  SUSAN
## 365  262479 2018 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 366  304192 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 367  304278 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 368  304388 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 369  304488 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 370  304594 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 371  304694 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 372  304796 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 373  304891 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 374  304988 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 375  305272 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 376  305345 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 377  305530 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 378  305617 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 379  305731 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 380  305834 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 381  305950 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 382  306058 2019 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 383  306209 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 384  306286 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 385  306397 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 386  306523 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 387  306696 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 388  306803 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 389  306974 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 390  307068 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 391  307252 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 392  307366 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 393  307469 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 394  307653 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 395  307844 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 396  308038 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 397  308147 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 398  308340 2019 Guadalajara        Belenes Suc. Belenes    9961  FRANC
## 399  308405 2019 Guadalajara        Belenes Suc. Belenes       4  MARIA
## 400  308481 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 401  308581 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 402  308863 2019 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 403  308968 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 404  309064 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 405  309243 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 406  309438 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 407  309621 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 408  309708 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 409  309825 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 410  309928 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 411  310123 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 412  310212 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 413  310326 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 414  310419 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 415  310537 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 416  310644 2019 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 417  310726 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 418  310814 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 419  310923 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 420  311128 2019 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 421  311220 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 422  311292 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 423  311383 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 424  311492 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 425  311601 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 426  311673 2019 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 427  311857 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 428  311967 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 429  312074 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 430  312203 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 431  312408 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 432  312510 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 433  312599 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 434  312847 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 435  312959 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 436  313058 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 437  313153 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 438  313244 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 439  313348 2019 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 440  313602 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 441  313782 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 442  313888 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 443  313980 2019 Guadalajara        Belenes Suc. Belenes    2047  LA ME
## 444  314041 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 445  314138 2019 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 446  314239 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 447  314317 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 448  314397 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 449  314623 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 450  314716 2019 Guadalajara        Belenes Suc. Belenes    2531  JOSE 
## 451  314803 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 452  314912 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 453  314997 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 454  315198 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 455  315294 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 456  315379 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 457  315484 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 458  315559 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 459  315648 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 460  315732 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 461  315793 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 462  315891 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 463  315988 2019 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 464  316069 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 465  316149 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 466  316228 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 467  316294 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 468  316508 2019 Guadalajara        Belenes Suc. Belenes    2539  ANDAN
## 469  316725 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 470  316834 2019 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 471  317004 2019 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 472  317123 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 473  317284 2019 Guadalajara        Belenes Suc. Belenes    7726  MARIA
## 474  317335 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 475  317538 2019 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 476  317587 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 477  317727 2019 Guadalajara        Belenes Suc. Belenes    7821  ESPER
## 478  317760 2019 Guadalajara        Belenes Suc. Belenes    7987  PRIMI
## 479  317933 2019 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 480  318290 2019 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 481  318654 2019 Guadalajara        Belenes Suc. Belenes    9096  GRACI
## 482  318782 2019 Guadalajara        Belenes Suc. Belenes    9110  MARIA
## 483  318818 2019 Guadalajara        Belenes Suc. Belenes    9117  ANGEL
## 484  318855 2019 Guadalajara        Belenes Suc. Belenes    9120  MARIC
## 485  318934 2019 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 486  319204 2019 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 487  319470 2019 Guadalajara        Belenes Suc. Belenes    9453  MARIA
## 488  319630 2019 Guadalajara        Belenes Suc. Belenes    9525  SARA 
## 489  319667 2019 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 490  319870 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 491  319939 2019 Guadalajara        Belenes Suc. Belenes    9721  FORTI
## 492  319966 2019 Guadalajara        Belenes Suc. Belenes    9730  LETIC
## 493  320341 2019 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 494  320370 2019 Guadalajara        Belenes Suc. Belenes    9944  EMILI
## 495  320447 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 496  320533 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 497  320620 2019 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 498  320820 2019 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 499  320917 2019 Guadalajara        Belenes Suc. Belenes     209  MARTH
## 500  321087 2019 Guadalajara        Belenes Suc. Belenes     345  FARMA
## 501  321355 2019 Guadalajara        Belenes Suc. Belenes     510  MARTH
## 502  321439 2019 Guadalajara        Belenes Suc. Belenes     518  ABARR
## 503  321747 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 504  322083 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 505  322194 2019 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 506  322511 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 507  323273 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 508  323692 2019 Guadalajara        Belenes Suc. Belenes    1456  MARIA
## 509  323741 2019 Guadalajara        Belenes Suc. Belenes    1462  FIDEL
## 510  323781 2019 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 511  323921 2019 Guadalajara        Belenes Suc. Belenes    1671  LUIS 
## 512  324072 2019 Guadalajara        Belenes Suc. Belenes    1766  MA AG
## 513  324106 2019 Guadalajara        Belenes Suc. Belenes    1790  CESAR
## 514  324180 2019 Guadalajara        Belenes Suc. Belenes    1808  MARGA
## 515  324283 2019 Guadalajara        Belenes Suc. Belenes    1914  ANTON
## 516  324303 2019 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 517  324536 2019 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 518  324577 2019 Guadalajara        Belenes Suc. Belenes    2065  LOS P
## 519  324820 2019 Guadalajara        Belenes Suc. Belenes    2225  LUZ D
## 520  325096 2019 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 521  325145 2019 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 522  325327 2019 Guadalajara        Belenes Suc. Belenes    2489  MARIA
## 523  325617 2019 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 524  325926 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 525  325992 2019 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 526  326139 2019 Guadalajara        Belenes Suc. Belenes    2818  MARIA
## 527  326165 2019 Guadalajara        Belenes Suc. Belenes    2826  MARIA
## 528  326337 2019 Guadalajara        Belenes Suc. Belenes    2918  ISABE
## 529  326401 2019 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 530  326624 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 531  326725 2019 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 532  327063 2019 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 533  327115 2019 Guadalajara        Belenes Suc. Belenes    9998  MARIA
## 534  327344 2019 Guadalajara        Belenes Suc. Belenes    5488  DON M
## 535  327418 2019 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 536  327453 2019 Guadalajara        Belenes Suc. Belenes    9562  VINOS
## 537  327496 2019 Guadalajara        Belenes Suc. Belenes    1472  ABARR
## 538  327618 2019 Guadalajara        Belenes Suc. Belenes    4841  LICOR
## 539  327674 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 540  327856 2019 Guadalajara        Belenes Suc. Belenes    2566  ANTON
## 541  327980 2019 Guadalajara        Belenes Suc. Belenes    2628  MARIA
## 542  328018 2019 Guadalajara        Belenes Suc. Belenes    2668  CRIST
## 543  328063 2019 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 544  328099 2019 Guadalajara        Belenes Suc. Belenes    2790  JOSE 
## 545  328275 2019 Guadalajara        Belenes Suc. Belenes    2911  ELIGI
## 546  328365 2019 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 547  328594 2019 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 548  328651 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 549  328735 2019 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 550  328890 2019 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 551  329113 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 552  329198 2019 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 553  329356 2019 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 554  329543 2019 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 555  329623 2019 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 556  329821 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 557  329892 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 558  330104 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 559  330169 2019 Guadalajara        Belenes Suc. Belenes    3003  MISCE
## 560  330209 2019 Guadalajara        Belenes Suc. Belenes    3978  HOGAR
## 561  330402 2019 Guadalajara        Belenes Suc. Belenes    4287  MISCE
## 562  330477 2019 Guadalajara        Belenes Suc. Belenes    6880  MISCE
## 563  330582 2019 Guadalajara        Belenes Suc. Belenes    7703  MISCE
## 564  330677 2019 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 565  330870 2019 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 566  331049 2019 Guadalajara        Belenes Suc. Belenes    8539  ABARR
## 567  331125 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 568  331265 2019 Guadalajara        Belenes Suc. Belenes    9505  MISCE
## 569  331321 2019 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 570  331507 2019 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 571  331699 2019 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 572  331826 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 573  331902 2019 Guadalajara        Belenes Suc. Belenes    3105  MISCE
## 574  332121 2019 Guadalajara        Belenes Suc. Belenes    3398  HOGAR
## 575  332341 2019 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 576  332386 2019 Guadalajara        Belenes Suc. Belenes    7372  MISCE
## 577  332622 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 578  332734 2019 Guadalajara        Belenes Suc. Belenes    9301  ABARR
## 579  332967 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 580  333050 2019 Guadalajara        Belenes Suc. Belenes    8130  MODEL
## 581  333098 2019 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 582  333177 2019 Guadalajara        Belenes Suc. Belenes    8786  MISCE
## 583  333606 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 584  333664 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 585  333943 2019 Guadalajara        Belenes Suc. Belenes    1516  RUBEN
## 586  334001 2019 Guadalajara        Belenes Suc. Belenes    5729  RUBEN
## 587  334143 2019 Guadalajara        Belenes Suc. Belenes    7720  VINOS
## 588  334249 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 589  334305 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 590  335166 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 591  335221 2019 Guadalajara        Belenes Suc. Belenes    7890  CARLO
## 592  335461 2019 Guadalajara        Belenes Suc. Belenes    8017  MARGA
## 593  335521 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 594  335598 2019 Guadalajara        Belenes Suc. Belenes    8076  ABARR
## 595  335781 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 596  335889 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 597  336173 2019 Guadalajara        Belenes Suc. Belenes    8278  MARIA
## 598  336311 2019 Guadalajara        Belenes Suc. Belenes    8387  FRANC
## 599  336362 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 600  336432 2019 Guadalajara        Belenes Suc. Belenes    8477  SUPER
## 601  336564 2019 Guadalajara        Belenes Suc. Belenes    8528  JOSE 
## 602  336752 2019 Guadalajara        Belenes Suc. Belenes    8694  LAURA
## 603  336824 2019 Guadalajara        Belenes Suc. Belenes    8897  MARIA
## 604  336994 2019 Guadalajara        Belenes Suc. Belenes    8906  LUIS 
## 605  337069 2019 Guadalajara        Belenes Suc. Belenes    8937  MARIA
## 606  337133 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 607  337220 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 608  337299 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 609  337454 2019 Guadalajara        Belenes Suc. Belenes    8986  JOSE 
## 610  337491 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 611  337693 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 612  337753 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 613  337798 2019 Guadalajara        Belenes Suc. Belenes    9065  ADRI 
## 614  337871 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 615  338111 2019 Guadalajara        Belenes Suc. Belenes    9105  MARIA
## 616  338236 2019 Guadalajara        Belenes Suc. Belenes    9122  MARIA
## 617  338319 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 618  338392 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 619  338571 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 620  338672 2019 Guadalajara        Belenes Suc. Belenes    9201  MARIA
## 621  338735 2019 Guadalajara        Belenes Suc. Belenes    9221  CESAR
## 622  338841 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 623  339039 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 624  339170 2019 Guadalajara        Belenes Suc. Belenes    9304  TORIB
## 625  339239 2019 Guadalajara        Belenes Suc. Belenes    9346  ENRIQ
## 626  339304 2019 Guadalajara        Belenes Suc. Belenes    9353  ELIAS
## 627  339352 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 628  339483 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 629  339665 2019 Guadalajara        Belenes Suc. Belenes    9386  MARIA
## 630  339768 2019 Guadalajara        Belenes Suc. Belenes    9392  ESPER
## 631  339882 2019 Guadalajara        Belenes Suc. Belenes    9396  GUADA
## 632  340199 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 633  340249 2019 Guadalajara        Belenes Suc. Belenes    9450  ABARR
## 634  340324 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 635  340555 2019 Guadalajara        Belenes Suc. Belenes    9546  RODOL
## 636  340681 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 637  340925 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 638  341126 2019 Guadalajara        Belenes Suc. Belenes    9627  EVELI
## 639  341680 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 640  341998 2019 Guadalajara        Belenes Suc. Belenes    9738  ABARR
## 641  342194 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 642  342254 2019 Guadalajara        Belenes Suc. Belenes    9773  JUAN 
## 643  342290 2019 Guadalajara        Belenes Suc. Belenes    9774  JONAT
## 644  342710 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 645  342898 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 646  343094 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 647  343575 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 648  343654 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 649  343882 2019 Guadalajara        Belenes Suc. Belenes    9999  ROSAL
## 650  343937 2019 Guadalajara        Belenes Suc. Belenes      14  ELIZA
## 651  344049 2019 Guadalajara        Belenes Suc. Belenes      24  MISCE
## 652  344184 2019 Guadalajara        Belenes Suc. Belenes      34  MARIA
## 653  344233 2019 Guadalajara        Belenes Suc. Belenes      37  JUAN 
## 654  344410 2019 Guadalajara        Belenes Suc. Belenes      64  PEDRO
## 655  344552 2019 Guadalajara        Belenes Suc. Belenes      77  VERON
## 656  344632 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 657  344710 2019 Guadalajara        Belenes Suc. Belenes      91  ANA M
## 658  344822 2019 Guadalajara        Belenes Suc. Belenes      96  ODON 
## 659  344919 2019 Guadalajara        Belenes Suc. Belenes     105  VERON
## 660  345037 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 661  345224 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 662  345420 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 663  345532 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 664  345818 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 665  345859 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 666  345938 2019 Guadalajara        Belenes Suc. Belenes     259  MARIA
## 667  346132 2019 Guadalajara        Belenes Suc. Belenes     274  MISCE
## 668  346321 2019 Guadalajara        Belenes Suc. Belenes     308  GABRI
## 669  346802 2019 Guadalajara        Belenes Suc. Belenes     447  VICTO
## 670  346872 2019 Guadalajara        Belenes Suc. Belenes     448  EL DK
## 671  347008 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 672  347088 2019 Guadalajara        Belenes Suc. Belenes     498  ABARR
## 673  347156 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 674  347329 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 675  347399 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 676  347610 2019 Guadalajara        Belenes Suc. Belenes     587  YENI 
## 677  347670 2019 Guadalajara        Belenes Suc. Belenes     604  J ROS
## 678  348001 2019 Guadalajara        Belenes Suc. Belenes     646  ADALB
## 679  348064 2019 Guadalajara        Belenes Suc. Belenes     649  MARTH
## 680  348141 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 681  348332 2019 Guadalajara        Belenes Suc. Belenes     713  SOFIA
## 682  348392 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 683  348546 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 684  348646 2019 Guadalajara        Belenes Suc. Belenes     770  FERNA
## 685  348824 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 686  348986 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 687  349100 2019 Guadalajara        Belenes Suc. Belenes     840  LAURA
## 688  349217 2019 Guadalajara        Belenes Suc. Belenes     845  ABARR
## 689  349358 2019 Guadalajara        Belenes Suc. Belenes     865  RAMIR
## 690  349466 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 691  349594 2019 Guadalajara        Belenes Suc. Belenes     913  RAMON
## 692  349686 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 693  349814 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 694  350050 2019 Guadalajara        Belenes Suc. Belenes     956  EL TE
## 695  350108 2019 Guadalajara        Belenes Suc. Belenes     957  ABARR
## 696  350172 2019 Guadalajara        Belenes Suc. Belenes     958  BERTH
## 697  350240 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 698  350345 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 699  350476 2019 Guadalajara        Belenes Suc. Belenes     995  ABARR
## 700  350591 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 701  350645 2019 Guadalajara        Belenes Suc. Belenes    1025  OSCAR
## 702  350782 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 703  350840 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 704  350911 2019 Guadalajara        Belenes Suc. Belenes    1042  ROSAU
## 705  351070 2019 Guadalajara        Belenes Suc. Belenes    1062  ABARR
## 706  351181 2019 Guadalajara        Belenes Suc. Belenes    1099  PABLO
## 707  351568 2019 Guadalajara        Belenes Suc. Belenes    1162  OLGA 
## 708  351806 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 709  351995 2019 Guadalajara        Belenes Suc. Belenes    1213  HORAC
## 710  352133 2019 Guadalajara        Belenes Suc. Belenes    1254  ABARR
## 711  352327 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 712  352434 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 713  352551 2019 Guadalajara        Belenes Suc. Belenes    1304  DANIE
## 714  352655 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 715  352953 2019 Guadalajara        Belenes Suc. Belenes    1371  ABARR
## 716  353294 2019 Guadalajara        Belenes Suc. Belenes    1421  MARIA
## 717  353365 2019 Guadalajara        Belenes Suc. Belenes    1446  JOSE 
## 718  353628 2019 Guadalajara        Belenes Suc. Belenes    1483  MARIA
## 719  353735 2019 Guadalajara        Belenes Suc. Belenes    1499  IVAN 
## 720  353919 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 721  354001 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 722  354111 2019 Guadalajara        Belenes Suc. Belenes    1559  HECTO
## 723  354371 2019 Guadalajara        Belenes Suc. Belenes    1597  ABARR
## 724  354440 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 725  354504 2019 Guadalajara        Belenes Suc. Belenes    1632  EXPEN
## 726  354711 2019 Guadalajara        Belenes Suc. Belenes    1705  JOVIT
## 727  355301 2019 Guadalajara        Belenes Suc. Belenes    1749  ALICI
## 728  355573 2019 Guadalajara        Belenes Suc. Belenes    1761  LUZ E
## 729  355749 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 730  355830 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 731  355904 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 732  355977 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 733  356031 2019 Guadalajara        Belenes Suc. Belenes    1851  KARIN
## 734  356100 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 735  356237 2019 Guadalajara        Belenes Suc. Belenes    1911  SANTI
## 736  356285 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 737  356393 2019 Guadalajara        Belenes Suc. Belenes    1928  ABARR
## 738  356434 2019 Guadalajara        Belenes Suc. Belenes    1931  HUMBE
## 739  356663 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 740  356750 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 741  356790 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 742  356828 2019 Guadalajara        Belenes Suc. Belenes    1972  ARTUR
## 743  356882 2019 Guadalajara        Belenes Suc. Belenes    1973  EMIDI
## 744  357009 2019 Guadalajara        Belenes Suc. Belenes    1999  ABARR
## 745  357331 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 746  357445 2019 Guadalajara        Belenes Suc. Belenes    2072  MARIA
## 747  357473 2019 Guadalajara        Belenes Suc. Belenes    2073  ABARR
## 748  357600 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 749  357634 2019 Guadalajara        Belenes Suc. Belenes    2111  VINOS
## 750  357681 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 751  357904 2019 Guadalajara        Belenes Suc. Belenes    2129  ABARR
## 752  358263 2019 Guadalajara        Belenes Suc. Belenes    2198  PEDRO
## 753  358316 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 754  358457 2019 Guadalajara        Belenes Suc. Belenes    2238  CECIL
## 755  358499 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 756  358576 2019 Guadalajara        Belenes Suc. Belenes    2243  GRACI
## 757  358662 2019 Guadalajara        Belenes Suc. Belenes    2246  RAUL 
## 758  358732 2019 Guadalajara        Belenes Suc. Belenes    2260  MISCE
## 759  359001 2019 Guadalajara        Belenes Suc. Belenes    2305  JOSE 
## 760  359340 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 761  359488 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 762  359540 2019 Guadalajara        Belenes Suc. Belenes    2436  MARIA
## 763  359654 2019 Guadalajara        Belenes Suc. Belenes    2466  FELIC
## 764  359728 2019 Guadalajara        Belenes Suc. Belenes    2467  ABARR
## 765  359962 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 766  360055 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 767  360201 2019 Guadalajara        Belenes Suc. Belenes    2507  ALEJA
## 768  360392 2019 Guadalajara        Belenes Suc. Belenes    2523  ROSA 
## 769  360730 2019 Guadalajara        Belenes Suc. Belenes    2547  VIVIA
## 770  360801 2019 Guadalajara        Belenes Suc. Belenes    2551  ABARR
## 771  360942 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 772  361070 2019 Guadalajara        Belenes Suc. Belenes    2627  ABARR
## 773  361151 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 774  361538 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 775  361625 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 776  361843 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 777  362345 2019 Guadalajara        Belenes Suc. Belenes    2749  ABARR
## 778  362414 2019 Guadalajara        Belenes Suc. Belenes    2755  ABARR
## 779  362521 2019 Guadalajara        Belenes Suc. Belenes    2764  ALBER
## 780  362574 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 781  362862 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 782  363079 2019 Guadalajara        Belenes Suc. Belenes    2822  DELIA
## 783  363401 2019 Guadalajara        Belenes Suc. Belenes    2857  CAROL
## 784  363472 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 785  363652 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 786  363801 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 787  363977 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 788  364188 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 789  364484 2019 Guadalajara        Belenes Suc. Belenes    2991  LA GL
## 790  364585 2019 Guadalajara        Belenes Suc. Belenes    3028  CREME
## 791  364668 2019 Guadalajara        Belenes Suc. Belenes    3040  ABARR
## 792  364815 2019 Guadalajara        Belenes Suc. Belenes    3059  ABARR
## 793  364910 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 794  365389 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 795  365598 2019 Guadalajara        Belenes Suc. Belenes    3192  JOSE 
## 796  365648 2019 Guadalajara        Belenes Suc. Belenes    3203  MARIA
## 797  365708 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 798  365796 2019 Guadalajara        Belenes Suc. Belenes    3220  ABARR
## 799  366078 2019 Guadalajara        Belenes Suc. Belenes    3268  ABELI
## 800  366156 2019 Guadalajara        Belenes Suc. Belenes    3280  OLIVI
## 801  366421 2019 Guadalajara        Belenes Suc. Belenes      19  MARTH
## 802  366477 2019 Guadalajara        Belenes Suc. Belenes      26  ABARR
## 803  366630 2019 Guadalajara        Belenes Suc. Belenes     711  JORGE
## 804  366718 2019 Guadalajara        Belenes Suc. Belenes    1063  ABARR
## 805  367051 2019 Guadalajara        Belenes Suc. Belenes    9573  ABARR
## 806  367350 2019 Guadalajara        Belenes Suc. Belenes    6027  LETIC
## 807  367630 2019 Guadalajara        Belenes Suc. Belenes    2299  ABARR
## 808  367705 2019 Guadalajara        Belenes Suc. Belenes    2396  VENTA
## 809  367966 2019 Guadalajara        Belenes Suc. Belenes     412  ARMAN
## 810  368021 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 811  368236 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 812  368308 2019 Guadalajara        Belenes Suc. Belenes    2477  VINOS
## 813  368395 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 814  368579 2019 Guadalajara        Belenes Suc. Belenes    2533  ENRIQ
## 815  368745 2019 Guadalajara        Belenes Suc. Belenes    2577  SILVI
## 816  368864 2019 Guadalajara        Belenes Suc. Belenes    2590  ETELV
## 817  368923 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 818  368986 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 819  369335 2019 Guadalajara        Belenes Suc. Belenes    2644  ALICI
## 820  369675 2019 Guadalajara        Belenes Suc. Belenes    2710  USTEC
## 821  369781 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 822  369852 2019 Guadalajara        Belenes Suc. Belenes    2756  FAUST
## 823  370043 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 824  370400 2019 Guadalajara        Belenes Suc. Belenes    2909  ANGEL
## 825  370453 2019 Guadalajara        Belenes Suc. Belenes    2919  VALEN
## 826  370484 2019 Guadalajara        Belenes Suc. Belenes    2938  ERNES
## 827  370599 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 828  371034 2019 Guadalajara        Belenes Suc. Belenes    3071  EL PA
## 829  371137 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 830  371361 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 831  371578 2019 Guadalajara        Belenes Suc. Belenes    3174  FRUTA
## 832  371630 2019 Guadalajara        Belenes Suc. Belenes    3209  ALMA 
## 833  371667 2019 Guadalajara        Belenes Suc. Belenes    3233  ABARR
## 834  372075 2019 Guadalajara        Belenes Suc. Belenes    8289  MARIA
## 835  372131 2019 Guadalajara        Belenes Suc. Belenes    8291  ANTON
## 836  372216 2019 Guadalajara        Belenes Suc. Belenes    8392  OSCAR
## 837  372283 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 838  372466 2019 Guadalajara        Belenes Suc. Belenes     766  ABARR
## 839  372515 2019 Guadalajara        Belenes Suc. Belenes    1486  VERON
## 840  372650 2019 Guadalajara        Belenes Suc. Belenes    1759  MICEL
## 841  372879 2019 Guadalajara        Belenes Suc. Belenes    9410  MICEL
## 842  372938 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 843  373307 2019 Guadalajara        Belenes Suc. Belenes    4647  MICEL
## 844  373450 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 845  373670 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 846  373746 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 847  373833 2019 Guadalajara        Belenes Suc. Belenes    8526  MISCE
## 848  373961 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 849  374032 2019 Guadalajara        Belenes Suc. Belenes    5228  MICEL
## 850  374170 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 851  374327 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 852  374485 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 853  374641 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 854  374716 2019 Guadalajara        Belenes Suc. Belenes    1026  ABARR
## 855  374976 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 856  375146 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 857  375233 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 858  375391 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 859  375478 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 860  375614 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 861  375693 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 862  375784 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 863  375887 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 864  375996 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 865  376066 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 866  376141 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 867  376395 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 868  376490 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 869  376611 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 870  376695 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 871  376771 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 872  376849 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 873  376918 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 874  377044 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 875  377190 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 876  377294 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 877  377588 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 878  377658 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 879  377698 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 880  377774 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 881  377951 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 882  378043 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 883  378250 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 884  378343 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 885  378558 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 886  378732 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 887  379009 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 888  379139 2019 Guadalajara        Belenes Suc. Belenes    8917  RAFAE
## 889  379224 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 890  379322 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 891  379437 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 892  379637 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 893  379735 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 894  379826 2019 Guadalajara        Belenes Suc. Belenes    9027  ABARR
## 895  379956 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 896  380054 2019 Guadalajara        Belenes Suc. Belenes    9040  JUAN 
## 897  380150 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 898  380242 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 899  380346 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 900  380430 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 901  380509 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 902  380671 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 903  380772 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 904  380868 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 905  380962 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 906  381054 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 907  381150 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 908  381224 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 909  381320 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 910  381433 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 911  381579 2019 Guadalajara        Belenes Suc. Belenes    9256  ABARR
## 912  381666 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 913  381770 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 914  381871 2019 Guadalajara        Belenes Suc. Belenes    9331  ABARR
## 915  381960 2019 Guadalajara        Belenes Suc. Belenes    9335  ABARR
## 916  382029 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 917  382105 2019 Guadalajara        Belenes Suc. Belenes    9371  TERES
## 918  382161 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 919  382243 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 920  382325 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 921  382432 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 922  382524 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 923  382605 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 924  382747 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 925  382827 2019 Guadalajara        Belenes Suc. Belenes    9444  SONIA
## 926  382905 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 927  382974 2019 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 928  383033 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 929  383142 2019 Guadalajara        Belenes Suc. Belenes    9481  GLORI
## 930  383236 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 931  383803 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 932  384162 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 933  384255 2019 Guadalajara        Belenes Suc. Belenes    9624  VICTO
## 934  384331 2019 Guadalajara        Belenes Suc. Belenes    9648  MARIA
## 935  384411 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 936  384502 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 937  384595 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 938  384751 2019 Guadalajara        Belenes Suc. Belenes    9744  JUANA
## 939  384818 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 940  384879 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 941  384962 2019 Guadalajara        Belenes Suc. Belenes    9752  ABARR
## 942  385049 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 943  385133 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 944  385280 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 945  385374 2019 Guadalajara        Belenes Suc. Belenes    9780  GILBE
## 946  385524 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 947  385615 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 948  385739 2019 Guadalajara        Belenes Suc. Belenes    9834  AGUST
## 949  385825 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 950  385924 2019 Guadalajara        Belenes Suc. Belenes    9844  ABARR
## 951  386010 2019 Guadalajara        Belenes Suc. Belenes    9859  KRISH
## 952  386253 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 953  386656 2019 Guadalajara        Belenes Suc. Belenes    9908  ABARR
## 954  386740 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 955  387030 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 956  387116 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 957  387311 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 958  387408 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 959  387482 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 960  387557 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 961  387658 2019 Guadalajara        Belenes Suc. Belenes    9997  RICAR
## 962  387800 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 963  387874 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 964  387967 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 965  388151 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 966  388242 2019 Guadalajara        Belenes Suc. Belenes      66  MARIA
## 967  388394 2019 Guadalajara        Belenes Suc. Belenes      82  KARLA
## 968  388447 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 969  388541 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 970  388642 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 971  388710 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 972  388789 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 973  388877 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 974  389107 2019 Guadalajara        Belenes Suc. Belenes     122  BREND
## 975  389167 2019 Guadalajara        Belenes Suc. Belenes     124  AUROR
## 976  389246 2019 Guadalajara        Belenes Suc. Belenes     129  ABARR
## 977  389315 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 978  389495 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 979  389577 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 980  389819 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 981  389905 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 982  389976 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 983  390075 2019 Guadalajara        Belenes Suc. Belenes     213  ALEJA
## 984  390190 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 985  390263 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 986  390524 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 987  390642 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 988  390738 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 989  390838 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 990  391172 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 991  391277 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 992  391369 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 993  391571 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 994  391666 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 995  391755 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 996  391832 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 997  392158 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 998  392227 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 999  392464 2019 Guadalajara        Belenes Suc. Belenes     505  JUANA
## 1000 392546 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 1001 392708 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 1002 392813 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 1003 392960 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 1004 393054 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 1005 393228 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 1006 393277 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 1007 393455 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 1008 393524 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 1009 393589 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 1010 393769 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 1011 393882 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 1012 393978 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 1013 394074 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 1014 394165 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 1015 394247 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 1016 394420 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 1017 394644 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 1018 394740 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 1019 394816 2019 Guadalajara        Belenes Suc. Belenes     943  ABARR
## 1020 394908 2019 Guadalajara        Belenes Suc. Belenes     953  JAIME
## 1021 395066 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 1022 395169 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 1023 395396 2019 Guadalajara        Belenes Suc. Belenes    1063  MARIC
## 1024 395559 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 1025 395666 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 1026 395755 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 1027 395844 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 1028 395930 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 1029 396032 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 1030 396126 2019 Guadalajara        Belenes Suc. Belenes    1228  EMMAN
## 1031 396213 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 1032 396495 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 1033 396602 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 1034 396780 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 1035 396866 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 1036 396961 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 1037 397044 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 1038 397130 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 1039 397225 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 1040 397292 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 1041 397355 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 1042 397435 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 1043 397520 2019 Guadalajara        Belenes Suc. Belenes    1459  LA ES
## 1044 397598 2019 Guadalajara        Belenes Suc. Belenes    1460  MARIA
## 1045 397673 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 1046 397757 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 1047 397830 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 1048 397922 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 1049 398000 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 1050 398184 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 1051 398331 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 1052 398432 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 1053 398513 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1054 398585 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 1055 398688 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 1056 398757 2019 Guadalajara        Belenes Suc. Belenes    1634  ABARR
## 1057 398835 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 1058 398908 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 1059 398989 2019 Guadalajara        Belenes Suc. Belenes    1711  REYES
## 1060 399049 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 1061 399147 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 1062 399216 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 1063 399322 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 1064 399516 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 1065 399755 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 1066 399922 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 1067 400015 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 1068 400119 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 1069 400210 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 1070 400297 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 1071 400404 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 1072 400504 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 1073 400579 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 1074 400661 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 1075 400759 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 1076 400849 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 1077 400936 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 1078 401018 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 1079 401126 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 1080 401221 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 1081 401298 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 1082 401368 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 1083 401446 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 1084 401535 2019 Guadalajara        Belenes Suc. Belenes    1944  ABARR
## 1085 401599 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 1086 401694 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 1087 401781 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 1088 401962 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 1089 402057 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 1090 402161 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 1091 402261 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 1092 402370 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 1093 402460 2019 Guadalajara        Belenes Suc. Belenes    2044  JAIME
## 1094 402540 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 1095 402625 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 1096 402708 2019 Guadalajara        Belenes Suc. Belenes    2054  MIGUE
## 1097 402768 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 1098 402989 2019 Guadalajara        Belenes Suc. Belenes    2120  JUANA
## 1099 403191 2019 Guadalajara        Belenes Suc. Belenes    2136  SILVI
## 1100 403261 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 1101 403353 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 1102 403541 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 1103 403622 2019 Guadalajara        Belenes Suc. Belenes    2195  JOSE 
## 1104 403828 2019 Guadalajara        Belenes Suc. Belenes    2229  ABARR
## 1105 403900 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 1106 403983 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 1107 404057 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 1108 404131 2019 Guadalajara        Belenes Suc. Belenes    2261  MARIA
## 1109 404268 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 1110 404366 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 1111 404451 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 1112 404551 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 1113 404651 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 1114 404739 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 1115 404882 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 1116 404967 2019 Guadalajara        Belenes Suc. Belenes    2335  ANGEL
## 1117 405168 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 1118 405248 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 1119 405321 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 1120 405420 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 1121 405523 2019 Guadalajara        Belenes Suc. Belenes    2401  ROSA 
## 1122 405607 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 1123 405712 2019 Guadalajara        Belenes Suc. Belenes    2471  MARIA
## 1124 405783 2019 Guadalajara        Belenes Suc. Belenes    2474  MARIA
## 1125 405857 2019 Guadalajara        Belenes Suc. Belenes    2475  MIRIA
## 1126 405925 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 1127 406186 2019 Guadalajara        Belenes Suc. Belenes    2522  ABARR
## 1128 406254 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 1129 406325 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 1130 406371 2019 Guadalajara        Belenes Suc. Belenes    2540  ADRIA
## 1131 406535 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 1132 406643 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 1133 406804 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 1134 406892 2019 Guadalajara        Belenes Suc. Belenes    2607  BERTH
## 1135 406921 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 1136 407013 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 1137 407272 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 1138 407416 2019 Guadalajara        Belenes Suc. Belenes    2733  GUSTA
## 1139 407493 2019 Guadalajara        Belenes Suc. Belenes    2776  BEATR
## 1140 407574 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 1141 407663 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 1142 408105 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 1143 408209 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 1144 408318 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 1145 408418 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 1146 408615 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 1147 408743 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 1148 408880 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 1149 409037 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 1150 409106 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 1151 409203 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 1152 409300 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 1153 409393 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 1154 409630 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 1155 409692 2019 Guadalajara        Belenes Suc. Belenes    3069  MODEL
## 1156 409763 2019 Guadalajara        Belenes Suc. Belenes    3071  MARIO
## 1157 409894 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 1158 410285 2019 Guadalajara        Belenes Suc. Belenes    3165  ARON 
## 1159 410367 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 1160 410469 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 1161 410553 2019 Guadalajara        Belenes Suc. Belenes    3169  ANA L
## 1162 410620 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 1163 410999 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 1164 411174 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 1165 411405 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 1166 411560 2019 Guadalajara        Belenes Suc. Belenes     410  LUZ M
## 1167 411627 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 1168 411789 2019 Guadalajara        Belenes Suc. Belenes    1769  ABARR
## 1169 411980 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 1170 412079 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 1171 412365 2019 Guadalajara        Belenes Suc. Belenes    2515  ANA R
## 1172 412431 2019 Guadalajara        Belenes Suc. Belenes    2517  MARIA
## 1173 412476 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 1174 412541 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 1175 412612 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 1176 412670 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 1177 412758 2019 Guadalajara        Belenes Suc. Belenes    2562  JAVIE
## 1178 412871 2019 Guadalajara        Belenes Suc. Belenes    2564  HERLI
## 1179 413004 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 1180 413081 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 1181 413156 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 1182 413250 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 1183 413328 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 1184 413606 2019 Guadalajara        Belenes Suc. Belenes    2637  ABARR
## 1185 413659 2019 Guadalajara        Belenes Suc. Belenes    2702  ABARR
## 1186 413801 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 1187 413859 2019 Guadalajara        Belenes Suc. Belenes    2771  ABARR
## 1188 413978 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 1189 414164 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 1190 414254 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 1191 414430 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 1192 414520 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 1193 414647 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 1194 414775 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 1195 414849 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 1196 415104 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 1197 415205 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 1198 415295 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 1199 415405 2019 Guadalajara        Belenes Suc. Belenes    3256  JOSE 
## 1200 415710 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 1201 415794 2019 Guadalajara        Belenes Suc. Belenes    3293  ABARR
## 1202 415908 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 1203 416063 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 1204 416163 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 1205 200111 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 1206 200225 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 1207 200462 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 1208 200577 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 1209 200683 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 1210 200784 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 1211 200887 2018 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 1212 201314 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 1213 201521 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 1214 201626 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 1215 201752 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 1216 201986 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 1217 202269 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 1218 202357 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 1219 202609 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 1220 202810 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 1221 203104 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 1222 203626 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 1223 203729 2018 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 1224 204009 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 1225 204839 2018 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 1226 205582 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 1227 205803 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 1228 206112 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 1229 206247 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 1230 206348 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 1231 206792 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 1232 207305 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 1233 207992 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 1234 208215 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 1235 208410 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 1236 208518 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 1237 208980 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 1238 209684 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 1239 210408 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 1240 210906 2018 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 1241 211018 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 1242 211223 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 1243 211745 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 1244 212845 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 1245 213425 2018 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 1246 213918 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 1247 214117 2018 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 1248 214340 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 1249 243732 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 1250 245420 2018 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 1251 247456 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 1252 254854 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 1253 259473 2018 Guadalajara        Belenes Suc. Belenes    2441  DEPOS
## 1254 259754 2018 Guadalajara        Belenes Suc. Belenes    3057  HOGAR
## 1255 260105 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 1256 261280 2018 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 1257 262238 2018 Guadalajara        Belenes Suc. Belenes    3925  JOSE 
## 1258 262480 2018 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 1259 304193 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 1260 304279 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 1261 304389 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 1262 304489 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 1263 304595 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 1264 304695 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 1265 304797 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 1266 304892 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 1267 304989 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 1268 305064 2019 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 1269 305125 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 1270 305273 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 1271 305346 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 1272 305439 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 1273 305531 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 1274 305618 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 1275 305732 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 1276 305835 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 1277 305951 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 1278 306142 2019 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 1279 306210 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 1280 306287 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 1281 306398 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 1282 306524 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 1283 306697 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 1284 306804 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 1285 306975 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 1286 307069 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 1287 307253 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 1288 307367 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 1289 307470 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 1290 307572 2019 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 1291 307654 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 1292 307739 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 1293 307845 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 1294 308039 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 1295 308148 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 1296 308244 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 1297 308482 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 1298 308582 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 1299 308969 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 1300 309065 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 1301 309144 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 1302 309244 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 1303 309439 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 1304 309541 2019 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 1305 309622 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 1306 309709 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 1307 309826 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 1308 309929 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 1309 310124 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 1310 310213 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 1311 310327 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 1312 310420 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 1313 310538 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 1314 310645 2019 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 1315 310727 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 1316 310815 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 1317 310924 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 1318 311042 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 1319 311221 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 1320 311293 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 1321 311384 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 1322 311493 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 1323 311602 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 1324 311858 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 1325 311968 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 1326 312075 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 1327 312204 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 1328 312303 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 1329 312409 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 1330 312511 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 1331 312600 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 1332 312708 2019 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 1333 312848 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 1334 312960 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 1335 313059 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 1336 313154 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 1337 313245 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 1338 313349 2019 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 1339 313429 2019 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 1340 313603 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 1341 313783 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 1342 313889 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 1343 313981 2019 Guadalajara        Belenes Suc. Belenes    2047  LA ME
## 1344 314042 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 1345 314240 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 1346 314318 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 1347 314398 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 1348 314498 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 1349 314624 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 1350 314804 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 1351 314913 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 1352 314998 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 1353 315199 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 1354 315295 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 1355 315380 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 1356 315485 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 1357 315560 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 1358 315649 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 1359 315733 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 1360 315794 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 1361 315892 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 1362 316070 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 1363 316150 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 1364 316229 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 1365 316295 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 1366 316691 2019 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 1367 316726 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 1368 316924 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 1369 317124 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 1370 317539 2019 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 1371 317588 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 1372 317787 2019 Guadalajara        Belenes Suc. Belenes    8074  MIGUE
## 1373 317865 2019 Guadalajara        Belenes Suc. Belenes    8190  GUSTA
## 1374 317934 2019 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 1375 318134 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 1376 318379 2019 Guadalajara        Belenes Suc. Belenes    8943  MARIA
## 1377 318458 2019 Guadalajara        Belenes Suc. Belenes    9003  SANDR
## 1378 318624 2019 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 1379 319205 2019 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 1380 319516 2019 Guadalajara        Belenes Suc. Belenes    9459  OBDUL
## 1381 319551 2019 Guadalajara        Belenes Suc. Belenes    9485  BENIL
## 1382 319730 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 1383 319762 2019 Guadalajara        Belenes Suc. Belenes    9625  SILVI
## 1384 320141 2019 Guadalajara        Belenes Suc. Belenes    9804  CARME
## 1385 320448 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 1386 320534 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 1387 321013 2019 Guadalajara        Belenes Suc. Belenes     268  CIPRI
## 1388 321033 2019 Guadalajara        Belenes Suc. Belenes     285  ANA G
## 1389 321242 2019 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 1390 321494 2019 Guadalajara        Belenes Suc. Belenes     521  CRIST
## 1391 321748 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 1392 321877 2019 Guadalajara        Belenes Suc. Belenes     702  ELPID
## 1393 321955 2019 Guadalajara        Belenes Suc. Belenes     730  ADALB
## 1394 322084 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 1395 322132 2019 Guadalajara        Belenes Suc. Belenes     768  FARMA
## 1396 322264 2019 Guadalajara        Belenes Suc. Belenes     821  MONIC
## 1397 322329 2019 Guadalajara        Belenes Suc. Belenes     869  TERES
## 1398 322363 2019 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 1399 322512 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 1400 322652 2019 Guadalajara        Belenes Suc. Belenes     996  SIX L
## 1401 322750 2019 Guadalajara        Belenes Suc. Belenes    1058  FRANC
## 1402 322956 2019 Guadalajara        Belenes Suc. Belenes    1165  AMALI
## 1403 323041 2019 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 1404 323274 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 1405 323742 2019 Guadalajara        Belenes Suc. Belenes    1462  FIDEL
## 1406 323946 2019 Guadalajara        Belenes Suc. Belenes    1721  RAMON
## 1407 324304 2019 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 1408 324385 2019 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 1409 324613 2019 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 1410 324671 2019 Guadalajara        Belenes Suc. Belenes    2080  MARTH
## 1411 324993 2019 Guadalajara        Belenes Suc. Belenes    2359  JUANA
## 1412 325065 2019 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 1413 325097 2019 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 1414 325618 2019 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 1415 325714 2019 Guadalajara        Belenes Suc. Belenes    2680  OFELI
## 1416 325730 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 1417 325771 2019 Guadalajara        Belenes Suc. Belenes    2734  OSCAR
## 1418 325861 2019 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 1419 325927 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 1420 326291 2019 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 1421 326625 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 1422 326681 2019 Guadalajara        Belenes Suc. Belenes    3018  ABARR
## 1423 326896 2019 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 1424 327170 2019 Guadalajara        Belenes Suc. Belenes    1056  ABARR
## 1425 327419 2019 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 1426 327675 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 1427 327943 2019 Guadalajara        Belenes Suc. Belenes    2612  TORIB
## 1428 328140 2019 Guadalajara        Belenes Suc. Belenes    2795  CELIA
## 1429 328454 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 1430 328595 2019 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 1431 328652 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 1432 329114 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 1433 329199 2019 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 1434 329439 2019 Guadalajara        Belenes Suc. Belenes    3596  MISCE
## 1435 329481 2019 Guadalajara        Belenes Suc. Belenes    3598  MISCE
## 1436 329582 2019 Guadalajara        Belenes Suc. Belenes    4648  DESEC
## 1437 329822 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 1438 329893 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 1439 330072 2019 Guadalajara        Belenes Suc. Belenes    1289  MISCE
## 1440 330105 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 1441 330537 2019 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 1442 330792 2019 Guadalajara        Belenes Suc. Belenes    8516  MISCE
## 1443 330871 2019 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 1444 330899 2019 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 1445 330944 2019 Guadalajara        Belenes Suc. Belenes    8534  CREME
## 1446 331126 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 1447 331204 2019 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 1448 331322 2019 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 1449 331385 2019 Guadalajara        Belenes Suc. Belenes      17  DEPOS
## 1450 331746 2019 Guadalajara        Belenes Suc. Belenes    7437  MISCE
## 1451 331827 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 1452 332006 2019 Guadalajara        Belenes Suc. Belenes    3377  MISCE
## 1453 332122 2019 Guadalajara        Belenes Suc. Belenes    3398  HOGAR
## 1454 332342 2019 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 1455 332541 2019 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 1456 332623 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 1457 332702 2019 Guadalajara        Belenes Suc. Belenes    9296  BEATR
## 1458 332820 2019 Guadalajara        Belenes Suc. Belenes    5582  CARLO
## 1459 332968 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 1460 333030 2019 Guadalajara        Belenes Suc. Belenes    8122  FRUTA
## 1461 333099 2019 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 1462 333303 2019 Guadalajara        Belenes Suc. Belenes    9132  JUAN 
## 1463 333319 2019 Guadalajara        Belenes Suc. Belenes    9352  KARLA
## 1464 333386 2019 Guadalajara        Belenes Suc. Belenes    9773  SILVI
## 1465 333443 2019 Guadalajara        Belenes Suc. Belenes    9774  ABARR
## 1466 333607 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 1467 333665 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 1468 333725 2019 Guadalajara        Belenes Suc. Belenes    6103  CREME
## 1469 333809 2019 Guadalajara        Belenes Suc. Belenes    6523  ABARR
## 1470 333901 2019 Guadalajara        Belenes Suc. Belenes    7208  MARGA
## 1471 334002 2019 Guadalajara        Belenes Suc. Belenes    5729  RUBEN
## 1472 334144 2019 Guadalajara        Belenes Suc. Belenes    7720  VINOS
## 1473 334195 2019 Guadalajara        Belenes Suc. Belenes    7743  ABIGA
## 1474 334250 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 1475 334306 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 1476 334542 2019 Guadalajara        Belenes Suc. Belenes    7794  ABARR
## 1477 334882 2019 Guadalajara        Belenes Suc. Belenes    7848  BERTH
## 1478 334932 2019 Guadalajara        Belenes Suc. Belenes    7849  FRANC
## 1479 334979 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 1480 335036 2019 Guadalajara        Belenes Suc. Belenes    7854  FRANC
## 1481 335107 2019 Guadalajara        Belenes Suc. Belenes    7867  EL CO
## 1482 335167 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 1483 335222 2019 Guadalajara        Belenes Suc. Belenes    7890  CARLO
## 1484 335286 2019 Guadalajara        Belenes Suc. Belenes    7893  MISCE
## 1485 335522 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 1486 335782 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 1487 335830 2019 Guadalajara        Belenes Suc. Belenes    8142  ABARR
## 1488 335890 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 1489 336651 2019 Guadalajara        Belenes Suc. Belenes    8636  MARIA
## 1490 337070 2019 Guadalajara        Belenes Suc. Belenes    8937  MARIA
## 1491 337134 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 1492 337221 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 1493 337300 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 1494 337413 2019 Guadalajara        Belenes Suc. Belenes    8971  ANA M
## 1495 337492 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 1496 337607 2019 Guadalajara        Belenes Suc. Belenes    8994  MISCE
## 1497 337651 2019 Guadalajara        Belenes Suc. Belenes    9037  VICTO
## 1498 338393 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 1499 338482 2019 Guadalajara        Belenes Suc. Belenes    9170  JORGE
## 1500 338572 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 1501 338842 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 1502 338903 2019 Guadalajara        Belenes Suc. Belenes    9280  MISCE
## 1503 338961 2019 Guadalajara        Belenes Suc. Belenes    9285  GUILL
## 1504 339040 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 1505 339108 2019 Guadalajara        Belenes Suc. Belenes    9302  ISAUR
## 1506 339240 2019 Guadalajara        Belenes Suc. Belenes    9346  ENRIQ
## 1507 339353 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 1508 339421 2019 Guadalajara        Belenes Suc. Belenes    9363  TERES
## 1509 339484 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 1510 339581 2019 Guadalajara        Belenes Suc. Belenes    9374  SALVA
## 1511 339627 2019 Guadalajara        Belenes Suc. Belenes    9380  AVELI
## 1512 340031 2019 Guadalajara        Belenes Suc. Belenes    9424  J JES
## 1513 340200 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 1514 340325 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 1515 340442 2019 Guadalajara        Belenes Suc. Belenes    9540  ERIKA
## 1516 340556 2019 Guadalajara        Belenes Suc. Belenes    9546  RODOL
## 1517 340682 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 1518 340926 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 1519 340981 2019 Guadalajara        Belenes Suc. Belenes    9609  NOE G
## 1520 341179 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 1521 341241 2019 Guadalajara        Belenes Suc. Belenes    9642  GUADA
## 1522 341316 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 1523 341435 2019 Guadalajara        Belenes Suc. Belenes    9650  MARIA
## 1524 341517 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 1525 341581 2019 Guadalajara        Belenes Suc. Belenes    9673  ANGEL
## 1526 341840 2019 Guadalajara        Belenes Suc. Belenes    9723  MARIA
## 1527 341999 2019 Guadalajara        Belenes Suc. Belenes    9738  ABARR
## 1528 342079 2019 Guadalajara        Belenes Suc. Belenes    9757  MARIA
## 1529 342195 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 1530 342392 2019 Guadalajara        Belenes Suc. Belenes    9787  FILIB
## 1531 342471 2019 Guadalajara        Belenes Suc. Belenes    9790  MARIA
## 1532 342711 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 1533 342899 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 1534 342959 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 1535 343020 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 1536 343095 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 1537 343250 2019 Guadalajara        Belenes Suc. Belenes    9899  GABRI
## 1538 343526 2019 Guadalajara        Belenes Suc. Belenes    9939  CLEME
## 1539 343655 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 1540 344050 2019 Guadalajara        Belenes Suc. Belenes      24  MISCE
## 1541 344134 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 1542 344633 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 1543 344867 2019 Guadalajara        Belenes Suc. Belenes      99  ENEID
## 1544 345038 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 1545 345225 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 1546 345355 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 1547 345421 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 1548 345571 2019 Guadalajara        Belenes Suc. Belenes     176  ABARR
## 1549 345632 2019 Guadalajara        Belenes Suc. Belenes     178  ABARR
## 1550 345758 2019 Guadalajara        Belenes Suc. Belenes     205  ABARR
## 1551 345819 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 1552 345860 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 1553 345994 2019 Guadalajara        Belenes Suc. Belenes     260  MARIA
## 1554 346208 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 1555 346322 2019 Guadalajara        Belenes Suc. Belenes     308  GABRI
## 1556 346417 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 1557 346569 2019 Guadalajara        Belenes Suc. Belenes     397  FRANC
## 1558 346637 2019 Guadalajara        Belenes Suc. Belenes     412  JUVEN
## 1559 346754 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 1560 346803 2019 Guadalajara        Belenes Suc. Belenes     447  VICTO
## 1561 347009 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 1562 347400 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 1563 348065 2019 Guadalajara        Belenes Suc. Belenes     649  MARTH
## 1564 348142 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 1565 348393 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 1566 348547 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 1567 348684 2019 Guadalajara        Belenes Suc. Belenes     774  ABARR
## 1568 348912 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 1569 348987 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 1570 349164 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 1571 349218 2019 Guadalajara        Belenes Suc. Belenes     845  ABARR
## 1572 349467 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 1573 349595 2019 Guadalajara        Belenes Suc. Belenes     913  RAMON
## 1574 349815 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 1575 350173 2019 Guadalajara        Belenes Suc. Belenes     958  BERTH
## 1576 350241 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 1577 350346 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 1578 350592 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 1579 350841 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 1580 351182 2019 Guadalajara        Belenes Suc. Belenes    1099  PABLO
## 1581 351506 2019 Guadalajara        Belenes Suc. Belenes    1149  ROSA 
## 1582 351569 2019 Guadalajara        Belenes Suc. Belenes    1162  OLGA 
## 1583 351639 2019 Guadalajara        Belenes Suc. Belenes    1167  EMERI
## 1584 351807 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 1585 351883 2019 Guadalajara        Belenes Suc. Belenes    1192  FELIP
## 1586 352328 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 1587 352656 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 1588 352725 2019 Guadalajara        Belenes Suc. Belenes    1347  JOSE 
## 1589 352789 2019 Guadalajara        Belenes Suc. Belenes    1350  MONIC
## 1590 352849 2019 Guadalajara        Belenes Suc. Belenes    1356  ANGEL
## 1591 352954 2019 Guadalajara        Belenes Suc. Belenes    1371  ABARR
## 1592 353143 2019 Guadalajara        Belenes Suc. Belenes    1385  MARIA
## 1593 353213 2019 Guadalajara        Belenes Suc. Belenes    1391  VICTO
## 1594 353488 2019 Guadalajara        Belenes Suc. Belenes    1470  AMPEL
## 1595 353559 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 1596 353681 2019 Guadalajara        Belenes Suc. Belenes    1492  MARGA
## 1597 353920 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 1598 354002 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 1599 354441 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 1600 354763 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 1601 354817 2019 Guadalajara        Belenes Suc. Belenes    1708  BREND
## 1602 354937 2019 Guadalajara        Belenes Suc. Belenes    1726  CARME
## 1603 355365 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 1604 355435 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 1605 355631 2019 Guadalajara        Belenes Suc. Belenes    1776  FERNA
## 1606 355750 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 1607 355831 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 1608 355905 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 1609 355978 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 1610 356101 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 1611 356209 2019 Guadalajara        Belenes Suc. Belenes    1895  JOSE 
## 1612 356435 2019 Guadalajara        Belenes Suc. Belenes    1931  HUMBE
## 1613 356509 2019 Guadalajara        Belenes Suc. Belenes    1940  LILIA
## 1614 356664 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 1615 356751 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 1616 356791 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 1617 357332 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 1618 357446 2019 Guadalajara        Belenes Suc. Belenes    2072  MARIA
## 1619 357576 2019 Guadalajara        Belenes Suc. Belenes    2104  LUZ R
## 1620 357601 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 1621 357682 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 1622 357752 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 1623 358110 2019 Guadalajara        Belenes Suc. Belenes    2151  MONIC
## 1624 358317 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 1625 358458 2019 Guadalajara        Belenes Suc. Belenes    2238  CECIL
## 1626 358500 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 1627 358867 2019 Guadalajara        Belenes Suc. Belenes    2273  GLORI
## 1628 359341 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 1629 359371 2019 Guadalajara        Belenes Suc. Belenes    2393  CARLO
## 1630 359429 2019 Guadalajara        Belenes Suc. Belenes    2402  ABARR
## 1631 359489 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 1632 359963 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 1633 360202 2019 Guadalajara        Belenes Suc. Belenes    2507  ALEJA
## 1634 360731 2019 Guadalajara        Belenes Suc. Belenes    2547  VIVIA
## 1635 360943 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 1636 361152 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 1637 361418 2019 Guadalajara        Belenes Suc. Belenes    2678  SAMUE
## 1638 361488 2019 Guadalajara        Belenes Suc. Belenes    2685  ANA L
## 1639 361539 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 1640 361626 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 1641 361768 2019 Guadalajara        Belenes Suc. Belenes    2710  MARTI
## 1642 361844 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 1643 361921 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 1644 362005 2019 Guadalajara        Belenes Suc. Belenes    2722  MARIA
## 1645 362029 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 1646 362096 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 1647 362277 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 1648 362346 2019 Guadalajara        Belenes Suc. Belenes    2749  ABARR
## 1649 362575 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 1650 362863 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 1651 363473 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 1652 363583 2019 Guadalajara        Belenes Suc. Belenes    2874  ESPER
## 1653 363653 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 1654 363978 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 1655 364124 2019 Guadalajara        Belenes Suc. Belenes    2928  CARME
## 1656 364189 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 1657 364274 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 1658 364409 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 1659 364816 2019 Guadalajara        Belenes Suc. Belenes    3059  ABARR
## 1660 364911 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 1661 364965 2019 Guadalajara        Belenes Suc. Belenes    3090  ELVIR
## 1662 365097 2019 Guadalajara        Belenes Suc. Belenes    3100  IRMA 
## 1663 365390 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 1664 365500 2019 Guadalajara        Belenes Suc. Belenes    3155  MARGA
## 1665 365540 2019 Guadalajara        Belenes Suc. Belenes    3176  MANUE
## 1666 365649 2019 Guadalajara        Belenes Suc. Belenes    3203  MARIA
## 1667 365709 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 1668 366192 2019 Guadalajara        Belenes Suc. Belenes       9  ALMA 
## 1669 366369 2019 Guadalajara        Belenes Suc. Belenes      18  ABARR
## 1670 366478 2019 Guadalajara        Belenes Suc. Belenes      26  ABARR
## 1671 366765 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1672 367001 2019 Guadalajara        Belenes Suc. Belenes    9397  EL CR
## 1673 367287 2019 Guadalajara        Belenes Suc. Belenes    6013  ABARR
## 1674 367419 2019 Guadalajara        Belenes Suc. Belenes    9641  CREME
## 1675 367631 2019 Guadalajara        Belenes Suc. Belenes    2299  ABARR
## 1676 367751 2019 Guadalajara        Belenes Suc. Belenes    3337  VINOS
## 1677 367811 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 1678 367900 2019 Guadalajara        Belenes Suc. Belenes    6721  BALDE
## 1679 367967 2019 Guadalajara        Belenes Suc. Belenes     412  ARMAN
## 1680 368022 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 1681 368237 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 1682 368396 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 1683 368617 2019 Guadalajara        Belenes Suc. Belenes    2534  FRANC
## 1684 368691 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 1685 368779 2019 Guadalajara        Belenes Suc. Belenes    2585  ADRIA
## 1686 368924 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 1687 368987 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 1688 369383 2019 Guadalajara        Belenes Suc. Belenes    2658  AMPAR
## 1689 369425 2019 Guadalajara        Belenes Suc. Belenes    2671  MARIA
## 1690 369464 2019 Guadalajara        Belenes Suc. Belenes    2672  IRMA 
## 1691 369749 2019 Guadalajara        Belenes Suc. Belenes    2737  ARSEN
## 1692 369782 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 1693 369924 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 1694 370000 2019 Guadalajara        Belenes Suc. Belenes    2815  ABARR
## 1695 370044 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 1696 370485 2019 Guadalajara        Belenes Suc. Belenes    2938  ERNES
## 1697 370600 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 1698 370672 2019 Guadalajara        Belenes Suc. Belenes    3008  YOLAN
## 1699 370772 2019 Guadalajara        Belenes Suc. Belenes    3014  MISCE
## 1700 370969 2019 Guadalajara        Belenes Suc. Belenes    3068  FRANC
## 1701 371138 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 1702 371206 2019 Guadalajara        Belenes Suc. Belenes    3081  IGNAC
## 1703 371362 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 1704 372186 2019 Guadalajara        Belenes Suc. Belenes    8321  ABARR
## 1705 372284 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 1706 372516 2019 Guadalajara        Belenes Suc. Belenes    1486  VERON
## 1707 372580 2019 Guadalajara        Belenes Suc. Belenes    1526  MISCE
## 1708 372651 2019 Guadalajara        Belenes Suc. Belenes    1759  MICEL
## 1709 372705 2019 Guadalajara        Belenes Suc. Belenes    2356  CARNI
## 1710 372939 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 1711 373000 2019 Guadalajara        Belenes Suc. Belenes    9427  HOGAR
## 1712 373089 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 1713 373308 2019 Guadalajara        Belenes Suc. Belenes    4647  MICEL
## 1714 373451 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 1715 373561 2019 Guadalajara        Belenes Suc. Belenes    1291  MICEL
## 1716 373671 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 1717 373747 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 1718 373834 2019 Guadalajara        Belenes Suc. Belenes    8526  MISCE
## 1719 373962 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 1720 374033 2019 Guadalajara        Belenes Suc. Belenes    5228  MICEL
## 1721 374100 2019 Guadalajara        Belenes Suc. Belenes    7439  MISCE
## 1722 374171 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 1723 374404 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 1724 374486 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 1725 374555 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 1726 374642 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 1727 374847 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 1728 374977 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 1729 375234 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 1730 375479 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 1731 375615 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 1732 375785 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 1733 375888 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1734 376142 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1735 376696 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1736 376850 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1737 376919 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1738 376994 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 1739 377100 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 1740 377191 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 1741 377295 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 1742 377379 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 1743 377589 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 1744 377775 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 1745 377867 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 1746 377952 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 1747 378092 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 1748 378169 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 1749 378251 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 1750 378344 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 1751 378559 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 1752 378797 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 1753 379010 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 1754 379090 2019 Guadalajara        Belenes Suc. Belenes    8912  SERGI
## 1755 379225 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 1756 379323 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 1757 379438 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 1758 379541 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 1759 379638 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 1760 379736 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 1761 379957 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 1762 380151 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 1763 380243 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 1764 380347 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 1765 380431 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 1766 380510 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 1767 380672 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 1768 380773 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 1769 380869 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 1770 380963 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 1771 381055 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 1772 381151 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 1773 381225 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 1774 381321 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 1775 381434 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 1776 381667 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 1777 381771 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 1778 382030 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 1779 382106 2019 Guadalajara        Belenes Suc. Belenes    9371  TERES
## 1780 382162 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 1781 382244 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 1782 382326 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 1783 382433 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 1784 382606 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 1785 382715 2019 Guadalajara        Belenes Suc. Belenes    9433  MARIA
## 1786 382748 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 1787 382975 2019 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 1788 383034 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 1789 383143 2019 Guadalajara        Belenes Suc. Belenes    9481  GLORI
## 1790 383237 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 1791 383431 2019 Guadalajara        Belenes Suc. Belenes    9501  MARIA
## 1792 383533 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 1793 383625 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 1794 383804 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 1795 384163 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 1796 384332 2019 Guadalajara        Belenes Suc. Belenes    9648  MARIA
## 1797 384412 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 1798 384503 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 1799 384596 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 1800 384819 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 1801 384880 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 1802 385050 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 1803 385134 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 1804 385218 2019 Guadalajara        Belenes Suc. Belenes    9768  ABARR
## 1805 385281 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 1806 385375 2019 Guadalajara        Belenes Suc. Belenes    9780  GILBE
## 1807 385525 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 1808 385616 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 1809 385826 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 1810 385925 2019 Guadalajara        Belenes Suc. Belenes    9844  ABARR
## 1811 386011 2019 Guadalajara        Belenes Suc. Belenes    9859  KRISH
## 1812 386093 2019 Guadalajara        Belenes Suc. Belenes    9867  ABARR
## 1813 386254 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 1814 386407 2019 Guadalajara        Belenes Suc. Belenes    9886  MARTH
## 1815 386657 2019 Guadalajara        Belenes Suc. Belenes    9908  ABARR
## 1816 386741 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 1817 387031 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 1818 387117 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 1819 387312 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 1820 387409 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 1821 387483 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 1822 387558 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 1823 387801 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 1824 387875 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 1825 387968 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 1826 388067 2019 Guadalajara        Belenes Suc. Belenes      49  ABARR
## 1827 388152 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 1828 388243 2019 Guadalajara        Belenes Suc. Belenes      66  MARIA
## 1829 388395 2019 Guadalajara        Belenes Suc. Belenes      82  KARLA
## 1830 388448 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 1831 388542 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 1832 388711 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 1833 388790 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 1834 388878 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 1835 388999 2019 Guadalajara        Belenes Suc. Belenes     114  LICOR
## 1836 389247 2019 Guadalajara        Belenes Suc. Belenes     129  ABARR
## 1837 389316 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 1838 389409 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 1839 389496 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 1840 389578 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 1841 389820 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 1842 389906 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 1843 389977 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 1844 390137 2019 Guadalajara        Belenes Suc. Belenes     216  JOSE 
## 1845 390191 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 1846 390264 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 1847 390349 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 1848 390525 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 1849 390591 2019 Guadalajara        Belenes Suc. Belenes     279  EMILI
## 1850 390643 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 1851 390739 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 1852 390839 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 1853 391173 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 1854 391370 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 1855 391467 2019 Guadalajara        Belenes Suc. Belenes     429  NORMA
## 1856 391572 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 1857 391667 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 1858 391756 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 1859 391833 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 1860 392068 2019 Guadalajara        Belenes Suc. Belenes     471  JORGE
## 1861 392159 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 1862 392228 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 1863 392372 2019 Guadalajara        Belenes Suc. Belenes     497  MARIA
## 1864 392547 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 1865 392709 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 1866 392814 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 1867 392961 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 1868 393055 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 1869 393150 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 1870 393229 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 1871 393278 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 1872 393373 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 1873 393456 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 1874 393525 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 1875 393590 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 1876 393677 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 1877 393770 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 1878 393883 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 1879 393979 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 1880 394075 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 1881 394166 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 1882 394248 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 1883 394332 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 1884 394421 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 1885 394570 2019 Guadalajara        Belenes Suc. Belenes     903  ABARR
## 1886 394645 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 1887 394741 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 1888 394817 2019 Guadalajara        Belenes Suc. Belenes     943  ABARR
## 1889 395067 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 1890 395170 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 1891 395241 2019 Guadalajara        Belenes Suc. Belenes    1004  MARIA
## 1892 395319 2019 Guadalajara        Belenes Suc. Belenes    1060  MARIA
## 1893 395464 2019 Guadalajara        Belenes Suc. Belenes    1067  MARTI
## 1894 395560 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 1895 395667 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 1896 395756 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 1897 395845 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 1898 395931 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 1899 396214 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 1900 396411 2019 Guadalajara        Belenes Suc. Belenes    1306  ABARR
## 1901 396496 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 1902 396603 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 1903 396668 2019 Guadalajara        Belenes Suc. Belenes    1332  ADRIA
## 1904 396781 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 1905 396867 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 1906 397045 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 1907 397131 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 1908 397226 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 1909 397293 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 1910 397356 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 1911 397436 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 1912 397599 2019 Guadalajara        Belenes Suc. Belenes    1460  MARIA
## 1913 397674 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 1914 397758 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 1915 397923 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 1916 398001 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 1917 398102 2019 Guadalajara        Belenes Suc. Belenes    1563  ROCIO
## 1918 398185 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 1919 398273 2019 Guadalajara        Belenes Suc. Belenes    1569  DENIS
## 1920 398332 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 1921 398433 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 1922 398514 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1923 398586 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 1924 398689 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 1925 398909 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 1926 398990 2019 Guadalajara        Belenes Suc. Belenes    1711  REYES
## 1927 399050 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 1928 399148 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 1929 399217 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 1930 399323 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 1931 399517 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 1932 399662 2019 Guadalajara        Belenes Suc. Belenes    1778  MOISE
## 1933 399756 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 1934 400016 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 1935 400120 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 1936 400211 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 1937 400298 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 1938 400405 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 1939 400505 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 1940 400580 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 1941 400662 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 1942 400760 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 1943 400850 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 1944 400937 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 1945 401019 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 1946 401127 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 1947 401222 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 1948 401299 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 1949 401369 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 1950 401447 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 1951 401536 2019 Guadalajara        Belenes Suc. Belenes    1944  ABARR
## 1952 401600 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 1953 401695 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 1954 401782 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 1955 401963 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 1956 402058 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 1957 402162 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 1958 402262 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 1959 402371 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 1960 402541 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 1961 402769 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 1962 402857 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 1963 403137 2019 Guadalajara        Belenes Suc. Belenes    2135  FRANC
## 1964 403262 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 1965 403354 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 1966 403542 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 1967 403984 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 1968 404058 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 1969 404269 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 1970 404367 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 1971 404452 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 1972 404552 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 1973 404652 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 1974 404740 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 1975 404794 2019 Guadalajara        Belenes Suc. Belenes    2321  ABARR
## 1976 404883 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 1977 405035 2019 Guadalajara        Belenes Suc. Belenes    2350  SANDR
## 1978 405169 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 1979 405249 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 1980 405322 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 1981 405421 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 1982 405608 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 1983 405926 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 1984 406016 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 1985 406255 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 1986 406326 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 1987 406372 2019 Guadalajara        Belenes Suc. Belenes    2540  ADRIA
## 1988 406536 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 1989 406644 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 1990 406720 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 1991 406805 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 1992 406922 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 1993 407014 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 1994 407273 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 1995 407575 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 1996 407664 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 1997 407752 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 1998 407887 2019 Guadalajara        Belenes Suc. Belenes    2824  MARIA
## 1999 408106 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 2000 408210 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 2001 408319 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 2002 408419 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 2003 408509 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 2004 408616 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 2005 408744 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 2006 408949 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 2007 409038 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 2008 409107 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 2009 409204 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 2010 409301 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 2011 409394 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 2012 409486 2019 Guadalajara        Belenes Suc. Belenes    3050  SUPER
## 2013 409631 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 2014 409693 2019 Guadalajara        Belenes Suc. Belenes    3069  MODEL
## 2015 409895 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 2016 410175 2019 Guadalajara        Belenes Suc. Belenes    3145  MARIA
## 2017 410470 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 2018 410621 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 2019 410719 2019 Guadalajara        Belenes Suc. Belenes    3185  INDAL
## 2020 410867 2019 Guadalajara        Belenes Suc. Belenes    3209  IRMA 
## 2021 411000 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 2022 411175 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 2023 411406 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 2024 411628 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 2025 411981 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 2026 412080 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 2027 412477 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 2028 412542 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 2029 412671 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 2030 412759 2019 Guadalajara        Belenes Suc. Belenes    2562  JAVIE
## 2031 412820 2019 Guadalajara        Belenes Suc. Belenes    2563  LUCIO
## 2032 413005 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 2033 413082 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 2034 413157 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 2035 413329 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 2036 413802 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 2037 413979 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 2038 414165 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 2039 414255 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 2040 414379 2019 Guadalajara        Belenes Suc. Belenes    2934  RICAR
## 2041 414431 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 2042 414521 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 2043 414648 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 2044 414722 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 2045 414776 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 2046 414850 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 2047 414951 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 2048 415105 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 2049 415206 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 2050 415296 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 2051 415334 2019 Guadalajara        Belenes Suc. Belenes    3200  ABARR
## 2052 415406 2019 Guadalajara        Belenes Suc. Belenes    3256  JOSE 
## 2053 415563 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 2054 415633 2019 Guadalajara        Belenes Suc. Belenes    3279  ABARR
## 2055 415711 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 2056 415909 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 2057 416064 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 2058 416164 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 2059 200226 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2060 200463 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2061 200684 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2062 201627 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2063 201866 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 2064 202358 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2065 202610 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2066 202811 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2067 202924 2018 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2068 203209 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 2069 203409 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2070 203627 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2071 204010 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2072 204426 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 2073 204949 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 2074 205055 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 2075 205160 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 2076 205279 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2077 205583 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2078 205804 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2079 205914 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 2080 206113 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2081 206349 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 2082 206569 2018 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2083 207016 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2084 207429 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2085 207800 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 2086 207887 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 2087 207993 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2088 208097 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2089 208216 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2090 208870 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2091 209568 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 2092 209786 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 2093 210002 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 2094 210738 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 2095 211019 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 2096 211746 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2097 211949 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2098 212379 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 2099 212846 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2100 213092 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 2101 213919 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2102 214341 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2103 245576 2018 Guadalajara        Belenes Suc. Belenes    9281  JUAN 
## 2104 246389 2018 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 2105 247457 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 2106 247797 2018 Guadalajara        Belenes Suc. Belenes     179  MINI 
## 2107 249747 2018 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 2108 250622 2018 Guadalajara        Belenes Suc. Belenes    1064  SOCOR
## 2109 253284 2018 Guadalajara        Belenes Suc. Belenes    2252  ARTUR
## 2110 253373 2018 Guadalajara        Belenes Suc. Belenes    2322  JOSE 
## 2111 254855 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2112 254915 2018 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 2113 254966 2018 Guadalajara        Belenes Suc. Belenes    2787  JESUS
## 2114 255079 2018 Guadalajara        Belenes Suc. Belenes    2808  RAMIR
## 2115 255464 2018 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 2116 255735 2018 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 2117 255848 2018 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 2118 256316 2018 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 2119 257965 2018 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 2120 259304 2018 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 2121 259679 2018 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 2122 259969 2018 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 2123 260416 2018 Guadalajara        Belenes Suc. Belenes    3233  MARIA
## 2124 260479 2018 Guadalajara        Belenes Suc. Belenes    3986  NOEMI
## 2125 260989 2018 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 2126 261224 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2127 261629 2018 Guadalajara        Belenes Suc. Belenes    5139  MISCE
## 2128 304798 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2129 305532 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 2130 306698 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2131 306805 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2132 307471 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2133 307846 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2134 308483 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 2135 308970 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2136 309145 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 2137 309710 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2138 310125 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2139 310328 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2140 310539 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2141 310925 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2142 311385 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2143 311494 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2144 311603 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2145 311859 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2146 312601 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 2147 312961 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2148 314319 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2149 314399 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 2150 314999 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2151 315296 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 2152 317125 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2153 318856 2019 Guadalajara        Belenes Suc. Belenes    9120  MARIC
## 2154 319871 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 2155 320958 2019 Guadalajara        Belenes Suc. Belenes     222  FLOR 
## 2156 322085 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 2157 322460 2019 Guadalajara        Belenes Suc. Belenes     945  LUCIA
## 2158 325146 2019 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 2159 325928 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2160 326402 2019 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 2161 327031 2019 Guadalajara        Belenes Suc. Belenes    3230  ADOLF
## 2162 327345 2019 Guadalajara        Belenes Suc. Belenes    5488  DON M
## 2163 327745 2019 Guadalajara        Belenes Suc. Belenes     912  FARMA
## 2164 328203 2019 Guadalajara        Belenes Suc. Belenes    2829  LETIC
## 2165 328332 2019 Guadalajara        Belenes Suc. Belenes    2933  MARIA
## 2166 329115 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 2167 329823 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2168 329894 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 2169 330106 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 2170 331127 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2171 332286 2019 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 2172 332794 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 2173 333051 2019 Guadalajara        Belenes Suc. Belenes    8130  MODEL
## 2174 335523 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 2175 337872 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 2176 338320 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 2177 339109 2019 Guadalajara        Belenes Suc. Belenes    9302  ISAUR
## 2178 340201 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 2179 340683 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 2180 341681 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 2181 341908 2019 Guadalajara        Belenes Suc. Belenes    9726  RICAR
## 2182 342413 2019 Guadalajara        Belenes Suc. Belenes    9788  ANTON
## 2183 342514 2019 Guadalajara        Belenes Suc. Belenes    9792  RAMON
## 2184 343143 2019 Guadalajara        Belenes Suc. Belenes    9871  ABARR
## 2185 343656 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 2186 343754 2019 Guadalajara        Belenes Suc. Belenes    9971  JOSE 
## 2187 343883 2019 Guadalajara        Belenes Suc. Belenes    9999  ROSAL
## 2188 343938 2019 Guadalajara        Belenes Suc. Belenes      14  ELIZA
## 2189 343995 2019 Guadalajara        Belenes Suc. Belenes      20  MARIA
## 2190 344135 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 2191 344185 2019 Guadalajara        Belenes Suc. Belenes      34  MARIA
## 2192 344345 2019 Guadalajara        Belenes Suc. Belenes      44  JOSE 
## 2193 344478 2019 Guadalajara        Belenes Suc. Belenes      71  ALEJA
## 2194 344711 2019 Guadalajara        Belenes Suc. Belenes      91  ANA M
## 2195 344920 2019 Guadalajara        Belenes Suc. Belenes     105  VERON
## 2196 345226 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 2197 347157 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 2198 347330 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 2199 348774 2019 Guadalajara        Belenes Suc. Belenes     816  FELIP
## 2200 349687 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 2201 350347 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 2202 350783 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 2203 352435 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 2204 352552 2019 Guadalajara        Belenes Suc. Belenes    1304  DANIE
## 2205 353921 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 2206 355436 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 2207 355751 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 2208 359964 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2209 360056 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 2210 360393 2019 Guadalajara        Belenes Suc. Belenes    2523  ROSA 
## 2211 362576 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 2212 362691 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 2213 363080 2019 Guadalajara        Belenes Suc. Belenes    2822  DELIA
## 2214 363654 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 2215 363712 2019 Guadalajara        Belenes Suc. Belenes    2887  M HER
## 2216 363753 2019 Guadalajara        Belenes Suc. Belenes    2893  CUBET
## 2217 363802 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 2218 363933 2019 Guadalajara        Belenes Suc. Belenes    2917  LEONA
## 2219 364275 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 2220 364328 2019 Guadalajara        Belenes Suc. Belenes    2978  PATRI
## 2221 364912 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 2222 365888 2019 Guadalajara        Belenes Suc. Belenes    3232  RAMON
## 2223 365947 2019 Guadalajara        Belenes Suc. Belenes    3244  GENAR
## 2224 367217 2019 Guadalajara        Belenes Suc. Belenes    1733  LA CA
## 2225 367812 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 2226 368023 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 2227 368988 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 2228 369159 2019 Guadalajara        Belenes Suc. Belenes    2621  DANIE
## 2229 371139 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 2230 371773 2019 Guadalajara        Belenes Suc. Belenes    7821  MISCE
## 2231 372076 2019 Guadalajara        Belenes Suc. Belenes    8289  MARIA
## 2232 373452 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 2233 373963 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 2234 374172 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 2235 374643 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 2236 374777 2019 Guadalajara        Belenes Suc. Belenes    1053  ABARR
## 2237 377440 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2238 379011 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 2239 379439 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 2240 379737 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 2241 381056 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 2242 381668 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 2243 382245 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 2244 382327 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 2245 382749 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 2246 382906 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 2247 383035 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 2248 383534 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 2249 383805 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 2250 384597 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 2251 384881 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 2252 385051 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 2253 385135 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 2254 385282 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 2255 385827 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 2256 386255 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 2257 387230 2019 Guadalajara        Belenes Suc. Belenes    9975  ALEJA
## 2258 387802 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 2259 387969 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 2260 388449 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 2261 388643 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 2262 389821 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 2263 389978 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 2264 390740 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 2265 391174 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 2266 391757 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 2267 393591 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 2268 394422 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 2269 394646 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 2270 395068 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 2271 395757 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 2272 396497 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 2273 396868 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 2274 398333 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 2275 399218 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 2276 400212 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 2277 401020 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 2278 401601 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 2279 402626 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 2280 404884 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 2281 406806 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 2282 408211 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 2283 408420 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 2284 410368 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 2285 411001 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 2286 411176 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 2287 411407 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 2288 411629 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 2289 412146 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2290 413553 2019 Guadalajara        Belenes Suc. Belenes    2630  GUILL
## 2291 413724 2019 Guadalajara        Belenes Suc. Belenes    2709  CATAL
## 2292 414256 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 2293 414649 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 2294 414952 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 2295 415207 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 2296 415297 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 2297 415712 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 2298 416065 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 2299 200112 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 2300 200227 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2301 200339 2018 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 2302 200464 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2303 200578 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 2304 200685 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2305 200785 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 2306 201315 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 2307 201416 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 2308 201628 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2309 201753 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 2310 201987 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 2311 202270 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 2312 202359 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2313 202611 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2314 202812 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2315 203105 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 2316 203410 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2317 203628 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2318 203812 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 2319 204011 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2320 204840 2018 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 2321 205584 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2322 205805 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2323 206114 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2324 206248 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 2325 206793 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2326 207017 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2327 207684 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 2328 208217 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2329 208411 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 2330 208519 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2331 208871 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2332 209685 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2333 210210 2018 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 2334 210409 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 2335 210907 2018 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 2336 211020 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 2337 211224 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2338 211747 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2339 211950 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2340 212847 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2341 213181 2018 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 2342 213426 2018 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 2343 213920 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2344 214118 2018 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 2345 214342 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2346 243733 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 2347 243843 2018 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 2348 244648 2018 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 2349 252687 2018 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 2350 254856 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2351 257737 2018 Guadalajara        Belenes Suc. Belenes    2685  RAUL 
## 2352 258882 2018 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 2353 260106 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2354 262178 2018 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 2355 304126 2019 Guadalajara        Belenes Suc. Belenes    7737  ABARR
## 2356 304194 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 2357 304280 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 2358 304390 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2359 304490 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 2360 304596 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2361 304696 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 2362 304799 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2363 304893 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 2364 304990 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 2365 305065 2019 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 2366 305212 2019 Guadalajara        Belenes Suc. Belenes    8691  GUADA
## 2367 305274 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 2368 305347 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 2369 305533 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 2370 305619 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2371 305733 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 2372 305836 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 2373 305952 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 2374 306143 2019 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 2375 306211 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 2376 306288 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2377 306399 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 2378 306525 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2379 306699 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2380 306806 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2381 306976 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 2382 307070 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 2383 307254 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2384 307368 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 2385 307472 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2386 307655 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 2387 307740 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 2388 307847 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2389 308040 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 2390 308149 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 2391 308245 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 2392 308484 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 2393 308583 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 2394 308669 2019 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 2395 308971 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2396 309146 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 2397 309245 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2398 309440 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2399 309542 2019 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 2400 309623 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 2401 309711 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2402 309827 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 2403 309930 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 2404 310026 2019 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 2405 310126 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2406 310214 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 2407 310329 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2408 310540 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2409 310816 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 2410 310926 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2411 311043 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 2412 311222 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 2413 311294 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 2414 311386 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2415 311495 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2416 311604 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2417 311674 2019 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 2418 311860 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2419 311969 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 2420 312076 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 2421 312205 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2422 312304 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 2423 312410 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 2424 312512 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 2425 312602 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 2426 312849 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 2427 312962 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2428 313060 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 2429 313155 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 2430 313246 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 2431 313430 2019 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 2432 313604 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 2433 313784 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 2434 313890 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 2435 314043 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 2436 314320 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2437 314400 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 2438 314499 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 2439 314625 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 2440 314805 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2441 314914 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 2442 315000 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2443 315115 2019 Guadalajara        Belenes Suc. Belenes    2759  JOSE 
## 2444 315200 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 2445 315381 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 2446 315486 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 2447 315561 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 2448 315650 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 2449 315734 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 2450 315795 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2451 315893 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 2452 316071 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 2453 316230 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 2454 316296 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 2455 316431 2019 Guadalajara        Belenes Suc. Belenes    2516  JOSE 
## 2456 316692 2019 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 2457 316727 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2458 316835 2019 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 2459 316925 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 2460 317005 2019 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 2461 317066 2019 Guadalajara        Belenes Suc. Belenes    3087  JOSE 
## 2462 317126 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2463 317336 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 2464 317589 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 2465 317684 2019 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 2466 317761 2019 Guadalajara        Belenes Suc. Belenes    7987  PRIMI
## 2467 318135 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 2468 318291 2019 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 2469 318625 2019 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 2470 318935 2019 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 2471 319731 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 2472 319872 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 2473 320416 2019 Guadalajara        Belenes Suc. Belenes    9964  JOSE 
## 2474 320449 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 2475 320535 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 2476 320821 2019 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 2477 320918 2019 Guadalajara        Belenes Suc. Belenes     209  MARTH
## 2478 320959 2019 Guadalajara        Belenes Suc. Belenes     222  FLOR 
## 2479 321014 2019 Guadalajara        Belenes Suc. Belenes     268  CIPRI
## 2480 321224 2019 Guadalajara        Belenes Suc. Belenes     453  JESUS
## 2481 321610 2019 Guadalajara        Belenes Suc. Belenes     579  ROSAR
## 2482 321749 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 2483 322086 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 2484 322265 2019 Guadalajara        Belenes Suc. Belenes     821  MONIC
## 2485 322309 2019 Guadalajara        Belenes Suc. Belenes     837  JOSEF
## 2486 322364 2019 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 2487 322513 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 2488 322825 2019 Guadalajara        Belenes Suc. Belenes    1079  SANDR
## 2489 322957 2019 Guadalajara        Belenes Suc. Belenes    1165  AMALI
## 2490 323042 2019 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 2491 323275 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 2492 323630 2019 Guadalajara        Belenes Suc. Belenes    1433  EVARI
## 2493 323782 2019 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 2494 324386 2019 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 2495 324537 2019 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 2496 324614 2019 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 2497 324717 2019 Guadalajara        Belenes Suc. Belenes    2112  INDAL
## 2498 325066 2019 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 2499 325661 2019 Guadalajara        Belenes Suc. Belenes    2661  MARIA
## 2500 325731 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 2501 325772 2019 Guadalajara        Belenes Suc. Belenes    2734  OSCAR
## 2502 325862 2019 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 2503 325897 2019 Guadalajara        Belenes Suc. Belenes    2765  KEBEL
## 2504 326166 2019 Guadalajara        Belenes Suc. Belenes    2826  MARIA
## 2505 326255 2019 Guadalajara        Belenes Suc. Belenes    2842  MARIA
## 2506 326292 2019 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 2507 326626 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 2508 326682 2019 Guadalajara        Belenes Suc. Belenes    3018  ABARR
## 2509 326897 2019 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 2510 327217 2019 Guadalajara        Belenes Suc. Belenes    1059  EL PO
## 2511 327267 2019 Guadalajara        Belenes Suc. Belenes    8597  CERVE
## 2512 327603 2019 Guadalajara        Belenes Suc. Belenes    4835  FRANC
## 2513 327676 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 2514 327857 2019 Guadalajara        Belenes Suc. Belenes    2566  ANTON
## 2515 328030 2019 Guadalajara        Belenes Suc. Belenes    2685  RAUL 
## 2516 328064 2019 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 2517 328248 2019 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 2518 328276 2019 Guadalajara        Belenes Suc. Belenes    2911  ELIGI
## 2519 328366 2019 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 2520 328455 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 2521 328653 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 2522 328891 2019 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 2523 329482 2019 Guadalajara        Belenes Suc. Belenes    3598  MISCE
## 2524 329824 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2525 330107 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 2526 330538 2019 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 2527 331128 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2528 331386 2019 Guadalajara        Belenes Suc. Belenes      17  DEPOS
## 2529 331828 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 2530 332287 2019 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 2531 332542 2019 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 2532 332624 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 2533 332795 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 2534 333031 2019 Guadalajara        Belenes Suc. Belenes    8122  FRUTA
## 2535 333608 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 2536 333666 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 2537 333726 2019 Guadalajara        Belenes Suc. Belenes    6103  CREME
## 2538 334107 2019 Guadalajara        Belenes Suc. Belenes    7673  HUMBE
## 2539 334251 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 2540 334543 2019 Guadalajara        Belenes Suc. Belenes    7794  ABARR
## 2541 334980 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 2542 335108 2019 Guadalajara        Belenes Suc. Belenes    7867  EL CO
## 2543 335168 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 2544 335287 2019 Guadalajara        Belenes Suc. Belenes    7893  MISCE
## 2545 335524 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 2546 335599 2019 Guadalajara        Belenes Suc. Belenes    8076  ABARR
## 2547 335783 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 2548 335831 2019 Guadalajara        Belenes Suc. Belenes    8142  ABARR
## 2549 335891 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 2550 336008 2019 Guadalajara        Belenes Suc. Belenes    8164  ABARR
## 2551 336312 2019 Guadalajara        Belenes Suc. Belenes    8387  FRANC
## 2552 336363 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 2553 336433 2019 Guadalajara        Belenes Suc. Belenes    8477  SUPER
## 2554 337135 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 2555 337222 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 2556 337301 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 2557 337368 2019 Guadalajara        Belenes Suc. Belenes    8969  HILAR
## 2558 337455 2019 Guadalajara        Belenes Suc. Belenes    8986  JOSE 
## 2559 337493 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 2560 337694 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 2561 337799 2019 Guadalajara        Belenes Suc. Belenes    9065  ADRI 
## 2562 337873 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 2563 338237 2019 Guadalajara        Belenes Suc. Belenes    9122  MARIA
## 2564 338321 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 2565 338394 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 2566 338483 2019 Guadalajara        Belenes Suc. Belenes    9170  JORGE
## 2567 338573 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 2568 338778 2019 Guadalajara        Belenes Suc. Belenes    9257  BERTH
## 2569 338843 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 2570 338904 2019 Guadalajara        Belenes Suc. Belenes    9280  MISCE
## 2571 339041 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 2572 339171 2019 Guadalajara        Belenes Suc. Belenes    9304  TORIB
## 2573 339354 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 2574 339485 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 2575 339666 2019 Guadalajara        Belenes Suc. Belenes    9386  MARIA
## 2576 339769 2019 Guadalajara        Belenes Suc. Belenes    9392  ESPER
## 2577 340081 2019 Guadalajara        Belenes Suc. Belenes    9427  MARGA
## 2578 340202 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 2579 340326 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 2580 340494 2019 Guadalajara        Belenes Suc. Belenes    9544  INOCE
## 2581 340763 2019 Guadalajara        Belenes Suc. Belenes    9558  MARIA
## 2582 340868 2019 Guadalajara        Belenes Suc. Belenes    9581  SILVI
## 2583 340927 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 2584 341180 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 2585 341317 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 2586 341436 2019 Guadalajara        Belenes Suc. Belenes    9650  MARIA
## 2587 341518 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 2588 341682 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 2589 341742 2019 Guadalajara        Belenes Suc. Belenes    9712  MARIA
## 2590 342032 2019 Guadalajara        Belenes Suc. Belenes    9753  ABARR
## 2591 342196 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 2592 342255 2019 Guadalajara        Belenes Suc. Belenes    9773  JUAN 
## 2593 342344 2019 Guadalajara        Belenes Suc. Belenes    9782  MARIA
## 2594 342414 2019 Guadalajara        Belenes Suc. Belenes    9788  ANTON
## 2595 342812 2019 Guadalajara        Belenes Suc. Belenes    9833  APOLI
## 2596 342960 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 2597 343021 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 2598 343096 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 2599 343300 2019 Guadalajara        Belenes Suc. Belenes    9900  MARIA
## 2600 343576 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 2601 343657 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 2602 343700 2019 Guadalajara        Belenes Suc. Belenes    9970  ESTHE
## 2603 343755 2019 Guadalajara        Belenes Suc. Belenes    9971  JOSE 
## 2604 344010 2019 Guadalajara        Belenes Suc. Belenes      21  TERES
## 2605 344136 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 2606 345039 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 2607 345127 2019 Guadalajara        Belenes Suc. Belenes     125  ABARR
## 2608 345227 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 2609 345288 2019 Guadalajara        Belenes Suc. Belenes     156  MARTH
## 2610 345356 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 2611 345422 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 2612 345484 2019 Guadalajara        Belenes Suc. Belenes     162  ALICI
## 2613 345533 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 2614 345572 2019 Guadalajara        Belenes Suc. Belenes     176  ABARR
## 2615 345633 2019 Guadalajara        Belenes Suc. Belenes     178  ABARR
## 2616 345759 2019 Guadalajara        Belenes Suc. Belenes     205  ABARR
## 2617 345861 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 2618 345939 2019 Guadalajara        Belenes Suc. Belenes     259  MARIA
## 2619 346209 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 2620 346378 2019 Guadalajara        Belenes Suc. Belenes     360  ANITA
## 2621 346418 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 2622 346570 2019 Guadalajara        Belenes Suc. Belenes     397  FRANC
## 2623 346706 2019 Guadalajara        Belenes Suc. Belenes     441  ALICI
## 2624 346755 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 2625 346873 2019 Guadalajara        Belenes Suc. Belenes     448  EL DK
## 2626 346950 2019 Guadalajara        Belenes Suc. Belenes     455  IRMA 
## 2627 347010 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 2628 347331 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 2629 347611 2019 Guadalajara        Belenes Suc. Belenes     587  YENI 
## 2630 347671 2019 Guadalajara        Belenes Suc. Belenes     604  J ROS
## 2631 348002 2019 Guadalajara        Belenes Suc. Belenes     646  ADALB
## 2632 348143 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 2633 348333 2019 Guadalajara        Belenes Suc. Belenes     713  SOFIA
## 2634 348394 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 2635 348482 2019 Guadalajara        Belenes Suc. Belenes     733  JUANA
## 2636 348548 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 2637 348647 2019 Guadalajara        Belenes Suc. Belenes     770  FERNA
## 2638 348825 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 2639 348913 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 2640 348988 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 2641 349165 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 2642 349426 2019 Guadalajara        Belenes Suc. Belenes     871  GUSTA
## 2643 349468 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 2644 349688 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 2645 349816 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 2646 350242 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 2647 350348 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 2648 350593 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 2649 350784 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 2650 351246 2019 Guadalajara        Belenes Suc. Belenes    1100  ROSA 
## 2651 351741 2019 Guadalajara        Belenes Suc. Belenes    1177  OLIVI
## 2652 351808 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 2653 351884 2019 Guadalajara        Belenes Suc. Belenes    1192  FELIP
## 2654 352436 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 2655 352657 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 2656 352726 2019 Guadalajara        Belenes Suc. Belenes    1347  JOSE 
## 2657 352911 2019 Guadalajara        Belenes Suc. Belenes    1358  JUAN 
## 2658 353001 2019 Guadalajara        Belenes Suc. Belenes    1375  BEATR
## 2659 353333 2019 Guadalajara        Belenes Suc. Belenes    1432  VINOS
## 2660 353560 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 2661 353682 2019 Guadalajara        Belenes Suc. Belenes    1492  MARGA
## 2662 353736 2019 Guadalajara        Belenes Suc. Belenes    1499  IVAN 
## 2663 353922 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 2664 354442 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 2665 354764 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 2666 354869 2019 Guadalajara        Belenes Suc. Belenes    1722  LAGRO
## 2667 355366 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 2668 355437 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 2669 355632 2019 Guadalajara        Belenes Suc. Belenes    1776  FERNA
## 2670 355752 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 2671 355832 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 2672 355906 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 2673 355979 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 2674 356102 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 2675 356286 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 2676 356365 2019 Guadalajara        Belenes Suc. Belenes    1926  MARIA
## 2677 356510 2019 Guadalajara        Belenes Suc. Belenes    1940  LILIA
## 2678 356665 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 2679 356752 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 2680 356792 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 2681 356956 2019 Guadalajara        Belenes Suc. Belenes    1992  VINOS
## 2682 357010 2019 Guadalajara        Belenes Suc. Belenes    1999  ABARR
## 2683 357333 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 2684 357474 2019 Guadalajara        Belenes Suc. Belenes    2073  ABARR
## 2685 357533 2019 Guadalajara        Belenes Suc. Belenes    2076  CELIA
## 2686 357577 2019 Guadalajara        Belenes Suc. Belenes    2104  LUZ R
## 2687 357602 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 2688 357683 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 2689 357753 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 2690 357837 2019 Guadalajara        Belenes Suc. Belenes    2126  JOSE 
## 2691 358398 2019 Guadalajara        Belenes Suc. Belenes    2232  ABARR
## 2692 358501 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 2693 358608 2019 Guadalajara        Belenes Suc. Belenes    2245  JOSE 
## 2694 358663 2019 Guadalajara        Belenes Suc. Belenes    2246  RAUL 
## 2695 358733 2019 Guadalajara        Belenes Suc. Belenes    2260  MISCE
## 2696 358806 2019 Guadalajara        Belenes Suc. Belenes    2272  ALFRE
## 2697 358868 2019 Guadalajara        Belenes Suc. Belenes    2273  GLORI
## 2698 359342 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 2699 359372 2019 Guadalajara        Belenes Suc. Belenes    2393  CARLO
## 2700 359430 2019 Guadalajara        Belenes Suc. Belenes    2402  ABARR
## 2701 359490 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 2702 359655 2019 Guadalajara        Belenes Suc. Belenes    2466  FELIC
## 2703 359729 2019 Guadalajara        Belenes Suc. Belenes    2467  ABARR
## 2704 359965 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2705 360057 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 2706 360246 2019 Guadalajara        Belenes Suc. Belenes    2509  ANA R
## 2707 360516 2019 Guadalajara        Belenes Suc. Belenes    2528  OBSEB
## 2708 360655 2019 Guadalajara        Belenes Suc. Belenes    2543  ABARR
## 2709 360802 2019 Guadalajara        Belenes Suc. Belenes    2551  ABARR
## 2710 360880 2019 Guadalajara        Belenes Suc. Belenes    2567  MARTH
## 2711 360944 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 2712 361540 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 2713 361627 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 2714 361707 2019 Guadalajara        Belenes Suc. Belenes    2709  JOSEF
## 2715 361845 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 2716 361922 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 2717 362006 2019 Guadalajara        Belenes Suc. Belenes    2722  MARIA
## 2718 362030 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 2719 362097 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 2720 362173 2019 Guadalajara        Belenes Suc. Belenes    2729  FRANC
## 2721 362278 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 2722 362522 2019 Guadalajara        Belenes Suc. Belenes    2764  ALBER
## 2723 362577 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 2724 362692 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 2725 362864 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 2726 363180 2019 Guadalajara        Belenes Suc. Belenes    2827  MARIA
## 2727 363223 2019 Guadalajara        Belenes Suc. Belenes    2841  GILBE
## 2728 363474 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 2729 363979 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 2730 364329 2019 Guadalajara        Belenes Suc. Belenes    2978  PATRI
## 2731 364586 2019 Guadalajara        Belenes Suc. Belenes    3028  CREME
## 2732 365301 2019 Guadalajara        Belenes Suc. Belenes    3133  MARIA
## 2733 365433 2019 Guadalajara        Belenes Suc. Belenes    3148  GLORI
## 2734 365541 2019 Guadalajara        Belenes Suc. Belenes    3176  MANUE
## 2735 365599 2019 Guadalajara        Belenes Suc. Belenes    3192  JOSE 
## 2736 365710 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 2737 366079 2019 Guadalajara        Belenes Suc. Belenes    3268  ABELI
## 2738 366265 2019 Guadalajara        Belenes Suc. Belenes      11  MARIA
## 2739 366422 2019 Guadalajara        Belenes Suc. Belenes      19  MARTH
## 2740 366688 2019 Guadalajara        Belenes Suc. Belenes    1040  ABARR
## 2741 367002 2019 Guadalajara        Belenes Suc. Belenes    9397  EL CR
## 2742 367234 2019 Guadalajara        Belenes Suc. Belenes    5493  ABARR
## 2743 367420 2019 Guadalajara        Belenes Suc. Belenes    9641  CREME
## 2744 367531 2019 Guadalajara        Belenes Suc. Belenes    2252  ABARR
## 2745 367901 2019 Guadalajara        Belenes Suc. Belenes    6721  BALDE
## 2746 368024 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 2747 368238 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 2748 368397 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 2749 368463 2019 Guadalajara        Belenes Suc. Belenes    2498  TADEO
## 2750 368692 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 2751 368925 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 2752 368989 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 2753 369085 2019 Guadalajara        Belenes Suc. Belenes    2615  ABARR
## 2754 369160 2019 Guadalajara        Belenes Suc. Belenes    2621  DANIE
## 2755 369384 2019 Guadalajara        Belenes Suc. Belenes    2658  AMPAR
## 2756 369465 2019 Guadalajara        Belenes Suc. Belenes    2672  IRMA 
## 2757 369853 2019 Guadalajara        Belenes Suc. Belenes    2756  FAUST
## 2758 369925 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 2759 370045 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 2760 370401 2019 Guadalajara        Belenes Suc. Belenes    2909  ANGEL
## 2761 370548 2019 Guadalajara        Belenes Suc. Belenes    2944  ANGEL
## 2762 370601 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 2763 370717 2019 Guadalajara        Belenes Suc. Belenes    3012  DOLOR
## 2764 370773 2019 Guadalajara        Belenes Suc. Belenes    3014  MISCE
## 2765 370892 2019 Guadalajara        Belenes Suc. Belenes    3043  ALSA 
## 2766 371083 2019 Guadalajara        Belenes Suc. Belenes    3077  RODRI
## 2767 371140 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 2768 371306 2019 Guadalajara        Belenes Suc. Belenes    3128  FERNA
## 2769 371363 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 2770 371450 2019 Guadalajara        Belenes Suc. Belenes    3161  NORMA
## 2771 371579 2019 Guadalajara        Belenes Suc. Belenes    3174  FRUTA
## 2772 371774 2019 Guadalajara        Belenes Suc. Belenes    7821  MISCE
## 2773 372187 2019 Guadalajara        Belenes Suc. Belenes    8321  ABARR
## 2774 372285 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 2775 372581 2019 Guadalajara        Belenes Suc. Belenes    1526  MISCE
## 2776 372706 2019 Guadalajara        Belenes Suc. Belenes    2356  CARNI
## 2777 372752 2019 Guadalajara        Belenes Suc. Belenes    2736  ABARR
## 2778 372822 2019 Guadalajara        Belenes Suc. Belenes    9398  MISCE
## 2779 372940 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 2780 373090 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 2781 373382 2019 Guadalajara        Belenes Suc. Belenes    5139  VINOS
## 2782 373453 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 2783 373562 2019 Guadalajara        Belenes Suc. Belenes    1291  MICEL
## 2784 373672 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 2785 373748 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 2786 374101 2019 Guadalajara        Belenes Suc. Belenes    7439  MISCE
## 2787 374173 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 2788 374328 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 2789 374405 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 2790 374487 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 2791 374556 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 2792 374644 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 2793 374848 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 2794 374909 2019 Guadalajara        Belenes Suc. Belenes    1518  MA EL
## 2795 374978 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 2796 375058 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 2797 375147 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 2798 375235 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 2799 375392 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 2800 375480 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 2801 375694 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 2802 375786 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 2803 375889 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 2804 375997 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 2805 376143 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 2806 376396 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 2807 376697 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 2808 376772 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 2809 376851 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 2810 376920 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2811 376995 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2812 377101 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2813 377192 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2814 377380 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2815 377510 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2816 377590 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2817 377659 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2818 377699 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2819 377776 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2820 377868 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2821 377897 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2822 378044 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 2823 378093 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 2824 378170 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 2825 378252 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 2826 378345 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 2827 378405 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 2828 378560 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 2829 378798 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 2830 378913 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 2831 379012 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 2832 379140 2019 Guadalajara        Belenes Suc. Belenes    8917  RAFAE
## 2833 379324 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 2834 379440 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 2835 379542 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 2836 379639 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 2837 379738 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 2838 379890 2019 Guadalajara        Belenes Suc. Belenes    9029  JOSE 
## 2839 379958 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 2840 380244 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 2841 380348 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 2842 380673 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 2843 380774 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 2844 380870 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 2845 380964 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 2846 381057 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 2847 381152 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 2848 381226 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 2849 381322 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 2850 381435 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 2851 381504 2019 Guadalajara        Belenes Suc. Belenes    9250  ABARR
## 2852 381669 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 2853 381772 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 2854 382163 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 2855 382246 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 2856 382328 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 2857 382434 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 2858 382525 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 2859 382607 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 2860 382750 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 2861 382907 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 2862 383036 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 2863 383238 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 2864 383464 2019 Guadalajara        Belenes Suc. Belenes    9505  FAUST
## 2865 383535 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 2866 383626 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 2867 383721 2019 Guadalajara        Belenes Suc. Belenes    9549  DONOV
## 2868 383893 2019 Guadalajara        Belenes Suc. Belenes    9578  MARIA
## 2869 384164 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 2870 384413 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 2871 384504 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 2872 384598 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 2873 384752 2019 Guadalajara        Belenes Suc. Belenes    9744  JUANA
## 2874 384820 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 2875 384882 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 2876 385136 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 2877 385283 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 2878 385617 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 2879 385828 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 2880 386094 2019 Guadalajara        Belenes Suc. Belenes    9867  ABARR
## 2881 386256 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 2882 386350 2019 Guadalajara        Belenes Suc. Belenes    9885  SIX S
## 2883 386475 2019 Guadalajara        Belenes Suc. Belenes    9889  ABARR
## 2884 386742 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 2885 387118 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 2886 387231 2019 Guadalajara        Belenes Suc. Belenes    9975  ALEJA
## 2887 387313 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 2888 387410 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 2889 387484 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 2890 387559 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 2891 387659 2019 Guadalajara        Belenes Suc. Belenes    9997  RICAR
## 2892 387876 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 2893 387970 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 2894 388068 2019 Guadalajara        Belenes Suc. Belenes      49  ABARR
## 2895 388153 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 2896 388450 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 2897 388543 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 2898 388644 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 2899 388712 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 2900 388791 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 2901 388879 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 2902 389000 2019 Guadalajara        Belenes Suc. Belenes     114  LICOR
## 2903 389317 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 2904 389410 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 2905 389497 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 2906 389579 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 2907 389657 2019 Guadalajara        Belenes Suc. Belenes     189  ARNUL
## 2908 389735 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 2909 389822 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 2910 389907 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 2911 389979 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 2912 390192 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 2913 390265 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 2914 390350 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 2915 390438 2019 Guadalajara        Belenes Suc. Belenes     240  FELIP
## 2916 390644 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 2917 390741 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 2918 390840 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 2919 391106 2019 Guadalajara        Belenes Suc. Belenes     364  JOSE 
## 2920 391175 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 2921 391278 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 2922 391371 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 2923 391468 2019 Guadalajara        Belenes Suc. Belenes     429  NORMA
## 2924 391573 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 2925 391668 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 2926 391758 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 2927 391834 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 2928 392069 2019 Guadalajara        Belenes Suc. Belenes     471  JORGE
## 2929 392229 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 2930 392373 2019 Guadalajara        Belenes Suc. Belenes     497  MARIA
## 2931 392548 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 2932 392626 2019 Guadalajara        Belenes Suc. Belenes     511  ANDRE
## 2933 392710 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 2934 392815 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 2935 392893 2019 Guadalajara        Belenes Suc. Belenes     564  JUANA
## 2936 392962 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 2937 393056 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 2938 393230 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 2939 393279 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 2940 393374 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 2941 393457 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 2942 393526 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 2943 393592 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 2944 393678 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 2945 393884 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 2946 393980 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 2947 394076 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 2948 394249 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 2949 394333 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 2950 394423 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 2951 394647 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 2952 394742 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 2953 395069 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 2954 395171 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 2955 395465 2019 Guadalajara        Belenes Suc. Belenes    1067  MARTI
## 2956 395561 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 2957 395668 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 2958 395758 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 2959 395846 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 2960 395932 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 2961 396033 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 2962 396412 2019 Guadalajara        Belenes Suc. Belenes    1306  ABARR
## 2963 396498 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 2964 396604 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 2965 396745 2019 Guadalajara        Belenes Suc. Belenes    1341  ABARR
## 2966 396782 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 2967 396869 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 2968 396962 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 2969 397046 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 2970 397132 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 2971 397227 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 2972 397294 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 2973 397357 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 2974 397437 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 2975 397675 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 2976 397759 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 2977 397831 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 2978 397924 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 2979 398103 2019 Guadalajara        Belenes Suc. Belenes    1563  ROCIO
## 2980 398186 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 2981 398334 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 2982 398434 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 2983 398587 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 2984 398690 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 2985 398758 2019 Guadalajara        Belenes Suc. Belenes    1634  ABARR
## 2986 398836 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 2987 398910 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 2988 398946 2019 Guadalajara        Belenes Suc. Belenes    1704  MARIO
## 2989 399051 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 2990 399149 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 2991 399219 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 2992 399324 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 2993 399429 2019 Guadalajara        Belenes Suc. Belenes    1734  HILDA
## 2994 399518 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 2995 399663 2019 Guadalajara        Belenes Suc. Belenes    1778  MOISE
## 2996 399757 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 2997 399923 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 2998 400017 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 2999 400121 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 3000 400213 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 3001 400299 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 3002 400406 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 3003 400506 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 3004 400581 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 3005 400663 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 3006 400761 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 3007 400851 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3008 400938 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 3009 401021 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 3010 401128 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 3011 401223 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 3012 401300 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 3013 401370 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 3014 401448 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 3015 401602 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 3016 401783 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3017 401964 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 3018 402059 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 3019 402163 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 3020 402263 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 3021 402372 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 3022 402627 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 3023 402770 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 3024 402858 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 3025 402930 2019 Guadalajara        Belenes Suc. Belenes    2068  LETIC
## 3026 403138 2019 Guadalajara        Belenes Suc. Belenes    2135  FRANC
## 3027 403263 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 3028 403355 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 3029 403543 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 3030 403829 2019 Guadalajara        Belenes Suc. Belenes    2229  ABARR
## 3031 403901 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 3032 403985 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 3033 404059 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 3034 404270 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 3035 404368 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 3036 404453 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 3037 404653 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 3038 404741 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 3039 404885 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 3040 404968 2019 Guadalajara        Belenes Suc. Belenes    2335  ANGEL
## 3041 405036 2019 Guadalajara        Belenes Suc. Belenes    2350  SANDR
## 3042 405170 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 3043 405250 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 3044 405323 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 3045 405422 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 3046 405609 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 3047 405713 2019 Guadalajara        Belenes Suc. Belenes    2471  MARIA
## 3048 406017 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 3049 406095 2019 Guadalajara        Belenes Suc. Belenes    2501  ERNES
## 3050 406256 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 3051 406450 2019 Guadalajara        Belenes Suc. Belenes    2576  SILVI
## 3052 406537 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 3053 406645 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 3054 406721 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 3055 406807 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 3056 406923 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 3057 407015 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 3058 407224 2019 Guadalajara        Belenes Suc. Belenes    2671  MIGUE
## 3059 407274 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 3060 407345 2019 Guadalajara        Belenes Suc. Belenes    2728  ABARR
## 3061 407576 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 3062 407665 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 3063 407753 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 3064 408107 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 3065 408212 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 3066 408320 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3067 408421 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 3068 408510 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 3069 408745 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 3070 408881 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 3071 408950 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 3072 409039 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 3073 409108 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 3074 409302 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 3075 409395 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 3076 409487 2019 Guadalajara        Belenes Suc. Belenes    3050  SUPER
## 3077 409632 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 3078 409896 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 3079 410009 2019 Guadalajara        Belenes Suc. Belenes    3125  ABARR
## 3080 410241 2019 Guadalajara        Belenes Suc. Belenes    3154  SOFIA
## 3081 410369 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 3082 410471 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 3083 410554 2019 Guadalajara        Belenes Suc. Belenes    3169  ANA L
## 3084 410622 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 3085 410720 2019 Guadalajara        Belenes Suc. Belenes    3185  INDAL
## 3086 410792 2019 Guadalajara        Belenes Suc. Belenes    3186  RAMIR
## 3087 410868 2019 Guadalajara        Belenes Suc. Belenes    3209  IRMA 
## 3088 411002 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 3089 411177 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 3090 411294 2019 Guadalajara        Belenes Suc. Belenes    3260  EL CA
## 3091 411408 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 3092 411561 2019 Guadalajara        Belenes Suc. Belenes     410  LUZ M
## 3093 411790 2019 Guadalajara        Belenes Suc. Belenes    1769  ABARR
## 3094 411982 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 3095 412271 2019 Guadalajara        Belenes Suc. Belenes    2494  SALVA
## 3096 412478 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 3097 412543 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 3098 412613 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 3099 412672 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 3100 413006 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 3101 413083 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 3102 413158 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 3103 413251 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 3104 413330 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 3105 413404 2019 Guadalajara        Belenes Suc. Belenes    2605  ELVIR
## 3106 413607 2019 Guadalajara        Belenes Suc. Belenes    2637  ABARR
## 3107 413660 2019 Guadalajara        Belenes Suc. Belenes    2702  ABARR
## 3108 413747 2019 Guadalajara        Belenes Suc. Belenes    2719  MARTI
## 3109 413803 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 3110 413926 2019 Guadalajara        Belenes Suc. Belenes    2817  SALVA
## 3111 413980 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 3112 414056 2019 Guadalajara        Belenes Suc. Belenes    2903  ABARR
## 3113 414116 2019 Guadalajara        Belenes Suc. Belenes    2908  ANTON
## 3114 414166 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 3115 414257 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 3116 414380 2019 Guadalajara        Belenes Suc. Belenes    2934  RICAR
## 3117 414432 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 3118 414488 2019 Guadalajara        Belenes Suc. Belenes    2994  JOSE 
## 3119 414522 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 3120 414650 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 3121 414723 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 3122 414851 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 3123 414953 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 3124 415106 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 3125 415208 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 3126 415298 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 3127 415564 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 3128 415713 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 3129 415910 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 3130 416066 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 3131 416165 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 3132 199948 2018 Guadalajara        Belenes Suc. Belenes    7737  ABARR
## 3133 200230 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 3134 200344 2018 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 3135 200469 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3136 201318 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3137 201525 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3138 201632 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3139 201871 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3140 201992 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3141 202364 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3142 202479 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3143 202817 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 3144 203212 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3145 203414 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3146 203816 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3147 204016 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3148 204225 2018 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 3149 204328 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3150 204431 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3151 204728 2018 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3152 204953 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3153 205060 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 3154 205165 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3155 205283 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3156 205479 2018 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3157 205588 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3158 205709 2018 Guadalajara        Belenes Suc. Belenes     337  MARIA
## 3159 205809 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3160 205917 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 3161 206119 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3162 206251 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3163 206456 2018 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3164 206902 2018 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3165 207022 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3166 207125 2018 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 3167 207309 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3168 207432 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 3169 207687 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 3170 207803 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3171 207891 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3172 207998 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3173 208102 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3174 208220 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 3175 208308 2018 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 3176 208637 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3177 208738 2018 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 3178 208875 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 3179 208985 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3180 209100 2018 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3181 209202 2018 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3182 209411 2018 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 3183 209573 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3184 209790 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3185 210005 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3186 210412 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3187 210628 2018 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3188 210742 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3189 211025 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3190 211319 2018 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 3191 211751 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3192 211955 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 3193 212384 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 3194 212491 2018 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 3195 212665 2018 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 3196 212852 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3197 213095 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 3198 213287 2018 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 3199 213923 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3200 214204 2018 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 3201 214347 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 3202 244161 2018 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 3203 246654 2018 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 3204 248561 2018 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 3205 250014 2018 Guadalajara        Belenes Suc. Belenes     869  TERES
## 3206 250251 2018 Guadalajara        Belenes Suc. Belenes     952  LICON
## 3207 250838 2018 Guadalajara        Belenes Suc. Belenes    1156  TEODU
## 3208 253692 2018 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 3209 254663 2018 Guadalajara        Belenes Suc. Belenes    2752  RAMIR
## 3210 256755 2018 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 3211 258609 2018 Guadalajara        Belenes Suc. Belenes    3158  JOAQU
## 3212 259267 2018 Guadalajara        Belenes Suc. Belenes    8621  ROSAL
## 3213 259414 2018 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 3214 259898 2018 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 3215 260343 2018 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 3216 261282 2018 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 3217 261366 2018 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 3218 261687 2018 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 3219 304283 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3220 304392 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 3221 304599 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3222 304699 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 3223 304802 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 3224 304896 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 3225 304992 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 3226 305128 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3227 305276 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 3228 305349 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3229 305442 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3230 305535 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3231 305623 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3232 305841 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3233 305957 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3234 306060 2019 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 3235 306213 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 3236 306291 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3237 306402 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3238 306527 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 3239 306811 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 3240 307072 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3241 307259 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3242 307371 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 3243 307575 2019 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 3244 307659 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3245 307743 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 3246 307852 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3247 308248 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3248 308489 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3249 308673 2019 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3250 308868 2019 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3251 308974 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3252 309067 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 3253 309148 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3254 309247 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3255 309443 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3256 309716 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3257 309830 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3258 309933 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 3259 310029 2019 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3260 310128 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 3261 310219 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 3262 310422 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3263 310544 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3264 310729 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 3265 310819 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3266 310929 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 3267 311045 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 3268 311224 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3269 311296 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3270 311391 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3271 311498 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3272 311606 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 3273 311973 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3274 312309 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3275 312415 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3276 312514 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3277 312605 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 3278 312854 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3279 313062 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3280 313160 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 3281 313251 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3282 313607 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3283 313789 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3284 313893 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3285 314243 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 3286 314402 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 3287 314503 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 3288 314566 2019 Guadalajara        Belenes Suc. Belenes    2456  ABARR
## 3289 314627 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 3290 314810 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3291 315005 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 3292 315205 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 3293 315385 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 3294 315488 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 3295 315563 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 3296 315736 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 3297 315800 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3298 316152 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 3299 316232 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 3300 316298 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 3301 316730 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3302 316927 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 3303 317131 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 3304 317338 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 3305 317590 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 3306 318137 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 3307 319669 2019 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 3308 319733 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 3309 319827 2019 Guadalajara        Belenes Suc. Belenes    9653  SIX P
## 3310 320342 2019 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 3311 320372 2019 Guadalajara        Belenes Suc. Belenes    9944  EMILI
## 3312 320622 2019 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 3313 321568 2019 Guadalajara        Belenes Suc. Belenes     553  LILIA
## 3314 321612 2019 Guadalajara        Belenes Suc. Belenes     579  ROSAR
## 3315 321753 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 3316 322196 2019 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 3317 322515 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 3318 323503 2019 Guadalajara        Belenes Suc. Belenes    1401  MARIA
## 3319 325733 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 3320 327364 2019 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 3321 327678 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 3322 328736 2019 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 3323 329825 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 3324 330583 2019 Guadalajara        Belenes Suc. Belenes    7703  MISCE
## 3325 330794 2019 Guadalajara        Belenes Suc. Belenes    8516  MISCE
## 3326 330946 2019 Guadalajara        Belenes Suc. Belenes    8534  CREME
## 3327 331508 2019 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 3328 332796 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 3329 332971 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 3330 333240 2019 Guadalajara        Belenes Suc. Belenes    8882  FRANC
## 3331 334309 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 3332 334933 2019 Guadalajara        Belenes Suc. Belenes    7849  FRANC
## 3333 334981 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 3334 335390 2019 Guadalajara        Belenes Suc. Belenes    8009  MARTH
## 3335 335892 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 3336 336366 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 3337 336827 2019 Guadalajara        Belenes Suc. Belenes    8897  MARIA
## 3338 336867 2019 Guadalajara        Belenes Suc. Belenes    8898  ABARR
## 3339 337224 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 3340 337345 2019 Guadalajara        Belenes Suc. Belenes    8968  ANDRE
## 3341 337370 2019 Guadalajara        Belenes Suc. Belenes    8969  HILAR
## 3342 337696 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 3343 337755 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 3344 338047 2019 Guadalajara        Belenes Suc. Belenes    9104  ALICI
## 3345 338322 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 3346 338396 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 3347 338737 2019 Guadalajara        Belenes Suc. Belenes    9221  CESAR
## 3348 339043 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 3349 339356 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 3350 339966 2019 Guadalajara        Belenes Suc. Belenes    9421  CESAR
## 3351 340204 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 3352 340821 2019 Guadalajara        Belenes Suc. Belenes    9567  ROBER
## 3353 341182 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 3354 341320 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 3355 341686 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 3356 342715 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 3357 342901 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 3358 342962 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 3359 343023 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 3360 343097 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 3361 343302 2019 Guadalajara        Belenes Suc. Belenes    9900  MARIA
## 3362 343367 2019 Guadalajara        Belenes Suc. Belenes    9919  ALFRE
## 3363 343580 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 3364 344235 2019 Guadalajara        Belenes Suc. Belenes      37  JUAN 
## 3365 344637 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 3366 345040 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 3367 345289 2019 Guadalajara        Belenes Suc. Belenes     156  MARTH
## 3368 345358 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 3369 345424 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 3370 345534 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 3371 345820 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 3372 346210 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 3373 346423 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 3374 346640 2019 Guadalajara        Belenes Suc. Belenes     412  JUVEN
## 3375 346756 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 3376 347160 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 3377 347403 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 3378 347825 2019 Guadalajara        Belenes Suc. Belenes     630  SIX T
## 3379 347904 2019 Guadalajara        Belenes Suc. Belenes     631  ERIKA
## 3380 348144 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 3381 348228 2019 Guadalajara        Belenes Suc. Belenes     671  ABARR
## 3382 348397 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 3383 348726 2019 Guadalajara        Belenes Suc. Belenes     796  MARIA
## 3384 348827 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 3385 348915 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 3386 348992 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 3387 349102 2019 Guadalajara        Belenes Suc. Belenes     840  LAURA
## 3388 349167 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 3389 349503 2019 Guadalajara        Belenes Suc. Belenes     888  VINOS
## 3390 349818 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 3391 350244 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 3392 350594 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 3393 350705 2019 Guadalajara        Belenes Suc. Belenes    1026  ABARR
## 3394 350842 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 3395 351812 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 3396 352135 2019 Guadalajara        Belenes Suc. Belenes    1254  ABARR
## 3397 352330 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 3398 352660 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 3399 352791 2019 Guadalajara        Belenes Suc. Belenes    1350  MONIC
## 3400 352851 2019 Guadalajara        Belenes Suc. Belenes    1356  ANGEL
## 3401 353215 2019 Guadalajara        Belenes Suc. Belenes    1391  VICTO
## 3402 353563 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 3403 354005 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 3404 354319 2019 Guadalajara        Belenes Suc. Belenes    1595  CECIL
## 3405 354766 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 3406 354993 2019 Guadalajara        Belenes Suc. Belenes    1728  ABARR
## 3407 355368 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 3408 355692 2019 Guadalajara        Belenes Suc. Belenes    1788  ESTHE
## 3409 355834 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 3410 355909 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 3411 356287 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 3412 356705 2019 Guadalajara        Belenes Suc. Belenes    1957  FARMA
## 3413 356883 2019 Guadalajara        Belenes Suc. Belenes    1973  EMIDI
## 3414 357756 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 3415 357905 2019 Guadalajara        Belenes Suc. Belenes    2129  ABARR
## 3416 358318 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 3417 358502 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 3418 359894 2019 Guadalajara        Belenes Suc. Belenes    2483  ALFON
## 3419 359968 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 3420 360248 2019 Guadalajara        Belenes Suc. Belenes    2509  ANA R
## 3421 360585 2019 Guadalajara        Belenes Suc. Belenes    2530  ABARR
## 3422 361157 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 3423 361346 2019 Guadalajara        Belenes Suc. Belenes    2667  VENTA
## 3424 361542 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 3425 361629 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 3426 361848 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 3427 361926 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 3428 362032 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 3429 362099 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 3430 362279 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 3431 362314 2019 Guadalajara        Belenes Suc. Belenes    2739  ANDRE
## 3432 362579 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 3433 362694 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 3434 363477 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 3435 363657 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 3436 363803 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 3437 363889 2019 Guadalajara        Belenes Suc. Belenes    2916  HECTO
## 3438 364190 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 3439 364277 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 3440 364410 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 3441 364672 2019 Guadalajara        Belenes Suc. Belenes    3040  ABARR
## 3442 364745 2019 Guadalajara        Belenes Suc. Belenes    3052  DEPOS
## 3443 364967 2019 Guadalajara        Belenes Suc. Belenes    3090  ELVIR
## 3444 365051 2019 Guadalajara        Belenes Suc. Belenes    3094  MARIA
## 3445 365303 2019 Guadalajara        Belenes Suc. Belenes    3133  MARIA
## 3446 365392 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 3447 365712 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 3448 366632 2019 Guadalajara        Belenes Suc. Belenes     711  JORGE
## 3449 366807 2019 Guadalajara        Belenes Suc. Belenes    1774  RAMON
## 3450 367813 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 3451 368465 2019 Guadalajara        Belenes Suc. Belenes    2498  TADEO
## 3452 368694 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 3453 369088 2019 Guadalajara        Belenes Suc. Belenes    2615  ABARR
## 3454 369519 2019 Guadalajara        Belenes Suc. Belenes    2689  ESPER
## 3455 369784 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 3456 369927 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 3457 370047 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 3458 370971 2019 Guadalajara        Belenes Suc. Belenes    3068  FRANC
## 3459 371084 2019 Guadalajara        Belenes Suc. Belenes    3077  RODRI
## 3460 371366 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 3461 371491 2019 Guadalajara        Belenes Suc. Belenes    3164  EL PO
## 3462 371958 2019 Guadalajara        Belenes Suc. Belenes    8276  VINOS
## 3463 372287 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 3464 373001 2019 Guadalajara        Belenes Suc. Belenes    9427  HOGAR
## 3465 373092 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 3466 373456 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 3467 374330 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 3468 374407 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 3469 374557 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 3470 374851 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 3471 374913 2019 Guadalajara        Belenes Suc. Belenes    1518  MA EL
## 3472 375237 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 3473 375394 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 3474 375481 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 3475 375618 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 3476 375696 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 3477 375892 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 3478 376146 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 3479 376245 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 3480 376322 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 3481 376399 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 3482 376492 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 3483 376613 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 3484 376699 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 3485 376775 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 3486 376853 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 3487 376922 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 3488 377103 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 3489 377299 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 3490 377382 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 3491 377512 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 3492 377781 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 3493 377954 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3494 378096 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3495 378255 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3496 378407 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3497 378563 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3498 378653 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3499 379014 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 3500 379228 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 3501 379328 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 3502 379443 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 3503 379547 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 3504 379642 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 3505 379740 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 3506 379961 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 3507 380057 2019 Guadalajara        Belenes Suc. Belenes    9040  JUAN 
## 3508 380153 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 3509 380247 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 3510 380350 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 3511 380433 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 3512 380512 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 3513 380777 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 3514 380967 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 3515 381061 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 3516 381230 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 3517 381327 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 3518 381507 2019 Guadalajara        Belenes Suc. Belenes    9250  ABARR
## 3519 381581 2019 Guadalajara        Belenes Suc. Belenes    9256  ABARR
## 3520 381674 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 3521 381776 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 3522 381963 2019 Guadalajara        Belenes Suc. Belenes    9335  ABARR
## 3523 382032 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 3524 382165 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 3525 382331 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 3526 382438 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 3527 382526 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 3528 382612 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 3529 382753 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 3530 382829 2019 Guadalajara        Belenes Suc. Belenes    9444  SONIA
## 3531 383041 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 3532 383539 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 3533 383629 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 3534 383895 2019 Guadalajara        Belenes Suc. Belenes    9578  MARIA
## 3535 384416 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 3536 384506 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 3537 385528 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 3538 385621 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 3539 385831 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 3540 386259 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 3541 386898 2019 Guadalajara        Belenes Suc. Belenes    9923  JOSE 
## 3542 387035 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 3543 387879 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 3544 387974 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 3545 388547 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 3546 388645 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 3547 388794 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 3548 388884 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 3549 389320 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 3550 389412 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 3551 389500 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 3552 389581 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 3553 389659 2019 Guadalajara        Belenes Suc. Belenes     189  ARNUL
## 3554 389737 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 3555 389825 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 3556 389982 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 3557 390352 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 3558 390528 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 3559 390649 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 3560 390745 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 3561 390844 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 3562 391180 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 3563 391281 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 3564 391376 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 3565 391576 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 3566 391762 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 3567 391836 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 3568 391909 2019 Guadalajara        Belenes Suc. Belenes     466  ABARR
## 3569 392162 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 3570 392232 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 3571 392465 2019 Guadalajara        Belenes Suc. Belenes     505  JUANA
## 3572 392550 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 3573 392712 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 3574 392817 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 3575 393059 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 3576 393153 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 3577 393283 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 3578 393377 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 3579 393680 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 3580 393774 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 3581 393889 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 3582 394080 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 3583 394168 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 3584 394251 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 3585 394337 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 3586 394574 2019 Guadalajara        Belenes Suc. Belenes     903  ABARR
## 3587 394651 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 3588 394744 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 3589 395073 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 3590 395173 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 3591 395321 2019 Guadalajara        Belenes Suc. Belenes    1060  MARIA
## 3592 395563 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 3593 395670 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 3594 395761 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 3595 395935 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 3596 396036 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 3597 396216 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 3598 396503 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 3599 396965 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 3600 397135 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 3601 397230 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 3602 397359 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 3603 397440 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 3604 397677 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 3605 397926 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 3606 398006 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 3607 398191 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 3608 398337 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 3609 398589 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 3610 398838 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 3611 398913 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 3612 399152 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 3613 399221 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 3614 399327 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 3615 399522 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 3616 399761 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 3617 399926 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 3618 400022 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 3619 400216 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 3620 400304 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 3621 400410 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 3622 400508 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 3623 400583 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 3624 400764 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 3625 400854 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3626 401132 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 3627 401226 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 3628 401302 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 3629 401450 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 3630 401604 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 3631 401698 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 3632 401786 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3633 401966 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 3634 402061 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 3635 402168 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 3636 402376 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 3637 402462 2019 Guadalajara        Belenes Suc. Belenes    2044  JAIME
## 3638 402544 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 3639 402630 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 3640 402773 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 3641 402860 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 3642 403268 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 3643 403357 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 3644 403546 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 3645 403746 2019 Guadalajara        Belenes Suc. Belenes    2203  ABARR
## 3646 403905 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 3647 403990 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 3648 404063 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 3649 404203 2019 Guadalajara        Belenes Suc. Belenes    2274  JUAN 
## 3650 404273 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 3651 404458 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 3652 404555 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 3653 404658 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 3654 405173 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 3655 405251 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 3656 405327 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 3657 405425 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 3658 405612 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 3659 405861 2019 Guadalajara        Belenes Suc. Belenes    2475  MIRIA
## 3660 405928 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 3661 406019 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 3662 406098 2019 Guadalajara        Belenes Suc. Belenes    2501  ERNES
## 3663 406188 2019 Guadalajara        Belenes Suc. Belenes    2522  ABARR
## 3664 406258 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 3665 406328 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 3666 406454 2019 Guadalajara        Belenes Suc. Belenes    2576  SILVI
## 3667 406541 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 3668 406647 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 3669 406723 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 3670 407018 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 3671 407755 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 3672 408112 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 3673 408217 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 3674 408325 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3675 408513 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 3676 408618 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 3677 408883 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 3678 408954 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 3679 409111 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 3680 409207 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 3681 409304 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 3682 409400 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 3683 409551 2019 Guadalajara        Belenes Suc. Belenes    3056  VICEN
## 3684 409635 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 3685 409765 2019 Guadalajara        Belenes Suc. Belenes    3071  MARIO
## 3686 409898 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 3687 410178 2019 Guadalajara        Belenes Suc. Belenes    3145  MARIA
## 3688 410287 2019 Guadalajara        Belenes Suc. Belenes    3165  ARON 
## 3689 410374 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 3690 410626 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 3691 411004 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 3692 411411 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 3693 411985 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 3694 412082 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 3695 412615 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 3696 412676 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 3697 412873 2019 Guadalajara        Belenes Suc. Belenes    2564  HERLI
## 3698 413160 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 3699 413254 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 3700 413861 2019 Guadalajara        Belenes Suc. Belenes    2771  ABARR
## 3701 414118 2019 Guadalajara        Belenes Suc. Belenes    2908  ANTON
## 3702 414168 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 3703 414259 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 3704 414653 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 3705 414725 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 3706 414778 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 3707 414856 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 3708 414956 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 3709 415111 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 3710 415566 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 3711 415715 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 3712 416168 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 3713    735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 3714   1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 3715   1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 3716   1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 3717   2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 3718   2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 3719   3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3720   4318 2016 Guadalajara        Belenes Suc. Belenes   79913  GUILL
## 3721   7093 2016 Guadalajara        Belenes Suc. Belenes   81030  ABARR
## 3722   7481 2016 Guadalajara        Belenes Suc. Belenes   81180  DON B
## 3723   8068 2016 Guadalajara        Belenes Suc. Belenes   81395  ABARR
## 3724   8668 2016 Guadalajara        Belenes Suc. Belenes   81713  MISCE
## 3725   8900 2016 Guadalajara        Belenes Suc. Belenes   81731  NORBE
## 3726   9096 2016 Guadalajara        Belenes Suc. Belenes   81759  ELVA 
## 3727   9952 2016 Guadalajara        Belenes Suc. Belenes   81956  ABARR
## 3728  10072 2016 Guadalajara        Belenes Suc. Belenes   82000  ABARR
## 3729  10373 2016 Guadalajara        Belenes Suc. Belenes   82146  ABARR
## 3730  11067 2016 Guadalajara        Belenes Suc. Belenes   82647  JUNIO
## 3731  12089 2016 Guadalajara        Belenes Suc. Belenes   83072  ABARR
## 3732  12720 2016 Guadalajara        Belenes Suc. Belenes   42516  JOSE 
## 3733 107444 2017 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3734 110059 2017 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3735 110381 2017 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3736 111303 2017 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3737 113876 2017 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3738 114479 2017 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3739 116481 2017 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3740 116605 2017 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3741 116909 2017 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3742 118727 2017 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3743 155950 2017 Guadalajara        Belenes Suc. Belenes    9761  CANDE
## 3744 162118 2017 Guadalajara        Belenes Suc. Belenes     946  AMPAR
## 3745 166381 2017 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 3746 166994 2017 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 3747 169264 2017 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3748 169518 2017 Guadalajara        Belenes Suc. Belenes    2605  JULIA
## 3749 170648 2017 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 3750 177081 2017 Guadalajara        Belenes Suc. Belenes    5735  Julio
## 3751 200451 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3752 201408 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3753 202464 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3754 203617 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3755 203999 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3756 204315 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3757 207983 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3758 208087 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3759 208622 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3760 209675 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 3761 211009 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3762 211735 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3763 212835 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3764 213909 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3765 252928 2018 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 3766 254118 2018 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3767 259501 2018 Guadalajara        Belenes Suc. Belenes    2702  OCTAV
## 3768 261222 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 3769 262067 2018 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 3770 305119 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3771 305432 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3772 305523 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3773 306388 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3774 307461 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3775 308138 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3776 308962 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3777 311957 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3778 312296 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3779 325430 2019 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3780 330671 2019 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 3781 337750 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 3782 340489 2019 Guadalajara        Belenes Suc. Belenes    9544  INOCE
## 3783 341511 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 3784 357285 2019 Guadalajara        Belenes Suc. Belenes    2022  JUANA
## 3785 363707 2019 Guadalajara        Belenes Suc. Belenes    2887  M HER
## 3786 365271 2019 Guadalajara        Belenes Suc. Belenes    3130  ROSA 
## 3787 376603 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 3788 378475 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3789 380763 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 3790 382596 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 3791 385819 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 3792 388868 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 3793 389727 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 3794 392150 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 3795 393143 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 3796 393224 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 3797 397122 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 3798 397820 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 3799 397992 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 3800 399313 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 3801 400112 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 3802 400840 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3803 401774 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3804 406912 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 3805 408309 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3806 410461 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 3807     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 3808    190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 3809    304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 3810    421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 3811    535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 3812    640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 3813    745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 3814    849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 3815   1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 3816   1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 3817   1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 3818   1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 3819   1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 3820   1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 3821   1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 3822   2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 3823   2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 3824   2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 3825   2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 3826   2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 3827   2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 3828   2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3829   3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3830   3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3831   3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3832   3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3833   3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3834   3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3835   3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836   3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3837   4013 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3838   4225 2016 Guadalajara        Belenes Suc. Belenes   79884  ABARR
## 3839   4400 2016 Guadalajara        Belenes Suc. Belenes   79915  ADAN 
## 3840   4491 2016 Guadalajara        Belenes Suc. Belenes   80004  MARIA
## 3841   4580 2016 Guadalajara        Belenes Suc. Belenes   80100  ABARR
## 3842   4688 2016 Guadalajara        Belenes Suc. Belenes   80154  ABARR
## 3843   4781 2016 Guadalajara        Belenes Suc. Belenes   80183  CESAR
## 3844   4893 2016 Guadalajara        Belenes Suc. Belenes   80184  AVELI
## 3845   4967 2016 Guadalajara        Belenes Suc. Belenes   80242  ABARR
## 3846   5083 2016 Guadalajara        Belenes Suc. Belenes   80247  DULCE
## 3847   5171 2016 Guadalajara        Belenes Suc. Belenes   80280  MERCE
## 3848   5354 2016 Guadalajara        Belenes Suc. Belenes   80335  SAL Y
## 3849   5560 2016 Guadalajara        Belenes Suc. Belenes   80396  ABARR
## 3850   5662 2016 Guadalajara        Belenes Suc. Belenes   80407  LUIS 
## 3851   5748 2016 Guadalajara        Belenes Suc. Belenes   80426  ANTON
## 3852   5844 2016 Guadalajara        Belenes Suc. Belenes   80438  EL GR
## 3853   5970 2016 Guadalajara        Belenes Suc. Belenes   80485  ABARR
## 3854   6276 2016 Guadalajara        Belenes Suc. Belenes   80597  ALBIN
## 3855   6370 2016 Guadalajara        Belenes Suc. Belenes   80651  SUPER
## 3856   6466 2016 Guadalajara        Belenes Suc. Belenes   80652  ABARR
## 3857   6663 2016 Guadalajara        Belenes Suc. Belenes   80786  ABARR
## 3858   6829 2016 Guadalajara        Belenes Suc. Belenes   80921  MOISE
## 3859   7102 2016 Guadalajara        Belenes Suc. Belenes   81030  ABARR
## 3860   7205 2016 Guadalajara        Belenes Suc. Belenes   81090  ABARR
## 3861   7302 2016 Guadalajara        Belenes Suc. Belenes   81116  ABARR
## 3862   7388 2016 Guadalajara        Belenes Suc. Belenes   81160  ABARR
## 3863   7490 2016 Guadalajara        Belenes Suc. Belenes   81180  DON B
## 3864   7585 2016 Guadalajara        Belenes Suc. Belenes   81182  JOSE 
## 3865   7687 2016 Guadalajara        Belenes Suc. Belenes   81286  ALICI
## 3866   7964 2016 Guadalajara        Belenes Suc. Belenes   81393  SUPER
## 3867   8077 2016 Guadalajara        Belenes Suc. Belenes   81395  ABARR
## 3868   8284 2016 Guadalajara        Belenes Suc. Belenes   81428  VINOS
## 3869   8355 2016 Guadalajara        Belenes Suc. Belenes   81543  EMMAN
## 3870   8466 2016 Guadalajara        Belenes Suc. Belenes   81635  LA HI
## 3871   8572 2016 Guadalajara        Belenes Suc. Belenes   81664  ABARR
## 3872   8676 2016 Guadalajara        Belenes Suc. Belenes   81713  MISCE
## 3873   8784 2016 Guadalajara        Belenes Suc. Belenes   81716  ABARR
## 3874   8912 2016 Guadalajara        Belenes Suc. Belenes   81731  NORBE
## 3875   9019 2016 Guadalajara        Belenes Suc. Belenes   81746  INBOX
## 3876   9105 2016 Guadalajara        Belenes Suc. Belenes   81759  ELVA 
## 3877   9224 2016 Guadalajara        Belenes Suc. Belenes   81785  ABARR
## 3878   9315 2016 Guadalajara        Belenes Suc. Belenes   81795  ABARR
## 3879   9418 2016 Guadalajara        Belenes Suc. Belenes   81812  ABARR
## 3880   9525 2016 Guadalajara        Belenes Suc. Belenes   81818  LA LO
## 3881   9779 2016 Guadalajara        Belenes Suc. Belenes   81916  MARIA
## 3882   9881 2016 Guadalajara        Belenes Suc. Belenes   81927  ISMAE
## 3883   9961 2016 Guadalajara        Belenes Suc. Belenes   81956  ABARR
## 3884  10083 2016 Guadalajara        Belenes Suc. Belenes   82000  ABARR
## 3885  10186 2016 Guadalajara        Belenes Suc. Belenes   82047  LA ME
## 3886  10260 2016 Guadalajara        Belenes Suc. Belenes   82075  MARTH
## 3887  10382 2016 Guadalajara        Belenes Suc. Belenes   82146  ABARR
## 3888  10479 2016 Guadalajara        Belenes Suc. Belenes   82242  ABARR
## 3889  10571 2016 Guadalajara        Belenes Suc. Belenes   82294  JOSE 
## 3890  10654 2016 Guadalajara        Belenes Suc. Belenes   82399  ABARR
## 3891  10832 2016 Guadalajara        Belenes Suc. Belenes   82456  ABARR
## 3892  10906 2016 Guadalajara        Belenes Suc. Belenes   82529  ABARR
## 3893  10982 2016 Guadalajara        Belenes Suc. Belenes   82531  JOSE 
## 3894  11076 2016 Guadalajara        Belenes Suc. Belenes   82647  JUNIO
## 3895  11201 2016 Guadalajara        Belenes Suc. Belenes   82702  JOSE 
## 3896  11282 2016 Guadalajara        Belenes Suc. Belenes   82706  ABARR
## 3897  11401 2016 Guadalajara        Belenes Suc. Belenes   82759  JOSE 
## 3898  11492 2016 Guadalajara        Belenes Suc. Belenes   82795  ABARR
## 3899  11584 2016 Guadalajara        Belenes Suc. Belenes   82861  ABARR
## 3900  11666 2016 Guadalajara        Belenes Suc. Belenes   82912  BRAUL
## 3901  11921 2016 Guadalajara        Belenes Suc. Belenes   83023  ABARR
## 3902  12009 2016 Guadalajara        Belenes Suc. Belenes   83060  MARIA
## 3903  12101 2016 Guadalajara        Belenes Suc. Belenes   83072  ABARR
## 3904  12225 2016 Guadalajara        Belenes Suc. Belenes   83085  SUPER
## 3905  12728 2016 Guadalajara        Belenes Suc. Belenes   42516  JOSE 
## 3906  12910 2016 Guadalajara        Belenes Suc. Belenes   42611  JESUS
## 3907  13000 2016 Guadalajara        Belenes Suc. Belenes   42622  TORIB
## 3908  13095 2016 Guadalajara        Belenes Suc. Belenes   42651  ABARR
## 3909  13296 2016 Guadalajara        Belenes Suc. Belenes   42912  ABARR
## 3910  13469 2016 Guadalajara        Belenes Suc. Belenes   43087  JOSE 
## 3911  13551 2016 Guadalajara        Belenes Suc. Belenes   24997  Hugo 
## 3912  13685 2016 Guadalajara        Belenes Suc. Belenes   27373  Salva
## 3913 106036 2017 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 3914 106132 2017 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3915 106361 2017 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 3916 106481 2017 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3917 106587 2017 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 3918 106801 2017 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 3919 106906 2017 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 3920 106998 2017 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 3921 107080 2017 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3922 107256 2017 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 3923 107342 2017 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3924 107452 2017 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3925 107554 2017 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3926 107674 2017 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3927 107794 2017 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 3928 107908 2017 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3929 108031 2017 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3930 108145 2017 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 3931 108235 2017 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 3932 108309 2017 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 3933 108402 2017 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3934 108505 2017 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3935 108766 2017 Guadalajara        Belenes Suc. Belenes    9492  JOEL 
## 3936 108857 2017 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 3937 108973 2017 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 3938 109171 2017 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 3939 109283 2017 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3940 109405 2017 Guadalajara        Belenes Suc. Belenes    9632  SUSAN
## 3941 109490 2017 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3942 109609 2017 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 3943 109705 2017 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3944 109798 2017 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 3945 109889 2017 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3946 109977 2017 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 3947 110069 2017 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3948 110216 2017 Guadalajara        Belenes Suc. Belenes    9873  VINOS
## 3949 110298 2017 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 3950 110391 2017 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3951 110487 2017 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3952 110572 2017 Guadalajara        Belenes Suc. Belenes    9961  FRANC
## 3953 110662 2017 Guadalajara        Belenes Suc. Belenes       4  MARIA
## 3954 110775 2017 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3955 110879 2017 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 3956 110972 2017 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3957 111089 2017 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 3958 111194 2017 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3959 111313 2017 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3960 111497 2017 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3961 111600 2017 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3962 111713 2017 Guadalajara        Belenes Suc. Belenes     337  MARIA
## 3963 111793 2017 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3964 111898 2017 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 3965 112087 2017 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3966 112206 2017 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3967 112390 2017 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3968 112500 2017 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 3969 112593 2017 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 3970 112712 2017 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 3971 112804 2017 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3972 112918 2017 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3973 113025 2017 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 3974 113204 2017 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3975 113475 2017 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 3976 113578 2017 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 3977 113693 2017 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3978 113776 2017 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3979 113886 2017 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3980 113990 2017 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3981 114165 2017 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 3982 114373 2017 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 3983 114488 2017 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3984 114732 2017 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 3985 114832 2017 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3986 114940 2017 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3987 115049 2017 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3988 115149 2017 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 3989 115276 2017 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 3990 115434 2017 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3991 115555 2017 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 3992 115660 2017 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3993 115772 2017 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 3994 115877 2017 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3995 115995 2017 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 3996 116278 2017 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3997 116386 2017 Guadalajara        Belenes Suc. Belenes    1927  ISMAE
## 3998 116490 2017 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3999 116614 2017 Guadalajara        Belenes Suc. Belenes    2000  ABARR
##         Tamano.Cte.Industria         Segmento.Det          Marca
## 1    Tama\x96o Cte Industria         Segmento Det          Marca
## 2               Extra Grande      Bebidas de Soya    AdeS Frutal
## 3               Extra Grande      Bebidas de Soya    AdeS Frutal
## 4               Extra Grande      Bebidas de Soya    AdeS Frutal
## 5               Extra Grande      Bebidas de Soya    AdeS Frutal
## 6               Extra Grande      Bebidas de Soya    AdeS Frutal
## 7               Extra Grande      Bebidas de Soya    AdeS Frutal
## 8               Extra Grande      Bebidas de Soya    AdeS Frutal
## 9               Extra Grande      Bebidas de Soya    AdeS Frutal
## 10              Extra Grande      Bebidas de Soya    AdeS Frutal
## 11              Extra Grande      Bebidas de Soya    AdeS Frutal
## 12              Extra Grande      Bebidas de Soya    AdeS Frutal
## 13              Extra Grande      Bebidas de Soya    AdeS Frutal
## 14              Extra Grande      Bebidas de Soya    AdeS Frutal
## 15              Extra Grande      Bebidas de Soya    AdeS Frutal
## 16              Extra Grande      Bebidas de Soya    AdeS Frutal
## 17              Extra Grande      Bebidas de Soya    AdeS Frutal
## 18              Extra Grande      Bebidas de Soya    AdeS Frutal
## 19              Extra Grande      Bebidas de Soya    AdeS Frutal
## 20              Extra Grande      Bebidas de Soya    AdeS Frutal
## 21              Extra Grande      Bebidas de Soya    AdeS Frutal
## 22              Extra Grande      Bebidas de Soya    AdeS Frutal
## 23              Extra Grande      Bebidas de Soya    AdeS Frutal
## 24              Extra Grande      Bebidas de Soya    AdeS Frutal
## 25              Extra Grande      Bebidas de Soya    AdeS Frutal
## 26              Extra Grande      Bebidas de Soya    AdeS Frutal
## 27              Extra Grande      Bebidas de Soya    AdeS Frutal
## 28              Extra Grande      Bebidas de Soya    AdeS Frutal
## 29              Extra Grande      Bebidas de Soya    AdeS Frutal
## 30              Extra Grande      Bebidas de Soya    AdeS Frutal
## 31              Extra Grande      Bebidas de Soya    AdeS Frutal
## 32              Extra Grande      Bebidas de Soya    AdeS Frutal
## 33              Extra Grande      Bebidas de Soya    AdeS Frutal
## 34              Extra Grande      Bebidas de Soya    AdeS Frutal
## 35              Extra Grande      Bebidas de Soya    AdeS Frutal
## 36              Extra Grande      Bebidas de Soya    AdeS Frutal
## 37              Extra Grande      Bebidas de Soya    AdeS Frutal
## 38              Extra Grande      Bebidas de Soya    AdeS Frutal
## 39              Extra Grande      Bebidas de Soya    AdeS Frutal
## 40              Extra Grande      Bebidas de Soya    AdeS Frutal
## 41              Extra Grande      Bebidas de Soya    AdeS Frutal
## 42              Extra Grande      Bebidas de Soya    AdeS Frutal
## 43              Extra Grande      Bebidas de Soya    AdeS Frutal
## 44              Extra Grande      Bebidas de Soya    AdeS Frutal
## 45              Extra Grande      Bebidas de Soya    AdeS Frutal
## 46              Extra Grande      Bebidas de Soya    AdeS Frutal
## 47              Extra Grande      Bebidas de Soya    AdeS Frutal
## 48              Extra Grande      Bebidas de Soya    AdeS Frutal
## 49              Extra Grande      Bebidas de Soya    AdeS Frutal
## 50              Extra Grande      Bebidas de Soya    AdeS Frutal
## 51              Extra Grande      Bebidas de Soya    AdeS Frutal
## 52              Extra Grande      Bebidas de Soya    AdeS Frutal
## 53              Extra Grande      Bebidas de Soya    AdeS Frutal
## 54              Extra Grande      Bebidas de Soya    AdeS Frutal
## 55              Extra Grande      Bebidas de Soya    AdeS Frutal
## 56              Extra Grande      Bebidas de Soya    AdeS Frutal
## 57              Extra Grande      Bebidas de Soya    AdeS Frutal
## 58              Extra Grande      Bebidas de Soya    AdeS Frutal
## 59              Extra Grande      Bebidas de Soya    AdeS Frutal
## 60              Extra Grande      Bebidas de Soya    AdeS Frutal
## 61              Extra Grande      Bebidas de Soya    AdeS Frutal
## 62              Extra Grande      Bebidas de Soya    AdeS Frutal
## 63              Extra Grande      Bebidas de Soya    AdeS Frutal
## 64              Extra Grande      Bebidas de Soya    AdeS Frutal
## 65              Extra Grande      Bebidas de Soya    AdeS Frutal
## 66              Extra Grande      Bebidas de Soya    AdeS Frutal
## 67              Extra Grande      Bebidas de Soya    AdeS Frutal
## 68              Extra Grande      Bebidas de Soya    AdeS Frutal
## 69              Extra Grande      Bebidas de Soya    AdeS Frutal
## 70              Extra Grande      Bebidas de Soya    AdeS Frutal
## 71              Extra Grande      Bebidas de Soya    AdeS Frutal
## 72              Extra Grande      Bebidas de Soya    AdeS Frutal
## 73              Extra Grande      Bebidas de Soya    AdeS Frutal
## 74              Extra Grande      Bebidas de Soya    AdeS Frutal
## 75              Extra Grande      Bebidas de Soya    AdeS Frutal
## 76              Extra Grande      Bebidas de Soya    AdeS Frutal
## 77              Extra Grande      Bebidas de Soya    AdeS Frutal
## 78              Extra Grande      Bebidas de Soya    AdeS Frutal
## 79              Extra Grande      Bebidas de Soya    AdeS Frutal
## 80              Extra Grande      Bebidas de Soya    AdeS Frutal
## 81              Extra Grande      Bebidas de Soya    AdeS Frutal
## 82              Extra Grande      Bebidas de Soya    AdeS Frutal
## 83              Extra Grande      Bebidas de Soya    AdeS Frutal
## 84              Extra Grande      Bebidas de Soya    AdeS Frutal
## 85              Extra Grande      Bebidas de Soya    AdeS Frutal
## 86              Extra Grande      Bebidas de Soya    AdeS Frutal
## 87              Extra Grande      Bebidas de Soya    AdeS Frutal
## 88              Extra Grande      Bebidas de Soya    AdeS Frutal
## 89              Extra Grande      Bebidas de Soya    AdeS Frutal
## 90              Extra Grande      Bebidas de Soya    AdeS Frutal
## 91              Extra Grande      Bebidas de Soya    AdeS Frutal
## 92              Extra Grande      Bebidas de Soya    AdeS Frutal
## 93              Extra Grande      Bebidas de Soya    AdeS Frutal
## 94              Extra Grande      Bebidas de Soya    AdeS Frutal
## 95              Extra Grande      Bebidas de Soya    AdeS Frutal
## 96              Extra Grande      Bebidas de Soya    AdeS Frutal
## 97              Extra Grande      Bebidas de Soya    AdeS Frutal
## 98              Extra Grande      Bebidas de Soya    AdeS Frutal
## 99              Extra Grande      Bebidas de Soya    AdeS Frutal
## 100             Extra Grande      Bebidas de Soya    AdeS Frutal
## 101             Extra Grande      Bebidas de Soya    AdeS Frutal
## 102             Extra Grande      Bebidas de Soya    AdeS Frutal
## 103             Extra Grande      Bebidas de Soya    AdeS Frutal
## 104             Extra Grande      Bebidas de Soya    AdeS Frutal
## 105             Extra Grande      Bebidas de Soya    AdeS Frutal
## 106             Extra Grande      Bebidas de Soya    AdeS Frutal
## 107             Extra Grande      Bebidas de Soya    AdeS Frutal
## 108             Extra Grande      Bebidas de Soya    AdeS Frutal
## 109             Extra Grande      Bebidas de Soya    AdeS Frutal
## 110             Extra Grande      Bebidas de Soya    AdeS Frutal
## 111             Extra Grande      Bebidas de Soya    AdeS Frutal
## 112             Extra Grande      Bebidas de Soya    AdeS Frutal
## 113             Extra Grande      Bebidas de Soya    AdeS Frutal
## 114             Extra Grande      Bebidas de Soya    AdeS Frutal
## 115                    Micro      Bebidas de Soya    AdeS Frutal
## 116                    Micro      Bebidas de Soya    AdeS Frutal
## 117                    Micro      Bebidas de Soya    AdeS Frutal
## 118                    Micro      Bebidas de Soya    AdeS Frutal
## 119                    Micro      Bebidas de Soya    AdeS Frutal
## 120                    Micro      Bebidas de Soya    AdeS Frutal
## 121                    Micro      Bebidas de Soya    AdeS Frutal
## 122                    Micro      Bebidas de Soya    AdeS Frutal
## 123                    Micro      Bebidas de Soya    AdeS Frutal
## 124                    Micro      Bebidas de Soya    AdeS Frutal
## 125                    Micro      Bebidas de Soya    AdeS Frutal
## 126                    Micro      Bebidas de Soya    AdeS Frutal
## 127                    Micro      Bebidas de Soya    AdeS Frutal
## 128                    Micro      Bebidas de Soya    AdeS Frutal
## 129                    Micro      Bebidas de Soya    AdeS Frutal
## 130                    Micro      Bebidas de Soya    AdeS Frutal
## 131                    Micro      Bebidas de Soya    AdeS Frutal
## 132                    Micro      Bebidas de Soya    AdeS Frutal
## 133                    Micro      Bebidas de Soya    AdeS Frutal
## 134                    Micro      Bebidas de Soya    AdeS Frutal
## 135                    Micro      Bebidas de Soya    AdeS Frutal
## 136                    Micro      Bebidas de Soya    AdeS Frutal
## 137                    Micro      Bebidas de Soya    AdeS Frutal
## 138                    Micro      Bebidas de Soya    AdeS Frutal
## 139                    Micro      Bebidas de Soya    AdeS Frutal
## 140                    Micro      Bebidas de Soya    AdeS Frutal
## 141                    Micro      Bebidas de Soya    AdeS Frutal
## 142                    Micro      Bebidas de Soya    AdeS Frutal
## 143                    Micro      Bebidas de Soya    AdeS Frutal
## 144                    Micro      Bebidas de Soya    AdeS Frutal
## 145                    Micro      Bebidas de Soya    AdeS Frutal
## 146                    Micro      Bebidas de Soya    AdeS Frutal
## 147                    Micro      Bebidas de Soya    AdeS Frutal
## 148                    Micro      Bebidas de Soya    AdeS Frutal
## 149                    Micro      Bebidas de Soya    AdeS Frutal
## 150                    Micro      Bebidas de Soya    AdeS Frutal
## 151                    Micro      Bebidas de Soya    AdeS Frutal
## 152                    Micro      Bebidas de Soya    AdeS Frutal
## 153                    Micro      Bebidas de Soya    AdeS Frutal
## 154                    Micro      Bebidas de Soya    AdeS Frutal
## 155                    Micro      Bebidas de Soya    AdeS Frutal
## 156                    Micro      Bebidas de Soya    AdeS Frutal
## 157                    Micro      Bebidas de Soya    AdeS Frutal
## 158                    Micro      Bebidas de Soya    AdeS Frutal
## 159                    Micro      Bebidas de Soya    AdeS Frutal
## 160                    Micro      Bebidas de Soya    AdeS Frutal
## 161                    Micro      Bebidas de Soya    AdeS Frutal
## 162                    Micro      Bebidas de Soya    AdeS Frutal
## 163                    Micro      Bebidas de Soya    AdeS Frutal
## 164                    Micro      Bebidas de Soya    AdeS Frutal
## 165                    Micro      Bebidas de Soya    AdeS Frutal
## 166                    Micro      Bebidas de Soya    AdeS Frutal
## 167                    Micro      Bebidas de Soya    AdeS Frutal
## 168                    Micro      Bebidas de Soya    AdeS Frutal
## 169                    Micro      Bebidas de Soya    AdeS Frutal
## 170                    Micro      Bebidas de Soya    AdeS Frutal
## 171                    Micro      Bebidas de Soya    AdeS Frutal
## 172                    Micro      Bebidas de Soya    AdeS Frutal
## 173                    Micro      Bebidas de Soya    AdeS Frutal
## 174                    Micro      Bebidas de Soya    AdeS Frutal
## 175                    Micro      Bebidas de Soya    AdeS Frutal
## 176                    Micro      Bebidas de Soya    AdeS Frutal
## 177                    Micro      Bebidas de Soya    AdeS Frutal
## 178                    Micro      Bebidas de Soya    AdeS Frutal
## 179                    Micro      Bebidas de Soya    AdeS Frutal
## 180                    Micro      Bebidas de Soya    AdeS Frutal
## 181                    Micro      Bebidas de Soya    AdeS Frutal
## 182                    Micro      Bebidas de Soya    AdeS Frutal
## 183                    Micro      Bebidas de Soya    AdeS Frutal
## 184                    Micro      Bebidas de Soya    AdeS Frutal
## 185                    Micro      Bebidas de Soya    AdeS Frutal
## 186                    Micro      Bebidas de Soya    AdeS Frutal
## 187                    Micro      Bebidas de Soya    AdeS Frutal
## 188                    Micro      Bebidas de Soya    AdeS Frutal
## 189                    Micro      Bebidas de Soya    AdeS Frutal
## 190                    Micro      Bebidas de Soya    AdeS Frutal
## 191                    Micro      Bebidas de Soya    AdeS Frutal
## 192                    Micro      Bebidas de Soya    AdeS Frutal
## 193                    Micro      Bebidas de Soya    AdeS Frutal
## 194                    Micro      Bebidas de Soya    AdeS Frutal
## 195                    Micro      Bebidas de Soya    AdeS Frutal
## 196                    Micro      Bebidas de Soya    AdeS Frutal
## 197                    Micro      Bebidas de Soya    AdeS Frutal
## 198                    Micro      Bebidas de Soya    AdeS Frutal
## 199                    Micro      Bebidas de Soya    AdeS Frutal
## 200                    Micro      Bebidas de Soya    AdeS Frutal
## 201                    Micro      Bebidas de Soya    AdeS Frutal
## 202                    Micro      Bebidas de Soya    AdeS Frutal
## 203                    Micro      Bebidas de Soya    AdeS Frutal
## 204                    Micro      Bebidas de Soya    AdeS Frutal
## 205                    Micro      Bebidas de Soya    AdeS Frutal
## 206                    Micro      Bebidas de Soya    AdeS Frutal
## 207                    Micro      Bebidas de Soya    AdeS Frutal
## 208                    Micro      Bebidas de Soya    AdeS Frutal
## 209                    Micro      Bebidas de Soya    AdeS Frutal
## 210                    Micro      Bebidas de Soya    AdeS Frutal
## 211                    Micro      Bebidas de Soya    AdeS Frutal
## 212                    Micro      Bebidas de Soya    AdeS Frutal
## 213                    Micro      Bebidas de Soya    AdeS Frutal
## 214                    Micro      Bebidas de Soya    AdeS Frutal
## 215                    Micro      Bebidas de Soya    AdeS Frutal
## 216                    Micro      Bebidas de Soya    AdeS Frutal
## 217                    Micro      Bebidas de Soya    AdeS Frutal
## 218                    Micro      Bebidas de Soya    AdeS Frutal
## 219                    Micro      Bebidas de Soya    AdeS Frutal
## 220                    Micro      Bebidas de Soya    AdeS Frutal
## 221                    Micro      Bebidas de Soya    AdeS Frutal
## 222                    Micro      Bebidas de Soya    AdeS Frutal
## 223                    Micro      Bebidas de Soya    AdeS Frutal
## 224                    Micro      Bebidas de Soya    AdeS Frutal
## 225                    Micro      Bebidas de Soya    AdeS Frutal
## 226                    Micro      Bebidas de Soya    AdeS Frutal
## 227                    Micro      Bebidas de Soya    AdeS Frutal
## 228                    Micro      Bebidas de Soya    AdeS Frutal
## 229                    Micro      Bebidas de Soya    AdeS Frutal
## 230                    Micro      Bebidas de Soya    AdeS Frutal
## 231                    Micro      Bebidas de Soya    AdeS Frutal
## 232                    Micro      Bebidas de Soya    AdeS Frutal
## 233                    Micro      Bebidas de Soya    AdeS Frutal
## 234                    Micro      Bebidas de Soya    AdeS Frutal
## 235                    Micro      Bebidas de Soya    AdeS Frutal
## 236                    Micro      Bebidas de Soya    AdeS Frutal
## 237                    Micro      Bebidas de Soya    AdeS Frutal
## 238                    Micro      Bebidas de Soya    AdeS Frutal
## 239                    Micro      Bebidas de Soya    AdeS Frutal
## 240                    Micro      Bebidas de Soya    AdeS Frutal
## 241                    Micro      Bebidas de Soya    AdeS Frutal
## 242                    Micro      Bebidas de Soya    AdeS Frutal
## 243                    Micro      Bebidas de Soya    AdeS Frutal
## 244                    Micro      Bebidas de Soya    AdeS Frutal
## 245                    Micro      Bebidas de Soya    AdeS Frutal
## 246                    Micro      Bebidas de Soya    AdeS Frutal
## 247                    Micro      Bebidas de Soya    AdeS Frutal
## 248                    Micro      Bebidas de Soya    AdeS Frutal
## 249                    Micro      Bebidas de Soya    AdeS Frutal
## 250                    Micro      Bebidas de Soya    AdeS Frutal
## 251                    Micro      Bebidas de Soya    AdeS Frutal
## 252                    Micro      Bebidas de Soya    AdeS Frutal
## 253                    Micro      Bebidas de Soya    AdeS Frutal
## 254                    Micro      Bebidas de Soya    AdeS Frutal
## 255                    Micro      Bebidas de Soya    AdeS Frutal
## 256                    Micro      Bebidas de Soya    AdeS Frutal
## 257                    Micro      Bebidas de Soya    AdeS Frutal
## 258                    Micro      Bebidas de Soya    AdeS Frutal
## 259                    Micro      Bebidas de Soya    AdeS Frutal
## 260                    Micro      Bebidas de Soya    AdeS Frutal
## 261                    Micro      Bebidas de Soya    AdeS Frutal
## 262                    Micro      Bebidas de Soya    AdeS Frutal
## 263                    Micro      Bebidas de Soya    AdeS Frutal
## 264                    Micro      Bebidas de Soya    AdeS Frutal
## 265                    Micro      Bebidas de Soya    AdeS Frutal
## 266                    Micro      Bebidas de Soya    AdeS Frutal
## 267                    Micro      Bebidas de Soya    AdeS Frutal
## 268                    Micro      Bebidas de Soya    AdeS Frutal
## 269                    Micro      Bebidas de Soya    AdeS Frutal
## 270                    Micro      Bebidas de Soya    AdeS Frutal
## 271                    Micro      Bebidas de Soya    AdeS Frutal
## 272                    Micro      Bebidas de Soya    AdeS Frutal
## 273                    Micro      Bebidas de Soya    AdeS Frutal
## 274                    Micro      Bebidas de Soya    AdeS Frutal
## 275                    Micro      Bebidas de Soya    AdeS Frutal
## 276                    Micro      Bebidas de Soya    AdeS Frutal
## 277                    Micro      Bebidas de Soya    AdeS Frutal
## 278                    Micro      Bebidas de Soya    AdeS Frutal
## 279                    Micro      Bebidas de Soya    AdeS Frutal
## 280                    Micro      Bebidas de Soya    AdeS Frutal
## 281                    Micro      Bebidas de Soya    AdeS Frutal
## 282                    Micro      Bebidas de Soya    AdeS Frutal
## 283                    Micro      Bebidas de Soya    AdeS Frutal
## 284                    Micro      Bebidas de Soya    AdeS Frutal
## 285                    Micro      Bebidas de Soya    AdeS Frutal
## 286                    Micro      Bebidas de Soya    AdeS Frutal
## 287                    Micro      Bebidas de Soya    AdeS Frutal
## 288                    Micro      Bebidas de Soya    AdeS Frutal
## 289                    Micro      Bebidas de Soya    AdeS Frutal
## 290                    Micro      Bebidas de Soya    AdeS Frutal
## 291                    Micro      Bebidas de Soya    AdeS Frutal
## 292                    Micro      Bebidas de Soya    AdeS Frutal
## 293                    Micro      Bebidas de Soya    AdeS Frutal
## 294                    Micro      Bebidas de Soya    AdeS Frutal
## 295                    Micro      Bebidas de Soya    AdeS Frutal
## 296                    Micro      Bebidas de Soya    AdeS Frutal
## 297                    Micro      Bebidas de Soya    AdeS Frutal
## 298                    Micro      Bebidas de Soya    AdeS Frutal
## 299                    Micro      Bebidas de Soya    AdeS Frutal
## 300                    Micro      Bebidas de Soya    AdeS Frutal
## 301                    Micro      Bebidas de Soya    AdeS Frutal
## 302                    Micro      Bebidas de Soya    AdeS Frutal
## 303                    Micro      Bebidas de Soya    AdeS Frutal
## 304                    Micro      Bebidas de Soya    AdeS Frutal
## 305                    Micro      Bebidas de Soya    AdeS Frutal
## 306                    Micro      Bebidas de Soya    AdeS Frutal
## 307                    Micro      Bebidas de Soya    AdeS Frutal
## 308                    Micro      Bebidas de Soya    AdeS Frutal
## 309                    Micro      Bebidas de Soya    AdeS Frutal
## 310                    Micro      Bebidas de Soya    AdeS Frutal
## 311                    Micro      Bebidas de Soya    AdeS Frutal
## 312                    Micro      Bebidas de Soya    AdeS Frutal
## 313                    Micro      Bebidas de Soya    AdeS Frutal
## 314                    Micro      Bebidas de Soya    AdeS Frutal
## 315                    Micro      Bebidas de Soya    AdeS Frutal
## 316                    Micro      Bebidas de Soya    AdeS Frutal
## 317                    Micro      Bebidas de Soya    AdeS Frutal
## 318                    Micro      Bebidas de Soya    AdeS Frutal
## 319                    Micro      Bebidas de Soya    AdeS Frutal
## 320                    Micro      Bebidas de Soya    AdeS Frutal
## 321                    Micro      Bebidas de Soya    AdeS Frutal
## 322                    Micro      Bebidas de Soya    AdeS Frutal
## 323                    Micro      Bebidas de Soya    AdeS Frutal
## 324                    Micro      Bebidas de Soya    AdeS Frutal
## 325                    Micro      Bebidas de Soya    AdeS Frutal
## 326                    Micro      Bebidas de Soya    AdeS Frutal
## 327                    Micro      Bebidas de Soya    AdeS Frutal
## 328                    Micro      Bebidas de Soya    AdeS Frutal
## 329                    Micro      Bebidas de Soya    AdeS Frutal
## 330                    Micro      Bebidas de Soya    AdeS Frutal
## 331                    Micro      Bebidas de Soya    AdeS Frutal
## 332                    Micro      Bebidas de Soya    AdeS Frutal
## 333                    Micro      Bebidas de Soya    AdeS Frutal
## 334                    Micro      Bebidas de Soya    AdeS Frutal
## 335                    Micro      Bebidas de Soya    AdeS Frutal
## 336                    Micro      Bebidas de Soya    AdeS Frutal
## 337                    Micro      Bebidas de Soya    AdeS Frutal
## 338                    Micro      Bebidas de Soya    AdeS Frutal
## 339                    Micro      Bebidas de Soya    AdeS Frutal
## 340                    Micro      Bebidas de Soya    AdeS Frutal
## 341                    Micro      Bebidas de Soya    AdeS Frutal
## 342                    Micro      Bebidas de Soya    AdeS Frutal
## 343                    Micro      Bebidas de Soya    AdeS Frutal
## 344                    Micro      Bebidas de Soya    AdeS Frutal
## 345                    Micro      Bebidas de Soya    AdeS Frutal
## 346                    Micro      Bebidas de Soya    AdeS Frutal
## 347                    Micro      Bebidas de Soya    AdeS Frutal
## 348                    Micro      Bebidas de Soya    AdeS Frutal
## 349                    Micro      Bebidas de Soya    AdeS Frutal
## 350                    Micro      Bebidas de Soya    AdeS Frutal
## 351                    Micro      Bebidas de Soya    AdeS Frutal
## 352                    Micro      Bebidas de Soya    AdeS Frutal
## 353                    Micro      Bebidas de Soya    AdeS Frutal
## 354                    Micro      Bebidas de Soya    AdeS Frutal
## 355                    Micro      Bebidas de Soya    AdeS Frutal
## 356                    Micro      Bebidas de Soya    AdeS Frutal
## 357                    Micro      Bebidas de Soya    AdeS Frutal
## 358                    Micro      Bebidas de Soya    AdeS Frutal
## 359                    Micro      Bebidas de Soya    AdeS Frutal
## 360                    Micro      Bebidas de Soya    AdeS Frutal
## 361                    Micro      Bebidas de Soya    AdeS Frutal
## 362                    Micro      Bebidas de Soya    AdeS Frutal
## 363                    Micro      Bebidas de Soya    AdeS Frutal
## 364                    Micro      Bebidas de Soya    AdeS Frutal
## 365                    Micro      Bebidas de Soya    AdeS Frutal
## 366             Extra Grande      Bebidas de Soya    AdeS Frutal
## 367             Extra Grande      Bebidas de Soya    AdeS Frutal
## 368             Extra Grande      Bebidas de Soya    AdeS Frutal
## 369             Extra Grande      Bebidas de Soya    AdeS Frutal
## 370             Extra Grande      Bebidas de Soya    AdeS Frutal
## 371             Extra Grande      Bebidas de Soya    AdeS Frutal
## 372             Extra Grande      Bebidas de Soya    AdeS Frutal
## 373             Extra Grande      Bebidas de Soya    AdeS Frutal
## 374             Extra Grande      Bebidas de Soya    AdeS Frutal
## 375             Extra Grande      Bebidas de Soya    AdeS Frutal
## 376             Extra Grande      Bebidas de Soya    AdeS Frutal
## 377             Extra Grande      Bebidas de Soya    AdeS Frutal
## 378             Extra Grande      Bebidas de Soya    AdeS Frutal
## 379             Extra Grande      Bebidas de Soya    AdeS Frutal
## 380             Extra Grande      Bebidas de Soya    AdeS Frutal
## 381             Extra Grande      Bebidas de Soya    AdeS Frutal
## 382             Extra Grande      Bebidas de Soya    AdeS Frutal
## 383             Extra Grande      Bebidas de Soya    AdeS Frutal
## 384             Extra Grande      Bebidas de Soya    AdeS Frutal
## 385             Extra Grande      Bebidas de Soya    AdeS Frutal
## 386             Extra Grande      Bebidas de Soya    AdeS Frutal
## 387             Extra Grande      Bebidas de Soya    AdeS Frutal
## 388             Extra Grande      Bebidas de Soya    AdeS Frutal
## 389             Extra Grande      Bebidas de Soya    AdeS Frutal
## 390             Extra Grande      Bebidas de Soya    AdeS Frutal
## 391             Extra Grande      Bebidas de Soya    AdeS Frutal
## 392             Extra Grande      Bebidas de Soya    AdeS Frutal
## 393             Extra Grande      Bebidas de Soya    AdeS Frutal
## 394             Extra Grande      Bebidas de Soya    AdeS Frutal
## 395             Extra Grande      Bebidas de Soya    AdeS Frutal
## 396             Extra Grande      Bebidas de Soya    AdeS Frutal
## 397             Extra Grande      Bebidas de Soya    AdeS Frutal
## 398             Extra Grande      Bebidas de Soya    AdeS Frutal
## 399             Extra Grande      Bebidas de Soya    AdeS Frutal
## 400             Extra Grande      Bebidas de Soya    AdeS Frutal
## 401             Extra Grande      Bebidas de Soya    AdeS Frutal
## 402             Extra Grande      Bebidas de Soya    AdeS Frutal
## 403             Extra Grande      Bebidas de Soya    AdeS Frutal
## 404             Extra Grande      Bebidas de Soya    AdeS Frutal
## 405             Extra Grande      Bebidas de Soya    AdeS Frutal
## 406             Extra Grande      Bebidas de Soya    AdeS Frutal
## 407             Extra Grande      Bebidas de Soya    AdeS Frutal
## 408             Extra Grande      Bebidas de Soya    AdeS Frutal
## 409             Extra Grande      Bebidas de Soya    AdeS Frutal
## 410             Extra Grande      Bebidas de Soya    AdeS Frutal
## 411             Extra Grande      Bebidas de Soya    AdeS Frutal
## 412             Extra Grande      Bebidas de Soya    AdeS Frutal
## 413             Extra Grande      Bebidas de Soya    AdeS Frutal
## 414             Extra Grande      Bebidas de Soya    AdeS Frutal
## 415             Extra Grande      Bebidas de Soya    AdeS Frutal
## 416             Extra Grande      Bebidas de Soya    AdeS Frutal
## 417             Extra Grande      Bebidas de Soya    AdeS Frutal
## 418             Extra Grande      Bebidas de Soya    AdeS Frutal
## 419             Extra Grande      Bebidas de Soya    AdeS Frutal
## 420             Extra Grande      Bebidas de Soya    AdeS Frutal
## 421             Extra Grande      Bebidas de Soya    AdeS Frutal
## 422             Extra Grande      Bebidas de Soya    AdeS Frutal
## 423             Extra Grande      Bebidas de Soya    AdeS Frutal
## 424             Extra Grande      Bebidas de Soya    AdeS Frutal
## 425             Extra Grande      Bebidas de Soya    AdeS Frutal
## 426             Extra Grande      Bebidas de Soya    AdeS Frutal
## 427             Extra Grande      Bebidas de Soya    AdeS Frutal
## 428             Extra Grande      Bebidas de Soya    AdeS Frutal
## 429             Extra Grande      Bebidas de Soya    AdeS Frutal
## 430             Extra Grande      Bebidas de Soya    AdeS Frutal
## 431             Extra Grande      Bebidas de Soya    AdeS Frutal
## 432             Extra Grande      Bebidas de Soya    AdeS Frutal
## 433             Extra Grande      Bebidas de Soya    AdeS Frutal
## 434             Extra Grande      Bebidas de Soya    AdeS Frutal
## 435             Extra Grande      Bebidas de Soya    AdeS Frutal
## 436             Extra Grande      Bebidas de Soya    AdeS Frutal
## 437             Extra Grande      Bebidas de Soya    AdeS Frutal
## 438             Extra Grande      Bebidas de Soya    AdeS Frutal
## 439             Extra Grande      Bebidas de Soya    AdeS Frutal
## 440             Extra Grande      Bebidas de Soya    AdeS Frutal
## 441             Extra Grande      Bebidas de Soya    AdeS Frutal
## 442             Extra Grande      Bebidas de Soya    AdeS Frutal
## 443             Extra Grande      Bebidas de Soya    AdeS Frutal
## 444             Extra Grande      Bebidas de Soya    AdeS Frutal
## 445             Extra Grande      Bebidas de Soya    AdeS Frutal
## 446             Extra Grande      Bebidas de Soya    AdeS Frutal
## 447             Extra Grande      Bebidas de Soya    AdeS Frutal
## 448             Extra Grande      Bebidas de Soya    AdeS Frutal
## 449             Extra Grande      Bebidas de Soya    AdeS Frutal
## 450             Extra Grande      Bebidas de Soya    AdeS Frutal
## 451             Extra Grande      Bebidas de Soya    AdeS Frutal
## 452             Extra Grande      Bebidas de Soya    AdeS Frutal
## 453             Extra Grande      Bebidas de Soya    AdeS Frutal
## 454             Extra Grande      Bebidas de Soya    AdeS Frutal
## 455             Extra Grande      Bebidas de Soya    AdeS Frutal
## 456             Extra Grande      Bebidas de Soya    AdeS Frutal
## 457             Extra Grande      Bebidas de Soya    AdeS Frutal
## 458             Extra Grande      Bebidas de Soya    AdeS Frutal
## 459             Extra Grande      Bebidas de Soya    AdeS Frutal
## 460             Extra Grande      Bebidas de Soya    AdeS Frutal
## 461             Extra Grande      Bebidas de Soya    AdeS Frutal
## 462             Extra Grande      Bebidas de Soya    AdeS Frutal
## 463             Extra Grande      Bebidas de Soya    AdeS Frutal
## 464             Extra Grande      Bebidas de Soya    AdeS Frutal
## 465             Extra Grande      Bebidas de Soya    AdeS Frutal
## 466             Extra Grande      Bebidas de Soya    AdeS Frutal
## 467             Extra Grande      Bebidas de Soya    AdeS Frutal
## 468             Extra Grande      Bebidas de Soya    AdeS Frutal
## 469             Extra Grande      Bebidas de Soya    AdeS Frutal
## 470             Extra Grande      Bebidas de Soya    AdeS Frutal
## 471             Extra Grande      Bebidas de Soya    AdeS Frutal
## 472             Extra Grande      Bebidas de Soya    AdeS Frutal
## 473                    Micro      Bebidas de Soya    AdeS Frutal
## 474                    Micro      Bebidas de Soya    AdeS Frutal
## 475                    Micro      Bebidas de Soya    AdeS Frutal
## 476                    Micro      Bebidas de Soya    AdeS Frutal
## 477                    Micro      Bebidas de Soya    AdeS Frutal
## 478                    Micro      Bebidas de Soya    AdeS Frutal
## 479                    Micro      Bebidas de Soya    AdeS Frutal
## 480                    Micro      Bebidas de Soya    AdeS Frutal
## 481                    Micro      Bebidas de Soya    AdeS Frutal
## 482                    Micro      Bebidas de Soya    AdeS Frutal
## 483                    Micro      Bebidas de Soya    AdeS Frutal
## 484                    Micro      Bebidas de Soya    AdeS Frutal
## 485                    Micro      Bebidas de Soya    AdeS Frutal
## 486                    Micro      Bebidas de Soya    AdeS Frutal
## 487                    Micro      Bebidas de Soya    AdeS Frutal
## 488                    Micro      Bebidas de Soya    AdeS Frutal
## 489                    Micro      Bebidas de Soya    AdeS Frutal
## 490                    Micro      Bebidas de Soya    AdeS Frutal
## 491                    Micro      Bebidas de Soya    AdeS Frutal
## 492                    Micro      Bebidas de Soya    AdeS Frutal
## 493                    Micro      Bebidas de Soya    AdeS Frutal
## 494                    Micro      Bebidas de Soya    AdeS Frutal
## 495                    Micro      Bebidas de Soya    AdeS Frutal
## 496                    Micro      Bebidas de Soya    AdeS Frutal
## 497                    Micro      Bebidas de Soya    AdeS Frutal
## 498                    Micro      Bebidas de Soya    AdeS Frutal
## 499                    Micro      Bebidas de Soya    AdeS Frutal
## 500                    Micro      Bebidas de Soya    AdeS Frutal
## 501                    Micro      Bebidas de Soya    AdeS Frutal
## 502                    Micro      Bebidas de Soya    AdeS Frutal
## 503                    Micro      Bebidas de Soya    AdeS Frutal
## 504                    Micro      Bebidas de Soya    AdeS Frutal
## 505                    Micro      Bebidas de Soya    AdeS Frutal
## 506                    Micro      Bebidas de Soya    AdeS Frutal
## 507                    Micro      Bebidas de Soya    AdeS Frutal
## 508                    Micro      Bebidas de Soya    AdeS Frutal
## 509                    Micro      Bebidas de Soya    AdeS Frutal
## 510                    Micro      Bebidas de Soya    AdeS Frutal
## 511                    Micro      Bebidas de Soya    AdeS Frutal
## 512                    Micro      Bebidas de Soya    AdeS Frutal
## 513                    Micro      Bebidas de Soya    AdeS Frutal
## 514                    Micro      Bebidas de Soya    AdeS Frutal
## 515                    Micro      Bebidas de Soya    AdeS Frutal
## 516                    Micro      Bebidas de Soya    AdeS Frutal
## 517                    Micro      Bebidas de Soya    AdeS Frutal
## 518                    Micro      Bebidas de Soya    AdeS Frutal
## 519                    Micro      Bebidas de Soya    AdeS Frutal
## 520                    Micro      Bebidas de Soya    AdeS Frutal
## 521                    Micro      Bebidas de Soya    AdeS Frutal
## 522                    Micro      Bebidas de Soya    AdeS Frutal
## 523                    Micro      Bebidas de Soya    AdeS Frutal
## 524                    Micro      Bebidas de Soya    AdeS Frutal
## 525                    Micro      Bebidas de Soya    AdeS Frutal
## 526                    Micro      Bebidas de Soya    AdeS Frutal
## 527                    Micro      Bebidas de Soya    AdeS Frutal
## 528                    Micro      Bebidas de Soya    AdeS Frutal
## 529                    Micro      Bebidas de Soya    AdeS Frutal
## 530                    Micro      Bebidas de Soya    AdeS Frutal
## 531                    Micro      Bebidas de Soya    AdeS Frutal
## 532                    Micro      Bebidas de Soya    AdeS Frutal
## 533                    Micro      Bebidas de Soya    AdeS Frutal
## 534                    Micro      Bebidas de Soya    AdeS Frutal
## 535                    Micro      Bebidas de Soya    AdeS Frutal
## 536                    Micro      Bebidas de Soya    AdeS Frutal
## 537                    Micro      Bebidas de Soya    AdeS Frutal
## 538                    Micro      Bebidas de Soya    AdeS Frutal
## 539                    Micro      Bebidas de Soya    AdeS Frutal
## 540                    Micro      Bebidas de Soya    AdeS Frutal
## 541                    Micro      Bebidas de Soya    AdeS Frutal
## 542                    Micro      Bebidas de Soya    AdeS Frutal
## 543                    Micro      Bebidas de Soya    AdeS Frutal
## 544                    Micro      Bebidas de Soya    AdeS Frutal
## 545                    Micro      Bebidas de Soya    AdeS Frutal
## 546                    Micro      Bebidas de Soya    AdeS Frutal
## 547                    Micro      Bebidas de Soya    AdeS Frutal
## 548                    Micro      Bebidas de Soya    AdeS Frutal
## 549                    Micro      Bebidas de Soya    AdeS Frutal
## 550                    Micro      Bebidas de Soya    AdeS Frutal
## 551                    Micro      Bebidas de Soya    AdeS Frutal
## 552                    Micro      Bebidas de Soya    AdeS Frutal
## 553                    Micro      Bebidas de Soya    AdeS Frutal
## 554                    Micro      Bebidas de Soya    AdeS Frutal
## 555                    Micro      Bebidas de Soya    AdeS Frutal
## 556                    Micro      Bebidas de Soya    AdeS Frutal
## 557                    Micro      Bebidas de Soya    AdeS Frutal
## 558                    Micro      Bebidas de Soya    AdeS Frutal
## 559                    Micro      Bebidas de Soya    AdeS Frutal
## 560                    Micro      Bebidas de Soya    AdeS Frutal
## 561                    Micro      Bebidas de Soya    AdeS Frutal
## 562                    Micro      Bebidas de Soya    AdeS Frutal
## 563                    Micro      Bebidas de Soya    AdeS Frutal
## 564                    Micro      Bebidas de Soya    AdeS Frutal
## 565                    Micro      Bebidas de Soya    AdeS Frutal
## 566                    Micro      Bebidas de Soya    AdeS Frutal
## 567                    Micro      Bebidas de Soya    AdeS Frutal
## 568                    Micro      Bebidas de Soya    AdeS Frutal
## 569                    Micro      Bebidas de Soya    AdeS Frutal
## 570                    Micro      Bebidas de Soya    AdeS Frutal
## 571                    Micro      Bebidas de Soya    AdeS Frutal
## 572                    Micro      Bebidas de Soya    AdeS Frutal
## 573                    Micro      Bebidas de Soya    AdeS Frutal
## 574                    Micro      Bebidas de Soya    AdeS Frutal
## 575                    Micro      Bebidas de Soya    AdeS Frutal
## 576                    Micro      Bebidas de Soya    AdeS Frutal
## 577                    Micro      Bebidas de Soya    AdeS Frutal
## 578                    Micro      Bebidas de Soya    AdeS Frutal
## 579                    Micro      Bebidas de Soya    AdeS Frutal
## 580                    Micro      Bebidas de Soya    AdeS Frutal
## 581                    Micro      Bebidas de Soya    AdeS Frutal
## 582                    Micro      Bebidas de Soya    AdeS Frutal
## 583                    Micro      Bebidas de Soya    AdeS Frutal
## 584                    Micro      Bebidas de Soya    AdeS Frutal
## 585                    Micro      Bebidas de Soya    AdeS Frutal
## 586                    Micro      Bebidas de Soya    AdeS Frutal
## 587               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 588               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 589               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 590               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 591               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 592               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 593               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 594               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 595               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 596               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 597               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 598               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 599               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 600               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 601               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 602               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 603               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 604               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 605               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 606               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 607               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 608               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 609               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 610               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 611               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 612               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 613               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 614               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 615               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 616               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 617               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 618               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 619               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 620               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 621               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 622               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 623               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 624               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 625               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 626               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 627               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 628               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 629               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 630               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 631               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 632               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 633               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 634               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 635               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 636               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 637               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 638               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 639               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 640               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 641               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 642               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 643               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 644               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 645               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 646               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 647               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 648               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 649               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 650               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 651               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 652               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 653               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 654               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 655               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 656               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 657               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 658               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 659               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 660               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 661               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 662               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 663               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 664               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 665               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 666               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 667               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 668               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 669               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 670               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 671               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 672               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 673               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 674               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 675               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 676               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 677               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 678               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 679               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 680               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 681               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 682               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 683               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 684               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 685               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 686               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 687               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 688               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 689               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 690               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 691               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 692               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 693               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 694               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 695               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 696               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 697               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 698               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 699               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 700               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 701               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 702               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 703               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 704               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 705               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 706               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 707               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 708               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 709               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 710               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 711               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 712               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 713               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 714               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 715               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 716               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 717               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 718               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 719               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 720               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 721               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 722               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 723               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 724               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 725               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 726               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 727               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 728               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 729               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 730               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 731               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 732               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 733               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 734               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 735               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 736               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 737               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 738               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 739               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 740               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 741               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 742               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 743               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 744               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 745               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 746               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 747               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 748               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 749               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 750               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 751               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 752               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 753               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 754               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 755               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 756               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 757               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 758               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 759               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 760               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 761               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 762               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 763               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 764               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 765               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 766               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 767               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 768               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 769               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 770               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 771               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 772               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 773               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 774               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 775               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 776               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 777               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 778               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 779               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 780               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 781               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 782               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 783               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 784               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 785               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 786               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 787               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 788               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 789               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 790               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 791               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 792               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 793               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 794               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 795               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 796               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 797               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 798               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 799               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 800               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 801               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 802               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 803               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 804               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 805               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 806               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 807               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 808               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 809               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 810               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 811               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 812               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 813               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 814               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 815               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 816               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 817               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 818               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 819               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 820               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 821               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 822               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 823               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 824               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 825               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 826               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 827               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 828               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 829               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 830               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 831               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 832               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 833               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 834               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 835               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 836               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 837               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 838               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 839               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 840               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 841               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 842               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 843               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 844               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 845               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 846               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 847               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 848               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 849               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 850               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 851               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 852               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 853               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 854               Peque\x96o      Bebidas de Soya    AdeS Frutal
## 855                   Grande      Bebidas de Soya    AdeS Frutal
## 856                   Grande      Bebidas de Soya    AdeS Frutal
## 857                   Grande      Bebidas de Soya    AdeS Frutal
## 858                   Grande      Bebidas de Soya    AdeS Frutal
## 859                   Grande      Bebidas de Soya    AdeS Frutal
## 860                   Grande      Bebidas de Soya    AdeS Frutal
## 861                   Grande      Bebidas de Soya    AdeS Frutal
## 862                   Grande      Bebidas de Soya    AdeS Frutal
## 863                   Grande      Bebidas de Soya    AdeS Frutal
## 864                   Grande      Bebidas de Soya    AdeS Frutal
## 865                   Grande      Bebidas de Soya    AdeS Frutal
## 866                   Grande      Bebidas de Soya    AdeS Frutal
## 867                   Grande      Bebidas de Soya    AdeS Frutal
## 868                   Grande      Bebidas de Soya    AdeS Frutal
## 869                   Grande      Bebidas de Soya    AdeS Frutal
## 870                   Grande      Bebidas de Soya    AdeS Frutal
## 871                   Grande      Bebidas de Soya    AdeS Frutal
## 872                   Grande      Bebidas de Soya    AdeS Frutal
## 873                   Grande      Bebidas de Soya    AdeS Frutal
## 874                   Grande      Bebidas de Soya    AdeS Frutal
## 875                   Grande      Bebidas de Soya    AdeS Frutal
## 876                   Grande      Bebidas de Soya    AdeS Frutal
## 877                   Grande      Bebidas de Soya    AdeS Frutal
## 878                   Grande      Bebidas de Soya    AdeS Frutal
## 879                   Grande      Bebidas de Soya    AdeS Frutal
## 880                   Grande      Bebidas de Soya    AdeS Frutal
## 881                   Grande      Bebidas de Soya    AdeS Frutal
## 882                   Grande      Bebidas de Soya    AdeS Frutal
## 883                   Grande      Bebidas de Soya    AdeS Frutal
## 884                   Grande      Bebidas de Soya    AdeS Frutal
## 885                   Grande      Bebidas de Soya    AdeS Frutal
## 886                   Grande      Bebidas de Soya    AdeS Frutal
## 887                   Grande      Bebidas de Soya    AdeS Frutal
## 888                   Grande      Bebidas de Soya    AdeS Frutal
## 889                   Grande      Bebidas de Soya    AdeS Frutal
## 890                   Grande      Bebidas de Soya    AdeS Frutal
## 891                   Grande      Bebidas de Soya    AdeS Frutal
## 892                   Grande      Bebidas de Soya    AdeS Frutal
## 893                   Grande      Bebidas de Soya    AdeS Frutal
## 894                   Grande      Bebidas de Soya    AdeS Frutal
## 895                   Grande      Bebidas de Soya    AdeS Frutal
## 896                   Grande      Bebidas de Soya    AdeS Frutal
## 897                   Grande      Bebidas de Soya    AdeS Frutal
## 898                   Grande      Bebidas de Soya    AdeS Frutal
## 899                   Grande      Bebidas de Soya    AdeS Frutal
## 900                   Grande      Bebidas de Soya    AdeS Frutal
## 901                   Grande      Bebidas de Soya    AdeS Frutal
## 902                   Grande      Bebidas de Soya    AdeS Frutal
## 903                   Grande      Bebidas de Soya    AdeS Frutal
## 904                   Grande      Bebidas de Soya    AdeS Frutal
## 905                   Grande      Bebidas de Soya    AdeS Frutal
## 906                   Grande      Bebidas de Soya    AdeS Frutal
## 907                   Grande      Bebidas de Soya    AdeS Frutal
## 908                   Grande      Bebidas de Soya    AdeS Frutal
## 909                   Grande      Bebidas de Soya    AdeS Frutal
## 910                   Grande      Bebidas de Soya    AdeS Frutal
## 911                   Grande      Bebidas de Soya    AdeS Frutal
## 912                   Grande      Bebidas de Soya    AdeS Frutal
## 913                   Grande      Bebidas de Soya    AdeS Frutal
## 914                   Grande      Bebidas de Soya    AdeS Frutal
## 915                   Grande      Bebidas de Soya    AdeS Frutal
## 916                   Grande      Bebidas de Soya    AdeS Frutal
## 917                   Grande      Bebidas de Soya    AdeS Frutal
## 918                   Grande      Bebidas de Soya    AdeS Frutal
## 919                   Grande      Bebidas de Soya    AdeS Frutal
## 920                   Grande      Bebidas de Soya    AdeS Frutal
## 921                   Grande      Bebidas de Soya    AdeS Frutal
## 922                   Grande      Bebidas de Soya    AdeS Frutal
## 923                   Grande      Bebidas de Soya    AdeS Frutal
## 924                   Grande      Bebidas de Soya    AdeS Frutal
## 925                   Grande      Bebidas de Soya    AdeS Frutal
## 926                   Grande      Bebidas de Soya    AdeS Frutal
## 927                   Grande      Bebidas de Soya    AdeS Frutal
## 928                   Grande      Bebidas de Soya    AdeS Frutal
## 929                   Grande      Bebidas de Soya    AdeS Frutal
## 930                   Grande      Bebidas de Soya    AdeS Frutal
## 931                   Grande      Bebidas de Soya    AdeS Frutal
## 932                   Grande      Bebidas de Soya    AdeS Frutal
## 933                   Grande      Bebidas de Soya    AdeS Frutal
## 934                   Grande      Bebidas de Soya    AdeS Frutal
## 935                   Grande      Bebidas de Soya    AdeS Frutal
## 936                   Grande      Bebidas de Soya    AdeS Frutal
## 937                   Grande      Bebidas de Soya    AdeS Frutal
## 938                   Grande      Bebidas de Soya    AdeS Frutal
## 939                   Grande      Bebidas de Soya    AdeS Frutal
## 940                   Grande      Bebidas de Soya    AdeS Frutal
## 941                   Grande      Bebidas de Soya    AdeS Frutal
## 942                   Grande      Bebidas de Soya    AdeS Frutal
## 943                   Grande      Bebidas de Soya    AdeS Frutal
## 944                   Grande      Bebidas de Soya    AdeS Frutal
## 945                   Grande      Bebidas de Soya    AdeS Frutal
## 946                   Grande      Bebidas de Soya    AdeS Frutal
## 947                   Grande      Bebidas de Soya    AdeS Frutal
## 948                   Grande      Bebidas de Soya    AdeS Frutal
## 949                   Grande      Bebidas de Soya    AdeS Frutal
## 950                   Grande      Bebidas de Soya    AdeS Frutal
## 951                   Grande      Bebidas de Soya    AdeS Frutal
## 952                   Grande      Bebidas de Soya    AdeS Frutal
## 953                   Grande      Bebidas de Soya    AdeS Frutal
## 954                   Grande      Bebidas de Soya    AdeS Frutal
## 955                   Grande      Bebidas de Soya    AdeS Frutal
## 956                   Grande      Bebidas de Soya    AdeS Frutal
## 957                   Grande      Bebidas de Soya    AdeS Frutal
## 958                   Grande      Bebidas de Soya    AdeS Frutal
## 959                   Grande      Bebidas de Soya    AdeS Frutal
## 960                   Grande      Bebidas de Soya    AdeS Frutal
## 961                   Grande      Bebidas de Soya    AdeS Frutal
## 962                   Grande      Bebidas de Soya    AdeS Frutal
## 963                   Grande      Bebidas de Soya    AdeS Frutal
## 964                   Grande      Bebidas de Soya    AdeS Frutal
## 965                   Grande      Bebidas de Soya    AdeS Frutal
## 966                   Grande      Bebidas de Soya    AdeS Frutal
## 967                   Grande      Bebidas de Soya    AdeS Frutal
## 968                   Grande      Bebidas de Soya    AdeS Frutal
## 969                   Grande      Bebidas de Soya    AdeS Frutal
## 970                   Grande      Bebidas de Soya    AdeS Frutal
## 971                   Grande      Bebidas de Soya    AdeS Frutal
## 972                   Grande      Bebidas de Soya    AdeS Frutal
## 973                   Grande      Bebidas de Soya    AdeS Frutal
## 974                   Grande      Bebidas de Soya    AdeS Frutal
## 975                   Grande      Bebidas de Soya    AdeS Frutal
## 976                   Grande      Bebidas de Soya    AdeS Frutal
## 977                   Grande      Bebidas de Soya    AdeS Frutal
## 978                   Grande      Bebidas de Soya    AdeS Frutal
## 979                   Grande      Bebidas de Soya    AdeS Frutal
## 980                   Grande      Bebidas de Soya    AdeS Frutal
## 981                   Grande      Bebidas de Soya    AdeS Frutal
## 982                   Grande      Bebidas de Soya    AdeS Frutal
## 983                   Grande      Bebidas de Soya    AdeS Frutal
## 984                   Grande      Bebidas de Soya    AdeS Frutal
## 985                   Grande      Bebidas de Soya    AdeS Frutal
## 986                   Grande      Bebidas de Soya    AdeS Frutal
## 987                   Grande      Bebidas de Soya    AdeS Frutal
## 988                   Grande      Bebidas de Soya    AdeS Frutal
## 989                   Grande      Bebidas de Soya    AdeS Frutal
## 990                   Grande      Bebidas de Soya    AdeS Frutal
## 991                   Grande      Bebidas de Soya    AdeS Frutal
## 992                   Grande      Bebidas de Soya    AdeS Frutal
## 993                   Grande      Bebidas de Soya    AdeS Frutal
## 994                   Grande      Bebidas de Soya    AdeS Frutal
## 995                   Grande      Bebidas de Soya    AdeS Frutal
## 996                   Grande      Bebidas de Soya    AdeS Frutal
## 997                   Grande      Bebidas de Soya    AdeS Frutal
## 998                   Grande      Bebidas de Soya    AdeS Frutal
## 999                   Grande      Bebidas de Soya    AdeS Frutal
## 1000                  Grande      Bebidas de Soya    AdeS Frutal
## 1001                  Grande      Bebidas de Soya    AdeS Frutal
## 1002                  Grande      Bebidas de Soya    AdeS Frutal
## 1003                  Grande      Bebidas de Soya    AdeS Frutal
## 1004                  Grande      Bebidas de Soya    AdeS Frutal
## 1005                  Grande      Bebidas de Soya    AdeS Frutal
## 1006                  Grande      Bebidas de Soya    AdeS Frutal
## 1007                  Grande      Bebidas de Soya    AdeS Frutal
## 1008                  Grande      Bebidas de Soya    AdeS Frutal
## 1009                  Grande      Bebidas de Soya    AdeS Frutal
## 1010                  Grande      Bebidas de Soya    AdeS Frutal
## 1011                  Grande      Bebidas de Soya    AdeS Frutal
## 1012                  Grande      Bebidas de Soya    AdeS Frutal
## 1013                  Grande      Bebidas de Soya    AdeS Frutal
## 1014                  Grande      Bebidas de Soya    AdeS Frutal
## 1015                  Grande      Bebidas de Soya    AdeS Frutal
## 1016                  Grande      Bebidas de Soya    AdeS Frutal
## 1017                  Grande      Bebidas de Soya    AdeS Frutal
## 1018                  Grande      Bebidas de Soya    AdeS Frutal
## 1019                  Grande      Bebidas de Soya    AdeS Frutal
## 1020                  Grande      Bebidas de Soya    AdeS Frutal
## 1021                  Grande      Bebidas de Soya    AdeS Frutal
## 1022                  Grande      Bebidas de Soya    AdeS Frutal
## 1023                  Grande      Bebidas de Soya    AdeS Frutal
## 1024                  Grande      Bebidas de Soya    AdeS Frutal
## 1025                  Grande      Bebidas de Soya    AdeS Frutal
## 1026                  Grande      Bebidas de Soya    AdeS Frutal
## 1027                  Grande      Bebidas de Soya    AdeS Frutal
## 1028                  Grande      Bebidas de Soya    AdeS Frutal
## 1029                  Grande      Bebidas de Soya    AdeS Frutal
## 1030                  Grande      Bebidas de Soya    AdeS Frutal
## 1031                  Grande      Bebidas de Soya    AdeS Frutal
## 1032                  Grande      Bebidas de Soya    AdeS Frutal
## 1033                  Grande      Bebidas de Soya    AdeS Frutal
## 1034                  Grande      Bebidas de Soya    AdeS Frutal
## 1035                  Grande      Bebidas de Soya    AdeS Frutal
## 1036                  Grande      Bebidas de Soya    AdeS Frutal
## 1037                  Grande      Bebidas de Soya    AdeS Frutal
## 1038                  Grande      Bebidas de Soya    AdeS Frutal
## 1039                  Grande      Bebidas de Soya    AdeS Frutal
## 1040                  Grande      Bebidas de Soya    AdeS Frutal
## 1041                  Grande      Bebidas de Soya    AdeS Frutal
## 1042                  Grande      Bebidas de Soya    AdeS Frutal
## 1043                  Grande      Bebidas de Soya    AdeS Frutal
## 1044                  Grande      Bebidas de Soya    AdeS Frutal
## 1045                  Grande      Bebidas de Soya    AdeS Frutal
## 1046                  Grande      Bebidas de Soya    AdeS Frutal
## 1047                  Grande      Bebidas de Soya    AdeS Frutal
## 1048                  Grande      Bebidas de Soya    AdeS Frutal
## 1049                  Grande      Bebidas de Soya    AdeS Frutal
## 1050                  Grande      Bebidas de Soya    AdeS Frutal
## 1051                  Grande      Bebidas de Soya    AdeS Frutal
## 1052                  Grande      Bebidas de Soya    AdeS Frutal
## 1053                  Grande      Bebidas de Soya    AdeS Frutal
## 1054                  Grande      Bebidas de Soya    AdeS Frutal
## 1055                  Grande      Bebidas de Soya    AdeS Frutal
## 1056                  Grande      Bebidas de Soya    AdeS Frutal
## 1057                  Grande      Bebidas de Soya    AdeS Frutal
## 1058                  Grande      Bebidas de Soya    AdeS Frutal
## 1059                  Grande      Bebidas de Soya    AdeS Frutal
## 1060                  Grande      Bebidas de Soya    AdeS Frutal
## 1061                  Grande      Bebidas de Soya    AdeS Frutal
## 1062                  Grande      Bebidas de Soya    AdeS Frutal
## 1063                  Grande      Bebidas de Soya    AdeS Frutal
## 1064                  Grande      Bebidas de Soya    AdeS Frutal
## 1065                  Grande      Bebidas de Soya    AdeS Frutal
## 1066                  Grande      Bebidas de Soya    AdeS Frutal
## 1067                  Grande      Bebidas de Soya    AdeS Frutal
## 1068                  Grande      Bebidas de Soya    AdeS Frutal
## 1069                  Grande      Bebidas de Soya    AdeS Frutal
## 1070                  Grande      Bebidas de Soya    AdeS Frutal
## 1071                  Grande      Bebidas de Soya    AdeS Frutal
## 1072                  Grande      Bebidas de Soya    AdeS Frutal
## 1073                  Grande      Bebidas de Soya    AdeS Frutal
## 1074                  Grande      Bebidas de Soya    AdeS Frutal
## 1075                  Grande      Bebidas de Soya    AdeS Frutal
## 1076                  Grande      Bebidas de Soya    AdeS Frutal
## 1077                  Grande      Bebidas de Soya    AdeS Frutal
## 1078                  Grande      Bebidas de Soya    AdeS Frutal
## 1079                  Grande      Bebidas de Soya    AdeS Frutal
## 1080                  Grande      Bebidas de Soya    AdeS Frutal
## 1081                  Grande      Bebidas de Soya    AdeS Frutal
## 1082                  Grande      Bebidas de Soya    AdeS Frutal
## 1083                  Grande      Bebidas de Soya    AdeS Frutal
## 1084                  Grande      Bebidas de Soya    AdeS Frutal
## 1085                  Grande      Bebidas de Soya    AdeS Frutal
## 1086                  Grande      Bebidas de Soya    AdeS Frutal
## 1087                  Grande      Bebidas de Soya    AdeS Frutal
## 1088                  Grande      Bebidas de Soya    AdeS Frutal
## 1089                  Grande      Bebidas de Soya    AdeS Frutal
## 1090                  Grande      Bebidas de Soya    AdeS Frutal
## 1091                  Grande      Bebidas de Soya    AdeS Frutal
## 1092                  Grande      Bebidas de Soya    AdeS Frutal
## 1093                  Grande      Bebidas de Soya    AdeS Frutal
## 1094                  Grande      Bebidas de Soya    AdeS Frutal
## 1095                  Grande      Bebidas de Soya    AdeS Frutal
## 1096                  Grande      Bebidas de Soya    AdeS Frutal
## 1097                  Grande      Bebidas de Soya    AdeS Frutal
## 1098                  Grande      Bebidas de Soya    AdeS Frutal
## 1099                  Grande      Bebidas de Soya    AdeS Frutal
## 1100                  Grande      Bebidas de Soya    AdeS Frutal
## 1101                  Grande      Bebidas de Soya    AdeS Frutal
## 1102                  Grande      Bebidas de Soya    AdeS Frutal
## 1103                  Grande      Bebidas de Soya    AdeS Frutal
## 1104                  Grande      Bebidas de Soya    AdeS Frutal
## 1105                  Grande      Bebidas de Soya    AdeS Frutal
## 1106                  Grande      Bebidas de Soya    AdeS Frutal
## 1107                  Grande      Bebidas de Soya    AdeS Frutal
## 1108                  Grande      Bebidas de Soya    AdeS Frutal
## 1109                  Grande      Bebidas de Soya    AdeS Frutal
## 1110                  Grande      Bebidas de Soya    AdeS Frutal
## 1111                  Grande      Bebidas de Soya    AdeS Frutal
## 1112                  Grande      Bebidas de Soya    AdeS Frutal
## 1113                  Grande      Bebidas de Soya    AdeS Frutal
## 1114                  Grande      Bebidas de Soya    AdeS Frutal
## 1115                  Grande      Bebidas de Soya    AdeS Frutal
## 1116                  Grande      Bebidas de Soya    AdeS Frutal
## 1117                  Grande      Bebidas de Soya    AdeS Frutal
## 1118                  Grande      Bebidas de Soya    AdeS Frutal
## 1119                  Grande      Bebidas de Soya    AdeS Frutal
## 1120                  Grande      Bebidas de Soya    AdeS Frutal
## 1121                  Grande      Bebidas de Soya    AdeS Frutal
## 1122                  Grande      Bebidas de Soya    AdeS Frutal
## 1123                  Grande      Bebidas de Soya    AdeS Frutal
## 1124                  Grande      Bebidas de Soya    AdeS Frutal
## 1125                  Grande      Bebidas de Soya    AdeS Frutal
## 1126                  Grande      Bebidas de Soya    AdeS Frutal
## 1127                  Grande      Bebidas de Soya    AdeS Frutal
## 1128                  Grande      Bebidas de Soya    AdeS Frutal
## 1129                  Grande      Bebidas de Soya    AdeS Frutal
## 1130                  Grande      Bebidas de Soya    AdeS Frutal
## 1131                  Grande      Bebidas de Soya    AdeS Frutal
## 1132                  Grande      Bebidas de Soya    AdeS Frutal
## 1133                  Grande      Bebidas de Soya    AdeS Frutal
## 1134                  Grande      Bebidas de Soya    AdeS Frutal
## 1135                  Grande      Bebidas de Soya    AdeS Frutal
## 1136                  Grande      Bebidas de Soya    AdeS Frutal
## 1137                  Grande      Bebidas de Soya    AdeS Frutal
## 1138                  Grande      Bebidas de Soya    AdeS Frutal
## 1139                  Grande      Bebidas de Soya    AdeS Frutal
## 1140                  Grande      Bebidas de Soya    AdeS Frutal
## 1141                  Grande      Bebidas de Soya    AdeS Frutal
## 1142                  Grande      Bebidas de Soya    AdeS Frutal
## 1143                  Grande      Bebidas de Soya    AdeS Frutal
## 1144                  Grande      Bebidas de Soya    AdeS Frutal
## 1145                  Grande      Bebidas de Soya    AdeS Frutal
## 1146                  Grande      Bebidas de Soya    AdeS Frutal
## 1147                  Grande      Bebidas de Soya    AdeS Frutal
## 1148                  Grande      Bebidas de Soya    AdeS Frutal
## 1149                  Grande      Bebidas de Soya    AdeS Frutal
## 1150                  Grande      Bebidas de Soya    AdeS Frutal
## 1151                  Grande      Bebidas de Soya    AdeS Frutal
## 1152                  Grande      Bebidas de Soya    AdeS Frutal
## 1153                  Grande      Bebidas de Soya    AdeS Frutal
## 1154                  Grande      Bebidas de Soya    AdeS Frutal
## 1155                  Grande      Bebidas de Soya    AdeS Frutal
## 1156                  Grande      Bebidas de Soya    AdeS Frutal
## 1157                  Grande      Bebidas de Soya    AdeS Frutal
## 1158                  Grande      Bebidas de Soya    AdeS Frutal
## 1159                  Grande      Bebidas de Soya    AdeS Frutal
## 1160                  Grande      Bebidas de Soya    AdeS Frutal
## 1161                  Grande      Bebidas de Soya    AdeS Frutal
## 1162                  Grande      Bebidas de Soya    AdeS Frutal
## 1163                  Grande      Bebidas de Soya    AdeS Frutal
## 1164                  Grande      Bebidas de Soya    AdeS Frutal
## 1165                  Grande      Bebidas de Soya    AdeS Frutal
## 1166                  Grande      Bebidas de Soya    AdeS Frutal
## 1167                  Grande      Bebidas de Soya    AdeS Frutal
## 1168                  Grande      Bebidas de Soya    AdeS Frutal
## 1169                  Grande      Bebidas de Soya    AdeS Frutal
## 1170                  Grande      Bebidas de Soya    AdeS Frutal
## 1171                  Grande      Bebidas de Soya    AdeS Frutal
## 1172                  Grande      Bebidas de Soya    AdeS Frutal
## 1173                  Grande      Bebidas de Soya    AdeS Frutal
## 1174                  Grande      Bebidas de Soya    AdeS Frutal
## 1175                  Grande      Bebidas de Soya    AdeS Frutal
## 1176                  Grande      Bebidas de Soya    AdeS Frutal
## 1177                  Grande      Bebidas de Soya    AdeS Frutal
## 1178                  Grande      Bebidas de Soya    AdeS Frutal
## 1179                  Grande      Bebidas de Soya    AdeS Frutal
## 1180                  Grande      Bebidas de Soya    AdeS Frutal
## 1181                  Grande      Bebidas de Soya    AdeS Frutal
## 1182                  Grande      Bebidas de Soya    AdeS Frutal
## 1183                  Grande      Bebidas de Soya    AdeS Frutal
## 1184                  Grande      Bebidas de Soya    AdeS Frutal
## 1185                  Grande      Bebidas de Soya    AdeS Frutal
## 1186                  Grande      Bebidas de Soya    AdeS Frutal
## 1187                  Grande      Bebidas de Soya    AdeS Frutal
## 1188                  Grande      Bebidas de Soya    AdeS Frutal
## 1189                  Grande      Bebidas de Soya    AdeS Frutal
## 1190                  Grande      Bebidas de Soya    AdeS Frutal
## 1191                  Grande      Bebidas de Soya    AdeS Frutal
## 1192                  Grande      Bebidas de Soya    AdeS Frutal
## 1193                  Grande      Bebidas de Soya    AdeS Frutal
## 1194                  Grande      Bebidas de Soya    AdeS Frutal
## 1195                  Grande      Bebidas de Soya    AdeS Frutal
## 1196                  Grande      Bebidas de Soya    AdeS Frutal
## 1197                  Grande      Bebidas de Soya    AdeS Frutal
## 1198                  Grande      Bebidas de Soya    AdeS Frutal
## 1199                  Grande      Bebidas de Soya    AdeS Frutal
## 1200                  Grande      Bebidas de Soya    AdeS Frutal
## 1201                  Grande      Bebidas de Soya    AdeS Frutal
## 1202                  Grande      Bebidas de Soya    AdeS Frutal
## 1203                  Grande      Bebidas de Soya    AdeS Frutal
## 1204                  Grande      Bebidas de Soya    AdeS Frutal
## 1205            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1206            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1207            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1208            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1209            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1210            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1211            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1212            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1213            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1214            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1215            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1216            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1217            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1218            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1219            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1220            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1221            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1222            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1223            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1224            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1225            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1226            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1227            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1228            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1229            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1230            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1231            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1232            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1233            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1234            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1235            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1236            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1237            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1238            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1239            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1240            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1241            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1242            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1243            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1244            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1245            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1246            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1247            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1248            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1249                   Micro      Bebidas de Soya    AdeS Frutal
## 1250                   Micro      Bebidas de Soya    AdeS Frutal
## 1251                   Micro      Bebidas de Soya    AdeS Frutal
## 1252                   Micro      Bebidas de Soya    AdeS Frutal
## 1253                   Micro      Bebidas de Soya    AdeS Frutal
## 1254                   Micro      Bebidas de Soya    AdeS Frutal
## 1255                   Micro      Bebidas de Soya    AdeS Frutal
## 1256                   Micro      Bebidas de Soya    AdeS Frutal
## 1257                   Micro      Bebidas de Soya    AdeS Frutal
## 1258                   Micro      Bebidas de Soya    AdeS Frutal
## 1259            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1260            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1261            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1262            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1263            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1264            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1265            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1266            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1267            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1268            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1269            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1270            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1271            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1272            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1273            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1274            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1275            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1276            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1277            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1278            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1279            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1280            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1281            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1282            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1283            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1284            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1285            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1286            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1287            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1288            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1289            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1290            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1291            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1292            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1293            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1294            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1295            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1296            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1297            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1298            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1299            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1300            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1301            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1302            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1303            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1304            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1305            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1306            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1307            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1308            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1309            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1310            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1311            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1312            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1313            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1314            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1315            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1316            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1317            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1318            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1319            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1320            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1321            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1322            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1323            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1324            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1325            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1326            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1327            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1328            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1329            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1330            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1331            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1332            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1333            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1334            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1335            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1336            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1337            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1338            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1339            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1340            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1341            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1342            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1343            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1344            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1345            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1346            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1347            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1348            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1349            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1350            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1351            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1352            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1353            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1354            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1355            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1356            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1357            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1358            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1359            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1360            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1361            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1362            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1363            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1364            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1365            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1366            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1367            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1368            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1369            Extra Grande      Bebidas de Soya    AdeS Frutal
## 1370                   Micro      Bebidas de Soya    AdeS Frutal
## 1371                   Micro      Bebidas de Soya    AdeS Frutal
## 1372                   Micro      Bebidas de Soya    AdeS Frutal
## 1373                   Micro      Bebidas de Soya    AdeS Frutal
## 1374                   Micro      Bebidas de Soya    AdeS Frutal
## 1375                   Micro      Bebidas de Soya    AdeS Frutal
## 1376                   Micro      Bebidas de Soya    AdeS Frutal
## 1377                   Micro      Bebidas de Soya    AdeS Frutal
## 1378                   Micro      Bebidas de Soya    AdeS Frutal
## 1379                   Micro      Bebidas de Soya    AdeS Frutal
## 1380                   Micro      Bebidas de Soya    AdeS Frutal
## 1381                   Micro      Bebidas de Soya    AdeS Frutal
## 1382                   Micro      Bebidas de Soya    AdeS Frutal
## 1383                   Micro      Bebidas de Soya    AdeS Frutal
## 1384                   Micro      Bebidas de Soya    AdeS Frutal
## 1385                   Micro      Bebidas de Soya    AdeS Frutal
## 1386                   Micro      Bebidas de Soya    AdeS Frutal
## 1387                   Micro      Bebidas de Soya    AdeS Frutal
## 1388                   Micro      Bebidas de Soya    AdeS Frutal
## 1389                   Micro      Bebidas de Soya    AdeS Frutal
## 1390                   Micro      Bebidas de Soya    AdeS Frutal
## 1391                   Micro      Bebidas de Soya    AdeS Frutal
## 1392                   Micro      Bebidas de Soya    AdeS Frutal
## 1393                   Micro      Bebidas de Soya    AdeS Frutal
## 1394                   Micro      Bebidas de Soya    AdeS Frutal
## 1395                   Micro      Bebidas de Soya    AdeS Frutal
## 1396                   Micro      Bebidas de Soya    AdeS Frutal
## 1397                   Micro      Bebidas de Soya    AdeS Frutal
## 1398                   Micro      Bebidas de Soya    AdeS Frutal
## 1399                   Micro      Bebidas de Soya    AdeS Frutal
## 1400                   Micro      Bebidas de Soya    AdeS Frutal
## 1401                   Micro      Bebidas de Soya    AdeS Frutal
## 1402                   Micro      Bebidas de Soya    AdeS Frutal
## 1403                   Micro      Bebidas de Soya    AdeS Frutal
## 1404                   Micro      Bebidas de Soya    AdeS Frutal
## 1405                   Micro      Bebidas de Soya    AdeS Frutal
## 1406                   Micro      Bebidas de Soya    AdeS Frutal
## 1407                   Micro      Bebidas de Soya    AdeS Frutal
## 1408                   Micro      Bebidas de Soya    AdeS Frutal
## 1409                   Micro      Bebidas de Soya    AdeS Frutal
## 1410                   Micro      Bebidas de Soya    AdeS Frutal
## 1411                   Micro      Bebidas de Soya    AdeS Frutal
## 1412                   Micro      Bebidas de Soya    AdeS Frutal
## 1413                   Micro      Bebidas de Soya    AdeS Frutal
## 1414                   Micro      Bebidas de Soya    AdeS Frutal
## 1415                   Micro      Bebidas de Soya    AdeS Frutal
## 1416                   Micro      Bebidas de Soya    AdeS Frutal
## 1417                   Micro      Bebidas de Soya    AdeS Frutal
## 1418                   Micro      Bebidas de Soya    AdeS Frutal
## 1419                   Micro      Bebidas de Soya    AdeS Frutal
## 1420                   Micro      Bebidas de Soya    AdeS Frutal
## 1421                   Micro      Bebidas de Soya    AdeS Frutal
## 1422                   Micro      Bebidas de Soya    AdeS Frutal
## 1423                   Micro      Bebidas de Soya    AdeS Frutal
## 1424                   Micro      Bebidas de Soya    AdeS Frutal
## 1425                   Micro      Bebidas de Soya    AdeS Frutal
## 1426                   Micro      Bebidas de Soya    AdeS Frutal
## 1427                   Micro      Bebidas de Soya    AdeS Frutal
## 1428                   Micro      Bebidas de Soya    AdeS Frutal
## 1429                   Micro      Bebidas de Soya    AdeS Frutal
## 1430                   Micro      Bebidas de Soya    AdeS Frutal
## 1431                   Micro      Bebidas de Soya    AdeS Frutal
## 1432                   Micro      Bebidas de Soya    AdeS Frutal
## 1433                   Micro      Bebidas de Soya    AdeS Frutal
## 1434                   Micro      Bebidas de Soya    AdeS Frutal
## 1435                   Micro      Bebidas de Soya    AdeS Frutal
## 1436                   Micro      Bebidas de Soya    AdeS Frutal
## 1437                   Micro      Bebidas de Soya    AdeS Frutal
## 1438                   Micro      Bebidas de Soya    AdeS Frutal
## 1439                   Micro      Bebidas de Soya    AdeS Frutal
## 1440                   Micro      Bebidas de Soya    AdeS Frutal
## 1441                   Micro      Bebidas de Soya    AdeS Frutal
## 1442                   Micro      Bebidas de Soya    AdeS Frutal
## 1443                   Micro      Bebidas de Soya    AdeS Frutal
## 1444                   Micro      Bebidas de Soya    AdeS Frutal
## 1445                   Micro      Bebidas de Soya    AdeS Frutal
## 1446                   Micro      Bebidas de Soya    AdeS Frutal
## 1447                   Micro      Bebidas de Soya    AdeS Frutal
## 1448                   Micro      Bebidas de Soya    AdeS Frutal
## 1449                   Micro      Bebidas de Soya    AdeS Frutal
## 1450                   Micro      Bebidas de Soya    AdeS Frutal
## 1451                   Micro      Bebidas de Soya    AdeS Frutal
## 1452                   Micro      Bebidas de Soya    AdeS Frutal
## 1453                   Micro      Bebidas de Soya    AdeS Frutal
## 1454                   Micro      Bebidas de Soya    AdeS Frutal
## 1455                   Micro      Bebidas de Soya    AdeS Frutal
## 1456                   Micro      Bebidas de Soya    AdeS Frutal
## 1457                   Micro      Bebidas de Soya    AdeS Frutal
## 1458                   Micro      Bebidas de Soya    AdeS Frutal
## 1459                   Micro      Bebidas de Soya    AdeS Frutal
## 1460                   Micro      Bebidas de Soya    AdeS Frutal
## 1461                   Micro      Bebidas de Soya    AdeS Frutal
## 1462                   Micro      Bebidas de Soya    AdeS Frutal
## 1463                   Micro      Bebidas de Soya    AdeS Frutal
## 1464                   Micro      Bebidas de Soya    AdeS Frutal
## 1465                   Micro      Bebidas de Soya    AdeS Frutal
## 1466                   Micro      Bebidas de Soya    AdeS Frutal
## 1467                   Micro      Bebidas de Soya    AdeS Frutal
## 1468                   Micro      Bebidas de Soya    AdeS Frutal
## 1469                   Micro      Bebidas de Soya    AdeS Frutal
## 1470                   Micro      Bebidas de Soya    AdeS Frutal
## 1471                   Micro      Bebidas de Soya    AdeS Frutal
## 1472              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1473              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1474              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1475              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1476              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1477              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1478              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1479              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1480              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1481              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1482              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1483              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1484              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1485              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1486              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1487              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1488              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1489              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1490              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1491              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1492              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1493              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1494              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1495              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1496              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1497              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1498              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1499              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1500              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1501              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1502              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1503              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1504              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1505              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1506              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1507              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1508              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1509              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1510              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1511              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1512              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1513              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1514              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1515              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1516              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1517              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1518              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1519              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1520              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1521              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1522              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1523              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1524              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1525              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1526              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1527              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1528              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1529              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1530              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1531              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1532              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1533              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1534              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1535              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1536              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1537              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1538              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1539              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1540              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1541              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1542              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1543              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1544              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1545              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1546              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1547              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1548              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1549              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1550              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1551              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1552              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1553              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1554              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1555              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1556              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1557              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1558              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1559              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1560              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1561              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1562              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1563              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1564              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1565              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1566              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1567              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1568              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1569              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1570              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1571              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1572              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1573              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1574              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1575              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1576              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1577              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1578              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1579              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1580              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1581              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1582              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1583              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1584              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1585              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1586              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1587              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1588              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1589              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1590              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1591              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1592              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1593              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1594              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1595              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1596              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1597              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1598              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1599              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1600              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1601              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1602              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1603              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1604              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1605              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1606              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1607              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1608              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1609              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1610              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1611              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1612              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1613              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1614              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1615              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1616              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1617              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1618              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1619              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1620              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1621              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1622              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1623              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1624              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1625              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1626              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1627              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1628              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1629              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1630              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1631              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1632              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1633              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1634              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1635              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1636              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1637              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1638              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1639              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1640              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1641              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1642              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1643              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1644              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1645              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1646              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1647              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1648              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1649              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1650              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1651              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1652              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1653              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1654              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1655              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1656              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1657              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1658              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1659              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1660              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1661              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1662              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1663              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1664              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1665              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1666              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1667              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1668              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1669              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1670              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1671              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1672              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1673              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1674              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1675              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1676              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1677              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1678              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1679              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1680              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1681              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1682              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1683              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1684              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1685              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1686              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1687              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1688              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1689              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1690              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1691              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1692              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1693              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1694              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1695              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1696              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1697              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1698              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1699              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1700              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1701              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1702              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1703              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1704              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1705              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1706              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1707              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1708              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1709              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1710              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1711              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1712              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1713              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1714              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1715              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1716              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1717              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1718              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1719              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1720              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1721              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1722              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1723              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1724              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1725              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1726              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1727              Peque\x96o      Bebidas de Soya    AdeS Frutal
## 1728                  Grande      Bebidas de Soya    AdeS Frutal
## 1729                  Grande      Bebidas de Soya    AdeS Frutal
## 1730                  Grande      Bebidas de Soya    AdeS Frutal
## 1731                  Grande      Bebidas de Soya    AdeS Frutal
## 1732                  Grande      Bebidas de Soya    AdeS Frutal
## 1733                  Grande      Bebidas de Soya    AdeS Frutal
## 1734                  Grande      Bebidas de Soya    AdeS Frutal
## 1735                  Grande      Bebidas de Soya    AdeS Frutal
## 1736                  Grande      Bebidas de Soya    AdeS Frutal
## 1737                  Grande      Bebidas de Soya    AdeS Frutal
## 1738                  Grande      Bebidas de Soya    AdeS Frutal
## 1739                  Grande      Bebidas de Soya    AdeS Frutal
## 1740                  Grande      Bebidas de Soya    AdeS Frutal
## 1741                  Grande      Bebidas de Soya    AdeS Frutal
## 1742                  Grande      Bebidas de Soya    AdeS Frutal
## 1743                  Grande      Bebidas de Soya    AdeS Frutal
## 1744                  Grande      Bebidas de Soya    AdeS Frutal
## 1745                  Grande      Bebidas de Soya    AdeS Frutal
## 1746                  Grande      Bebidas de Soya    AdeS Frutal
## 1747                  Grande      Bebidas de Soya    AdeS Frutal
## 1748                  Grande      Bebidas de Soya    AdeS Frutal
## 1749                  Grande      Bebidas de Soya    AdeS Frutal
## 1750                  Grande      Bebidas de Soya    AdeS Frutal
## 1751                  Grande      Bebidas de Soya    AdeS Frutal
## 1752                  Grande      Bebidas de Soya    AdeS Frutal
## 1753                  Grande      Bebidas de Soya    AdeS Frutal
## 1754                  Grande      Bebidas de Soya    AdeS Frutal
## 1755                  Grande      Bebidas de Soya    AdeS Frutal
## 1756                  Grande      Bebidas de Soya    AdeS Frutal
## 1757                  Grande      Bebidas de Soya    AdeS Frutal
## 1758                  Grande      Bebidas de Soya    AdeS Frutal
## 1759                  Grande      Bebidas de Soya    AdeS Frutal
## 1760                  Grande      Bebidas de Soya    AdeS Frutal
## 1761                  Grande      Bebidas de Soya    AdeS Frutal
## 1762                  Grande      Bebidas de Soya    AdeS Frutal
## 1763                  Grande      Bebidas de Soya    AdeS Frutal
## 1764                  Grande      Bebidas de Soya    AdeS Frutal
## 1765                  Grande      Bebidas de Soya    AdeS Frutal
## 1766                  Grande      Bebidas de Soya    AdeS Frutal
## 1767                  Grande      Bebidas de Soya    AdeS Frutal
## 1768                  Grande      Bebidas de Soya    AdeS Frutal
## 1769                  Grande      Bebidas de Soya    AdeS Frutal
## 1770                  Grande      Bebidas de Soya    AdeS Frutal
## 1771                  Grande      Bebidas de Soya    AdeS Frutal
## 1772                  Grande      Bebidas de Soya    AdeS Frutal
## 1773                  Grande      Bebidas de Soya    AdeS Frutal
## 1774                  Grande      Bebidas de Soya    AdeS Frutal
## 1775                  Grande      Bebidas de Soya    AdeS Frutal
## 1776                  Grande      Bebidas de Soya    AdeS Frutal
## 1777                  Grande      Bebidas de Soya    AdeS Frutal
## 1778                  Grande      Bebidas de Soya    AdeS Frutal
## 1779                  Grande      Bebidas de Soya    AdeS Frutal
## 1780                  Grande      Bebidas de Soya    AdeS Frutal
## 1781                  Grande      Bebidas de Soya    AdeS Frutal
## 1782                  Grande      Bebidas de Soya    AdeS Frutal
## 1783                  Grande      Bebidas de Soya    AdeS Frutal
## 1784                  Grande      Bebidas de Soya    AdeS Frutal
## 1785                  Grande      Bebidas de Soya    AdeS Frutal
## 1786                  Grande      Bebidas de Soya    AdeS Frutal
## 1787                  Grande      Bebidas de Soya    AdeS Frutal
## 1788                  Grande      Bebidas de Soya    AdeS Frutal
## 1789                  Grande      Bebidas de Soya    AdeS Frutal
## 1790                  Grande      Bebidas de Soya    AdeS Frutal
## 1791                  Grande      Bebidas de Soya    AdeS Frutal
## 1792                  Grande      Bebidas de Soya    AdeS Frutal
## 1793                  Grande      Bebidas de Soya    AdeS Frutal
## 1794                  Grande      Bebidas de Soya    AdeS Frutal
## 1795                  Grande      Bebidas de Soya    AdeS Frutal
## 1796                  Grande      Bebidas de Soya    AdeS Frutal
## 1797                  Grande      Bebidas de Soya    AdeS Frutal
## 1798                  Grande      Bebidas de Soya    AdeS Frutal
## 1799                  Grande      Bebidas de Soya    AdeS Frutal
## 1800                  Grande      Bebidas de Soya    AdeS Frutal
## 1801                  Grande      Bebidas de Soya    AdeS Frutal
## 1802                  Grande      Bebidas de Soya    AdeS Frutal
## 1803                  Grande      Bebidas de Soya    AdeS Frutal
## 1804                  Grande      Bebidas de Soya    AdeS Frutal
## 1805                  Grande      Bebidas de Soya    AdeS Frutal
## 1806                  Grande      Bebidas de Soya    AdeS Frutal
## 1807                  Grande      Bebidas de Soya    AdeS Frutal
## 1808                  Grande      Bebidas de Soya    AdeS Frutal
## 1809                  Grande      Bebidas de Soya    AdeS Frutal
## 1810                  Grande      Bebidas de Soya    AdeS Frutal
## 1811                  Grande      Bebidas de Soya    AdeS Frutal
## 1812                  Grande      Bebidas de Soya    AdeS Frutal
## 1813                  Grande      Bebidas de Soya    AdeS Frutal
## 1814                  Grande      Bebidas de Soya    AdeS Frutal
## 1815                  Grande      Bebidas de Soya    AdeS Frutal
## 1816                  Grande      Bebidas de Soya    AdeS Frutal
## 1817                  Grande      Bebidas de Soya    AdeS Frutal
## 1818                  Grande      Bebidas de Soya    AdeS Frutal
## 1819                  Grande      Bebidas de Soya    AdeS Frutal
## 1820                  Grande      Bebidas de Soya    AdeS Frutal
## 1821                  Grande      Bebidas de Soya    AdeS Frutal
## 1822                  Grande      Bebidas de Soya    AdeS Frutal
## 1823                  Grande      Bebidas de Soya    AdeS Frutal
## 1824                  Grande      Bebidas de Soya    AdeS Frutal
## 1825                  Grande      Bebidas de Soya    AdeS Frutal
## 1826                  Grande      Bebidas de Soya    AdeS Frutal
## 1827                  Grande      Bebidas de Soya    AdeS Frutal
## 1828                  Grande      Bebidas de Soya    AdeS Frutal
## 1829                  Grande      Bebidas de Soya    AdeS Frutal
## 1830                  Grande      Bebidas de Soya    AdeS Frutal
## 1831                  Grande      Bebidas de Soya    AdeS Frutal
## 1832                  Grande      Bebidas de Soya    AdeS Frutal
## 1833                  Grande      Bebidas de Soya    AdeS Frutal
## 1834                  Grande      Bebidas de Soya    AdeS Frutal
## 1835                  Grande      Bebidas de Soya    AdeS Frutal
## 1836                  Grande      Bebidas de Soya    AdeS Frutal
## 1837                  Grande      Bebidas de Soya    AdeS Frutal
## 1838                  Grande      Bebidas de Soya    AdeS Frutal
## 1839                  Grande      Bebidas de Soya    AdeS Frutal
## 1840                  Grande      Bebidas de Soya    AdeS Frutal
## 1841                  Grande      Bebidas de Soya    AdeS Frutal
## 1842                  Grande      Bebidas de Soya    AdeS Frutal
## 1843                  Grande      Bebidas de Soya    AdeS Frutal
## 1844                  Grande      Bebidas de Soya    AdeS Frutal
## 1845                  Grande      Bebidas de Soya    AdeS Frutal
## 1846                  Grande      Bebidas de Soya    AdeS Frutal
## 1847                  Grande      Bebidas de Soya    AdeS Frutal
## 1848                  Grande      Bebidas de Soya    AdeS Frutal
## 1849                  Grande      Bebidas de Soya    AdeS Frutal
## 1850                  Grande      Bebidas de Soya    AdeS Frutal
## 1851                  Grande      Bebidas de Soya    AdeS Frutal
## 1852                  Grande      Bebidas de Soya    AdeS Frutal
## 1853                  Grande      Bebidas de Soya    AdeS Frutal
## 1854                  Grande      Bebidas de Soya    AdeS Frutal
## 1855                  Grande      Bebidas de Soya    AdeS Frutal
## 1856                  Grande      Bebidas de Soya    AdeS Frutal
## 1857                  Grande      Bebidas de Soya    AdeS Frutal
## 1858                  Grande      Bebidas de Soya    AdeS Frutal
## 1859                  Grande      Bebidas de Soya    AdeS Frutal
## 1860                  Grande      Bebidas de Soya    AdeS Frutal
## 1861                  Grande      Bebidas de Soya    AdeS Frutal
## 1862                  Grande      Bebidas de Soya    AdeS Frutal
## 1863                  Grande      Bebidas de Soya    AdeS Frutal
## 1864                  Grande      Bebidas de Soya    AdeS Frutal
## 1865                  Grande      Bebidas de Soya    AdeS Frutal
## 1866                  Grande      Bebidas de Soya    AdeS Frutal
## 1867                  Grande      Bebidas de Soya    AdeS Frutal
## 1868                  Grande      Bebidas de Soya    AdeS Frutal
## 1869                  Grande      Bebidas de Soya    AdeS Frutal
## 1870                  Grande      Bebidas de Soya    AdeS Frutal
## 1871                  Grande      Bebidas de Soya    AdeS Frutal
## 1872                  Grande      Bebidas de Soya    AdeS Frutal
## 1873                  Grande      Bebidas de Soya    AdeS Frutal
## 1874                  Grande      Bebidas de Soya    AdeS Frutal
## 1875                  Grande      Bebidas de Soya    AdeS Frutal
## 1876                  Grande      Bebidas de Soya    AdeS Frutal
## 1877                  Grande      Bebidas de Soya    AdeS Frutal
## 1878                  Grande      Bebidas de Soya    AdeS Frutal
## 1879                  Grande      Bebidas de Soya    AdeS Frutal
## 1880                  Grande      Bebidas de Soya    AdeS Frutal
## 1881                  Grande      Bebidas de Soya    AdeS Frutal
## 1882                  Grande      Bebidas de Soya    AdeS Frutal
## 1883                  Grande      Bebidas de Soya    AdeS Frutal
## 1884                  Grande      Bebidas de Soya    AdeS Frutal
## 1885                  Grande      Bebidas de Soya    AdeS Frutal
## 1886                  Grande      Bebidas de Soya    AdeS Frutal
## 1887                  Grande      Bebidas de Soya    AdeS Frutal
## 1888                  Grande      Bebidas de Soya    AdeS Frutal
## 1889                  Grande      Bebidas de Soya    AdeS Frutal
## 1890                  Grande      Bebidas de Soya    AdeS Frutal
## 1891                  Grande      Bebidas de Soya    AdeS Frutal
## 1892                  Grande      Bebidas de Soya    AdeS Frutal
## 1893                  Grande      Bebidas de Soya    AdeS Frutal
## 1894                  Grande      Bebidas de Soya    AdeS Frutal
## 1895                  Grande      Bebidas de Soya    AdeS Frutal
## 1896                  Grande      Bebidas de Soya    AdeS Frutal
## 1897                  Grande      Bebidas de Soya    AdeS Frutal
## 1898                  Grande      Bebidas de Soya    AdeS Frutal
## 1899                  Grande      Bebidas de Soya    AdeS Frutal
## 1900                  Grande      Bebidas de Soya    AdeS Frutal
## 1901                  Grande      Bebidas de Soya    AdeS Frutal
## 1902                  Grande      Bebidas de Soya    AdeS Frutal
## 1903                  Grande      Bebidas de Soya    AdeS Frutal
## 1904                  Grande      Bebidas de Soya    AdeS Frutal
## 1905                  Grande      Bebidas de Soya    AdeS Frutal
## 1906                  Grande      Bebidas de Soya    AdeS Frutal
## 1907                  Grande      Bebidas de Soya    AdeS Frutal
## 1908                  Grande      Bebidas de Soya    AdeS Frutal
## 1909                  Grande      Bebidas de Soya    AdeS Frutal
## 1910                  Grande      Bebidas de Soya    AdeS Frutal
## 1911                  Grande      Bebidas de Soya    AdeS Frutal
## 1912                  Grande      Bebidas de Soya    AdeS Frutal
## 1913                  Grande      Bebidas de Soya    AdeS Frutal
## 1914                  Grande      Bebidas de Soya    AdeS Frutal
## 1915                  Grande      Bebidas de Soya    AdeS Frutal
## 1916                  Grande      Bebidas de Soya    AdeS Frutal
## 1917                  Grande      Bebidas de Soya    AdeS Frutal
## 1918                  Grande      Bebidas de Soya    AdeS Frutal
## 1919                  Grande      Bebidas de Soya    AdeS Frutal
## 1920                  Grande      Bebidas de Soya    AdeS Frutal
## 1921                  Grande      Bebidas de Soya    AdeS Frutal
## 1922                  Grande      Bebidas de Soya    AdeS Frutal
## 1923                  Grande      Bebidas de Soya    AdeS Frutal
## 1924                  Grande      Bebidas de Soya    AdeS Frutal
## 1925                  Grande      Bebidas de Soya    AdeS Frutal
## 1926                  Grande      Bebidas de Soya    AdeS Frutal
## 1927                  Grande      Bebidas de Soya    AdeS Frutal
## 1928                  Grande      Bebidas de Soya    AdeS Frutal
## 1929                  Grande      Bebidas de Soya    AdeS Frutal
## 1930                  Grande      Bebidas de Soya    AdeS Frutal
## 1931                  Grande      Bebidas de Soya    AdeS Frutal
## 1932                  Grande      Bebidas de Soya    AdeS Frutal
## 1933                  Grande      Bebidas de Soya    AdeS Frutal
## 1934                  Grande      Bebidas de Soya    AdeS Frutal
## 1935                  Grande      Bebidas de Soya    AdeS Frutal
## 1936                  Grande      Bebidas de Soya    AdeS Frutal
## 1937                  Grande      Bebidas de Soya    AdeS Frutal
## 1938                  Grande      Bebidas de Soya    AdeS Frutal
## 1939                  Grande      Bebidas de Soya    AdeS Frutal
## 1940                  Grande      Bebidas de Soya    AdeS Frutal
## 1941                  Grande      Bebidas de Soya    AdeS Frutal
## 1942                  Grande      Bebidas de Soya    AdeS Frutal
## 1943                  Grande      Bebidas de Soya    AdeS Frutal
## 1944                  Grande      Bebidas de Soya    AdeS Frutal
## 1945                  Grande      Bebidas de Soya    AdeS Frutal
## 1946                  Grande      Bebidas de Soya    AdeS Frutal
## 1947                  Grande      Bebidas de Soya    AdeS Frutal
## 1948                  Grande      Bebidas de Soya    AdeS Frutal
## 1949                  Grande      Bebidas de Soya    AdeS Frutal
## 1950                  Grande      Bebidas de Soya    AdeS Frutal
## 1951                  Grande      Bebidas de Soya    AdeS Frutal
## 1952                  Grande      Bebidas de Soya    AdeS Frutal
## 1953                  Grande      Bebidas de Soya    AdeS Frutal
## 1954                  Grande      Bebidas de Soya    AdeS Frutal
## 1955                  Grande      Bebidas de Soya    AdeS Frutal
## 1956                  Grande      Bebidas de Soya    AdeS Frutal
## 1957                  Grande      Bebidas de Soya    AdeS Frutal
## 1958                  Grande      Bebidas de Soya    AdeS Frutal
## 1959                  Grande      Bebidas de Soya    AdeS Frutal
## 1960                  Grande      Bebidas de Soya    AdeS Frutal
## 1961                  Grande      Bebidas de Soya    AdeS Frutal
## 1962                  Grande      Bebidas de Soya    AdeS Frutal
## 1963                  Grande      Bebidas de Soya    AdeS Frutal
## 1964                  Grande      Bebidas de Soya    AdeS Frutal
## 1965                  Grande      Bebidas de Soya    AdeS Frutal
## 1966                  Grande      Bebidas de Soya    AdeS Frutal
## 1967                  Grande      Bebidas de Soya    AdeS Frutal
## 1968                  Grande      Bebidas de Soya    AdeS Frutal
## 1969                  Grande      Bebidas de Soya    AdeS Frutal
## 1970                  Grande      Bebidas de Soya    AdeS Frutal
## 1971                  Grande      Bebidas de Soya    AdeS Frutal
## 1972                  Grande      Bebidas de Soya    AdeS Frutal
## 1973                  Grande      Bebidas de Soya    AdeS Frutal
## 1974                  Grande      Bebidas de Soya    AdeS Frutal
## 1975                  Grande      Bebidas de Soya    AdeS Frutal
## 1976                  Grande      Bebidas de Soya    AdeS Frutal
## 1977                  Grande      Bebidas de Soya    AdeS Frutal
## 1978                  Grande      Bebidas de Soya    AdeS Frutal
## 1979                  Grande      Bebidas de Soya    AdeS Frutal
## 1980                  Grande      Bebidas de Soya    AdeS Frutal
## 1981                  Grande      Bebidas de Soya    AdeS Frutal
## 1982                  Grande      Bebidas de Soya    AdeS Frutal
## 1983                  Grande      Bebidas de Soya    AdeS Frutal
## 1984                  Grande      Bebidas de Soya    AdeS Frutal
## 1985                  Grande      Bebidas de Soya    AdeS Frutal
## 1986                  Grande      Bebidas de Soya    AdeS Frutal
## 1987                  Grande      Bebidas de Soya    AdeS Frutal
## 1988                  Grande      Bebidas de Soya    AdeS Frutal
## 1989                  Grande      Bebidas de Soya    AdeS Frutal
## 1990                  Grande      Bebidas de Soya    AdeS Frutal
## 1991                  Grande      Bebidas de Soya    AdeS Frutal
## 1992                  Grande      Bebidas de Soya    AdeS Frutal
## 1993                  Grande      Bebidas de Soya    AdeS Frutal
## 1994                  Grande      Bebidas de Soya    AdeS Frutal
## 1995                  Grande      Bebidas de Soya    AdeS Frutal
## 1996                  Grande      Bebidas de Soya    AdeS Frutal
## 1997                  Grande      Bebidas de Soya    AdeS Frutal
## 1998                  Grande      Bebidas de Soya    AdeS Frutal
## 1999                  Grande      Bebidas de Soya    AdeS Frutal
## 2000                  Grande      Bebidas de Soya    AdeS Frutal
## 2001                  Grande      Bebidas de Soya    AdeS Frutal
## 2002                  Grande      Bebidas de Soya    AdeS Frutal
## 2003                  Grande      Bebidas de Soya    AdeS Frutal
## 2004                  Grande      Bebidas de Soya    AdeS Frutal
## 2005                  Grande      Bebidas de Soya    AdeS Frutal
## 2006                  Grande      Bebidas de Soya    AdeS Frutal
## 2007                  Grande      Bebidas de Soya    AdeS Frutal
## 2008                  Grande      Bebidas de Soya    AdeS Frutal
## 2009                  Grande      Bebidas de Soya    AdeS Frutal
## 2010                  Grande      Bebidas de Soya    AdeS Frutal
## 2011                  Grande      Bebidas de Soya    AdeS Frutal
## 2012                  Grande      Bebidas de Soya    AdeS Frutal
## 2013                  Grande      Bebidas de Soya    AdeS Frutal
## 2014                  Grande      Bebidas de Soya    AdeS Frutal
## 2015                  Grande      Bebidas de Soya    AdeS Frutal
## 2016                  Grande      Bebidas de Soya    AdeS Frutal
## 2017                  Grande      Bebidas de Soya    AdeS Frutal
## 2018                  Grande      Bebidas de Soya    AdeS Frutal
## 2019                  Grande      Bebidas de Soya    AdeS Frutal
## 2020                  Grande      Bebidas de Soya    AdeS Frutal
## 2021                  Grande      Bebidas de Soya    AdeS Frutal
## 2022                  Grande      Bebidas de Soya    AdeS Frutal
## 2023                  Grande      Bebidas de Soya    AdeS Frutal
## 2024                  Grande      Bebidas de Soya    AdeS Frutal
## 2025                  Grande      Bebidas de Soya    AdeS Frutal
## 2026                  Grande      Bebidas de Soya    AdeS Frutal
## 2027                  Grande      Bebidas de Soya    AdeS Frutal
## 2028                  Grande      Bebidas de Soya    AdeS Frutal
## 2029                  Grande      Bebidas de Soya    AdeS Frutal
## 2030                  Grande      Bebidas de Soya    AdeS Frutal
## 2031                  Grande      Bebidas de Soya    AdeS Frutal
## 2032                  Grande      Bebidas de Soya    AdeS Frutal
## 2033                  Grande      Bebidas de Soya    AdeS Frutal
## 2034                  Grande      Bebidas de Soya    AdeS Frutal
## 2035                  Grande      Bebidas de Soya    AdeS Frutal
## 2036                  Grande      Bebidas de Soya    AdeS Frutal
## 2037                  Grande      Bebidas de Soya    AdeS Frutal
## 2038                  Grande      Bebidas de Soya    AdeS Frutal
## 2039                  Grande      Bebidas de Soya    AdeS Frutal
## 2040                  Grande      Bebidas de Soya    AdeS Frutal
## 2041                  Grande      Bebidas de Soya    AdeS Frutal
## 2042                  Grande      Bebidas de Soya    AdeS Frutal
## 2043                  Grande      Bebidas de Soya    AdeS Frutal
## 2044                  Grande      Bebidas de Soya    AdeS Frutal
## 2045                  Grande      Bebidas de Soya    AdeS Frutal
## 2046                  Grande      Bebidas de Soya    AdeS Frutal
## 2047                  Grande      Bebidas de Soya    AdeS Frutal
## 2048                  Grande      Bebidas de Soya    AdeS Frutal
## 2049                  Grande      Bebidas de Soya    AdeS Frutal
## 2050                  Grande      Bebidas de Soya    AdeS Frutal
## 2051                  Grande      Bebidas de Soya    AdeS Frutal
## 2052                  Grande      Bebidas de Soya    AdeS Frutal
## 2053                  Grande      Bebidas de Soya    AdeS Frutal
## 2054                  Grande      Bebidas de Soya    AdeS Frutal
## 2055                  Grande      Bebidas de Soya    AdeS Frutal
## 2056                  Grande      Bebidas de Soya    AdeS Frutal
## 2057                  Grande      Bebidas de Soya    AdeS Frutal
## 2058                  Grande      Bebidas de Soya    AdeS Frutal
## 2059            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2060            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2061            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2062            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2063            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2064            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2065            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2066            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2067            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2068            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2069            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2070            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2071            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2072            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2073            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2074            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2075            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2076            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2077            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2078            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2079            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2080            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2081            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2082            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2083            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2084            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2085            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2086            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2087            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2088            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2089            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2090            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2091            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2092            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2093            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2094            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2095            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2096            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2097            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2098            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2099            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2100            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2101            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2102            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2103                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2104                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2105                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2106                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2107                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2108                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2109                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2110                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2111                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2112                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2113                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2114                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2115                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2116                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2117                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2118                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2119                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2120                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2121                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2122                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2123                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2124                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2125                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2126                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2127                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2128            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2129            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2130            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2131            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2132            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2133            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2134            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2135            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2136            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2137            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2138            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2139            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2140            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2141            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2142            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2143            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2144            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2145            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2146            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2147            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2148            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2149            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2150            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2151            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2152            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2153                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2154                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2155                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2156                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2157                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2158                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2159                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2160                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2161                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2162                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2163                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2164                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2165                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2166                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2167                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2168                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2169                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2170                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2171                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2172                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2173                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2174              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2175              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2176              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2177              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2178              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2179              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2180              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2181              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2182              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2183              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2184              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2185              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2186              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2187              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2188              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2189              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2190              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2191              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2192              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2193              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2194              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2195              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2196              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2197              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2198              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2199              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2200              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2201              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2202              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2203              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2204              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2205              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2206              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2207              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2208              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2209              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2210              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2211              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2212              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2213              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2214              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2215              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2216              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2217              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2218              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2219              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2220              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2221              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2222              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2223              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2224              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2225              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2226              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2227              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2228              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2229              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2230              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2231              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2232              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2233              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2234              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2235              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2236              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2237                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2238                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2239                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2240                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2241                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2242                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2243                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2244                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2245                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2246                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2247                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2248                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2249                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2250                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2251                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2252                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2253                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2254                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2255                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2256                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2257                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2258                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2259                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2260                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2261                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2262                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2263                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2264                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2265                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2266                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2267                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2268                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2269                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2270                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2271                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2272                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2273                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2274                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2275                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2276                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2277                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2278                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2279                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2280                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2281                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2282                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2283                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2284                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2285                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2286                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2287                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2288                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2289                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2290                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2291                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2292                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2293                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2294                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2295                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2296                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2297                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2298                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2299            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2300            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2301            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2302            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2303            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2304            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2305            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2306            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2307            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2308            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2309            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2310            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2311            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2312            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2313            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2314            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2315            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2316            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2317            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2318            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2319            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2320            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2321            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2322            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2323            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2324            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2325            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2326            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2327            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2328            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2329            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2330            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2331            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2332            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2333            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2334            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2335            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2336            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2337            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2338            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2339            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2340            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2341            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2342            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2343            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2344            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2345            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2346                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2347                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2348                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2349                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2350                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2351                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2352                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2353                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2354                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2355            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2356            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2357            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2358            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2359            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2360            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2361            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2362            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2363            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2364            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2365            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2366            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2367            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2368            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2369            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2370            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2371            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2372            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2373            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2374            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2375            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2376            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2377            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2378            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2379            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2380            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2381            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2382            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2383            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2384            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2385            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2386            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2387            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2388            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2389            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2390            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2391            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2392            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2393            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2394            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2395            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2396            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2397            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2398            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2399            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2400            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2401            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2402            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2403            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2404            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2405            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2406            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2407            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2408            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2409            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2410            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2411            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2412            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2413            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2414            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2415            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2416            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2417            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2418            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2419            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2420            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2421            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2422            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2423            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2424            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2425            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2426            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2427            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2428            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2429            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2430            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2431            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2432            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2433            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2434            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2435            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2436            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2437            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2438            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2439            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2440            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2441            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2442            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2443            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2444            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2445            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2446            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2447            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2448            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2449            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2450            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2451            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2452            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2453            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2454            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2455            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2456            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2457            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2458            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2459            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2460            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2461            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2462            Extra Grande      Bebidas de Soya AdeS L\x87cteo
## 2463                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2464                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2465                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2466                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2467                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2468                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2469                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2470                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2471                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2472                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2473                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2474                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2475                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2476                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2477                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2478                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2479                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2480                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2481                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2482                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2483                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2484                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2485                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2486                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2487                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2488                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2489                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2490                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2491                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2492                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2493                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2494                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2495                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2496                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2497                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2498                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2499                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2500                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2501                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2502                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2503                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2504                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2505                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2506                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2507                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2508                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2509                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2510                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2511                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2512                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2513                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2514                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2515                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2516                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2517                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2518                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2519                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2520                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2521                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2522                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2523                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2524                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2525                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2526                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2527                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2528                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2529                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2530                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2531                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2532                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2533                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2534                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2535                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2536                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2537                   Micro      Bebidas de Soya AdeS L\x87cteo
## 2538              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2539              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2540              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2541              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2542              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2543              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2544              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2545              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2546              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2547              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2548              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2549              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2550              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2551              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2552              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2553              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2554              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2555              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2556              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2557              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2558              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2559              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2560              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2561              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2562              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2563              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2564              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2565              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2566              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2567              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2568              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2569              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2570              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2571              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2572              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2573              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2574              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2575              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2576              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2577              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2578              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2579              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2580              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2581              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2582              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2583              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2584              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2585              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2586              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2587              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2588              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2589              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2590              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2591              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2592              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2593              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2594              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2595              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2596              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2597              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2598              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2599              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2600              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2601              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2602              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2603              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2604              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2605              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2606              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2607              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2608              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2609              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2610              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2611              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2612              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2613              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2614              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2615              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2616              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2617              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2618              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2619              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2620              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2621              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2622              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2623              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2624              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2625              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2626              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2627              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2628              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2629              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2630              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2631              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2632              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2633              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2634              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2635              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2636              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2637              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2638              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2639              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2640              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2641              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2642              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2643              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2644              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2645              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2646              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2647              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2648              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2649              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2650              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2651              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2652              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2653              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2654              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2655              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2656              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2657              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2658              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2659              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2660              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2661              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2662              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2663              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2664              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2665              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2666              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2667              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2668              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2669              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2670              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2671              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2672              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2673              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2674              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2675              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2676              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2677              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2678              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2679              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2680              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2681              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2682              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2683              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2684              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2685              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2686              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2687              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2688              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2689              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2690              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2691              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2692              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2693              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2694              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2695              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2696              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2697              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2698              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2699              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2700              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2701              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2702              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2703              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2704              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2705              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2706              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2707              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2708              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2709              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2710              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2711              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2712              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2713              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2714              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2715              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2716              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2717              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2718              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2719              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2720              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2721              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2722              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2723              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2724              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2725              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2726              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2727              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2728              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2729              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2730              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2731              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2732              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2733              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2734              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2735              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2736              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2737              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2738              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2739              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2740              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2741              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2742              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2743              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2744              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2745              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2746              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2747              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2748              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2749              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2750              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2751              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2752              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2753              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2754              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2755              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2756              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2757              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2758              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2759              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2760              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2761              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2762              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2763              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2764              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2765              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2766              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2767              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2768              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2769              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2770              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2771              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2772              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2773              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2774              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2775              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2776              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2777              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2778              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2779              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2780              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2781              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2782              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2783              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2784              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2785              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2786              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2787              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2788              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2789              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2790              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2791              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2792              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2793              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2794              Peque\x96o      Bebidas de Soya AdeS L\x87cteo
## 2795                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2796                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2797                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2798                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2799                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2800                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2801                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2802                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2803                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2804                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2805                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2806                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2807                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2808                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2809                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2810                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2811                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2812                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2813                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2814                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2815                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2816                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2817                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2818                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2819                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2820                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2821                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2822                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2823                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2824                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2825                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2826                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2827                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2828                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2829                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2830                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2831                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2832                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2833                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2834                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2835                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2836                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2837                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2838                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2839                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2840                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2841                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2842                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2843                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2844                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2845                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2846                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2847                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2848                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2849                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2850                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2851                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2852                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2853                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2854                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2855                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2856                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2857                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2858                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2859                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2860                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2861                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2862                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2863                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2864                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2865                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2866                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2867                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2868                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2869                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2870                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2871                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2872                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2873                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2874                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2875                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2876                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2877                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2878                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2879                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2880                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2881                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2882                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2883                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2884                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2885                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2886                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2887                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2888                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2889                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2890                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2891                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2892                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2893                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2894                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2895                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2896                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2897                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2898                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2899                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2900                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2901                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2902                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2903                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2904                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2905                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2906                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2907                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2908                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2909                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2910                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2911                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2912                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2913                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2914                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2915                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2916                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2917                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2918                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2919                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2920                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2921                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2922                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2923                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2924                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2925                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2926                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2927                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2928                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2929                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2930                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2931                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2932                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2933                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2934                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2935                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2936                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2937                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2938                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2939                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2940                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2941                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2942                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2943                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2944                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2945                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2946                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2947                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2948                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2949                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2950                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2951                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2952                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2953                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2954                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2955                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2956                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2957                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2958                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2959                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2960                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2961                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2962                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2963                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2964                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2965                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2966                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2967                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2968                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2969                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2970                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2971                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2972                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2973                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2974                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2975                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2976                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2977                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2978                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2979                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2980                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2981                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2982                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2983                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2984                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2985                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2986                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2987                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2988                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2989                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2990                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2991                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2992                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2993                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2994                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2995                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2996                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2997                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2998                  Grande      Bebidas de Soya AdeS L\x87cteo
## 2999                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3000                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3001                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3002                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3003                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3004                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3005                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3006                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3007                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3008                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3009                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3010                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3011                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3012                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3013                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3014                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3015                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3016                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3017                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3018                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3019                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3020                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3021                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3022                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3023                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3024                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3025                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3026                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3027                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3028                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3029                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3030                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3031                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3032                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3033                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3034                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3035                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3036                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3037                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3038                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3039                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3040                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3041                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3042                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3043                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3044                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3045                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3046                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3047                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3048                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3049                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3050                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3051                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3052                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3053                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3054                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3055                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3056                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3057                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3058                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3059                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3060                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3061                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3062                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3063                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3064                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3065                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3066                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3067                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3068                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3069                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3070                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3071                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3072                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3073                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3074                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3075                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3076                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3077                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3078                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3079                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3080                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3081                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3082                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3083                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3084                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3085                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3086                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3087                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3088                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3089                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3090                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3091                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3092                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3093                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3094                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3095                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3096                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3097                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3098                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3099                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3100                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3101                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3102                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3103                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3104                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3105                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3106                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3107                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3108                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3109                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3110                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3111                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3112                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3113                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3114                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3115                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3116                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3117                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3118                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3119                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3120                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3121                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3122                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3123                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3124                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3125                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3126                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3127                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3128                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3129                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3130                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3131                  Grande      Bebidas de Soya AdeS L\x87cteo
## 3132            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3133            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3134            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3135            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3136            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3137            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3138            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3139            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3140            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3141            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3142            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3143            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3144            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3145            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3146            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3147            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3148            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3149            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3150            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3151            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3152            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3153            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3154            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3155            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3156            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3157            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3158            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3159            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3160            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3161            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3162            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3163            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3164            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3165            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3166            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3167            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3168            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3169            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3170            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3171            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3172            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3173            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3174            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3175            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3176            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3177            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3178            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3179            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3180            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3181            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3182            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3183            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3184            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3185            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3186            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3187            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3188            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3189            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3190            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3191            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3192            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3193            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3194            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3195            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3196            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3197            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3198            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3199            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3200            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3201            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3202                   Micro Cafe Listo Para Bebe   Barista Bros
## 3203                   Micro Cafe Listo Para Bebe   Barista Bros
## 3204                   Micro Cafe Listo Para Bebe   Barista Bros
## 3205                   Micro Cafe Listo Para Bebe   Barista Bros
## 3206                   Micro Cafe Listo Para Bebe   Barista Bros
## 3207                   Micro Cafe Listo Para Bebe   Barista Bros
## 3208                   Micro Cafe Listo Para Bebe   Barista Bros
## 3209                   Micro Cafe Listo Para Bebe   Barista Bros
## 3210                   Micro Cafe Listo Para Bebe   Barista Bros
## 3211                   Micro Cafe Listo Para Bebe   Barista Bros
## 3212                   Micro Cafe Listo Para Bebe   Barista Bros
## 3213                   Micro Cafe Listo Para Bebe   Barista Bros
## 3214                   Micro Cafe Listo Para Bebe   Barista Bros
## 3215                   Micro Cafe Listo Para Bebe   Barista Bros
## 3216                   Micro Cafe Listo Para Bebe   Barista Bros
## 3217                   Micro Cafe Listo Para Bebe   Barista Bros
## 3218                   Micro Cafe Listo Para Bebe   Barista Bros
## 3219            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3220            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3221            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3222            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3223            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3224            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3225            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3226            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3227            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3228            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3229            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3230            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3231            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3232            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3233            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3234            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3235            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3236            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3237            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3238            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3239            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3240            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3241            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3242            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3243            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3244            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3245            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3246            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3247            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3248            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3249            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3250            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3251            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3252            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3253            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3254            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3255            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3256            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3257            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3258            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3259            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3260            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3261            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3262            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3263            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3264            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3265            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3266            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3267            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3268            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3269            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3270            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3271            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3272            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3273            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3274            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3275            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3276            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3277            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3278            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3279            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3280            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3281            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3282            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3283            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3284            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3285            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3286            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3287            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3288            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3289            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3290            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3291            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3292            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3293            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3294            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3295            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3296            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3297            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3298            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3299            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3300            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3301            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3302            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3303            Extra Grande Cafe Listo Para Bebe   Barista Bros
## 3304                   Micro Cafe Listo Para Bebe   Barista Bros
## 3305                   Micro Cafe Listo Para Bebe   Barista Bros
## 3306                   Micro Cafe Listo Para Bebe   Barista Bros
## 3307                   Micro Cafe Listo Para Bebe   Barista Bros
## 3308                   Micro Cafe Listo Para Bebe   Barista Bros
## 3309                   Micro Cafe Listo Para Bebe   Barista Bros
## 3310                   Micro Cafe Listo Para Bebe   Barista Bros
## 3311                   Micro Cafe Listo Para Bebe   Barista Bros
## 3312                   Micro Cafe Listo Para Bebe   Barista Bros
## 3313                   Micro Cafe Listo Para Bebe   Barista Bros
## 3314                   Micro Cafe Listo Para Bebe   Barista Bros
## 3315                   Micro Cafe Listo Para Bebe   Barista Bros
## 3316                   Micro Cafe Listo Para Bebe   Barista Bros
## 3317                   Micro Cafe Listo Para Bebe   Barista Bros
## 3318                   Micro Cafe Listo Para Bebe   Barista Bros
## 3319                   Micro Cafe Listo Para Bebe   Barista Bros
## 3320                   Micro Cafe Listo Para Bebe   Barista Bros
## 3321                   Micro Cafe Listo Para Bebe   Barista Bros
## 3322                   Micro Cafe Listo Para Bebe   Barista Bros
## 3323                   Micro Cafe Listo Para Bebe   Barista Bros
## 3324                   Micro Cafe Listo Para Bebe   Barista Bros
## 3325                   Micro Cafe Listo Para Bebe   Barista Bros
## 3326                   Micro Cafe Listo Para Bebe   Barista Bros
## 3327                   Micro Cafe Listo Para Bebe   Barista Bros
## 3328                   Micro Cafe Listo Para Bebe   Barista Bros
## 3329                   Micro Cafe Listo Para Bebe   Barista Bros
## 3330                   Micro Cafe Listo Para Bebe   Barista Bros
## 3331              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3332              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3333              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3334              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3335              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3336              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3337              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3338              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3339              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3340              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3341              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3342              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3343              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3344              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3345              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3346              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3347              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3348              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3349              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3350              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3351              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3352              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3353              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3354              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3355              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3356              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3357              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3358              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3359              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3360              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3361              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3362              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3363              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3364              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3365              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3366              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3367              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3368              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3369              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3370              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3371              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3372              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3373              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3374              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3375              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3376              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3377              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3378              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3379              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3380              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3381              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3382              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3383              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3384              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3385              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3386              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3387              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3388              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3389              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3390              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3391              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3392              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3393              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3394              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3395              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3396              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3397              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3398              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3399              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3400              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3401              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3402              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3403              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3404              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3405              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3406              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3407              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3408              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3409              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3410              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3411              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3412              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3413              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3414              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3415              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3416              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3417              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3418              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3419              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3420              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3421              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3422              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3423              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3424              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3425              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3426              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3427              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3428              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3429              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3430              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3431              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3432              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3433              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3434              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3435              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3436              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3437              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3438              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3439              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3440              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3441              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3442              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3443              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3444              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3445              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3446              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3447              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3448              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3449              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3450              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3451              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3452              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3453              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3454              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3455              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3456              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3457              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3458              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3459              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3460              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3461              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3462              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3463              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3464              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3465              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3466              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3467              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3468              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3469              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3470              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3471              Peque\x96o Cafe Listo Para Bebe   Barista Bros
## 3472                  Grande Cafe Listo Para Bebe   Barista Bros
## 3473                  Grande Cafe Listo Para Bebe   Barista Bros
## 3474                  Grande Cafe Listo Para Bebe   Barista Bros
## 3475                  Grande Cafe Listo Para Bebe   Barista Bros
## 3476                  Grande Cafe Listo Para Bebe   Barista Bros
## 3477                  Grande Cafe Listo Para Bebe   Barista Bros
## 3478                  Grande Cafe Listo Para Bebe   Barista Bros
## 3479                  Grande Cafe Listo Para Bebe   Barista Bros
## 3480                  Grande Cafe Listo Para Bebe   Barista Bros
## 3481                  Grande Cafe Listo Para Bebe   Barista Bros
## 3482                  Grande Cafe Listo Para Bebe   Barista Bros
## 3483                  Grande Cafe Listo Para Bebe   Barista Bros
## 3484                  Grande Cafe Listo Para Bebe   Barista Bros
## 3485                  Grande Cafe Listo Para Bebe   Barista Bros
## 3486                  Grande Cafe Listo Para Bebe   Barista Bros
## 3487                  Grande Cafe Listo Para Bebe   Barista Bros
## 3488                  Grande Cafe Listo Para Bebe   Barista Bros
## 3489                  Grande Cafe Listo Para Bebe   Barista Bros
## 3490                  Grande Cafe Listo Para Bebe   Barista Bros
## 3491                  Grande Cafe Listo Para Bebe   Barista Bros
## 3492                  Grande Cafe Listo Para Bebe   Barista Bros
## 3493                  Grande Cafe Listo Para Bebe   Barista Bros
## 3494                  Grande Cafe Listo Para Bebe   Barista Bros
## 3495                  Grande Cafe Listo Para Bebe   Barista Bros
## 3496                  Grande Cafe Listo Para Bebe   Barista Bros
## 3497                  Grande Cafe Listo Para Bebe   Barista Bros
## 3498                  Grande Cafe Listo Para Bebe   Barista Bros
## 3499                  Grande Cafe Listo Para Bebe   Barista Bros
## 3500                  Grande Cafe Listo Para Bebe   Barista Bros
## 3501                  Grande Cafe Listo Para Bebe   Barista Bros
## 3502                  Grande Cafe Listo Para Bebe   Barista Bros
## 3503                  Grande Cafe Listo Para Bebe   Barista Bros
## 3504                  Grande Cafe Listo Para Bebe   Barista Bros
## 3505                  Grande Cafe Listo Para Bebe   Barista Bros
## 3506                  Grande Cafe Listo Para Bebe   Barista Bros
## 3507                  Grande Cafe Listo Para Bebe   Barista Bros
## 3508                  Grande Cafe Listo Para Bebe   Barista Bros
## 3509                  Grande Cafe Listo Para Bebe   Barista Bros
## 3510                  Grande Cafe Listo Para Bebe   Barista Bros
## 3511                  Grande Cafe Listo Para Bebe   Barista Bros
## 3512                  Grande Cafe Listo Para Bebe   Barista Bros
## 3513                  Grande Cafe Listo Para Bebe   Barista Bros
## 3514                  Grande Cafe Listo Para Bebe   Barista Bros
## 3515                  Grande Cafe Listo Para Bebe   Barista Bros
## 3516                  Grande Cafe Listo Para Bebe   Barista Bros
## 3517                  Grande Cafe Listo Para Bebe   Barista Bros
## 3518                  Grande Cafe Listo Para Bebe   Barista Bros
## 3519                  Grande Cafe Listo Para Bebe   Barista Bros
## 3520                  Grande Cafe Listo Para Bebe   Barista Bros
## 3521                  Grande Cafe Listo Para Bebe   Barista Bros
## 3522                  Grande Cafe Listo Para Bebe   Barista Bros
## 3523                  Grande Cafe Listo Para Bebe   Barista Bros
## 3524                  Grande Cafe Listo Para Bebe   Barista Bros
## 3525                  Grande Cafe Listo Para Bebe   Barista Bros
## 3526                  Grande Cafe Listo Para Bebe   Barista Bros
## 3527                  Grande Cafe Listo Para Bebe   Barista Bros
## 3528                  Grande Cafe Listo Para Bebe   Barista Bros
## 3529                  Grande Cafe Listo Para Bebe   Barista Bros
## 3530                  Grande Cafe Listo Para Bebe   Barista Bros
## 3531                  Grande Cafe Listo Para Bebe   Barista Bros
## 3532                  Grande Cafe Listo Para Bebe   Barista Bros
## 3533                  Grande Cafe Listo Para Bebe   Barista Bros
## 3534                  Grande Cafe Listo Para Bebe   Barista Bros
## 3535                  Grande Cafe Listo Para Bebe   Barista Bros
## 3536                  Grande Cafe Listo Para Bebe   Barista Bros
## 3537                  Grande Cafe Listo Para Bebe   Barista Bros
## 3538                  Grande Cafe Listo Para Bebe   Barista Bros
## 3539                  Grande Cafe Listo Para Bebe   Barista Bros
## 3540                  Grande Cafe Listo Para Bebe   Barista Bros
## 3541                  Grande Cafe Listo Para Bebe   Barista Bros
## 3542                  Grande Cafe Listo Para Bebe   Barista Bros
## 3543                  Grande Cafe Listo Para Bebe   Barista Bros
## 3544                  Grande Cafe Listo Para Bebe   Barista Bros
## 3545                  Grande Cafe Listo Para Bebe   Barista Bros
## 3546                  Grande Cafe Listo Para Bebe   Barista Bros
## 3547                  Grande Cafe Listo Para Bebe   Barista Bros
## 3548                  Grande Cafe Listo Para Bebe   Barista Bros
## 3549                  Grande Cafe Listo Para Bebe   Barista Bros
## 3550                  Grande Cafe Listo Para Bebe   Barista Bros
## 3551                  Grande Cafe Listo Para Bebe   Barista Bros
## 3552                  Grande Cafe Listo Para Bebe   Barista Bros
## 3553                  Grande Cafe Listo Para Bebe   Barista Bros
## 3554                  Grande Cafe Listo Para Bebe   Barista Bros
## 3555                  Grande Cafe Listo Para Bebe   Barista Bros
## 3556                  Grande Cafe Listo Para Bebe   Barista Bros
## 3557                  Grande Cafe Listo Para Bebe   Barista Bros
## 3558                  Grande Cafe Listo Para Bebe   Barista Bros
## 3559                  Grande Cafe Listo Para Bebe   Barista Bros
## 3560                  Grande Cafe Listo Para Bebe   Barista Bros
## 3561                  Grande Cafe Listo Para Bebe   Barista Bros
## 3562                  Grande Cafe Listo Para Bebe   Barista Bros
## 3563                  Grande Cafe Listo Para Bebe   Barista Bros
## 3564                  Grande Cafe Listo Para Bebe   Barista Bros
## 3565                  Grande Cafe Listo Para Bebe   Barista Bros
## 3566                  Grande Cafe Listo Para Bebe   Barista Bros
## 3567                  Grande Cafe Listo Para Bebe   Barista Bros
## 3568                  Grande Cafe Listo Para Bebe   Barista Bros
## 3569                  Grande Cafe Listo Para Bebe   Barista Bros
## 3570                  Grande Cafe Listo Para Bebe   Barista Bros
## 3571                  Grande Cafe Listo Para Bebe   Barista Bros
## 3572                  Grande Cafe Listo Para Bebe   Barista Bros
## 3573                  Grande Cafe Listo Para Bebe   Barista Bros
## 3574                  Grande Cafe Listo Para Bebe   Barista Bros
## 3575                  Grande Cafe Listo Para Bebe   Barista Bros
## 3576                  Grande Cafe Listo Para Bebe   Barista Bros
## 3577                  Grande Cafe Listo Para Bebe   Barista Bros
## 3578                  Grande Cafe Listo Para Bebe   Barista Bros
## 3579                  Grande Cafe Listo Para Bebe   Barista Bros
## 3580                  Grande Cafe Listo Para Bebe   Barista Bros
## 3581                  Grande Cafe Listo Para Bebe   Barista Bros
## 3582                  Grande Cafe Listo Para Bebe   Barista Bros
## 3583                  Grande Cafe Listo Para Bebe   Barista Bros
## 3584                  Grande Cafe Listo Para Bebe   Barista Bros
## 3585                  Grande Cafe Listo Para Bebe   Barista Bros
## 3586                  Grande Cafe Listo Para Bebe   Barista Bros
## 3587                  Grande Cafe Listo Para Bebe   Barista Bros
## 3588                  Grande Cafe Listo Para Bebe   Barista Bros
## 3589                  Grande Cafe Listo Para Bebe   Barista Bros
## 3590                  Grande Cafe Listo Para Bebe   Barista Bros
## 3591                  Grande Cafe Listo Para Bebe   Barista Bros
## 3592                  Grande Cafe Listo Para Bebe   Barista Bros
## 3593                  Grande Cafe Listo Para Bebe   Barista Bros
## 3594                  Grande Cafe Listo Para Bebe   Barista Bros
## 3595                  Grande Cafe Listo Para Bebe   Barista Bros
## 3596                  Grande Cafe Listo Para Bebe   Barista Bros
## 3597                  Grande Cafe Listo Para Bebe   Barista Bros
## 3598                  Grande Cafe Listo Para Bebe   Barista Bros
## 3599                  Grande Cafe Listo Para Bebe   Barista Bros
## 3600                  Grande Cafe Listo Para Bebe   Barista Bros
## 3601                  Grande Cafe Listo Para Bebe   Barista Bros
## 3602                  Grande Cafe Listo Para Bebe   Barista Bros
## 3603                  Grande Cafe Listo Para Bebe   Barista Bros
## 3604                  Grande Cafe Listo Para Bebe   Barista Bros
## 3605                  Grande Cafe Listo Para Bebe   Barista Bros
## 3606                  Grande Cafe Listo Para Bebe   Barista Bros
## 3607                  Grande Cafe Listo Para Bebe   Barista Bros
## 3608                  Grande Cafe Listo Para Bebe   Barista Bros
## 3609                  Grande Cafe Listo Para Bebe   Barista Bros
## 3610                  Grande Cafe Listo Para Bebe   Barista Bros
## 3611                  Grande Cafe Listo Para Bebe   Barista Bros
## 3612                  Grande Cafe Listo Para Bebe   Barista Bros
## 3613                  Grande Cafe Listo Para Bebe   Barista Bros
## 3614                  Grande Cafe Listo Para Bebe   Barista Bros
## 3615                  Grande Cafe Listo Para Bebe   Barista Bros
## 3616                  Grande Cafe Listo Para Bebe   Barista Bros
## 3617                  Grande Cafe Listo Para Bebe   Barista Bros
## 3618                  Grande Cafe Listo Para Bebe   Barista Bros
## 3619                  Grande Cafe Listo Para Bebe   Barista Bros
## 3620                  Grande Cafe Listo Para Bebe   Barista Bros
## 3621                  Grande Cafe Listo Para Bebe   Barista Bros
## 3622                  Grande Cafe Listo Para Bebe   Barista Bros
## 3623                  Grande Cafe Listo Para Bebe   Barista Bros
## 3624                  Grande Cafe Listo Para Bebe   Barista Bros
## 3625                  Grande Cafe Listo Para Bebe   Barista Bros
## 3626                  Grande Cafe Listo Para Bebe   Barista Bros
## 3627                  Grande Cafe Listo Para Bebe   Barista Bros
## 3628                  Grande Cafe Listo Para Bebe   Barista Bros
## 3629                  Grande Cafe Listo Para Bebe   Barista Bros
## 3630                  Grande Cafe Listo Para Bebe   Barista Bros
## 3631                  Grande Cafe Listo Para Bebe   Barista Bros
## 3632                  Grande Cafe Listo Para Bebe   Barista Bros
## 3633                  Grande Cafe Listo Para Bebe   Barista Bros
## 3634                  Grande Cafe Listo Para Bebe   Barista Bros
## 3635                  Grande Cafe Listo Para Bebe   Barista Bros
## 3636                  Grande Cafe Listo Para Bebe   Barista Bros
## 3637                  Grande Cafe Listo Para Bebe   Barista Bros
## 3638                  Grande Cafe Listo Para Bebe   Barista Bros
## 3639                  Grande Cafe Listo Para Bebe   Barista Bros
## 3640                  Grande Cafe Listo Para Bebe   Barista Bros
## 3641                  Grande Cafe Listo Para Bebe   Barista Bros
## 3642                  Grande Cafe Listo Para Bebe   Barista Bros
## 3643                  Grande Cafe Listo Para Bebe   Barista Bros
## 3644                  Grande Cafe Listo Para Bebe   Barista Bros
## 3645                  Grande Cafe Listo Para Bebe   Barista Bros
## 3646                  Grande Cafe Listo Para Bebe   Barista Bros
## 3647                  Grande Cafe Listo Para Bebe   Barista Bros
## 3648                  Grande Cafe Listo Para Bebe   Barista Bros
## 3649                  Grande Cafe Listo Para Bebe   Barista Bros
## 3650                  Grande Cafe Listo Para Bebe   Barista Bros
## 3651                  Grande Cafe Listo Para Bebe   Barista Bros
## 3652                  Grande Cafe Listo Para Bebe   Barista Bros
## 3653                  Grande Cafe Listo Para Bebe   Barista Bros
## 3654                  Grande Cafe Listo Para Bebe   Barista Bros
## 3655                  Grande Cafe Listo Para Bebe   Barista Bros
## 3656                  Grande Cafe Listo Para Bebe   Barista Bros
## 3657                  Grande Cafe Listo Para Bebe   Barista Bros
## 3658                  Grande Cafe Listo Para Bebe   Barista Bros
## 3659                  Grande Cafe Listo Para Bebe   Barista Bros
## 3660                  Grande Cafe Listo Para Bebe   Barista Bros
## 3661                  Grande Cafe Listo Para Bebe   Barista Bros
## 3662                  Grande Cafe Listo Para Bebe   Barista Bros
## 3663                  Grande Cafe Listo Para Bebe   Barista Bros
## 3664                  Grande Cafe Listo Para Bebe   Barista Bros
## 3665                  Grande Cafe Listo Para Bebe   Barista Bros
## 3666                  Grande Cafe Listo Para Bebe   Barista Bros
## 3667                  Grande Cafe Listo Para Bebe   Barista Bros
## 3668                  Grande Cafe Listo Para Bebe   Barista Bros
## 3669                  Grande Cafe Listo Para Bebe   Barista Bros
## 3670                  Grande Cafe Listo Para Bebe   Barista Bros
## 3671                  Grande Cafe Listo Para Bebe   Barista Bros
## 3672                  Grande Cafe Listo Para Bebe   Barista Bros
## 3673                  Grande Cafe Listo Para Bebe   Barista Bros
## 3674                  Grande Cafe Listo Para Bebe   Barista Bros
## 3675                  Grande Cafe Listo Para Bebe   Barista Bros
## 3676                  Grande Cafe Listo Para Bebe   Barista Bros
## 3677                  Grande Cafe Listo Para Bebe   Barista Bros
## 3678                  Grande Cafe Listo Para Bebe   Barista Bros
## 3679                  Grande Cafe Listo Para Bebe   Barista Bros
## 3680                  Grande Cafe Listo Para Bebe   Barista Bros
## 3681                  Grande Cafe Listo Para Bebe   Barista Bros
## 3682                  Grande Cafe Listo Para Bebe   Barista Bros
## 3683                  Grande Cafe Listo Para Bebe   Barista Bros
## 3684                  Grande Cafe Listo Para Bebe   Barista Bros
## 3685                  Grande Cafe Listo Para Bebe   Barista Bros
## 3686                  Grande Cafe Listo Para Bebe   Barista Bros
## 3687                  Grande Cafe Listo Para Bebe   Barista Bros
## 3688                  Grande Cafe Listo Para Bebe   Barista Bros
## 3689                  Grande Cafe Listo Para Bebe   Barista Bros
## 3690                  Grande Cafe Listo Para Bebe   Barista Bros
## 3691                  Grande Cafe Listo Para Bebe   Barista Bros
## 3692                  Grande Cafe Listo Para Bebe   Barista Bros
## 3693                  Grande Cafe Listo Para Bebe   Barista Bros
## 3694                  Grande Cafe Listo Para Bebe   Barista Bros
## 3695                  Grande Cafe Listo Para Bebe   Barista Bros
## 3696                  Grande Cafe Listo Para Bebe   Barista Bros
## 3697                  Grande Cafe Listo Para Bebe   Barista Bros
## 3698                  Grande Cafe Listo Para Bebe   Barista Bros
## 3699                  Grande Cafe Listo Para Bebe   Barista Bros
## 3700                  Grande Cafe Listo Para Bebe   Barista Bros
## 3701                  Grande Cafe Listo Para Bebe   Barista Bros
## 3702                  Grande Cafe Listo Para Bebe   Barista Bros
## 3703                  Grande Cafe Listo Para Bebe   Barista Bros
## 3704                  Grande Cafe Listo Para Bebe   Barista Bros
## 3705                  Grande Cafe Listo Para Bebe   Barista Bros
## 3706                  Grande Cafe Listo Para Bebe   Barista Bros
## 3707                  Grande Cafe Listo Para Bebe   Barista Bros
## 3708                  Grande Cafe Listo Para Bebe   Barista Bros
## 3709                  Grande Cafe Listo Para Bebe   Barista Bros
## 3710                  Grande Cafe Listo Para Bebe   Barista Bros
## 3711                  Grande Cafe Listo Para Bebe   Barista Bros
## 3712                  Grande Cafe Listo Para Bebe   Barista Bros
## 3713            Extra Grande     Bebidas de Fruta         Bebere
## 3714            Extra Grande     Bebidas de Fruta         Bebere
## 3715            Extra Grande     Bebidas de Fruta         Bebere
## 3716            Extra Grande     Bebidas de Fruta         Bebere
## 3717            Extra Grande     Bebidas de Fruta         Bebere
## 3718            Extra Grande     Bebidas de Fruta         Bebere
## 3719            Extra Grande     Bebidas de Fruta         Bebere
## 3720            Extra Grande     Bebidas de Fruta         Bebere
## 3721            Extra Grande     Bebidas de Fruta         Bebere
## 3722            Extra Grande     Bebidas de Fruta         Bebere
## 3723            Extra Grande     Bebidas de Fruta         Bebere
## 3724            Extra Grande     Bebidas de Fruta         Bebere
## 3725            Extra Grande     Bebidas de Fruta         Bebere
## 3726            Extra Grande     Bebidas de Fruta         Bebere
## 3727            Extra Grande     Bebidas de Fruta         Bebere
## 3728            Extra Grande     Bebidas de Fruta         Bebere
## 3729            Extra Grande     Bebidas de Fruta         Bebere
## 3730            Extra Grande     Bebidas de Fruta         Bebere
## 3731            Extra Grande     Bebidas de Fruta         Bebere
## 3732            Extra Grande     Bebidas de Fruta         Bebere
## 3733            Extra Grande     Bebidas de Fruta         Bebere
## 3734            Extra Grande     Bebidas de Fruta         Bebere
## 3735            Extra Grande     Bebidas de Fruta         Bebere
## 3736            Extra Grande     Bebidas de Fruta         Bebere
## 3737            Extra Grande     Bebidas de Fruta         Bebere
## 3738            Extra Grande     Bebidas de Fruta         Bebere
## 3739            Extra Grande     Bebidas de Fruta         Bebere
## 3740            Extra Grande     Bebidas de Fruta         Bebere
## 3741            Extra Grande     Bebidas de Fruta         Bebere
## 3742            Extra Grande     Bebidas de Fruta         Bebere
## 3743                   Micro     Bebidas de Fruta         Bebere
## 3744                   Micro     Bebidas de Fruta         Bebere
## 3745                   Micro     Bebidas de Fruta         Bebere
## 3746                   Micro     Bebidas de Fruta         Bebere
## 3747                   Micro     Bebidas de Fruta         Bebere
## 3748                   Micro     Bebidas de Fruta         Bebere
## 3749                   Micro     Bebidas de Fruta         Bebere
## 3750                   Micro     Bebidas de Fruta         Bebere
## 3751            Extra Grande     Bebidas de Fruta         Bebere
## 3752            Extra Grande     Bebidas de Fruta         Bebere
## 3753            Extra Grande     Bebidas de Fruta         Bebere
## 3754            Extra Grande     Bebidas de Fruta         Bebere
## 3755            Extra Grande     Bebidas de Fruta         Bebere
## 3756            Extra Grande     Bebidas de Fruta         Bebere
## 3757            Extra Grande     Bebidas de Fruta         Bebere
## 3758            Extra Grande     Bebidas de Fruta         Bebere
## 3759            Extra Grande     Bebidas de Fruta         Bebere
## 3760            Extra Grande     Bebidas de Fruta         Bebere
## 3761            Extra Grande     Bebidas de Fruta         Bebere
## 3762            Extra Grande     Bebidas de Fruta         Bebere
## 3763            Extra Grande     Bebidas de Fruta         Bebere
## 3764            Extra Grande     Bebidas de Fruta         Bebere
## 3765                   Micro     Bebidas de Fruta         Bebere
## 3766                   Micro     Bebidas de Fruta         Bebere
## 3767                   Micro     Bebidas de Fruta         Bebere
## 3768                   Micro     Bebidas de Fruta         Bebere
## 3769                   Micro     Bebidas de Fruta         Bebere
## 3770            Extra Grande     Bebidas de Fruta         Bebere
## 3771            Extra Grande     Bebidas de Fruta         Bebere
## 3772            Extra Grande     Bebidas de Fruta         Bebere
## 3773            Extra Grande     Bebidas de Fruta         Bebere
## 3774            Extra Grande     Bebidas de Fruta         Bebere
## 3775            Extra Grande     Bebidas de Fruta         Bebere
## 3776            Extra Grande     Bebidas de Fruta         Bebere
## 3777            Extra Grande     Bebidas de Fruta         Bebere
## 3778            Extra Grande     Bebidas de Fruta         Bebere
## 3779                   Micro     Bebidas de Fruta         Bebere
## 3780                   Micro     Bebidas de Fruta         Bebere
## 3781              Peque\x96o     Bebidas de Fruta         Bebere
## 3782              Peque\x96o     Bebidas de Fruta         Bebere
## 3783              Peque\x96o     Bebidas de Fruta         Bebere
## 3784              Peque\x96o     Bebidas de Fruta         Bebere
## 3785              Peque\x96o     Bebidas de Fruta         Bebere
## 3786              Peque\x96o     Bebidas de Fruta         Bebere
## 3787                  Grande     Bebidas de Fruta         Bebere
## 3788                  Grande     Bebidas de Fruta         Bebere
## 3789                  Grande     Bebidas de Fruta         Bebere
## 3790                  Grande     Bebidas de Fruta         Bebere
## 3791                  Grande     Bebidas de Fruta         Bebere
## 3792                  Grande     Bebidas de Fruta         Bebere
## 3793                  Grande     Bebidas de Fruta         Bebere
## 3794                  Grande     Bebidas de Fruta         Bebere
## 3795                  Grande     Bebidas de Fruta         Bebere
## 3796                  Grande     Bebidas de Fruta         Bebere
## 3797                  Grande     Bebidas de Fruta         Bebere
## 3798                  Grande     Bebidas de Fruta         Bebere
## 3799                  Grande     Bebidas de Fruta         Bebere
## 3800                  Grande     Bebidas de Fruta         Bebere
## 3801                  Grande     Bebidas de Fruta         Bebere
## 3802                  Grande     Bebidas de Fruta         Bebere
## 3803                  Grande     Bebidas de Fruta         Bebere
## 3804                  Grande     Bebidas de Fruta         Bebere
## 3805                  Grande     Bebidas de Fruta         Bebere
## 3806                  Grande     Bebidas de Fruta         Bebere
## 3807            Extra Grande  Bebidas Energeticas           Burn
## 3808            Extra Grande  Bebidas Energeticas           Burn
## 3809            Extra Grande  Bebidas Energeticas           Burn
## 3810            Extra Grande  Bebidas Energeticas           Burn
## 3811            Extra Grande  Bebidas Energeticas           Burn
## 3812            Extra Grande  Bebidas Energeticas           Burn
## 3813            Extra Grande  Bebidas Energeticas           Burn
## 3814            Extra Grande  Bebidas Energeticas           Burn
## 3815            Extra Grande  Bebidas Energeticas           Burn
## 3816            Extra Grande  Bebidas Energeticas           Burn
## 3817            Extra Grande  Bebidas Energeticas           Burn
## 3818            Extra Grande  Bebidas Energeticas           Burn
## 3819            Extra Grande  Bebidas Energeticas           Burn
## 3820            Extra Grande  Bebidas Energeticas           Burn
## 3821            Extra Grande  Bebidas Energeticas           Burn
## 3822            Extra Grande  Bebidas Energeticas           Burn
## 3823            Extra Grande  Bebidas Energeticas           Burn
## 3824            Extra Grande  Bebidas Energeticas           Burn
## 3825            Extra Grande  Bebidas Energeticas           Burn
## 3826            Extra Grande  Bebidas Energeticas           Burn
## 3827            Extra Grande  Bebidas Energeticas           Burn
## 3828            Extra Grande  Bebidas Energeticas           Burn
## 3829            Extra Grande  Bebidas Energeticas           Burn
## 3830            Extra Grande  Bebidas Energeticas           Burn
## 3831            Extra Grande  Bebidas Energeticas           Burn
## 3832            Extra Grande  Bebidas Energeticas           Burn
## 3833            Extra Grande  Bebidas Energeticas           Burn
## 3834            Extra Grande  Bebidas Energeticas           Burn
## 3835            Extra Grande  Bebidas Energeticas           Burn
## 3836            Extra Grande  Bebidas Energeticas           Burn
## 3837            Extra Grande  Bebidas Energeticas           Burn
## 3838            Extra Grande  Bebidas Energeticas           Burn
## 3839            Extra Grande  Bebidas Energeticas           Burn
## 3840            Extra Grande  Bebidas Energeticas           Burn
## 3841            Extra Grande  Bebidas Energeticas           Burn
## 3842            Extra Grande  Bebidas Energeticas           Burn
## 3843            Extra Grande  Bebidas Energeticas           Burn
## 3844            Extra Grande  Bebidas Energeticas           Burn
## 3845            Extra Grande  Bebidas Energeticas           Burn
## 3846            Extra Grande  Bebidas Energeticas           Burn
## 3847            Extra Grande  Bebidas Energeticas           Burn
## 3848            Extra Grande  Bebidas Energeticas           Burn
## 3849            Extra Grande  Bebidas Energeticas           Burn
## 3850            Extra Grande  Bebidas Energeticas           Burn
## 3851            Extra Grande  Bebidas Energeticas           Burn
## 3852            Extra Grande  Bebidas Energeticas           Burn
## 3853            Extra Grande  Bebidas Energeticas           Burn
## 3854            Extra Grande  Bebidas Energeticas           Burn
## 3855            Extra Grande  Bebidas Energeticas           Burn
## 3856            Extra Grande  Bebidas Energeticas           Burn
## 3857            Extra Grande  Bebidas Energeticas           Burn
## 3858            Extra Grande  Bebidas Energeticas           Burn
## 3859            Extra Grande  Bebidas Energeticas           Burn
## 3860            Extra Grande  Bebidas Energeticas           Burn
## 3861            Extra Grande  Bebidas Energeticas           Burn
## 3862            Extra Grande  Bebidas Energeticas           Burn
## 3863            Extra Grande  Bebidas Energeticas           Burn
## 3864            Extra Grande  Bebidas Energeticas           Burn
## 3865            Extra Grande  Bebidas Energeticas           Burn
## 3866            Extra Grande  Bebidas Energeticas           Burn
## 3867            Extra Grande  Bebidas Energeticas           Burn
## 3868            Extra Grande  Bebidas Energeticas           Burn
## 3869            Extra Grande  Bebidas Energeticas           Burn
## 3870            Extra Grande  Bebidas Energeticas           Burn
## 3871            Extra Grande  Bebidas Energeticas           Burn
## 3872            Extra Grande  Bebidas Energeticas           Burn
## 3873            Extra Grande  Bebidas Energeticas           Burn
## 3874            Extra Grande  Bebidas Energeticas           Burn
## 3875            Extra Grande  Bebidas Energeticas           Burn
## 3876            Extra Grande  Bebidas Energeticas           Burn
## 3877            Extra Grande  Bebidas Energeticas           Burn
## 3878            Extra Grande  Bebidas Energeticas           Burn
## 3879            Extra Grande  Bebidas Energeticas           Burn
## 3880            Extra Grande  Bebidas Energeticas           Burn
## 3881            Extra Grande  Bebidas Energeticas           Burn
## 3882            Extra Grande  Bebidas Energeticas           Burn
## 3883            Extra Grande  Bebidas Energeticas           Burn
## 3884            Extra Grande  Bebidas Energeticas           Burn
## 3885            Extra Grande  Bebidas Energeticas           Burn
## 3886            Extra Grande  Bebidas Energeticas           Burn
## 3887            Extra Grande  Bebidas Energeticas           Burn
## 3888            Extra Grande  Bebidas Energeticas           Burn
## 3889            Extra Grande  Bebidas Energeticas           Burn
## 3890            Extra Grande  Bebidas Energeticas           Burn
## 3891            Extra Grande  Bebidas Energeticas           Burn
## 3892            Extra Grande  Bebidas Energeticas           Burn
## 3893            Extra Grande  Bebidas Energeticas           Burn
## 3894            Extra Grande  Bebidas Energeticas           Burn
## 3895            Extra Grande  Bebidas Energeticas           Burn
## 3896            Extra Grande  Bebidas Energeticas           Burn
## 3897            Extra Grande  Bebidas Energeticas           Burn
## 3898            Extra Grande  Bebidas Energeticas           Burn
## 3899            Extra Grande  Bebidas Energeticas           Burn
## 3900            Extra Grande  Bebidas Energeticas           Burn
## 3901            Extra Grande  Bebidas Energeticas           Burn
## 3902            Extra Grande  Bebidas Energeticas           Burn
## 3903            Extra Grande  Bebidas Energeticas           Burn
## 3904            Extra Grande  Bebidas Energeticas           Burn
## 3905            Extra Grande  Bebidas Energeticas           Burn
## 3906            Extra Grande  Bebidas Energeticas           Burn
## 3907            Extra Grande  Bebidas Energeticas           Burn
## 3908            Extra Grande  Bebidas Energeticas           Burn
## 3909            Extra Grande  Bebidas Energeticas           Burn
## 3910            Extra Grande  Bebidas Energeticas           Burn
## 3911            Extra Grande  Bebidas Energeticas           Burn
## 3912            Extra Grande  Bebidas Energeticas           Burn
## 3913            Extra Grande  Bebidas Energeticas           Burn
## 3914            Extra Grande  Bebidas Energeticas           Burn
## 3915            Extra Grande  Bebidas Energeticas           Burn
## 3916            Extra Grande  Bebidas Energeticas           Burn
## 3917            Extra Grande  Bebidas Energeticas           Burn
## 3918            Extra Grande  Bebidas Energeticas           Burn
## 3919            Extra Grande  Bebidas Energeticas           Burn
## 3920            Extra Grande  Bebidas Energeticas           Burn
## 3921            Extra Grande  Bebidas Energeticas           Burn
## 3922            Extra Grande  Bebidas Energeticas           Burn
## 3923            Extra Grande  Bebidas Energeticas           Burn
## 3924            Extra Grande  Bebidas Energeticas           Burn
## 3925            Extra Grande  Bebidas Energeticas           Burn
## 3926            Extra Grande  Bebidas Energeticas           Burn
## 3927            Extra Grande  Bebidas Energeticas           Burn
## 3928            Extra Grande  Bebidas Energeticas           Burn
## 3929            Extra Grande  Bebidas Energeticas           Burn
## 3930            Extra Grande  Bebidas Energeticas           Burn
## 3931            Extra Grande  Bebidas Energeticas           Burn
## 3932            Extra Grande  Bebidas Energeticas           Burn
## 3933            Extra Grande  Bebidas Energeticas           Burn
## 3934            Extra Grande  Bebidas Energeticas           Burn
## 3935            Extra Grande  Bebidas Energeticas           Burn
## 3936            Extra Grande  Bebidas Energeticas           Burn
## 3937            Extra Grande  Bebidas Energeticas           Burn
## 3938            Extra Grande  Bebidas Energeticas           Burn
## 3939            Extra Grande  Bebidas Energeticas           Burn
## 3940            Extra Grande  Bebidas Energeticas           Burn
## 3941            Extra Grande  Bebidas Energeticas           Burn
## 3942            Extra Grande  Bebidas Energeticas           Burn
## 3943            Extra Grande  Bebidas Energeticas           Burn
## 3944            Extra Grande  Bebidas Energeticas           Burn
## 3945            Extra Grande  Bebidas Energeticas           Burn
## 3946            Extra Grande  Bebidas Energeticas           Burn
## 3947            Extra Grande  Bebidas Energeticas           Burn
## 3948            Extra Grande  Bebidas Energeticas           Burn
## 3949            Extra Grande  Bebidas Energeticas           Burn
## 3950            Extra Grande  Bebidas Energeticas           Burn
## 3951            Extra Grande  Bebidas Energeticas           Burn
## 3952            Extra Grande  Bebidas Energeticas           Burn
## 3953            Extra Grande  Bebidas Energeticas           Burn
## 3954            Extra Grande  Bebidas Energeticas           Burn
## 3955            Extra Grande  Bebidas Energeticas           Burn
## 3956            Extra Grande  Bebidas Energeticas           Burn
## 3957            Extra Grande  Bebidas Energeticas           Burn
## 3958            Extra Grande  Bebidas Energeticas           Burn
## 3959            Extra Grande  Bebidas Energeticas           Burn
## 3960            Extra Grande  Bebidas Energeticas           Burn
## 3961            Extra Grande  Bebidas Energeticas           Burn
## 3962            Extra Grande  Bebidas Energeticas           Burn
## 3963            Extra Grande  Bebidas Energeticas           Burn
## 3964            Extra Grande  Bebidas Energeticas           Burn
## 3965            Extra Grande  Bebidas Energeticas           Burn
## 3966            Extra Grande  Bebidas Energeticas           Burn
## 3967            Extra Grande  Bebidas Energeticas           Burn
## 3968            Extra Grande  Bebidas Energeticas           Burn
## 3969            Extra Grande  Bebidas Energeticas           Burn
## 3970            Extra Grande  Bebidas Energeticas           Burn
## 3971            Extra Grande  Bebidas Energeticas           Burn
## 3972            Extra Grande  Bebidas Energeticas           Burn
## 3973            Extra Grande  Bebidas Energeticas           Burn
## 3974            Extra Grande  Bebidas Energeticas           Burn
## 3975            Extra Grande  Bebidas Energeticas           Burn
## 3976            Extra Grande  Bebidas Energeticas           Burn
## 3977            Extra Grande  Bebidas Energeticas           Burn
## 3978            Extra Grande  Bebidas Energeticas           Burn
## 3979            Extra Grande  Bebidas Energeticas           Burn
## 3980            Extra Grande  Bebidas Energeticas           Burn
## 3981            Extra Grande  Bebidas Energeticas           Burn
## 3982            Extra Grande  Bebidas Energeticas           Burn
## 3983            Extra Grande  Bebidas Energeticas           Burn
## 3984            Extra Grande  Bebidas Energeticas           Burn
## 3985            Extra Grande  Bebidas Energeticas           Burn
## 3986            Extra Grande  Bebidas Energeticas           Burn
## 3987            Extra Grande  Bebidas Energeticas           Burn
## 3988            Extra Grande  Bebidas Energeticas           Burn
## 3989            Extra Grande  Bebidas Energeticas           Burn
## 3990            Extra Grande  Bebidas Energeticas           Burn
## 3991            Extra Grande  Bebidas Energeticas           Burn
## 3992            Extra Grande  Bebidas Energeticas           Burn
## 3993            Extra Grande  Bebidas Energeticas           Burn
## 3994            Extra Grande  Bebidas Energeticas           Burn
## 3995            Extra Grande  Bebidas Energeticas           Burn
## 3996            Extra Grande  Bebidas Energeticas           Burn
## 3997            Extra Grande  Bebidas Energeticas           Burn
## 3998            Extra Grande  Bebidas Energeticas           Burn
## 3999            Extra Grande  Bebidas Energeticas           Burn
##         Presentacion     Tamano Retornable_NR Enero Febrero Marzo Abril Mayo
## 1       Presentacion  Tama\x96o Retornable_NR    NA      NA    NA    NA   NA
## 2       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 4       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 5       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 6       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 7       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 8       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 9       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 10      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 11      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 12      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 13      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 14      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 15      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 16      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 17      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 18      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 19      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 20      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 21      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 22      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 23      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 24      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 25      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 26      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 27      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 28      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 29      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 30      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 31      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 32      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 33      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 34      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 35      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 36      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 37      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 38      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 39      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 40      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 41      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 42      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 43      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 44      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 45      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 46      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 47      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 48      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 49      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 50      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 51      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 52      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 53      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 54      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 55      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 56      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 57      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 58      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 59      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 60      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 61      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 62      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 63      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 64      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 65      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 66      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 67      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 68      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 69      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 70      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 71      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 72      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 73      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 74      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 75      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 76      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 77      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 78      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 79      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 80      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 81      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 82      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 83      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 84      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 85      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 86      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 87      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 88      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 89      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 90      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 91      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 92      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 93      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 94      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 95      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 96      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 97      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 98      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 99      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 100     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 101     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 102     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 103     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 104     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 105     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 106     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 107     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 108     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 109     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 110     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 111     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 112     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 113     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 114     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 115     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 116     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 117     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 118     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 119     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 120     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 121     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 122     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 123     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 124     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 125     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 126     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 127     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 128     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 129     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 130     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 131     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 132     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 133     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 134     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 135     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 136     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 137     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 138     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 139     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 140     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 141     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 142     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 143     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 144     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 145     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 146     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 147     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 148     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 149     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 150     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 151     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 152     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 153     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 154     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 155     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 156     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 157     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 158     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 159     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 160     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 161     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 162     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 163     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 164     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 165     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 166     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 167     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 168     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 169     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 170     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 171     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 172     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 173     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 174     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 175     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 176     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 177     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 178     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 179     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 180     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 181     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 182     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 183     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 184     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 185     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 186     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 187     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 188     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 189     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 190     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 191     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 192     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 193     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 194     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 195     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 196     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 197     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 198     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 199     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 200     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 201     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 202     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 203     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 204     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 205     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 206     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 207     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 208     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 209     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 210     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 211     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 212     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 213     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 214     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 215     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 216     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 217     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 218     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 219     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 220     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 221     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 222     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 223     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 224     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 225     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 226     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 227     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 228     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 229     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 230     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 231     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 232     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 233     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 234     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 235     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 236     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 237     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 238     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 239     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 240     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 241     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 242     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 243     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 244     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 245     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 246     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 247     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 248     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 249     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 250     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 251     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 252     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 253     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 254     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 255     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 256     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 257     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 258     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 259     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 260     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 261     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 262     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 263     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 264     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 265     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 266     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 267     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 268     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 269     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 270     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 271     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 272     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 273     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 274     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 275     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 276     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 277     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 278     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 279     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 280     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 281     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 282     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 283     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 284     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 285     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 286     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 287     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 288     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 289     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 290     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 291     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 292     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 293     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 294     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 295     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 296     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 297     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 298     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 299     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 300     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 301     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 302     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 303     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 304     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 305     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 306     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 307     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 308     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 309     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 310     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 311     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 312     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 313     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 314     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 315     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 316     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 317     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 318     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 319     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 320     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 321     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 322     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 323     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 324     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 325     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 326     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 327     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 328     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 329     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 330     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 331     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 332     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 333     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 334     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 335     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 336     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 337     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 338     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 339     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 340     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 341     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 342     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 343     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 344     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 345     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 346     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 347     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 348     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 349     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 350     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 351     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 352     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 353     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 354     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 355     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 356     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 357     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 358     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 359     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 360     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 361     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 362     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 363     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 364     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 365     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 366     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 367     200 ml Tetra Individual No Retornable     1       1    NA     1   NA
## 368     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 369     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 370     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 371     200 ml Tetra Individual No Retornable     6       3     4     3    6
## 372     200 ml Tetra Individual No Retornable     4       1     2     4    4
## 373     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 374     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 375     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 376     200 ml Tetra Individual No Retornable    NA       1     1     1   NA
## 377     200 ml Tetra Individual No Retornable     1       4    NA    11   NA
## 378     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 379     200 ml Tetra Individual No Retornable    NA       3     1    NA    1
## 380     200 ml Tetra Individual No Retornable    NA      NA     0     1   NA
## 381     200 ml Tetra Individual No Retornable    NA       0     0     0   NA
## 382     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 383     200 ml Tetra Individual No Retornable    NA       1     1    NA    3
## 384     200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 385     200 ml Tetra Individual No Retornable    NA      NA     1     1    1
## 386     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 387     200 ml Tetra Individual No Retornable     1      NA    NA    14    3
## 388     200 ml Tetra Individual No Retornable     7       1    NA     3    6
## 389     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 390     200 ml Tetra Individual No Retornable    NA       0    NA    NA    1
## 391     200 ml Tetra Individual No Retornable     1       0     1     1    1
## 392     200 ml Tetra Individual No Retornable     2       1     1     1    3
## 393     200 ml Tetra Individual No Retornable     0       0     0     0    1
## 394     200 ml Tetra Individual No Retornable     4       4     4     3    4
## 395     200 ml Tetra Individual No Retornable     2       3     1     2   NA
## 396     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 397     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 398     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 399     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 400     200 ml Tetra Individual No Retornable     1       1    NA    NA   NA
## 401     200 ml Tetra Individual No Retornable     1       2     2     3    1
## 402     200 ml Tetra Individual No Retornable    NA      NA     1     1   NA
## 403     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 404     200 ml Tetra Individual No Retornable     0       0     0    NA    1
## 405     200 ml Tetra Individual No Retornable     0       1     0    NA    1
## 406     200 ml Tetra Individual No Retornable     3       1     2     2    1
## 407     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 408     200 ml Tetra Individual No Retornable     1       0     4     4    0
## 409     200 ml Tetra Individual No Retornable    NA       1     1     1    1
## 410     200 ml Tetra Individual No Retornable     1       1    NA     1   NA
## 411     200 ml Tetra Individual No Retornable     1       1     1     0   NA
## 412     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 413     200 ml Tetra Individual No Retornable     3       2     3     1    4
## 414     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 415     200 ml Tetra Individual No Retornable     2       1     1     1   NA
## 416     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 417     200 ml Tetra Individual No Retornable    NA       0     1    NA   NA
## 418     200 ml Tetra Individual No Retornable     0      NA    NA     1    2
## 419     200 ml Tetra Individual No Retornable     1       0     1     1    0
## 420     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 421     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 422     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 423     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 424     200 ml Tetra Individual No Retornable    NA      NA     0    NA    0
## 425     200 ml Tetra Individual No Retornable     1       0     1     0    1
## 426     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 427     200 ml Tetra Individual No Retornable    NA       1     1    NA    1
## 428     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 429     200 ml Tetra Individual No Retornable    NA       0     0     1   NA
## 430     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 431     200 ml Tetra Individual No Retornable     1       0     0    NA   NA
## 432     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    4
## 433     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 434     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 435     200 ml Tetra Individual No Retornable     1       3     2     2    3
## 436     200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 437     200 ml Tetra Individual No Retornable    NA      NA     0    NA    1
## 438     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 439     200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 440     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 441     200 ml Tetra Individual No Retornable     0       0     0     0    2
## 442     200 ml Tetra Individual No Retornable     0       0     0     0    1
## 443     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 444     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 445     200 ml Tetra Individual No Retornable    NA      NA     1     1    0
## 446     200 ml Tetra Individual No Retornable     0       1     0     1    1
## 447     200 ml Tetra Individual No Retornable     1      NA     1     1    0
## 448     200 ml Tetra Individual No Retornable     1      NA    NA     1   NA
## 449     200 ml Tetra Individual No Retornable    NA       0    NA     1   NA
## 450     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 451     200 ml Tetra Individual No Retornable    NA       0     1     1   NA
## 452     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 453     200 ml Tetra Individual No Retornable     1      NA    NA     0    0
## 454     200 ml Tetra Individual No Retornable    NA       1     1     1   NA
## 455     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 456     200 ml Tetra Individual No Retornable     0       3     1     3   NA
## 457     200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 458     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 459     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 460     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 461     200 ml Tetra Individual No Retornable     3       4     2     1    4
## 462     200 ml Tetra Individual No Retornable    NA       2    NA    NA    0
## 463     200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 464     200 ml Tetra Individual No Retornable    NA       1     1     0    0
## 465     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 466     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 467     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 468     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 469     200 ml Tetra Individual No Retornable     4       1     3     1    1
## 470     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 471     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 472     200 ml Tetra Individual No Retornable     0       2    NA     1    3
## 473     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 474     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 475     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 476     200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 477     200 ml Tetra Individual No Retornable    NA       0     1     1    0
## 478     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 479     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 480     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 481     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 482     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 483     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 484     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 485     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 486     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 487     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 488     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 489     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 490     200 ml Tetra Individual No Retornable    NA       0    NA    NA    1
## 491     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 492     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 493     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 494     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 495     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 496     200 ml Tetra Individual No Retornable    NA       0     1     0   NA
## 497     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 498     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 499     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 500     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 501     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 502     200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 503     200 ml Tetra Individual No Retornable     0      NA     0     1   NA
## 504     200 ml Tetra Individual No Retornable    NA      NA     0     1   NA
## 505     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 506     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 507     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 508     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 509     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 510     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 511     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 512     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 513     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 514     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 515     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 516     200 ml Tetra Individual No Retornable     0       1     1     2    1
## 517     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 518     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 519     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 520     200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 521     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 522     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 523     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 524     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 525     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 526     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 527     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 528     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 529     200 ml Tetra Individual No Retornable     1       0    NA    NA    0
## 530     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 531     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 532     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 533     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 534     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 535     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 536     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 537     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 538     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 539     200 ml Tetra Individual No Retornable    NA      NA     1    NA    0
## 540     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 541     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 542     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 543     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 544     200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 545     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 546     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 547     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 548     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 549     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 550     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 551     200 ml Tetra Individual No Retornable     1       0     1    NA    0
## 552     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 553     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 554     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 555     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 556     200 ml Tetra Individual No Retornable    NA      NA    NA     1    3
## 557     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 558     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 559     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 560     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 561     200 ml Tetra Individual No Retornable     1       1     0    NA   NA
## 562     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 563     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 564     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 565     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 566     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 567     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 568     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 569     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 570     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 571     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 572     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 573     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 574     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 575     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 576     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 577     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 578     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 579     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 580     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 581     200 ml Tetra Individual No Retornable     1       0     0     1   NA
## 582     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 583     200 ml Tetra Individual No Retornable    NA      NA    NA     4   NA
## 584     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 585     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 586     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 587     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 588     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 589     200 ml Tetra Individual No Retornable    NA       1     0     0   NA
## 590     200 ml Tetra Individual No Retornable     1       1     0     2    1
## 591     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 592     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 593     200 ml Tetra Individual No Retornable     1       0    NA    NA    0
## 594     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 595     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 596     200 ml Tetra Individual No Retornable     0       0     1    NA    1
## 597     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 598     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 599     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 600     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 601     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 602     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 603     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 604     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 605     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 606     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 607     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 608     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 609     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 610     200 ml Tetra Individual No Retornable     0       1     1     1    0
## 611     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 612     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 613     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 614     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 615     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 616     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 617     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 618     200 ml Tetra Individual No Retornable     0       1    NA     1    0
## 619     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 620     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 621     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 622     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 623     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 624     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 625     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 626     200 ml Tetra Individual No Retornable     0       1     1     1    0
## 627     200 ml Tetra Individual No Retornable     0       0     2     1    2
## 628     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 629     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 630     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 631     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 632     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 633     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 634     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 635     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 636     200 ml Tetra Individual No Retornable     0       0    NA    NA    0
## 637     200 ml Tetra Individual No Retornable     1       1    NA    NA   NA
## 638     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 639     200 ml Tetra Individual No Retornable     0       0     1    NA    1
## 640     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 641     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 642     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 643     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 644     200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 645     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 646     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 647     200 ml Tetra Individual No Retornable    NA      NA     1     1   NA
## 648     200 ml Tetra Individual No Retornable    NA      NA    NA     1   NA
## 649     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 650     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 651     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 652     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 653     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 654     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 655     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 656     200 ml Tetra Individual No Retornable     0       1    NA     2   NA
## 657     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 658     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 659     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 660     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 661     200 ml Tetra Individual No Retornable     1      NA    NA    NA    1
## 662     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 663     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 664     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 665     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 666     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 667     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 668     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 669     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 670     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 671     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 672     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 673     200 ml Tetra Individual No Retornable     0       1     0     0   NA
## 674     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 675     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 676     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 677     200 ml Tetra Individual No Retornable     1       1     1     2    1
## 678     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 679     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 680     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 681     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 682     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 683     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 684     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 685     200 ml Tetra Individual No Retornable    NA       0    NA     0    1
## 686     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 687     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 688     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 689     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 690     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 691     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 692     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 693     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 694     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 695     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 696     200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 697     200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 698     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 699     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 700     200 ml Tetra Individual No Retornable    NA       5     1    NA   NA
## 701     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 702     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 703     200 ml Tetra Individual No Retornable     0      NA     1    NA   NA
## 704     200 ml Tetra Individual No Retornable    NA       0     0     0    1
## 705     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 706     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 707     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 708     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 709     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 710     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 711     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 712     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 713     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 714     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 715     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 716     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 717     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 718     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 719     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 720     200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 721     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 722     200 ml Tetra Individual No Retornable    NA      NA     1     0   NA
## 723     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 724     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 725     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 726     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 727     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 728     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 729     200 ml Tetra Individual No Retornable    NA       1     1     0    1
## 730     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 731     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 732     200 ml Tetra Individual No Retornable     1       0     1     1    1
## 733     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 734     200 ml Tetra Individual No Retornable     0       1    NA    NA    0
## 735     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 736     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 737     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 738     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 739     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 740     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 741     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 742     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 743     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 744     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 745     200 ml Tetra Individual No Retornable    NA      NA     1     0   NA
## 746     200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 747     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 748     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 749     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 750     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 751     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 752     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 753     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 754     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 755     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 756     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 757     200 ml Tetra Individual No Retornable     1       1     0     0    0
## 758     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 759     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 760     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 761     200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 762     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 763     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 764     200 ml Tetra Individual No Retornable     1      NA    NA     0    1
## 765     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 766     200 ml Tetra Individual No Retornable    NA       1     1     1   NA
## 767     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 768     200 ml Tetra Individual No Retornable    NA      NA    NA     1    0
## 769     200 ml Tetra Individual No Retornable     0      NA     1    NA    0
## 770     200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 771     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 772     200 ml Tetra Individual No Retornable     0      NA    NA     0   NA
## 773     200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 774     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 775     200 ml Tetra Individual No Retornable     1      NA     0     0   NA
## 776     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 777     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 778     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 779     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 780     200 ml Tetra Individual No Retornable    NA       1     0     0    0
## 781     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 782     200 ml Tetra Individual No Retornable     1      NA    NA     1   NA
## 783     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 784     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 785     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 786     200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 787     200 ml Tetra Individual No Retornable     0      NA    NA     0    0
## 788     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 789     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 790     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 791     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 792     200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 793     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 794     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 795     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 796     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 797     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 798     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 799     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 800     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 801     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 802     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 803     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 804     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 805     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 806     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 807     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 808     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 809     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 810     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 811     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 812     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 813     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 814     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 815     200 ml Tetra Individual No Retornable    NA      NA    NA     1   NA
## 816     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 817     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 818     200 ml Tetra Individual No Retornable    NA       0    NA    NA    1
## 819     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 820     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 821     200 ml Tetra Individual No Retornable    NA       1     0     1    1
## 822     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 823     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 824     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 825     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 826     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 827     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 828     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 829     200 ml Tetra Individual No Retornable     1       1     2     2    1
## 830     200 ml Tetra Individual No Retornable     0       2    NA    NA   NA
## 831     200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 832     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 833     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 834     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 835     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 836     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 837     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 838     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 839     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 840     200 ml Tetra Individual No Retornable     1      NA    NA     0   NA
## 841     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 842     200 ml Tetra Individual No Retornable     0       0     0     1    1
## 843     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 844     200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 845     200 ml Tetra Individual No Retornable     1       1     1     1    1
## 846     200 ml Tetra Individual No Retornable     0       0     1    NA    0
## 847     200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 848     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 849     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 850     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 851     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 852     200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 853     200 ml Tetra Individual No Retornable    NA       0     1     2    3
## 854     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 855     200 ml Tetra Individual No Retornable     1       1     1     3    1
## 856     200 ml Tetra Individual No Retornable     1       1     2     1    1
## 857     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 858     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 859     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 860     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 861     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 862     200 ml Tetra Individual No Retornable     1       2     1     4    1
## 863     200 ml Tetra Individual No Retornable     3       3     3     2    4
## 864     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 865     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 866     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 867     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 868     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 869     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 870     200 ml Tetra Individual No Retornable     0       1    NA    NA    0
## 871     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 872     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 873     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 874     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 875     200 ml Tetra Individual No Retornable     1      NA     0    NA   NA
## 876     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 877     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 878     200 ml Tetra Individual No Retornable    NA       0    NA     1   NA
## 879     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 880     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 881     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 882     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 883     200 ml Tetra Individual No Retornable     1       1    NA    NA   NA
## 884     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 885     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 886     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 887     200 ml Tetra Individual No Retornable     1       2     2     2    2
## 888     200 ml Tetra Individual No Retornable     4       6     6     4    6
## 889     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 890     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 891     200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 892     200 ml Tetra Individual No Retornable     0      NA    NA     1   NA
## 893     200 ml Tetra Individual No Retornable     0      NA    NA     0    1
## 894     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 895     200 ml Tetra Individual No Retornable     1      NA     1    NA   NA
## 896     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 897     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 898     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 899     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 900     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 901     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 902     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 903     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 904     200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 905     200 ml Tetra Individual No Retornable     1       0     0     0    1
## 906     200 ml Tetra Individual No Retornable    NA       0     1     0   NA
## 907     200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 908     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 909     200 ml Tetra Individual No Retornable     0       1     1     1    1
## 910     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 911     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 912     200 ml Tetra Individual No Retornable    NA       2    NA     0   NA
## 913     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 914     200 ml Tetra Individual No Retornable     2      NA    NA    NA   NA
## 915     200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 916     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 917     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 918     200 ml Tetra Individual No Retornable     1       0    NA     0    2
## 919     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 920     200 ml Tetra Individual No Retornable     0       2     1    NA    3
## 921     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 922     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 923     200 ml Tetra Individual No Retornable    NA       4    NA     4    0
## 924     200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 925     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 926     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 927     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 928     200 ml Tetra Individual No Retornable     1       1     2     2    2
## 929     200 ml Tetra Individual No Retornable     0       1    NA     1    0
## 930     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 931     200 ml Tetra Individual No Retornable     1       0     1     1    1
## 932     200 ml Tetra Individual No Retornable     1      NA     0     0   NA
## 933     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 934     200 ml Tetra Individual No Retornable    NA       0     0    NA    1
## 935     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 936     200 ml Tetra Individual No Retornable     1       0     1     1    0
## 937     200 ml Tetra Individual No Retornable     1      NA    NA     0   NA
## 938     200 ml Tetra Individual No Retornable     1       0     1    NA    1
## 939     200 ml Tetra Individual No Retornable     1       0    NA    NA   NA
## 940     200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 941     200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 942     200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 943     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 944     200 ml Tetra Individual No Retornable    NA       0     0    NA    0
## 945     200 ml Tetra Individual No Retornable     0       1    NA     1   NA
## 946     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 947     200 ml Tetra Individual No Retornable    NA       2    NA     1   NA
## 948     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 949     200 ml Tetra Individual No Retornable     1       2     1     1   NA
## 950     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 951     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 952     200 ml Tetra Individual No Retornable    NA       3     1     1   NA
## 953     200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 954     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 955     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 956     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 957     200 ml Tetra Individual No Retornable    NA       5    NA     8    8
## 958     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 959     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 960     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 961     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 962     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 963     200 ml Tetra Individual No Retornable     1       0     1    NA    1
## 964     200 ml Tetra Individual No Retornable     0       1     1     1    0
## 965     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 966     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 967     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 968     200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 969     200 ml Tetra Individual No Retornable     0       5     0     3    0
## 970     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 971     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 972     200 ml Tetra Individual No Retornable     0       0     1     2    1
## 973     200 ml Tetra Individual No Retornable     0       2     1     7   NA
## 974     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 975     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 976     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 977     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 978     200 ml Tetra Individual No Retornable     1       2     2     1    2
## 979     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 980     200 ml Tetra Individual No Retornable     1       1     0     1    1
## 981     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 982     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 983     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 984     200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 985     200 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 986     200 ml Tetra Individual No Retornable     1       1     1     0    1
## 987     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 988     200 ml Tetra Individual No Retornable     0      NA    NA     1   NA
## 989     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 990     200 ml Tetra Individual No Retornable     0       1    NA     0    1
## 991     200 ml Tetra Individual No Retornable     1       0     0     0   NA
## 992     200 ml Tetra Individual No Retornable     0       1    NA     1   NA
## 993     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 994     200 ml Tetra Individual No Retornable     3       3     2     3    1
## 995     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 996     200 ml Tetra Individual No Retornable     1      NA    NA     0   NA
## 997     200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 998     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 999     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1000    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1001    200 ml Tetra Individual No Retornable    NA       2     0    NA    1
## 1002    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1003    200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1004    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1005    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1006    200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 1007    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1008    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1009    200 ml Tetra Individual No Retornable    NA       1    NA     0   NA
## 1010    200 ml Tetra Individual No Retornable     2       1     0    NA   NA
## 1011    200 ml Tetra Individual No Retornable    NA       2     1     1    0
## 1012    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1013    200 ml Tetra Individual No Retornable     0       1    NA    NA    0
## 1014    200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 1015    200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 1016    200 ml Tetra Individual No Retornable     1       1     1     1    1
## 1017    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1018    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1019    200 ml Tetra Individual No Retornable    NA       1     0    NA   NA
## 1020    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1021    200 ml Tetra Individual No Retornable     1       1     1     1    1
## 1022    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1023    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1024    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1025    200 ml Tetra Individual No Retornable     0       1    NA     0   NA
## 1026    200 ml Tetra Individual No Retornable     1      NA    NA     1   NA
## 1027    200 ml Tetra Individual No Retornable     1       3     3    NA   NA
## 1028    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1029    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1030    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1031    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1032    200 ml Tetra Individual No Retornable     0       0     0     0    1
## 1033    200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1034    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1035    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1036    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1037    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 1038    200 ml Tetra Individual No Retornable    NA       0     0    NA    1
## 1039    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1040    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1041    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1042    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1043    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1044    200 ml Tetra Individual No Retornable     0      NA    NA     0   NA
## 1045    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1046    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1047    200 ml Tetra Individual No Retornable    NA       1     1    NA    1
## 1048    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1049    200 ml Tetra Individual No Retornable     1      NA     0    NA   NA
## 1050    200 ml Tetra Individual No Retornable    NA       0     0     0   NA
## 1051    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1052    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1053    200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1054    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1055    200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1056    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1057    200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1058    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 1059    200 ml Tetra Individual No Retornable     0       1     0     0    1
## 1060    200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 1061    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1062    200 ml Tetra Individual No Retornable     2       1    NA     1    1
## 1063    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1064    200 ml Tetra Individual No Retornable    NA       0    NA     0    0
## 1065    200 ml Tetra Individual No Retornable     1       2     0     0    2
## 1066    200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 1067    200 ml Tetra Individual No Retornable     1       1     1     0    1
## 1068    200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 1069    200 ml Tetra Individual No Retornable     1       1     0     1    1
## 1070    200 ml Tetra Individual No Retornable    NA      NA     0    NA    0
## 1071    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1072    200 ml Tetra Individual No Retornable     1      NA    NA    NA    0
## 1073    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 1074    200 ml Tetra Individual No Retornable     2      NA     1     0   NA
## 1075    200 ml Tetra Individual No Retornable    NA       1     0    NA   NA
## 1076    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1077    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1078    200 ml Tetra Individual No Retornable     0       1    NA     2   NA
## 1079    200 ml Tetra Individual No Retornable     1       0     1     2    1
## 1080    200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 1081    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1082    200 ml Tetra Individual No Retornable     2      NA     1    NA    2
## 1083    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1084    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1085    200 ml Tetra Individual No Retornable     0      NA     0    NA    0
## 1086    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 1087    200 ml Tetra Individual No Retornable     1       1    NA     0   NA
## 1088    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1089    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1090    200 ml Tetra Individual No Retornable    NA       1     0     1    1
## 1091    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1092    200 ml Tetra Individual No Retornable    NA       2    NA    NA   NA
## 1093    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1094    200 ml Tetra Individual No Retornable    NA      NA     0     0    1
## 1095    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 1096    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1097    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1098    200 ml Tetra Individual No Retornable     1      NA     0     0   NA
## 1099    200 ml Tetra Individual No Retornable     2       1     1     1    0
## 1100    200 ml Tetra Individual No Retornable    NA       2    NA    NA   NA
## 1101    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 1102    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1103    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1104    200 ml Tetra Individual No Retornable    NA      NA    NA     1   NA
## 1105    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1106    200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 1107    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1108    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1109    200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 1110    200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 1111    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1112    200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 1113    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1114    200 ml Tetra Individual No Retornable     0      NA    NA     1   NA
## 1115    200 ml Tetra Individual No Retornable     2      NA     1     1    3
## 1116    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1117    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1118    200 ml Tetra Individual No Retornable     1       3    NA    NA   NA
## 1119    200 ml Tetra Individual No Retornable     1      NA    NA    NA    1
## 1120    200 ml Tetra Individual No Retornable     1       1    NA    NA    0
## 1121    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1122    200 ml Tetra Individual No Retornable     0       1    NA    NA   NA
## 1123    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1124    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1125    200 ml Tetra Individual No Retornable    NA      NA     1     0    0
## 1126    200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 1127    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1128    200 ml Tetra Individual No Retornable    NA       0    NA     0    0
## 1129    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1130    200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1131    200 ml Tetra Individual No Retornable     1       1    NA     1    0
## 1132    200 ml Tetra Individual No Retornable     1       1     1     0   NA
## 1133    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1134    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1135    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 1136    200 ml Tetra Individual No Retornable     0       1     0    NA    1
## 1137    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1138    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1139    200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1140    200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 1141    200 ml Tetra Individual No Retornable     1       0    NA     1    0
## 1142    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1143    200 ml Tetra Individual No Retornable    NA      NA     2     2    2
## 1144    200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 1145    200 ml Tetra Individual No Retornable     3      NA    NA    NA   NA
## 1146    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1147    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1148    200 ml Tetra Individual No Retornable     0       2    NA    NA   NA
## 1149    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1150    200 ml Tetra Individual No Retornable     0      NA    NA     1   NA
## 1151    200 ml Tetra Individual No Retornable    NA       2     1     1   NA
## 1152    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1153    200 ml Tetra Individual No Retornable     0      NA     1    NA    1
## 1154    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1155    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1156    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1157    200 ml Tetra Individual No Retornable     1      NA     1     1   NA
## 1158    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1159    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 1160    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1161    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1162    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1163    200 ml Tetra Individual No Retornable     4      NA    NA    NA    4
## 1164    200 ml Tetra Individual No Retornable     2       2     1     0    1
## 1165    200 ml Tetra Individual No Retornable    NA      NA     3    NA   NA
## 1166    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1167    200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 1168    200 ml Tetra Individual No Retornable     2       1     1     1    1
## 1169    200 ml Tetra Individual No Retornable    NA       2    NA     3   NA
## 1170    200 ml Tetra Individual No Retornable    NA       2    NA    NA   NA
## 1171    200 ml Tetra Individual No Retornable    NA       1     1     1    1
## 1172    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1173    200 ml Tetra Individual No Retornable     4      NA    NA    NA    4
## 1174    200 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 1175    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1176    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1177    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1178    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1179    200 ml Tetra Individual No Retornable     3       1     3     3    0
## 1180    200 ml Tetra Individual No Retornable     2      NA     1    NA   NA
## 1181    200 ml Tetra Individual No Retornable     1       1     2     2    1
## 1182    200 ml Tetra Individual No Retornable     1       1     1     1    3
## 1183    200 ml Tetra Individual No Retornable     1       2     3     4   NA
## 1184    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1185    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1186    200 ml Tetra Individual No Retornable     3      NA    NA    NA   NA
## 1187    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1188    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1189    200 ml Tetra Individual No Retornable     1       3     1    NA    1
## 1190    200 ml Tetra Individual No Retornable    NA      NA     4    NA   NA
## 1191    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1192    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1193    200 ml Tetra Individual No Retornable    NA       1     0     0    1
## 1194    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1195    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1196    200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1197    200 ml Tetra Individual No Retornable     3       1     1     3    3
## 1198    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1199    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1200    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1201    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1202    200 ml Tetra Individual No Retornable     5       1     3     3   NA
## 1203    200 ml Tetra Individual No Retornable    NA       1     0     0    0
## 1204    200 ml Tetra Individual No Retornable    NA      NA     0    NA    1
## 1205 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1206 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1207 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1208 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1209 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1210 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1211 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1212 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1213 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1214 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1215 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1216 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1217 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1218 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1219 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1220 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1221 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1222 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1223 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1224 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1225 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1226 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1227 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1228 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1229 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1230 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1231 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1232 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1233 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1234 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1235 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1236 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1237 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1238 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1239 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1240 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1241 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1242 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1243 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1244 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1245 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1246 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1247 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1248 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1249 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1250 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1251 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1252 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1253 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1254 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1255 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1256 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1257 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1258 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1259 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1260 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1261 946 ml NR Tetra   Familiar No Retornable     3      NA    NA    NA    2
## 1262 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1263 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1264 946 ml NR Tetra   Familiar No Retornable     5       4     5     3    5
## 1265 946 ml NR Tetra   Familiar No Retornable     6       7     2     5    5
## 1266 946 ml NR Tetra   Familiar No Retornable    NA       4    NA     2    2
## 1267 946 ml NR Tetra   Familiar No Retornable     1       1     0     2    1
## 1268 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1269 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1270 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA   NA
## 1271 946 ml NR Tetra   Familiar No Retornable    NA       1     1    NA    2
## 1272 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1273 946 ml NR Tetra   Familiar No Retornable     6      NA    NA     2   NA
## 1274 946 ml NR Tetra   Familiar No Retornable     7      NA    NA    NA    4
## 1275 946 ml NR Tetra   Familiar No Retornable     1       2     2     1    2
## 1276 946 ml NR Tetra   Familiar No Retornable     2       1     1    NA    5
## 1277 946 ml NR Tetra   Familiar No Retornable     0       1     0    NA   NA
## 1278 946 ml NR Tetra   Familiar No Retornable    NA       3    NA    NA   NA
## 1279 946 ml NR Tetra   Familiar No Retornable     4       1     6     4    3
## 1280 946 ml NR Tetra   Familiar No Retornable     1       4     2     6   NA
## 1281 946 ml NR Tetra   Familiar No Retornable     0       1     1    39    6
## 1282 946 ml NR Tetra   Familiar No Retornable     5       4    NA     5   NA
## 1283 946 ml NR Tetra   Familiar No Retornable     3       2    NA    20   NA
## 1284 946 ml NR Tetra   Familiar No Retornable    12      22    NA    18   NA
## 1285 946 ml NR Tetra   Familiar No Retornable    NA       0     1     1   NA
## 1286 946 ml NR Tetra   Familiar No Retornable    11      NA    NA    NA   NA
## 1287 946 ml NR Tetra   Familiar No Retornable     5       2     1     2    8
## 1288 946 ml NR Tetra   Familiar No Retornable     3       1     1    NA    2
## 1289 946 ml NR Tetra   Familiar No Retornable     1       0     2     1    1
## 1290 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1291 946 ml NR Tetra   Familiar No Retornable     1       0     0    NA   NA
## 1292 946 ml NR Tetra   Familiar No Retornable    NA      11    NA    NA    2
## 1293 946 ml NR Tetra   Familiar No Retornable     2      NA     2     2    0
## 1294 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1295 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    15    2
## 1296 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 1297 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1298 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1299 946 ml NR Tetra   Familiar No Retornable    NA       3     1    NA    2
## 1300 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1301 946 ml NR Tetra   Familiar No Retornable    NA       3    NA    NA   NA
## 1302 946 ml NR Tetra   Familiar No Retornable     3      NA    NA    NA    2
## 1303 946 ml NR Tetra   Familiar No Retornable     2       1     2     2    7
## 1304 946 ml NR Tetra   Familiar No Retornable    NA       4     0    NA   NA
## 1305 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1306 946 ml NR Tetra   Familiar No Retornable     0       1     4     0    5
## 1307 946 ml NR Tetra   Familiar No Retornable     2       4     4     2   NA
## 1308 946 ml NR Tetra   Familiar No Retornable     2       1     1     2   NA
## 1309 946 ml NR Tetra   Familiar No Retornable    NA       2     2    NA   NA
## 1310 946 ml NR Tetra   Familiar No Retornable     5       5    NA    NA    4
## 1311 946 ml NR Tetra   Familiar No Retornable     1       2     1     0   NA
## 1312 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1313 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1314 946 ml NR Tetra   Familiar No Retornable    NA       2     0    NA   NA
## 1315 946 ml NR Tetra   Familiar No Retornable     2       1     1     1    2
## 1316 946 ml NR Tetra   Familiar No Retornable     2       3    NA    NA   NA
## 1317 946 ml NR Tetra   Familiar No Retornable     2      NA    NA     1   NA
## 1318 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1319 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1320 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1321 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1322 946 ml NR Tetra   Familiar No Retornable    NA       2     5     1    0
## 1323 946 ml NR Tetra   Familiar No Retornable     6       4     1    NA   NA
## 1324 946 ml NR Tetra   Familiar No Retornable     1       1     1     1   NA
## 1325 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1326 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    0
## 1327 946 ml NR Tetra   Familiar No Retornable     1       1     1     5    2
## 1328 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1329 946 ml NR Tetra   Familiar No Retornable     2      NA     1     1    3
## 1330 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    10   40
## 1331 946 ml NR Tetra   Familiar No Retornable    NA       0     1     2    0
## 1332 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1333 946 ml NR Tetra   Familiar No Retornable     4       1    NA     1   NA
## 1334 946 ml NR Tetra   Familiar No Retornable     3       4    NA     3    4
## 1335 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1336 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     1    3
## 1337 946 ml NR Tetra   Familiar No Retornable     0       3    NA    NA   NA
## 1338 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1339 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    5
## 1340 946 ml NR Tetra   Familiar No Retornable     1       2    NA     3    2
## 1341 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1342 946 ml NR Tetra   Familiar No Retornable     3      NA     1     1    1
## 1343 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1344 946 ml NR Tetra   Familiar No Retornable     1      NA     1     0    1
## 1345 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1346 946 ml NR Tetra   Familiar No Retornable     7       5     2     5    0
## 1347 946 ml NR Tetra   Familiar No Retornable     1       2     3     1    3
## 1348 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1349 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1350 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 1351 946 ml NR Tetra   Familiar No Retornable     2       1     4     2    1
## 1352 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA    0
## 1353 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1354 946 ml NR Tetra   Familiar No Retornable     0       1    NA     1   NA
## 1355 946 ml NR Tetra   Familiar No Retornable     0       1    50     1   NA
## 1356 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA    0
## 1357 946 ml NR Tetra   Familiar No Retornable    NA      10    NA    NA   NA
## 1358 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 1359 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1360 946 ml NR Tetra   Familiar No Retornable     7      NA    50    NA   NA
## 1361 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1362 946 ml NR Tetra   Familiar No Retornable    NA       2     1    NA   NA
## 1363 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1364 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1365 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1366 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1367 946 ml NR Tetra   Familiar No Retornable     3       4    NA     5   NA
## 1368 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA    1
## 1369 946 ml NR Tetra   Familiar No Retornable     1       3     1    NA    7
## 1370 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1371 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA   NA
## 1372 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA   NA
## 1373 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1374 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1375 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1376 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1377 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1378 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1379 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1380 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1381 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1382 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1383 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1384 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1385 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1386 946 ml NR Tetra   Familiar No Retornable     2      NA     1     2   NA
## 1387 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1388 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1389 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1390 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1391 946 ml NR Tetra   Familiar No Retornable     0       1     0     2   NA
## 1392 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1393 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1394 946 ml NR Tetra   Familiar No Retornable    NA       1     1     2   NA
## 1395 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1396 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1397 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1398 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1399 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 1400 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1401 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1402 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1403 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1404 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1405 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1406 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1407 946 ml NR Tetra   Familiar No Retornable     2       1     2     1    0
## 1408 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1409 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1410 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1411 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1412 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1413 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA   NA
## 1414 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1415 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1416 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1417 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA    0
## 1418 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1419 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     3    0
## 1420 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1421 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1422 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1423 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1424 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1425 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1426 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1427 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1428 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1429 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA    1
## 1430 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1431 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1432 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1433 946 ml NR Tetra   Familiar No Retornable     0      NA     7    NA   NA
## 1434 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1435 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1436 946 ml NR Tetra   Familiar No Retornable    NA       3    NA    NA   NA
## 1437 946 ml NR Tetra   Familiar No Retornable     1       2     1     1    1
## 1438 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 1439 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1440 946 ml NR Tetra   Familiar No Retornable    NA       0     3    NA   NA
## 1441 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1442 946 ml NR Tetra   Familiar No Retornable    NA       0     0     0    0
## 1443 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1444 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1445 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1446 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1447 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1448 946 ml NR Tetra   Familiar No Retornable    NA       1     2     0   NA
## 1449 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1450 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1451 946 ml NR Tetra   Familiar No Retornable     1       1     1     1    3
## 1452 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1453 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1454 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1455 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1456 946 ml NR Tetra   Familiar No Retornable    NA       2     0    NA   NA
## 1457 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1459 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     0    1
## 1460 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1461 946 ml NR Tetra   Familiar No Retornable     1       3     0     2    1
## 1462 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1463 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 1464 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1465 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1466 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     3   NA
## 1467 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1468 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1469 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1470 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1471 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     2    0
## 1472 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1473 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1474 946 ml NR Tetra   Familiar No Retornable     3       1     4     4    3
## 1475 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1476 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1477 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA   10
## 1478 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1479 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1480 946 ml NR Tetra   Familiar No Retornable    NA      NA     4    NA   NA
## 1481 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1482 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1483 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1484 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1485 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1486 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1487 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1488 946 ml NR Tetra   Familiar No Retornable     1      NA     1     1    1
## 1489 946 ml NR Tetra   Familiar No Retornable    NA       4    NA    NA   NA
## 1490 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     1   NA
## 1491 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1492 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1493 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1494 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1495 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0    1
## 1496 946 ml NR Tetra   Familiar No Retornable    NA       3    NA    NA    0
## 1497 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1498 946 ml NR Tetra   Familiar No Retornable     7      NA    NA    NA    0
## 1499 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1500 946 ml NR Tetra   Familiar No Retornable     0       0    NA     0   NA
## 1501 946 ml NR Tetra   Familiar No Retornable     0       0     1     0    0
## 1502 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     0    1
## 1503 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1504 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1505 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1506 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1507 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1508 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1509 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA    1
## 1510 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1511 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1512 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1513 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1514 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1515 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1516 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1517 946 ml NR Tetra   Familiar No Retornable     1      NA     1    NA    0
## 1518 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1519 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1520 946 ml NR Tetra   Familiar No Retornable     2       5     2     4   NA
## 1521 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1522 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1523 946 ml NR Tetra   Familiar No Retornable    NA       3    NA    NA   NA
## 1524 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA   NA
## 1525 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1526 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1527 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1528 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1529 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1530 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1531 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1532 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    0
## 1533 946 ml NR Tetra   Familiar No Retornable     0       4    NA    NA   NA
## 1534 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1535 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1536 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1537 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1538 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1539 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1540 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1541 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1542 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1543 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1544 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1545 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA   NA
## 1546 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1547 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1548 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1549 946 ml NR Tetra   Familiar No Retornable    NA       0     1    NA   NA
## 1550 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1551 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1552 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1553 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1554 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1555 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1556 946 ml NR Tetra   Familiar No Retornable     0       0     1     0   NA
## 1557 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1558 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1559 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1560 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1561 946 ml NR Tetra   Familiar No Retornable     3      NA     0     0   NA
## 1562 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1563 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1564 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1565 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 1566 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1567 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1568 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1569 946 ml NR Tetra   Familiar No Retornable    NA       2     1     2    2
## 1570 946 ml NR Tetra   Familiar No Retornable    NA      NA     4    NA    0
## 1571 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1572 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1573 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1574 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1575 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1576 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1577 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1578 946 ml NR Tetra   Familiar No Retornable    NA       1     4    NA   NA
## 1579 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1580 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1581 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1582 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1583 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1584 946 ml NR Tetra   Familiar No Retornable    NA       8    NA    NA   10
## 1585 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1586 946 ml NR Tetra   Familiar No Retornable    NA       0     2    NA   NA
## 1587 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    5
## 1588 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1589 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1590 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1591 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1592 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1593 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1594 946 ml NR Tetra   Familiar No Retornable    NA      NA     2     0   NA
## 1595 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1596 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1597 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA    0
## 1598 946 ml NR Tetra   Familiar No Retornable     1      NA     0     0   NA
## 1599 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1600 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1601 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1602 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1603 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1604 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1605 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1606 946 ml NR Tetra   Familiar No Retornable    NA       0     2    NA    2
## 1607 946 ml NR Tetra   Familiar No Retornable    NA       1     2     1    0
## 1608 946 ml NR Tetra   Familiar No Retornable     4       0     1     1   NA
## 1609 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1610 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1611 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1612 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1613 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1614 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1615 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1616 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1617 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 1618 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1619 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA    0
## 1620 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA    0
## 1621 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1622 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1623 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 1624 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1625 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1626 946 ml NR Tetra   Familiar No Retornable     1      NA     2    NA    1
## 1627 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 1628 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1629 946 ml NR Tetra   Familiar No Retornable     4       6     1     0    2
## 1630 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1631 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1632 946 ml NR Tetra   Familiar No Retornable    NA       2     0     1   NA
## 1633 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1634 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1635 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    0
## 1636 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 1637 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1638 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1639 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1640 946 ml NR Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 1641 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 1642 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1643 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1644 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA    0
## 1645 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1646 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1647 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1648 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1649 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    0
## 1650 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1651 946 ml NR Tetra   Familiar No Retornable     1       1    NA     2    0
## 1652 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1653 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1654 946 ml NR Tetra   Familiar No Retornable     2       0    NA     0   NA
## 1655 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1656 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1657 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1658 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1659 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1660 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1661 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1662 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1663 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1664 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1665 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1666 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1667 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1668 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1669 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1670 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1671 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1672 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1673 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1674 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1675 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1676 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1677 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1678 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1679 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1680 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1681 946 ml NR Tetra   Familiar No Retornable     1       3    NA    NA   NA
## 1682 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0   NA
## 1683 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1684 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1685 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1686 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1687 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1688 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1689 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1690 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1691 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1692 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 1693 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1694 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1695 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   12
## 1696 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1697 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1698 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1699 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1700 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA   NA
## 1701 946 ml NR Tetra   Familiar No Retornable     2       0     1     1    0
## 1702 946 ml NR Tetra   Familiar No Retornable    NA      NA     4    NA   NA
## 1703 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA    0
## 1704 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1705 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0    0
## 1706 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1707 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1708 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1709 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1710 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1711 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1712 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1713 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1714 946 ml NR Tetra   Familiar No Retornable     6       3    NA    NA   NA
## 1715 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1716 946 ml NR Tetra   Familiar No Retornable     1       0    NA     0   NA
## 1717 946 ml NR Tetra   Familiar No Retornable     1       0     2     1    0
## 1718 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1719 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1720 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1721 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1722 946 ml NR Tetra   Familiar No Retornable     1       3    NA    NA    1
## 1723 946 ml NR Tetra   Familiar No Retornable     3      NA    NA    NA   12
## 1724 946 ml NR Tetra   Familiar No Retornable     0      NA     1    NA   NA
## 1725 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1726 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1727 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1728 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1729 946 ml NR Tetra   Familiar No Retornable    NA       0     1    NA   NA
## 1730 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1731 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1732 946 ml NR Tetra   Familiar No Retornable     2       3    NA     2    3
## 1733 946 ml NR Tetra   Familiar No Retornable     4       0    NA     1    1
## 1734 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    4
## 1735 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1736 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1737 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1738 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1739 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1740 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1741 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1742 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    7
## 1743 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1744 946 ml NR Tetra   Familiar No Retornable     1       1     2     1   NA
## 1745 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   11
## 1746 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4    2
## 1747 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1748 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1749 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    2
## 1750 946 ml NR Tetra   Familiar No Retornable     1       0     1    NA   NA
## 1751 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1752 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 1753 946 ml NR Tetra   Familiar No Retornable     1       0    NA    NA   NA
## 1754 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1755 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1756 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1757 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1758 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1759 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1760 946 ml NR Tetra   Familiar No Retornable     1       0     1     1    2
## 1761 946 ml NR Tetra   Familiar No Retornable    NA      NA     2     0    2
## 1762 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1763 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1764 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1765 946 ml NR Tetra   Familiar No Retornable     0       2    NA    NA    2
## 1766 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1767 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1768 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1769 946 ml NR Tetra   Familiar No Retornable     1       2     1     1    1
## 1770 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA    2
## 1771 946 ml NR Tetra   Familiar No Retornable     1       2     1    NA   NA
## 1772 946 ml NR Tetra   Familiar No Retornable     1       1     2    NA    0
## 1773 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 1774 946 ml NR Tetra   Familiar No Retornable     1      16    50    NA    4
## 1775 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1776 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1777 946 ml NR Tetra   Familiar No Retornable    NA       2     1     1    1
## 1778 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1779 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1780 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1781 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1782 946 ml NR Tetra   Familiar No Retornable     2       2    NA    NA   NA
## 1783 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    7
## 1784 946 ml NR Tetra   Familiar No Retornable     0       0     1     8    1
## 1785 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1786 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1787 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 1788 946 ml NR Tetra   Familiar No Retornable     2       2     1     1    7
## 1789 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1790 946 ml NR Tetra   Familiar No Retornable    13       8    12    12    8
## 1791 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1792 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1793 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA    0
## 1794 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1795 946 ml NR Tetra   Familiar No Retornable     2      NA    NA     0   NA
## 1796 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 1797 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1798 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     0   NA
## 1799 946 ml NR Tetra   Familiar No Retornable     1       2    NA    NA   NA
## 1800 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 1801 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    0
## 1802 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1803 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     1    1
## 1804 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1805 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0   NA
## 1806 946 ml NR Tetra   Familiar No Retornable     1       0     1    NA   NA
## 1807 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1808 946 ml NR Tetra   Familiar No Retornable     1       1    NA     2    0
## 1809 946 ml NR Tetra   Familiar No Retornable     0       2     0    NA    2
## 1810 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1811 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1812 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     8   NA
## 1813 946 ml NR Tetra   Familiar No Retornable     1       5     1     4   NA
## 1814 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1815 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1816 946 ml NR Tetra   Familiar No Retornable     0       1     2     3    0
## 1817 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1818 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1819 946 ml NR Tetra   Familiar No Retornable     0       5    NA     6    6
## 1820 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1821 946 ml NR Tetra   Familiar No Retornable     1       1     2     1   NA
## 1822 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1823 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 1824 946 ml NR Tetra   Familiar No Retornable     0       1     1    NA    0
## 1825 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1826 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1827 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1828 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    20   NA
## 1829 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1830 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1831 946 ml NR Tetra   Familiar No Retornable     2       2     1     1    2
## 1832 946 ml NR Tetra   Familiar No Retornable     8      NA    NA    NA   NA
## 1833 946 ml NR Tetra   Familiar No Retornable     0       1     1     2    0
## 1834 946 ml NR Tetra   Familiar No Retornable     0       0     1     5    0
## 1835 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1836 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1837 946 ml NR Tetra   Familiar No Retornable    NA       2    NA     1   NA
## 1838 946 ml NR Tetra   Familiar No Retornable    NA       1     6     1   NA
## 1839 946 ml NR Tetra   Familiar No Retornable     1       0     1     0    1
## 1840 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    0
## 1841 946 ml NR Tetra   Familiar No Retornable     2       2     5     3    2
## 1842 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1843 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA    0
## 1844 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1845 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    0
## 1846 946 ml NR Tetra   Familiar No Retornable    NA       0     0     0    0
## 1847 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    2
## 1848 946 ml NR Tetra   Familiar No Retornable     2       2     3     0    2
## 1849 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1850 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1851 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1852 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    24   NA
## 1853 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    59    1
## 1854 946 ml NR Tetra   Familiar No Retornable     2      NA     0     1    1
## 1855 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1856 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1857 946 ml NR Tetra   Familiar No Retornable     1       2     2     1   NA
## 1858 946 ml NR Tetra   Familiar No Retornable     1       3    NA    NA    1
## 1859 946 ml NR Tetra   Familiar No Retornable     4       1     1    NA   NA
## 1860 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1861 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1862 946 ml NR Tetra   Familiar No Retornable     4       1     2    NA    1
## 1863 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1864 946 ml NR Tetra   Familiar No Retornable    NA      NA    12    NA   NA
## 1865 946 ml NR Tetra   Familiar No Retornable    NA       4    NA    NA    2
## 1866 946 ml NR Tetra   Familiar No Retornable     2       2    NA    NA   NA
## 1867 946 ml NR Tetra   Familiar No Retornable    NA      10    NA    NA   NA
## 1868 946 ml NR Tetra   Familiar No Retornable    NA      10    NA     5   NA
## 1869 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 1870 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1871 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     1    0
## 1872 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1873 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1874 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1875 946 ml NR Tetra   Familiar No Retornable    NA       2    NA     2   NA
## 1876 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1877 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1878 946 ml NR Tetra   Familiar No Retornable     0       0     2     0   NA
## 1879 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 1880 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA    0
## 1881 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1882 946 ml NR Tetra   Familiar No Retornable     2       4    NA    NA   NA
## 1883 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 1884 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1885 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 1886 946 ml NR Tetra   Familiar No Retornable     2       1     0     1    2
## 1887 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1888 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1889 946 ml NR Tetra   Familiar No Retornable     1       3     1    NA   NA
## 1890 946 ml NR Tetra   Familiar No Retornable    NA      NA     4    NA    0
## 1891 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1892 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1893 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     6   NA
## 1894 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1895 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1896 946 ml NR Tetra   Familiar No Retornable     1       2     2     1   NA
## 1897 946 ml NR Tetra   Familiar No Retornable     4       5     5     6   NA
## 1898 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 1899 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1900 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1901 946 ml NR Tetra   Familiar No Retornable    NA      35    NA    NA   NA
## 1902 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1903 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1904 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    16   NA
## 1905 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA   NA
## 1906 946 ml NR Tetra   Familiar No Retornable    NA      NA     6    NA   NA
## 1907 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    4
## 1908 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1909 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1910 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1911 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1912 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1913 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1914 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1915 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0    0
## 1916 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1917 946 ml NR Tetra   Familiar No Retornable    NA      NA     2     1   NA
## 1918 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0    1
## 1919 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1920 946 ml NR Tetra   Familiar No Retornable     1       2     2    NA    2
## 1921 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1922 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     0    0
## 1923 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     1    1
## 1924 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1925 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1926 946 ml NR Tetra   Familiar No Retornable     1       1     1     0    0
## 1927 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     0    1
## 1928 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     0   NA
## 1929 946 ml NR Tetra   Familiar No Retornable     0       1     1     0   NA
## 1930 946 ml NR Tetra   Familiar No Retornable     1      NA     0     3    1
## 1931 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA   NA
## 1932 946 ml NR Tetra   Familiar No Retornable     1       2    NA     1   NA
## 1933 946 ml NR Tetra   Familiar No Retornable     2       2     1     1    0
## 1934 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    2
## 1935 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1936 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1937 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1938 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    4
## 1939 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    5
## 1940 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1941 946 ml NR Tetra   Familiar No Retornable     2       1     1     2   NA
## 1942 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1943 946 ml NR Tetra   Familiar No Retornable     1       2    NA    NA   NA
## 1944 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    6
## 1945 946 ml NR Tetra   Familiar No Retornable     1       2    NA    NA    1
## 1946 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    2
## 1947 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1948 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1949 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1950 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1951 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 1952 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0    2
## 1953 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1954 946 ml NR Tetra   Familiar No Retornable    NA       1     2    NA   NA
## 1955 946 ml NR Tetra   Familiar No Retornable    NA       1     2    NA   NA
## 1956 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1957 946 ml NR Tetra   Familiar No Retornable     0       2     1     0    1
## 1958 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA   NA
## 1959 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 1960 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1961 946 ml NR Tetra   Familiar No Retornable     3       0    NA    NA    1
## 1962 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1963 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     3   NA
## 1964 946 ml NR Tetra   Familiar No Retornable    NA      40    NA    NA   16
## 1965 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1966 946 ml NR Tetra   Familiar No Retornable    NA      16    40    NA   NA
## 1967 946 ml NR Tetra   Familiar No Retornable     2      NA     9     2   15
## 1968 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1969 946 ml NR Tetra   Familiar No Retornable     3       1    NA    14   NA
## 1970 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 1971 946 ml NR Tetra   Familiar No Retornable     8       0    NA    NA    2
## 1972 946 ml NR Tetra   Familiar No Retornable    NA       1     1     0   NA
## 1973 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    2
## 1974 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1975 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 1976 946 ml NR Tetra   Familiar No Retornable     0       0     1     2   NA
## 1977 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    14   NA
## 1978 946 ml NR Tetra   Familiar No Retornable     1       0     1    NA   NA
## 1979 946 ml NR Tetra   Familiar No Retornable     5      NA    NA    NA   NA
## 1980 946 ml NR Tetra   Familiar No Retornable     6       2     0     1    4
## 1981 946 ml NR Tetra   Familiar No Retornable     1       2    NA     1    1
## 1982 946 ml NR Tetra   Familiar No Retornable     1       0     0     0    0
## 1983 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 1984 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1985 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     1   NA
## 1986 946 ml NR Tetra   Familiar No Retornable     1       2     0    NA   NA
## 1987 946 ml NR Tetra   Familiar No Retornable     0       1     0    NA    0
## 1988 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1989 946 ml NR Tetra   Familiar No Retornable     2       1     1     2    1
## 1990 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 1991 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA   NA
## 1992 946 ml NR Tetra   Familiar No Retornable     1       2     1     2    2
## 1993 946 ml NR Tetra   Familiar No Retornable     0       0    NA     1    3
## 1994 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1995 946 ml NR Tetra   Familiar No Retornable     2       0     2    NA    1
## 1996 946 ml NR Tetra   Familiar No Retornable     1       1     1     2   NA
## 1997 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1998 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   10
## 1999 946 ml NR Tetra   Familiar No Retornable    NA       1     1    NA    1
## 2000 946 ml NR Tetra   Familiar No Retornable    NA       1     2     2    4
## 2001 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2002 946 ml NR Tetra   Familiar No Retornable     3       1     2     3    3
## 2003 946 ml NR Tetra   Familiar No Retornable    NA       0     0     1   NA
## 2004 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2005 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2006 946 ml NR Tetra   Familiar No Retornable     1      NA     1     1    8
## 2007 946 ml NR Tetra   Familiar No Retornable     3       0     1     1    1
## 2008 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2009 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 2010 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA   NA
## 2011 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2012 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     1    0
## 2013 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2014 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2015 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     1   NA
## 2016 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2017 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2018 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    2
## 2019 946 ml NR Tetra   Familiar No Retornable    NA       4    NA    NA   NA
## 2020 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2021 946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 2022 946 ml NR Tetra   Familiar No Retornable     2       2     3     1    1
## 2023 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    6
## 2024 946 ml NR Tetra   Familiar No Retornable     1      NA     1     1   NA
## 2025 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     5   NA
## 2026 946 ml NR Tetra   Familiar No Retornable    NA       2    NA     1   NA
## 2027 946 ml NR Tetra   Familiar No Retornable    NA      NA     5    NA   NA
## 2028 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2029 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     1   NA
## 2030 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2031 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2032 946 ml NR Tetra   Familiar No Retornable     5       2     3     2    1
## 2033 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2034 946 ml NR Tetra   Familiar No Retornable     7      NA     2    NA    2
## 2035 946 ml NR Tetra   Familiar No Retornable     2      NA     1     3    0
## 2036 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2037 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2038 946 ml NR Tetra   Familiar No Retornable     1      NA     4     2   NA
## 2039 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2040 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2041 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 2042 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2043 946 ml NR Tetra   Familiar No Retornable     1      NA     0     0   NA
## 2044 946 ml NR Tetra   Familiar No Retornable     1       0     1     0    0
## 2045 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2046 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2047 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2048 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 2049 946 ml NR Tetra   Familiar No Retornable     5       3     1     2    1
## 2050 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2051 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2052 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2053 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2054 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2055 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    40    0
## 2056 946 ml NR Tetra   Familiar No Retornable     2      NA     3     1   NA
## 2057 946 ml NR Tetra   Familiar No Retornable     1       2    NA     0    0
## 2058 946 ml NR Tetra   Familiar No Retornable     1       0     1     1    0
## 2059    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2060    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2061    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2062    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2063    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2064    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2065    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2066    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2067    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2068    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2069    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2070    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2071    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2072    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2073    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2074    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2075    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2076    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2077    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2078    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2079    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2080    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2081    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2082    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2083    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2084    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2085    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2086    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2087    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2088    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2089    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2090    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2091    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2092    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2093    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2094    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2095    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2096    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2097    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2098    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2099    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2100    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2101    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2102    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2103    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2104    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2105    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2106    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2107    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2108    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2109    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2110    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2111    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2112    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2113    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2114    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2115    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2116    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2117    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2118    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2119    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2120    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2121    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2122    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2123    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2124    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2125    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2126    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2127    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2128    200 ml Tetra Individual No Retornable    NA      NA     1    NA    1
## 2129    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2130    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2131    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2132    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2133    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2134    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2135    200 ml Tetra Individual No Retornable    NA      NA     0     0   NA
## 2136    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2137    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2138    200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 2139    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2140    200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2141    200 ml Tetra Individual No Retornable     0      NA    NA     0    0
## 2142    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2143    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2144    200 ml Tetra Individual No Retornable     0      NA     0     0    1
## 2145    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2146    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2147    200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 2148    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2149    200 ml Tetra Individual No Retornable     0      NA    NA     0   NA
## 2150    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2151    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2152    200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2153    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2154    200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 2155    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2156    200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2157    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2158    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2159    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2160    200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 2161    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2162    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2163    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2164    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2165    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2166    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2167    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2168    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2169    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2170    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2171    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2172    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2173    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2174    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2175    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2176    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2177    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2178    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2179    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2180    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2181    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2182    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2183    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2184    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2185    200 ml Tetra Individual No Retornable    NA      NA    NA     1   NA
## 2186    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2187    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2188    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2189    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2190    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2191    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2192    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2193    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2194    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2195    200 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 2196    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2197    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2198    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2199    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2200    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2201    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2202    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2203    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2204    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2205    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2206    200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 2207    200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2208    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2209    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2210    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2211    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2212    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2213    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2214    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2215    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2216    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2217    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2218    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2219    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2220    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2221    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2222    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2223    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2224    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2225    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2226    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2227    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2228    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2229    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2230    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2231    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2232    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2233    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2234    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2235    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2236    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2237    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2238    200 ml Tetra Individual No Retornable     1       1    NA     1   NA
## 2239    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2240    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2241    200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2242    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2243    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2244    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2245    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2246    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2247    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2248    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2249    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2250    200 ml Tetra Individual No Retornable     0      NA    NA     0   NA
## 2251    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2252    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2253    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2254    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2255    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2256    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2257    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2258    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2259    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2260    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2261    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2262    200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2263    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2264    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2265    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2266    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2267    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2268    200 ml Tetra Individual No Retornable     0       0    NA    NA    0
## 2269    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2270    200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2271    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2272    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2273    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2274    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2275    200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2276    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2277    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2278    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2279    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2280    200 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2281    200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2282    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2283    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2284    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2285    200 ml Tetra Individual No Retornable     1       0    NA    NA    1
## 2286    200 ml Tetra Individual No Retornable     1       1    NA    NA    0
## 2287    200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 2288    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2289    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2290    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2291    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2292    200 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 2293    200 ml Tetra Individual No Retornable    NA      NA    NA     0   NA
## 2294    200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2295    200 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 2296    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2297    200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2298    200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2299 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2300 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2301 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2302 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2303 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2304 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2305 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2306 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2307 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2308 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2309 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2310 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2311 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2312 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2313 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2314 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2315 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2316 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2317 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2318 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2319 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2320 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2321 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2322 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2323 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2324 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2325 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2326 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2327 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2328 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2329 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2330 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2331 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2332 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2333 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2334 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2335 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2336 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2337 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2338 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2339 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2340 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2341 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2342 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2343 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2344 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2345 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2346 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2347 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2348 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2349 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2350 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2351 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2352 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2353 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2354 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2355 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2356 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2357 946 ml NR Tetra   Familiar No Retornable     1       2    NA    NA   NA
## 2358 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2359 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2360 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 2361 946 ml NR Tetra   Familiar No Retornable    11      10     6     4    6
## 2362 946 ml NR Tetra   Familiar No Retornable    15      36    NA    14    8
## 2363 946 ml NR Tetra   Familiar No Retornable     2       2     2    NA    2
## 2364 946 ml NR Tetra   Familiar No Retornable    NA       1     0     0    0
## 2365 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2366 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2367 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2368 946 ml NR Tetra   Familiar No Retornable     4       3    NA    NA   NA
## 2369 946 ml NR Tetra   Familiar No Retornable     3      NA    NA    NA    1
## 2370 946 ml NR Tetra   Familiar No Retornable    26      66   102    NA    2
## 2371 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2372 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2373 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 2374 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2375 946 ml NR Tetra   Familiar No Retornable     7      12    NA     2    3
## 2376 946 ml NR Tetra   Familiar No Retornable    NA       2     2     2   NA
## 2377 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2378 946 ml NR Tetra   Familiar No Retornable     5       2     2     3   NA
## 2379 946 ml NR Tetra   Familiar No Retornable     1      NA     2    20   NA
## 2380 946 ml NR Tetra   Familiar No Retornable     3       4    NA     2    1
## 2381 946 ml NR Tetra   Familiar No Retornable     2       0    NA     0   NA
## 2382 946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 2383 946 ml NR Tetra   Familiar No Retornable     3       3     2     1    2
## 2384 946 ml NR Tetra   Familiar No Retornable     0      NA     0    NA    0
## 2385 946 ml NR Tetra   Familiar No Retornable     1       0     1     2    1
## 2386 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2387 946 ml NR Tetra   Familiar No Retornable    NA      23    NA    NA    2
## 2388 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2389 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2390 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    11   NA
## 2391 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2392 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2393 946 ml NR Tetra   Familiar No Retornable    NA       1     3     2    0
## 2394 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2395 946 ml NR Tetra   Familiar No Retornable     1       1     1    NA    1
## 2396 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2397 946 ml NR Tetra   Familiar No Retornable     5       3     5     3   NA
## 2398 946 ml NR Tetra   Familiar No Retornable     4       3    NA    NA    3
## 2399 946 ml NR Tetra   Familiar No Retornable    NA       2     1    NA   NA
## 2400 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2401 946 ml NR Tetra   Familiar No Retornable     1       2     3     2    1
## 2402 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2403 946 ml NR Tetra   Familiar No Retornable     1       2     2     2    0
## 2404 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2405 946 ml NR Tetra   Familiar No Retornable     4       2     3     1    2
## 2406 946 ml NR Tetra   Familiar No Retornable    NA      20    NA    NA   NA
## 2407 946 ml NR Tetra   Familiar No Retornable     2       1     1     7   NA
## 2408 946 ml NR Tetra   Familiar No Retornable     1       2     2    NA   NA
## 2409 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2410 946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA    0
## 2411 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2412 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2413 946 ml NR Tetra   Familiar No Retornable     1       1     0     1   NA
## 2414 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA    0
## 2415 946 ml NR Tetra   Familiar No Retornable    NA       1     2     0   NA
## 2416 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2417 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2418 946 ml NR Tetra   Familiar No Retornable     1       2    NA     3    1
## 2419 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2420 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0    0
## 2421 946 ml NR Tetra   Familiar No Retornable     5       4     8     6    9
## 2422 946 ml NR Tetra   Familiar No Retornable     0       1    NA     0   NA
## 2423 946 ml NR Tetra   Familiar No Retornable     2      NA    NA     1    2
## 2424 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    10   NA
## 2425 946 ml NR Tetra   Familiar No Retornable    NA       0     1     2    1
## 2426 946 ml NR Tetra   Familiar No Retornable     4      NA    NA    NA   NA
## 2427 946 ml NR Tetra   Familiar No Retornable     5      16    NA     4    6
## 2428 946 ml NR Tetra   Familiar No Retornable     0       1     0    NA   NA
## 2429 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2430 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA    2
## 2431 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2432 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2433 946 ml NR Tetra   Familiar No Retornable     0       1    NA     1   NA
## 2434 946 ml NR Tetra   Familiar No Retornable     1      NA     1     1    2
## 2435 946 ml NR Tetra   Familiar No Retornable     2       1     0     2    2
## 2436 946 ml NR Tetra   Familiar No Retornable    10      14    NA    NA   NA
## 2437 946 ml NR Tetra   Familiar No Retornable     0       1     1    NA   NA
## 2438 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2439 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2440 946 ml NR Tetra   Familiar No Retornable     4       3     0    NA   NA
## 2441 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2442 946 ml NR Tetra   Familiar No Retornable     2       1     0    NA   NA
## 2443 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2444 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2445 946 ml NR Tetra   Familiar No Retornable    NA      NA    50     1   NA
## 2446 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2447 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2448 946 ml NR Tetra   Familiar No Retornable     0      NA     1    NA   NA
## 2449 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2450 946 ml NR Tetra   Familiar No Retornable     5      NA    52    NA   NA
## 2451 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    0
## 2452 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2453 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2454 946 ml NR Tetra   Familiar No Retornable    NA      NA     8    NA    2
## 2455 946 ml NR Tetra   Familiar No Retornable    NA      NA     6    NA   NA
## 2456 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2457 946 ml NR Tetra   Familiar No Retornable     6       4    NA    NA   NA
## 2458 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2459 946 ml NR Tetra   Familiar No Retornable     5       1     5     3    0
## 2460 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2461 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2462 946 ml NR Tetra   Familiar No Retornable     3      NA    NA    NA    2
## 2463 946 ml NR Tetra   Familiar No Retornable     4      NA    NA    NA   NA
## 2464 946 ml NR Tetra   Familiar No Retornable     8       8     8    20   NA
## 2465 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2466 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2467 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2468 946 ml NR Tetra   Familiar No Retornable     0       0     0     1   NA
## 2469 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2470 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2471 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2472 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2473 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2474 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2475 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2476 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2477 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2478 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2479 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2480 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2481 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2482 946 ml NR Tetra   Familiar No Retornable    NA       1     1     0    1
## 2483 946 ml NR Tetra   Familiar No Retornable    NA       0     1     0   NA
## 2484 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2485 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2486 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2487 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2488 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2489 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2490 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA    0
## 2491 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2492 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2493 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2494 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2495 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2496 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2497 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2498 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2499 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2500 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0    0
## 2501 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2502 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2503 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2504 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2505 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2506 946 ml NR Tetra   Familiar No Retornable    NA      10    NA    NA   NA
## 2507 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2508 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2509 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2510 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2511 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2512 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2513 946 ml NR Tetra   Familiar No Retornable    NA      NA     4     1    1
## 2514 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2515 946 ml NR Tetra   Familiar No Retornable     1       1     1     0   NA
## 2516 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2517 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2518 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2519 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2520 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 2521 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2522 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2523 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2524 946 ml NR Tetra   Familiar No Retornable     0      NA     0     1    1
## 2525 946 ml NR Tetra   Familiar No Retornable    NA      NA     2     0   NA
## 2526 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2527 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2528 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2529 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2530 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2531 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2532 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2533 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2534 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2535 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 2536 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2537 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2538 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2539 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2540 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2541 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2542 946 ml NR Tetra   Familiar No Retornable    NA       1     2    NA    0
## 2543 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2544 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2545 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2546 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA   NA
## 2547 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2548 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2549 946 ml NR Tetra   Familiar No Retornable     1      NA     1     0    1
## 2550 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2551 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2552 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2553 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2554 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2555 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2556 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2557 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2558 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2559 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2560 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2561 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2562 946 ml NR Tetra   Familiar No Retornable     2       1     1    NA   NA
## 2563 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2564 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2565 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2566 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2567 946 ml NR Tetra   Familiar No Retornable     1       1     0     0    1
## 2568 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2569 946 ml NR Tetra   Familiar No Retornable    NA       1     1     1    1
## 2570 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2571 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2572 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2573 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2574 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2575 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2576 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2577 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2578 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2579 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2580 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2581 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2582 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2583 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2584 946 ml NR Tetra   Familiar No Retornable     2      14     2     4   NA
## 2585 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2586 946 ml NR Tetra   Familiar No Retornable    NA       3     1    NA   NA
## 2587 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2588 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2589 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2590 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2591 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2592 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2593 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA   NA
## 2594 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2595 946 ml NR Tetra   Familiar No Retornable    NA      14    NA    NA   NA
## 2596 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 2597 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2598 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2599 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2600 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 2601 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2602 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2603 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2604 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2605 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2606 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2607 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2608 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2609 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2610 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2611 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2612 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2613 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2614 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2615 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2616 946 ml NR Tetra   Familiar No Retornable     1       0     0     0    0
## 2617 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2618 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2619 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2620 946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 2621 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2622 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2623 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2624 946 ml NR Tetra   Familiar No Retornable     6      NA    NA     2   NA
## 2625 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2626 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2627 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     0   NA
## 2628 946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 2629 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2630 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2631 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2632 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2633 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2634 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2635 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2636 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2637 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2638 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2639 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2640 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 2641 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2642 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2643 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2644 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2645 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2646 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2647 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2648 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2649 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2650 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2651 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2652 946 ml NR Tetra   Familiar No Retornable    NA       4    NA    NA    1
## 2653 946 ml NR Tetra   Familiar No Retornable    NA       4    NA    NA   NA
## 2654 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2655 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2656 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2657 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2658 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2659 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2660 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2661 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2662 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2663 946 ml NR Tetra   Familiar No Retornable     0       0     0    NA    0
## 2664 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2665 946 ml NR Tetra   Familiar No Retornable    NA       4    NA     2   NA
## 2666 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2667 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2668 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2669 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2670 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2671 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA   NA
## 2672 946 ml NR Tetra   Familiar No Retornable     4       0    NA     1   NA
## 2673 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2674 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2675 946 ml NR Tetra   Familiar No Retornable    NA       2     2    NA    0
## 2676 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2677 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2678 946 ml NR Tetra   Familiar No Retornable    NA      12    NA    NA   NA
## 2679 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2680 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2681 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2682 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2683 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2684 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2685 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2686 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2687 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2688 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2689 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2690 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2691 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2692 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2693 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2694 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2695 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2696 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2697 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2698 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2699 946 ml NR Tetra   Familiar No Retornable     1       8    NA    NA    0
## 2700 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2701 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2702 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2703 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2704 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA    1
## 2705 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2706 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2707 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2708 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2709 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2710 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2711 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2712 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2713 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA    0
## 2714 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2715 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2716 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2717 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2718 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2719 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2720 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2721 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2722 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2723 946 ml NR Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 2724 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2725 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2726 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2727 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2728 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 2729 946 ml NR Tetra   Familiar No Retornable     0      NA    NA     0   NA
## 2730 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2731 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2732 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2733 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2734 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2735 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2736 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2737 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2738 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2739 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2740 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2741 946 ml NR Tetra   Familiar No Retornable    NA      10    NA    NA   NA
## 2742 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2743 946 ml NR Tetra   Familiar No Retornable     1       1     0    NA   NA
## 2744 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2745 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2746 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2747 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2748 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2749 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2750 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2751 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2752 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2753 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2754 946 ml NR Tetra   Familiar No Retornable     1       1    NA     1   NA
## 2755 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2756 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2757 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2758 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 2759 946 ml NR Tetra   Familiar No Retornable     2       9    NA    NA    2
## 2760 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2761 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2762 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2763 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2764 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2765 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2766 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2767 946 ml NR Tetra   Familiar No Retornable     0       6     0     1   NA
## 2768 946 ml NR Tetra   Familiar No Retornable     8      NA    NA    NA   NA
## 2769 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2770 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2771 946 ml NR Tetra   Familiar No Retornable     0      NA     0     1   NA
## 2772 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2773 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2774 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    0
## 2775 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2776 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2777 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2778 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2779 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2780 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2781 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2782 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2783 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2784 946 ml NR Tetra   Familiar No Retornable     0       0     0    NA   NA
## 2785 946 ml NR Tetra   Familiar No Retornable     0       0    NA    NA   NA
## 2786 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2787 946 ml NR Tetra   Familiar No Retornable     1       2    NA    NA   NA
## 2788 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2789 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2790 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 2791 946 ml NR Tetra   Familiar No Retornable     2       3     1    NA   NA
## 2792 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2793 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA   NA
## 2794 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2795 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2796 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2797 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 2798 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2799 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2800 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2801 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2802 946 ml NR Tetra   Familiar No Retornable     4       2    NA     2    4
## 2803 946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 2804 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2805 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2806 946 ml NR Tetra   Familiar No Retornable     6       2    NA    50   NA
## 2807 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2808 946 ml NR Tetra   Familiar No Retornable     4       2    NA    NA   NA
## 2809 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2810 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2811 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2812 946 ml NR Tetra   Familiar No Retornable     1       3     1    NA   NA
## 2813 946 ml NR Tetra   Familiar No Retornable     4      NA     1    NA   NA
## 2814 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2815 946 ml NR Tetra   Familiar No Retornable     0       2    NA    NA   NA
## 2816 946 ml NR Tetra   Familiar No Retornable    NA      NA     3     1   NA
## 2817 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2818 946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 2819 946 ml NR Tetra   Familiar No Retornable     0       1    NA     0   NA
## 2820 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2821 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2822 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2823 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2824 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2825 946 ml NR Tetra   Familiar No Retornable     1       0    NA    NA   NA
## 2826 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0   NA
## 2827 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2828 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2829 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 2830 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2831 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2832 946 ml NR Tetra   Familiar No Retornable     4       2     1    NA    1
## 2833 946 ml NR Tetra   Familiar No Retornable     5       4     3     1   NA
## 2834 946 ml NR Tetra   Familiar No Retornable     4       1     3     2    1
## 2835 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2836 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    40   NA
## 2837 946 ml NR Tetra   Familiar No Retornable     2       1     2     4   NA
## 2838 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2839 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2840 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2841 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2842 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 2843 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2844 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2845 946 ml NR Tetra   Familiar No Retornable     0       1     0    NA   NA
## 2846 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2847 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA    0
## 2848 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2849 946 ml NR Tetra   Familiar No Retornable     1       1    50    NA   NA
## 2850 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2851 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0   NA
## 2852 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2853 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2854 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2855 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2856 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA    0
## 2857 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2858 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2859 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2860 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     0   NA
## 2861 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2862 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2863 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2864 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2865 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2866 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2867 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2868 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2869 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2870 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2871 946 ml NR Tetra   Familiar No Retornable     1       0     2     0   NA
## 2872 946 ml NR Tetra   Familiar No Retornable     7       2     1     1    0
## 2873 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2874 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2875 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2876 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2877 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2878 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2879 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2880 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 2881 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2882 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2883 946 ml NR Tetra   Familiar No Retornable     2       1     2    NA    1
## 2884 946 ml NR Tetra   Familiar No Retornable     0       0     1     2   NA
## 2885 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2886 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2887 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     3    2
## 2888 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2889 946 ml NR Tetra   Familiar No Retornable     1       2    40    NA   NA
## 2890 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2891 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2892 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2893 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2894 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2895 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2896 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2897 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA    0
## 2898 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 2899 946 ml NR Tetra   Familiar No Retornable     8      NA    NA    NA   NA
## 2900 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2901 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2902 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2903 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2904 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     1   NA
## 2905 946 ml NR Tetra   Familiar No Retornable     1       3     4     2   14
## 2906 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2907 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2908 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2909 946 ml NR Tetra   Familiar No Retornable     4      NA     2     4    0
## 2910 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2911 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA    0
## 2912 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2913 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA    0
## 2914 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2915 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2916 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2917 946 ml NR Tetra   Familiar No Retornable     1      NA     1     1   NA
## 2918 946 ml NR Tetra   Familiar No Retornable    NA       1     1     6   NA
## 2919 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2920 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2921 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0   NA
## 2922 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2923 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2924 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2925 946 ml NR Tetra   Familiar No Retornable     4       2     4     2   NA
## 2926 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     2   NA
## 2927 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2928 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2929 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2930 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2931 946 ml NR Tetra   Familiar No Retornable    NA      NA    28    NA   NA
## 2932 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2933 946 ml NR Tetra   Familiar No Retornable     3       2     2    NA   NA
## 2934 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 2935 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2936 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2937 946 ml NR Tetra   Familiar No Retornable    NA       2    NA     2   NA
## 2938 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2939 946 ml NR Tetra   Familiar No Retornable     2       1     1     1   NA
## 2940 946 ml NR Tetra   Familiar No Retornable    NA       1     1     0   NA
## 2941 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2942 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2943 946 ml NR Tetra   Familiar No Retornable    NA       2    NA     2   NA
## 2944 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0   NA
## 2945 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA    0
## 2946 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA   NA
## 2947 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2948 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 2949 946 ml NR Tetra   Familiar No Retornable    NA       0     0     2   NA
## 2950 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2951 946 ml NR Tetra   Familiar No Retornable     1      NA    NA     1   NA
## 2952 946 ml NR Tetra   Familiar No Retornable     0      NA     2     2   NA
## 2953 946 ml NR Tetra   Familiar No Retornable    NA       1     1    NA    2
## 2954 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2955 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 2956 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2957 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 2958 946 ml NR Tetra   Familiar No Retornable     5      NA     3    NA    1
## 2959 946 ml NR Tetra   Familiar No Retornable     1       1     1     1   NA
## 2960 946 ml NR Tetra   Familiar No Retornable     0      NA     1     0   NA
## 2961 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2962 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2963 946 ml NR Tetra   Familiar No Retornable     0      25    NA    NA   NA
## 2964 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2965 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2966 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4   NA
## 2967 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2968 946 ml NR Tetra   Familiar No Retornable    NA      12    NA    NA   NA
## 2969 946 ml NR Tetra   Familiar No Retornable    NA      NA     6    NA   NA
## 2970 946 ml NR Tetra   Familiar No Retornable     0      NA    NA     0   NA
## 2971 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2972 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2973 946 ml NR Tetra   Familiar No Retornable     2       2    NA    NA    0
## 2974 946 ml NR Tetra   Familiar No Retornable    NA       0     0    NA    0
## 2975 946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA   NA
## 2976 946 ml NR Tetra   Familiar No Retornable     1       6    NA    NA   NA
## 2977 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2978 946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0   NA
## 2979 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2980 946 ml NR Tetra   Familiar No Retornable     2       1     0    NA    2
## 2981 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 2982 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2983 946 ml NR Tetra   Familiar No Retornable     1       1     2     0    1
## 2984 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 2985 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA   NA
## 2986 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 2987 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2988 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2989 946 ml NR Tetra   Familiar No Retornable     1       0     0     0    0
## 2990 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2991 946 ml NR Tetra   Familiar No Retornable    NA       2     3     3   NA
## 2992 946 ml NR Tetra   Familiar No Retornable     0       0     1     1   NA
## 2993 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2994 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2995 946 ml NR Tetra   Familiar No Retornable     2       2     2    NA   NA
## 2996 946 ml NR Tetra   Familiar No Retornable     1      NA     1     0   NA
## 2997 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 2998 946 ml NR Tetra   Familiar No Retornable     1      NA     1    NA   NA
## 2999 946 ml NR Tetra   Familiar No Retornable     0      NA     1    NA   NA
## 3000 946 ml NR Tetra   Familiar No Retornable    NA       1     2     0    5
## 3001 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     3    3
## 3002 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 3003 946 ml NR Tetra   Familiar No Retornable     3       0     1    NA    4
## 3004 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3005 946 ml NR Tetra   Familiar No Retornable     1      NA     2     0   NA
## 3006 946 ml NR Tetra   Familiar No Retornable     0       0     1    NA   NA
## 3007 946 ml NR Tetra   Familiar No Retornable    NA      10    NA    NA    2
## 3008 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3009 946 ml NR Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 3010 946 ml NR Tetra   Familiar No Retornable     2      NA     1    NA   NA
## 3011 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3012 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3013 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3014 946 ml NR Tetra   Familiar No Retornable     4       3     0    NA   NA
## 3015 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     1    1
## 3016 946 ml NR Tetra   Familiar No Retornable    NA       1     0    NA   NA
## 3017 946 ml NR Tetra   Familiar No Retornable     0       2     1    NA   NA
## 3018 946 ml NR Tetra   Familiar No Retornable     1       0     3     1   NA
## 3019 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    1
## 3020 946 ml NR Tetra   Familiar No Retornable     1      NA     0    NA   NA
## 3021 946 ml NR Tetra   Familiar No Retornable     0       0     0    NA   NA
## 3022 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3023 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3024 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3025 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3026 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     3   NA
## 3027 946 ml NR Tetra   Familiar No Retornable    NA      40    NA    NA   NA
## 3028 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3029 946 ml NR Tetra   Familiar No Retornable    NA      20    10    NA   NA
## 3030 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3031 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3032 946 ml NR Tetra   Familiar No Retornable    NA       2     4     0    1
## 3033 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3034 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3035 946 ml NR Tetra   Familiar No Retornable    NA       0     1    NA   NA
## 3036 946 ml NR Tetra   Familiar No Retornable     3       0     0    NA   NA
## 3037 946 ml NR Tetra   Familiar No Retornable     1      NA     4    NA    1
## 3038 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 3039 946 ml NR Tetra   Familiar No Retornable     5      NA     5     1    5
## 3040 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3041 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    14   NA
## 3042 946 ml NR Tetra   Familiar No Retornable    NA       0     0     1   NA
## 3043 946 ml NR Tetra   Familiar No Retornable     4      NA    NA    NA   NA
## 3044 946 ml NR Tetra   Familiar No Retornable     4       2     0    NA   NA
## 3045 946 ml NR Tetra   Familiar No Retornable     1       3     0    NA    0
## 3046 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     0   NA
## 3047 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3048 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3049 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3050 946 ml NR Tetra   Familiar No Retornable    NA      NA     1     2   NA
## 3051 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3052 946 ml NR Tetra   Familiar No Retornable    NA      NA     5    NA   NA
## 3053 946 ml NR Tetra   Familiar No Retornable     3       2    NA    NA   NA
## 3054 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3055 946 ml NR Tetra   Familiar No Retornable    NA       1     1     1    1
## 3056 946 ml NR Tetra   Familiar No Retornable     2       1     1     1    2
## 3057 946 ml NR Tetra   Familiar No Retornable    NA       0     1     0   NA
## 3058 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3059 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3060 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3061 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3062 946 ml NR Tetra   Familiar No Retornable     0       1    NA    NA   NA
## 3063 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3064 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA    0
## 3065 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3066 946 ml NR Tetra   Familiar No Retornable     1       1    NA     0   NA
## 3067 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3068 946 ml NR Tetra   Familiar No Retornable    NA       0    NA     0   NA
## 3069 946 ml NR Tetra   Familiar No Retornable     0      NA     1     1   NA
## 3070 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3071 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA    5
## 3072 946 ml NR Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 3073 946 ml NR Tetra   Familiar No Retornable    NA       1     0     1    0
## 3074 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3075 946 ml NR Tetra   Familiar No Retornable     0      NA     0     0    0
## 3076 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3077 946 ml NR Tetra   Familiar No Retornable     0       1     0     0    1
## 3078 946 ml NR Tetra   Familiar No Retornable     1      NA     1     0   NA
## 3079 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3080 946 ml NR Tetra   Familiar No Retornable    NA       6    NA    NA   NA
## 3081 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3082 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3083 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3084 946 ml NR Tetra   Familiar No Retornable     0       1     1    NA   NA
## 3085 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3086 946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA    0
## 3087 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3088 946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 3089 946 ml NR Tetra   Familiar No Retornable     6       3    NA    NA    6
## 3090 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3091 946 ml NR Tetra   Familiar No Retornable     4       0     4    NA    8
## 3092 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093 946 ml NR Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 3094 946 ml NR Tetra   Familiar No Retornable     3       2     1     4   NA
## 3095 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3096 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3097 946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3098 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3099 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3100 946 ml NR Tetra   Familiar No Retornable     3       1     1     2   NA
## 3101 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 3102 946 ml NR Tetra   Familiar No Retornable     4       1    NA    NA    0
## 3103 946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 3104 946 ml NR Tetra   Familiar No Retornable     1       1     1     2   NA
## 3105 946 ml NR Tetra   Familiar No Retornable     1      NA     1    NA   NA
## 3106 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3107 946 ml NR Tetra   Familiar No Retornable     1       0     1     1   NA
## 3108 946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 3109 946 ml NR Tetra   Familiar No Retornable     6       2    NA     8   NA
## 3110 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3111 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3112 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3113 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3114 946 ml NR Tetra   Familiar No Retornable     5       1     6    NA   NA
## 3115 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA    4
## 3116 946 ml NR Tetra   Familiar No Retornable    NA       4     4     6   NA
## 3117 946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 3118 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3119 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3120 946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA    0
## 3121 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3122 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 3123 946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 3124 946 ml NR Tetra   Familiar No Retornable     2       2    NA    NA   NA
## 3125 946 ml NR Tetra   Familiar No Retornable     6       2     2     1    1
## 3126 946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3127 946 ml NR Tetra   Familiar No Retornable     1       2     4    NA   NA
## 3128 946 ml NR Tetra   Familiar No Retornable    NA       2    NA    40   NA
## 3129 946 ml NR Tetra   Familiar No Retornable     7       2     2     6   NA
## 3130 946 ml NR Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3131 946 ml NR Tetra   Familiar No Retornable     1      NA     1    NA    0
## 3132  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3133  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3134  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3135  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3136  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3137  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3138  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3139  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3140  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3141  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3142  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3143  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3144  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3145  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3146  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3147  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3148  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3149  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3150  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3151  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3152  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3153  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3154  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3155  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3156  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3157  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3158  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3159  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3160  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3161  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3162  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3163  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3164  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3165  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3166  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3167  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3168  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3169  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3170  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3171  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3172  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3173  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3174  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3175  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3176  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3177  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3178  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3179  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3180  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3181  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3182  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3183  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3184  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3185  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3186  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3187  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3188  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3189  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3190  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3191  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3192  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3193  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3194  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3195  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3196  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3197  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3198  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3199  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3200  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3201  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3202  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3203  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3204  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3205  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3206  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3207  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3208  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3209  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3210  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3211  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3212  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3213  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3214  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3215  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3216  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3217  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3218  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3219  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3220  250 ml. NR PET Individual No Retornable    NA       1    NA    NA    0
## 3221  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3222  250 ml. NR PET Individual No Retornable     0       1     1    NA   NA
## 3223  250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 3224  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3225  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3226  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3227  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3228  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3229  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3230  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3231  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3232  250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 3233  250 ml. NR PET Individual No Retornable     1      NA     0    NA   NA
## 3234  250 ml. NR PET Individual No Retornable    NA      NA    NA     3   NA
## 3235  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3236  250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3237  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3238  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3239  250 ml. NR PET Individual No Retornable     0       1    NA    NA    1
## 3240  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3241  250 ml. NR PET Individual No Retornable     1      NA     0     0    0
## 3242  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3243  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3244  250 ml. NR PET Individual No Retornable     1      NA     0    NA    0
## 3245  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    0
## 3246  250 ml. NR PET Individual No Retornable    NA       1     0    NA    1
## 3247  250 ml. NR PET Individual No Retornable     0       1    NA    NA    0
## 3248  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3249  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3250  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3251  250 ml. NR PET Individual No Retornable     0       1    NA    NA    0
## 3252  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3253  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3254  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3255  250 ml. NR PET Individual No Retornable    NA       0     1     0    1
## 3256  250 ml. NR PET Individual No Retornable     2       0     0    NA    0
## 3257  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3258  250 ml. NR PET Individual No Retornable    NA       0    NA     0    0
## 3259  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3260  250 ml. NR PET Individual No Retornable    NA      NA    NA     0    0
## 3261  250 ml. NR PET Individual No Retornable    NA       0     1     0    1
## 3262  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3263  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3264  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3265  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3266  250 ml. NR PET Individual No Retornable    NA      NA    NA     0    0
## 3267  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3268  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3269  250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 3270  250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 3271  250 ml. NR PET Individual No Retornable     1       1    NA    NA    0
## 3272  250 ml. NR PET Individual No Retornable     0       0     1    NA    0
## 3273  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3274  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3275  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3276  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3277  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3278  250 ml. NR PET Individual No Retornable     0       0    NA     1   NA
## 3279  250 ml. NR PET Individual No Retornable     0       1     0    NA   NA
## 3280  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3281  250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3282  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3283  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    0
## 3284  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3285  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3286  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3287  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3288  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3289  250 ml. NR PET Individual No Retornable    NA       0    NA    NA    1
## 3290  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3291  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3292  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3293  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3294  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3295  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3296  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3297  250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 3298  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3299  250 ml. NR PET Individual No Retornable     2      NA    NA    NA   NA
## 3300  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3301  250 ml. NR PET Individual No Retornable     0       1     1    NA    1
## 3302  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3303  250 ml. NR PET Individual No Retornable     1       0     0    NA    0
## 3304  250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3305  250 ml. NR PET Individual No Retornable     1      NA     2    NA   NA
## 3306  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3307  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3308  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3309  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3310  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3311  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3312  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3313  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3314  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3315  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3316  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3317  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3318  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3319  250 ml. NR PET Individual No Retornable     1       1     0    NA   NA
## 3320  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3321  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3322  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3323  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3324  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3325  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3326  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3327  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3328  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3329  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3330  250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 3331  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3332  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3333  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3334  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3335  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3336  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3337  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3338  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3339  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3340  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3341  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3342  250 ml. NR PET Individual No Retornable    NA      NA    NA     3   NA
## 3343  250 ml. NR PET Individual No Retornable    NA      NA    NA     4   NA
## 3344  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3345  250 ml. NR PET Individual No Retornable    NA       0    NA     0   NA
## 3346  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    0
## 3347  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3348  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3349  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3350  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3351  250 ml. NR PET Individual No Retornable    NA      NA     3    NA   NA
## 3352  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3353  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3354  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3355  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3356  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3357  250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3358  250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3359  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3360  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3361  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3362  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3363  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3364  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3365  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    0
## 3366  250 ml. NR PET Individual No Retornable     0       0     0    NA   NA
## 3367  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3368  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3369  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3370  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3371  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3372  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3373  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3374  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3375  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3376  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3377  250 ml. NR PET Individual No Retornable    NA       0    NA     0   NA
## 3378  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3379  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3380  250 ml. NR PET Individual No Retornable    NA      NA     2    NA   NA
## 3381  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3382  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3383  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3384  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3385  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3386  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3387  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3388  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3389  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3390  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3391  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3392  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3393  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3394  250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 3395  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3396  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3397  250 ml. NR PET Individual No Retornable    NA       0     0    NA    0
## 3398  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3399  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3400  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3401  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3402  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3403  250 ml. NR PET Individual No Retornable     1       1     1     0   NA
## 3404  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3405  250 ml. NR PET Individual No Retornable    NA       2    NA    NA   NA
## 3406  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3407  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3408  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3409  250 ml. NR PET Individual No Retornable     1       0    NA    NA   NA
## 3410  250 ml. NR PET Individual No Retornable    NA       0    NA     0   NA
## 3411  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3412  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3413  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3414  250 ml. NR PET Individual No Retornable     0      NA    NA     1   NA
## 3415  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3416  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3417  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3418  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3419  250 ml. NR PET Individual No Retornable     1       1    NA    NA    0
## 3420  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3421  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3422  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3423  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3424  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3425  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3426  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3427  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3428  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3429  250 ml. NR PET Individual No Retornable    NA      NA     0     0   NA
## 3430  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3431  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3432  250 ml. NR PET Individual No Retornable     0       1     2    NA    1
## 3433  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3434  250 ml. NR PET Individual No Retornable    NA       0    NA     0   NA
## 3435  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3436  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3437  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3438  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3439  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3440  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3441  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3442  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3443  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3444  250 ml. NR PET Individual No Retornable     0      NA    NA     0   NA
## 3445  250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3446  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3447  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3448  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3449  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3450  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3451  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3452  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3453  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3454  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3455  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3456  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3457  250 ml. NR PET Individual No Retornable     1       2    NA    NA    1
## 3458  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3459  250 ml. NR PET Individual No Retornable     2      NA    NA    NA   NA
## 3460  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3461  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3462  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3463  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3464  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3465  250 ml. NR PET Individual No Retornable     0       2    NA    NA   NA
## 3466  250 ml. NR PET Individual No Retornable    NA      NA     2    NA   NA
## 3467  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3468  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3469  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3470  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3471  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3472  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3473  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3474  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3475  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3476  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3477  250 ml. NR PET Individual No Retornable    NA       1     0    NA   NA
## 3478  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3479  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3480  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3481  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3482  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3483  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3484  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3485  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3486  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3487  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3488  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3489  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3490  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3491  250 ml. NR PET Individual No Retornable    NA      NA     1    NA    0
## 3492  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3493  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3494  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3495  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3496  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3497  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3498  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3499  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3500  250 ml. NR PET Individual No Retornable     0       0     0    NA   NA
## 3501  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3502  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3503  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3504  250 ml. NR PET Individual No Retornable     0      NA     1    NA    0
## 3505  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3506  250 ml. NR PET Individual No Retornable    NA       1    NA    NA    0
## 3507  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3508  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3509  250 ml. NR PET Individual No Retornable    NA       1    NA    NA    0
## 3510  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3511  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3512  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3513  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3514  250 ml. NR PET Individual No Retornable     0       0     0    NA    1
## 3515  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3516  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3517  250 ml. NR PET Individual No Retornable     1      NA    NA     0    0
## 3518  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3519  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3520  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3521  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3522  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3523  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3524  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3525  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3526  250 ml. NR PET Individual No Retornable    NA       0    NA    NA    1
## 3527  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3528  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3529  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3530  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3531  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3532  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3533  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3534  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3535  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3536  250 ml. NR PET Individual No Retornable     1       0     0     0   NA
## 3537  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3538  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3539  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3540  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3541  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3542  250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3543  250 ml. NR PET Individual No Retornable    NA       1    NA    NA    0
## 3544  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3545  250 ml. NR PET Individual No Retornable    NA       0     0    NA    0
## 3546  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3547  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3548  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3549  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3550  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3551  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    2
## 3552  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3553  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3554  250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3555  250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 3556  250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 3557  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3558  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3559  250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 3560  250 ml. NR PET Individual No Retornable     1       0     0    NA    0
## 3561  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3562  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3563  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3564  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3565  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3566  250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3567  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3568  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3569  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3570  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3571  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3572  250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3573  250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 3574  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3575  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3576  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3577  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3578  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3579  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3580  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3581  250 ml. NR PET Individual No Retornable     1      NA     0    NA    0
## 3582  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3583  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3584  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3585  250 ml. NR PET Individual No Retornable     0       1     0    NA   NA
## 3586  250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3587  250 ml. NR PET Individual No Retornable    NA       1    NA     0   NA
## 3588  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3589  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3590  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3591  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3592  250 ml. NR PET Individual No Retornable    NA      NA    NA     0    0
## 3593  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3594  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3595  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3596  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3597  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3598  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3599  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3600  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3601  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3602  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3603  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    1
## 3604  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3605  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3606  250 ml. NR PET Individual No Retornable    NA       1    NA    NA    0
## 3607  250 ml. NR PET Individual No Retornable    NA      NA     0    NA    1
## 3608  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3609  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3610  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3611  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3612  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3613  250 ml. NR PET Individual No Retornable     0      NA    NA     0   NA
## 3614  250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3615  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3616  250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3617  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3618  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3619  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3620  250 ml. NR PET Individual No Retornable     0      NA     1    NA   NA
## 3621  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3622  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3623  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3624  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3625  250 ml. NR PET Individual No Retornable     1       1    NA    NA    3
## 3626  250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3627  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3628  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3629  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3630  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3631  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3632  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3633  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3634  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3635  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3636  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3637  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3638  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3639  250 ml. NR PET Individual No Retornable    NA      NA    NA     1    0
## 3640  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3641  250 ml. NR PET Individual No Retornable    NA       0    NA    NA    0
## 3642  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3643  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3644  250 ml. NR PET Individual No Retornable    NA      NA     0     0    1
## 3645  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3646  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3647  250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3648  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3649  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3650  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3651  250 ml. NR PET Individual No Retornable     0       1     0    NA    0
## 3652  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3653  250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 3654  250 ml. NR PET Individual No Retornable    NA       0    NA    NA    0
## 3655  250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 3656  250 ml. NR PET Individual No Retornable     1       0     0    NA   NA
## 3657  250 ml. NR PET Individual No Retornable     0       0     0    NA    1
## 3658  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3659  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3660  250 ml. NR PET Individual No Retornable     0       1    NA     0    1
## 3661  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3662  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3663  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3664  250 ml. NR PET Individual No Retornable    NA      NA    NA     0    1
## 3665  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3666  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3667  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3668  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3669  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3670  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3671  250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3672  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3673  250 ml. NR PET Individual No Retornable    NA       0     0     0   NA
## 3674  250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3675  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3676  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3677  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3678  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3679  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3680  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3681  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3682  250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3683  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3684  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3685  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3686  250 ml. NR PET Individual No Retornable     1      NA     0     0   NA
## 3687  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3688  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3689  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3690  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3691  250 ml. NR PET Individual No Retornable     5      NA    NA    NA    2
## 3692  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3693  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3694  250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3695  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3696  250 ml. NR PET Individual No Retornable     0      NA    NA     0   NA
## 3697  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3698  250 ml. NR PET Individual No Retornable     0       0    NA    NA    0
## 3699  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3700  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3701  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3702  250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3703  250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 3704  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3705  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3706  250 ml. NR PET Individual No Retornable    NA       0    NA     0   NA
## 3707  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 3708  250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3709  250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 3710  250 ml. NR PET Individual No Retornable     1      NA     2    NA   NA
## 3711  250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3712  250 ml. NR PET Individual No Retornable     0      NA     1    NA   NA
## 3713       473 ml NR Individual No Retornable     2      NA    NA     1   NA
## 3714       473 ml NR Individual No Retornable     1       1     1     2    3
## 3715       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3716       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3717       473 ml NR Individual No Retornable     1       3     1     1    2
## 3718       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3719       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3720       473 ml NR Individual No Retornable     1      NA     1     1    2
## 3721       473 ml NR Individual No Retornable     2       1     2     0    2
## 3722       473 ml NR Individual No Retornable     1       1     1     0    2
## 3723       473 ml NR Individual No Retornable     1       1     0     0    2
## 3724       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3725       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3726       473 ml NR Individual No Retornable    NA      NA     1     1    1
## 3727       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3728       473 ml NR Individual No Retornable     1       1     1     1    1
## 3729       473 ml NR Individual No Retornable     2       3    NA     2    1
## 3730       473 ml NR Individual No Retornable     1       1    NA     1   NA
## 3731       473 ml NR Individual No Retornable     3       3     2     4    2
## 3732       473 ml NR Individual No Retornable     1       1     0     0   NA
## 3733       473 ml NR Individual No Retornable     2       2     2     3    1
## 3734       473 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3735       473 ml NR Individual No Retornable     1       0     1     1    1
## 3736       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3737       473 ml NR Individual No Retornable     1       0    NA     1    0
## 3738       473 ml NR Individual No Retornable     0       2     0     1    1
## 3739       473 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3740       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3741       473 ml NR Individual No Retornable     0      NA     0     1    1
## 3742       473 ml NR Individual No Retornable     2       1     2     2    2
## 3743       473 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3744       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3745       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3746       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3747       473 ml NR Individual No Retornable    NA       1     1     0    1
## 3748       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3749       473 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3750       473 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3751       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3752       473 ml NR Individual No Retornable     1       1     1     1   NA
## 3753       473 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3754       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3755       473 ml NR Individual No Retornable     1      NA    NA     0   NA
## 3756       473 ml NR Individual No Retornable     1       2     3     1    3
## 3757       473 ml NR Individual No Retornable     0      NA     0     1   NA
## 3758       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3759       473 ml NR Individual No Retornable    NA       1     0    NA   NA
## 3760       473 ml NR Individual No Retornable    NA      NA     0     1    1
## 3761       473 ml NR Individual No Retornable     1       1     1     0    0
## 3762       473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3763       473 ml NR Individual No Retornable     3       2     3     2    3
## 3764       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3765       473 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3766       473 ml NR Individual No Retornable    NA       2     1    NA   NA
## 3767       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3768       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3769       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3770       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3771       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3772       473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3773       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3774       473 ml NR Individual No Retornable     0       0     0     1   NA
## 3775       473 ml NR Individual No Retornable     2       0     1     1    1
## 3776       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3777       473 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3778       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3779       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3780       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3781       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3782       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3783       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3784       473 ml NR Individual No Retornable     0       0     0     1    0
## 3785       473 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3786       473 ml NR Individual No Retornable     0      NA    NA     1    0
## 3787       473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3788       473 ml NR Individual No Retornable     0       0     0     0    1
## 3789       473 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3790       473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3791       473 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3792       473 ml NR Individual No Retornable    NA      NA     2     2    1
## 3793       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3794       473 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3795       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3796       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3797       473 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3798       473 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3799       473 ml NR Individual No Retornable     1      NA     1    NA    0
## 3800       473 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3801       473 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3802       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3803       473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3804       473 ml NR Individual No Retornable     1      NA     2     0    1
## 3805       473 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3806       473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3807     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3808     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3809     Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 3810     Lata 235 ml Individual No Retornable    NA       0     1     1    1
## 3811     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3812     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3813     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3814     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3815     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3816     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3817     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3818     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3819     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3820     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3821     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3822     Lata 235 ml Individual No Retornable     1       0     1     1    2
## 3823     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3824     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3825     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3826     Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 3827     Lata 235 ml Individual No Retornable     0       0     1     1    1
## 3828     Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3829     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3830     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3831     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3832     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3833     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3834     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3835     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3836     Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3837     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3838     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3839     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3840     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3841     Lata 235 ml Individual No Retornable     0       0    NA    NA    1
## 3842     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3843     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3844     Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3845     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3846     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3847     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3848     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3849     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3850     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3851     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3852     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3853     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3854     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3855     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3856     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3857     Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3858     Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 3859     Lata 235 ml Individual No Retornable     0       0    NA    NA   NA
## 3860     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3861     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3862     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3863     Lata 235 ml Individual No Retornable     0       0     0     1    1
## 3864     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3865     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3866     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3867     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3868     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3869     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3870     Lata 235 ml Individual No Retornable    NA      NA     1     1    1
## 3871     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3872     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3873     Lata 235 ml Individual No Retornable     0       1     0     0    0
## 3874     Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3875     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3876     Lata 235 ml Individual No Retornable     0       0     0     0   NA
## 3877     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3878     Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3879     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3880     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3881     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3882     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3883     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3884     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3885     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3886     Lata 235 ml Individual No Retornable     0      NA     0     1    0
## 3887     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3888     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3889     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3890     Lata 235 ml Individual No Retornable    NA       0    NA    NA    1
## 3891     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3892     Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 3893     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3894     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3895     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3896     Lata 235 ml Individual No Retornable     1       2     1     1    2
## 3897     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3898     Lata 235 ml Individual No Retornable     0       0     0     1    2
## 3899     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3900     Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 3901     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3902     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3903     Lata 235 ml Individual No Retornable     1       1     0     2    0
## 3904     Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 3905     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3906     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3907     Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3908     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3909     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3910     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3911     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3912     Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 3913     Lata 235 ml Individual No Retornable     0       0    NA     0    0
## 3914     Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 3915     Lata 235 ml Individual No Retornable     0       0     0     0    1
## 3916     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3917     Lata 235 ml Individual No Retornable    NA      NA     0    NA    1
## 3918     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3919     Lata 235 ml Individual No Retornable    NA       0    NA    NA    1
## 3920     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3921     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3922     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3923     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3924     Lata 235 ml Individual No Retornable     0       0    NA    NA   NA
## 3925     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3926     Lata 235 ml Individual No Retornable    NA       0    NA     1    0
## 3927     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3928     Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3929     Lata 235 ml Individual No Retornable     0       1    NA     3    4
## 3930     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3931     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3932     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3933     Lata 235 ml Individual No Retornable     0       0     0    NA   NA
## 3934     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3935     Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3936     Lata 235 ml Individual No Retornable     1      NA     3     2    1
## 3937     Lata 235 ml Individual No Retornable     0       0     0     0   NA
## 3938     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3939     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3940     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3941     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3942     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3943     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3944     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3945     Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 3946     Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3947     Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3948     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3949     Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3950     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3951     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3952     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3953     Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3954     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3955     Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 3956     Lata 235 ml Individual No Retornable     0       0    NA    NA   NA
## 3957     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3958     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3959     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3960     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3961     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3962     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3963     Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3964     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3965     Lata 235 ml Individual No Retornable     0       0     1     0   NA
## 3966     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3967     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3968     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3969     Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3970     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3971     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3972     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3973     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3974     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3975     Lata 235 ml Individual No Retornable     0       0     0    NA    0
## 3976     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3977     Lata 235 ml Individual No Retornable    NA       0    NA     0    1
## 3978     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3979     Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3980     Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3981     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3982     Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3983     Lata 235 ml Individual No Retornable     0      NA    NA     0    0
## 3984     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3985     Lata 235 ml Individual No Retornable     1       0     0     2    2
## 3986     Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3987     Lata 235 ml Individual No Retornable     0       0     0     0   NA
## 3988     Lata 235 ml Individual No Retornable     0       0     0     0    0
## 3989     Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3990     Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3991     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3992     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3993     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3994     Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3995     Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3996     Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3997     Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3998     Lata 235 ml Individual No Retornable    NA       0    NA    NA    1
## 3999     Lata 235 ml Individual No Retornable     1       0    NA    NA    0
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA        NA
## 2       NA    NA     NA         NA      NA         1         1
## 3       NA    NA     NA         NA      NA         2        NA
## 4       NA    NA     NA         NA      NA         1        NA
## 5       NA    NA     NA         NA      NA         6         3
## 6       NA    NA     NA         NA      NA         6         3
## 7       NA    NA     NA         NA      NA         1        NA
## 8       NA    NA     NA         NA      NA         0        NA
## 9       NA    NA     NA         NA      NA         1        NA
## 10      NA    NA     NA         NA      NA        NA         1
## 11      NA    NA     NA         NA      NA         4        NA
## 12      NA    NA     NA         NA      NA         4        NA
## 13      NA    NA     NA         NA      NA         1        NA
## 14      NA    NA     NA         NA      NA         3         0
## 15      NA    NA     NA         NA      NA         1         0
## 16      NA    NA     NA         NA      NA         3         2
## 17      NA    NA     NA         NA      NA         0        NA
## 18      NA    NA     NA         NA      NA         4         5
## 19      NA    NA     NA         NA      NA         1         1
## 20      NA    NA     NA         NA      NA         1        NA
## 21      NA    NA     NA         NA      NA         2        NA
## 22      NA    NA     NA         NA      NA         0        NA
## 23      NA    NA     NA         NA      NA         1         3
## 24      NA    NA     NA         NA      NA         1         1
## 25      NA    NA     NA         NA      NA         0        NA
## 26      NA    NA     NA         NA      NA         0        NA
## 27      NA    NA     NA         NA      NA         1        NA
## 28      NA    NA     NA         NA      NA         2        NA
## 29      NA    NA     NA         NA      NA         0         1
## 30      NA    NA     NA         NA      NA         1         0
## 31      NA    NA     NA         NA      NA         1        NA
## 32      NA    NA     NA         NA      NA         4         3
## 33      NA    NA     NA         NA      NA         0        NA
## 34      NA    NA     NA         NA      NA         1         0
## 35      NA    NA     NA         NA      NA         0        NA
## 36      NA    NA     NA         NA      NA         0        NA
## 37      NA    NA     NA         NA      NA         1        NA
## 38      NA    NA     NA         NA      NA         1        NA
## 39      NA    NA     NA         NA      NA         1        NA
## 40      NA    NA     NA         NA      NA         0        NA
## 41      NA    NA     NA         NA      NA         1        NA
## 42      NA    NA     NA         NA      NA         0         0
## 43      NA    NA     NA         NA      NA         0        NA
## 44      NA    NA     NA         NA      NA         2         1
## 45      NA    NA     NA         NA      NA         1         1
## 46      NA    NA     NA         NA      NA         0        NA
## 47      NA    NA     NA         NA      NA         2        NA
## 48      NA    NA     NA         NA      NA         1         1
## 49      NA    NA     NA         NA      NA         0         3
## 50      NA    NA     NA         NA      NA         0        NA
## 51      NA    NA     NA         NA      NA         0        NA
## 52      NA    NA     NA         NA      NA         1         2
## 53      NA    NA     NA         NA      NA         0        NA
## 54      NA    NA     NA         NA      NA         1         0
## 55      NA    NA     NA         NA      NA         0        NA
## 56      NA    NA     NA         NA      NA         0        NA
## 57      NA    NA     NA         NA      NA         0         0
## 58      NA    NA     NA         NA      NA         1         1
## 59      NA    NA     NA         NA      NA         0        NA
## 60      NA    NA     NA         NA      NA         0        NA
## 61      NA    NA     NA         NA      NA         0        NA
## 62      NA    NA     NA         NA      NA         0        NA
## 63      NA    NA     NA         NA      NA         1        NA
## 64      NA    NA     NA         NA      NA         2         1
## 65      NA    NA     NA         NA      NA         0        NA
## 66      NA    NA     NA         NA      NA         2        NA
## 67      NA    NA     NA         NA      NA         0         1
## 68      NA    NA     NA         NA      NA         1        NA
## 69      NA    NA     NA         NA      NA         1         1
## 70      NA    NA     NA         NA      NA         0        NA
## 71      NA    NA     NA         NA      NA         0         1
## 72      NA    NA     NA         NA      NA         0        NA
## 73      NA    NA     NA         NA      NA         0        NA
## 74      NA    NA     NA         NA      NA         0        NA
## 75      NA    NA     NA         NA      NA         0        NA
## 76      NA    NA     NA         NA      NA         0        NA
## 77      NA    NA     NA         NA      NA         2        NA
## 78      NA    NA     NA         NA      NA         0        NA
## 79      NA    NA     NA         NA      NA         0        NA
## 80      NA    NA     NA         NA      NA         1        NA
## 81      NA    NA     NA         NA      NA         1         1
## 82      NA    NA     NA         NA      NA         0        NA
## 83      NA    NA     NA         NA      NA         0         1
## 84      NA    NA     NA         NA      NA         0        NA
## 85      NA    NA     NA         NA      NA         0        NA
## 86      NA    NA     NA         NA      NA         0         0
## 87      NA    NA     NA         NA      NA         1         1
## 88      NA    NA     NA         NA      NA         1         0
## 89      NA    NA     NA         NA      NA        NA         0
## 90      NA    NA     NA         NA      NA         0        NA
## 91      NA    NA     NA         NA      NA         0        NA
## 92      NA    NA     NA         NA      NA         1        NA
## 93      NA    NA     NA         NA      NA         0        NA
## 94      NA    NA     NA         NA      NA         0        NA
## 95      NA    NA     NA         NA      NA         1        NA
## 96      NA    NA     NA         NA      NA         3        NA
## 97      NA    NA     NA         NA      NA         0         1
## 98      NA    NA     NA         NA      NA         0        NA
## 99      NA    NA     NA         NA      NA         0        NA
## 100     NA    NA     NA         NA      NA         0         1
## 101     NA    NA     NA         NA      NA         0        NA
## 102     NA    NA     NA         NA      NA         0        NA
## 103     NA    NA     NA         NA      NA         6         1
## 104     NA    NA     NA         NA      NA         0        NA
## 105     NA    NA     NA         NA      NA         0        NA
## 106     NA    NA     NA         NA      NA         0         0
## 107     NA    NA     NA         NA      NA         0        NA
## 108     NA    NA     NA         NA      NA         0        NA
## 109     NA    NA     NA         NA      NA         0        NA
## 110     NA    NA     NA         NA      NA         0        NA
## 111     NA    NA     NA         NA      NA         6         3
## 112     NA    NA     NA         NA      NA         0        NA
## 113     NA    NA     NA         NA      NA         0        NA
## 114     NA    NA     NA         NA      NA         2        NA
## 115     NA    NA     NA         NA      NA         0        NA
## 116     NA    NA     NA         NA      NA         0        NA
## 117     NA    NA     NA         NA      NA         0        NA
## 118     NA    NA     NA         NA      NA         0        NA
## 119     NA    NA     NA         NA      NA         0        NA
## 120     NA    NA     NA         NA      NA         0        NA
## 121     NA    NA     NA         NA      NA         0        NA
## 122     NA    NA     NA         NA      NA         0         0
## 123     NA    NA     NA         NA      NA         0        NA
## 124     NA    NA     NA         NA      NA         0        NA
## 125     NA    NA     NA         NA      NA         0        NA
## 126     NA    NA     NA         NA      NA         0        NA
## 127     NA    NA     NA         NA      NA         0        NA
## 128     NA    NA     NA         NA      NA         0        NA
## 129     NA    NA     NA         NA      NA         0        NA
## 130     NA    NA     NA         NA      NA         0        NA
## 131     NA    NA     NA         NA      NA         0        NA
## 132     NA    NA     NA         NA      NA         1        NA
## 133     NA    NA     NA         NA      NA         0        NA
## 134     NA    NA     NA         NA      NA         0        NA
## 135     NA    NA     NA         NA      NA         0        NA
## 136     NA    NA     NA         NA      NA         0        NA
## 137     NA    NA     NA         NA      NA         1        NA
## 138     NA    NA     NA         NA      NA         0         0
## 139     NA    NA     NA         NA      NA         0        NA
## 140     NA    NA     NA         NA      NA         0        NA
## 141     NA    NA     NA         NA      NA         0        NA
## 142     NA    NA     NA         NA      NA         0        NA
## 143     NA    NA     NA         NA      NA         0        NA
## 144     NA    NA     NA         NA      NA         0        NA
## 145     NA    NA     NA         NA      NA         0        NA
## 146     NA    NA     NA         NA      NA         0        NA
## 147     NA    NA     NA         NA      NA         0        NA
## 148     NA    NA     NA         NA      NA         0        NA
## 149     NA    NA     NA         NA      NA         0        NA
## 150     NA    NA     NA         NA      NA         1         0
## 151     NA    NA     NA         NA      NA        NA         0
## 152     NA    NA     NA         NA      NA         0        NA
## 153     NA    NA     NA         NA      NA         0        NA
## 154     NA    NA     NA         NA      NA         0         0
## 155     NA    NA     NA         NA      NA         0        NA
## 156     NA    NA     NA         NA      NA         0        NA
## 157     NA    NA     NA         NA      NA         0        NA
## 158     NA    NA     NA         NA      NA         0         0
## 159     NA    NA     NA         NA      NA         0        NA
## 160     NA    NA     NA         NA      NA         0        NA
## 161     NA    NA     NA         NA      NA         0        NA
## 162     NA    NA     NA         NA      NA         0         0
## 163     NA    NA     NA         NA      NA         0        NA
## 164     NA    NA     NA         NA      NA         0        NA
## 165     NA    NA     NA         NA      NA         0        NA
## 166     NA    NA     NA         NA      NA         1        NA
## 167     NA    NA     NA         NA      NA         0        NA
## 168     NA    NA     NA         NA      NA         0        NA
## 169     NA    NA     NA         NA      NA         0        NA
## 170     NA    NA     NA         NA      NA         0        NA
## 171     NA    NA     NA         NA      NA         0        NA
## 172     NA    NA     NA         NA      NA        NA         0
## 173     NA    NA     NA         NA      NA         0        NA
## 174     NA    NA     NA         NA      NA         0        NA
## 175     NA    NA     NA         NA      NA         0        NA
## 176     NA    NA     NA         NA      NA         0        NA
## 177     NA    NA     NA         NA      NA         0        NA
## 178     NA    NA     NA         NA      NA         0        NA
## 179     NA    NA     NA         NA      NA         0        NA
## 180     NA    NA     NA         NA      NA         0        NA
## 181     NA    NA     NA         NA      NA         0        NA
## 182     NA    NA     NA         NA      NA         0        NA
## 183     NA    NA     NA         NA      NA         0         0
## 184     NA    NA     NA         NA      NA         0        NA
## 185     NA    NA     NA         NA      NA         0         0
## 186     NA    NA     NA         NA      NA         0         0
## 187     NA    NA     NA         NA      NA         0        NA
## 188     NA    NA     NA         NA      NA         0        NA
## 189     NA    NA     NA         NA      NA         0        NA
## 190     NA    NA     NA         NA      NA         0         0
## 191     NA    NA     NA         NA      NA         0        NA
## 192     NA    NA     NA         NA      NA         0        NA
## 193     NA    NA     NA         NA      NA         0        NA
## 194     NA    NA     NA         NA      NA         0        NA
## 195     NA    NA     NA         NA      NA         0        NA
## 196     NA    NA     NA         NA      NA         0        NA
## 197     NA    NA     NA         NA      NA         0        NA
## 198     NA    NA     NA         NA      NA         0        NA
## 199     NA    NA     NA         NA      NA         2        NA
## 200     NA    NA     NA         NA      NA         0        NA
## 201     NA    NA     NA         NA      NA         0        NA
## 202     NA    NA     NA         NA      NA         0        NA
## 203     NA    NA     NA         NA      NA         0        NA
## 204     NA    NA     NA         NA      NA         0        NA
## 205     NA    NA     NA         NA      NA         0        NA
## 206     NA    NA     NA         NA      NA         0        NA
## 207     NA    NA     NA         NA      NA         0        NA
## 208     NA    NA     NA         NA      NA         0        NA
## 209     NA    NA     NA         NA      NA         0        NA
## 210     NA    NA     NA         NA      NA         0        NA
## 211     NA    NA     NA         NA      NA         0        NA
## 212     NA    NA     NA         NA      NA         0        NA
## 213     NA    NA     NA         NA      NA         0        NA
## 214     NA    NA     NA         NA      NA         0        NA
## 215     NA    NA     NA         NA      NA         0        NA
## 216     NA    NA     NA         NA      NA         0        NA
## 217     NA    NA     NA         NA      NA         0        NA
## 218     NA    NA     NA         NA      NA         0         0
## 219     NA    NA     NA         NA      NA         0        NA
## 220     NA    NA     NA         NA      NA         0        NA
## 221     NA    NA     NA         NA      NA         0         0
## 222     NA    NA     NA         NA      NA         0        NA
## 223     NA    NA     NA         NA      NA         0        NA
## 224     NA    NA     NA         NA      NA         0        NA
## 225     NA    NA     NA         NA      NA         0        NA
## 226     NA    NA     NA         NA      NA         0        NA
## 227     NA    NA     NA         NA      NA         0        NA
## 228     NA    NA     NA         NA      NA         0         0
## 229     NA    NA     NA         NA      NA         0        NA
## 230     NA    NA     NA         NA      NA         0         0
## 231     NA    NA     NA         NA      NA         0        NA
## 232     NA    NA     NA         NA      NA         0        NA
## 233     NA    NA     NA         NA      NA         0        NA
## 234     NA    NA     NA         NA      NA         0        NA
## 235     NA    NA     NA         NA      NA         0        NA
## 236     NA    NA     NA         NA      NA         0        NA
## 237     NA    NA     NA         NA      NA         0        NA
## 238     NA    NA     NA         NA      NA         0         0
## 239     NA    NA     NA         NA      NA         0        NA
## 240     NA    NA     NA         NA      NA         0        NA
## 241     NA    NA     NA         NA      NA         0        NA
## 242     NA    NA     NA         NA      NA         0         0
## 243     NA    NA     NA         NA      NA         0        NA
## 244     NA    NA     NA         NA      NA         0        NA
## 245     NA    NA     NA         NA      NA         0         0
## 246     NA    NA     NA         NA      NA         0        NA
## 247     NA    NA     NA         NA      NA         0        NA
## 248     NA    NA     NA         NA      NA        NA         0
## 249     NA    NA     NA         NA      NA         0        NA
## 250     NA    NA     NA         NA      NA         0        NA
## 251     NA    NA     NA         NA      NA         2        NA
## 252     NA    NA     NA         NA      NA         0        NA
## 253     NA    NA     NA         NA      NA         0        NA
## 254     NA    NA     NA         NA      NA         0        NA
## 255     NA    NA     NA         NA      NA         0        NA
## 256     NA    NA     NA         NA      NA         0        NA
## 257     NA    NA     NA         NA      NA         0        NA
## 258     NA    NA     NA         NA      NA         0        NA
## 259     NA    NA     NA         NA      NA         0        NA
## 260     NA    NA     NA         NA      NA         0        NA
## 261     NA    NA     NA         NA      NA         0        NA
## 262     NA    NA     NA         NA      NA         1        NA
## 263     NA    NA     NA         NA      NA         0         1
## 264     NA    NA     NA         NA      NA         0        NA
## 265     NA    NA     NA         NA      NA         1         1
## 266     NA    NA     NA         NA      NA         0        NA
## 267     NA    NA     NA         NA      NA         0        NA
## 268     NA    NA     NA         NA      NA         0        NA
## 269     NA    NA     NA         NA      NA         0        NA
## 270     NA    NA     NA         NA      NA         0        NA
## 271     NA    NA     NA         NA      NA         0        NA
## 272     NA    NA     NA         NA      NA         0        NA
## 273     NA    NA     NA         NA      NA         0        NA
## 274     NA    NA     NA         NA      NA         0        NA
## 275     NA    NA     NA         NA      NA         0        NA
## 276     NA    NA     NA         NA      NA         0        NA
## 277     NA    NA     NA         NA      NA         0        NA
## 278     NA    NA     NA         NA      NA         0         0
## 279     NA    NA     NA         NA      NA         0        NA
## 280     NA    NA     NA         NA      NA         0        NA
## 281     NA    NA     NA         NA      NA         0        NA
## 282     NA    NA     NA         NA      NA         0        NA
## 283     NA    NA     NA         NA      NA         0        NA
## 284     NA    NA     NA         NA      NA         0        NA
## 285     NA    NA     NA         NA      NA         0        NA
## 286     NA    NA     NA         NA      NA         0        NA
## 287     NA    NA     NA         NA      NA         0        NA
## 288     NA    NA     NA         NA      NA         1        NA
## 289     NA    NA     NA         NA      NA         0        NA
## 290     NA    NA     NA         NA      NA         0        NA
## 291     NA    NA     NA         NA      NA         0        NA
## 292     NA    NA     NA         NA      NA         0        NA
## 293     NA    NA     NA         NA      NA         0         0
## 294     NA    NA     NA         NA      NA         0        NA
## 295     NA    NA     NA         NA      NA         0        NA
## 296     NA    NA     NA         NA      NA         0        NA
## 297     NA    NA     NA         NA      NA         0        NA
## 298     NA    NA     NA         NA      NA         0        NA
## 299     NA    NA     NA         NA      NA         0        NA
## 300     NA    NA     NA         NA      NA         0        NA
## 301     NA    NA     NA         NA      NA         0        NA
## 302     NA    NA     NA         NA      NA         0        NA
## 303     NA    NA     NA         NA      NA         0        NA
## 304     NA    NA     NA         NA      NA         0        NA
## 305     NA    NA     NA         NA      NA         0        NA
## 306     NA    NA     NA         NA      NA         0        NA
## 307     NA    NA     NA         NA      NA         0        NA
## 308     NA    NA     NA         NA      NA         0        NA
## 309     NA    NA     NA         NA      NA        NA         0
## 310     NA    NA     NA         NA      NA         1         1
## 311     NA    NA     NA         NA      NA         0        NA
## 312     NA    NA     NA         NA      NA         0        NA
## 313     NA    NA     NA         NA      NA         0         0
## 314     NA    NA     NA         NA      NA         0        NA
## 315     NA    NA     NA         NA      NA         0        NA
## 316     NA    NA     NA         NA      NA         0        NA
## 317     NA    NA     NA         NA      NA         0        NA
## 318     NA    NA     NA         NA      NA         0         0
## 319     NA    NA     NA         NA      NA         0        NA
## 320     NA    NA     NA         NA      NA         0        NA
## 321     NA    NA     NA         NA      NA         0        NA
## 322     NA    NA     NA         NA      NA         0         0
## 323     NA    NA     NA         NA      NA         0        NA
## 324     NA    NA     NA         NA      NA         0        NA
## 325     NA    NA     NA         NA      NA         0        NA
## 326     NA    NA     NA         NA      NA         0         0
## 327     NA    NA     NA         NA      NA         0        NA
## 328     NA    NA     NA         NA      NA         0        NA
## 329     NA    NA     NA         NA      NA         0        NA
## 330     NA    NA     NA         NA      NA         0        NA
## 331     NA    NA     NA         NA      NA         0        NA
## 332     NA    NA     NA         NA      NA         0         0
## 333     NA    NA     NA         NA      NA         0        NA
## 334     NA    NA     NA         NA      NA         0        NA
## 335     NA    NA     NA         NA      NA         0        NA
## 336     NA    NA     NA         NA      NA         0        NA
## 337     NA    NA     NA         NA      NA         0        NA
## 338     NA    NA     NA         NA      NA         0         0
## 339     NA    NA     NA         NA      NA         0        NA
## 340     NA    NA     NA         NA      NA         0        NA
## 341     NA    NA     NA         NA      NA         0        NA
## 342     NA    NA     NA         NA      NA         0        NA
## 343     NA    NA     NA         NA      NA         0        NA
## 344     NA    NA     NA         NA      NA         1        NA
## 345     NA    NA     NA         NA      NA         0        NA
## 346     NA    NA     NA         NA      NA         0         0
## 347     NA    NA     NA         NA      NA         0         0
## 348     NA    NA     NA         NA      NA         0         0
## 349     NA    NA     NA         NA      NA         0        NA
## 350     NA    NA     NA         NA      NA         0        NA
## 351     NA    NA     NA         NA      NA         0        NA
## 352     NA    NA     NA         NA      NA        NA         0
## 353     NA    NA     NA         NA      NA         0        NA
## 354     NA    NA     NA         NA      NA         0        NA
## 355     NA    NA     NA         NA      NA         0        NA
## 356     NA    NA     NA         NA      NA         0         0
## 357     NA    NA     NA         NA      NA         0        NA
## 358     NA    NA     NA         NA      NA         0        NA
## 359     NA    NA     NA         NA      NA         0        NA
## 360     NA    NA     NA         NA      NA         0        NA
## 361     NA    NA     NA         NA      NA         0        NA
## 362     NA    NA     NA         NA      NA        NA         0
## 363     NA    NA     NA         NA      NA         0         0
## 364     NA    NA     NA         NA      NA         0         0
## 365     NA    NA     NA         NA      NA        NA         0
## 366     NA     0      0         NA      NA        NA        NA
## 367      2    NA      0         NA      NA        NA        NA
## 368      1     1     NA         NA      NA        NA        NA
## 369     NA    NA     NA         NA      NA        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371      5     2      4         NA      NA        NA        NA
## 372      5     6      1         NA      NA        NA        NA
## 373     NA    NA      1         NA      NA        NA        NA
## 374     NA    NA      0         NA      NA        NA        NA
## 375     NA    NA     NA         NA      NA        NA        NA
## 376     NA    NA      0         NA      NA        NA        NA
## 377     NA     0      3         NA      NA        NA        NA
## 378     NA    NA     NA         NA      NA        NA        NA
## 379      4    NA      3         NA      NA        NA        NA
## 380      2     1      0         NA      NA        NA        NA
## 381      0     1     NA         NA      NA        NA        NA
## 382     NA     0      0         NA      NA        NA        NA
## 383      3     0      2         NA      NA        NA        NA
## 384     NA    NA     NA         NA      NA        NA        NA
## 385     NA    NA      1         NA      NA        NA        NA
## 386      1    NA     NA         NA      NA        NA        NA
## 387      3     3      7         NA      NA        NA        NA
## 388     NA     2      3         NA      NA        NA        NA
## 389     NA    NA     NA         NA      NA        NA        NA
## 390      1    NA     NA         NA      NA        NA        NA
## 391      2     1      2         NA      NA        NA        NA
## 392      1    NA      1         NA      NA        NA        NA
## 393      0    NA     NA         NA      NA        NA        NA
## 394      4     1      3         NA      NA        NA        NA
## 395      1     1      4         NA      NA        NA        NA
## 396     NA    NA     NA         NA      NA        NA        NA
## 397     NA    NA      2         NA      NA        NA        NA
## 398     NA     0     NA         NA      NA        NA        NA
## 399     NA    NA     NA         NA      NA        NA        NA
## 400     NA    NA     NA         NA      NA        NA        NA
## 401      1    NA     NA         NA      NA        NA        NA
## 402     NA     0     NA         NA      NA        NA        NA
## 403      0     0      2         NA      NA        NA        NA
## 404     NA    NA      0         NA      NA        NA        NA
## 405      2     1      1         NA      NA        NA        NA
## 406     NA     1      1         NA      NA        NA        NA
## 407     NA    21     28         NA      NA        NA        NA
## 408     NA     0     NA         NA      NA        NA        NA
## 409     NA    NA      0         NA      NA        NA        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411     NA    NA     NA         NA      NA        NA        NA
## 412     NA    NA      0         NA      NA        NA        NA
## 413      4    NA      1         NA      NA        NA        NA
## 414     NA     0     NA         NA      NA        NA        NA
## 415     NA    NA      2         NA      NA        NA        NA
## 416     NA    NA      0         NA      NA        NA        NA
## 417     NA    NA      1         NA      NA        NA        NA
## 418      3     1      2         NA      NA        NA        NA
## 419      1     1      1         NA      NA        NA        NA
## 420     NA    NA      1         NA      NA        NA        NA
## 421     NA    NA     NA         NA      NA        NA        NA
## 422     NA    NA     NA         NA      NA        NA        NA
## 423      0     0     NA         NA      NA        NA        NA
## 424     NA    NA     NA         NA      NA        NA        NA
## 425      1     1      1         NA      NA        NA        NA
## 426     NA     3     NA         NA      NA        NA        NA
## 427     NA    NA      1         NA      NA        NA        NA
## 428      1    NA      1         NA      NA        NA        NA
## 429     NA     1      1         NA      NA        NA        NA
## 430     NA    NA     NA         NA      NA        NA        NA
## 431     NA     0      1         NA      NA        NA        NA
## 432     NA    NA      1         NA      NA        NA        NA
## 433      1    NA     NA         NA      NA        NA        NA
## 434     NA    NA     NA         NA      NA        NA        NA
## 435      2    NA      3         NA      NA        NA        NA
## 436      0     0     NA         NA      NA        NA        NA
## 437      0    NA     NA         NA      NA        NA        NA
## 438      0    NA      1         NA      NA        NA        NA
## 439      0     0      1         NA      NA        NA        NA
## 440      1    NA     NA         NA      NA        NA        NA
## 441      0     0     NA         NA      NA        NA        NA
## 442     NA     2     NA         NA      NA        NA        NA
## 443     NA     0      6         NA      NA        NA        NA
## 444     NA    NA     NA         NA      NA        NA        NA
## 445      1     0      1         NA      NA        NA        NA
## 446      1     1      3         NA      NA        NA        NA
## 447      3    NA      0         NA      NA        NA        NA
## 448     NA     0     NA         NA      NA        NA        NA
## 449     NA     0     NA         NA      NA        NA        NA
## 450      1    NA     NA         NA      NA        NA        NA
## 451      1    NA      1         NA      NA        NA        NA
## 452     NA    NA     NA         NA      NA        NA        NA
## 453     NA     0     NA         NA      NA        NA        NA
## 454      4    NA      1         NA      NA        NA        NA
## 455      0    NA     NA         NA      NA        NA        NA
## 456      4     1      2         NA      NA        NA        NA
## 457     NA     0      0         NA      NA        NA        NA
## 458     NA     0      2         NA      NA        NA        NA
## 459      0     0      0         NA      NA        NA        NA
## 460     NA     0     NA         NA      NA        NA        NA
## 461      2    NA      2         NA      NA        NA        NA
## 462      0    NA     NA         NA      NA        NA        NA
## 463      0     0     NA         NA      NA        NA        NA
## 464     NA     0      1         NA      NA        NA        NA
## 465     NA    NA      0         NA      NA        NA        NA
## 466     NA    NA      1         NA      NA        NA        NA
## 467     NA    NA      3         NA      NA        NA        NA
## 468     NA     1      1         NA      NA        NA        NA
## 469      3     3      5         NA      NA        NA        NA
## 470     NA    NA      0         NA      NA        NA        NA
## 471     NA    NA      0         NA      NA        NA        NA
## 472     NA     0     NA         NA      NA        NA        NA
## 473     NA    NA      0         NA      NA        NA        NA
## 474     NA    NA     NA         NA      NA        NA        NA
## 475     NA     0     NA         NA      NA        NA        NA
## 476     NA    NA     NA         NA      NA        NA        NA
## 477     NA    NA     NA         NA      NA        NA        NA
## 478     NA    NA     NA         NA      NA        NA        NA
## 479     NA    NA     NA         NA      NA        NA        NA
## 480     NA    NA      0         NA      NA        NA        NA
## 481     NA     0     NA         NA      NA        NA        NA
## 482     NA     0     NA         NA      NA        NA        NA
## 483     NA    NA     NA         NA      NA        NA        NA
## 484     NA    NA     NA         NA      NA        NA        NA
## 485     NA    NA     NA         NA      NA        NA        NA
## 486     NA    NA     NA         NA      NA        NA        NA
## 487      0    NA     NA         NA      NA        NA        NA
## 488     NA     0     NA         NA      NA        NA        NA
## 489     NA    NA     NA         NA      NA        NA        NA
## 490     NA    NA     NA         NA      NA        NA        NA
## 491     NA    NA     NA         NA      NA        NA        NA
## 492     NA     0     NA         NA      NA        NA        NA
## 493     NA    NA     NA         NA      NA        NA        NA
## 494     NA     0     NA         NA      NA        NA        NA
## 495     NA     0     NA         NA      NA        NA        NA
## 496     NA    NA      0         NA      NA        NA        NA
## 497     NA    NA     NA         NA      NA        NA        NA
## 498     NA    NA     NA         NA      NA        NA        NA
## 499     NA     0     NA         NA      NA        NA        NA
## 500     NA    NA     NA         NA      NA        NA        NA
## 501     NA    NA      0         NA      NA        NA        NA
## 502      1    NA     NA         NA      NA        NA        NA
## 503      0    NA     NA         NA      NA        NA        NA
## 504     NA     0     NA         NA      NA        NA        NA
## 505     NA    NA     NA         NA      NA        NA        NA
## 506     NA    NA      0         NA      NA        NA        NA
## 507      0    NA     NA         NA      NA        NA        NA
## 508     NA     1      0         NA      NA        NA        NA
## 509     NA    NA      0         NA      NA        NA        NA
## 510     NA     0     NA         NA      NA        NA        NA
## 511     NA    NA      0         NA      NA        NA        NA
## 512     NA    NA     NA         NA      NA        NA        NA
## 513     NA     0     NA         NA      NA        NA        NA
## 514     NA     0     NA         NA      NA        NA        NA
## 515     NA     0     NA         NA      NA        NA        NA
## 516     NA    NA      0         NA      NA        NA        NA
## 517     NA    NA     NA         NA      NA        NA        NA
## 518     NA    NA     NA         NA      NA        NA        NA
## 519     NA    NA     NA         NA      NA        NA        NA
## 520     NA    NA     NA         NA      NA        NA        NA
## 521      0     0      0         NA      NA        NA        NA
## 522     NA     0     NA         NA      NA        NA        NA
## 523     NA    NA     NA         NA      NA        NA        NA
## 524      0     0      0         NA      NA        NA        NA
## 525     NA    NA     NA         NA      NA        NA        NA
## 526     NA    NA     NA         NA      NA        NA        NA
## 527     NA    NA     NA         NA      NA        NA        NA
## 528     NA    NA      1         NA      NA        NA        NA
## 529      0    NA     NA         NA      NA        NA        NA
## 530     NA     0     NA         NA      NA        NA        NA
## 531     NA    NA     NA         NA      NA        NA        NA
## 532     NA    NA     NA         NA      NA        NA        NA
## 533     NA    NA      0         NA      NA        NA        NA
## 534     NA    NA      0         NA      NA        NA        NA
## 535     NA     0     NA         NA      NA        NA        NA
## 536     NA    NA     NA         NA      NA        NA        NA
## 537     NA     1     NA         NA      NA        NA        NA
## 538     NA    NA      0         NA      NA        NA        NA
## 539     NA    NA      1         NA      NA        NA        NA
## 540     NA    NA      0         NA      NA        NA        NA
## 541     NA    NA      0         NA      NA        NA        NA
## 542     NA    NA      0         NA      NA        NA        NA
## 543     NA    NA     NA         NA      NA        NA        NA
## 544      0    NA     NA         NA      NA        NA        NA
## 545      0    NA     NA         NA      NA        NA        NA
## 546     NA    NA      0         NA      NA        NA        NA
## 547     NA    NA     NA         NA      NA        NA        NA
## 548     NA    NA     NA         NA      NA        NA        NA
## 549     NA     0     NA         NA      NA        NA        NA
## 550     NA    NA     NA         NA      NA        NA        NA
## 551      0     0     NA         NA      NA        NA        NA
## 552     NA    NA     NA         NA      NA        NA        NA
## 553     NA    NA      0         NA      NA        NA        NA
## 554     NA     0     NA         NA      NA        NA        NA
## 555     NA    NA     NA         NA      NA        NA        NA
## 556     NA    NA     NA         NA      NA        NA        NA
## 557     NA     1      1         NA      NA        NA        NA
## 558     NA    NA     NA         NA      NA        NA        NA
## 559      0    NA     NA         NA      NA        NA        NA
## 560     NA     0     NA         NA      NA        NA        NA
## 561     NA    NA     NA         NA      NA        NA        NA
## 562     NA    NA      0         NA      NA        NA        NA
## 563     NA    NA     NA         NA      NA        NA        NA
## 564     NA     0      1         NA      NA        NA        NA
## 565     NA    NA      0         NA      NA        NA        NA
## 566     NA     0     NA         NA      NA        NA        NA
## 567     NA    NA     NA         NA      NA        NA        NA
## 568     NA    NA     NA         NA      NA        NA        NA
## 569     NA    NA      0         NA      NA        NA        NA
## 570     NA     0     NA         NA      NA        NA        NA
## 571     NA    NA     NA         NA      NA        NA        NA
## 572     NA     0      0         NA      NA        NA        NA
## 573     NA    NA     NA         NA      NA        NA        NA
## 574     NA     0     NA         NA      NA        NA        NA
## 575     NA     0     NA         NA      NA        NA        NA
## 576     NA     0     NA         NA      NA        NA        NA
## 577     NA    NA     NA         NA      NA        NA        NA
## 578     NA    NA      0         NA      NA        NA        NA
## 579     NA     0     NA         NA      NA        NA        NA
## 580     NA    NA     NA         NA      NA        NA        NA
## 581     NA    NA      1         NA      NA        NA        NA
## 582      0     0      0         NA      NA        NA        NA
## 583     NA    NA     NA         NA      NA        NA        NA
## 584     NA    NA      1         NA      NA        NA        NA
## 585     NA     0      1         NA      NA        NA        NA
## 586      1    NA     NA         NA      NA        NA        NA
## 587     NA    NA      0         NA      NA        NA        NA
## 588     NA    NA     NA         NA      NA        NA        NA
## 589     NA    NA     NA         NA      NA        NA        NA
## 590      1     1     NA         NA      NA        NA        NA
## 591     NA    NA     NA         NA      NA        NA        NA
## 592     NA    NA     NA         NA      NA        NA        NA
## 593      0    NA     NA         NA      NA        NA        NA
## 594     NA    NA      1         NA      NA        NA        NA
## 595     NA     0      0         NA      NA        NA        NA
## 596      1     0      1         NA      NA        NA        NA
## 597     NA    NA     NA         NA      NA        NA        NA
## 598     NA    NA     NA         NA      NA        NA        NA
## 599      0    NA     NA         NA      NA        NA        NA
## 600      0    NA     NA         NA      NA        NA        NA
## 601     NA     0     NA         NA      NA        NA        NA
## 602     NA    NA     NA         NA      NA        NA        NA
## 603     NA    NA     NA         NA      NA        NA        NA
## 604     NA    NA     NA         NA      NA        NA        NA
## 605     NA    NA      1         NA      NA        NA        NA
## 606     NA    NA      0         NA      NA        NA        NA
## 607      0     1      0         NA      NA        NA        NA
## 608     NA     0     NA         NA      NA        NA        NA
## 609     NA    NA      0         NA      NA        NA        NA
## 610      3     1      1         NA      NA        NA        NA
## 611      0    NA      0         NA      NA        NA        NA
## 612     NA    NA      0         NA      NA        NA        NA
## 613     NA    NA      0         NA      NA        NA        NA
## 614     NA    NA      0         NA      NA        NA        NA
## 615     NA     0     NA         NA      NA        NA        NA
## 616     NA    NA     NA         NA      NA        NA        NA
## 617     NA    NA     NA         NA      NA        NA        NA
## 618     NA     1      2         NA      NA        NA        NA
## 619     NA    NA      0         NA      NA        NA        NA
## 620     NA    NA     NA         NA      NA        NA        NA
## 621     NA     0     NA         NA      NA        NA        NA
## 622     NA     0     NA         NA      NA        NA        NA
## 623     NA    NA      0         NA      NA        NA        NA
## 624     NA    NA      0         NA      NA        NA        NA
## 625     NA     0     NA         NA      NA        NA        NA
## 626      1     1      1         NA      NA        NA        NA
## 627      2     1      3         NA      NA        NA        NA
## 628     NA    NA      0         NA      NA        NA        NA
## 629     NA    NA      0         NA      NA        NA        NA
## 630     NA    NA      0         NA      NA        NA        NA
## 631     NA     0     NA         NA      NA        NA        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633     NA     0     NA         NA      NA        NA        NA
## 634     NA    NA     NA         NA      NA        NA        NA
## 635      0     0     NA         NA      NA        NA        NA
## 636     NA    NA     NA         NA      NA        NA        NA
## 637     NA    NA     NA         NA      NA        NA        NA
## 638     NA     1     NA         NA      NA        NA        NA
## 639      0     0     NA         NA      NA        NA        NA
## 640     NA     0     NA         NA      NA        NA        NA
## 641     NA    NA     NA         NA      NA        NA        NA
## 642     NA    NA      0         NA      NA        NA        NA
## 643     NA    NA      0         NA      NA        NA        NA
## 644      1    NA      1         NA      NA        NA        NA
## 645     NA    NA     NA         NA      NA        NA        NA
## 646     NA    NA     NA         NA      NA        NA        NA
## 647     NA     0     NA         NA      NA        NA        NA
## 648     NA    NA     NA         NA      NA        NA        NA
## 649     NA    NA      0         NA      NA        NA        NA
## 650     NA     0      1         NA      NA        NA        NA
## 651     NA    NA      0         NA      NA        NA        NA
## 652     NA     0     NA         NA      NA        NA        NA
## 653     NA     0     NA         NA      NA        NA        NA
## 654     NA    NA      0         NA      NA        NA        NA
## 655     NA    NA      0         NA      NA        NA        NA
## 656     NA     1      1         NA      NA        NA        NA
## 657     NA    NA     NA         NA      NA        NA        NA
## 658     NA    NA      0         NA      NA        NA        NA
## 659     NA    NA     NA         NA      NA        NA        NA
## 660     NA    NA     NA         NA      NA        NA        NA
## 661     NA    NA     NA         NA      NA        NA        NA
## 662     NA     0     NA         NA      NA        NA        NA
## 663     NA    NA     NA         NA      NA        NA        NA
## 664     NA    NA     NA         NA      NA        NA        NA
## 665      0    NA     NA         NA      NA        NA        NA
## 666     NA     0     NA         NA      NA        NA        NA
## 667     NA    NA      0         NA      NA        NA        NA
## 668     NA    NA     NA         NA      NA        NA        NA
## 669      1    NA     NA         NA      NA        NA        NA
## 670     NA    NA     NA         NA      NA        NA        NA
## 671     NA    NA      1         NA      NA        NA        NA
## 672     NA    NA      0         NA      NA        NA        NA
## 673     NA    NA     NA         NA      NA        NA        NA
## 674     NA     0      0         NA      NA        NA        NA
## 675     NA     0     NA         NA      NA        NA        NA
## 676     NA     0     NA         NA      NA        NA        NA
## 677      1     0      1         NA      NA        NA        NA
## 678     NA    NA      0         NA      NA        NA        NA
## 679     NA     0     NA         NA      NA        NA        NA
## 680     NA     0      1         NA      NA        NA        NA
## 681      0     0     NA         NA      NA        NA        NA
## 682     NA     1     NA         NA      NA        NA        NA
## 683     NA     0     NA         NA      NA        NA        NA
## 684     NA     0     NA         NA      NA        NA        NA
## 685      1     0     NA         NA      NA        NA        NA
## 686     NA     0     NA         NA      NA        NA        NA
## 687     NA    NA     NA         NA      NA        NA        NA
## 688     NA     0      2         NA      NA        NA        NA
## 689     NA     0     NA         NA      NA        NA        NA
## 690     NA    NA     NA         NA      NA        NA        NA
## 691     NA    NA     NA         NA      NA        NA        NA
## 692     NA    NA     NA         NA      NA        NA        NA
## 693     NA    NA     NA         NA      NA        NA        NA
## 694     NA    NA     NA         NA      NA        NA        NA
## 695     NA    NA      0         NA      NA        NA        NA
## 696      0    NA      0         NA      NA        NA        NA
## 697      0     0      0         NA      NA        NA        NA
## 698     NA    NA     NA         NA      NA        NA        NA
## 699     NA     0     NA         NA      NA        NA        NA
## 700     NA    NA     NA         NA      NA        NA        NA
## 701     NA     0     NA         NA      NA        NA        NA
## 702     NA    NA     NA         NA      NA        NA        NA
## 703     NA    NA     NA         NA      NA        NA        NA
## 704     NA     0      1         NA      NA        NA        NA
## 705     NA    NA     NA         NA      NA        NA        NA
## 706      0     0     NA         NA      NA        NA        NA
## 707     NA    NA      1         NA      NA        NA        NA
## 708     NA    NA     NA         NA      NA        NA        NA
## 709     NA    NA     NA         NA      NA        NA        NA
## 710     NA     0     NA         NA      NA        NA        NA
## 711     NA     0      0         NA      NA        NA        NA
## 712      1     0      0         NA      NA        NA        NA
## 713     NA    NA     NA         NA      NA        NA        NA
## 714     NA     0      0         NA      NA        NA        NA
## 715     NA     0     NA         NA      NA        NA        NA
## 716     NA    NA      0         NA      NA        NA        NA
## 717     NA    NA      0         NA      NA        NA        NA
## 718     NA     0     NA         NA      NA        NA        NA
## 719     NA     0     NA         NA      NA        NA        NA
## 720      1    NA      0         NA      NA        NA        NA
## 721     NA    NA     NA         NA      NA        NA        NA
## 722     NA     1      0         NA      NA        NA        NA
## 723     NA     0     NA         NA      NA        NA        NA
## 724     NA     0      0         NA      NA        NA        NA
## 725     NA    NA      0         NA      NA        NA        NA
## 726     NA     0     NA         NA      NA        NA        NA
## 727     NA    NA     NA         NA      NA        NA        NA
## 728     NA     0     NA         NA      NA        NA        NA
## 729      1     0      0         NA      NA        NA        NA
## 730     NA    NA     NA         NA      NA        NA        NA
## 731     NA    NA      1         NA      NA        NA        NA
## 732      2     1      1         NA      NA        NA        NA
## 733     NA     0     NA         NA      NA        NA        NA
## 734     NA     0      0         NA      NA        NA        NA
## 735     NA     0      0         NA      NA        NA        NA
## 736     NA     0      0         NA      NA        NA        NA
## 737     NA     0     NA         NA      NA        NA        NA
## 738      1     0      0         NA      NA        NA        NA
## 739      1    NA     NA         NA      NA        NA        NA
## 740     NA    NA      0         NA      NA        NA        NA
## 741     NA     0      0         NA      NA        NA        NA
## 742     NA    NA     NA         NA      NA        NA        NA
## 743     NA     0      0         NA      NA        NA        NA
## 744     NA    NA     NA         NA      NA        NA        NA
## 745     NA     0     NA         NA      NA        NA        NA
## 746     NA    NA     NA         NA      NA        NA        NA
## 747     NA    NA     NA         NA      NA        NA        NA
## 748      0    NA     NA         NA      NA        NA        NA
## 749     NA    NA      1         NA      NA        NA        NA
## 750     NA    NA     NA         NA      NA        NA        NA
## 751     NA    NA     NA         NA      NA        NA        NA
## 752      0    NA      0         NA      NA        NA        NA
## 753     NA     0      0         NA      NA        NA        NA
## 754     NA     0     NA         NA      NA        NA        NA
## 755     NA    NA     NA         NA      NA        NA        NA
## 756     NA     0     NA         NA      NA        NA        NA
## 757      1    NA      1         NA      NA        NA        NA
## 758     NA    NA     NA         NA      NA        NA        NA
## 759     NA     0     NA         NA      NA        NA        NA
## 760     NA    NA      0         NA      NA        NA        NA
## 761     NA    NA     NA         NA      NA        NA        NA
## 762     NA     0     NA         NA      NA        NA        NA
## 763     NA    NA      1         NA      NA        NA        NA
## 764     NA    NA      0         NA      NA        NA        NA
## 765      0    NA     NA         NA      NA        NA        NA
## 766      0     0     NA         NA      NA        NA        NA
## 767     NA    NA     NA         NA      NA        NA        NA
## 768     NA     0     NA         NA      NA        NA        NA
## 769      0    NA     NA         NA      NA        NA        NA
## 770      0     0     NA         NA      NA        NA        NA
## 771     NA    NA      0         NA      NA        NA        NA
## 772     NA    NA     NA         NA      NA        NA        NA
## 773     NA    NA     NA         NA      NA        NA        NA
## 774     NA    NA     NA         NA      NA        NA        NA
## 775     NA    NA     NA         NA      NA        NA        NA
## 776     NA    NA     NA         NA      NA        NA        NA
## 777     NA     0     NA         NA      NA        NA        NA
## 778     NA    NA     NA         NA      NA        NA        NA
## 779     NA     0     NA         NA      NA        NA        NA
## 780      0     0      0         NA      NA        NA        NA
## 781     NA    NA     NA         NA      NA        NA        NA
## 782     NA    NA     NA         NA      NA        NA        NA
## 783     NA    NA      0         NA      NA        NA        NA
## 784     NA    NA     NA         NA      NA        NA        NA
## 785     NA     0     NA         NA      NA        NA        NA
## 786     NA     0      0         NA      NA        NA        NA
## 787      0     0     NA         NA      NA        NA        NA
## 788     NA     0     NA         NA      NA        NA        NA
## 789     NA    NA      2         NA      NA        NA        NA
## 790     NA    NA      1         NA      NA        NA        NA
## 791     NA    NA     NA         NA      NA        NA        NA
## 792     NA     0      1         NA      NA        NA        NA
## 793      0    NA     NA         NA      NA        NA        NA
## 794     NA    NA     NA         NA      NA        NA        NA
## 795     NA     0     NA         NA      NA        NA        NA
## 796     NA    NA     NA         NA      NA        NA        NA
## 797     NA     0     NA         NA      NA        NA        NA
## 798     NA     0     NA         NA      NA        NA        NA
## 799      0    NA     NA         NA      NA        NA        NA
## 800     NA    NA     NA         NA      NA        NA        NA
## 801     NA    NA     NA         NA      NA        NA        NA
## 802     NA     0     NA         NA      NA        NA        NA
## 803     NA     0     NA         NA      NA        NA        NA
## 804     NA    NA     NA         NA      NA        NA        NA
## 805     NA     0     NA         NA      NA        NA        NA
## 806     NA     1      2         NA      NA        NA        NA
## 807     NA    NA      0         NA      NA        NA        NA
## 808     NA    NA      0         NA      NA        NA        NA
## 809     NA    NA     NA         NA      NA        NA        NA
## 810     NA    NA      1         NA      NA        NA        NA
## 811     NA    NA     NA         NA      NA        NA        NA
## 812     NA    NA     NA         NA      NA        NA        NA
## 813     NA    NA     NA         NA      NA        NA        NA
## 814     NA     0     NA         NA      NA        NA        NA
## 815     NA     0     NA         NA      NA        NA        NA
## 816     NA    NA      1         NA      NA        NA        NA
## 817     NA    NA      1         NA      NA        NA        NA
## 818      0     0     NA         NA      NA        NA        NA
## 819      0    NA     NA         NA      NA        NA        NA
## 820     NA    NA      0         NA      NA        NA        NA
## 821     NA     0      1         NA      NA        NA        NA
## 822     NA     0     NA         NA      NA        NA        NA
## 823     NA    NA     NA         NA      NA        NA        NA
## 824     NA    NA     NA         NA      NA        NA        NA
## 825     NA    NA     NA         NA      NA        NA        NA
## 826     NA    NA     NA         NA      NA        NA        NA
## 827      0    NA      1         NA      NA        NA        NA
## 828     NA    NA     NA         NA      NA        NA        NA
## 829      1     0     NA         NA      NA        NA        NA
## 830      0     0      2         NA      NA        NA        NA
## 831     NA    NA     NA         NA      NA        NA        NA
## 832     NA     0     NA         NA      NA        NA        NA
## 833     NA    NA      0         NA      NA        NA        NA
## 834     NA     0     NA         NA      NA        NA        NA
## 835     NA     0     NA         NA      NA        NA        NA
## 836     NA     0     NA         NA      NA        NA        NA
## 837     NA     0      0         NA      NA        NA        NA
## 838     NA    NA      0         NA      NA        NA        NA
## 839     NA     0      0         NA      NA        NA        NA
## 840     NA     0     NA         NA      NA        NA        NA
## 841     NA     0     NA         NA      NA        NA        NA
## 842      1     1      0         NA      NA        NA        NA
## 843     NA     0      0         NA      NA        NA        NA
## 844     NA     1      1         NA      NA        NA        NA
## 845      1     1      0         NA      NA        NA        NA
## 846      1     0      0         NA      NA        NA        NA
## 847      0    NA     NA         NA      NA        NA        NA
## 848      0    NA     NA         NA      NA        NA        NA
## 849     NA    NA      0         NA      NA        NA        NA
## 850     NA    NA      0         NA      NA        NA        NA
## 851     NA     2     NA         NA      NA        NA        NA
## 852     NA     0     NA         NA      NA        NA        NA
## 853     NA     1      2         NA      NA        NA        NA
## 854     NA    NA     NA         NA      NA        NA        NA
## 855      1    NA      2         NA      NA        NA        NA
## 856      2     1      2         NA      NA        NA        NA
## 857     NA    NA     NA         NA      NA        NA        NA
## 858     NA    NA     NA         NA      NA        NA        NA
## 859     NA     0      0         NA      NA        NA        NA
## 860     NA     0     NA         NA      NA        NA        NA
## 861     NA    NA      0         NA      NA        NA        NA
## 862      2     1      2         NA      NA        NA        NA
## 863      3     1      3         NA      NA        NA        NA
## 864     NA     0     NA         NA      NA        NA        NA
## 865     NA     0     NA         NA      NA        NA        NA
## 866      2    NA      1         NA      NA        NA        NA
## 867      1    NA     NA         NA      NA        NA        NA
## 868      1    NA     NA         NA      NA        NA        NA
## 869     NA    NA      2         NA      NA        NA        NA
## 870      0    NA      0         NA      NA        NA        NA
## 871     NA    NA     NA         NA      NA        NA        NA
## 872     NA    NA      0         NA      NA        NA        NA
## 873     NA     0      0         NA      NA        NA        NA
## 874     NA    NA      0         NA      NA        NA        NA
## 875     NA    NA     NA         NA      NA        NA        NA
## 876     NA    NA     NA         NA      NA        NA        NA
## 877     NA     0     NA         NA      NA        NA        NA
## 878     NA    NA      0         NA      NA        NA        NA
## 879     NA    NA     NA         NA      NA        NA        NA
## 880      1    NA     NA         NA      NA        NA        NA
## 881     NA    NA      1         NA      NA        NA        NA
## 882     NA    NA      1         NA      NA        NA        NA
## 883      1    NA      1         NA      NA        NA        NA
## 884     NA     0      0         NA      NA        NA        NA
## 885      0     0     NA         NA      NA        NA        NA
## 886     NA     0     NA         NA      NA        NA        NA
## 887      2     1      1         NA      NA        NA        NA
## 888      4     2      3         NA      NA        NA        NA
## 889      1    NA      1         NA      NA        NA        NA
## 890     NA    NA      0         NA      NA        NA        NA
## 891     NA     1      1         NA      NA        NA        NA
## 892     NA    NA     NA         NA      NA        NA        NA
## 893      0     1      1         NA      NA        NA        NA
## 894      0    NA     NA         NA      NA        NA        NA
## 895     NA    NA      4         NA      NA        NA        NA
## 896     NA    NA      3         NA      NA        NA        NA
## 897     NA     0     NA         NA      NA        NA        NA
## 898      1    NA      1         NA      NA        NA        NA
## 899     NA    NA      3         NA      NA        NA        NA
## 900     NA    NA      0         NA      NA        NA        NA
## 901     NA    NA     NA         NA      NA        NA        NA
## 902     NA    NA      1         NA      NA        NA        NA
## 903     NA    NA     NA         NA      NA        NA        NA
## 904      0     0      0         NA      NA        NA        NA
## 905      0     0      1         NA      NA        NA        NA
## 906      1     1      2         NA      NA        NA        NA
## 907     NA     0      1         NA      NA        NA        NA
## 908     NA    NA     NA         NA      NA        NA        NA
## 909      2     1      0         NA      NA        NA        NA
## 910     NA     0     NA         NA      NA        NA        NA
## 911     NA    NA     NA         NA      NA        NA        NA
## 912      0    NA     NA         NA      NA        NA        NA
## 913      0     0     NA         NA      NA        NA        NA
## 914     NA    NA     NA         NA      NA        NA        NA
## 915     NA    NA     NA         NA      NA        NA        NA
## 916     NA    NA     NA         NA      NA        NA        NA
## 917     NA    NA      1         NA      NA        NA        NA
## 918      1     0      2         NA      NA        NA        NA
## 919     NA    NA      0         NA      NA        NA        NA
## 920      2     4      2         NA      NA        NA        NA
## 921     NA     1     NA         NA      NA        NA        NA
## 922     NA    NA      0         NA      NA        NA        NA
## 923      2     1      3         NA      NA        NA        NA
## 924     NA     0     NA         NA      NA        NA        NA
## 925     NA     0     NA         NA      NA        NA        NA
## 926     NA    NA      0         NA      NA        NA        NA
## 927      0    NA      0         NA      NA        NA        NA
## 928      1     1      2         NA      NA        NA        NA
## 929      1     1     NA         NA      NA        NA        NA
## 930     NA    NA      0         NA      NA        NA        NA
## 931      1     1      0         NA      NA        NA        NA
## 932     NA    NA     NA         NA      NA        NA        NA
## 933     NA     0     NA         NA      NA        NA        NA
## 934      0     0      2         NA      NA        NA        NA
## 935     NA     1      1         NA      NA        NA        NA
## 936      1     0      1         NA      NA        NA        NA
## 937     NA    NA     NA         NA      NA        NA        NA
## 938      1     1      1         NA      NA        NA        NA
## 939     NA    NA     NA         NA      NA        NA        NA
## 940     NA     0      0         NA      NA        NA        NA
## 941     NA    NA      0         NA      NA        NA        NA
## 942     NA    NA     NA         NA      NA        NA        NA
## 943     NA     1      2         NA      NA        NA        NA
## 944     NA    NA     NA         NA      NA        NA        NA
## 945     NA    NA      0         NA      NA        NA        NA
## 946      0     0      2         NA      NA        NA        NA
## 947      2     0      2         NA      NA        NA        NA
## 948     NA    NA      0         NA      NA        NA        NA
## 949      1     3      2         NA      NA        NA        NA
## 950     NA    NA      0         NA      NA        NA        NA
## 951     NA    NA      1         NA      NA        NA        NA
## 952     NA     0     NA         NA      NA        NA        NA
## 953     NA     1      0         NA      NA        NA        NA
## 954      1     1      0         NA      NA        NA        NA
## 955     NA    NA      0         NA      NA        NA        NA
## 956     NA    NA      0         NA      NA        NA        NA
## 957     NA     0      4         NA      NA        NA        NA
## 958     NA    NA      0         NA      NA        NA        NA
## 959     NA    NA     NA         NA      NA        NA        NA
## 960     NA    NA     NA         NA      NA        NA        NA
## 961     NA    NA      0         NA      NA        NA        NA
## 962     NA    NA      0         NA      NA        NA        NA
## 963      1     1      1         NA      NA        NA        NA
## 964      0    NA     NA         NA      NA        NA        NA
## 965     NA     0     NA         NA      NA        NA        NA
## 966     NA    NA     NA         NA      NA        NA        NA
## 967     NA    NA      0         NA      NA        NA        NA
## 968      0     0     NA         NA      NA        NA        NA
## 969      1     3      4         NA      NA        NA        NA
## 970      0    NA      0         NA      NA        NA        NA
## 971     NA    NA      0         NA      NA        NA        NA
## 972      2     1      2         NA      NA        NA        NA
## 973     NA     1      5         NA      NA        NA        NA
## 974     NA     0     NA         NA      NA        NA        NA
## 975     NA     0      0         NA      NA        NA        NA
## 976     NA     0     NA         NA      NA        NA        NA
## 977     NA     0      0         NA      NA        NA        NA
## 978      2     1      3         NA      NA        NA        NA
## 979     NA     0     NA         NA      NA        NA        NA
## 980      1     1      0         NA      NA        NA        NA
## 981     NA     1     NA         NA      NA        NA        NA
## 982      0     1      1         NA      NA        NA        NA
## 983     NA     0      0         NA      NA        NA        NA
## 984      0    NA      0         NA      NA        NA        NA
## 985     NA    NA     NA         NA      NA        NA        NA
## 986      1     1      0         NA      NA        NA        NA
## 987     NA    NA      1         NA      NA        NA        NA
## 988     NA    NA     NA         NA      NA        NA        NA
## 989     NA     0      0         NA      NA        NA        NA
## 990      1     0      2         NA      NA        NA        NA
## 991      1     0     NA         NA      NA        NA        NA
## 992      1     0      1         NA      NA        NA        NA
## 993     NA    NA      1         NA      NA        NA        NA
## 994      0    NA     NA         NA      NA        NA        NA
## 995     NA     0      0         NA      NA        NA        NA
## 996     NA     1      0         NA      NA        NA        NA
## 997      0     0      1         NA      NA        NA        NA
## 998      1    NA     NA         NA      NA        NA        NA
## 999     NA     0      1         NA      NA        NA        NA
## 1000    NA    NA      0         NA      NA        NA        NA
## 1001    NA     1     NA         NA      NA        NA        NA
## 1002    NA    NA      1         NA      NA        NA        NA
## 1003    NA    NA     NA         NA      NA        NA        NA
## 1004    NA     0      0         NA      NA        NA        NA
## 1005    NA     0     NA         NA      NA        NA        NA
## 1006     1    NA     NA         NA      NA        NA        NA
## 1007    NA     0      0         NA      NA        NA        NA
## 1008     1     1     NA         NA      NA        NA        NA
## 1009     1     0     NA         NA      NA        NA        NA
## 1010    NA    NA      1         NA      NA        NA        NA
## 1011     2     2      2         NA      NA        NA        NA
## 1012    NA     1      1         NA      NA        NA        NA
## 1013     0     1      0         NA      NA        NA        NA
## 1014     1    NA     NA         NA      NA        NA        NA
## 1015    NA    NA     NA         NA      NA        NA        NA
## 1016     3    NA      2         NA      NA        NA        NA
## 1017    NA    NA      0         NA      NA        NA        NA
## 1018     1    NA     NA         NA      NA        NA        NA
## 1019    NA    NA     NA         NA      NA        NA        NA
## 1020    NA     1      0         NA      NA        NA        NA
## 1021    NA     1      1         NA      NA        NA        NA
## 1022    NA     0     NA         NA      NA        NA        NA
## 1023    NA     0     NA         NA      NA        NA        NA
## 1024    NA     0     NA         NA      NA        NA        NA
## 1025    NA    NA     NA         NA      NA        NA        NA
## 1026     1     0      0         NA      NA        NA        NA
## 1027    NA    NA     NA         NA      NA        NA        NA
## 1028    NA    NA     NA         NA      NA        NA        NA
## 1029     0     0     NA         NA      NA        NA        NA
## 1030    NA    NA      0         NA      NA        NA        NA
## 1031    NA    NA     NA         NA      NA        NA        NA
## 1032    NA    NA      0         NA      NA        NA        NA
## 1033    NA     0     NA         NA      NA        NA        NA
## 1034    NA    NA     NA         NA      NA        NA        NA
## 1035    NA     0     NA         NA      NA        NA        NA
## 1036    NA    NA     NA         NA      NA        NA        NA
## 1037    NA     1      0         NA      NA        NA        NA
## 1038    NA     1     NA         NA      NA        NA        NA
## 1039     0    NA      0         NA      NA        NA        NA
## 1040    NA     0     NA         NA      NA        NA        NA
## 1041     1    NA     NA         NA      NA        NA        NA
## 1042     0    NA     NA         NA      NA        NA        NA
## 1043    NA    NA      1         NA      NA        NA        NA
## 1044     0    NA     NA         NA      NA        NA        NA
## 1045    NA    NA     NA         NA      NA        NA        NA
## 1046    NA     0     NA         NA      NA        NA        NA
## 1047     2    NA      4         NA      NA        NA        NA
## 1048    NA    NA     NA         NA      NA        NA        NA
## 1049     0    NA     NA         NA      NA        NA        NA
## 1050    NA    NA     NA         NA      NA        NA        NA
## 1051    NA     0     NA         NA      NA        NA        NA
## 1052    NA     0     NA         NA      NA        NA        NA
## 1053     0     0      0         NA      NA        NA        NA
## 1054     0     0     NA         NA      NA        NA        NA
## 1055    NA    NA     NA         NA      NA        NA        NA
## 1056    NA    NA     NA         NA      NA        NA        NA
## 1057    NA     0     NA         NA      NA        NA        NA
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     0     0     NA         NA      NA        NA        NA
## 1060     1    NA     NA         NA      NA        NA        NA
## 1061    NA     0     NA         NA      NA        NA        NA
## 1062     1     1      3         NA      NA        NA        NA
## 1063    NA    NA     NA         NA      NA        NA        NA
## 1064    NA    NA      0         NA      NA        NA        NA
## 1065     1     2     NA         NA      NA        NA        NA
## 1066     0     0     NA         NA      NA        NA        NA
## 1067     1    NA      1         NA      NA        NA        NA
## 1068    NA    NA      0         NA      NA        NA        NA
## 1069     1     0      0         NA      NA        NA        NA
## 1070    NA     0     NA         NA      NA        NA        NA
## 1071     0    NA      0         NA      NA        NA        NA
## 1072     1    NA      0         NA      NA        NA        NA
## 1073     0    NA     NA         NA      NA        NA        NA
## 1074     1     1      1         NA      NA        NA        NA
## 1075    NA     0     NA         NA      NA        NA        NA
## 1076    NA     0      0         NA      NA        NA        NA
## 1077     0    NA     NA         NA      NA        NA        NA
## 1078     1     0      0         NA      NA        NA        NA
## 1079    NA     1      1         NA      NA        NA        NA
## 1080    NA     1     NA         NA      NA        NA        NA
## 1081     0    NA      0         NA      NA        NA        NA
## 1082     1     1      1         NA      NA        NA        NA
## 1083     0    NA     NA         NA      NA        NA        NA
## 1084    NA    NA     NA         NA      NA        NA        NA
## 1085    NA    NA     NA         NA      NA        NA        NA
## 1086     0     0      0         NA      NA        NA        NA
## 1087     0    NA     NA         NA      NA        NA        NA
## 1088    NA     0     NA         NA      NA        NA        NA
## 1089     0    NA     NA         NA      NA        NA        NA
## 1090     1     0      0         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA        NA        NA
## 1092     0    NA     NA         NA      NA        NA        NA
## 1093    NA    NA     NA         NA      NA        NA        NA
## 1094    NA    NA     NA         NA      NA        NA        NA
## 1095    NA    NA     NA         NA      NA        NA        NA
## 1096    NA    NA     NA         NA      NA        NA        NA
## 1097    NA    NA     NA         NA      NA        NA        NA
## 1098    NA    NA     NA         NA      NA        NA        NA
## 1099     1     1      1         NA      NA        NA        NA
## 1100     1    NA      0         NA      NA        NA        NA
## 1101    NA    NA     NA         NA      NA        NA        NA
## 1102    NA    NA      0         NA      NA        NA        NA
## 1103    NA    NA     NA         NA      NA        NA        NA
## 1104    NA     0      1         NA      NA        NA        NA
## 1105    NA     0     NA         NA      NA        NA        NA
## 1106    NA     0     NA         NA      NA        NA        NA
## 1107    NA     0      0         NA      NA        NA        NA
## 1108    NA    NA      0         NA      NA        NA        NA
## 1109     1     1     NA         NA      NA        NA        NA
## 1110    NA    NA     NA         NA      NA        NA        NA
## 1111     0     0     NA         NA      NA        NA        NA
## 1112     0    NA      0         NA      NA        NA        NA
## 1113    NA     1      0         NA      NA        NA        NA
## 1114    NA     0      0         NA      NA        NA        NA
## 1115     1     2      3         NA      NA        NA        NA
## 1116     0    NA     NA         NA      NA        NA        NA
## 1117    NA     0      0         NA      NA        NA        NA
## 1118    NA    NA     NA         NA      NA        NA        NA
## 1119    NA    NA     NA         NA      NA        NA        NA
## 1120     1     0      1         NA      NA        NA        NA
## 1121    NA    NA      0         NA      NA        NA        NA
## 1122    NA     0      0         NA      NA        NA        NA
## 1123    NA     0     NA         NA      NA        NA        NA
## 1124    NA    NA     NA         NA      NA        NA        NA
## 1125    NA     0     NA         NA      NA        NA        NA
## 1126    NA     0     NA         NA      NA        NA        NA
## 1127    NA    NA     NA         NA      NA        NA        NA
## 1128     0     0     NA         NA      NA        NA        NA
## 1129    NA    NA     NA         NA      NA        NA        NA
## 1130     0     0     NA         NA      NA        NA        NA
## 1131     1     0      0         NA      NA        NA        NA
## 1132     1     0      1         NA      NA        NA        NA
## 1133    NA    NA     NA         NA      NA        NA        NA
## 1134    NA    NA     NA         NA      NA        NA        NA
## 1135     1    NA      1         NA      NA        NA        NA
## 1136     0     0      1         NA      NA        NA        NA
## 1137    NA    NA      1         NA      NA        NA        NA
## 1138    NA    NA     NA         NA      NA        NA        NA
## 1139    NA    NA     NA         NA      NA        NA        NA
## 1140    NA    NA     NA         NA      NA        NA        NA
## 1141    NA    NA     NA         NA      NA        NA        NA
## 1142    NA    NA     NA         NA      NA        NA        NA
## 1143     2     2      4         NA      NA        NA        NA
## 1144     0    NA      1         NA      NA        NA        NA
## 1145    NA     1     NA         NA      NA        NA        NA
## 1146    NA    NA      0         NA      NA        NA        NA
## 1147     0    NA     NA         NA      NA        NA        NA
## 1148    NA     0      0         NA      NA        NA        NA
## 1149    NA     0      1         NA      NA        NA        NA
## 1150     0    NA     NA         NA      NA        NA        NA
## 1151     1     0      1         NA      NA        NA        NA
## 1152    NA     0      1         NA      NA        NA        NA
## 1153     1     1      0         NA      NA        NA        NA
## 1154    NA     0     NA         NA      NA        NA        NA
## 1155    NA    NA      0         NA      NA        NA        NA
## 1156    NA     0      0         NA      NA        NA        NA
## 1157    NA    NA     NA         NA      NA        NA        NA
## 1158    NA     0      0         NA      NA        NA        NA
## 1159    NA     0     NA         NA      NA        NA        NA
## 1160    NA     0     NA         NA      NA        NA        NA
## 1161    NA     0      0         NA      NA        NA        NA
## 1162     1    NA      1         NA      NA        NA        NA
## 1163    NA    NA     NA         NA      NA        NA        NA
## 1164     0     1     NA         NA      NA        NA        NA
## 1165    NA    NA     NA         NA      NA        NA        NA
## 1166    NA     0      0         NA      NA        NA        NA
## 1167    NA    NA      1         NA      NA        NA        NA
## 1168     1    NA      1         NA      NA        NA        NA
## 1169     4     1     NA         NA      NA        NA        NA
## 1170    NA    NA     NA         NA      NA        NA        NA
## 1171     1    NA     NA         NA      NA        NA        NA
## 1172     0    NA     NA         NA      NA        NA        NA
## 1173     1     7      6         NA      NA        NA        NA
## 1174     0     1      1         NA      NA        NA        NA
## 1175    NA    NA     NA         NA      NA        NA        NA
## 1176    NA     0     NA         NA      NA        NA        NA
## 1177    NA    NA      1         NA      NA        NA        NA
## 1178     0    NA     NA         NA      NA        NA        NA
## 1179     3     2      2         NA      NA        NA        NA
## 1180    NA    NA     NA         NA      NA        NA        NA
## 1181     0     1      2         NA      NA        NA        NA
## 1182     1     1      4         NA      NA        NA        NA
## 1183     2     1      1         NA      NA        NA        NA
## 1184    NA     0     NA         NA      NA        NA        NA
## 1185    NA    NA      0         NA      NA        NA        NA
## 1186    NA    NA     NA         NA      NA        NA        NA
## 1187    NA    NA      0         NA      NA        NA        NA
## 1188    NA    NA     NA         NA      NA        NA        NA
## 1189    NA    NA      1         NA      NA        NA        NA
## 1190    NA    NA     NA         NA      NA        NA        NA
## 1191     1     0     NA         NA      NA        NA        NA
## 1192     0     0     NA         NA      NA        NA        NA
## 1193     0     1      1         NA      NA        NA        NA
## 1194     0    NA      0         NA      NA        NA        NA
## 1195     1    NA     NA         NA      NA        NA        NA
## 1196    NA     0     NA         NA      NA        NA        NA
## 1197     1     1      3         NA      NA        NA        NA
## 1198    NA     0     NA         NA      NA        NA        NA
## 1199    NA     0     NA         NA      NA        NA        NA
## 1200     1     0      1         NA      NA        NA        NA
## 1201     1    NA      0         NA      NA        NA        NA
## 1202     4     0      1         NA      NA        NA        NA
## 1203    NA    NA     NA         NA      NA        NA        NA
## 1204     0     1      1         NA      NA        NA        NA
## 1205    NA    NA     NA         NA      NA        NA         2
## 1206    NA    NA     NA         NA      NA        NA         4
## 1207    NA    NA     NA         NA      NA        NA         1
## 1208    NA    NA     NA         NA      NA         1         6
## 1209    NA    NA     NA         NA      NA        10         8
## 1210    NA    NA     NA         NA      NA        NA         1
## 1211    NA    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA         2
## 1213    NA    NA     NA         NA      NA         1        NA
## 1214    NA    NA     NA         NA      NA        NA         6
## 1215    NA    NA     NA         NA      NA        NA         0
## 1216    NA    NA     NA         NA      NA         1         2
## 1217    NA    NA     NA         NA      NA         9         3
## 1218    NA    NA     NA         NA      NA        NA         3
## 1219    NA    NA     NA         NA      NA         3         1
## 1220    NA    NA     NA         NA      NA         8        NA
## 1221    NA    NA     NA         NA      NA         1        NA
## 1222    NA    NA     NA         NA      NA         2         1
## 1223    NA    NA     NA         NA      NA         0        NA
## 1224    NA    NA     NA         NA      NA         6         0
## 1225    NA    NA     NA         NA      NA        NA         1
## 1226    NA    NA     NA         NA      NA         3         3
## 1227    NA    NA     NA         NA      NA         2        NA
## 1228    NA    NA     NA         NA      NA        NA         1
## 1229    NA    NA     NA         NA      NA        NA         2
## 1230    NA    NA     NA         NA      NA        NA         3
## 1231    NA    NA     NA         NA      NA         2         1
## 1232    NA    NA     NA         NA      NA        NA         5
## 1233    NA    NA     NA         NA      NA         0        NA
## 1234    NA    NA     NA         NA      NA         2         3
## 1235    NA    NA     NA         NA      NA         4        NA
## 1236    NA    NA     NA         NA      NA         0         2
## 1237    NA    NA     NA         NA      NA        NA         1
## 1238    NA    NA     NA         NA      NA         0         1
## 1239    NA    NA     NA         NA      NA        NA         1
## 1240    NA    NA     NA         NA      NA        NA         1
## 1241    NA    NA     NA         NA      NA        NA         1
## 1242    NA    NA     NA         NA      NA        11         2
## 1243    NA    NA     NA         NA      NA         4         2
## 1244    NA    NA     NA         NA      NA         4         6
## 1245    NA    NA     NA         NA      NA        NA         2
## 1246    NA    NA     NA         NA      NA        NA         2
## 1247    NA    NA     NA         NA      NA        NA         1
## 1248    NA    NA     NA         NA      NA         3         2
## 1249    NA    NA     NA         NA      NA         1        NA
## 1250    NA    NA     NA         NA      NA        NA         2
## 1251    NA    NA     NA         NA      NA         0        NA
## 1252    NA    NA     NA         NA      NA         1        NA
## 1253    NA    NA     NA         NA      NA        NA         0
## 1254    NA    NA     NA         NA      NA        NA         0
## 1255    NA    NA     NA         NA      NA         0         1
## 1256    NA    NA     NA         NA      NA         1        NA
## 1257    NA    NA     NA         NA      NA        NA         0
## 1258    NA    NA     NA         NA      NA        NA         0
## 1259     1    NA     NA         NA      NA        NA        NA
## 1260     2    NA      0         NA      NA        NA        NA
## 1261     1    NA     NA         NA      NA        NA        NA
## 1262    NA     0     NA         NA      NA        NA        NA
## 1263    NA    NA     NA         NA      NA        NA        NA
## 1264     6     6      6         NA      NA        NA        NA
## 1265     4    12      2         NA      NA        NA        NA
## 1266     6    NA      1         NA      NA        NA        NA
## 1267     2     1      0         NA      NA        NA        NA
## 1268     2    NA     NA         NA      NA        NA        NA
## 1269    NA    NA     NA         NA      NA        NA        NA
## 1270     0    NA      0         NA      NA        NA        NA
## 1271    NA     1      3         NA      NA        NA        NA
## 1272    NA    NA     NA         NA      NA        NA        NA
## 1273     2    NA     NA         NA      NA        NA        NA
## 1274     6    NA     NA         NA      NA        NA        NA
## 1275     2     2      1         NA      NA        NA        NA
## 1276    NA    NA      1         NA      NA        NA        NA
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     2    NA      9         NA      NA        NA        NA
## 1280     3     4     NA         NA      NA        NA        NA
## 1281     4     8      8         NA      NA        NA        NA
## 1282     1     1      4         NA      NA        NA        NA
## 1283    NA    NA      2         NA      NA        NA        NA
## 1284    NA     4      8         NA      NA        NA        NA
## 1285    NA    NA      1         NA      NA        NA        NA
## 1286    NA    NA     NA         NA      NA        NA        NA
## 1287     1     5     13         NA      NA        NA        NA
## 1288     1     3      0         NA      NA        NA        NA
## 1289     0     1      3         NA      NA        NA        NA
## 1290    NA    NA     NA         NA      NA        NA        NA
## 1291    NA    NA     NA         NA      NA        NA        NA
## 1292    NA    NA      2         NA      NA        NA        NA
## 1293     1     2      6         NA      NA        NA        NA
## 1294    NA     2     NA         NA      NA        NA        NA
## 1295    NA     2     NA         NA      NA        NA        NA
## 1296    NA    NA     NA         NA      NA        NA        NA
## 1297    NA     1      4         NA      NA        NA        NA
## 1298    NA    NA     NA         NA      NA        NA        NA
## 1299    NA    16      3         NA      NA        NA        NA
## 1300     4    NA      0         NA      NA        NA        NA
## 1301    NA     4     NA         NA      NA        NA        NA
## 1302     4     2      8         NA      NA        NA        NA
## 1303    20     7      4         NA      NA        NA        NA
## 1304    NA    NA     NA         NA      NA        NA        NA
## 1305    NA     8     NA         NA      NA        NA        NA
## 1306    NA     0      2         NA      NA        NA        NA
## 1307    NA    NA      2         NA      NA        NA        NA
## 1308     1     3      5         NA      NA        NA        NA
## 1309     1     1      0         NA      NA        NA        NA
## 1310    NA    NA     NA         NA      NA        NA        NA
## 1311    NA    NA      3         NA      NA        NA        NA
## 1312    NA    NA     NA         NA      NA        NA        NA
## 1313     1     4     NA         NA      NA        NA        NA
## 1314    NA    NA     NA         NA      NA        NA        NA
## 1315    NA     0      2         NA      NA        NA        NA
## 1316     5     3      3         NA      NA        NA        NA
## 1317    NA     0      1         NA      NA        NA        NA
## 1318     0    NA     NA         NA      NA        NA        NA
## 1319     0    NA      1         NA      NA        NA        NA
## 1320     1    NA      4         NA      NA        NA        NA
## 1321     0     0     NA         NA      NA        NA        NA
## 1322    NA     2      4         NA      NA        NA        NA
## 1323     2     2      1         NA      NA        NA        NA
## 1324     0    NA      1         NA      NA        NA        NA
## 1325    NA    NA     NA         NA      NA        NA        NA
## 1326    NA    NA     NA         NA      NA        NA        NA
## 1327    NA    NA     NA         NA      NA        NA        NA
## 1328     1    NA     NA         NA      NA        NA        NA
## 1329     1     1      3         NA      NA        NA        NA
## 1330    NA    60     80         NA      NA        NA        NA
## 1331    NA     0      3         NA      NA        NA        NA
## 1332    NA    NA      2         NA      NA        NA        NA
## 1333    20    NA     NA         NA      NA        NA        NA
## 1334     3     4      3         NA      NA        NA        NA
## 1335     2    NA     NA         NA      NA        NA        NA
## 1336     3     4      1         NA      NA        NA        NA
## 1337     1     1     NA         NA      NA        NA        NA
## 1338    NA     0     NA         NA      NA        NA        NA
## 1339    NA    NA     NA         NA      NA        NA        NA
## 1340     7     1      5         NA      NA        NA        NA
## 1341     2    NA      1         NA      NA        NA        NA
## 1342     1     1      1         NA      NA        NA        NA
## 1343     0     2      8         NA      NA        NA        NA
## 1344    NA    NA     NA         NA      NA        NA        NA
## 1345    NA    NA      1         NA      NA        NA        NA
## 1346     2    NA      2         NA      NA        NA        NA
## 1347    NA    NA      0         NA      NA        NA        NA
## 1348    NA     0     NA         NA      NA        NA        NA
## 1349    20    28     NA         NA      NA        NA        NA
## 1350    NA    NA     10         NA      NA        NA        NA
## 1351     2     0      1         NA      NA        NA        NA
## 1352    14    NA     NA         NA      NA        NA        NA
## 1353    NA     0     NA         NA      NA        NA        NA
## 1354    NA    NA     NA         NA      NA        NA        NA
## 1355     1    NA     NA         NA      NA        NA        NA
## 1356     0    NA     NA         NA      NA        NA        NA
## 1357    NA    NA     NA         NA      NA        NA        NA
## 1358     0     2      1         NA      NA        NA        NA
## 1359    NA     0     NA         NA      NA        NA        NA
## 1360    NA    NA     NA         NA      NA        NA        NA
## 1361     1    NA      1         NA      NA        NA        NA
## 1362     0    NA      1         NA      NA        NA        NA
## 1363    NA    NA      6         NA      NA        NA        NA
## 1364    NA    NA     NA         NA      NA        NA        NA
## 1365    NA    NA      2         NA      NA        NA        NA
## 1366    NA    NA     NA         NA      NA        NA        NA
## 1367     8    NA      2         NA      NA        NA        NA
## 1368    NA     0      1         NA      NA        NA        NA
## 1369    NA     5      6         NA      NA        NA        NA
## 1370    NA     0     NA         NA      NA        NA        NA
## 1371    NA    NA      2         NA      NA        NA        NA
## 1372    NA    NA     NA         NA      NA        NA        NA
## 1373    NA    NA     NA         NA      NA        NA        NA
## 1374    NA    NA      0         NA      NA        NA        NA
## 1375    NA    NA      5         NA      NA        NA        NA
## 1376    NA    NA     NA         NA      NA        NA        NA
## 1377    NA    NA     NA         NA      NA        NA        NA
## 1378     0    NA     NA         NA      NA        NA        NA
## 1379     3    NA     NA         NA      NA        NA        NA
## 1380    NA    NA      1         NA      NA        NA        NA
## 1381     0    NA     NA         NA      NA        NA        NA
## 1382    NA    NA     NA         NA      NA        NA        NA
## 1383    NA    NA     NA         NA      NA        NA        NA
## 1384    NA    NA     NA         NA      NA        NA        NA
## 1385     0    NA      0         NA      NA        NA        NA
## 1386    NA    NA     NA         NA      NA        NA        NA
## 1387    NA    NA     NA         NA      NA        NA        NA
## 1388     0    NA     NA         NA      NA        NA        NA
## 1389    NA    NA     NA         NA      NA        NA        NA
## 1390     0    NA     NA         NA      NA        NA        NA
## 1391    NA     0     NA         NA      NA        NA        NA
## 1392    NA    NA     NA         NA      NA        NA        NA
## 1393    NA    NA     NA         NA      NA        NA        NA
## 1394    NA     0     NA         NA      NA        NA        NA
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396    NA    NA     NA         NA      NA        NA        NA
## 1397    NA    NA     NA         NA      NA        NA        NA
## 1398    NA    NA     NA         NA      NA        NA        NA
## 1399    NA    NA     NA         NA      NA        NA        NA
## 1400    NA    NA     NA         NA      NA        NA        NA
## 1401    NA    NA     NA         NA      NA        NA        NA
## 1402    NA    NA     NA         NA      NA        NA        NA
## 1403    NA    NA     NA         NA      NA        NA        NA
## 1404    NA    NA     NA         NA      NA        NA        NA
## 1405    NA    NA      0         NA      NA        NA        NA
## 1406    NA    NA     NA         NA      NA        NA        NA
## 1407    NA    NA     NA         NA      NA        NA        NA
## 1408    NA    NA      0         NA      NA        NA        NA
## 1409    NA     1     NA         NA      NA        NA        NA
## 1410    NA    NA     NA         NA      NA        NA        NA
## 1411    NA    NA     NA         NA      NA        NA        NA
## 1412    NA    NA     NA         NA      NA        NA        NA
## 1413    NA    NA      0         NA      NA        NA        NA
## 1414    NA    NA     NA         NA      NA        NA        NA
## 1415     0    NA     NA         NA      NA        NA        NA
## 1416    NA    NA     NA         NA      NA        NA        NA
## 1417    NA    NA     NA         NA      NA        NA        NA
## 1418    NA    NA     NA         NA      NA        NA        NA
## 1419     2     2      2         NA      NA        NA        NA
## 1420    NA     1     NA         NA      NA        NA        NA
## 1421    NA    12     NA         NA      NA        NA        NA
## 1422     0    NA     NA         NA      NA        NA        NA
## 1423     0    NA     NA         NA      NA        NA        NA
## 1424     0     2     NA         NA      NA        NA        NA
## 1425    NA    NA     NA         NA      NA        NA        NA
## 1426     2    NA      2         NA      NA        NA        NA
## 1427    NA    NA     NA         NA      NA        NA        NA
## 1428    NA    NA      1         NA      NA        NA        NA
## 1429    NA    NA     NA         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA        NA
## 1431    NA    NA     NA         NA      NA        NA        NA
## 1432     0    NA     NA         NA      NA        NA        NA
## 1433     1    NA     NA         NA      NA        NA        NA
## 1434    NA    NA     NA         NA      NA        NA        NA
## 1435    NA    NA     NA         NA      NA        NA        NA
## 1436    NA    NA     NA         NA      NA        NA        NA
## 1437    NA    NA     NA         NA      NA        NA        NA
## 1438    NA    NA     NA         NA      NA        NA        NA
## 1439    NA    NA     NA         NA      NA        NA        NA
## 1440    NA    NA     NA         NA      NA        NA        NA
## 1441    NA    NA      0         NA      NA        NA        NA
## 1442     0    NA      0         NA      NA        NA        NA
## 1443    NA    NA     NA         NA      NA        NA        NA
## 1444    NA    NA     NA         NA      NA        NA        NA
## 1445    NA    NA     NA         NA      NA        NA        NA
## 1446    NA    NA     NA         NA      NA        NA        NA
## 1447    NA    NA     NA         NA      NA        NA        NA
## 1448     1    NA      1         NA      NA        NA        NA
## 1449    NA    NA     NA         NA      NA        NA        NA
## 1450    NA    NA     NA         NA      NA        NA        NA
## 1451     2     2      1         NA      NA        NA        NA
## 1452    NA     1     NA         NA      NA        NA        NA
## 1453    NA    NA     NA         NA      NA        NA        NA
## 1454    NA    NA     NA         NA      NA        NA        NA
## 1455    NA     0     NA         NA      NA        NA        NA
## 1456    NA    NA     NA         NA      NA        NA        NA
## 1457     0    NA     NA         NA      NA        NA        NA
## 1458    NA    NA      0         NA      NA        NA        NA
## 1459     1    NA      0         NA      NA        NA        NA
## 1460    NA    NA     NA         NA      NA        NA        NA
## 1461     3     2     NA         NA      NA        NA        NA
## 1462    NA    NA     NA         NA      NA        NA        NA
## 1463     1    NA     NA         NA      NA        NA        NA
## 1464    NA     0     NA         NA      NA        NA        NA
## 1465    NA     0      0         NA      NA        NA        NA
## 1466    NA    NA     NA         NA      NA        NA        NA
## 1467    NA     1      1         NA      NA        NA        NA
## 1468     1    NA     NA         NA      NA        NA        NA
## 1469    NA    NA     NA         NA      NA        NA        NA
## 1470    NA    NA     NA         NA      NA        NA        NA
## 1471     0     1     NA         NA      NA        NA        NA
## 1472    NA    NA      0         NA      NA        NA        NA
## 1473    NA     0     NA         NA      NA        NA        NA
## 1474     2     1      0         NA      NA        NA        NA
## 1475    NA    NA     NA         NA      NA        NA        NA
## 1476    NA    NA      6         NA      NA        NA        NA
## 1477    NA    NA     NA         NA      NA        NA        NA
## 1478     0    NA     NA         NA      NA        NA        NA
## 1479     1    NA     NA         NA      NA        NA        NA
## 1480    NA    NA     NA         NA      NA        NA        NA
## 1481     1    NA     NA         NA      NA        NA        NA
## 1482    NA    NA      2         NA      NA        NA        NA
## 1483     1    NA     NA         NA      NA        NA        NA
## 1484    NA    NA      1         NA      NA        NA        NA
## 1485    NA    NA     NA         NA      NA        NA        NA
## 1486    NA     0     NA         NA      NA        NA        NA
## 1487    NA    NA      0         NA      NA        NA        NA
## 1488    NA     2      1         NA      NA        NA        NA
## 1489    NA    NA     NA         NA      NA        NA        NA
## 1490    NA    NA      0         NA      NA        NA        NA
## 1491    NA     1     NA         NA      NA        NA        NA
## 1492     0     0     NA         NA      NA        NA        NA
## 1493    NA    NA      0         NA      NA        NA        NA
## 1494    NA    NA     NA         NA      NA        NA        NA
## 1495     1     1      1         NA      NA        NA        NA
## 1496    NA    NA     NA         NA      NA        NA        NA
## 1497    NA    NA     NA         NA      NA        NA        NA
## 1498     2    NA      0         NA      NA        NA        NA
## 1499    NA    NA      1         NA      NA        NA        NA
## 1500    NA    NA      1         NA      NA        NA        NA
## 1501     1    NA      1         NA      NA        NA        NA
## 1502     1    NA     NA         NA      NA        NA        NA
## 1503    NA    NA     NA         NA      NA        NA        NA
## 1504    NA     1     NA         NA      NA        NA        NA
## 1505    NA    NA     NA         NA      NA        NA        NA
## 1506    NA     2     NA         NA      NA        NA        NA
## 1507    NA     1     NA         NA      NA        NA        NA
## 1508    NA    NA     NA         NA      NA        NA        NA
## 1509     2     3     NA         NA      NA        NA        NA
## 1510    NA    NA     NA         NA      NA        NA        NA
## 1511    NA    NA     NA         NA      NA        NA        NA
## 1512    NA    NA     NA         NA      NA        NA        NA
## 1513    NA    NA     NA         NA      NA        NA        NA
## 1514     1    NA      1         NA      NA        NA        NA
## 1515    NA    NA     NA         NA      NA        NA        NA
## 1516    NA     0     NA         NA      NA        NA        NA
## 1517     1     0     NA         NA      NA        NA        NA
## 1518    NA    NA     NA         NA      NA        NA        NA
## 1519    NA     0     NA         NA      NA        NA        NA
## 1520    NA    NA     NA         NA      NA        NA        NA
## 1521     1    NA     NA         NA      NA        NA        NA
## 1522    NA    NA     NA         NA      NA        NA        NA
## 1523    NA    NA     NA         NA      NA        NA        NA
## 1524    NA    NA     NA         NA      NA        NA        NA
## 1525    NA    NA     NA         NA      NA        NA        NA
## 1526    NA    NA     NA         NA      NA        NA        NA
## 1527     0    NA     NA         NA      NA        NA        NA
## 1528    NA     1     NA         NA      NA        NA        NA
## 1529    NA     0      1         NA      NA        NA        NA
## 1530    NA    NA     NA         NA      NA        NA        NA
## 1531    NA    NA     NA         NA      NA        NA        NA
## 1532    NA    NA     NA         NA      NA        NA        NA
## 1533    NA    NA     NA         NA      NA        NA        NA
## 1534    NA    NA     NA         NA      NA        NA        NA
## 1535     1     0     NA         NA      NA        NA        NA
## 1536    NA     0     NA         NA      NA        NA        NA
## 1537    NA    NA      1         NA      NA        NA        NA
## 1538    NA    NA     NA         NA      NA        NA        NA
## 1539    NA    NA     NA         NA      NA        NA        NA
## 1540    NA    NA     NA         NA      NA        NA        NA
## 1541    NA    NA     NA         NA      NA        NA        NA
## 1542     1     1     NA         NA      NA        NA        NA
## 1543    NA    NA     NA         NA      NA        NA        NA
## 1544    NA    NA     NA         NA      NA        NA        NA
## 1545    NA    NA     NA         NA      NA        NA        NA
## 1546    NA    NA     NA         NA      NA        NA        NA
## 1547     0    NA     NA         NA      NA        NA        NA
## 1548     0    NA     NA         NA      NA        NA        NA
## 1549    NA    NA     NA         NA      NA        NA        NA
## 1550    NA    NA      1         NA      NA        NA        NA
## 1551    NA    NA     NA         NA      NA        NA        NA
## 1552     1    NA     NA         NA      NA        NA        NA
## 1553    NA    NA      1         NA      NA        NA        NA
## 1554    NA    NA      1         NA      NA        NA        NA
## 1555    NA    NA     NA         NA      NA        NA        NA
## 1556     3     2      1         NA      NA        NA        NA
## 1557    NA    NA      1         NA      NA        NA        NA
## 1558    NA    NA     NA         NA      NA        NA        NA
## 1559    NA     0     NA         NA      NA        NA        NA
## 1560     1     0      2         NA      NA        NA        NA
## 1561     1     3      1         NA      NA        NA        NA
## 1562    NA    NA     NA         NA      NA        NA        NA
## 1563     0     1     NA         NA      NA        NA        NA
## 1564    NA    NA     NA         NA      NA        NA        NA
## 1565    NA    NA     NA         NA      NA        NA        NA
## 1566    NA     1     NA         NA      NA        NA        NA
## 1567    NA     0     NA         NA      NA        NA        NA
## 1568    NA    NA     NA         NA      NA        NA        NA
## 1569     0    NA     NA         NA      NA        NA        NA
## 1570    NA    NA     NA         NA      NA        NA        NA
## 1571     0    NA     NA         NA      NA        NA        NA
## 1572     0    NA     NA         NA      NA        NA        NA
## 1573    NA    NA     NA         NA      NA        NA        NA
## 1574    NA    NA     NA         NA      NA        NA        NA
## 1575     0    NA     NA         NA      NA        NA        NA
## 1576    NA     6     NA         NA      NA        NA        NA
## 1577    NA    NA     NA         NA      NA        NA        NA
## 1578    NA    NA     NA         NA      NA        NA        NA
## 1579    NA    NA     NA         NA      NA        NA        NA
## 1580    NA    NA     NA         NA      NA        NA        NA
## 1581    NA    NA     NA         NA      NA        NA        NA
## 1582    NA    NA     NA         NA      NA        NA        NA
## 1583    NA    NA     NA         NA      NA        NA        NA
## 1584     2    NA     NA         NA      NA        NA        NA
## 1585    NA    NA     NA         NA      NA        NA        NA
## 1586    NA    NA     NA         NA      NA        NA        NA
## 1587    NA    NA      1         NA      NA        NA        NA
## 1588     0    NA     NA         NA      NA        NA        NA
## 1589     0     0     NA         NA      NA        NA        NA
## 1590    NA    NA     NA         NA      NA        NA        NA
## 1591    NA    NA     NA         NA      NA        NA        NA
## 1592     0    NA     NA         NA      NA        NA        NA
## 1593    NA     0      1         NA      NA        NA        NA
## 1594    NA    NA      1         NA      NA        NA        NA
## 1595    NA    NA      2         NA      NA        NA        NA
## 1596    NA    NA      0         NA      NA        NA        NA
## 1597     0     0      0         NA      NA        NA        NA
## 1598     0    NA     NA         NA      NA        NA        NA
## 1599    NA    NA      1         NA      NA        NA        NA
## 1600    NA    NA     NA         NA      NA        NA        NA
## 1601    NA    NA     NA         NA      NA        NA        NA
## 1602    NA     0      0         NA      NA        NA        NA
## 1603    NA    NA     NA         NA      NA        NA        NA
## 1604    NA    NA     NA         NA      NA        NA        NA
## 1605    NA    NA     NA         NA      NA        NA        NA
## 1606     1     3      2         NA      NA        NA        NA
## 1607     0     1     NA         NA      NA        NA        NA
## 1608     1     1      1         NA      NA        NA        NA
## 1609     0    NA     NA         NA      NA        NA        NA
## 1610     1    NA      0         NA      NA        NA        NA
## 1611    NA    NA     NA         NA      NA        NA        NA
## 1612     0     0      1         NA      NA        NA        NA
## 1613     0     0     NA         NA      NA        NA        NA
## 1614    NA    NA     NA         NA      NA        NA        NA
## 1615     0    NA     NA         NA      NA        NA        NA
## 1616     1    NA     NA         NA      NA        NA        NA
## 1617     1    NA      2         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619    NA    NA     NA         NA      NA        NA        NA
## 1620    NA    NA     NA         NA      NA        NA        NA
## 1621     1     1     NA         NA      NA        NA        NA
## 1622    NA    NA     NA         NA      NA        NA        NA
## 1623    NA    NA     NA         NA      NA        NA        NA
## 1624     0    NA     NA         NA      NA        NA        NA
## 1625    NA     0     NA         NA      NA        NA        NA
## 1626    NA     1     NA         NA      NA        NA        NA
## 1627    NA    NA     NA         NA      NA        NA        NA
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     2     0      2         NA      NA        NA        NA
## 1630    NA    NA     NA         NA      NA        NA        NA
## 1631    NA     1     NA         NA      NA        NA        NA
## 1632     0    NA     NA         NA      NA        NA        NA
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634    NA     0      1         NA      NA        NA        NA
## 1635     2    NA     NA         NA      NA        NA        NA
## 1636     0    NA     NA         NA      NA        NA        NA
## 1637     1    NA      1         NA      NA        NA        NA
## 1638    NA    NA     NA         NA      NA        NA        NA
## 1639    NA    NA     NA         NA      NA        NA        NA
## 1640    NA    NA     NA         NA      NA        NA        NA
## 1641    NA    NA     NA         NA      NA        NA        NA
## 1642    NA    NA     NA         NA      NA        NA        NA
## 1643     0    NA     NA         NA      NA        NA        NA
## 1644    NA    NA     NA         NA      NA        NA        NA
## 1645     1    NA     NA         NA      NA        NA        NA
## 1646     0    NA     NA         NA      NA        NA        NA
## 1647    NA    NA     NA         NA      NA        NA        NA
## 1648    NA     0     NA         NA      NA        NA        NA
## 1649    NA     0      1         NA      NA        NA        NA
## 1650     0    NA     NA         NA      NA        NA        NA
## 1651     2    NA     NA         NA      NA        NA        NA
## 1652     0     0     NA         NA      NA        NA        NA
## 1653     1    NA     NA         NA      NA        NA        NA
## 1654     0     1      1         NA      NA        NA        NA
## 1655     0    NA     NA         NA      NA        NA        NA
## 1656     3    NA     NA         NA      NA        NA        NA
## 1657     1    NA      0         NA      NA        NA        NA
## 1658    NA    NA     NA         NA      NA        NA        NA
## 1659    NA     0     NA         NA      NA        NA        NA
## 1660    NA    NA     NA         NA      NA        NA        NA
## 1661     1     1      2         NA      NA        NA        NA
## 1662    NA    NA      0         NA      NA        NA        NA
## 1663     0    NA     NA         NA      NA        NA        NA
## 1664    NA    NA     NA         NA      NA        NA        NA
## 1665     0    NA     NA         NA      NA        NA        NA
## 1666    NA    NA      1         NA      NA        NA        NA
## 1667    NA    NA     NA         NA      NA        NA        NA
## 1668    NA    NA     NA         NA      NA        NA        NA
## 1669     0    NA     NA         NA      NA        NA        NA
## 1670    NA    NA     NA         NA      NA        NA        NA
## 1671    NA    NA     NA         NA      NA        NA        NA
## 1672    NA    NA      1         NA      NA        NA        NA
## 1673    NA    NA     NA         NA      NA        NA        NA
## 1674    NA    NA     NA         NA      NA        NA        NA
## 1675     1    NA      1         NA      NA        NA        NA
## 1676    NA    NA     NA         NA      NA        NA        NA
## 1677     0    NA     NA         NA      NA        NA        NA
## 1678    NA    NA     NA         NA      NA        NA        NA
## 1679    NA     0     NA         NA      NA        NA        NA
## 1680     2    NA      1         NA      NA        NA        NA
## 1681    NA    NA     NA         NA      NA        NA        NA
## 1682    NA    NA      1         NA      NA        NA        NA
## 1683    NA    NA     NA         NA      NA        NA        NA
## 1684    NA    NA     NA         NA      NA        NA        NA
## 1685    NA    NA      0         NA      NA        NA        NA
## 1686    NA    NA      6         NA      NA        NA        NA
## 1687     0     1      1         NA      NA        NA        NA
## 1688    NA    NA     NA         NA      NA        NA        NA
## 1689    NA    NA      1         NA      NA        NA        NA
## 1690    NA    NA      0         NA      NA        NA        NA
## 1691    NA    NA     NA         NA      NA        NA        NA
## 1692     0    NA     NA         NA      NA        NA        NA
## 1693     0    NA     NA         NA      NA        NA        NA
## 1694     1    NA     NA         NA      NA        NA        NA
## 1695    NA     6     NA         NA      NA        NA        NA
## 1696    NA    NA     NA         NA      NA        NA        NA
## 1697    NA    NA      1         NA      NA        NA        NA
## 1698    NA    NA      0         NA      NA        NA        NA
## 1699     0    NA     NA         NA      NA        NA        NA
## 1700    NA    NA     NA         NA      NA        NA        NA
## 1701     1     0     NA         NA      NA        NA        NA
## 1702    NA    NA     NA         NA      NA        NA        NA
## 1703     1    NA     NA         NA      NA        NA        NA
## 1704     0     1      0         NA      NA        NA        NA
## 1705     1    NA     NA         NA      NA        NA        NA
## 1706     0    NA      0         NA      NA        NA        NA
## 1707    NA     0     NA         NA      NA        NA        NA
## 1708    NA     0     NA         NA      NA        NA        NA
## 1709     0    NA     NA         NA      NA        NA        NA
## 1710    NA     0     NA         NA      NA        NA        NA
## 1711    NA    NA     NA         NA      NA        NA        NA
## 1712     0     1      1         NA      NA        NA        NA
## 1713    NA     1      0         NA      NA        NA        NA
## 1714    NA    16     NA         NA      NA        NA        NA
## 1715    NA     1     NA         NA      NA        NA        NA
## 1716     0     1     NA         NA      NA        NA        NA
## 1717     4     3      7         NA      NA        NA        NA
## 1718     1    NA     NA         NA      NA        NA        NA
## 1719     3    NA      1         NA      NA        NA        NA
## 1720    NA     0      1         NA      NA        NA        NA
## 1721    NA    NA     NA         NA      NA        NA        NA
## 1722     1     2     NA         NA      NA        NA        NA
## 1723     2    NA     22         NA      NA        NA        NA
## 1724     2     2     NA         NA      NA        NA        NA
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726     2    NA     NA         NA      NA        NA        NA
## 1727     0     0      1         NA      NA        NA        NA
## 1728     4    NA      4         NA      NA        NA        NA
## 1729     1    NA     NA         NA      NA        NA        NA
## 1730    19    NA     NA         NA      NA        NA        NA
## 1731    NA     0     NA         NA      NA        NA        NA
## 1732     1     1      0         NA      NA        NA        NA
## 1733     6    NA      4         NA      NA        NA        NA
## 1734     6    NA     NA         NA      NA        NA        NA
## 1735     1     2     NA         NA      NA        NA        NA
## 1736    NA    NA      1         NA      NA        NA        NA
## 1737    NA     2     NA         NA      NA        NA        NA
## 1738    NA    NA      1         NA      NA        NA        NA
## 1739     2    NA      1         NA      NA        NA        NA
## 1740    NA    NA      0         NA      NA        NA        NA
## 1741     2    NA     NA         NA      NA        NA        NA
## 1742    NA    NA     NA         NA      NA        NA        NA
## 1743     1    NA     NA         NA      NA        NA        NA
## 1744     1    NA      1         NA      NA        NA        NA
## 1745    NA    NA     NA         NA      NA        NA        NA
## 1746    NA    NA     NA         NA      NA        NA        NA
## 1747    NA    NA      1         NA      NA        NA        NA
## 1748    NA    NA      0         NA      NA        NA        NA
## 1749    NA     1      4         NA      NA        NA        NA
## 1750     2     2      2         NA      NA        NA        NA
## 1751     0    10      0         NA      NA        NA        NA
## 1752    NA    NA     NA         NA      NA        NA        NA
## 1753    NA    NA     NA         NA      NA        NA        NA
## 1754    NA    NA     NA         NA      NA        NA        NA
## 1755    NA    NA      2         NA      NA        NA        NA
## 1756     0    NA     NA         NA      NA        NA        NA
## 1757     3     1      0         NA      NA        NA        NA
## 1758    NA    NA     NA         NA      NA        NA        NA
## 1759     1    NA     NA         NA      NA        NA        NA
## 1760     1     3      0         NA      NA        NA        NA
## 1761    NA    NA      1         NA      NA        NA        NA
## 1762    NA    NA     NA         NA      NA        NA        NA
## 1763    NA    NA      2         NA      NA        NA        NA
## 1764    NA    NA      1         NA      NA        NA        NA
## 1765     1    NA      2         NA      NA        NA        NA
## 1766    NA    NA     NA         NA      NA        NA        NA
## 1767    NA    NA      2         NA      NA        NA        NA
## 1768    NA    NA     NA         NA      NA        NA        NA
## 1769     1     2      4         NA      NA        NA        NA
## 1770     1     1      1         NA      NA        NA        NA
## 1771     1     0     NA         NA      NA        NA        NA
## 1772    NA     1      0         NA      NA        NA        NA
## 1773     1    NA     NA         NA      NA        NA        NA
## 1774    NA    NA     46         NA      NA        NA        NA
## 1775    NA    NA     NA         NA      NA        NA        NA
## 1776     0    NA     NA         NA      NA        NA        NA
## 1777     1    NA     NA         NA      NA        NA        NA
## 1778    NA    NA     NA         NA      NA        NA        NA
## 1779    NA     0      6         NA      NA        NA        NA
## 1780     1    NA      1         NA      NA        NA        NA
## 1781    NA    NA      2         NA      NA        NA        NA
## 1782     2     0     10         NA      NA        NA        NA
## 1783    NA     3      2         NA      NA        NA        NA
## 1784     4    NA      1         NA      NA        NA        NA
## 1785    NA    NA     NA         NA      NA        NA        NA
## 1786    NA    NA     NA         NA      NA        NA        NA
## 1787    NA    NA     NA         NA      NA        NA        NA
## 1788     7     5      3         NA      NA        NA        NA
## 1789     0    NA     NA         NA      NA        NA        NA
## 1790    10    10     NA         NA      NA        NA        NA
## 1791    NA    NA     NA         NA      NA        NA        NA
## 1792     0    NA     NA         NA      NA        NA        NA
## 1793    NA    NA      1         NA      NA        NA        NA
## 1794    NA    NA      0         NA      NA        NA        NA
## 1795    NA     1     NA         NA      NA        NA        NA
## 1796    NA    NA     NA         NA      NA        NA        NA
## 1797     2    NA      1         NA      NA        NA        NA
## 1798     1    NA     NA         NA      NA        NA        NA
## 1799    NA    NA      0         NA      NA        NA        NA
## 1800    NA    NA      0         NA      NA        NA        NA
## 1801    NA    NA     NA         NA      NA        NA        NA
## 1802    NA     3      2         NA      NA        NA        NA
## 1803     1     2     NA         NA      NA        NA        NA
## 1804    NA     1     NA         NA      NA        NA        NA
## 1805    NA    NA     NA         NA      NA        NA        NA
## 1806    NA    NA      2         NA      NA        NA        NA
## 1807    NA     1      0         NA      NA        NA        NA
## 1808     5    NA      0         NA      NA        NA        NA
## 1809     8     2      4         NA      NA        NA        NA
## 1810     0    NA      0         NA      NA        NA        NA
## 1811    NA    NA     20         NA      NA        NA        NA
## 1812     2     0     NA         NA      NA        NA        NA
## 1813    NA    NA     NA         NA      NA        NA        NA
## 1814     5    NA     NA         NA      NA        NA        NA
## 1815     0    NA     NA         NA      NA        NA        NA
## 1816     0     1      2         NA      NA        NA        NA
## 1817    NA    NA      0         NA      NA        NA        NA
## 1818    NA    NA      1         NA      NA        NA        NA
## 1819    NA    NA     NA         NA      NA        NA        NA
## 1820    NA    NA     NA         NA      NA        NA        NA
## 1821     5     0      7         NA      NA        NA        NA
## 1822    NA     1      1         NA      NA        NA        NA
## 1823    NA    NA     NA         NA      NA        NA        NA
## 1824     2     0      4         NA      NA        NA        NA
## 1825     0     1     NA         NA      NA        NA        NA
## 1826    NA    NA     NA         NA      NA        NA        NA
## 1827    NA     1     NA         NA      NA        NA        NA
## 1828    NA    NA     NA         NA      NA        NA        NA
## 1829    NA    NA     NA         NA      NA        NA        NA
## 1830     2     0      0         NA      NA        NA        NA
## 1831     4     1      8         NA      NA        NA        NA
## 1832     0    NA     NA         NA      NA        NA        NA
## 1833     3    NA      4         NA      NA        NA        NA
## 1834     3    NA      2         NA      NA        NA        NA
## 1835    NA    NA     10         NA      NA        NA        NA
## 1836     0     0     NA         NA      NA        NA        NA
## 1837    NA    NA     NA         NA      NA        NA        NA
## 1838    20    NA     NA         NA      NA        NA        NA
## 1839    NA    NA      1         NA      NA        NA        NA
## 1840     1     1      0         NA      NA        NA        NA
## 1841     5     5      7         NA      NA        NA        NA
## 1842     0     1     NA         NA      NA        NA        NA
## 1843    NA    NA     NA         NA      NA        NA        NA
## 1844    NA     1     NA         NA      NA        NA        NA
## 1845     0     1      1         NA      NA        NA        NA
## 1846    NA    NA      0         NA      NA        NA        NA
## 1847    10    NA     NA         NA      NA        NA        NA
## 1848     1     2      0         NA      NA        NA        NA
## 1849    NA    NA     NA         NA      NA        NA        NA
## 1850     3    NA      0         NA      NA        NA        NA
## 1851    NA    NA     NA         NA      NA        NA        NA
## 1852    NA    NA     NA         NA      NA        NA        NA
## 1853     1     1      2         NA      NA        NA        NA
## 1854     1    NA     NA         NA      NA        NA        NA
## 1855    NA    NA      1         NA      NA        NA        NA
## 1856    NA    NA     NA         NA      NA        NA        NA
## 1857     1    NA      1         NA      NA        NA        NA
## 1858     2     3      1         NA      NA        NA        NA
## 1859     1     1     NA         NA      NA        NA        NA
## 1860    NA    NA     NA         NA      NA        NA        NA
## 1861    NA    NA      0         NA      NA        NA        NA
## 1862     3     2      0         NA      NA        NA        NA
## 1863     2    NA      2         NA      NA        NA        NA
## 1864    NA    NA     NA         NA      NA        NA        NA
## 1865     3     3      3         NA      NA        NA        NA
## 1866    NA    NA     NA         NA      NA        NA        NA
## 1867    NA    NA      1         NA      NA        NA        NA
## 1868     4    NA     NA         NA      NA        NA        NA
## 1869     1     7      1         NA      NA        NA        NA
## 1870     0     1     NA         NA      NA        NA        NA
## 1871     0    NA     NA         NA      NA        NA        NA
## 1872     0    NA     NA         NA      NA        NA        NA
## 1873     0     1      1         NA      NA        NA        NA
## 1874     1     0     NA         NA      NA        NA        NA
## 1875     3    NA     NA         NA      NA        NA        NA
## 1876    NA     0     NA         NA      NA        NA        NA
## 1877    NA    NA     NA         NA      NA        NA        NA
## 1878     1     2      1         NA      NA        NA        NA
## 1879    NA     3      4         NA      NA        NA        NA
## 1880     1    NA     NA         NA      NA        NA        NA
## 1881     0    NA     NA         NA      NA        NA        NA
## 1882    NA    NA     NA         NA      NA        NA        NA
## 1883    NA     1      1         NA      NA        NA        NA
## 1884    NA    NA      1         NA      NA        NA        NA
## 1885     0    NA     NA         NA      NA        NA        NA
## 1886     1     2      4         NA      NA        NA        NA
## 1887     0    13     NA         NA      NA        NA        NA
## 1888    NA    NA     NA         NA      NA        NA        NA
## 1889    NA     3     NA         NA      NA        NA        NA
## 1890    NA    NA     NA         NA      NA        NA        NA
## 1891    NA    NA     NA         NA      NA        NA        NA
## 1892    NA    NA     NA         NA      NA        NA        NA
## 1893    NA     0     NA         NA      NA        NA        NA
## 1894     0    NA      0         NA      NA        NA        NA
## 1895     2     4      2         NA      NA        NA        NA
## 1896    NA    NA      2         NA      NA        NA        NA
## 1897    NA    NA      4         NA      NA        NA        NA
## 1898    NA     1      1         NA      NA        NA        NA
## 1899    NA    NA     NA         NA      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901     1     0      0         NA      NA        NA        NA
## 1902    NA    NA     NA         NA      NA        NA        NA
## 1903    NA    NA     NA         NA      NA        NA        NA
## 1904     2    NA     NA         NA      NA        NA        NA
## 1905    NA     1     NA         NA      NA        NA        NA
## 1906    NA     0      0         NA      NA        NA        NA
## 1907    NA     1     24         NA      NA        NA        NA
## 1908    NA     0      0         NA      NA        NA        NA
## 1909    NA    NA     NA         NA      NA        NA        NA
## 1910    12    NA     NA         NA      NA        NA        NA
## 1911     0    NA     NA         NA      NA        NA        NA
## 1912    NA    NA     NA         NA      NA        NA        NA
## 1913     0     0     NA         NA      NA        NA        NA
## 1914     1    NA      0         NA      NA        NA        NA
## 1915    NA    NA     NA         NA      NA        NA        NA
## 1916     0    NA     NA         NA      NA        NA        NA
## 1917    NA    NA     NA         NA      NA        NA        NA
## 1918     1    NA     NA         NA      NA        NA        NA
## 1919    NA     0     NA         NA      NA        NA        NA
## 1920     1     2      3         NA      NA        NA        NA
## 1921     1    NA     NA         NA      NA        NA        NA
## 1922     2     0      1         NA      NA        NA        NA
## 1923    NA    NA     NA         NA      NA        NA        NA
## 1924    NA    NA     NA         NA      NA        NA        NA
## 1925    NA    NA     NA         NA      NA        NA        NA
## 1926     0     0      1         NA      NA        NA        NA
## 1927     3    NA     NA         NA      NA        NA        NA
## 1928     1    NA     NA         NA      NA        NA        NA
## 1929    NA     2      2         NA      NA        NA        NA
## 1930     2     0     NA         NA      NA        NA        NA
## 1931    NA    NA     NA         NA      NA        NA        NA
## 1932    NA    NA     NA         NA      NA        NA        NA
## 1933     0     1     NA         NA      NA        NA        NA
## 1934     2     1      1         NA      NA        NA        NA
## 1935    NA    NA     NA         NA      NA        NA        NA
## 1936     1     1     NA         NA      NA        NA        NA
## 1937     0     1      3         NA      NA        NA        NA
## 1938     1    NA     NA         NA      NA        NA        NA
## 1939    NA    NA     NA         NA      NA        NA        NA
## 1940     2    NA     NA         NA      NA        NA        NA
## 1941    NA    NA      0         NA      NA        NA        NA
## 1942     1    NA      0         NA      NA        NA        NA
## 1943    NA     1      1         NA      NA        NA        NA
## 1944     5     5      2         NA      NA        NA        NA
## 1945     2     5      1         NA      NA        NA        NA
## 1946     2     1      2         NA      NA        NA        NA
## 1947    NA    NA     NA         NA      NA        NA        NA
## 1948     8     1     NA         NA      NA        NA        NA
## 1949    NA     0     NA         NA      NA        NA        NA
## 1950     0    NA      1         NA      NA        NA        NA
## 1951    NA    NA     NA         NA      NA        NA        NA
## 1952     0    NA     NA         NA      NA        NA        NA
## 1953     0     0      0         NA      NA        NA        NA
## 1954    NA    NA     NA         NA      NA        NA        NA
## 1955     8     0      1         NA      NA        NA        NA
## 1956     1    NA      1         NA      NA        NA        NA
## 1957     1     0     NA         NA      NA        NA        NA
## 1958    NA     3      3         NA      NA        NA        NA
## 1959     0    NA     NA         NA      NA        NA        NA
## 1960    NA    NA     NA         NA      NA        NA        NA
## 1961     1    NA     NA         NA      NA        NA        NA
## 1962     1    NA     NA         NA      NA        NA        NA
## 1963     2    NA     NA         NA      NA        NA        NA
## 1964    NA    NA     NA         NA      NA        NA        NA
## 1965    NA    NA     NA         NA      NA        NA        NA
## 1966     2    NA      6         NA      NA        NA        NA
## 1967    NA    NA     NA         NA      NA        NA        NA
## 1968     0    NA     NA         NA      NA        NA        NA
## 1969     8     1      2         NA      NA        NA        NA
## 1970    NA    NA     NA         NA      NA        NA        NA
## 1971    NA    NA     NA         NA      NA        NA        NA
## 1972     0    NA      0         NA      NA        NA        NA
## 1973     1     1      4         NA      NA        NA        NA
## 1974    NA    NA     NA         NA      NA        NA        NA
## 1975    NA    NA      0         NA      NA        NA        NA
## 1976    NA    NA     NA         NA      NA        NA        NA
## 1977    NA    NA     NA         NA      NA        NA        NA
## 1978    NA    NA      1         NA      NA        NA        NA
## 1979    NA    NA     NA         NA      NA        NA        NA
## 1980    NA     0      1         NA      NA        NA        NA
## 1981     1     1      3         NA      NA        NA        NA
## 1982     0     0     NA         NA      NA        NA        NA
## 1983    NA    NA      2         NA      NA        NA        NA
## 1984     2    NA      1         NA      NA        NA        NA
## 1985     1     1      1         NA      NA        NA        NA
## 1986    NA    NA     NA         NA      NA        NA        NA
## 1987     0    NA      1         NA      NA        NA        NA
## 1988     2    NA     NA         NA      NA        NA        NA
## 1989     3     2      1         NA      NA        NA        NA
## 1990    NA     1      0         NA      NA        NA        NA
## 1991    NA     0      1         NA      NA        NA        NA
## 1992     3    NA      2         NA      NA        NA        NA
## 1993     2     3      4         NA      NA        NA        NA
## 1994    NA    NA     NA         NA      NA        NA        NA
## 1995    NA     0     NA         NA      NA        NA        NA
## 1996     2     0     NA         NA      NA        NA        NA
## 1997    NA    NA      2         NA      NA        NA        NA
## 1998    NA    NA     NA         NA      NA        NA        NA
## 1999     1    NA      0         NA      NA        NA        NA
## 2000     3     2      4         NA      NA        NA        NA
## 2001     0     0      0         NA      NA        NA        NA
## 2002     6     2      3         NA      NA        NA        NA
## 2003    NA    NA      1         NA      NA        NA        NA
## 2004     4     1      2         NA      NA        NA        NA
## 2005     0    NA     NA         NA      NA        NA        NA
## 2006    NA    20     NA         NA      NA        NA        NA
## 2007    NA    NA      0         NA      NA        NA        NA
## 2008    NA    NA     NA         NA      NA        NA        NA
## 2009     1     0     NA         NA      NA        NA        NA
## 2010    NA    NA     NA         NA      NA        NA        NA
## 2011    NA     1      1         NA      NA        NA        NA
## 2012     1    NA      1         NA      NA        NA        NA
## 2013    NA    NA      0         NA      NA        NA        NA
## 2014    NA    NA     NA         NA      NA        NA        NA
## 2015    NA     0     NA         NA      NA        NA        NA
## 2016    NA    NA     NA         NA      NA        NA        NA
## 2017     0    NA      1         NA      NA        NA        NA
## 2018    NA    NA      1         NA      NA        NA        NA
## 2019    NA    NA     NA         NA      NA        NA        NA
## 2020    NA    NA      1         NA      NA        NA        NA
## 2021    NA    NA     NA         NA      NA        NA        NA
## 2022    NA    NA      2         NA      NA        NA        NA
## 2023    NA    NA      2         NA      NA        NA        NA
## 2024    NA    NA      6         NA      NA        NA        NA
## 2025     0    NA      2         NA      NA        NA        NA
## 2026    NA     1     NA         NA      NA        NA        NA
## 2027    NA     2      8         NA      NA        NA        NA
## 2028    NA    NA     NA         NA      NA        NA        NA
## 2029     1     0     NA         NA      NA        NA        NA
## 2030    NA    NA     NA         NA      NA        NA        NA
## 2031    NA     0     NA         NA      NA        NA        NA
## 2032     4     2      3         NA      NA        NA        NA
## 2033    14    NA     NA         NA      NA        NA        NA
## 2034     2     3      5         NA      NA        NA        NA
## 2035     0     0      1         NA      NA        NA        NA
## 2036     0    NA     NA         NA      NA        NA        NA
## 2037     1    NA     NA         NA      NA        NA        NA
## 2038     2     1      4         NA      NA        NA        NA
## 2039     4    NA     NA         NA      NA        NA        NA
## 2040    NA    NA     NA         NA      NA        NA        NA
## 2041     1    NA     NA         NA      NA        NA        NA
## 2042     0    NA     NA         NA      NA        NA        NA
## 2043    NA    NA      1         NA      NA        NA        NA
## 2044    NA    NA     NA         NA      NA        NA        NA
## 2045    NA    NA     NA         NA      NA        NA        NA
## 2046     3    NA     NA         NA      NA        NA        NA
## 2047     4    NA     NA         NA      NA        NA        NA
## 2048     3    NA      2         NA      NA        NA        NA
## 2049     1    NA      5         NA      NA        NA        NA
## 2050    NA     1      1         NA      NA        NA        NA
## 2051     0    NA     NA         NA      NA        NA        NA
## 2052     0    NA     NA         NA      NA        NA        NA
## 2053    NA    NA     NA         NA      NA        NA        NA
## 2054    NA    NA     NA         NA      NA        NA        NA
## 2055     4     0     NA         NA      NA        NA        NA
## 2056     1    NA      0         NA      NA        NA        NA
## 2057     1    22      1         NA      NA        NA        NA
## 2058     1    NA      1         NA      NA        NA        NA
## 2059    NA    NA     NA         NA      NA         0        NA
## 2060    NA    NA     NA         NA      NA         0        NA
## 2061    NA    NA     NA         NA      NA         2         1
## 2062    NA    NA     NA         NA      NA        NA         1
## 2063    NA    NA     NA         NA      NA         0         0
## 2064    NA    NA     NA         NA      NA         0        NA
## 2065    NA    NA     NA         NA      NA         0        NA
## 2066    NA    NA     NA         NA      NA         0        NA
## 2067    NA    NA     NA         NA      NA         0        NA
## 2068    NA    NA     NA         NA      NA         0        NA
## 2069    NA    NA     NA         NA      NA         0        NA
## 2070    NA    NA     NA         NA      NA         0        NA
## 2071    NA    NA     NA         NA      NA         0        NA
## 2072    NA    NA     NA         NA      NA         0        NA
## 2073    NA    NA     NA         NA      NA         0        NA
## 2074    NA    NA     NA         NA      NA         0        NA
## 2075    NA    NA     NA         NA      NA         0        NA
## 2076    NA    NA     NA         NA      NA         0        NA
## 2077    NA    NA     NA         NA      NA         1         1
## 2078    NA    NA     NA         NA      NA         0        NA
## 2079    NA    NA     NA         NA      NA         0        NA
## 2080    NA    NA     NA         NA      NA         1        NA
## 2081    NA    NA     NA         NA      NA        NA         0
## 2082    NA    NA     NA         NA      NA         0        NA
## 2083    NA    NA     NA         NA      NA         0         0
## 2084    NA    NA     NA         NA      NA         0         0
## 2085    NA    NA     NA         NA      NA         0        NA
## 2086    NA    NA     NA         NA      NA         0        NA
## 2087    NA    NA     NA         NA      NA         0        NA
## 2088    NA    NA     NA         NA      NA         0        NA
## 2089    NA    NA     NA         NA      NA         0         0
## 2090    NA    NA     NA         NA      NA         0        NA
## 2091    NA    NA     NA         NA      NA         0        NA
## 2092    NA    NA     NA         NA      NA         0        NA
## 2093    NA    NA     NA         NA      NA         0        NA
## 2094    NA    NA     NA         NA      NA         0        NA
## 2095    NA    NA     NA         NA      NA         0         0
## 2096    NA    NA     NA         NA      NA         1        NA
## 2097    NA    NA     NA         NA      NA         0        NA
## 2098    NA    NA     NA         NA      NA         0        NA
## 2099    NA    NA     NA         NA      NA         1        NA
## 2100    NA    NA     NA         NA      NA         0        NA
## 2101    NA    NA     NA         NA      NA         0        NA
## 2102    NA    NA     NA         NA      NA         0        NA
## 2103    NA    NA     NA         NA      NA         0        NA
## 2104    NA    NA     NA         NA      NA         0        NA
## 2105    NA    NA     NA         NA      NA         0        NA
## 2106    NA    NA     NA         NA      NA         0        NA
## 2107    NA    NA     NA         NA      NA         0        NA
## 2108    NA    NA     NA         NA      NA         0        NA
## 2109    NA    NA     NA         NA      NA         0        NA
## 2110    NA    NA     NA         NA      NA         0        NA
## 2111    NA    NA     NA         NA      NA         0        NA
## 2112    NA    NA     NA         NA      NA         0        NA
## 2113    NA    NA     NA         NA      NA         0        NA
## 2114    NA    NA     NA         NA      NA         1        NA
## 2115    NA    NA     NA         NA      NA         0        NA
## 2116    NA    NA     NA         NA      NA         0        NA
## 2117    NA    NA     NA         NA      NA         0        NA
## 2118    NA    NA     NA         NA      NA         0        NA
## 2119    NA    NA     NA         NA      NA         0        NA
## 2120    NA    NA     NA         NA      NA         0        NA
## 2121    NA    NA     NA         NA      NA         0        NA
## 2122    NA    NA     NA         NA      NA         0        NA
## 2123    NA    NA     NA         NA      NA         0        NA
## 2124    NA    NA     NA         NA      NA         0        NA
## 2125    NA    NA     NA         NA      NA         0        NA
## 2126    NA    NA     NA         NA      NA         0        NA
## 2127    NA    NA     NA         NA      NA        NA         0
## 2128    NA     2     NA         NA      NA        NA        NA
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130    NA    NA     NA         NA      NA        NA        NA
## 2131    NA     0     NA         NA      NA        NA        NA
## 2132    NA    NA     NA         NA      NA        NA        NA
## 2133    NA    NA     NA         NA      NA        NA        NA
## 2134    NA    NA      0         NA      NA        NA        NA
## 2135    NA     0      0         NA      NA        NA        NA
## 2136    NA    NA     NA         NA      NA        NA        NA
## 2137    NA    NA     NA         NA      NA        NA        NA
## 2138    NA    NA     NA         NA      NA        NA        NA
## 2139    NA    NA     NA         NA      NA        NA        NA
## 2140    NA    NA      0         NA      NA        NA        NA
## 2141    NA     0     NA         NA      NA        NA        NA
## 2142    NA     0     NA         NA      NA        NA        NA
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     0     0     NA         NA      NA        NA        NA
## 2145    NA    NA     NA         NA      NA        NA        NA
## 2146    NA    NA     NA         NA      NA        NA        NA
## 2147    NA    NA     NA         NA      NA        NA        NA
## 2148     0    NA     NA         NA      NA        NA        NA
## 2149    NA    NA     NA         NA      NA        NA        NA
## 2150    NA     0     NA         NA      NA        NA        NA
## 2151    NA    NA     NA         NA      NA        NA        NA
## 2152    NA     0     NA         NA      NA        NA        NA
## 2153    NA    NA     NA         NA      NA        NA        NA
## 2154    NA    NA     NA         NA      NA        NA        NA
## 2155    NA    NA      0         NA      NA        NA        NA
## 2156    NA     0     NA         NA      NA        NA        NA
## 2157    NA    NA      0         NA      NA        NA        NA
## 2158    NA     0     NA         NA      NA        NA        NA
## 2159    NA    NA     NA         NA      NA        NA        NA
## 2160    NA    NA     NA         NA      NA        NA        NA
## 2161    NA    NA     NA         NA      NA        NA        NA
## 2162    NA    NA      0         NA      NA        NA        NA
## 2163    NA    NA     NA         NA      NA        NA        NA
## 2164    NA    NA      0         NA      NA        NA        NA
## 2165    NA    NA     NA         NA      NA        NA        NA
## 2166     0    NA     NA         NA      NA        NA        NA
## 2167    NA    NA     NA         NA      NA        NA        NA
## 2168    NA    NA      0         NA      NA        NA        NA
## 2169    NA    NA     NA         NA      NA        NA        NA
## 2170    NA    NA     NA         NA      NA        NA        NA
## 2171    NA    NA     NA         NA      NA        NA        NA
## 2172    NA    NA     NA         NA      NA        NA        NA
## 2173    NA    NA     NA         NA      NA        NA        NA
## 2174    NA    NA     NA         NA      NA        NA        NA
## 2175    NA    NA      0         NA      NA        NA        NA
## 2176    NA    NA     NA         NA      NA        NA        NA
## 2177    NA    NA      0         NA      NA        NA        NA
## 2178    NA    NA     NA         NA      NA        NA        NA
## 2179    NA    NA     NA         NA      NA        NA        NA
## 2180    NA    NA     NA         NA      NA        NA        NA
## 2181     0    NA     NA         NA      NA        NA        NA
## 2182    NA    NA     NA         NA      NA        NA        NA
## 2183    NA    NA      0         NA      NA        NA        NA
## 2184    NA    NA      0         NA      NA        NA        NA
## 2185    NA    NA     NA         NA      NA        NA        NA
## 2186    NA     0     NA         NA      NA        NA        NA
## 2187    NA    NA      0         NA      NA        NA        NA
## 2188    NA    NA      0         NA      NA        NA        NA
## 2189    NA    NA      0         NA      NA        NA        NA
## 2190    NA    NA      0         NA      NA        NA        NA
## 2191    NA    NA      0         NA      NA        NA        NA
## 2192    NA    NA     NA         NA      NA        NA        NA
## 2193    NA    NA      0         NA      NA        NA        NA
## 2194    NA    NA     NA         NA      NA        NA        NA
## 2195    NA     0     NA         NA      NA        NA        NA
## 2196    NA    NA     NA         NA      NA        NA        NA
## 2197     0     0      0         NA      NA        NA        NA
## 2198    NA    NA     NA         NA      NA        NA        NA
## 2199    NA    NA     NA         NA      NA        NA        NA
## 2200    NA    NA     NA         NA      NA        NA        NA
## 2201    NA    NA     NA         NA      NA        NA        NA
## 2202    NA     0     NA         NA      NA        NA        NA
## 2203     0    NA      0         NA      NA        NA        NA
## 2204    NA    NA     NA         NA      NA        NA        NA
## 2205    NA    NA     NA         NA      NA        NA        NA
## 2206    NA    NA     NA         NA      NA        NA        NA
## 2207    NA    NA     NA         NA      NA        NA        NA
## 2208    NA    NA     NA         NA      NA        NA        NA
## 2209     0    NA     NA         NA      NA        NA        NA
## 2210    NA     0     NA         NA      NA        NA        NA
## 2211    NA    NA     NA         NA      NA        NA        NA
## 2212    NA    NA     NA         NA      NA        NA        NA
## 2213    NA    NA     NA         NA      NA        NA        NA
## 2214    NA    NA     NA         NA      NA        NA        NA
## 2215    NA    NA      0         NA      NA        NA        NA
## 2216    NA    NA      0         NA      NA        NA        NA
## 2217    NA     0     NA         NA      NA        NA        NA
## 2218     0    NA     NA         NA      NA        NA        NA
## 2219    NA    NA      0         NA      NA        NA        NA
## 2220     0    NA     NA         NA      NA        NA        NA
## 2221    NA    NA      0         NA      NA        NA        NA
## 2222    NA    NA     NA         NA      NA        NA        NA
## 2223    NA    NA     NA         NA      NA        NA        NA
## 2224    NA    NA      0         NA      NA        NA        NA
## 2225    NA    NA      0         NA      NA        NA        NA
## 2226    NA    NA      0         NA      NA        NA        NA
## 2227     0    NA     NA         NA      NA        NA        NA
## 2228    NA    NA     NA         NA      NA        NA        NA
## 2229     0    NA     NA         NA      NA        NA        NA
## 2230    NA    NA      0         NA      NA        NA        NA
## 2231    NA     0      0         NA      NA        NA        NA
## 2232    NA    NA     NA         NA      NA        NA        NA
## 2233     0    NA     NA         NA      NA        NA        NA
## 2234    NA    NA     NA         NA      NA        NA        NA
## 2235    NA     0      0         NA      NA        NA        NA
## 2236    NA    NA     NA         NA      NA        NA        NA
## 2237    NA    NA     NA         NA      NA        NA        NA
## 2238    NA     0      0         NA      NA        NA        NA
## 2239    NA    NA     NA         NA      NA        NA        NA
## 2240    NA    NA     NA         NA      NA        NA        NA
## 2241    NA    NA     NA         NA      NA        NA        NA
## 2242    NA    NA     NA         NA      NA        NA        NA
## 2243    NA    NA      0         NA      NA        NA        NA
## 2244    NA    NA      0         NA      NA        NA        NA
## 2245    NA    NA     NA         NA      NA        NA        NA
## 2246    NA    NA      0         NA      NA        NA        NA
## 2247    NA    NA     NA         NA      NA        NA        NA
## 2248    NA    NA     NA         NA      NA        NA        NA
## 2249    NA    NA     NA         NA      NA        NA        NA
## 2250    NA    NA     NA         NA      NA        NA        NA
## 2251     0     1     NA         NA      NA        NA        NA
## 2252    NA    NA     NA         NA      NA        NA        NA
## 2253    NA     0      0         NA      NA        NA        NA
## 2254     0    NA     NA         NA      NA        NA        NA
## 2255    NA    NA     NA         NA      NA        NA        NA
## 2256    NA     0     NA         NA      NA        NA        NA
## 2257     0    NA     NA         NA      NA        NA        NA
## 2258     0    NA     NA         NA      NA        NA        NA
## 2259    NA    NA     NA         NA      NA        NA        NA
## 2260    NA    NA     NA         NA      NA        NA        NA
## 2261    NA    NA     NA         NA      NA        NA        NA
## 2262     0     0     NA         NA      NA        NA        NA
## 2263    NA     0     NA         NA      NA        NA        NA
## 2264    NA    NA     NA         NA      NA        NA        NA
## 2265    NA     0     NA         NA      NA        NA        NA
## 2266     0    NA     NA         NA      NA        NA        NA
## 2267     0    NA     NA         NA      NA        NA        NA
## 2268    NA    NA      0         NA      NA        NA        NA
## 2269    NA    NA     NA         NA      NA        NA        NA
## 2270    NA    NA     NA         NA      NA        NA        NA
## 2271    NA    NA     NA         NA      NA        NA        NA
## 2272    NA     0     NA         NA      NA        NA        NA
## 2273    NA     0     NA         NA      NA        NA        NA
## 2274    NA    NA     NA         NA      NA        NA        NA
## 2275    NA    NA     NA         NA      NA        NA        NA
## 2276    NA    NA     NA         NA      NA        NA        NA
## 2277    NA    NA     NA         NA      NA        NA        NA
## 2278    NA    NA     NA         NA      NA        NA        NA
## 2279    NA    NA     NA         NA      NA        NA        NA
## 2280    NA    NA     NA         NA      NA        NA        NA
## 2281    NA    NA     NA         NA      NA        NA        NA
## 2282    NA    NA      1         NA      NA        NA        NA
## 2283    NA    NA     NA         NA      NA        NA        NA
## 2284    NA    NA     NA         NA      NA        NA        NA
## 2285    NA    NA     NA         NA      NA        NA        NA
## 2286     0    NA     NA         NA      NA        NA        NA
## 2287    NA    NA     NA         NA      NA        NA        NA
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289     0    NA     NA         NA      NA        NA        NA
## 2290    NA    NA      0         NA      NA        NA        NA
## 2291    NA    NA      0         NA      NA        NA        NA
## 2292    NA    NA     NA         NA      NA        NA        NA
## 2293    NA    NA     NA         NA      NA        NA        NA
## 2294    NA    NA     NA         NA      NA        NA        NA
## 2295     0    NA      0         NA      NA        NA        NA
## 2296    NA     0     NA         NA      NA        NA        NA
## 2297     1    NA     NA         NA      NA        NA        NA
## 2298    NA    NA     NA         NA      NA        NA        NA
## 2299    NA    NA     NA         NA      NA         2        NA
## 2300    NA    NA     NA         NA      NA        NA         2
## 2301    NA    NA     NA         NA      NA         1         1
## 2302    NA    NA     NA         NA      NA        NA         1
## 2303    NA    NA     NA         NA      NA        18        13
## 2304    NA    NA     NA         NA      NA        21        19
## 2305    NA    NA     NA         NA      NA        NA         2
## 2306    NA    NA     NA         NA      NA         1         2
## 2307    NA    NA     NA         NA      NA         2        NA
## 2308    NA    NA     NA         NA      NA        19        21
## 2309    NA    NA     NA         NA      NA         2         2
## 2310    NA    NA     NA         NA      NA         6         1
## 2311    NA    NA     NA         NA      NA        11         6
## 2312    NA    NA     NA         NA      NA         2         7
## 2313    NA    NA     NA         NA      NA        11         3
## 2314    NA    NA     NA         NA      NA         4        NA
## 2315    NA    NA     NA         NA      NA         1        NA
## 2316    NA    NA     NA         NA      NA         5         1
## 2317    NA    NA     NA         NA      NA         3         1
## 2318    NA    NA     NA         NA      NA         0         0
## 2319    NA    NA     NA         NA      NA         3        NA
## 2320    NA    NA     NA         NA      NA        NA         3
## 2321    NA    NA     NA         NA      NA         5         3
## 2322    NA    NA     NA         NA      NA         7         5
## 2323    NA    NA     NA         NA      NA         3         1
## 2324    NA    NA     NA         NA      NA        NA         5
## 2325    NA    NA     NA         NA      NA         2         0
## 2326    NA    NA     NA         NA      NA         1         2
## 2327    NA    NA     NA         NA      NA         1        NA
## 2328    NA    NA     NA         NA      NA         2         2
## 2329    NA    NA     NA         NA      NA         4        NA
## 2330    NA    NA     NA         NA      NA         1         5
## 2331    NA    NA     NA         NA      NA         4         3
## 2332    NA    NA     NA         NA      NA         4         1
## 2333    NA    NA     NA         NA      NA         6        NA
## 2334    NA    NA     NA         NA      NA         1        NA
## 2335    NA    NA     NA         NA      NA         0         2
## 2336    NA    NA     NA         NA      NA        NA         1
## 2337    NA    NA     NA         NA      NA         9         7
## 2338    NA    NA     NA         NA      NA         6         4
## 2339    NA    NA     NA         NA      NA         1         1
## 2340    NA    NA     NA         NA      NA         4         1
## 2341    NA    NA     NA         NA      NA        NA         1
## 2342    NA    NA     NA         NA      NA         2         6
## 2343    NA    NA     NA         NA      NA         2         4
## 2344    NA    NA     NA         NA      NA         2         1
## 2345    NA    NA     NA         NA      NA         2         0
## 2346    NA    NA     NA         NA      NA         2        NA
## 2347    NA    NA     NA         NA      NA         1        NA
## 2348    NA    NA     NA         NA      NA         0         0
## 2349    NA    NA     NA         NA      NA         0        NA
## 2350    NA    NA     NA         NA      NA         0        NA
## 2351    NA    NA     NA         NA      NA         3         1
## 2352    NA    NA     NA         NA      NA         0         0
## 2353    NA    NA     NA         NA      NA         1         3
## 2354    NA    NA     NA         NA      NA         1         1
## 2355    NA     0     NA         NA      NA        NA        NA
## 2356     0    NA     NA         NA      NA        NA        NA
## 2357     1     1      0         NA      NA        NA        NA
## 2358    NA    NA     NA         NA      NA        NA        NA
## 2359    NA    NA     NA         NA      NA        NA        NA
## 2360    NA     1     NA         NA      NA        NA        NA
## 2361     5     7      8         NA      NA        NA        NA
## 2362     9    15      8         NA      NA        NA        NA
## 2363    NA    NA      2         NA      NA        NA        NA
## 2364     0     1      1         NA      NA        NA        NA
## 2365    NA    NA      0         NA      NA        NA        NA
## 2366    NA    NA      0         NA      NA        NA        NA
## 2367    NA     0      0         NA      NA        NA        NA
## 2368     1     2      1         NA      NA        NA        NA
## 2369    NA    NA     NA         NA      NA        NA        NA
## 2370     1     8     22         NA      NA        NA        NA
## 2371     3     2      8         NA      NA        NA        NA
## 2372     0    NA     NA         NA      NA        NA        NA
## 2373     0     2     NA         NA      NA        NA        NA
## 2374    NA     0     NA         NA      NA        NA        NA
## 2375     7     8      6         NA      NA        NA        NA
## 2376     2     2      3         NA      NA        NA        NA
## 2377    NA     0      0         NA      NA        NA        NA
## 2378     2     2      3         NA      NA        NA        NA
## 2379    NA    NA     NA         NA      NA        NA        NA
## 2380    NA     0      2         NA      NA        NA        NA
## 2381    NA     0     NA         NA      NA        NA        NA
## 2382    NA    NA      1         NA      NA        NA        NA
## 2383     2     3      6         NA      NA        NA        NA
## 2384     0    NA      0         NA      NA        NA        NA
## 2385     2     2      2         NA      NA        NA        NA
## 2386    NA    NA     NA         NA      NA        NA        NA
## 2387    NA    NA      4         NA      NA        NA        NA
## 2388    NA    NA      1         NA      NA        NA        NA
## 2389    NA    NA     NA         NA      NA        NA        NA
## 2390    NA    NA     NA         NA      NA        NA        NA
## 2391    NA    NA     NA         NA      NA        NA        NA
## 2392    NA     1     NA         NA      NA        NA        NA
## 2393     1     3      3         NA      NA        NA        NA
## 2394    NA    NA      0         NA      NA        NA        NA
## 2395     3    NA     NA         NA      NA        NA        NA
## 2396    NA    NA     NA         NA      NA        NA        NA
## 2397    NA    NA      1         NA      NA        NA        NA
## 2398     1     4      4         NA      NA        NA        NA
## 2399    NA    NA     NA         NA      NA        NA        NA
## 2400     0     2      0         NA      NA        NA        NA
## 2401    NA     0      5         NA      NA        NA        NA
## 2402    NA    NA      1         NA      NA        NA        NA
## 2403     1     1     NA         NA      NA        NA        NA
## 2404    NA    NA      0         NA      NA        NA        NA
## 2405     2     3      3         NA      NA        NA        NA
## 2406    NA     0     NA         NA      NA        NA        NA
## 2407    NA     0      3         NA      NA        NA        NA
## 2408    NA    NA      2         NA      NA        NA        NA
## 2409     3     6      6         NA      NA        NA        NA
## 2410     5     9      3         NA      NA        NA        NA
## 2411    NA    NA      2         NA      NA        NA        NA
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413     1    NA      1         NA      NA        NA        NA
## 2414    NA     0      0         NA      NA        NA        NA
## 2415    NA    NA      1         NA      NA        NA        NA
## 2416    NA     2      2         NA      NA        NA        NA
## 2417    NA    NA     NA         NA      NA        NA        NA
## 2418     0     0      0         NA      NA        NA        NA
## 2419    NA    NA     NA         NA      NA        NA        NA
## 2420     0     0      0         NA      NA        NA        NA
## 2421     5     2      2         NA      NA        NA        NA
## 2422    NA     0     NA         NA      NA        NA        NA
## 2423    NA     1      2         NA      NA        NA        NA
## 2424    NA     2      2         NA      NA        NA        NA
## 2425     2     1      1         NA      NA        NA        NA
## 2426    NA    NA     NA         NA      NA        NA        NA
## 2427     4     3      7         NA      NA        NA        NA
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429     1     1      1         NA      NA        NA        NA
## 2430     2     6      2         NA      NA        NA        NA
## 2431     2    NA     NA         NA      NA        NA        NA
## 2432     0    NA      3         NA      NA        NA        NA
## 2433    NA    NA      0         NA      NA        NA        NA
## 2434    NA     2      2         NA      NA        NA        NA
## 2435     1     0      1         NA      NA        NA        NA
## 2436    NA    NA      1         NA      NA        NA        NA
## 2437     2     2      2         NA      NA        NA        NA
## 2438    NA     0     NA         NA      NA        NA        NA
## 2439    NA     4     NA         NA      NA        NA        NA
## 2440    NA    NA      4         NA      NA        NA        NA
## 2441    NA    NA     NA         NA      NA        NA        NA
## 2442     6    NA      3         NA      NA        NA        NA
## 2443    NA    NA     NA         NA      NA        NA        NA
## 2444    NA    NA      0         NA      NA        NA        NA
## 2445    NA    NA     NA         NA      NA        NA        NA
## 2446    NA    NA      0         NA      NA        NA        NA
## 2447    NA    NA      0         NA      NA        NA        NA
## 2448    NA     1      2         NA      NA        NA        NA
## 2449     0    NA     NA         NA      NA        NA        NA
## 2450     3     5      4         NA      NA        NA        NA
## 2451     0    NA      1         NA      NA        NA        NA
## 2452     0    NA     NA         NA      NA        NA        NA
## 2453    NA    NA      0         NA      NA        NA        NA
## 2454     2     3      7         NA      NA        NA        NA
## 2455    NA    NA     NA         NA      NA        NA        NA
## 2456    NA    NA     NA         NA      NA        NA        NA
## 2457     2     3      4         NA      NA        NA        NA
## 2458    NA     0     NA         NA      NA        NA        NA
## 2459    NA    NA      3         NA      NA        NA        NA
## 2460    NA    NA      0         NA      NA        NA        NA
## 2461     1    NA     NA         NA      NA        NA        NA
## 2462     2     5     NA         NA      NA        NA        NA
## 2463    NA    NA     NA         NA      NA        NA        NA
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA     NA         NA      NA        NA        NA
## 2466    NA    NA     NA         NA      NA        NA        NA
## 2467    NA    NA      0         NA      NA        NA        NA
## 2468    NA     0     NA         NA      NA        NA        NA
## 2469    NA    NA     NA         NA      NA        NA        NA
## 2470    NA     0     NA         NA      NA        NA        NA
## 2471     0    NA     NA         NA      NA        NA        NA
## 2472     2    NA     NA         NA      NA        NA        NA
## 2473    NA    NA      0         NA      NA        NA        NA
## 2474    NA    NA     NA         NA      NA        NA        NA
## 2475     0    NA     NA         NA      NA        NA        NA
## 2476    NA    NA      0         NA      NA        NA        NA
## 2477    NA     0     NA         NA      NA        NA        NA
## 2478    NA    NA      0         NA      NA        NA        NA
## 2479    NA    NA     NA         NA      NA        NA        NA
## 2480    NA    NA     NA         NA      NA        NA        NA
## 2481    NA    NA     NA         NA      NA        NA        NA
## 2482    NA     1      1         NA      NA        NA        NA
## 2483    NA    NA     NA         NA      NA        NA        NA
## 2484    NA    NA     NA         NA      NA        NA        NA
## 2485    NA    NA     NA         NA      NA        NA        NA
## 2486    NA    NA     NA         NA      NA        NA        NA
## 2487    NA    NA     NA         NA      NA        NA        NA
## 2488    NA     0     NA         NA      NA        NA        NA
## 2489    NA    NA     NA         NA      NA        NA        NA
## 2490     0    NA      1         NA      NA        NA        NA
## 2491    NA     0     NA         NA      NA        NA        NA
## 2492    NA    NA      0         NA      NA        NA        NA
## 2493    NA    NA      0         NA      NA        NA        NA
## 2494    NA    NA     NA         NA      NA        NA        NA
## 2495    NA    NA     NA         NA      NA        NA        NA
## 2496    NA    NA     NA         NA      NA        NA        NA
## 2497    NA    NA     NA         NA      NA        NA        NA
## 2498    NA    NA     NA         NA      NA        NA        NA
## 2499    NA    NA      0         NA      NA        NA        NA
## 2500    NA    NA     NA         NA      NA        NA        NA
## 2501    NA    NA     NA         NA      NA        NA        NA
## 2502    NA    NA     NA         NA      NA        NA        NA
## 2503    NA    NA     NA         NA      NA        NA        NA
## 2504    NA     0     NA         NA      NA        NA        NA
## 2505    NA     0     NA         NA      NA        NA        NA
## 2506    NA     1     NA         NA      NA        NA        NA
## 2507    NA    NA     NA         NA      NA        NA        NA
## 2508    NA     0     NA         NA      NA        NA        NA
## 2509    NA    NA     NA         NA      NA        NA        NA
## 2510     0    NA     NA         NA      NA        NA        NA
## 2511    NA    NA      0         NA      NA        NA        NA
## 2512    NA    NA     NA         NA      NA        NA        NA
## 2513     1     4      5         NA      NA        NA        NA
## 2514    NA    NA     NA         NA      NA        NA        NA
## 2515     1     0      0         NA      NA        NA        NA
## 2516    NA     0     NA         NA      NA        NA        NA
## 2517    NA    NA      0         NA      NA        NA        NA
## 2518    NA     0     NA         NA      NA        NA        NA
## 2519    NA     1     NA         NA      NA        NA        NA
## 2520    NA    NA     NA         NA      NA        NA        NA
## 2521     0    NA     NA         NA      NA        NA        NA
## 2522     0     0     NA         NA      NA        NA        NA
## 2523    NA    NA     NA         NA      NA        NA        NA
## 2524     0    NA     NA         NA      NA        NA        NA
## 2525    NA    NA     NA         NA      NA        NA        NA
## 2526    NA    NA      0         NA      NA        NA        NA
## 2527    NA    NA     NA         NA      NA        NA        NA
## 2528    NA    NA     NA         NA      NA        NA        NA
## 2529    NA     0     NA         NA      NA        NA        NA
## 2530    NA    NA     NA         NA      NA        NA        NA
## 2531    NA    NA      0         NA      NA        NA        NA
## 2532    NA    NA     NA         NA      NA        NA        NA
## 2533    NA    NA     NA         NA      NA        NA        NA
## 2534    NA    NA     NA         NA      NA        NA        NA
## 2535    NA    NA     NA         NA      NA        NA        NA
## 2536    NA    NA      1         NA      NA        NA        NA
## 2537     0     0     NA         NA      NA        NA        NA
## 2538    NA    NA      1         NA      NA        NA        NA
## 2539    NA    NA     NA         NA      NA        NA        NA
## 2540     0     0     NA         NA      NA        NA        NA
## 2541    NA    NA     NA         NA      NA        NA        NA
## 2542    NA     1      1         NA      NA        NA        NA
## 2543    NA    NA     NA         NA      NA        NA        NA
## 2544     0    NA     NA         NA      NA        NA        NA
## 2545     0    NA      0         NA      NA        NA        NA
## 2546     0    NA     NA         NA      NA        NA        NA
## 2547    NA     0      0         NA      NA        NA        NA
## 2548    NA     0      0         NA      NA        NA        NA
## 2549     1     2      1         NA      NA        NA        NA
## 2550    NA    NA      0         NA      NA        NA        NA
## 2551    NA    NA      0         NA      NA        NA        NA
## 2552     0    NA     NA         NA      NA        NA        NA
## 2553    NA    NA      0         NA      NA        NA        NA
## 2554    NA     0      0         NA      NA        NA        NA
## 2555    NA    NA      0         NA      NA        NA        NA
## 2556     0    NA     NA         NA      NA        NA        NA
## 2557    NA     0     NA         NA      NA        NA        NA
## 2558    NA    NA      0         NA      NA        NA        NA
## 2559    NA     0     NA         NA      NA        NA        NA
## 2560     0    NA      0         NA      NA        NA        NA
## 2561     0    NA     NA         NA      NA        NA        NA
## 2562    NA     0     NA         NA      NA        NA        NA
## 2563    NA    NA     NA         NA      NA        NA        NA
## 2564    NA     0     NA         NA      NA        NA        NA
## 2565    NA    NA     NA         NA      NA        NA        NA
## 2566    NA     0      1         NA      NA        NA        NA
## 2567     1     0      0         NA      NA        NA        NA
## 2568    NA     1      0         NA      NA        NA        NA
## 2569    NA    NA      0         NA      NA        NA        NA
## 2570    NA    NA     NA         NA      NA        NA        NA
## 2571    NA     0      0         NA      NA        NA        NA
## 2572    NA    NA      0         NA      NA        NA        NA
## 2573    NA     0     NA         NA      NA        NA        NA
## 2574    NA     0     NA         NA      NA        NA        NA
## 2575    NA     0     NA         NA      NA        NA        NA
## 2576    NA     0     NA         NA      NA        NA        NA
## 2577    NA     0     NA         NA      NA        NA        NA
## 2578    NA    NA     NA         NA      NA        NA        NA
## 2579     2     2      1         NA      NA        NA        NA
## 2580     0    NA     NA         NA      NA        NA        NA
## 2581    NA    NA      0         NA      NA        NA        NA
## 2582     0    NA     NA         NA      NA        NA        NA
## 2583    NA     0      0         NA      NA        NA        NA
## 2584     0    NA      0         NA      NA        NA        NA
## 2585    NA    NA     NA         NA      NA        NA        NA
## 2586    NA    NA     NA         NA      NA        NA        NA
## 2587     0    NA     NA         NA      NA        NA        NA
## 2588    NA    NA     NA         NA      NA        NA        NA
## 2589    NA    NA     NA         NA      NA        NA        NA
## 2590     0    NA     NA         NA      NA        NA        NA
## 2591    NA     0     NA         NA      NA        NA        NA
## 2592    NA    NA     NA         NA      NA        NA        NA
## 2593    NA    NA     NA         NA      NA        NA        NA
## 2594    NA    NA      0         NA      NA        NA        NA
## 2595    NA    NA     NA         NA      NA        NA        NA
## 2596    NA    NA     NA         NA      NA        NA        NA
## 2597     2     1     NA         NA      NA        NA        NA
## 2598     0    NA      0         NA      NA        NA        NA
## 2599    NA    NA     NA         NA      NA        NA        NA
## 2600     1    NA      2         NA      NA        NA        NA
## 2601    NA    NA     NA         NA      NA        NA        NA
## 2602    NA    NA      0         NA      NA        NA        NA
## 2603    NA    NA     NA         NA      NA        NA        NA
## 2604    NA    NA     NA         NA      NA        NA        NA
## 2605    NA    NA     NA         NA      NA        NA        NA
## 2606    NA    NA     NA         NA      NA        NA        NA
## 2607    NA    NA      0         NA      NA        NA        NA
## 2608     0    NA     NA         NA      NA        NA        NA
## 2609     0    NA      0         NA      NA        NA        NA
## 2610     0    NA     NA         NA      NA        NA        NA
## 2611     0     0      0         NA      NA        NA        NA
## 2612    NA    NA      0         NA      NA        NA        NA
## 2613    NA     0     NA         NA      NA        NA        NA
## 2614    NA     0      0         NA      NA        NA        NA
## 2615    NA    NA     NA         NA      NA        NA        NA
## 2616     0     0      1         NA      NA        NA        NA
## 2617     1    NA      0         NA      NA        NA        NA
## 2618    NA    NA     NA         NA      NA        NA        NA
## 2619     0    NA     NA         NA      NA        NA        NA
## 2620    NA    NA     NA         NA      NA        NA        NA
## 2621    NA     0     NA         NA      NA        NA        NA
## 2622    NA    NA      0         NA      NA        NA        NA
## 2623    NA    NA     NA         NA      NA        NA        NA
## 2624    NA     0     NA         NA      NA        NA        NA
## 2625    NA    NA     NA         NA      NA        NA        NA
## 2626    NA     0     NA         NA      NA        NA        NA
## 2627    NA    NA     NA         NA      NA        NA        NA
## 2628    NA    NA     NA         NA      NA        NA        NA
## 2629    NA    NA      0         NA      NA        NA        NA
## 2630    NA    NA     NA         NA      NA        NA        NA
## 2631     0    NA     NA         NA      NA        NA        NA
## 2632    NA    NA     NA         NA      NA        NA        NA
## 2633     0     1      0         NA      NA        NA        NA
## 2634    NA    NA     NA         NA      NA        NA        NA
## 2635    NA    NA     NA         NA      NA        NA        NA
## 2636    NA     0     NA         NA      NA        NA        NA
## 2637    NA     0     NA         NA      NA        NA        NA
## 2638    NA    NA     NA         NA      NA        NA        NA
## 2639    NA    NA      0         NA      NA        NA        NA
## 2640    NA    NA     NA         NA      NA        NA        NA
## 2641     0    NA     NA         NA      NA        NA        NA
## 2642    NA     2      1         NA      NA        NA        NA
## 2643    NA     0     NA         NA      NA        NA        NA
## 2644     0    NA     NA         NA      NA        NA        NA
## 2645     0    NA     NA         NA      NA        NA        NA
## 2646    NA    NA      0         NA      NA        NA        NA
## 2647    NA    NA     NA         NA      NA        NA        NA
## 2648    NA    NA     NA         NA      NA        NA        NA
## 2649    NA    NA      0         NA      NA        NA        NA
## 2650    NA    NA      0         NA      NA        NA        NA
## 2651    NA    NA      0         NA      NA        NA        NA
## 2652     0    NA      0         NA      NA        NA        NA
## 2653    NA    NA     NA         NA      NA        NA        NA
## 2654    NA    NA      0         NA      NA        NA        NA
## 2655    NA    NA     NA         NA      NA        NA        NA
## 2656    NA    NA      0         NA      NA        NA        NA
## 2657    NA    NA      0         NA      NA        NA        NA
## 2658    NA     0     NA         NA      NA        NA        NA
## 2659    NA    NA     NA         NA      NA        NA        NA
## 2660     0    NA     NA         NA      NA        NA        NA
## 2661    NA    NA      0         NA      NA        NA        NA
## 2662    NA    NA      0         NA      NA        NA        NA
## 2663    NA    NA      0         NA      NA        NA        NA
## 2664    NA     0     NA         NA      NA        NA        NA
## 2665    NA    NA     NA         NA      NA        NA        NA
## 2666     0    NA     NA         NA      NA        NA        NA
## 2667    NA    NA     NA         NA      NA        NA        NA
## 2668    NA     0     NA         NA      NA        NA        NA
## 2669    NA     0     NA         NA      NA        NA        NA
## 2670     0    NA     NA         NA      NA        NA        NA
## 2671    NA    NA     NA         NA      NA        NA        NA
## 2672    NA     1      1         NA      NA        NA        NA
## 2673    NA    NA     NA         NA      NA        NA        NA
## 2674    NA    NA     NA         NA      NA        NA        NA
## 2675    NA    NA      0         NA      NA        NA        NA
## 2676    NA    NA      0         NA      NA        NA        NA
## 2677    NA     0     NA         NA      NA        NA        NA
## 2678    NA    NA     NA         NA      NA        NA        NA
## 2679    NA    NA     NA         NA      NA        NA        NA
## 2680    NA    NA      0         NA      NA        NA        NA
## 2681    NA    NA     NA         NA      NA        NA        NA
## 2682    NA    NA      0         NA      NA        NA        NA
## 2683    NA     1      2         NA      NA        NA        NA
## 2684     0    NA     NA         NA      NA        NA        NA
## 2685    NA    NA     NA         NA      NA        NA        NA
## 2686    NA    NA     NA         NA      NA        NA        NA
## 2687    NA    NA     NA         NA      NA        NA        NA
## 2688     2     0      1         NA      NA        NA        NA
## 2689     0    NA     NA         NA      NA        NA        NA
## 2690    NA    NA      0         NA      NA        NA        NA
## 2691     0    NA      0         NA      NA        NA        NA
## 2692     0    NA      0         NA      NA        NA        NA
## 2693     0    NA      0         NA      NA        NA        NA
## 2694     0     1      1         NA      NA        NA        NA
## 2695    NA     0     NA         NA      NA        NA        NA
## 2696    NA     0     NA         NA      NA        NA        NA
## 2697     0    NA      0         NA      NA        NA        NA
## 2698    NA    NA     NA         NA      NA        NA        NA
## 2699    NA     2      1         NA      NA        NA        NA
## 2700    NA    NA     NA         NA      NA        NA        NA
## 2701    NA     0     NA         NA      NA        NA        NA
## 2702    NA    NA     NA         NA      NA        NA        NA
## 2703    NA     0     NA         NA      NA        NA        NA
## 2704    NA     0     NA         NA      NA        NA        NA
## 2705    NA     0     NA         NA      NA        NA        NA
## 2706    NA     0     NA         NA      NA        NA        NA
## 2707    NA     0     NA         NA      NA        NA        NA
## 2708    NA     0     NA         NA      NA        NA        NA
## 2709    NA    NA     NA         NA      NA        NA        NA
## 2710     0    NA     NA         NA      NA        NA        NA
## 2711    NA    NA     NA         NA      NA        NA        NA
## 2712    NA    NA     NA         NA      NA        NA        NA
## 2713     0    NA      0         NA      NA        NA        NA
## 2714    NA    NA     NA         NA      NA        NA        NA
## 2715    NA    NA     NA         NA      NA        NA        NA
## 2716    NA    NA     NA         NA      NA        NA        NA
## 2717    NA    NA     NA         NA      NA        NA        NA
## 2718    NA     0     NA         NA      NA        NA        NA
## 2719    NA     0      0         NA      NA        NA        NA
## 2720    NA    NA     NA         NA      NA        NA        NA
## 2721    NA    NA     NA         NA      NA        NA        NA
## 2722    NA    NA     NA         NA      NA        NA        NA
## 2723    NA    NA     NA         NA      NA        NA        NA
## 2724    NA    NA     NA         NA      NA        NA        NA
## 2725    NA    NA     NA         NA      NA        NA        NA
## 2726    NA     1     NA         NA      NA        NA        NA
## 2727    NA     0     NA         NA      NA        NA        NA
## 2728     0     1     NA         NA      NA        NA        NA
## 2729     1     1      0         NA      NA        NA        NA
## 2730    NA    NA      1         NA      NA        NA        NA
## 2731    NA    NA      0         NA      NA        NA        NA
## 2732    NA    NA     NA         NA      NA        NA        NA
## 2733    NA    NA      0         NA      NA        NA        NA
## 2734     0    NA     NA         NA      NA        NA        NA
## 2735     0    NA     NA         NA      NA        NA        NA
## 2736     0    NA     NA         NA      NA        NA        NA
## 2737    NA     0     NA         NA      NA        NA        NA
## 2738    NA    NA     NA         NA      NA        NA        NA
## 2739    NA    NA     NA         NA      NA        NA        NA
## 2740    NA    NA      0         NA      NA        NA        NA
## 2741    NA    NA     NA         NA      NA        NA        NA
## 2742    NA     0     NA         NA      NA        NA        NA
## 2743     0     1      1         NA      NA        NA        NA
## 2744    NA     0     NA         NA      NA        NA        NA
## 2745    NA    NA     NA         NA      NA        NA        NA
## 2746     0    NA      1         NA      NA        NA        NA
## 2747    NA    NA     NA         NA      NA        NA        NA
## 2748    NA    NA     NA         NA      NA        NA        NA
## 2749    NA    NA      0         NA      NA        NA        NA
## 2750    NA    NA     NA         NA      NA        NA        NA
## 2751    NA     0      0         NA      NA        NA        NA
## 2752     0     0     NA         NA      NA        NA        NA
## 2753    NA    NA      0         NA      NA        NA        NA
## 2754    NA     0      2         NA      NA        NA        NA
## 2755     0    NA      0         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA        NA
## 2757     2    NA     NA         NA      NA        NA        NA
## 2758     0    NA     NA         NA      NA        NA        NA
## 2759    NA     0     NA         NA      NA        NA        NA
## 2760    NA    NA      0         NA      NA        NA        NA
## 2761     0    NA     NA         NA      NA        NA        NA
## 2762    NA    NA      0         NA      NA        NA        NA
## 2763     0    NA     NA         NA      NA        NA        NA
## 2764     1    NA     NA         NA      NA        NA        NA
## 2765    NA    NA      0         NA      NA        NA        NA
## 2766    NA    NA      0         NA      NA        NA        NA
## 2767    NA     0     NA         NA      NA        NA        NA
## 2768    NA    NA     NA         NA      NA        NA        NA
## 2769    NA    NA      0         NA      NA        NA        NA
## 2770    NA    NA     NA         NA      NA        NA        NA
## 2771     1     1      3         NA      NA        NA        NA
## 2772     0    NA     NA         NA      NA        NA        NA
## 2773     0     1     NA         NA      NA        NA        NA
## 2774     1    NA      0         NA      NA        NA        NA
## 2775    NA    NA     NA         NA      NA        NA        NA
## 2776    NA     0      0         NA      NA        NA        NA
## 2777    NA    NA     NA         NA      NA        NA        NA
## 2778    NA    NA      0         NA      NA        NA        NA
## 2779     1     1      0         NA      NA        NA        NA
## 2780     1     1      2         NA      NA        NA        NA
## 2781    NA    NA      0         NA      NA        NA        NA
## 2782     0    NA     NA         NA      NA        NA        NA
## 2783    NA     0     NA         NA      NA        NA        NA
## 2784     1     1     NA         NA      NA        NA        NA
## 2785    NA     2      0         NA      NA        NA        NA
## 2786     0    NA     NA         NA      NA        NA        NA
## 2787    NA    NA     NA         NA      NA        NA        NA
## 2788     0    NA     NA         NA      NA        NA        NA
## 2789     1    NA      0         NA      NA        NA        NA
## 2790     4    NA     NA         NA      NA        NA        NA
## 2791    NA    NA     NA         NA      NA        NA        NA
## 2792     0    NA      2         NA      NA        NA        NA
## 2793    NA    NA     NA         NA      NA        NA        NA
## 2794    NA     0      0         NA      NA        NA        NA
## 2795     2    NA      2         NA      NA        NA        NA
## 2796     0     0     NA         NA      NA        NA        NA
## 2797    NA     1     NA         NA      NA        NA        NA
## 2798    NA     0     NA         NA      NA        NA        NA
## 2799     0    NA     NA         NA      NA        NA        NA
## 2800     0    NA     NA         NA      NA        NA        NA
## 2801    NA     2     NA         NA      NA        NA        NA
## 2802     4     0      1         NA      NA        NA        NA
## 2803     2     1      3         NA      NA        NA        NA
## 2804     0    NA     NA         NA      NA        NA        NA
## 2805     4    NA     NA         NA      NA        NA        NA
## 2806    NA     2      2         NA      NA        NA        NA
## 2807    NA    NA     NA         NA      NA        NA        NA
## 2808     6     3     10         NA      NA        NA        NA
## 2809    NA    NA      0         NA      NA        NA        NA
## 2810     0    NA     NA         NA      NA        NA        NA
## 2811    NA    NA      0         NA      NA        NA        NA
## 2812     1     0      0         NA      NA        NA        NA
## 2813    NA    NA     NA         NA      NA        NA        NA
## 2814    NA    NA     NA         NA      NA        NA        NA
## 2815    NA    NA     NA         NA      NA        NA        NA
## 2816    NA    NA     NA         NA      NA        NA        NA
## 2817    NA    NA     NA         NA      NA        NA        NA
## 2818     1     2      2         NA      NA        NA        NA
## 2819    NA    NA      1         NA      NA        NA        NA
## 2820     1    NA     NA         NA      NA        NA        NA
## 2821    NA    NA      0         NA      NA        NA        NA
## 2822    NA    NA      0         NA      NA        NA        NA
## 2823     0    NA      0         NA      NA        NA        NA
## 2824    NA    NA      0         NA      NA        NA        NA
## 2825    NA     2      1         NA      NA        NA        NA
## 2826    NA    NA      0         NA      NA        NA        NA
## 2827    NA    NA      1         NA      NA        NA        NA
## 2828    NA    NA      1         NA      NA        NA        NA
## 2829    NA    NA     NA         NA      NA        NA        NA
## 2830    NA     0      0         NA      NA        NA        NA
## 2831     1    NA     NA         NA      NA        NA        NA
## 2832     5     6      2         NA      NA        NA        NA
## 2833     2     2      2         NA      NA        NA        NA
## 2834     3     7      8         NA      NA        NA        NA
## 2835    NA    NA     NA         NA      NA        NA        NA
## 2836     1    NA      1         NA      NA        NA        NA
## 2837     2     1      2         NA      NA        NA        NA
## 2838     0    NA     NA         NA      NA        NA        NA
## 2839    NA    NA      0         NA      NA        NA        NA
## 2840     2    NA     NA         NA      NA        NA        NA
## 2841     0    NA      0         NA      NA        NA        NA
## 2842    NA    NA      1         NA      NA        NA        NA
## 2843     0     0     NA         NA      NA        NA        NA
## 2844     1    NA     NA         NA      NA        NA        NA
## 2845     0    NA      0         NA      NA        NA        NA
## 2846    NA    NA     NA         NA      NA        NA        NA
## 2847     0    NA     NA         NA      NA        NA        NA
## 2848     1     1     NA         NA      NA        NA        NA
## 2849    NA     2      1         NA      NA        NA        NA
## 2850     0     2     NA         NA      NA        NA        NA
## 2851    NA    NA     NA         NA      NA        NA        NA
## 2852    NA    NA     NA         NA      NA        NA        NA
## 2853    NA    NA     NA         NA      NA        NA        NA
## 2854    NA    NA      0         NA      NA        NA        NA
## 2855    NA     0     NA         NA      NA        NA        NA
## 2856     0     0     NA         NA      NA        NA        NA
## 2857    NA     0     NA         NA      NA        NA        NA
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859     0    NA     NA         NA      NA        NA        NA
## 2860    NA    NA     NA         NA      NA        NA        NA
## 2861    NA    NA      0         NA      NA        NA        NA
## 2862    NA     0     NA         NA      NA        NA        NA
## 2863    NA     2     NA         NA      NA        NA        NA
## 2864    NA     0     NA         NA      NA        NA        NA
## 2865     1    NA     NA         NA      NA        NA        NA
## 2866    NA    NA      0         NA      NA        NA        NA
## 2867    NA    NA     NA         NA      NA        NA        NA
## 2868     0    NA     NA         NA      NA        NA        NA
## 2869    NA    NA     NA         NA      NA        NA        NA
## 2870    NA    NA     NA         NA      NA        NA        NA
## 2871    NA    NA      0         NA      NA        NA        NA
## 2872     2     3      3         NA      NA        NA        NA
## 2873     0    NA     NA         NA      NA        NA        NA
## 2874     1     0      1         NA      NA        NA        NA
## 2875    NA    NA     NA         NA      NA        NA        NA
## 2876    NA     1     NA         NA      NA        NA        NA
## 2877     0    NA     NA         NA      NA        NA        NA
## 2878     1    NA      0         NA      NA        NA        NA
## 2879    NA    NA     10         NA      NA        NA        NA
## 2880     1    NA      1         NA      NA        NA        NA
## 2881    NA    NA     NA         NA      NA        NA        NA
## 2882     0    NA     NA         NA      NA        NA        NA
## 2883     2     2      2         NA      NA        NA        NA
## 2884     1     2      2         NA      NA        NA        NA
## 2885    NA    NA      1         NA      NA        NA        NA
## 2886    NA    NA     NA         NA      NA        NA        NA
## 2887    NA    NA     NA         NA      NA        NA        NA
## 2888    NA     0     NA         NA      NA        NA        NA
## 2889     2     1      1         NA      NA        NA        NA
## 2890     1     2      1         NA      NA        NA        NA
## 2891    NA     0     NA         NA      NA        NA        NA
## 2892     1    NA      1         NA      NA        NA        NA
## 2893    NA     0      0         NA      NA        NA        NA
## 2894    NA    NA      1         NA      NA        NA        NA
## 2895    NA     1      0         NA      NA        NA        NA
## 2896    NA    NA      0         NA      NA        NA        NA
## 2897    NA     0     NA         NA      NA        NA        NA
## 2898     0     0     NA         NA      NA        NA        NA
## 2899    NA     0     NA         NA      NA        NA        NA
## 2900    NA     1      2         NA      NA        NA        NA
## 2901     0    NA      0         NA      NA        NA        NA
## 2902    NA    NA      0         NA      NA        NA        NA
## 2903     0    NA     NA         NA      NA        NA        NA
## 2904     2     2      2         NA      NA        NA        NA
## 2905     3     5      3         NA      NA        NA        NA
## 2906    NA    NA     NA         NA      NA        NA        NA
## 2907     0    NA     NA         NA      NA        NA        NA
## 2908    NA    NA      0         NA      NA        NA        NA
## 2909     2     2      4         NA      NA        NA        NA
## 2910    NA     0      0         NA      NA        NA        NA
## 2911    NA    NA      0         NA      NA        NA        NA
## 2912     0    NA      0         NA      NA        NA        NA
## 2913     0     0     NA         NA      NA        NA        NA
## 2914    NA    NA     NA         NA      NA        NA        NA
## 2915     0    NA     NA         NA      NA        NA        NA
## 2916    NA    NA      0         NA      NA        NA        NA
## 2917    NA    NA     NA         NA      NA        NA        NA
## 2918    NA     1     NA         NA      NA        NA        NA
## 2919    NA    NA      0         NA      NA        NA        NA
## 2920     1     5      1         NA      NA        NA        NA
## 2921     0    NA     NA         NA      NA        NA        NA
## 2922     1     0     NA         NA      NA        NA        NA
## 2923     1     2     NA         NA      NA        NA        NA
## 2924    NA     1     NA         NA      NA        NA        NA
## 2925     1     6      0         NA      NA        NA        NA
## 2926    NA     0     NA         NA      NA        NA        NA
## 2927    NA     0     NA         NA      NA        NA        NA
## 2928    NA     2     NA         NA      NA        NA        NA
## 2929     1    NA     NA         NA      NA        NA        NA
## 2930     0    NA      1         NA      NA        NA        NA
## 2931    NA     4      0         NA      NA        NA        NA
## 2932     2    NA     NA         NA      NA        NA        NA
## 2933    NA     2      3         NA      NA        NA        NA
## 2934    NA    NA     NA         NA      NA        NA        NA
## 2935    NA     0     NA         NA      NA        NA        NA
## 2936    NA    NA     NA         NA      NA        NA        NA
## 2937     2    NA      0         NA      NA        NA        NA
## 2938    NA    NA      0         NA      NA        NA        NA
## 2939     3     3     NA         NA      NA        NA        NA
## 2940     1    NA      0         NA      NA        NA        NA
## 2941    NA    NA      0         NA      NA        NA        NA
## 2942     0    NA     NA         NA      NA        NA        NA
## 2943     2    NA      0         NA      NA        NA        NA
## 2944    NA    NA     NA         NA      NA        NA        NA
## 2945    NA    NA     NA         NA      NA        NA        NA
## 2946    NA     3      1         NA      NA        NA        NA
## 2947     1    NA      0         NA      NA        NA        NA
## 2948    NA    NA     NA         NA      NA        NA        NA
## 2949     0    NA      2         NA      NA        NA        NA
## 2950    NA     0     NA         NA      NA        NA        NA
## 2951     0    NA     NA         NA      NA        NA        NA
## 2952    NA    NA     NA         NA      NA        NA        NA
## 2953    NA     1      0         NA      NA        NA        NA
## 2954    NA    NA     NA         NA      NA        NA        NA
## 2955    NA     0      0         NA      NA        NA        NA
## 2956     0     0      1         NA      NA        NA        NA
## 2957     1    NA      1         NA      NA        NA        NA
## 2958     0     0      2         NA      NA        NA        NA
## 2959    NA    NA      1         NA      NA        NA        NA
## 2960    NA     3      1         NA      NA        NA        NA
## 2961    NA    NA     NA         NA      NA        NA        NA
## 2962     0     3      3         NA      NA        NA        NA
## 2963     0     1     NA         NA      NA        NA        NA
## 2964    NA    NA     NA         NA      NA        NA        NA
## 2965    NA    NA     NA         NA      NA        NA        NA
## 2966    NA    NA     NA         NA      NA        NA        NA
## 2967    NA     0     NA         NA      NA        NA        NA
## 2968    NA    NA     NA         NA      NA        NA        NA
## 2969     0    NA     NA         NA      NA        NA        NA
## 2970     0    NA     NA         NA      NA        NA        NA
## 2971     1     1      1         NA      NA        NA        NA
## 2972    NA    NA     NA         NA      NA        NA        NA
## 2973    NA    NA     NA         NA      NA        NA        NA
## 2974     0    NA     NA         NA      NA        NA        NA
## 2975    NA    NA     NA         NA      NA        NA        NA
## 2976    NA    NA      0         NA      NA        NA        NA
## 2977    NA     2      1         NA      NA        NA        NA
## 2978     0    NA     NA         NA      NA        NA        NA
## 2979    NA    NA     NA         NA      NA        NA        NA
## 2980     2     1      1         NA      NA        NA        NA
## 2981    NA     0      1         NA      NA        NA        NA
## 2982    NA    NA     NA         NA      NA        NA        NA
## 2983     1     1      1         NA      NA        NA        NA
## 2984    NA    NA     NA         NA      NA        NA        NA
## 2985     1     0      1         NA      NA        NA        NA
## 2986     0     0      0         NA      NA        NA        NA
## 2987     1    NA      0         NA      NA        NA        NA
## 2988     0     0     NA         NA      NA        NA        NA
## 2989     1     0     NA         NA      NA        NA        NA
## 2990    NA     1     NA         NA      NA        NA        NA
## 2991     2     3      4         NA      NA        NA        NA
## 2992     1     1     NA         NA      NA        NA        NA
## 2993    NA    NA      4         NA      NA        NA        NA
## 2994    NA     0     NA         NA      NA        NA        NA
## 2995    NA    NA      2         NA      NA        NA        NA
## 2996     0     1     NA         NA      NA        NA        NA
## 2997    NA    NA     NA         NA      NA        NA        NA
## 2998     2     1      2         NA      NA        NA        NA
## 2999    NA     0     NA         NA      NA        NA        NA
## 3000     3     3     NA         NA      NA        NA        NA
## 3001     3     3      3         NA      NA        NA        NA
## 3002    NA    NA     NA         NA      NA        NA        NA
## 3003    NA     2      3         NA      NA        NA        NA
## 3004    NA    NA      1         NA      NA        NA        NA
## 3005    NA     0      1         NA      NA        NA        NA
## 3006    NA    NA      0         NA      NA        NA        NA
## 3007    NA    NA     NA         NA      NA        NA        NA
## 3008     0    NA     NA         NA      NA        NA        NA
## 3009    NA     1      0         NA      NA        NA        NA
## 3010     1    NA      3         NA      NA        NA        NA
## 3011     0     1     NA         NA      NA        NA        NA
## 3012    NA     0      0         NA      NA        NA        NA
## 3013    NA     0     NA         NA      NA        NA        NA
## 3014    NA     4      9         NA      NA        NA        NA
## 3015     0    NA      1         NA      NA        NA        NA
## 3016     1     1      1         NA      NA        NA        NA
## 3017     1     1      1         NA      NA        NA        NA
## 3018     2     1      2         NA      NA        NA        NA
## 3019    NA    NA      1         NA      NA        NA        NA
## 3020    NA     1      1         NA      NA        NA        NA
## 3021     0    NA     NA         NA      NA        NA        NA
## 3022    NA    NA      3         NA      NA        NA        NA
## 3023     0     0      1         NA      NA        NA        NA
## 3024     0     0     NA         NA      NA        NA        NA
## 3025    NA    NA     NA         NA      NA        NA        NA
## 3026    NA     1     NA         NA      NA        NA        NA
## 3027    NA    NA     NA         NA      NA        NA        NA
## 3028    NA     0      0         NA      NA        NA        NA
## 3029    NA    NA      2         NA      NA        NA        NA
## 3030     1     1      1         NA      NA        NA        NA
## 3031     0    NA      0         NA      NA        NA        NA
## 3032     0    NA      0         NA      NA        NA        NA
## 3033     0    NA      0         NA      NA        NA        NA
## 3034     2    NA      1         NA      NA        NA        NA
## 3035    NA    NA     NA         NA      NA        NA        NA
## 3036    NA     0     NA         NA      NA        NA        NA
## 3037     0     1      1         NA      NA        NA        NA
## 3038    NA    NA     NA         NA      NA        NA        NA
## 3039     1     1      1         NA      NA        NA        NA
## 3040     2    NA     NA         NA      NA        NA        NA
## 3041    NA    NA     NA         NA      NA        NA        NA
## 3042     2     1      0         NA      NA        NA        NA
## 3043    NA    NA     NA         NA      NA        NA        NA
## 3044    NA    NA      0         NA      NA        NA        NA
## 3045     0    NA      1         NA      NA        NA        NA
## 3046    NA    NA     NA         NA      NA        NA        NA
## 3047    NA    NA     NA         NA      NA        NA        NA
## 3048    NA     1      0         NA      NA        NA        NA
## 3049    NA     0      0         NA      NA        NA        NA
## 3050    NA    NA     NA         NA      NA        NA        NA
## 3051    NA    NA     NA         NA      NA        NA        NA
## 3052    NA    NA     NA         NA      NA        NA        NA
## 3053     2     0      4         NA      NA        NA        NA
## 3054     0     1     NA         NA      NA        NA        NA
## 3055     0     0     NA         NA      NA        NA        NA
## 3056     1    NA      1         NA      NA        NA        NA
## 3057     0     0      1         NA      NA        NA        NA
## 3058    NA    NA     NA         NA      NA        NA        NA
## 3059    NA    NA     NA         NA      NA        NA        NA
## 3060    NA    NA     NA         NA      NA        NA        NA
## 3061    NA     0     NA         NA      NA        NA        NA
## 3062     0     1     NA         NA      NA        NA        NA
## 3063    NA    NA      2         NA      NA        NA        NA
## 3064     1    NA      0         NA      NA        NA        NA
## 3065     0     0     NA         NA      NA        NA        NA
## 3066     1     1      1         NA      NA        NA        NA
## 3067    NA     2     NA         NA      NA        NA        NA
## 3068     1    NA      0         NA      NA        NA        NA
## 3069     1    NA      0         NA      NA        NA        NA
## 3070     2    NA     NA         NA      NA        NA        NA
## 3071    NA     4      1         NA      NA        NA        NA
## 3072    NA     0     NA         NA      NA        NA        NA
## 3073     0     1      1         NA      NA        NA        NA
## 3074    NA     0      0         NA      NA        NA        NA
## 3075     1     1      1         NA      NA        NA        NA
## 3076     2     0      2         NA      NA        NA        NA
## 3077     1     0      1         NA      NA        NA        NA
## 3078    NA    NA     NA         NA      NA        NA        NA
## 3079    NA    NA     NA         NA      NA        NA        NA
## 3080    NA    NA     NA         NA      NA        NA        NA
## 3081    NA    NA     NA         NA      NA        NA        NA
## 3082    NA     0     NA         NA      NA        NA        NA
## 3083    NA    NA     NA         NA      NA        NA        NA
## 3084    NA     2     NA         NA      NA        NA        NA
## 3085    NA    NA      0         NA      NA        NA        NA
## 3086     1     1     NA         NA      NA        NA        NA
## 3087     0    NA     NA         NA      NA        NA        NA
## 3088    NA    NA     NA         NA      NA        NA        NA
## 3089     2     5     NA         NA      NA        NA        NA
## 3090    NA     0     NA         NA      NA        NA        NA
## 3091     4    NA      8         NA      NA        NA        NA
## 3092    NA     0     NA         NA      NA        NA        NA
## 3093    NA    NA     NA         NA      NA        NA        NA
## 3094    NA    NA      3         NA      NA        NA        NA
## 3095    NA     0     NA         NA      NA        NA        NA
## 3096    NA     2      4         NA      NA        NA        NA
## 3097    NA    NA     NA         NA      NA        NA        NA
## 3098    NA     0      1         NA      NA        NA        NA
## 3099    NA    NA      2         NA      NA        NA        NA
## 3100     0     3      3         NA      NA        NA        NA
## 3101     0     3      0         NA      NA        NA        NA
## 3102     1    NA      1         NA      NA        NA        NA
## 3103     2    NA     NA         NA      NA        NA        NA
## 3104     0     1      1         NA      NA        NA        NA
## 3105     1    NA     NA         NA      NA        NA        NA
## 3106    NA     0     NA         NA      NA        NA        NA
## 3107     1    NA     NA         NA      NA        NA        NA
## 3108     2     1      2         NA      NA        NA        NA
## 3109    NA     4     NA         NA      NA        NA        NA
## 3110     0    NA      0         NA      NA        NA        NA
## 3111     0     0      4         NA      NA        NA        NA
## 3112    NA     0     NA         NA      NA        NA        NA
## 3113    NA    NA      0         NA      NA        NA        NA
## 3114     0     3      3         NA      NA        NA        NA
## 3115    NA    NA     NA         NA      NA        NA        NA
## 3116     4     2      4         NA      NA        NA        NA
## 3117    NA    NA     NA         NA      NA        NA        NA
## 3118    NA     0     NA         NA      NA        NA        NA
## 3119    NA    NA      0         NA      NA        NA        NA
## 3120     0     1     NA         NA      NA        NA        NA
## 3121     0    NA     NA         NA      NA        NA        NA
## 3122    NA    NA     NA         NA      NA        NA        NA
## 3123    NA    NA     NA         NA      NA        NA        NA
## 3124    NA     2     NA         NA      NA        NA        NA
## 3125     2    NA     10         NA      NA        NA        NA
## 3126    NA    NA     NA         NA      NA        NA        NA
## 3127    NA    NA      0         NA      NA        NA        NA
## 3128     1     2      2         NA      NA        NA        NA
## 3129    NA    NA     NA         NA      NA        NA        NA
## 3130     1     2      3         NA      NA        NA        NA
## 3131     1    NA     NA         NA      NA        NA        NA
## 3132    NA    NA     NA         NA      NA        NA         0
## 3133    NA    NA     NA         NA      NA        NA         0
## 3134    NA    NA     NA         NA      NA        NA         1
## 3135    NA    NA     NA         NA      NA        NA         0
## 3136    NA    NA     NA         NA      NA        NA         0
## 3137    NA    NA     NA         NA      NA        NA         0
## 3138    NA    NA     NA         NA      NA        NA         1
## 3139    NA    NA     NA         NA      NA        NA         1
## 3140    NA    NA     NA         NA      NA        NA         1
## 3141    NA    NA     NA         NA      NA        NA         0
## 3142    NA    NA     NA         NA      NA        NA         0
## 3143    NA    NA     NA         NA      NA        NA         0
## 3144    NA    NA     NA         NA      NA        NA         0
## 3145    NA    NA     NA         NA      NA        NA         1
## 3146    NA    NA     NA         NA      NA        NA         0
## 3147    NA    NA     NA         NA      NA        NA         2
## 3148    NA    NA     NA         NA      NA        NA         0
## 3149    NA    NA     NA         NA      NA        NA         0
## 3150    NA    NA     NA         NA      NA        NA         0
## 3151    NA    NA     NA         NA      NA        NA         0
## 3152    NA    NA     NA         NA      NA        NA         0
## 3153    NA    NA     NA         NA      NA        NA         0
## 3154    NA    NA     NA         NA      NA        NA         0
## 3155    NA    NA     NA         NA      NA        NA         0
## 3156    NA    NA     NA         NA      NA        NA         0
## 3157    NA    NA     NA         NA      NA        NA         0
## 3158    NA    NA     NA         NA      NA        NA         0
## 3159    NA    NA     NA         NA      NA        NA         0
## 3160    NA    NA     NA         NA      NA        NA         0
## 3161    NA    NA     NA         NA      NA        NA         0
## 3162    NA    NA     NA         NA      NA        NA         0
## 3163    NA    NA     NA         NA      NA        NA         0
## 3164    NA    NA     NA         NA      NA        NA         0
## 3165    NA    NA     NA         NA      NA        NA         0
## 3166    NA    NA     NA         NA      NA        NA         0
## 3167    NA    NA     NA         NA      NA        NA         0
## 3168    NA    NA     NA         NA      NA        NA         1
## 3169    NA    NA     NA         NA      NA        NA         1
## 3170    NA    NA     NA         NA      NA        NA         0
## 3171    NA    NA     NA         NA      NA        NA         0
## 3172    NA    NA     NA         NA      NA        NA         0
## 3173    NA    NA     NA         NA      NA        NA         0
## 3174    NA    NA     NA         NA      NA        NA         0
## 3175    NA    NA     NA         NA      NA        NA         0
## 3176    NA    NA     NA         NA      NA        NA         0
## 3177    NA    NA     NA         NA      NA        NA         0
## 3178    NA    NA     NA         NA      NA        NA         0
## 3179    NA    NA     NA         NA      NA        NA         0
## 3180    NA    NA     NA         NA      NA        NA         0
## 3181    NA    NA     NA         NA      NA        NA         0
## 3182    NA    NA     NA         NA      NA        NA         0
## 3183    NA    NA     NA         NA      NA        NA         0
## 3184    NA    NA     NA         NA      NA        NA         0
## 3185    NA    NA     NA         NA      NA        NA         1
## 3186    NA    NA     NA         NA      NA        NA         1
## 3187    NA    NA     NA         NA      NA        NA         0
## 3188    NA    NA     NA         NA      NA        NA         0
## 3189    NA    NA     NA         NA      NA        NA         0
## 3190    NA    NA     NA         NA      NA        NA         0
## 3191    NA    NA     NA         NA      NA        NA         1
## 3192    NA    NA     NA         NA      NA        NA         0
## 3193    NA    NA     NA         NA      NA        NA         1
## 3194    NA    NA     NA         NA      NA        NA         0
## 3195    NA    NA     NA         NA      NA        NA         0
## 3196    NA    NA     NA         NA      NA        NA         1
## 3197    NA    NA     NA         NA      NA        NA         0
## 3198    NA    NA     NA         NA      NA        NA         0
## 3199    NA    NA     NA         NA      NA        NA         1
## 3200    NA    NA     NA         NA      NA        NA         0
## 3201    NA    NA     NA         NA      NA        NA         1
## 3202    NA    NA     NA         NA      NA        NA         0
## 3203    NA    NA     NA         NA      NA        NA         0
## 3204    NA    NA     NA         NA      NA        NA         0
## 3205    NA    NA     NA         NA      NA        NA         0
## 3206    NA    NA     NA         NA      NA        NA         1
## 3207    NA    NA     NA         NA      NA        NA         0
## 3208    NA    NA     NA         NA      NA        NA         0
## 3209    NA    NA     NA         NA      NA        NA         0
## 3210    NA    NA     NA         NA      NA        NA         0
## 3211    NA    NA     NA         NA      NA        NA         0
## 3212    NA    NA     NA         NA      NA        NA         0
## 3213    NA    NA     NA         NA      NA        NA         0
## 3214    NA    NA     NA         NA      NA        NA         0
## 3215    NA    NA     NA         NA      NA        NA         0
## 3216    NA    NA     NA         NA      NA        NA         0
## 3217    NA    NA     NA         NA      NA        NA         0
## 3218    NA    NA     NA         NA      NA        NA         0
## 3219    NA    NA     NA         NA      NA        NA        NA
## 3220     0    NA     NA         NA      NA        NA        NA
## 3221    NA     0     NA         NA      NA        NA        NA
## 3222    NA    NA     NA         NA      NA        NA        NA
## 3223     1     2     NA         NA      NA        NA        NA
## 3224    NA    NA     NA         NA      NA        NA        NA
## 3225     0    NA     NA         NA      NA        NA        NA
## 3226     1    NA     NA         NA      NA        NA        NA
## 3227    NA    NA     NA         NA      NA        NA        NA
## 3228    NA    NA     NA         NA      NA        NA        NA
## 3229    NA    NA     NA         NA      NA        NA        NA
## 3230     0     0     NA         NA      NA        NA        NA
## 3231    NA     1     NA         NA      NA        NA        NA
## 3232     0     1     NA         NA      NA        NA        NA
## 3233    NA     0     NA         NA      NA        NA        NA
## 3234    NA    NA     NA         NA      NA        NA        NA
## 3235     0    NA     NA         NA      NA        NA        NA
## 3236    NA    NA     NA         NA      NA        NA        NA
## 3237     0     0     NA         NA      NA        NA        NA
## 3238    NA     1     NA         NA      NA        NA        NA
## 3239     1     0     NA         NA      NA        NA        NA
## 3240    NA     0      0         NA      NA        NA        NA
## 3241     1     0     NA         NA      NA        NA        NA
## 3242    NA    NA     NA         NA      NA        NA        NA
## 3243     0     1     NA         NA      NA        NA        NA
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     0    NA     NA         NA      NA        NA        NA
## 3246    NA    NA     NA         NA      NA        NA        NA
## 3247    NA    NA     NA         NA      NA        NA        NA
## 3248    NA     0     NA         NA      NA        NA        NA
## 3249    NA    NA     NA         NA      NA        NA        NA
## 3250    NA     0      0         NA      NA        NA        NA
## 3251     1    NA     NA         NA      NA        NA        NA
## 3252    NA    NA     NA         NA      NA        NA        NA
## 3253    NA    NA     NA         NA      NA        NA        NA
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255     0     1     NA         NA      NA        NA        NA
## 3256     0    NA     NA         NA      NA        NA        NA
## 3257    NA    NA     NA         NA      NA        NA        NA
## 3258     1     0     NA         NA      NA        NA        NA
## 3259    NA    NA     NA         NA      NA        NA        NA
## 3260     1     0     NA         NA      NA        NA        NA
## 3261     1     3     NA         NA      NA        NA        NA
## 3262    NA    NA     NA         NA      NA        NA        NA
## 3263    NA     1     NA         NA      NA        NA        NA
## 3264     0    NA     NA         NA      NA        NA        NA
## 3265    NA    NA     NA         NA      NA        NA        NA
## 3266    NA     1     NA         NA      NA        NA        NA
## 3267     0    NA     NA         NA      NA        NA        NA
## 3268    NA     0     NA         NA      NA        NA        NA
## 3269     0     0     NA         NA      NA        NA        NA
## 3270     0     0     NA         NA      NA        NA        NA
## 3271     1     0     NA         NA      NA        NA        NA
## 3272    NA    NA     NA         NA      NA        NA        NA
## 3273     0    NA     NA         NA      NA        NA        NA
## 3274     1     0     NA         NA      NA        NA        NA
## 3275    NA    NA     NA         NA      NA        NA        NA
## 3276    NA     0     NA         NA      NA        NA        NA
## 3277    NA    NA     NA         NA      NA        NA        NA
## 3278     0    NA     NA         NA      NA        NA        NA
## 3279    NA     0     NA         NA      NA        NA        NA
## 3280    NA    NA     NA         NA      NA        NA        NA
## 3281    NA    NA      0         NA      NA        NA        NA
## 3282    NA    NA     NA         NA      NA        NA        NA
## 3283     0    NA     NA         NA      NA        NA        NA
## 3284    NA     0     NA         NA      NA        NA        NA
## 3285    NA    NA     NA         NA      NA        NA        NA
## 3286    NA     0     NA         NA      NA        NA        NA
## 3287    NA     0     NA         NA      NA        NA        NA
## 3288    NA    NA     NA         NA      NA        NA        NA
## 3289    NA    NA     NA         NA      NA        NA        NA
## 3290    NA    NA     NA         NA      NA        NA        NA
## 3291     1    NA     NA         NA      NA        NA        NA
## 3292     0    NA     NA         NA      NA        NA        NA
## 3293     0     1     NA         NA      NA        NA        NA
## 3294     0    NA     NA         NA      NA        NA        NA
## 3295     0    NA     NA         NA      NA        NA        NA
## 3296     0    NA     NA         NA      NA        NA        NA
## 3297     1    NA     NA         NA      NA        NA        NA
## 3298     0     0     NA         NA      NA        NA        NA
## 3299    NA    NA     NA         NA      NA        NA        NA
## 3300     0     1     NA         NA      NA        NA        NA
## 3301     1    NA     NA         NA      NA        NA        NA
## 3302    NA    NA     NA         NA      NA        NA        NA
## 3303     0     0     NA         NA      NA        NA        NA
## 3304    NA    NA     NA         NA      NA        NA        NA
## 3305    NA    NA     NA         NA      NA        NA        NA
## 3306    NA    NA     NA         NA      NA        NA        NA
## 3307    NA    NA     NA         NA      NA        NA        NA
## 3308    NA    NA     NA         NA      NA        NA        NA
## 3309     1    NA     NA         NA      NA        NA        NA
## 3310    NA    NA     NA         NA      NA        NA        NA
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312    NA    NA     NA         NA      NA        NA        NA
## 3313    NA    NA     NA         NA      NA        NA        NA
## 3314    NA    NA     NA         NA      NA        NA        NA
## 3315    NA    NA     NA         NA      NA        NA        NA
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317    NA    NA     NA         NA      NA        NA        NA
## 3318     0    NA     NA         NA      NA        NA        NA
## 3319    NA    NA     NA         NA      NA        NA        NA
## 3320    NA    NA     NA         NA      NA        NA        NA
## 3321    NA     0     NA         NA      NA        NA        NA
## 3322    NA    NA     NA         NA      NA        NA        NA
## 3323    NA    NA     NA         NA      NA        NA        NA
## 3324    NA    NA     NA         NA      NA        NA        NA
## 3325    NA    NA     NA         NA      NA        NA        NA
## 3326     0    NA     NA         NA      NA        NA        NA
## 3327    NA    NA     NA         NA      NA        NA        NA
## 3328    NA    NA     NA         NA      NA        NA        NA
## 3329    NA    NA     NA         NA      NA        NA        NA
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331     0    NA     NA         NA      NA        NA        NA
## 3332    NA    NA     NA         NA      NA        NA        NA
## 3333    NA    NA     NA         NA      NA        NA        NA
## 3334    NA    NA     NA         NA      NA        NA        NA
## 3335     1    NA     NA         NA      NA        NA        NA
## 3336    NA    NA     NA         NA      NA        NA        NA
## 3337    NA     0     NA         NA      NA        NA        NA
## 3338    NA     0     NA         NA      NA        NA        NA
## 3339    NA    NA     NA         NA      NA        NA        NA
## 3340     0    NA     NA         NA      NA        NA        NA
## 3341    NA    NA     NA         NA      NA        NA        NA
## 3342    NA    NA     NA         NA      NA        NA        NA
## 3343    NA    NA     NA         NA      NA        NA        NA
## 3344     1    NA     NA         NA      NA        NA        NA
## 3345    NA    NA     NA         NA      NA        NA        NA
## 3346    NA     0     NA         NA      NA        NA        NA
## 3347    NA    NA     NA         NA      NA        NA        NA
## 3348    NA    NA     NA         NA      NA        NA        NA
## 3349    NA     0     NA         NA      NA        NA        NA
## 3350    NA    NA     NA         NA      NA        NA        NA
## 3351    NA    NA     NA         NA      NA        NA        NA
## 3352    NA    NA     NA         NA      NA        NA        NA
## 3353    NA    NA     NA         NA      NA        NA        NA
## 3354    NA    NA     NA         NA      NA        NA        NA
## 3355    NA    NA     NA         NA      NA        NA        NA
## 3356     0    NA     NA         NA      NA        NA        NA
## 3357    NA    NA     NA         NA      NA        NA        NA
## 3358    NA    NA     NA         NA      NA        NA        NA
## 3359    NA     0     NA         NA      NA        NA        NA
## 3360     0     0     NA         NA      NA        NA        NA
## 3361     0    NA     NA         NA      NA        NA        NA
## 3362    NA    NA     NA         NA      NA        NA        NA
## 3363    NA    NA     NA         NA      NA        NA        NA
## 3364    NA    NA     NA         NA      NA        NA        NA
## 3365    NA    NA     NA         NA      NA        NA        NA
## 3366    NA    NA     NA         NA      NA        NA        NA
## 3367     0    NA     NA         NA      NA        NA        NA
## 3368    NA    NA     NA         NA      NA        NA        NA
## 3369     0    NA     NA         NA      NA        NA        NA
## 3370    NA    NA     NA         NA      NA        NA        NA
## 3371    NA    NA     NA         NA      NA        NA        NA
## 3372     0    NA     NA         NA      NA        NA        NA
## 3373     1     1     NA         NA      NA        NA        NA
## 3374    NA    NA     NA         NA      NA        NA        NA
## 3375     0    NA     NA         NA      NA        NA        NA
## 3376    NA    NA     NA         NA      NA        NA        NA
## 3377    NA    NA     NA         NA      NA        NA        NA
## 3378    NA    NA     NA         NA      NA        NA        NA
## 3379    NA    NA     NA         NA      NA        NA        NA
## 3380    NA    NA     NA         NA      NA        NA        NA
## 3381    NA    NA     NA         NA      NA        NA        NA
## 3382    NA    NA     NA         NA      NA        NA        NA
## 3383    NA     0     NA         NA      NA        NA        NA
## 3384     0     0     NA         NA      NA        NA        NA
## 3385    NA     0     NA         NA      NA        NA        NA
## 3386    NA     0     NA         NA      NA        NA        NA
## 3387    NA    NA     NA         NA      NA        NA        NA
## 3388    NA    NA     NA         NA      NA        NA        NA
## 3389    NA     0     NA         NA      NA        NA        NA
## 3390    NA    NA     NA         NA      NA        NA        NA
## 3391    NA    NA     NA         NA      NA        NA        NA
## 3392    NA    NA     NA         NA      NA        NA        NA
## 3393    NA    NA     NA         NA      NA        NA        NA
## 3394    NA    NA     NA         NA      NA        NA        NA
## 3395     1     0     NA         NA      NA        NA        NA
## 3396    NA     0     NA         NA      NA        NA        NA
## 3397     0    NA     NA         NA      NA        NA        NA
## 3398    NA    NA     NA         NA      NA        NA        NA
## 3399     0     0     NA         NA      NA        NA        NA
## 3400    NA     0     NA         NA      NA        NA        NA
## 3401    NA    NA     NA         NA      NA        NA        NA
## 3402     0    NA     NA         NA      NA        NA        NA
## 3403     0     0     NA         NA      NA        NA        NA
## 3404    NA    NA     NA         NA      NA        NA        NA
## 3405    NA    NA     NA         NA      NA        NA        NA
## 3406    NA    NA     NA         NA      NA        NA        NA
## 3407    NA    NA     NA         NA      NA        NA        NA
## 3408     1    NA     NA         NA      NA        NA        NA
## 3409    NA    NA     NA         NA      NA        NA        NA
## 3410    NA    NA     NA         NA      NA        NA        NA
## 3411    NA    NA     NA         NA      NA        NA        NA
## 3412    NA    NA     NA         NA      NA        NA        NA
## 3413    NA    NA     NA         NA      NA        NA        NA
## 3414    NA    NA     NA         NA      NA        NA        NA
## 3415    NA    NA     NA         NA      NA        NA        NA
## 3416     0    NA     NA         NA      NA        NA        NA
## 3417     0    NA     NA         NA      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA    NA     NA         NA      NA        NA        NA
## 3420     0    NA     NA         NA      NA        NA        NA
## 3421    NA    NA     NA         NA      NA        NA        NA
## 3422    NA     0     NA         NA      NA        NA        NA
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424    NA    NA     NA         NA      NA        NA        NA
## 3425     0    NA     NA         NA      NA        NA        NA
## 3426    NA    NA     NA         NA      NA        NA        NA
## 3427     0    NA     NA         NA      NA        NA        NA
## 3428    NA    NA     NA         NA      NA        NA        NA
## 3429     0    NA     NA         NA      NA        NA        NA
## 3430     0    NA     NA         NA      NA        NA        NA
## 3431    NA    NA     NA         NA      NA        NA        NA
## 3432     1     1      0         NA      NA        NA        NA
## 3433    NA    NA     NA         NA      NA        NA        NA
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    NA    NA     NA         NA      NA        NA        NA
## 3436    NA    NA     NA         NA      NA        NA        NA
## 3437    NA    NA     NA         NA      NA        NA        NA
## 3438    NA     0     NA         NA      NA        NA        NA
## 3439     0    NA     NA         NA      NA        NA        NA
## 3440    NA    NA     NA         NA      NA        NA        NA
## 3441     1    NA     NA         NA      NA        NA        NA
## 3442    NA    NA     NA         NA      NA        NA        NA
## 3443    NA    NA     NA         NA      NA        NA        NA
## 3444    NA    NA     NA         NA      NA        NA        NA
## 3445    NA    NA     NA         NA      NA        NA        NA
## 3446    NA    NA     NA         NA      NA        NA        NA
## 3447    NA    NA     NA         NA      NA        NA        NA
## 3448    NA    NA     NA         NA      NA        NA        NA
## 3449     0    NA     NA         NA      NA        NA        NA
## 3450    NA    NA     NA         NA      NA        NA        NA
## 3451    NA    NA     NA         NA      NA        NA        NA
## 3452    NA    NA     NA         NA      NA        NA        NA
## 3453    NA    NA     NA         NA      NA        NA        NA
## 3454     1    NA     NA         NA      NA        NA        NA
## 3455    NA    NA     NA         NA      NA        NA        NA
## 3456    NA    NA     NA         NA      NA        NA        NA
## 3457     3     4     NA         NA      NA        NA        NA
## 3458    NA    NA     NA         NA      NA        NA        NA
## 3459    NA    NA     NA         NA      NA        NA        NA
## 3460    NA    NA     NA         NA      NA        NA        NA
## 3461    NA    NA     NA         NA      NA        NA        NA
## 3462    NA    NA     NA         NA      NA        NA        NA
## 3463    NA     0     NA         NA      NA        NA        NA
## 3464     0    NA     NA         NA      NA        NA        NA
## 3465    NA    NA     NA         NA      NA        NA        NA
## 3466    NA     1     NA         NA      NA        NA        NA
## 3467    NA    NA     NA         NA      NA        NA        NA
## 3468    NA    NA     NA         NA      NA        NA        NA
## 3469    NA    NA     NA         NA      NA        NA        NA
## 3470     0    NA     NA         NA      NA        NA        NA
## 3471     0    NA     NA         NA      NA        NA        NA
## 3472    NA    NA     NA         NA      NA        NA        NA
## 3473     0    NA     NA         NA      NA        NA        NA
## 3474    NA    NA     NA         NA      NA        NA        NA
## 3475    NA    NA     NA         NA      NA        NA        NA
## 3476    NA    NA     NA         NA      NA        NA        NA
## 3477    NA    NA     NA         NA      NA        NA        NA
## 3478     0    NA     NA         NA      NA        NA        NA
## 3479    NA    NA     NA         NA      NA        NA        NA
## 3480    NA    NA     NA         NA      NA        NA        NA
## 3481    NA     3     NA         NA      NA        NA        NA
## 3482     0    NA     NA         NA      NA        NA        NA
## 3483    NA    NA     NA         NA      NA        NA        NA
## 3484     0    NA     NA         NA      NA        NA        NA
## 3485    NA    NA     NA         NA      NA        NA        NA
## 3486     1    NA     NA         NA      NA        NA        NA
## 3487     0    NA     NA         NA      NA        NA        NA
## 3488    NA     0     NA         NA      NA        NA        NA
## 3489    NA     0     NA         NA      NA        NA        NA
## 3490    NA    NA     NA         NA      NA        NA        NA
## 3491    NA    NA     NA         NA      NA        NA        NA
## 3492    NA    NA     NA         NA      NA        NA        NA
## 3493     1    NA     NA         NA      NA        NA        NA
## 3494    NA     0     NA         NA      NA        NA        NA
## 3495     1    NA     NA         NA      NA        NA        NA
## 3496     0    NA     NA         NA      NA        NA        NA
## 3497    NA    NA     NA         NA      NA        NA        NA
## 3498    NA    NA     NA         NA      NA        NA        NA
## 3499    NA    NA     NA         NA      NA        NA        NA
## 3500     0     0     NA         NA      NA        NA        NA
## 3501     1    NA     NA         NA      NA        NA        NA
## 3502     0     1     NA         NA      NA        NA        NA
## 3503    NA     0     NA         NA      NA        NA        NA
## 3504     0    NA     NA         NA      NA        NA        NA
## 3505     0    NA     NA         NA      NA        NA        NA
## 3506     0    NA     NA         NA      NA        NA        NA
## 3507    NA    NA     NA         NA      NA        NA        NA
## 3508    NA    NA     NA         NA      NA        NA        NA
## 3509    NA    NA     NA         NA      NA        NA        NA
## 3510     0    NA     NA         NA      NA        NA        NA
## 3511     0    NA     NA         NA      NA        NA        NA
## 3512    NA    NA     NA         NA      NA        NA        NA
## 3513    NA    NA     NA         NA      NA        NA        NA
## 3514     0     0     NA         NA      NA        NA        NA
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516    NA    NA     NA         NA      NA        NA        NA
## 3517     0    NA     NA         NA      NA        NA        NA
## 3518    NA    NA     NA         NA      NA        NA        NA
## 3519    NA     0     NA         NA      NA        NA        NA
## 3520    NA     0     NA         NA      NA        NA        NA
## 3521    NA    NA     NA         NA      NA        NA        NA
## 3522     1    NA     NA         NA      NA        NA        NA
## 3523     0    NA     NA         NA      NA        NA        NA
## 3524    NA     0     NA         NA      NA        NA        NA
## 3525    NA     1     NA         NA      NA        NA        NA
## 3526    NA    NA     NA         NA      NA        NA        NA
## 3527    NA    NA     NA         NA      NA        NA        NA
## 3528     0    NA     NA         NA      NA        NA        NA
## 3529     0    NA     NA         NA      NA        NA        NA
## 3530     0    NA     NA         NA      NA        NA        NA
## 3531    NA     0     NA         NA      NA        NA        NA
## 3532    NA    NA     NA         NA      NA        NA        NA
## 3533     0    NA     NA         NA      NA        NA        NA
## 3534    NA     0     NA         NA      NA        NA        NA
## 3535     0     0     NA         NA      NA        NA        NA
## 3536    NA    NA     NA         NA      NA        NA        NA
## 3537     0    NA     NA         NA      NA        NA        NA
## 3538    NA    NA     NA         NA      NA        NA        NA
## 3539    NA    NA     NA         NA      NA        NA        NA
## 3540    NA    NA     NA         NA      NA        NA        NA
## 3541     0    NA     NA         NA      NA        NA        NA
## 3542    NA    NA     NA         NA      NA        NA        NA
## 3543    NA     0     NA         NA      NA        NA        NA
## 3544    NA    NA     NA         NA      NA        NA        NA
## 3545    NA    NA     NA         NA      NA        NA        NA
## 3546    NA    NA     NA         NA      NA        NA        NA
## 3547     0     0     NA         NA      NA        NA        NA
## 3548     1     0     NA         NA      NA        NA        NA
## 3549    NA    NA     NA         NA      NA        NA        NA
## 3550    NA     1     NA         NA      NA        NA        NA
## 3551    NA    NA     NA         NA      NA        NA        NA
## 3552    NA     0     NA         NA      NA        NA        NA
## 3553     1    NA     NA         NA      NA        NA        NA
## 3554    NA    NA     NA         NA      NA        NA        NA
## 3555     0     0     NA         NA      NA        NA        NA
## 3556     0    NA     NA         NA      NA        NA        NA
## 3557    NA    NA     NA         NA      NA        NA        NA
## 3558    NA     0     NA         NA      NA        NA        NA
## 3559    NA    NA     NA         NA      NA        NA        NA
## 3560    NA     0     NA         NA      NA        NA        NA
## 3561    NA    NA     NA         NA      NA        NA        NA
## 3562    NA     1     NA         NA      NA        NA        NA
## 3563    NA    NA     NA         NA      NA        NA        NA
## 3564    NA     0     NA         NA      NA        NA        NA
## 3565    NA    NA     NA         NA      NA        NA        NA
## 3566     1    NA     NA         NA      NA        NA        NA
## 3567    NA     0     NA         NA      NA        NA        NA
## 3568    NA    NA     NA         NA      NA        NA        NA
## 3569    NA    NA     NA         NA      NA        NA        NA
## 3570    NA    NA     NA         NA      NA        NA        NA
## 3571    NA    NA     NA         NA      NA        NA        NA
## 3572    NA    NA     NA         NA      NA        NA        NA
## 3573     0     0     NA         NA      NA        NA        NA
## 3574    NA    NA     NA         NA      NA        NA        NA
## 3575     1    NA     NA         NA      NA        NA        NA
## 3576    NA    NA     NA         NA      NA        NA        NA
## 3577    NA    NA     NA         NA      NA        NA        NA
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579    NA    NA     NA         NA      NA        NA        NA
## 3580    NA     0     NA         NA      NA        NA        NA
## 3581    NA    NA     NA         NA      NA        NA        NA
## 3582    NA     0     NA         NA      NA        NA        NA
## 3583     0    NA     NA         NA      NA        NA        NA
## 3584    NA    NA     NA         NA      NA        NA        NA
## 3585    NA    NA     NA         NA      NA        NA        NA
## 3586    NA    NA     NA         NA      NA        NA        NA
## 3587     0    NA     NA         NA      NA        NA        NA
## 3588    NA    NA     NA         NA      NA        NA        NA
## 3589    NA    NA     NA         NA      NA        NA        NA
## 3590    NA    NA     NA         NA      NA        NA        NA
## 3591    NA    NA     NA         NA      NA        NA        NA
## 3592    NA    NA     NA         NA      NA        NA        NA
## 3593     0    NA     NA         NA      NA        NA        NA
## 3594    NA    NA     NA         NA      NA        NA        NA
## 3595    NA     0     NA         NA      NA        NA        NA
## 3596    NA    NA     NA         NA      NA        NA        NA
## 3597    NA    NA     NA         NA      NA        NA        NA
## 3598    NA    NA     NA         NA      NA        NA        NA
## 3599    NA    NA     NA         NA      NA        NA        NA
## 3600     1     0     NA         NA      NA        NA        NA
## 3601    NA    NA     NA         NA      NA        NA        NA
## 3602     0    NA     NA         NA      NA        NA        NA
## 3603    NA    NA     NA         NA      NA        NA        NA
## 3604    NA    NA     NA         NA      NA        NA        NA
## 3605     0    NA     NA         NA      NA        NA        NA
## 3606    NA    NA     NA         NA      NA        NA        NA
## 3607     0    NA     NA         NA      NA        NA        NA
## 3608    NA    NA     NA         NA      NA        NA        NA
## 3609     1    NA      0         NA      NA        NA        NA
## 3610    NA    NA     NA         NA      NA        NA        NA
## 3611     3    NA     NA         NA      NA        NA        NA
## 3612    NA     0     NA         NA      NA        NA        NA
## 3613    NA    NA     NA         NA      NA        NA        NA
## 3614    NA     0     NA         NA      NA        NA        NA
## 3615    NA     0     NA         NA      NA        NA        NA
## 3616    NA    NA     NA         NA      NA        NA        NA
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618    NA     0     NA         NA      NA        NA        NA
## 3619    NA    NA     NA         NA      NA        NA        NA
## 3620    NA    NA     NA         NA      NA        NA        NA
## 3621     0    NA     NA         NA      NA        NA        NA
## 3622    NA     0     NA         NA      NA        NA        NA
## 3623     0    NA     NA         NA      NA        NA        NA
## 3624     0     0     NA         NA      NA        NA        NA
## 3625    NA    NA     NA         NA      NA        NA        NA
## 3626     0    NA     NA         NA      NA        NA        NA
## 3627    NA     0     NA         NA      NA        NA        NA
## 3628    NA     0     NA         NA      NA        NA        NA
## 3629     0     1      0         NA      NA        NA        NA
## 3630    NA    NA     NA         NA      NA        NA        NA
## 3631    NA    NA     NA         NA      NA        NA        NA
## 3632     0     1     NA         NA      NA        NA        NA
## 3633    NA     1     NA         NA      NA        NA        NA
## 3634     1     0     NA         NA      NA        NA        NA
## 3635    NA    NA     NA         NA      NA        NA        NA
## 3636    NA     0     NA         NA      NA        NA        NA
## 3637    NA    NA     NA         NA      NA        NA        NA
## 3638     0    NA     NA         NA      NA        NA        NA
## 3639    NA    NA     NA         NA      NA        NA        NA
## 3640    NA    NA     NA         NA      NA        NA        NA
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642    NA    NA     NA         NA      NA        NA        NA
## 3643    NA    NA     NA         NA      NA        NA        NA
## 3644     0    NA     NA         NA      NA        NA        NA
## 3645    NA    NA     NA         NA      NA        NA        NA
## 3646     0    NA     NA         NA      NA        NA        NA
## 3647    NA    NA     NA         NA      NA        NA        NA
## 3648     0    NA     NA         NA      NA        NA        NA
## 3649    NA    NA     NA         NA      NA        NA        NA
## 3650    NA    NA     NA         NA      NA        NA        NA
## 3651     0     0     NA         NA      NA        NA        NA
## 3652     0    NA     NA         NA      NA        NA        NA
## 3653     0     1     NA         NA      NA        NA        NA
## 3654    NA    NA     NA         NA      NA        NA        NA
## 3655     0    NA     NA         NA      NA        NA        NA
## 3656    NA     0     NA         NA      NA        NA        NA
## 3657     1    NA     NA         NA      NA        NA        NA
## 3658    NA     1     NA         NA      NA        NA        NA
## 3659    NA    NA     NA         NA      NA        NA        NA
## 3660     0     0     NA         NA      NA        NA        NA
## 3661    NA    NA     NA         NA      NA        NA        NA
## 3662    NA    NA     NA         NA      NA        NA        NA
## 3663     0    NA     NA         NA      NA        NA        NA
## 3664    NA    NA     NA         NA      NA        NA        NA
## 3665    NA    NA     NA         NA      NA        NA        NA
## 3666     1    NA     NA         NA      NA        NA        NA
## 3667    NA    NA     NA         NA      NA        NA        NA
## 3668    NA    NA     NA         NA      NA        NA        NA
## 3669    NA    NA     NA         NA      NA        NA        NA
## 3670     0     0     NA         NA      NA        NA        NA
## 3671    NA    NA     NA         NA      NA        NA        NA
## 3672     0    NA     NA         NA      NA        NA        NA
## 3673     0     0     NA         NA      NA        NA        NA
## 3674    NA    NA     NA         NA      NA        NA        NA
## 3675     0     0     NA         NA      NA        NA        NA
## 3676     0     0     NA         NA      NA        NA        NA
## 3677     0    NA     NA         NA      NA        NA        NA
## 3678     0    NA     NA         NA      NA        NA        NA
## 3679     0    NA     NA         NA      NA        NA        NA
## 3680    NA    NA     NA         NA      NA        NA        NA
## 3681    NA    NA     NA         NA      NA        NA        NA
## 3682    NA    NA     NA         NA      NA        NA        NA
## 3683     1    NA     NA         NA      NA        NA        NA
## 3684     0    NA     NA         NA      NA        NA        NA
## 3685     0    NA     NA         NA      NA        NA        NA
## 3686     0    NA     NA         NA      NA        NA        NA
## 3687    NA    NA     NA         NA      NA        NA        NA
## 3688     0    NA     NA         NA      NA        NA        NA
## 3689    NA    NA     NA         NA      NA        NA        NA
## 3690     0    NA     NA         NA      NA        NA        NA
## 3691     0    NA     NA         NA      NA        NA        NA
## 3692     1    NA     NA         NA      NA        NA        NA
## 3693    NA    NA     NA         NA      NA        NA        NA
## 3694    NA    NA     NA         NA      NA        NA        NA
## 3695    NA    NA     NA         NA      NA        NA        NA
## 3696     1     0     NA         NA      NA        NA        NA
## 3697     0     0     NA         NA      NA        NA        NA
## 3698     0     0     NA         NA      NA        NA        NA
## 3699     1    NA     NA         NA      NA        NA        NA
## 3700    NA    NA     NA         NA      NA        NA        NA
## 3701    NA    NA     NA         NA      NA        NA        NA
## 3702    NA    NA     NA         NA      NA        NA        NA
## 3703    NA    NA     NA         NA      NA        NA        NA
## 3704     1    NA     NA         NA      NA        NA        NA
## 3705    NA     0     NA         NA      NA        NA        NA
## 3706    NA    NA     NA         NA      NA        NA        NA
## 3707     0    NA     NA         NA      NA        NA        NA
## 3708    NA    NA     NA         NA      NA        NA        NA
## 3709    NA    NA     NA         NA      NA        NA        NA
## 3710    NA    NA     NA         NA      NA        NA        NA
## 3711    NA    NA     NA         NA      NA        NA        NA
## 3712    NA    NA     NA         NA      NA        NA        NA
## 3713    NA    NA     NA         NA      NA        NA        NA
## 3714     2     3     NA          2       0         0         3
## 3715    NA    NA     NA         NA       1        NA        NA
## 3716    NA    NA     NA          0      NA        NA        NA
## 3717     1     1      1         NA      NA        NA        NA
## 3718    NA    NA     NA         NA       0        NA        NA
## 3719    NA    NA     NA          1      NA        NA        NA
## 3720     2     1      1          2       2         1         1
## 3721     1     2      1          0      NA         0        NA
## 3722     2     0      1          1      NA        NA         1
## 3723     1    NA      2          0       0         1         0
## 3724    NA    NA     NA         NA       0        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726     1     1     NA         NA      NA        NA        NA
## 3727    NA    NA     NA          2      NA        NA        NA
## 3728     1     0      0          0       1        NA         1
## 3729     1     2     NA          1       1        NA         0
## 3730    NA    NA     NA         NA      NA        NA        NA
## 3731     2     2     NA          5       2         2         2
## 3732    NA    NA     NA         NA      NA        NA        NA
## 3733     3    NA      2          1       0         1         2
## 3734    NA    NA     NA         NA      NA         0        NA
## 3735     2     0      1          1       2         1         1
## 3736    NA    NA     NA         NA      NA        NA         0
## 3737     1     2      0         NA       1         1        NA
## 3738     1     1      2         NA      NA         0        NA
## 3739    NA    NA     NA         NA      NA        NA        NA
## 3740    NA    NA     NA         NA      NA        NA        NA
## 3741     0     0     NA          1       1         1         3
## 3742     2     1      3          4       2         2         1
## 3743    NA    NA     NA         NA      NA        NA        NA
## 3744    NA    NA     NA         NA       1        NA        NA
## 3745    NA    NA     NA         NA       0        NA        NA
## 3746    NA    NA     NA         NA      NA        NA         1
## 3747    NA    NA      0          0       0        NA         1
## 3748     1    NA     NA         NA      NA        NA        NA
## 3749    NA    NA     NA         NA      NA        NA        NA
## 3750    NA    NA     NA         NA      NA        NA        NA
## 3751    NA    NA     NA         NA      NA        NA        NA
## 3752    NA     0     NA         NA      NA        NA        NA
## 3753    NA    NA     NA         NA      NA        NA        NA
## 3754    NA    NA     NA          0       0         1         0
## 3755     0    NA     NA         NA      NA        NA        NA
## 3756     1     1      1          2       1         2         1
## 3757    NA     1      2         NA       1        NA        NA
## 3758    NA    NA     NA         NA      NA        NA        NA
## 3759    NA     1     NA          0       0         2        NA
## 3760     1    NA      1          1      NA         1         1
## 3761    NA    NA     NA         NA      NA        NA        NA
## 3762    NA    NA     NA         NA      NA        NA        NA
## 3763     3     4      3          3       1         3         1
## 3764    NA    NA     NA         NA      NA         0        NA
## 3765    NA    NA     NA         NA      NA        NA        NA
## 3766    NA     0     NA         NA      NA        NA        NA
## 3767     2     0     NA          0      NA        NA        NA
## 3768    NA    NA     NA         NA       0        NA        NA
## 3769    NA    NA     NA         NA      NA        NA         1
## 3770    NA    NA      1         NA      NA        NA        NA
## 3771    NA     1     NA         NA      NA        NA        NA
## 3772    NA    NA     NA         NA      NA        NA        NA
## 3773    NA    NA     NA         NA      NA        NA        NA
## 3774     1    NA      1         NA      NA        NA        NA
## 3775     1     1      3         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777    NA    NA      1         NA      NA        NA        NA
## 3778     0    NA     NA         NA      NA        NA        NA
## 3779    NA    NA     NA         NA      NA        NA        NA
## 3780     1     0     NA         NA      NA        NA        NA
## 3781    NA     0     NA         NA      NA        NA        NA
## 3782    NA    NA     NA         NA      NA        NA        NA
## 3783    NA    NA      0         NA      NA        NA        NA
## 3784     1     2      1         NA      NA        NA        NA
## 3785    NA    NA     NA         NA      NA        NA        NA
## 3786     1     1     NA         NA      NA        NA        NA
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788     0     0      1         NA      NA        NA        NA
## 3789    NA    NA     NA         NA      NA        NA        NA
## 3790    NA    NA     NA         NA      NA        NA        NA
## 3791    NA    NA     NA         NA      NA        NA        NA
## 3792     2     0      2         NA      NA        NA        NA
## 3793     1    NA     NA         NA      NA        NA        NA
## 3794    NA    NA     NA         NA      NA        NA        NA
## 3795    NA    NA     NA         NA      NA        NA        NA
## 3796     0    NA     NA         NA      NA        NA        NA
## 3797    NA    NA     NA         NA      NA        NA        NA
## 3798    NA    NA     NA         NA      NA        NA        NA
## 3799    NA     1     NA         NA      NA        NA        NA
## 3800    NA    NA     NA         NA      NA        NA        NA
## 3801    NA    NA     NA         NA      NA        NA        NA
## 3802    NA     0     NA         NA      NA        NA        NA
## 3803     0    NA     NA         NA      NA        NA        NA
## 3804     1     1      1         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806    NA    NA     NA         NA      NA        NA        NA
## 3807    NA     0     NA         NA      NA         0         0
## 3808    NA    NA     NA         NA      NA        NA         0
## 3809     0    NA      0          0       0         0         0
## 3810     1     0      0          1       1         1         1
## 3811    NA    NA     NA          0      NA        NA         0
## 3812    NA    NA     NA         NA      NA        NA         0
## 3813    NA    NA     NA         NA      NA        NA         0
## 3814    NA    NA     NA          0       0         0        NA
## 3815    NA    NA     NA         NA      NA        NA        NA
## 3816    NA    NA     NA         NA      NA        NA         0
## 3817    NA    NA     NA         NA      NA        NA        NA
## 3818    NA    NA      1         NA      NA        NA         1
## 3819    NA    NA     NA         NA      NA        NA        NA
## 3820    NA    NA      0          0      NA        NA        NA
## 3821    NA    NA     NA         NA      NA        NA         0
## 3822     2     2      1          0       1         1         4
## 3823    NA    NA     NA         NA      NA        NA         0
## 3824    NA     0     NA          0       0        NA        NA
## 3825    NA    NA      0          0      NA        NA         0
## 3826    NA     0      0         NA      NA         0         0
## 3827     2     1      1          1       1         0         2
## 3828     0     0      0          0      NA         0         0
## 3829    NA    NA     NA         NA      NA        NA         0
## 3830    NA    NA     NA         NA      NA         0        NA
## 3831    NA     0     NA         NA      NA         0         0
## 3832     0     0     NA          0      NA         0         0
## 3833    NA    NA     NA         NA      NA        NA         0
## 3834    NA     0     NA         NA      NA        NA        NA
## 3835    NA     0      0         NA      NA        NA         0
## 3836    NA    NA     NA          0      NA        NA         0
## 3837    NA    NA      0         NA      NA        NA         1
## 3838    NA     0     NA         NA      NA        NA        NA
## 3839    NA    NA      0         NA      NA        NA         0
## 3840    NA    NA     NA          0      NA        NA        NA
## 3841    NA    NA     NA         NA       2        NA        NA
## 3842    NA    NA     NA         NA      NA        NA         0
## 3843    NA    NA      0         NA      NA        NA         0
## 3844    NA    NA     NA         NA      NA        NA        NA
## 3845     0     0      1         NA       0         0        NA
## 3846    NA     0      0          0      NA         0         0
## 3847    NA    NA     NA         NA      NA        NA        NA
## 3848    NA    NA     NA         NA      NA        NA        NA
## 3849    NA     0     NA         NA      NA        NA        NA
## 3850    NA    NA     NA          0      NA        NA        NA
## 3851    NA    NA     NA         NA      NA        NA        NA
## 3852    NA     0     NA         NA       0        NA        NA
## 3853     1    NA     NA         NA      NA        NA        NA
## 3854    NA    NA     NA         NA      NA        NA         0
## 3855    NA    NA     NA         NA      NA        NA         0
## 3856    NA    NA     NA         NA      NA        NA         0
## 3857    NA    NA     NA         NA      NA        NA         0
## 3858     1     1      0          0      NA        NA         0
## 3859    NA     0     NA          0      NA        NA         0
## 3860    NA    NA     NA         NA      NA        NA        NA
## 3861    NA    NA     NA         NA      NA        NA         0
## 3862     0    NA     NA         NA      NA        NA         0
## 3863     0     0      1         NA       0         0         0
## 3864     0     0      0         NA       0         0        NA
## 3865    NA    NA     NA         NA      NA        NA         0
## 3866    NA     0     NA         NA      NA        NA        NA
## 3867     0     0      0         NA      NA         0        NA
## 3868    NA    NA     NA         NA      NA        NA         0
## 3869     0    NA     NA         NA      NA        NA        NA
## 3870     1     1      1          0       1         1         1
## 3871    NA     0     NA          0      NA        NA         0
## 3872    NA     0      0          0      NA         0        NA
## 3873     0     1      0          0       0         0         0
## 3874    NA     0      1          0       1        NA        NA
## 3875    NA    NA     NA         NA      NA        NA         0
## 3876    NA     0      1          0      NA         0         0
## 3877    NA    NA      1         NA      NA         0         0
## 3878     0    NA     NA         NA      NA         0        NA
## 3879     0    NA     NA         NA       0        NA        NA
## 3880    NA    NA     NA         NA      NA        NA         0
## 3881    NA     0     NA         NA      NA        NA        NA
## 3882    NA    NA     NA         NA      NA         0        NA
## 3883     0     0      0          0       0         0         0
## 3884    NA     0     NA         NA      NA        NA        NA
## 3885    NA     0      0         NA      NA        NA         0
## 3886     0     0     NA         NA       0         1         0
## 3887     0     0     NA         NA       0         0         1
## 3888     0     0      0          0       0         1         0
## 3889    NA    NA     NA         NA      NA        NA         0
## 3890     0     0      0          0       0         1         0
## 3891    NA     0     NA         NA      NA        NA        NA
## 3892     0     0     NA          0      NA         0         0
## 3893    NA     0     NA         NA      NA         1        NA
## 3894    NA    NA     NA         NA       0         0        NA
## 3895    NA    NA     NA         NA      NA        NA         0
## 3896     1     3      0          0       2         4         2
## 3897    NA     0      0         NA       0         0        NA
## 3898     1     1      1          0       0         0        NA
## 3899    NA    NA     NA         NA      NA         0        NA
## 3900     0    NA     NA         NA       0        NA        NA
## 3901    NA     0     NA         NA      NA        NA         0
## 3902    NA    NA      1         NA      NA        NA        NA
## 3903     1     1      1         NA       0         0         2
## 3904     0    NA      0         NA      NA         0         1
## 3905    NA     0     NA         NA      NA        NA        NA
## 3906    NA     0     NA         NA      NA        NA        NA
## 3907     0     0      0         NA      NA        NA         0
## 3908    NA     1      0         NA       0        NA         0
## 3909     0     0      0         NA       0        NA        NA
## 3910    NA    NA     NA         NA      NA        NA         0
## 3911    NA    NA     NA         NA      NA        NA        NA
## 3912    NA    NA     NA         NA      NA        NA        NA
## 3913    NA     0     NA          0      NA         0        NA
## 3914    NA    NA     NA         NA      NA        NA        NA
## 3915     0     0      0          0       1         1         0
## 3916    NA    NA     NA         NA      NA         0         0
## 3917    NA    NA     NA         NA      NA        NA        NA
## 3918    NA    NA     NA          0      NA        NA        NA
## 3919    NA    NA     NA         NA      NA        NA        NA
## 3920     0    NA     NA         NA      NA        NA        NA
## 3921     0    NA     NA          0      NA        NA        NA
## 3922     0    NA     NA         NA      NA        NA        NA
## 3923     0    NA     NA          0      NA        NA        NA
## 3924     0    NA     NA          0      NA        NA        NA
## 3925     0     0     NA         NA       0        NA        NA
## 3926    NA     0     NA         NA      NA         0        NA
## 3927    NA    NA     NA          0      NA        NA        NA
## 3928    NA     0     NA          0      NA        NA        NA
## 3929     1    NA      2          2       2         4         1
## 3930    NA    NA     NA         NA       0        NA        NA
## 3931    NA    NA     NA         NA      NA        NA        NA
## 3932     0     0     NA         NA      NA        NA        NA
## 3933    NA     0     NA          0      NA        NA        NA
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA    NA     NA          0      NA        NA         0
## 3936    NA    NA     NA         NA       0         0        NA
## 3937    NA    NA     NA          0       0        NA        NA
## 3938     0    NA     NA         NA      NA        NA        NA
## 3939     0     0     NA          0      NA        NA        NA
## 3940    NA     0     NA          0      NA         0        NA
## 3941    NA    NA     NA         NA      NA        NA        NA
## 3942    NA    NA      0         NA      NA        NA        NA
## 3943    NA     0     NA          0      NA         0         0
## 3944    NA     0     NA         NA      NA        NA        NA
## 3945     0     0     NA         NA      NA        NA        NA
## 3946     0    NA      0          0      NA        NA        NA
## 3947     1    NA     NA         NA      NA        NA        NA
## 3948    NA    NA     NA         NA      NA        NA        NA
## 3949    NA    NA     NA          0       0        NA        NA
## 3950     0     0     NA         NA       0        NA        NA
## 3951    NA     0      0          0       0        NA        NA
## 3952    NA    NA     NA         NA      NA         0         1
## 3953    NA     0     NA         NA      NA        NA        NA
## 3954    NA    NA     NA          1      NA        NA        NA
## 3955    NA     0     NA         NA      NA        NA        NA
## 3956     0     0     NA          0       0        NA        NA
## 3957    NA    NA     NA          0       0        NA        NA
## 3958     0    NA      1          0       0         0         0
## 3959     1    NA      0          0       0        NA        NA
## 3960    NA    NA     NA         NA      NA        NA        NA
## 3961     0     0     NA         NA      NA        NA        NA
## 3962    NA    NA     NA          0      NA        NA        NA
## 3963    NA     0     NA         NA      NA         0        NA
## 3964     0     0     NA          0      NA        NA        NA
## 3965    NA     0     NA          1       0        NA         0
## 3966    NA    NA     NA         NA      NA        NA        NA
## 3967    NA     0     NA          0       0        NA        NA
## 3968    NA    NA     NA         NA      NA        NA        NA
## 3969    NA    NA     NA         NA      NA        NA         0
## 3970    NA    NA     NA         NA      NA        NA        NA
## 3971    NA    NA     NA          0      NA        NA        NA
## 3972    NA     0     NA          0      NA         0         0
## 3973     0     0     NA         NA       0        NA        NA
## 3974    NA    NA     NA         NA      NA         0        NA
## 3975    NA     0     NA         NA      NA        NA         0
## 3976     0     0     NA         NA      NA        NA        NA
## 3977    NA    NA     NA         NA      NA        NA        NA
## 3978     0    NA     NA          0      NA        NA        NA
## 3979     0     0      0          1      NA         0        NA
## 3980     0    NA      0          0       0        NA        NA
## 3981    NA    NA     NA          0      NA         0         0
## 3982    NA    NA      0          0       0         0         0
## 3983     0     0      0          1       0         0         1
## 3984    NA    NA     NA          0      NA         0        NA
## 3985    NA    NA      1          1      NA         1         0
## 3986    NA     1     NA          0       0         0        NA
## 3987     0     0     NA          0      NA        NA        NA
## 3988    NA    NA      0          0       0        NA        NA
## 3989     0     0      0          0       0        NA         0
## 3990     0     0     NA          0       0        NA        NA
## 3991    NA     0     NA          0       0        NA        NA
## 3992     0    NA     NA         NA      NA        NA        NA
## 3993    NA    NA     NA         NA       0         0        NA
## 3994    NA    NA     NA         NA      NA        NA        NA
## 3995    NA    NA     NA         NA      NA        NA        NA
## 3996    NA    NA     NA         NA      NA        NA        NA
## 3997    NA    NA     NA         NA      NA        NA         0
## 3998    NA     1      0          0      NA         0         0
## 3999    NA     0     NA          0       0         0        NA
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]

Cambiar de nombre a una variable.

?rename
rename(base_de_datos, Sub_territorio = Sub.Territorio)
##        ID Year  Territorio Sub_territorio         CEDI Cliente Nombre
## 1       1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2       2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3       3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4       4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5       5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6       6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 7       7 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 8       8 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 9       9 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 10     10 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 11     11 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 12     12 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 13     13 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 14     14 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 15     15 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 16     16 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 17     17 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 18     18 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 19     19 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 20     20 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 21     21 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 22     22 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 23     23 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 24     24 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 25     25 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 26     26 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 27     27 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 28     28 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 29     29 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 30     30 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 31     31 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 32     32 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 33     33 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 34     34 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 35     35 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 36     36 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 37     37 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 38     38 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 39     39 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 40     40 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 41     41 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 42     42 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 43     43 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 44     44 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 45     45 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 46     46 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 47     47 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 48     48 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 49     49 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 50     50 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 51     51 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 52     52 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 53     53 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 54     54 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 55     55 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 56     56 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 57     57 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 58     58 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 59     59 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 60     60 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 61     61 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 62     62 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 63     63 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 64     64 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 65     65 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 66     66 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 67     67 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 68     68 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 69     69 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 70     70 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 71     71 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 72     72 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 73     73 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 74     74 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 75     75 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 76     76 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 77     77 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 78     78 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 79     79 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 80     80 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 81     81 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 82     82 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 83     83 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 84     84 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 85     85 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 86     86 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 87     87 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 88     88 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 89     89 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 90     90 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 91     91 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 92     92 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 93     93 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 94     94 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 95     95 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 96     96 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 97     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 98     98 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 99     99 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 100   100 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 101   101 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 102   102 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 103   103 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 104   104 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 105   105 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 106   106 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 107   107 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 108   108 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 109   109 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 110   110 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 111   111 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 112   112 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 113   113 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 114   114 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 115   115 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 116   116 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 117   117 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 118   118 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 119   119 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 120   120 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 121   121 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 122   122 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 123   123 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 124   124 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 125   125 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 126   126 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 127   127 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 128   128 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 129   129 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 130   130 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 131   131 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 132   132 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 133   133 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 134   134 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 135   135 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 136   136 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 137   137 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 138   138 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 139   139 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 140   140 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 141   141 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 142   142 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 143   143 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 144   144 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 145   145 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 146   146 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 147   147 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 148   148 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 149   149 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 150   150 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 151   151 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 152   152 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 153   153 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 154   154 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 155   155 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 156   156 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 157   157 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 158   158 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 159   159 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 160   160 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 161   161 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 162   162 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 163   163 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 164   164 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 165   165 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 166   166 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 167   167 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 168   168 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 169   169 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 170   170 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 171   171 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 172   172 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 173   173 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 174   174 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 175   175 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 176   176 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 177   177 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 178   178 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 179   179 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 180   180 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 181   181 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 182   182 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 183   183 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 184   184 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 185   185 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 186   186 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 187   187 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 188   188 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 189   189 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 190   190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 191   191 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 192   192 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 193   193 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 194   194 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 195   195 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 196   196 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 197   197 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 198   198 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 199   199 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 200   200 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 201   201 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 202   202 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 203   203 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 204   204 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 205   205 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 206   206 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 207   207 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 208   208 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 209   209 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 210   210 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 211   211 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 212   212 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 213   213 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 214   214 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 215   215 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 216   216 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 217   217 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 218   218 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 219   219 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 220   220 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 221   221 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 222   222 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 223   223 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 224   224 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 225   225 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 226   226 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 227   227 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 228   228 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 229   229 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 230   230 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 231   231 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 232   232 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 233   233 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 234   234 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 235   235 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 236   236 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 237   237 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 238   238 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 239   239 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 240   240 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 241   241 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 242   242 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 243   243 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 244   244 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 245   245 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 246   246 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 247   247 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 248   248 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 249   249 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 250   250 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 251   251 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 252   252 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 253   253 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 254   254 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 255   255 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 256   256 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 257   257 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 258   258 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 259   259 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 260   260 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 261   261 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 262   262 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 263   263 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 264   264 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 265   265 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 266   266 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 267   267 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 268   268 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 269   269 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 270   270 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 271   271 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 272   272 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 273   273 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 274   274 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 275   275 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 276   276 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 277   277 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 278   278 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 279   279 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 280   280 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 281   281 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 282   282 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 283   283 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 284   284 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 285   285 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 286   286 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 287   287 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 288   288 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 289   289 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 290   290 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 291   291 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 292   292 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 293   293 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 294   294 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 295   295 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 296   296 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 297   297 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 298   298 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 299   299 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 300   300 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 301   301 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 302   302 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 303   303 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 304   304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 305   305 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 306   306 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 307   307 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 308   308 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 309   309 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 310   310 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 311   311 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 312   312 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 313   313 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 314   314 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 315   315 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 316   316 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 317   317 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 318   318 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 319   319 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 320   320 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 321   321 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 322   322 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 323   323 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 324   324 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 325   325 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 326   326 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 327   327 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 328   328 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 329   329 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 330   330 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 331   331 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 332   332 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 333   333 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 334   334 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 335   335 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 336   336 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 337   337 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 338   338 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 339   339 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 340   340 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 341   341 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 342   342 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 343   343 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 344   344 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 345   345 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 346   346 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 347   347 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 348   348 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 349   349 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 350   350 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 351   351 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 352   352 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 353   353 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 354   354 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 355   355 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 356   356 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 357   357 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 358   358 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 359   359 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 360   360 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 361   361 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 362   362 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 363   363 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 364   364 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 365   365 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 366   366 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 367   367 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 368   368 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 369   369 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 370   370 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 371   371 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 372   372 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 373   373 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 374   374 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 375   375 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 376   376 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 377   377 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 378   378 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 379   379 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 380   380 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 381   381 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 382   382 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 383   383 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 384   384 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 385   385 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 386   386 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 387   387 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 388   388 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 389   389 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 390   390 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 391   391 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 392   392 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 393   393 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 394   394 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 395   395 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 396   396 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 397   397 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 398   398 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 399   399 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 400   400 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 401   401 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 402   402 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 403   403 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 404   404 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 405   405 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 406   406 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 407   407 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 408   408 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 409   409 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 410   410 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 411   411 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 412   412 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 413   413 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 414   414 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 415   415 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 416   416 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 417   417 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 418   418 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 419   419 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 420   420 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 421   421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 422   422 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 423   423 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 424   424 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 425   425 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 426   426 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 427   427 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 428   428 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 429   429 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 430   430 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 431   431 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 432   432 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 433   433 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 434   434 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 435   435 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 436   436 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 437   437 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 438   438 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 439   439 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 440   440 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 441   441 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 442   442 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 443   443 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 444   444 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 445   445 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 446   446 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 447   447 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 448   448 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 449   449 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 450   450 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 451   451 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 452   452 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 453   453 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 454   454 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 455   455 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 456   456 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 457   457 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 458   458 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 459   459 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 460   460 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 461   461 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 462   462 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 463   463 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 464   464 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 465   465 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 466   466 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 467   467 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 468   468 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 469   469 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 470   470 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 471   471 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 472   472 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 473   473 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 474   474 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 475   475 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 476   476 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 477   477 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 478   478 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 479   479 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 480   480 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 481   481 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 482   482 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 483   483 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 484   484 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 485   485 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 486   486 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 487   487 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 488   488 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 489   489 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 490   490 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 491   491 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 492   492 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 493   493 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 494   494 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 495   495 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 496   496 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 497   497 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 498   498 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 499   499 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 500   500 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 501   501 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 502   502 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 503   503 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 504   504 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 505   505 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 506   506 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 507   507 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 508   508 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 509   509 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 510   510 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 511   511 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 512   512 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 513   513 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 514   514 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 515   515 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 516   516 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 517   517 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 518   518 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 519   519 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 520   520 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 521   521 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 522   522 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 523   523 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 524   524 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 525   525 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 526   526 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 527   527 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 528   528 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 529   529 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 530   530 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 531   531 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 532   532 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 533   533 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 534   534 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 535   535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 536   536 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 537   537 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 538   538 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 539   539 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 540   540 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 541   541 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 542   542 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 543   543 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 544   544 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 545   545 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 546   546 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 547   547 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 548   548 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 549   549 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 550   550 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 551   551 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 552   552 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 553   553 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 554   554 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 555   555 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 556   556 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 557   557 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 558   558 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 559   559 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 560   560 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 561   561 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 562   562 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 563   563 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 564   564 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 565   565 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 566   566 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 567   567 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 568   568 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 569   569 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 570   570 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 571   571 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 572   572 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 573   573 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 574   574 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 575   575 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 576   576 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 577   577 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 578   578 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 579   579 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 580   580 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 581   581 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 582   582 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 583   583 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 584   584 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 585   585 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 586   586 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 587   587 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 588   588 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 589   589 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 590   590 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 591   591 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 592   592 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 593   593 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 594   594 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 595   595 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 596   596 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 597   597 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 598   598 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 599   599 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 600   600 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 601   601 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 602   602 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 603   603 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 604   604 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 605   605 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 606   606 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 607   607 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 608   608 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 609   609 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 610   610 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 611   611 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 612   612 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 613   613 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 614   614 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 615   615 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 616   616 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 617   617 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 618   618 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 619   619 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 620   620 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 621   621 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 622   622 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 623   623 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 624   624 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 625   625 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 626   626 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 627   627 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 628   628 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 629   629 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 630   630 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 631   631 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 632   632 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 633   633 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 634   634 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 635   635 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 636   636 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 637   637 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 638   638 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 639   639 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 640   640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 641   641 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 642   642 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 643   643 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 644   644 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 645   645 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 646   646 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 647   647 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 648   648 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 649   649 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 650   650 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 651   651 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 652   652 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 653   653 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 654   654 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 655   655 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 656   656 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 657   657 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 658   658 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 659   659 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 660   660 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 661   661 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 662   662 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 663   663 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 664   664 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 665   665 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 666   666 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 667   667 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 668   668 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 669   669 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 670   670 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 671   671 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 672   672 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 673   673 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 674   674 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 675   675 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 676   676 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 677   677 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 678   678 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 679   679 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 680   680 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 681   681 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 682   682 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 683   683 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 684   684 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 685   685 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 686   686 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 687   687 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 688   688 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 689   689 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 690   690 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 691   691 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 692   692 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 693   693 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 694   694 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 695   695 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 696   696 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 697   697 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 698   698 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 699   699 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 700   700 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 701   701 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 702   702 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 703   703 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 704   704 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 705   705 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 706   706 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 707   707 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 708   708 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 709   709 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 710   710 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 711   711 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 712   712 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 713   713 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 714   714 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 715   715 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 716   716 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 717   717 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 718   718 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 719   719 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 720   720 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 721   721 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 722   722 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 723   723 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 724   724 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 725   725 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 726   726 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 727   727 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 728   728 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 729   729 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 730   730 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 731   731 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 732   732 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 733   733 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 734   734 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 735   735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 736   736 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 737   737 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 738   738 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 739   739 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 740   740 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 741   741 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 742   742 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 743   743 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 744   744 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 745   745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 746   746 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 747   747 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 748   748 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 749   749 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 750   750 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 751   751 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 752   752 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 753   753 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 754   754 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 755   755 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 756   756 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 757   757 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 758   758 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 759   759 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 760   760 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 761   761 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 762   762 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 763   763 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 764   764 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 765   765 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 766   766 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 767   767 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 768   768 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 769   769 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 770   770 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 771   771 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 772   772 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 773   773 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 774   774 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 775   775 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 776   776 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 777   777 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 778   778 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 779   779 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 780   780 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 781   781 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 782   782 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 783   783 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 784   784 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 785   785 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 786   786 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 787   787 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 788   788 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 789   789 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 790   790 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 791   791 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 792   792 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 793   793 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 794   794 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 795   795 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 796   796 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 797   797 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 798   798 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 799   799 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 800   800 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 801   801 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 802   802 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 803   803 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 804   804 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 805   805 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 806   806 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 807   807 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 808   808 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 809   809 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 810   810 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 811   811 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 812   812 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 813   813 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 814   814 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 815   815 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 816   816 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 817   817 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 818   818 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 819   819 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 820   820 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 821   821 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 822   822 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 823   823 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 824   824 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 825   825 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 826   826 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 827   827 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 828   828 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 829   829 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 830   830 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 831   831 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 832   832 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 833   833 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 834   834 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 835   835 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 836   836 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 837   837 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 838   838 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 839   839 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 840   840 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 841   841 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 842   842 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 843   843 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 844   844 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 845   845 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 846   846 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 847   847 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 848   848 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 849   849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 850   850 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 851   851 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 852   852 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 853   853 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 854   854 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 855   855 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 856   856 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 857   857 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 858   858 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 859   859 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 860   860 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 861   861 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 862   862 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 863   863 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 864   864 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 865   865 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 866   866 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 867   867 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 868   868 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 869   869 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 870   870 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 871   871 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 872   872 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 873   873 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 874   874 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 875   875 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 876   876 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 877   877 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 878   878 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 879   879 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 880   880 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 881   881 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 882   882 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 883   883 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 884   884 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 885   885 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 886   886 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 887   887 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 888   888 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 889   889 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 890   890 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 891   891 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 892   892 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 893   893 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 894   894 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 895   895 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 896   896 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 897   897 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 898   898 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 899   899 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 900   900 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 901   901 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 902   902 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 903   903 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 904   904 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 905   905 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 906   906 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 907   907 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 908   908 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 909   909 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 910   910 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 911   911 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 912   912 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 913   913 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 914   914 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 915   915 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 916   916 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 917   917 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 918   918 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 919   919 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 920   920 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 921   921 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 922   922 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 923   923 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 924   924 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 925   925 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 926   926 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 927   927 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 928   928 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 929   929 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 930   930 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 931   931 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 932   932 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 933   933 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 934   934 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 935   935 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 936   936 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 937   937 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 938   938 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 939   939 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 940   940 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 941   941 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 942   942 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 943   943 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 944   944 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 945   945 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 946   946 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 947   947 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 948   948 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 949   949 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 950   950 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 951   951 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 952   952 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 953   953 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 954   954 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 955   955 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 956   956 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 957   957 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 958   958 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 959   959 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 960   960 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 961   961 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 962   962 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 963   963 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 964   964 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 965   965 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 966   966 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 967   967 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 968   968 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 969   969 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 970   970 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 971   971 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 972   972 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 973   973 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 974   974 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 975   975 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 976   976 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 977   977 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 978   978 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 979   979 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 980   980 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 981   981 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 982   982 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 983   983 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 984   984 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 985   985 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 986   986 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 987   987 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 988   988 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 989   989 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 990   990 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 991   991 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 992   992 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 993   993 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 994   994 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 995   995 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 996   996 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 997   997 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 998   998 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 999   999 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1000 1000 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1001 1001 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1002 1002 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1003 1003 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1004 1004 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1005 1005 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1006 1006 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1007 1007 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1008 1008 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1009 1009 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1010 1010 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1011 1011 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1012 1012 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1013 1013 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1014 1014 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1015 1015 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1016 1016 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1017 1017 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1018 1018 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1019 1019 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1020 1020 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1021 1021 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1022 1022 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1023 1023 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1024 1024 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1025 1025 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1026 1026 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1027 1027 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1028 1028 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1029 1029 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1030 1030 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1031 1031 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1032 1032 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1033 1033 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1034 1034 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1035 1035 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1036 1036 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1037 1037 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1038 1038 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1039 1039 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1040 1040 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1041 1041 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1042 1042 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1043 1043 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1044 1044 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1045 1045 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1046 1046 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1047 1047 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1048 1048 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1049 1049 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1050 1050 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1051 1051 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1052 1052 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1053 1053 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1054 1054 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1055 1055 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1056 1056 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1057 1057 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1058 1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1059 1059 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1060 1060 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1061 1061 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1062 1062 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1063 1063 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1064 1064 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1065 1065 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1066 1066 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1067 1067 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1068 1068 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1069 1069 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1070 1070 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1071 1071 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1072 1072 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1073 1073 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1074 1074 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1075 1075 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1076 1076 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1077 1077 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1078 1078 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1079 1079 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1080 1080 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1081 1081 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1082 1082 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1083 1083 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1084 1084 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1085 1085 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1086 1086 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1087 1087 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1088 1088 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1089 1089 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1090 1090 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1091 1091 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1092 1092 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1093 1093 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1094 1094 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1095 1095 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1096 1096 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1097 1097 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1098 1098 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1099 1099 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1100 1100 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1101 1101 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1102 1102 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1103 1103 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1104 1104 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1105 1105 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1106 1106 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1107 1107 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1108 1108 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1109 1109 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1110 1110 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1111 1111 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1112 1112 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1113 1113 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1114 1114 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1115 1115 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1116 1116 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1117 1117 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1118 1118 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1119 1119 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1120 1120 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1121 1121 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1122 1122 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1123 1123 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1124 1124 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1125 1125 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1126 1126 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1127 1127 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1128 1128 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1129 1129 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1130 1130 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1131 1131 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1132 1132 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1133 1133 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1134 1134 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1135 1135 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1136 1136 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1137 1137 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1138 1138 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1139 1139 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1140 1140 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1141 1141 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1142 1142 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1143 1143 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1144 1144 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1145 1145 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1146 1146 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1147 1147 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1148 1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1149 1149 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1150 1150 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1151 1151 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1152 1152 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1153 1153 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1154 1154 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1155 1155 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1156 1156 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1157 1157 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1158 1158 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1159 1159 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1160 1160 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1161 1161 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1162 1162 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1163 1163 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1164 1164 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1165 1165 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1166 1166 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1167 1167 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1168 1168 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1169 1169 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1170 1170 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1171 1171 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1172 1172 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1173 1173 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1174 1174 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1175 1175 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1176 1176 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1177 1177 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1178 1178 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1179 1179 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1180 1180 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1181 1181 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1182 1182 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1183 1183 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1184 1184 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1185 1185 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1186 1186 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1187 1187 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1188 1188 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1189 1189 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1190 1190 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1191 1191 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1192 1192 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1193 1193 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1194 1194 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1195 1195 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1196 1196 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1197 1197 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1198 1198 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1199 1199 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1200 1200 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1201 1201 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1202 1202 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1203 1203 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1204 1204 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1205 1205 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1206 1206 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1207 1207 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1208 1208 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1209 1209 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1210 1210 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1211 1211 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1212 1212 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1213 1213 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1214 1214 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1215 1215 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1216 1216 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1217 1217 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1218 1218 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1219 1219 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1220 1220 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1221 1221 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1222 1222 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1223 1223 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1224 1224 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1225 1225 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1226 1226 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1227 1227 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1228 1228 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1229 1229 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1230 1230 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1231 1231 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1232 1232 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1233 1233 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1234 1234 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1235 1235 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1236 1236 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1237 1237 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1238 1238 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1239 1239 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1240 1240 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1241 1241 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1242 1242 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1243 1243 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1244 1244 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1245 1245 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1246 1246 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1247 1247 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1248 1248 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1249 1249 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1250 1250 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1251 1251 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1252 1252 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1253 1253 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1254 1254 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1255 1255 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1256 1256 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1257 1257 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1258 1258 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1259 1259 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1260 1260 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1261 1261 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1262 1262 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1263 1263 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1264 1264 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1265 1265 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1266 1266 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1267 1267 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1268 1268 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1269 1269 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1270 1270 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1271 1271 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1272 1272 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1273 1273 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1274 1274 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1275 1275 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1276 1276 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1277 1277 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1278 1278 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1279 1279 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1280 1280 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1281 1281 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1282 1282 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1283 1283 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1284 1284 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1285 1285 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1286 1286 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1287 1287 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1288 1288 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1289 1289 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1290 1290 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1291 1291 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1292 1292 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1293 1293 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1294 1294 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1295 1295 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1296 1296 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1297 1297 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1298 1298 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1299 1299 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1300 1300 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1301 1301 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1302 1302 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1303 1303 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1304 1304 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1305 1305 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1306 1306 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1307 1307 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1308 1308 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1309 1309 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1310 1310 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1311 1311 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1312 1312 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1313 1313 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1314 1314 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1315 1315 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1316 1316 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1317 1317 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1318 1318 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1319 1319 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1320 1320 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1321 1321 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1322 1322 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1323 1323 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1324 1324 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1325 1325 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1326 1326 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1327 1327 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1328 1328 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1329 1329 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1330 1330 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1331 1331 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1332 1332 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1333 1333 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1334 1334 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1335 1335 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1336 1336 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1337 1337 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1338 1338 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1339 1339 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1340 1340 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1341 1341 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1342 1342 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1343 1343 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1344 1344 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1345 1345 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1346 1346 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1347 1347 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1348 1348 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1349 1349 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1350 1350 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1351 1351 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1352 1352 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1353 1353 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1354 1354 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1355 1355 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1356 1356 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1357 1357 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1358 1358 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1359 1359 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1360 1360 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1361 1361 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1362 1362 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1363 1363 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1364 1364 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1365 1365 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1366 1366 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1367 1367 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1368 1368 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1369 1369 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1370 1370 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1371 1371 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1372 1372 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1373 1373 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1374 1374 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1375 1375 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1376 1376 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1377 1377 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1378 1378 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1379 1379 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1380 1380 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1381 1381 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1382 1382 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1383 1383 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1384 1384 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1385 1385 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1386 1386 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1387 1387 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1388 1388 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1389 1389 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1390 1390 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1391 1391 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1392 1392 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1393 1393 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1394 1394 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1395 1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1396 1396 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1397 1397 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1398 1398 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1399 1399 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1400 1400 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1401 1401 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1402 1402 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1403 1403 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1404 1404 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1405 1405 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1406 1406 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1407 1407 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1408 1408 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1409 1409 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1410 1410 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1411 1411 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1412 1412 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1413 1413 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1414 1414 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1415 1415 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1416 1416 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1417 1417 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1418 1418 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1419 1419 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1420 1420 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1421 1421 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1422 1422 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1423 1423 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1424 1424 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1425 1425 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1426 1426 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1427 1427 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1428 1428 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1429 1429 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1430 1430 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1431 1431 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1432 1432 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1433 1433 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1434 1434 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1435 1435 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1436 1436 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1437 1437 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1438 1438 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1439 1439 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1440 1440 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1441 1441 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1442 1442 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1443 1443 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1444 1444 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1445 1445 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1446 1446 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1447 1447 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1448 1448 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1449 1449 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1450 1450 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1451 1451 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1452 1452 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1453 1453 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1454 1454 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1455 1455 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1456 1456 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1457 1457 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1458 1458 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1459 1459 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1460 1460 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1461 1461 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1462 1462 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1463 1463 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1464 1464 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1465 1465 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1466 1466 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1467 1467 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1468 1468 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1469 1469 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1470 1470 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1471 1471 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1472 1472 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1473 1473 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1474 1474 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1475 1475 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1476 1476 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1477 1477 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1478 1478 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1479 1479 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1480 1480 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1481 1481 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1482 1482 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1483 1483 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1484 1484 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1485 1485 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1486 1486 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1487 1487 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1488 1488 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1489 1489 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1490 1490 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1491 1491 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1492 1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1493 1493 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1494 1494 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1495 1495 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1496 1496 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1497 1497 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1498 1498 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1499 1499 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1500 1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1501 1501 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1502 1502 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1503 1503 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1504 1504 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1505 1505 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1506 1506 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1507 1507 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1508 1508 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1509 1509 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1510 1510 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1511 1511 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1512 1512 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1513 1513 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1514 1514 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1515 1515 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1516 1516 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1517 1517 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1518 1518 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1519 1519 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1520 1520 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1521 1521 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1522 1522 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1523 1523 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1524 1524 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1525 1525 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1526 1526 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1527 1527 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1528 1528 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1529 1529 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1530 1530 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1531 1531 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1532 1532 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1533 1533 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1534 1534 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1535 1535 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1536 1536 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1537 1537 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1538 1538 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1539 1539 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1540 1540 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1541 1541 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1542 1542 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1543 1543 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1544 1544 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1545 1545 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1546 1546 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1547 1547 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1548 1548 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1549 1549 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1550 1550 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1551 1551 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1552 1552 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1553 1553 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1554 1554 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1555 1555 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1556 1556 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1557 1557 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1558 1558 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1559 1559 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1560 1560 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1561 1561 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1562 1562 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1563 1563 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1564 1564 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1565 1565 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1566 1566 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1567 1567 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1568 1568 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1569 1569 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1570 1570 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1571 1571 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1572 1572 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1573 1573 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1574 1574 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1575 1575 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1576 1576 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1577 1577 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1578 1578 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1579 1579 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1580 1580 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1581 1581 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1582 1582 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1583 1583 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1584 1584 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1585 1585 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1586 1586 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1587 1587 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1588 1588 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1589 1589 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1590 1590 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1591 1591 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1592 1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1593 1593 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1594 1594 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1595 1595 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1596 1596 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1597 1597 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1598 1598 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1599 1599 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1600 1600 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1601 1601 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1602 1602 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1603 1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1604 1604 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1605 1605 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1606 1606 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1607 1607 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1608 1608 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1609 1609 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1610 1610 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1611 1611 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1612 1612 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1613 1613 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1614 1614 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1615 1615 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1616 1616 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1617 1617 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1618 1618 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1619 1619 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1620 1620 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1621 1621 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1622 1622 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1623 1623 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1624 1624 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1625 1625 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1626 1626 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1627 1627 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1628 1628 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1629 1629 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1630 1630 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1631 1631 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1632 1632 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1633 1633 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1634 1634 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1635 1635 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1636 1636 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1637 1637 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1638 1638 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1639 1639 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1640 1640 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1641 1641 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1642 1642 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1643 1643 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1644 1644 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1645 1645 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1646 1646 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1647 1647 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1648 1648 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1649 1649 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1650 1650 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1651 1651 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1652 1652 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1653 1653 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1654 1654 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1655 1655 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1656 1656 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1657 1657 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1658 1658 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1659 1659 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1660 1660 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1661 1661 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1662 1662 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1663 1663 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1664 1664 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1665 1665 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1666 1666 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1667 1667 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1668 1668 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1669 1669 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1670 1670 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1671 1671 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1672 1672 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1673 1673 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1674 1674 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1675 1675 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1676 1676 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1677 1677 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1678 1678 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1679 1679 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1680 1680 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1681 1681 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1682 1682 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1683 1683 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1684 1684 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1685 1685 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1686 1686 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1687 1687 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1688 1688 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1689 1689 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1690 1690 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1691 1691 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1692 1692 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1693 1693 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1694 1694 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1695 1695 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1696 1696 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1697 1697 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1698 1698 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1699 1699 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1700 1700 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1701 1701 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1702 1702 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1703 1703 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1704 1704 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1705 1705 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1706 1706 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1707 1707 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1708 1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1709 1709 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1710 1710 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1711 1711 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1712 1712 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1713 1713 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1714 1714 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1715 1715 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1716 1716 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1717 1717 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1718 1718 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1719 1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1720 1720 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1721 1721 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1722 1722 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1723 1723 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1724 1724 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1725 1725 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1726 1726 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1727 1727 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1728 1728 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1729 1729 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1730 1730 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1731 1731 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1732 1732 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1733 1733 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1734 1734 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1735 1735 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1736 1736 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1737 1737 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1738 1738 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1739 1739 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1740 1740 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1741 1741 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1742 1742 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1743 1743 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1744 1744 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1745 1745 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1746 1746 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1747 1747 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1748 1748 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1749 1749 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1750 1750 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1751 1751 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1752 1752 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1753 1753 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1754 1754 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1755 1755 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1756 1756 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1757 1757 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1758 1758 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1759 1759 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1760 1760 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1761 1761 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1762 1762 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1763 1763 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1764 1764 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1765 1765 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1766 1766 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1767 1767 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1768 1768 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1769 1769 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1770 1770 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1771 1771 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1772 1772 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1773 1773 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1774 1774 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1775 1775 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1776 1776 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1777 1777 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1778 1778 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1779 1779 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1780 1780 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1781 1781 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1782 1782 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1783 1783 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1784 1784 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1785 1785 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1786 1786 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1787 1787 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1788 1788 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1789 1789 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1790 1790 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1791 1791 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1792 1792 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1793 1793 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1794 1794 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1795 1795 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1796 1796 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1797 1797 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1798 1798 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1799 1799 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1800 1800 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1801 1801 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1802 1802 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1803 1803 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1804 1804 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1805 1805 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1806 1806 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1807 1807 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1808 1808 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1809 1809 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1810 1810 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1811 1811 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1812 1812 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1813 1813 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1814 1814 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1815 1815 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1816 1816 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1817 1817 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1818 1818 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1819 1819 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1820 1820 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1821 1821 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1822 1822 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1823 1823 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1824 1824 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1825 1825 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1826 1826 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1827 1827 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1828 1828 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1829 1829 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1830 1830 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1831 1831 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1832 1832 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1833 1833 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1834 1834 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1835 1835 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1836 1836 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1837 1837 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1838 1838 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1839 1839 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1840 1840 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1841 1841 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1842 1842 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1843 1843 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1844 1844 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1845 1845 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1846 1846 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1847 1847 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1848 1848 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1849 1849 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1850 1850 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1851 1851 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1852 1852 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1853 1853 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1854 1854 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1855 1855 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1856 1856 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1857 1857 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1858 1858 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1859 1859 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1860 1860 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1861 1861 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1862 1862 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1863 1863 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1864 1864 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1865 1865 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1866 1866 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1867 1867 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1868 1868 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1869 1869 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1870 1870 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1871 1871 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1872 1872 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1873 1873 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1874 1874 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1875 1875 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1876 1876 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1877 1877 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1878 1878 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1879 1879 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1880 1880 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1881 1881 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1882 1882 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1883 1883 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1884 1884 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1885 1885 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1886 1886 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1887 1887 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1888 1888 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1889 1889 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1890 1890 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1891 1891 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1892 1892 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1893 1893 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1894 1894 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1895 1895 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1896 1896 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1897 1897 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1898 1898 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1899 1899 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1900 1900 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1901 1901 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1902 1902 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1903 1903 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1904 1904 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1905 1905 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1906 1906 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1907 1907 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1908 1908 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1909 1909 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1910 1910 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1911 1911 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1912 1912 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1913 1913 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1914 1914 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1915 1915 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1916 1916 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1917 1917 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1918 1918 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1919 1919 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1920 1920 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1921 1921 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1922 1922 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1923 1923 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1924 1924 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1925 1925 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1926 1926 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1927 1927 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1928 1928 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1929 1929 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1930 1930 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1931 1931 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1932 1932 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1933 1933 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1934 1934 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1935 1935 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1936 1936 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1937 1937 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1938 1938 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1939 1939 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1940 1940 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1941 1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1942 1942 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1943 1943 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1944 1944 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1945 1945 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1946 1946 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1947 1947 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1948 1948 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1949 1949 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1950 1950 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1951 1951 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1952 1952 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1953 1953 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1954 1954 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1955 1955 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1956 1956 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1957 1957 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1958 1958 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1959 1959 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1960 1960 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1961 1961 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1962 1962 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1963 1963 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1964 1964 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1965 1965 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1966 1966 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1967 1967 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1968 1968 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1969 1969 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1970 1970 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1971 1971 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1972 1972 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1973 1973 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1974 1974 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1975 1975 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1976 1976 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1977 1977 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1978 1978 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1979 1979 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1980 1980 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1981 1981 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1982 1982 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1983 1983 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1984 1984 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1985 1985 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1986 1986 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1987 1987 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1988 1988 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1989 1989 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1990 1990 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1991 1991 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1992 1992 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1993 1993 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1994 1994 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1995 1995 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1996 1996 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1997 1997 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1998 1998 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1999 1999 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2000 2000 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2001 2001 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2002 2002 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2003 2003 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2004 2004 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2005 2005 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2006 2006 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2007 2007 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2008 2008 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2009 2009 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2010 2010 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2011 2011 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2012 2012 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2013 2013 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2014 2014 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2015 2015 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2016 2016 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2017 2017 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2018 2018 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2019 2019 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2020 2020 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2021 2021 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2022 2022 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2023 2023 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2024 2024 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2025 2025 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2026 2026 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2027 2027 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2028 2028 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2029 2029 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2030 2030 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2031 2031 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2032 2032 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2033 2033 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2034 2034 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2035 2035 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2036 2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2037 2037 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2038 2038 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2039 2039 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2040 2040 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2041 2041 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2042 2042 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2043 2043 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2044 2044 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2045 2045 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2046 2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2047 2047 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2048 2048 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2049 2049 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2050 2050 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2051 2051 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2052 2052 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2053 2053 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2054 2054 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2055 2055 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2056 2056 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2057 2057 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2058 2058 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2059 2059 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2060 2060 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2061 2061 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2062 2062 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2063 2063 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2064 2064 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2065 2065 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2066 2066 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2067 2067 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2068 2068 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2069 2069 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2070 2070 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2071 2071 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2072 2072 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2073 2073 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2074 2074 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2075 2075 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2076 2076 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2077 2077 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2078 2078 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2079 2079 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2080 2080 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2081 2081 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2082 2082 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2083 2083 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2084 2084 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2085 2085 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2086 2086 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2087 2087 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2088 2088 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2089 2089 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2090 2090 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2091 2091 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2092 2092 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2093 2093 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2094 2094 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2095 2095 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2096 2096 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2097 2097 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2098 2098 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2099 2099 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2100 2100 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2101 2101 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2102 2102 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2103 2103 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2104 2104 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2105 2105 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2106 2106 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2107 2107 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2108 2108 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2109 2109 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2110 2110 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2111 2111 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2112 2112 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2113 2113 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2114 2114 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2115 2115 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2116 2116 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2117 2117 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2118 2118 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2119 2119 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2120 2120 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2121 2121 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2122 2122 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2123 2123 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2124 2124 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2125 2125 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2126 2126 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2127 2127 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2128 2128 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2129 2129 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2130 2130 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2131 2131 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2132 2132 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2133 2133 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2134 2134 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2135 2135 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2136 2136 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2137 2137 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2138 2138 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2139 2139 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2140 2140 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2141 2141 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2142 2142 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2143 2143 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2144 2144 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2145 2145 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2146 2146 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2147 2147 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2148 2148 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2149 2149 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2150 2150 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2151 2151 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2152 2152 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2153 2153 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2154 2154 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2155 2155 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2156 2156 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2157 2157 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2158 2158 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2159 2159 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2160 2160 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2161 2161 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2162 2162 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2163 2163 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2164 2164 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2165 2165 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2166 2166 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2167 2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2168 2168 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2169 2169 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2170 2170 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2171 2171 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2172 2172 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2173 2173 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2174 2174 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2175 2175 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2176 2176 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2177 2177 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2178 2178 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2179 2179 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2180 2180 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2181 2181 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2182 2182 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2183 2183 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2184 2184 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2185 2185 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2186 2186 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2187 2187 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2188 2188 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2189 2189 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2190 2190 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2191 2191 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2192 2192 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2193 2193 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2194 2194 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2195 2195 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2196 2196 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2197 2197 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2198 2198 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2199 2199 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2200 2200 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2201 2201 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2202 2202 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2203 2203 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2204 2204 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2205 2205 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2206 2206 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2207 2207 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2208 2208 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2209 2209 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2210 2210 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2211 2211 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2212 2212 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2213 2213 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2214 2214 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2215 2215 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2216 2216 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2217 2217 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2218 2218 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2219 2219 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2220 2220 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2221 2221 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2222 2222 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2223 2223 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2224 2224 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2225 2225 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2226 2226 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2227 2227 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2228 2228 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2229 2229 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2230 2230 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2231 2231 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2232 2232 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2233 2233 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2234 2234 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2235 2235 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2236 2236 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2237 2237 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2238 2238 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2239 2239 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2240 2240 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2241 2241 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2242 2242 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2243 2243 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2244 2244 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2245 2245 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2246 2246 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2247 2247 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2248 2248 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2249 2249 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2250 2250 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2251 2251 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2252 2252 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2253 2253 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2254 2254 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2255 2255 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2256 2256 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2257 2257 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2258 2258 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2259 2259 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2260 2260 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2261 2261 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2262 2262 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2263 2263 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2264 2264 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2265 2265 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2266 2266 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2267 2267 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2268 2268 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2269 2269 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2270 2270 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2271 2271 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2272 2272 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2273 2273 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2274 2274 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2275 2275 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2276 2276 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2277 2277 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2278 2278 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2279 2279 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2280 2280 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2281 2281 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2282 2282 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2283 2283 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2284 2284 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2285 2285 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2286 2286 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2287 2287 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2288 2288 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2289 2289 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2290 2290 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2291 2291 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2292 2292 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2293 2293 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2294 2294 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2295 2295 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2296 2296 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2297 2297 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2298 2298 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2299 2299 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2300 2300 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2301 2301 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2302 2302 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2303 2303 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2304 2304 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2305 2305 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2306 2306 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2307 2307 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2308 2308 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2309 2309 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2310 2310 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2311 2311 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2312 2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2313 2313 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2314 2314 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2315 2315 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2316 2316 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2317 2317 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2318 2318 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2319 2319 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2320 2320 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2321 2321 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2322 2322 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2323 2323 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2324 2324 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2325 2325 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2326 2326 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2327 2327 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2328 2328 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2329 2329 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2330 2330 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2331 2331 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2332 2332 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2333 2333 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2334 2334 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2335 2335 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2336 2336 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2337 2337 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2338 2338 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2339 2339 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2340 2340 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2341 2341 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2342 2342 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2343 2343 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2344 2344 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2345 2345 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2346 2346 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2347 2347 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2348 2348 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2349 2349 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2350 2350 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2351 2351 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2352 2352 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2353 2353 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2354 2354 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2355 2355 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2356 2356 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2357 2357 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2358 2358 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2359 2359 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2360 2360 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2361 2361 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2362 2362 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2363 2363 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2364 2364 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2365 2365 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2366 2366 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2367 2367 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2368 2368 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2369 2369 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2370 2370 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2371 2371 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2372 2372 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2373 2373 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2374 2374 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2375 2375 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2376 2376 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2377 2377 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2378 2378 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2379 2379 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2380 2380 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2381 2381 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2382 2382 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2383 2383 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2384 2384 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2385 2385 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2386 2386 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2387 2387 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2388 2388 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2389 2389 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2390 2390 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2391 2391 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2392 2392 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2393 2393 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2394 2394 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2395 2395 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2396 2396 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2397 2397 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2398 2398 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2399 2399 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2400 2400 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2401 2401 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2402 2402 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2403 2403 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2404 2404 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2405 2405 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2406 2406 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2407 2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2408 2408 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2409 2409 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2410 2410 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2411 2411 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2412 2412 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2413 2413 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2414 2414 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2415 2415 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2416 2416 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2417 2417 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2418 2418 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2419 2419 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2420 2420 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2421 2421 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2422 2422 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2423 2423 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2424 2424 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2425 2425 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2426 2426 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2427 2427 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2428 2428 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2429 2429 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2430 2430 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2431 2431 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2432 2432 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2433 2433 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2434 2434 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2435 2435 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2436 2436 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2437 2437 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2438 2438 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2439 2439 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2440 2440 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2441 2441 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2442 2442 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2443 2443 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2444 2444 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2445 2445 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2446 2446 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2447 2447 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2448 2448 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2449 2449 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2450 2450 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2451 2451 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2452 2452 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2453 2453 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2454 2454 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2455 2455 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2456 2456 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2457 2457 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2458 2458 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2459 2459 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2460 2460 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2461 2461 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2462 2462 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2463 2463 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2464 2464 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2465 2465 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2466 2466 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2467 2467 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2468 2468 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2469 2469 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2470 2470 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2471 2471 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2472 2472 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2473 2473 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2474 2474 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2475 2475 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2476 2476 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2477 2477 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2478 2478 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2479 2479 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2480 2480 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2481 2481 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2482 2482 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2483 2483 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2484 2484 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2485 2485 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2486 2486 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2487 2487 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2488 2488 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2489 2489 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2490 2490 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2491 2491 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2492 2492 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2493 2493 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2494 2494 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2495 2495 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2496 2496 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2497 2497 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2498 2498 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2499 2499 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2500 2500 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2501 2501 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2502 2502 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2503 2503 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2504 2504 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2505 2505 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2506 2506 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2507 2507 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2508 2508 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2509 2509 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2510 2510 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2511 2511 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2512 2512 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2513 2513 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2514 2514 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2515 2515 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2516 2516 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2517 2517 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2518 2518 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2519 2519 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2520 2520 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2521 2521 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2522 2522 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2523 2523 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2524 2524 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2525 2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2526 2526 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2527 2527 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2528 2528 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2529 2529 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2530 2530 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2531 2531 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2532 2532 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2533 2533 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2534 2534 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2535 2535 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2536 2536 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2537 2537 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2538 2538 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2539 2539 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2540 2540 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2541 2541 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2542 2542 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2543 2543 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2544 2544 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2545 2545 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2546 2546 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2547 2547 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2548 2548 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2549 2549 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2550 2550 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2551 2551 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2552 2552 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2553 2553 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2554 2554 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2555 2555 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2556 2556 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2557 2557 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2558 2558 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2559 2559 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2560 2560 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2561 2561 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2562 2562 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2563 2563 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2564 2564 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2565 2565 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2566 2566 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2567 2567 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2568 2568 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2569 2569 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2570 2570 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2571 2571 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2572 2572 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2573 2573 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2574 2574 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2575 2575 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2576 2576 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2577 2577 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2578 2578 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2579 2579 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2580 2580 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2581 2581 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2582 2582 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2583 2583 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2584 2584 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2585 2585 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2586 2586 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2587 2587 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2588 2588 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2589 2589 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2590 2590 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2591 2591 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2592 2592 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2593 2593 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2594 2594 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2595 2595 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2596 2596 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2597 2597 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2598 2598 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2599 2599 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2600 2600 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2601 2601 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2602 2602 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2603 2603 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2604 2604 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2605 2605 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2606 2606 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2607 2607 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2608 2608 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2609 2609 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2610 2610 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2611 2611 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2612 2612 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2613 2613 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2614 2614 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2615 2615 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2616 2616 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2617 2617 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2618 2618 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2619 2619 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2620 2620 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2621 2621 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2622 2622 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2623 2623 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2624 2624 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2625 2625 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2626 2626 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2627 2627 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2628 2628 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2629 2629 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2630 2630 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2631 2631 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2632 2632 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2633 2633 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2634 2634 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2635 2635 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2636 2636 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2637 2637 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2638 2638 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2639 2639 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2640 2640 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2641 2641 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2642 2642 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2643 2643 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2644 2644 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2645 2645 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2646 2646 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2647 2647 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2648 2648 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2649 2649 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2650 2650 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2651 2651 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2652 2652 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2653 2653 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2654 2654 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2655 2655 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2656 2656 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2657 2657 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2658 2658 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2659 2659 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2660 2660 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2661 2661 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2662 2662 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2663 2663 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2664 2664 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2665 2665 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2666 2666 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2667 2667 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2668 2668 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2669 2669 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2670 2670 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2671 2671 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2672 2672 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2673 2673 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2674 2674 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2675 2675 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2676 2676 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2677 2677 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2678 2678 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2679 2679 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2680 2680 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2681 2681 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2682 2682 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2683 2683 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2684 2684 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2685 2685 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2686 2686 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2687 2687 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2688 2688 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2689 2689 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2690 2690 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2691 2691 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2692 2692 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2693 2693 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2694 2694 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2695 2695 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2696 2696 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2697 2697 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2698 2698 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2699 2699 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2700 2700 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2701 2701 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2702 2702 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2703 2703 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2704 2704 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2705 2705 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2706 2706 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2707 2707 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2708 2708 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2709 2709 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2710 2710 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2711 2711 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2712 2712 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2713 2713 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2714 2714 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2715 2715 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2716 2716 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2717 2717 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2718 2718 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2719 2719 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2720 2720 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2721 2721 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2722 2722 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2723 2723 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2724 2724 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2725 2725 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2726 2726 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2727 2727 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2728 2728 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2729 2729 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2730 2730 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2731 2731 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2732 2732 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2733 2733 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2734 2734 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2735 2735 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2736 2736 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2737 2737 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2738 2738 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2739 2739 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2740 2740 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2741 2741 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2742 2742 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2743 2743 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2744 2744 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2745 2745 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2746 2746 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2747 2747 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2748 2748 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2749 2749 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2750 2750 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2751 2751 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2752 2752 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2753 2753 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2754 2754 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2755 2755 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2756 2756 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2757 2757 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2758 2758 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2759 2759 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2760 2760 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2761 2761 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2762 2762 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2763 2763 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2764 2764 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2765 2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2766 2766 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2767 2767 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2768 2768 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2769 2769 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2770 2770 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2771 2771 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2772 2772 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2773 2773 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2774 2774 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2775 2775 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2776 2776 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2777 2777 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2778 2778 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2779 2779 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2780 2780 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2781 2781 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2782 2782 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2783 2783 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2784 2784 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2785 2785 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2786 2786 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2787 2787 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2788 2788 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2789 2789 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2790 2790 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2791 2791 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2792 2792 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2793 2793 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2794 2794 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2795 2795 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2796 2796 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2797 2797 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2798 2798 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2799 2799 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2800 2800 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2801 2801 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2802 2802 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2803 2803 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2804 2804 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2805 2805 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2806 2806 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2807 2807 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2808 2808 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2809 2809 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2810 2810 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2811 2811 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2812 2812 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2813 2813 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2814 2814 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2815 2815 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2816 2816 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2817 2817 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2818 2818 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2819 2819 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2820 2820 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2821 2821 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2822 2822 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2823 2823 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2824 2824 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2825 2825 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2826 2826 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2827 2827 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2828 2828 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2829 2829 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2830 2830 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2831 2831 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2832 2832 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2833 2833 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2834 2834 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2835 2835 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2836 2836 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2837 2837 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2838 2838 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2839 2839 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2840 2840 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2841 2841 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2842 2842 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2843 2843 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2844 2844 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2845 2845 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2846 2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2847 2847 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2848 2848 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2849 2849 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2850 2850 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2851 2851 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2852 2852 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2853 2853 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2854 2854 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2855 2855 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2856 2856 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2857 2857 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2858 2858 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2859 2859 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2860 2860 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2861 2861 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2862 2862 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2863 2863 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2864 2864 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2865 2865 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2866 2866 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2867 2867 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2868 2868 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2869 2869 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2870 2870 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2871 2871 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2872 2872 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2873 2873 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2874 2874 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2875 2875 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2876 2876 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2877 2877 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2878 2878 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2879 2879 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2880 2880 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2881 2881 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2882 2882 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2883 2883 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2884 2884 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2885 2885 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2886 2886 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2887 2887 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2888 2888 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2889 2889 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2890 2890 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2891 2891 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2892 2892 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2893 2893 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2894 2894 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2895 2895 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2896 2896 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2897 2897 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2898 2898 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2899 2899 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2900 2900 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2901 2901 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2902 2902 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2903 2903 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2904 2904 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2905 2905 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2906 2906 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2907 2907 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2908 2908 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2909 2909 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2910 2910 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2911 2911 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2912 2912 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2913 2913 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2914 2914 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2915 2915 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2916 2916 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2917 2917 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2918 2918 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2919 2919 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2920 2920 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2921 2921 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2922 2922 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2923 2923 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2924 2924 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2925 2925 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2926 2926 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2927 2927 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2928 2928 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2929 2929 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2930 2930 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2931 2931 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2932 2932 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2933 2933 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2934 2934 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2935 2935 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2936 2936 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2937 2937 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2938 2938 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2939 2939 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2940 2940 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2941 2941 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2942 2942 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2943 2943 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2944 2944 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2945 2945 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2946 2946 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2947 2947 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2948 2948 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2949 2949 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2950 2950 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2951 2951 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2952 2952 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2953 2953 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2954 2954 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2955 2955 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2956 2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2957 2957 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2958 2958 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2959 2959 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2960 2960 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2961 2961 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2962 2962 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2963 2963 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2964 2964 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2965 2965 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2966 2966 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2967 2967 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2968 2968 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2969 2969 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2970 2970 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2971 2971 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2972 2972 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2973 2973 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2974 2974 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2975 2975 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2976 2976 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2977 2977 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2978 2978 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2979 2979 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2980 2980 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2981 2981 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2982 2982 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2983 2983 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2984 2984 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2985 2985 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2986 2986 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2987 2987 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2988 2988 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2989 2989 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2990 2990 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2991 2991 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2992 2992 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2993 2993 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2994 2994 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2995 2995 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2996 2996 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2997 2997 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2998 2998 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2999 2999 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3000 3000 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3001 3001 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3002 3002 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3003 3003 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3004 3004 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3005 3005 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3006 3006 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3007 3007 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3008 3008 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3009 3009 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3010 3010 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3011 3011 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3012 3012 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3013 3013 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3014 3014 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3015 3015 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3016 3016 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3017 3017 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3018 3018 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3019 3019 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3020 3020 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3021 3021 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3022 3022 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3023 3023 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3024 3024 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3025 3025 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3026 3026 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3027 3027 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3028 3028 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3029 3029 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3030 3030 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3031 3031 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3032 3032 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3033 3033 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3034 3034 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3035 3035 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3036 3036 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3037 3037 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3038 3038 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3039 3039 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3040 3040 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3041 3041 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3042 3042 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3043 3043 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3044 3044 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3045 3045 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3046 3046 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3047 3047 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3048 3048 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3049 3049 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3050 3050 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3051 3051 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3052 3052 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3053 3053 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3054 3054 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3055 3055 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3056 3056 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3057 3057 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3058 3058 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3059 3059 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3060 3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3061 3061 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3062 3062 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3063 3063 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3064 3064 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3065 3065 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3066 3066 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3067 3067 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3068 3068 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3069 3069 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3070 3070 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3071 3071 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3072 3072 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3073 3073 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3074 3074 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3075 3075 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3076 3076 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3077 3077 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3078 3078 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3079 3079 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3080 3080 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3081 3081 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3082 3082 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3083 3083 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3084 3084 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3085 3085 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3086 3086 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3087 3087 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3088 3088 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3089 3089 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3090 3090 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3091 3091 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3092 3092 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3093 3093 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3094 3094 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3095 3095 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3096 3096 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3097 3097 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3098 3098 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3099 3099 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3100 3100 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3101 3101 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3102 3102 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3103 3103 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3104 3104 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3105 3105 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3106 3106 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3107 3107 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3108 3108 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3109 3109 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3110 3110 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3111 3111 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3112 3112 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3113 3113 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3114 3114 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3115 3115 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3116 3116 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3117 3117 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3118 3118 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3119 3119 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3120 3120 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3121 3121 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3122 3122 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3123 3123 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3124 3124 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3125 3125 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3126 3126 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3127 3127 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3128 3128 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3129 3129 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3130 3130 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3131 3131 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3132 3132 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3133 3133 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3134 3134 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3135 3135 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3136 3136 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3137 3137 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3138 3138 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3139 3139 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3140 3140 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3141 3141 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3142 3142 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3143 3143 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3144 3144 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3145 3145 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3146 3146 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3147 3147 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3148 3148 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3149 3149 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3150 3150 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3151 3151 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3152 3152 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3153 3153 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3154 3154 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3155 3155 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3156 3156 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3157 3157 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3158 3158 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3159 3159 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3160 3160 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3161 3161 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3162 3162 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3163 3163 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3164 3164 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3165 3165 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3166 3166 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3167 3167 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3168 3168 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3169 3169 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3170 3170 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3171 3171 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3172 3172 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3173 3173 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3174 3174 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3175 3175 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3176 3176 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3177 3177 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3178 3178 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3179 3179 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3180 3180 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3181 3181 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3182 3182 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3183 3183 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3184 3184 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3185 3185 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3186 3186 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3187 3187 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3188 3188 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3189 3189 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3190 3190 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3191 3191 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3192 3192 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3193 3193 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3194 3194 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3195 3195 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3196 3196 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3197 3197 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3198 3198 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3199 3199 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3200 3200 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3201 3201 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3202 3202 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3203 3203 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3204 3204 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3205 3205 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3206 3206 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3207 3207 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3208 3208 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3209 3209 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3210 3210 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3211 3211 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3212 3212 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3213 3213 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3214 3214 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3215 3215 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3216 3216 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3217 3217 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3218 3218 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3219 3219 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3220 3220 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3221 3221 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3222 3222 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3223 3223 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3224 3224 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3225 3225 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3226 3226 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3227 3227 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3228 3228 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3229 3229 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3230 3230 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3231 3231 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3232 3232 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3233 3233 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3234 3234 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3235 3235 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3236 3236 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3237 3237 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3238 3238 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3239 3239 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3240 3240 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3241 3241 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3242 3242 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3243 3243 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3244 3244 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3245 3245 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3246 3246 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3247 3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3248 3248 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3249 3249 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3250 3250 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3251 3251 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3252 3252 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3253 3253 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3254 3254 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3255 3255 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3256 3256 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3257 3257 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3258 3258 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3259 3259 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3260 3260 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3261 3261 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3262 3262 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3263 3263 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3264 3264 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3265 3265 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3266 3266 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3267 3267 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3268 3268 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3269 3269 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3270 3270 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3271 3271 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3272 3272 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3273 3273 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3274 3274 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3275 3275 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3276 3276 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3277 3277 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3278 3278 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3279 3279 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3280 3280 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3281 3281 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3282 3282 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3283 3283 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3284 3284 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3285 3285 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3286 3286 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3287 3287 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3288 3288 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3289 3289 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3290 3290 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3291 3291 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3292 3292 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3293 3293 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3294 3294 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3295 3295 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3296 3296 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3297 3297 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3298 3298 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3299 3299 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3300 3300 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3301 3301 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3302 3302 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3303 3303 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3304 3304 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3305 3305 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3306 3306 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3307 3307 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3308 3308 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3309 3309 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3310 3310 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3311 3311 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3312 3312 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3313 3313 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3314 3314 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3315 3315 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3316 3316 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3317 3317 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3318 3318 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3319 3319 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3320 3320 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3321 3321 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3322 3322 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3323 3323 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3324 3324 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3325 3325 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3326 3326 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3327 3327 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3328 3328 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3329 3329 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3330 3330 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3331 3331 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3332 3332 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3333 3333 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3334 3334 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3335 3335 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3336 3336 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3337 3337 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3338 3338 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3339 3339 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3340 3340 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3341 3341 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3342 3342 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3343 3343 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3344 3344 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3345 3345 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3346 3346 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3347 3347 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3348 3348 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3349 3349 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3350 3350 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3351 3351 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3352 3352 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3353 3353 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3354 3354 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3355 3355 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3356 3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3357 3357 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3358 3358 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3359 3359 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3360 3360 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3361 3361 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3362 3362 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3363 3363 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3364 3364 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3365 3365 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3366 3366 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3367 3367 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3368 3368 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3369 3369 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3370 3370 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3371 3371 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3372 3372 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3373 3373 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3374 3374 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3375 3375 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3376 3376 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3377 3377 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3378 3378 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3379 3379 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3380 3380 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3381 3381 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3382 3382 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3383 3383 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3384 3384 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3385 3385 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3386 3386 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3387 3387 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3388 3388 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3389 3389 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3390 3390 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3391 3391 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3392 3392 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3393 3393 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3394 3394 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3395 3395 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3396 3396 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3397 3397 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3398 3398 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3399 3399 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3400 3400 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3401 3401 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3402 3402 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3403 3403 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3404 3404 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3405 3405 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3406 3406 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3407 3407 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3408 3408 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3409 3409 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3410 3410 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3411 3411 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3412 3412 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3413 3413 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3414 3414 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3415 3415 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3416 3416 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3417 3417 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3418 3418 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3419 3419 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3420 3420 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3421 3421 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3422 3422 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3423 3423 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3424 3424 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3425 3425 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3426 3426 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3427 3427 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3428 3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3429 3429 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3430 3430 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3431 3431 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3432 3432 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3433 3433 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3434 3434 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3435 3435 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3436 3436 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3437 3437 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3438 3438 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3439 3439 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3440 3440 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3441 3441 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3442 3442 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3443 3443 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3444 3444 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3445 3445 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3446 3446 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3447 3447 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3448 3448 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3449 3449 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3450 3450 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3451 3451 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3452 3452 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3453 3453 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3454 3454 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3455 3455 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3456 3456 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3457 3457 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3458 3458 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3459 3459 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3460 3460 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3461 3461 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3462 3462 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3463 3463 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3464 3464 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3465 3465 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3466 3466 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3467 3467 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3468 3468 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3469 3469 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3470 3470 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3471 3471 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3472 3472 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3473 3473 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3474 3474 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3475 3475 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3476 3476 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3477 3477 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3478 3478 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3479 3479 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3480 3480 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3481 3481 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3482 3482 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3483 3483 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3484 3484 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3485 3485 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3486 3486 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3487 3487 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3488 3488 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3489 3489 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3490 3490 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3491 3491 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3492 3492 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3493 3493 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3494 3494 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3495 3495 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3496 3496 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3497 3497 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3498 3498 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3499 3499 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3500 3500 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3501 3501 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3502 3502 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3503 3503 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3504 3504 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3505 3505 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3506 3506 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3507 3507 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3508 3508 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3509 3509 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3510 3510 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3511 3511 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3512 3512 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3513 3513 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3514 3514 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3515 3515 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3516 3516 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3517 3517 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3518 3518 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3519 3519 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3520 3520 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3521 3521 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3522 3522 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3523 3523 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3524 3524 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3525 3525 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3526 3526 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3527 3527 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3528 3528 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3529 3529 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3530 3530 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3531 3531 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3532 3532 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3533 3533 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3534 3534 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3535 3535 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3536 3536 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3537 3537 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3538 3538 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3539 3539 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3540 3540 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3541 3541 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3542 3542 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3543 3543 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3544 3544 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3545 3545 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3546 3546 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3547 3547 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3548 3548 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3549 3549 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3550 3550 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3551 3551 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3552 3552 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3553 3553 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3554 3554 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3555 3555 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3556 3556 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3557 3557 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3558 3558 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3559 3559 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3560 3560 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3561 3561 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3562 3562 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3563 3563 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3564 3564 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3565 3565 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3566 3566 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3567 3567 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3568 3568 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3569 3569 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3570 3570 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3571 3571 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3572 3572 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3573 3573 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3574 3574 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3575 3575 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3576 3576 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3577 3577 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3578 3578 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3579 3579 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3580 3580 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3581 3581 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3582 3582 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3583 3583 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3584 3584 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3585 3585 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3586 3586 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3587 3587 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3588 3588 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3589 3589 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3590 3590 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3591 3591 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3592 3592 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3593 3593 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3594 3594 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3595 3595 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3596 3596 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3597 3597 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3598 3598 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3599 3599 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3600 3600 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3601 3601 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3602 3602 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3603 3603 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3604 3604 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3605 3605 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3606 3606 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3607 3607 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3608 3608 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3609 3609 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3610 3610 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3611 3611 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3612 3612 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3613 3613 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3614 3614 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3615 3615 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3616 3616 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3617 3617 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3618 3618 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3619 3619 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3620 3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3621 3621 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3622 3622 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3623 3623 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3624 3624 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3625 3625 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3626 3626 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3627 3627 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3628 3628 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3629 3629 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3630 3630 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3631 3631 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3632 3632 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3633 3633 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3634 3634 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3635 3635 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3636 3636 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3637 3637 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3638 3638 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3639 3639 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3640 3640 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3641 3641 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3642 3642 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3643 3643 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3644 3644 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3645 3645 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3646 3646 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3647 3647 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3648 3648 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3649 3649 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3650 3650 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3651 3651 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3652 3652 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3653 3653 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3654 3654 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3655 3655 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3656 3656 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3657 3657 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3658 3658 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3659 3659 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3660 3660 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3661 3661 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3662 3662 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3663 3663 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3664 3664 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3665 3665 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3666 3666 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3667 3667 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3668 3668 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3669 3669 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3670 3670 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3671 3671 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3672 3672 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3673 3673 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3674 3674 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3675 3675 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3676 3676 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3677 3677 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3678 3678 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3679 3679 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3680 3680 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3681 3681 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3682 3682 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3683 3683 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3684 3684 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3685 3685 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3686 3686 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3687 3687 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3688 3688 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3689 3689 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3690 3690 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3691 3691 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3692 3692 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3693 3693 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3694 3694 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3695 3695 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3696 3696 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3697 3697 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3698 3698 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3699 3699 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3700 3700 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3701 3701 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3702 3702 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3703 3703 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3704 3704 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3705 3705 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3706 3706 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3707 3707 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3708 3708 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3709 3709 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3710 3710 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3711 3711 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3712 3712 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3713 3713 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3714 3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3715 3715 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3716 3716 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3717 3717 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3718 3718 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3719 3719 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3720 3720 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3721 3721 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3722 3722 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3723 3723 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3724 3724 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3725 3725 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3726 3726 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3727 3727 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3728 3728 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3729 3729 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3730 3730 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3731 3731 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3732 3732 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3733 3733 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3734 3734 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3735 3735 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3736 3736 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3737 3737 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3738 3738 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3739 3739 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3740 3740 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3741 3741 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3742 3742 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3743 3743 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3744 3744 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3745 3745 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3746 3746 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3747 3747 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3748 3748 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3749 3749 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3750 3750 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3751 3751 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3752 3752 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3753 3753 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3754 3754 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3755 3755 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3756 3756 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3757 3757 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3758 3758 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3759 3759 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3760 3760 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3761 3761 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3762 3762 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3763 3763 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3764 3764 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3765 3765 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3766 3766 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3767 3767 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3768 3768 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3769 3769 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3770 3770 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3771 3771 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3772 3772 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3773 3773 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3774 3774 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3775 3775 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3776 3776 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3777 3777 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3778 3778 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3779 3779 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3780 3780 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3781 3781 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3782 3782 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3783 3783 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3784 3784 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3785 3785 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3786 3786 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3787 3787 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3788 3788 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3789 3789 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3790 3790 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3791 3791 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3792 3792 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3793 3793 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3794 3794 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3795 3795 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3796 3796 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3797 3797 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3798 3798 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3799 3799 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3800 3800 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3801 3801 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3802 3802 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3803 3803 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3804 3804 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3805 3805 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3806 3806 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3807 3807 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3808 3808 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3809 3809 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3810 3810 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3811 3811 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3812 3812 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3813 3813 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3814 3814 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3815 3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3816 3816 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3817 3817 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3818 3818 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3819 3819 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3820 3820 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3821 3821 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3822 3822 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3823 3823 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3824 3824 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3825 3825 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3826 3826 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3827 3827 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3828 3828 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3829 3829 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3830 3830 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3831 3831 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3832 3832 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3833 3833 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3834 3834 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3835 3835 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836 3836 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3837 3837 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3838 3838 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3839 3839 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3840 3840 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3841 3841 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3842 3842 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3843 3843 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3844 3844 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3845 3845 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3846 3846 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3847 3847 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3848 3848 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3849 3849 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3850 3850 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3851 3851 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3852 3852 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3853 3853 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3854 3854 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3855 3855 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3856 3856 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3857 3857 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3858 3858 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3859 3859 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3860 3860 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3861 3861 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3862 3862 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3863 3863 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3864 3864 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3865 3865 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3866 3866 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3867 3867 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3868 3868 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3869 3869 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3870 3870 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3871 3871 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3872 3872 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3873 3873 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3874 3874 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3875 3875 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3876 3876 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3877 3877 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3878 3878 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3879 3879 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3880 3880 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3881 3881 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3882 3882 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3883 3883 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3884 3884 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3885 3885 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3886 3886 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3887 3887 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3888 3888 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3889 3889 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3890 3890 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3891 3891 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3892 3892 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3893 3893 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3894 3894 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3895 3895 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3896 3896 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3897 3897 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3898 3898 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3899 3899 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3900 3900 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3901 3901 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3902 3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3903 3903 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3904 3904 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3905 3905 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3906 3906 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3907 3907 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3908 3908 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3909 3909 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3910 3910 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3911 3911 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3912 3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3913 3913 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3914 3914 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3915 3915 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3916 3916 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3917 3917 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3918 3918 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3919 3919 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3920 3920 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3921 3921 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3922 3922 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3923 3923 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3924 3924 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3925 3925 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3926 3926 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3927 3927 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3928 3928 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3929 3929 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3930 3930 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3931 3931 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3932 3932 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3933 3933 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3934 3934 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3935 3935 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3936 3936 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3937 3937 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3938 3938 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3939 3939 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3940 3940 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3941 3941 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3942 3942 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3943 3943 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3944 3944 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3945 3945 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3946 3946 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3947 3947 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3948 3948 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3949 3949 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3950 3950 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3951 3951 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3952 3952 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3953 3953 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3954 3954 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3955 3955 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3956 3956 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3957 3957 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3958 3958 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3959 3959 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3960 3960 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3961 3961 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3962 3962 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3963 3963 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3964 3964 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3965 3965 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3966 3966 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3967 3967 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3968 3968 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3969 3969 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3970 3970 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3971 3971 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3972 3972 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3973 3973 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3974 3974 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3975 3975 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3976 3976 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3977 3977 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3978 3978 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3979 3979 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3980 3980 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3981 3981 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3982 3982 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3983 3983 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3984 3984 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3985 3985 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3986 3986 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3987 3987 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3988 3988 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3989 3989 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3990 3990 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3991 3991 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3992 3992 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3993 3993 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3994 3994 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3995 3995 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3996 3996 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3997 3997 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3998 3998 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3999 3999 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
##      Tamano.Cte.Industria          Segmento.Det                Marca
## 1            Extra Grande          Agua Mineral      Topo Chico A.M.
## 2            Extra Grande       Agua Purificada Ciel Agua Purificada
## 3            Extra Grande       Agua Purificada Ciel Agua Purificada
## 4            Extra Grande       Agua Saborizada          Ciel Exprim
## 5            Extra Grande       Agua Saborizada            Ciel Mini
## 6            Extra Grande       Agua Saborizada      Ciel Saborizada
## 7            Extra Grande      Bebidas de Fruta       Delaware Punch
## 8            Extra Grande      Bebidas de Fruta       Delaware Punch
## 9            Extra Grande      Bebidas de Fruta               Frutsi
## 10           Extra Grande      Bebidas de Fruta                Pulpy
## 11           Extra Grande      Bebidas de Fruta           Valle Frut
## 12           Extra Grande      Bebidas de Fruta           Valle Frut
## 13           Extra Grande      Bebidas de Fruta           Valle Frut
## 14           Extra Grande      Bebidas de Fruta           Valle Frut
## 15           Extra Grande   Bebidas Energeticas                 Burn
## 16           Extra Grande           Colas Light      Coca-Cola Light
## 17           Extra Grande           Colas Light      Coca-Cola Light
## 18           Extra Grande           Colas Light      Coca-Cola Light
## 19           Extra Grande         Colas Regular            Coca-Cola
## 20           Extra Grande         Colas Regular            Coca-Cola
## 21           Extra Grande         Colas Regular            Coca-Cola
## 22           Extra Grande         Colas Regular            Coca-Cola
## 23           Extra Grande         Colas Regular            Coca-Cola
## 24           Extra Grande         Colas Regular            Coca-Cola
## 25           Extra Grande         Colas Regular            Coca-Cola
## 26           Extra Grande         Colas Regular            Coca-Cola
## 27           Extra Grande         Colas Regular            Coca-Cola
## 28           Extra Grande         Colas Regular            Coca-Cola
## 29           Extra Grande         Colas Regular            Coca-Cola
## 30           Extra Grande         Colas Regular            Coca-Cola
## 31           Extra Grande         Colas Regular            Coca-Cola
## 32           Extra Grande         Colas Regular            Coca-Cola
## 33           Extra Grande         Colas Regular            Coca-Cola
## 34           Extra Grande         Colas Regular            Coca-Cola
## 35           Extra Grande   Isot\x97nicos Light        Powerade Zero
## 36           Extra Grande Isot\x97nicos Regular             Powerade
## 37           Extra Grande Isot\x97nicos Regular             Powerade
## 38           Extra Grande Isot\x97nicos Regular             Powerade
## 39           Extra Grande   Jugos y N\x8ectares            Del Valle
## 40           Extra Grande   Jugos y N\x8ectares            Del Valle
## 41           Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 42           Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 43           Extra Grande     Leche UHT Regular   Santa Clara Entera
## 44           Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 45           Extra Grande         Sabores Light          Sprite Zero
## 46           Extra Grande       Sabores Regular     Del Valle y Nada
## 47           Extra Grande       Sabores Regular                Fanta
## 48           Extra Grande       Sabores Regular                Fanta
## 49           Extra Grande       Sabores Regular                Fanta
## 50           Extra Grande       Sabores Regular                Fanta
## 51           Extra Grande       Sabores Regular                Fanta
## 52           Extra Grande       Sabores Regular                Fanta
## 53           Extra Grande       Sabores Regular                Fanta
## 54           Extra Grande       Sabores Regular                Fanta
## 55           Extra Grande       Sabores Regular               Fresca
## 56           Extra Grande       Sabores Regular               Fresca
## 57           Extra Grande       Sabores Regular               Fresca
## 58           Extra Grande       Sabores Regular               Fresca
## 59           Extra Grande       Sabores Regular               Fresca
## 60           Extra Grande       Sabores Regular               Fresca
## 61           Extra Grande       Sabores Regular               Fresca
## 62           Extra Grande       Sabores Regular         Manzana Lift
## 63           Extra Grande       Sabores Regular         Manzana Lift
## 64           Extra Grande       Sabores Regular         Manzana Lift
## 65           Extra Grande       Sabores Regular         Manzana Lift
## 66           Extra Grande       Sabores Regular         Manzana Lift
## 67           Extra Grande       Sabores Regular        Sidral Mundet
## 68           Extra Grande       Sabores Regular        Sidral Mundet
## 69           Extra Grande       Sabores Regular        Sidral Mundet
## 70           Extra Grande       Sabores Regular        Sidral Mundet
## 71           Extra Grande       Sabores Regular        Sidral Mundet
## 72           Extra Grande       Sabores Regular               Sprite
## 73           Extra Grande       Sabores Regular               Sprite
## 74           Extra Grande       Sabores Regular               Sprite
## 75           Extra Grande       Sabores Regular               Sprite
## 76           Extra Grande       Sabores Regular               Sprite
## 77           Extra Grande       Sabores Regular               Sprite
## 78           Extra Grande       Sabores Regular               Sprite
## 79           Extra Grande       Sabores Regular               Sprite
## 80           Extra Grande         T\x8e Regular             Fuze Tea
## 81           Extra Grande         T\x8e Regular             Fuze Tea
## 82           Extra Grande          Agua Mineral    Ciel Mineralizada
## 83           Extra Grande          Agua Mineral      Topo Chico A.M.
## 84           Extra Grande          Agua Mineral      Topo Chico A.M.
## 85           Extra Grande       Agua Purificada Ciel Agua Purificada
## 86           Extra Grande       Agua Purificada Ciel Agua Purificada
## 87           Extra Grande       Agua Purificada Ciel Agua Purificada
## 88           Extra Grande       Agua Purificada Ciel Agua Purificada
## 89           Extra Grande       Agua Saborizada          Ciel Exprim
## 90           Extra Grande       Agua Saborizada            Ciel Mini
## 91           Extra Grande      Bebidas de Fruta       Delaware Punch
## 92           Extra Grande      Bebidas de Fruta               Frutsi
## 93           Extra Grande      Bebidas de Fruta                Pulpy
## 94           Extra Grande      Bebidas de Fruta           Valle Frut
## 95           Extra Grande      Bebidas de Fruta           Valle Frut
## 96           Extra Grande      Bebidas de Fruta           Valle Frut
## 97           Extra Grande   Bebidas Energeticas                 Burn
## 98           Extra Grande   Bebidas Energeticas                 Burn
## 99           Extra Grande   Bebidas Energeticas           Glac\x8eau
## 100          Extra Grande           Colas Light       Coca-Cola Life
## 101          Extra Grande           Colas Light       Coca-Cola Life
## 102          Extra Grande           Colas Light      Coca-Cola Light
## 103          Extra Grande           Colas Light      Coca-Cola Light
## 104          Extra Grande           Colas Light      Coca-Cola Light
## 105          Extra Grande           Colas Light      Coca-Cola Light
## 106          Extra Grande           Colas Light      Coca-Cola Light
## 107          Extra Grande           Colas Light      Coca-Cola Light
## 108          Extra Grande           Colas Light      Coca-Cola Light
## 109          Extra Grande           Colas Light       Coca-Cola Zero
## 110          Extra Grande           Colas Light       Coca-Cola Zero
## 111          Extra Grande         Colas Regular            Coca-Cola
## 112          Extra Grande         Colas Regular            Coca-Cola
## 113          Extra Grande         Colas Regular            Coca-Cola
## 114          Extra Grande         Colas Regular            Coca-Cola
## 115          Extra Grande         Colas Regular            Coca-Cola
## 116          Extra Grande         Colas Regular            Coca-Cola
## 117          Extra Grande         Colas Regular            Coca-Cola
## 118          Extra Grande         Colas Regular            Coca-Cola
## 119          Extra Grande         Colas Regular            Coca-Cola
## 120          Extra Grande         Colas Regular            Coca-Cola
## 121          Extra Grande         Colas Regular            Coca-Cola
## 122          Extra Grande         Colas Regular            Coca-Cola
## 123          Extra Grande         Colas Regular            Coca-Cola
## 124          Extra Grande         Colas Regular            Coca-Cola
## 125          Extra Grande         Colas Regular            Coca-Cola
## 126          Extra Grande Isot\x97nicos Regular             Powerade
## 127          Extra Grande Isot\x97nicos Regular             Powerade
## 128          Extra Grande Isot\x97nicos Regular             Powerade
## 129          Extra Grande   Jugos y N\x8ectares            Del Valle
## 130          Extra Grande   Jugos y N\x8ectares            Del Valle
## 131          Extra Grande   Jugos y N\x8ectares            Del Valle
## 132          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 133          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 134          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 135          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 136          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 137          Extra Grande         Sabores Light          Sprite Zero
## 138          Extra Grande       Sabores Regular     Del Valle y Nada
## 139          Extra Grande       Sabores Regular                Fanta
## 140          Extra Grande       Sabores Regular                Fanta
## 141          Extra Grande       Sabores Regular                Fanta
## 142          Extra Grande       Sabores Regular                Fanta
## 143          Extra Grande       Sabores Regular                Fanta
## 144          Extra Grande       Sabores Regular                Fanta
## 145          Extra Grande       Sabores Regular                Fanta
## 146          Extra Grande       Sabores Regular               Fresca
## 147          Extra Grande       Sabores Regular               Fresca
## 148          Extra Grande       Sabores Regular               Fresca
## 149          Extra Grande       Sabores Regular               Fresca
## 150          Extra Grande       Sabores Regular               Fresca
## 151          Extra Grande       Sabores Regular               Fresca
## 152          Extra Grande       Sabores Regular         Manzana Lift
## 153          Extra Grande       Sabores Regular         Manzana Lift
## 154          Extra Grande       Sabores Regular         Manzana Lift
## 155          Extra Grande       Sabores Regular         Manzana Lift
## 156          Extra Grande       Sabores Regular         Manzana Lift
## 157          Extra Grande       Sabores Regular               Senzao
## 158          Extra Grande       Sabores Regular        Sidral Mundet
## 159          Extra Grande       Sabores Regular        Sidral Mundet
## 160          Extra Grande       Sabores Regular        Sidral Mundet
## 161          Extra Grande       Sabores Regular        Sidral Mundet
## 162          Extra Grande       Sabores Regular        Sidral Mundet
## 163          Extra Grande       Sabores Regular        Sidral Mundet
## 164          Extra Grande       Sabores Regular               Sprite
## 165          Extra Grande       Sabores Regular               Sprite
## 166          Extra Grande       Sabores Regular               Sprite
## 167          Extra Grande       Sabores Regular               Sprite
## 168          Extra Grande       Sabores Regular               Sprite
## 169          Extra Grande       Sabores Regular               Sprite
## 170          Extra Grande       Sabores Regular               Sprite
## 171          Extra Grande         T\x8e Regular             Fuze Tea
## 172          Extra Grande         T\x8e Regular             Fuze Tea
## 173          Extra Grande          Agua Mineral    Ciel Mineralizada
## 174          Extra Grande          Agua Mineral      Topo Chico A.M.
## 175          Extra Grande       Agua Purificada Ciel Agua Purificada
## 176          Extra Grande       Agua Purificada Ciel Agua Purificada
## 177          Extra Grande       Agua Purificada Ciel Agua Purificada
## 178          Extra Grande       Agua Purificada Ciel Agua Purificada
## 179          Extra Grande       Agua Purificada Ciel Agua Purificada
## 180          Extra Grande       Agua Saborizada          Ciel Exprim
## 181          Extra Grande       Agua Saborizada            Ciel Mini
## 182          Extra Grande       Agua Saborizada      Ciel Saborizada
## 183          Extra Grande       Agua Saborizada      Ciel Saborizada
## 184          Extra Grande      Bebidas de Fruta       Delaware Punch
## 185          Extra Grande      Bebidas de Fruta               Frutsi
## 186          Extra Grande      Bebidas de Fruta                Pulpy
## 187          Extra Grande      Bebidas de Fruta           Valle Frut
## 188          Extra Grande      Bebidas de Fruta           Valle Frut
## 189          Extra Grande      Bebidas de Fruta           Valle Frut
## 190          Extra Grande   Bebidas Energeticas                 Burn
## 191          Extra Grande   Bebidas Energeticas                 Burn
## 192          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 193          Extra Grande           Colas Light       Coca-Cola Life
## 194          Extra Grande           Colas Light       Coca-Cola Life
## 195          Extra Grande           Colas Light       Coca-Cola Life
## 196          Extra Grande           Colas Light       Coca-Cola Life
## 197          Extra Grande           Colas Light      Coca-Cola Light
## 198          Extra Grande           Colas Light      Coca-Cola Light
## 199          Extra Grande           Colas Light      Coca-Cola Light
## 200          Extra Grande           Colas Light      Coca-Cola Light
## 201          Extra Grande           Colas Light      Coca-Cola Light
## 202          Extra Grande           Colas Light      Coca-Cola Light
## 203          Extra Grande           Colas Light      Coca-Cola Light
## 204          Extra Grande           Colas Light      Coca-Cola Light
## 205          Extra Grande           Colas Light      Coca-Cola Light
## 206          Extra Grande           Colas Light      Coca-Cola Light
## 207          Extra Grande           Colas Light       Coca-Cola Zero
## 208          Extra Grande           Colas Light       Coca-Cola Zero
## 209          Extra Grande           Colas Light       Coca-Cola Zero
## 210          Extra Grande           Colas Light       Coca-Cola Zero
## 211          Extra Grande         Colas Regular            Coca-Cola
## 212          Extra Grande         Colas Regular            Coca-Cola
## 213          Extra Grande         Colas Regular            Coca-Cola
## 214          Extra Grande         Colas Regular            Coca-Cola
## 215          Extra Grande         Colas Regular            Coca-Cola
## 216          Extra Grande         Colas Regular            Coca-Cola
## 217          Extra Grande         Colas Regular            Coca-Cola
## 218          Extra Grande         Colas Regular            Coca-Cola
## 219          Extra Grande         Colas Regular            Coca-Cola
## 220          Extra Grande         Colas Regular            Coca-Cola
## 221          Extra Grande         Colas Regular            Coca-Cola
## 222          Extra Grande         Colas Regular            Coca-Cola
## 223          Extra Grande         Colas Regular            Coca-Cola
## 224          Extra Grande         Colas Regular            Coca-Cola
## 225          Extra Grande         Colas Regular            Coca-Cola
## 226          Extra Grande         Colas Regular            Coca-Cola
## 227          Extra Grande         Colas Regular            Coca-Cola
## 228          Extra Grande         Colas Regular            Coca-Cola
## 229          Extra Grande Isot\x97nicos Regular             Powerade
## 230          Extra Grande Isot\x97nicos Regular             Powerade
## 231          Extra Grande Isot\x97nicos Regular             Powerade
## 232          Extra Grande   Jugos y N\x8ectares            Del Valle
## 233          Extra Grande   Jugos y N\x8ectares            Del Valle
## 234          Extra Grande   Jugos y N\x8ectares            Del Valle
## 235          Extra Grande   Jugos y N\x8ectares            Del Valle
## 236          Extra Grande   Jugos y N\x8ectares            Del Valle
## 237          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 238          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 239          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 240          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 241          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 242          Extra Grande         Sabores Light          Sprite Zero
## 243          Extra Grande       Sabores Regular     Del Valle y Nada
## 244          Extra Grande       Sabores Regular     Del Valle y Nada
## 245          Extra Grande       Sabores Regular                Fanta
## 246          Extra Grande       Sabores Regular                Fanta
## 247          Extra Grande       Sabores Regular                Fanta
## 248          Extra Grande       Sabores Regular                Fanta
## 249          Extra Grande       Sabores Regular                Fanta
## 250          Extra Grande       Sabores Regular                Fanta
## 251          Extra Grande       Sabores Regular                Fanta
## 252          Extra Grande       Sabores Regular               Fresca
## 253          Extra Grande       Sabores Regular               Fresca
## 254          Extra Grande       Sabores Regular               Fresca
## 255          Extra Grande       Sabores Regular               Fresca
## 256          Extra Grande       Sabores Regular               Fresca
## 257          Extra Grande       Sabores Regular               Fresca
## 258          Extra Grande       Sabores Regular         Manzana Lift
## 259          Extra Grande       Sabores Regular         Manzana Lift
## 260          Extra Grande       Sabores Regular         Manzana Lift
## 261          Extra Grande       Sabores Regular         Manzana Lift
## 262          Extra Grande       Sabores Regular         Manzana Lift
## 263          Extra Grande       Sabores Regular               Senzao
## 264          Extra Grande       Sabores Regular        Sidral Mundet
## 265          Extra Grande       Sabores Regular        Sidral Mundet
## 266          Extra Grande       Sabores Regular        Sidral Mundet
## 267          Extra Grande       Sabores Regular        Sidral Mundet
## 268          Extra Grande       Sabores Regular        Sidral Mundet
## 269          Extra Grande       Sabores Regular               Sprite
## 270          Extra Grande       Sabores Regular               Sprite
## 271          Extra Grande       Sabores Regular               Sprite
## 272          Extra Grande       Sabores Regular               Sprite
## 273          Extra Grande       Sabores Regular               Sprite
## 274          Extra Grande       Sabores Regular               Sprite
## 275          Extra Grande       Sabores Regular               Sprite
## 276          Extra Grande         T\x8e Regular             Fuze Tea
## 277          Extra Grande         T\x8e Regular             Fuze Tea
## 278          Extra Grande         T\x8e Regular             Fuze Tea
## 279          Extra Grande          Agua Mineral    Ciel Mineralizada
## 280          Extra Grande          Agua Mineral    Ciel Mineralizada
## 281          Extra Grande          Agua Mineral      Topo Chico A.M.
## 282          Extra Grande          Agua Mineral      Topo Chico A.M.
## 283          Extra Grande       Agua Purificada Ciel Agua Purificada
## 284          Extra Grande       Agua Purificada Ciel Agua Purificada
## 285          Extra Grande       Agua Purificada Ciel Agua Purificada
## 286          Extra Grande       Agua Purificada Ciel Agua Purificada
## 287          Extra Grande       Agua Purificada Ciel Agua Purificada
## 288          Extra Grande       Agua Saborizada          Ciel Exprim
## 289          Extra Grande       Agua Saborizada          Ciel Exprim
## 290          Extra Grande       Agua Saborizada          Ciel Exprim
## 291          Extra Grande       Agua Saborizada            Ciel Mini
## 292          Extra Grande       Agua Saborizada      Ciel Saborizada
## 293          Extra Grande       Agua Saborizada      Ciel Saborizada
## 294          Extra Grande       Agua Saborizada      Ciel Saborizada
## 295          Extra Grande      Bebidas de Fruta       Delaware Punch
## 296          Extra Grande      Bebidas de Fruta       Delaware Punch
## 297          Extra Grande      Bebidas de Fruta               Frutsi
## 298          Extra Grande      Bebidas de Fruta                Pulpy
## 299          Extra Grande      Bebidas de Fruta           Valle Frut
## 300          Extra Grande      Bebidas de Fruta           Valle Frut
## 301          Extra Grande      Bebidas de Fruta           Valle Frut
## 302          Extra Grande      Bebidas de Fruta           Valle Frut
## 303          Extra Grande      Bebidas de Fruta           Valle Frut
## 304          Extra Grande   Bebidas Energeticas                 Burn
## 305          Extra Grande   Bebidas Energeticas                 Burn
## 306          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 307          Extra Grande           Colas Light       Coca-Cola Life
## 308          Extra Grande           Colas Light       Coca-Cola Life
## 309          Extra Grande           Colas Light       Coca-Cola Life
## 310          Extra Grande           Colas Light      Coca-Cola Light
## 311          Extra Grande           Colas Light      Coca-Cola Light
## 312          Extra Grande           Colas Light      Coca-Cola Light
## 313          Extra Grande           Colas Light      Coca-Cola Light
## 314          Extra Grande           Colas Light      Coca-Cola Light
## 315          Extra Grande           Colas Light      Coca-Cola Light
## 316          Extra Grande           Colas Light       Coca-Cola Zero
## 317          Extra Grande           Colas Light       Coca-Cola Zero
## 318          Extra Grande         Colas Regular            Coca-Cola
## 319          Extra Grande         Colas Regular            Coca-Cola
## 320          Extra Grande         Colas Regular            Coca-Cola
## 321          Extra Grande         Colas Regular            Coca-Cola
## 322          Extra Grande         Colas Regular            Coca-Cola
## 323          Extra Grande         Colas Regular            Coca-Cola
## 324          Extra Grande         Colas Regular            Coca-Cola
## 325          Extra Grande         Colas Regular            Coca-Cola
## 326          Extra Grande         Colas Regular            Coca-Cola
## 327          Extra Grande         Colas Regular            Coca-Cola
## 328          Extra Grande         Colas Regular            Coca-Cola
## 329          Extra Grande         Colas Regular            Coca-Cola
## 330          Extra Grande         Colas Regular            Coca-Cola
## 331          Extra Grande         Colas Regular            Coca-Cola
## 332          Extra Grande         Colas Regular            Coca-Cola
## 333          Extra Grande         Colas Regular            Coca-Cola
## 334          Extra Grande         Colas Regular            Coca-Cola
## 335          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 336          Extra Grande Isot\x97nicos Regular             Powerade
## 337          Extra Grande Isot\x97nicos Regular             Powerade
## 338          Extra Grande Isot\x97nicos Regular             Powerade
## 339          Extra Grande   Jugos y N\x8ectares            Del Valle
## 340          Extra Grande   Jugos y N\x8ectares            Del Valle
## 341          Extra Grande   Jugos y N\x8ectares            Del Valle
## 342          Extra Grande   Jugos y N\x8ectares            Del Valle
## 343          Extra Grande   Jugos y N\x8ectares            Del Valle
## 344          Extra Grande   Jugos y N\x8ectares            Del Valle
## 345          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 346          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 347          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 348          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 349          Extra Grande     Leche UHT Regular   Santa Clara Entera
## 350          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 351          Extra Grande         Sabores Light          Sprite Zero
## 352          Extra Grande       Sabores Regular     Del Valle y Nada
## 353          Extra Grande       Sabores Regular     Del Valle y Nada
## 354          Extra Grande       Sabores Regular     Del Valle y Nada
## 355          Extra Grande       Sabores Regular                Fanta
## 356          Extra Grande       Sabores Regular                Fanta
## 357          Extra Grande       Sabores Regular                Fanta
## 358          Extra Grande       Sabores Regular                Fanta
## 359          Extra Grande       Sabores Regular                Fanta
## 360          Extra Grande       Sabores Regular                Fanta
## 361          Extra Grande       Sabores Regular                Fanta
## 362          Extra Grande       Sabores Regular                Fanta
## 363          Extra Grande       Sabores Regular                Fanta
## 364          Extra Grande       Sabores Regular               Fresca
## 365          Extra Grande       Sabores Regular               Fresca
## 366          Extra Grande       Sabores Regular               Fresca
## 367          Extra Grande       Sabores Regular               Fresca
## 368          Extra Grande       Sabores Regular               Fresca
## 369          Extra Grande       Sabores Regular               Fresca
## 370          Extra Grande       Sabores Regular               Fresca
## 371          Extra Grande       Sabores Regular         Manzana Lift
## 372          Extra Grande       Sabores Regular         Manzana Lift
## 373          Extra Grande       Sabores Regular         Manzana Lift
## 374          Extra Grande       Sabores Regular         Manzana Lift
## 375          Extra Grande       Sabores Regular         Manzana Lift
## 376          Extra Grande       Sabores Regular         Manzana Lift
## 377          Extra Grande       Sabores Regular         Manzana Lift
## 378          Extra Grande       Sabores Regular         Manzana Lift
## 379          Extra Grande       Sabores Regular               Senzao
## 380          Extra Grande       Sabores Regular        Sidral Mundet
## 381          Extra Grande       Sabores Regular        Sidral Mundet
## 382          Extra Grande       Sabores Regular        Sidral Mundet
## 383          Extra Grande       Sabores Regular        Sidral Mundet
## 384          Extra Grande       Sabores Regular        Sidral Mundet
## 385          Extra Grande       Sabores Regular        Sidral Mundet
## 386          Extra Grande       Sabores Regular               Sprite
## 387          Extra Grande       Sabores Regular               Sprite
## 388          Extra Grande       Sabores Regular               Sprite
## 389          Extra Grande       Sabores Regular               Sprite
## 390          Extra Grande       Sabores Regular               Sprite
## 391          Extra Grande       Sabores Regular               Sprite
## 392          Extra Grande       Sabores Regular               Sprite
## 393          Extra Grande       Sabores Regular               Sprite
## 394          Extra Grande       Sabores Regular               Sprite
## 395          Extra Grande       Sabores Regular               Sprite
## 396          Extra Grande       Sabores Regular               Sprite
## 397          Extra Grande       Sabores Regular               Sprite
## 398          Extra Grande         T\x8e Regular             Fuze Tea
## 399          Extra Grande         T\x8e Regular             Fuze Tea
## 400          Extra Grande         T\x8e Regular             Fuze Tea
## 401          Extra Grande         T\x8e Regular             Fuze Tea
## 402          Extra Grande          Agua Mineral    Ciel Mineralizada
## 403          Extra Grande          Agua Mineral      Topo Chico A.M.
## 404          Extra Grande          Agua Mineral      Topo Chico A.M.
## 405          Extra Grande       Agua Purificada Ciel Agua Purificada
## 406          Extra Grande       Agua Purificada Ciel Agua Purificada
## 407          Extra Grande       Agua Purificada Ciel Agua Purificada
## 408          Extra Grande       Agua Saborizada          Ciel Exprim
## 409          Extra Grande       Agua Saborizada            Ciel Mini
## 410          Extra Grande       Agua Saborizada      Ciel Saborizada
## 411          Extra Grande      Bebidas de Fruta       Delaware Punch
## 412          Extra Grande      Bebidas de Fruta       Delaware Punch
## 413          Extra Grande      Bebidas de Fruta       Delaware Punch
## 414          Extra Grande      Bebidas de Fruta               Frutsi
## 415          Extra Grande      Bebidas de Fruta                Pulpy
## 416          Extra Grande      Bebidas de Fruta           Valle Frut
## 417          Extra Grande      Bebidas de Fruta           Valle Frut
## 418          Extra Grande      Bebidas de Fruta           Valle Frut
## 419          Extra Grande      Bebidas de Fruta           Valle Frut
## 420          Extra Grande      Bebidas de Fruta           Valle Frut
## 421          Extra Grande   Bebidas Energeticas                 Burn
## 422          Extra Grande   Bebidas Energeticas                 Burn
## 423          Extra Grande   Bebidas Energeticas                 Burn
## 424          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 425          Extra Grande           Colas Light       Coca-Cola Life
## 426          Extra Grande           Colas Light      Coca-Cola Light
## 427          Extra Grande           Colas Light      Coca-Cola Light
## 428          Extra Grande           Colas Light      Coca-Cola Light
## 429          Extra Grande           Colas Light      Coca-Cola Light
## 430          Extra Grande           Colas Light      Coca-Cola Light
## 431          Extra Grande           Colas Light      Coca-Cola Light
## 432          Extra Grande           Colas Light       Coca-Cola Zero
## 433          Extra Grande           Colas Light       Coca-Cola Zero
## 434          Extra Grande           Colas Light       Coca-Cola Zero
## 435          Extra Grande           Colas Light       Coca-Cola Zero
## 436          Extra Grande         Colas Regular            Coca-Cola
## 437          Extra Grande         Colas Regular            Coca-Cola
## 438          Extra Grande         Colas Regular            Coca-Cola
## 439          Extra Grande         Colas Regular            Coca-Cola
## 440          Extra Grande         Colas Regular            Coca-Cola
## 441          Extra Grande         Colas Regular            Coca-Cola
## 442          Extra Grande         Colas Regular            Coca-Cola
## 443          Extra Grande         Colas Regular            Coca-Cola
## 444          Extra Grande         Colas Regular            Coca-Cola
## 445          Extra Grande         Colas Regular            Coca-Cola
## 446          Extra Grande         Colas Regular            Coca-Cola
## 447          Extra Grande         Colas Regular            Coca-Cola
## 448          Extra Grande         Colas Regular            Coca-Cola
## 449          Extra Grande         Colas Regular            Coca-Cola
## 450          Extra Grande         Colas Regular            Coca-Cola
## 451          Extra Grande         Colas Regular            Coca-Cola
## 452          Extra Grande         Colas Regular            Coca-Cola
## 453          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 454          Extra Grande Isot\x97nicos Regular             Powerade
## 455          Extra Grande Isot\x97nicos Regular             Powerade
## 456          Extra Grande Isot\x97nicos Regular             Powerade
## 457          Extra Grande   Jugos y N\x8ectares            Del Valle
## 458          Extra Grande   Jugos y N\x8ectares            Del Valle
## 459          Extra Grande   Jugos y N\x8ectares            Del Valle
## 460          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 461          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 462          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 463          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 464          Extra Grande     Leche UHT Regular    Santa Clara Light
## 465          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 466          Extra Grande         Sabores Light          Sprite Zero
## 467          Extra Grande       Sabores Regular     Del Valle y Nada
## 468          Extra Grande       Sabores Regular     Del Valle y Nada
## 469          Extra Grande       Sabores Regular                Fanta
## 470          Extra Grande       Sabores Regular                Fanta
## 471          Extra Grande       Sabores Regular                Fanta
## 472          Extra Grande       Sabores Regular                Fanta
## 473          Extra Grande       Sabores Regular                Fanta
## 474          Extra Grande       Sabores Regular                Fanta
## 475          Extra Grande       Sabores Regular                Fanta
## 476          Extra Grande       Sabores Regular                Fanta
## 477          Extra Grande       Sabores Regular                Fanta
## 478          Extra Grande       Sabores Regular               Fresca
## 479          Extra Grande       Sabores Regular               Fresca
## 480          Extra Grande       Sabores Regular               Fresca
## 481          Extra Grande       Sabores Regular               Fresca
## 482          Extra Grande       Sabores Regular               Fresca
## 483          Extra Grande       Sabores Regular               Fresca
## 484          Extra Grande       Sabores Regular               Fresca
## 485          Extra Grande       Sabores Regular               Fresca
## 486          Extra Grande       Sabores Regular               Fresca
## 487          Extra Grande       Sabores Regular         Manzana Lift
## 488          Extra Grande       Sabores Regular         Manzana Lift
## 489          Extra Grande       Sabores Regular         Manzana Lift
## 490          Extra Grande       Sabores Regular         Manzana Lift
## 491          Extra Grande       Sabores Regular         Manzana Lift
## 492          Extra Grande       Sabores Regular         Manzana Lift
## 493          Extra Grande       Sabores Regular         Manzana Lift
## 494          Extra Grande       Sabores Regular               Senzao
## 495          Extra Grande       Sabores Regular               Senzao
## 496          Extra Grande       Sabores Regular        Sidral Mundet
## 497          Extra Grande       Sabores Regular        Sidral Mundet
## 498          Extra Grande       Sabores Regular        Sidral Mundet
## 499          Extra Grande       Sabores Regular        Sidral Mundet
## 500          Extra Grande       Sabores Regular        Sidral Mundet
## 501          Extra Grande       Sabores Regular        Sidral Mundet
## 502          Extra Grande       Sabores Regular        Sidral Mundet
## 503          Extra Grande       Sabores Regular               Sprite
## 504          Extra Grande       Sabores Regular               Sprite
## 505          Extra Grande       Sabores Regular               Sprite
## 506          Extra Grande       Sabores Regular               Sprite
## 507          Extra Grande       Sabores Regular               Sprite
## 508          Extra Grande       Sabores Regular               Sprite
## 509          Extra Grande       Sabores Regular               Sprite
## 510          Extra Grande       Sabores Regular               Sprite
## 511          Extra Grande       Sabores Regular               Sprite
## 512          Extra Grande       Sabores Regular               Sprite
## 513          Extra Grande           T\x8e Light       Fuze Tea Light
## 514          Extra Grande         T\x8e Regular             Fuze Tea
## 515          Extra Grande          Agua Mineral    Ciel Mineralizada
## 516          Extra Grande          Agua Mineral    Ciel Mineralizada
## 517          Extra Grande          Agua Mineral      Topo Chico A.M.
## 518          Extra Grande       Agua Purificada Ciel Agua Purificada
## 519          Extra Grande       Agua Purificada Ciel Agua Purificada
## 520          Extra Grande       Agua Purificada Ciel Agua Purificada
## 521          Extra Grande       Agua Purificada Ciel Agua Purificada
## 522          Extra Grande       Agua Purificada Ciel Agua Purificada
## 523          Extra Grande       Agua Saborizada          Ciel Exprim
## 524          Extra Grande       Agua Saborizada            Ciel Mini
## 525          Extra Grande       Agua Saborizada      Ciel Saborizada
## 526          Extra Grande      Bebidas de Fruta       Delaware Punch
## 527          Extra Grande      Bebidas de Fruta       Delaware Punch
## 528          Extra Grande      Bebidas de Fruta               Frutsi
## 529          Extra Grande      Bebidas de Fruta                Pulpy
## 530          Extra Grande      Bebidas de Fruta           Valle Frut
## 531          Extra Grande      Bebidas de Fruta           Valle Frut
## 532          Extra Grande      Bebidas de Fruta           Valle Frut
## 533          Extra Grande      Bebidas de Fruta           Valle Frut
## 534          Extra Grande      Bebidas de Fruta           Valle Frut
## 535          Extra Grande   Bebidas Energeticas                 Burn
## 536          Extra Grande   Bebidas Energeticas                 Burn
## 537          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 538          Extra Grande           Colas Light       Coca-Cola Life
## 539          Extra Grande           Colas Light       Coca-Cola Life
## 540          Extra Grande           Colas Light       Coca-Cola Life
## 541          Extra Grande           Colas Light      Coca-Cola Light
## 542          Extra Grande           Colas Light      Coca-Cola Light
## 543          Extra Grande           Colas Light      Coca-Cola Light
## 544          Extra Grande           Colas Light      Coca-Cola Light
## 545          Extra Grande           Colas Light      Coca-Cola Light
## 546          Extra Grande           Colas Light      Coca-Cola Light
## 547          Extra Grande           Colas Light      Coca-Cola Light
## 548          Extra Grande           Colas Light      Coca-Cola Light
## 549          Extra Grande           Colas Light       Coca-Cola Zero
## 550          Extra Grande           Colas Light       Coca-Cola Zero
## 551          Extra Grande           Colas Light       Coca-Cola Zero
## 552          Extra Grande           Colas Light       Coca-Cola Zero
## 553          Extra Grande         Colas Regular            Coca-Cola
## 554          Extra Grande         Colas Regular            Coca-Cola
## 555          Extra Grande         Colas Regular            Coca-Cola
## 556          Extra Grande         Colas Regular            Coca-Cola
## 557          Extra Grande         Colas Regular            Coca-Cola
## 558          Extra Grande         Colas Regular            Coca-Cola
## 559          Extra Grande         Colas Regular            Coca-Cola
## 560          Extra Grande         Colas Regular            Coca-Cola
## 561          Extra Grande         Colas Regular            Coca-Cola
## 562          Extra Grande         Colas Regular            Coca-Cola
## 563          Extra Grande         Colas Regular            Coca-Cola
## 564          Extra Grande         Colas Regular            Coca-Cola
## 565          Extra Grande         Colas Regular            Coca-Cola
## 566          Extra Grande         Colas Regular            Coca-Cola
## 567          Extra Grande         Colas Regular            Coca-Cola
## 568          Extra Grande         Colas Regular            Coca-Cola
## 569          Extra Grande         Colas Regular            Coca-Cola
## 570          Extra Grande Isot\x97nicos Regular             Powerade
## 571          Extra Grande Isot\x97nicos Regular             Powerade
## 572          Extra Grande Isot\x97nicos Regular             Powerade
## 573          Extra Grande   Jugos y N\x8ectares            Del Valle
## 574          Extra Grande   Jugos y N\x8ectares            Del Valle
## 575          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 576          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 577          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 578          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 579          Extra Grande         Sabores Light          Sprite Zero
## 580          Extra Grande       Sabores Regular     Del Valle y Nada
## 581          Extra Grande       Sabores Regular     Del Valle y Nada
## 582          Extra Grande       Sabores Regular                Fanta
## 583          Extra Grande       Sabores Regular                Fanta
## 584          Extra Grande       Sabores Regular                Fanta
## 585          Extra Grande       Sabores Regular                Fanta
## 586          Extra Grande       Sabores Regular                Fanta
## 587          Extra Grande       Sabores Regular                Fanta
## 588          Extra Grande       Sabores Regular                Fanta
## 589          Extra Grande       Sabores Regular                Fanta
## 590          Extra Grande       Sabores Regular                Fanta
## 591          Extra Grande       Sabores Regular               Fresca
## 592          Extra Grande       Sabores Regular               Fresca
## 593          Extra Grande       Sabores Regular               Fresca
## 594          Extra Grande       Sabores Regular               Fresca
## 595          Extra Grande       Sabores Regular               Fresca
## 596          Extra Grande       Sabores Regular               Fresca
## 597          Extra Grande       Sabores Regular               Fresca
## 598          Extra Grande       Sabores Regular         Manzana Lift
## 599          Extra Grande       Sabores Regular         Manzana Lift
## 600          Extra Grande       Sabores Regular         Manzana Lift
## 601          Extra Grande       Sabores Regular         Manzana Lift
## 602          Extra Grande       Sabores Regular         Manzana Lift
## 603          Extra Grande       Sabores Regular         Manzana Lift
## 604          Extra Grande       Sabores Regular               Senzao
## 605          Extra Grande       Sabores Regular        Sidral Mundet
## 606          Extra Grande       Sabores Regular        Sidral Mundet
## 607          Extra Grande       Sabores Regular        Sidral Mundet
## 608          Extra Grande       Sabores Regular        Sidral Mundet
## 609          Extra Grande       Sabores Regular        Sidral Mundet
## 610          Extra Grande       Sabores Regular        Sidral Mundet
## 611          Extra Grande       Sabores Regular               Sprite
## 612          Extra Grande       Sabores Regular               Sprite
## 613          Extra Grande       Sabores Regular               Sprite
## 614          Extra Grande       Sabores Regular               Sprite
## 615          Extra Grande       Sabores Regular               Sprite
## 616          Extra Grande       Sabores Regular               Sprite
## 617          Extra Grande       Sabores Regular               Sprite
## 618          Extra Grande       Sabores Regular               Sprite
## 619          Extra Grande       Sabores Regular               Sprite
## 620          Extra Grande         T\x8e Regular             Fuze Tea
## 621          Extra Grande         T\x8e Regular             Fuze Tea
## 622          Extra Grande         T\x8e Regular             Fuze Tea
## 623          Extra Grande         T\x8e Regular             Fuze Tea
## 624          Extra Grande          Agua Mineral    Ciel Mineralizada
## 625          Extra Grande          Agua Mineral      Topo Chico A.M.
## 626          Extra Grande       Agua Purificada Ciel Agua Purificada
## 627          Extra Grande       Agua Purificada Ciel Agua Purificada
## 628          Extra Grande       Agua Purificada Ciel Agua Purificada
## 629          Extra Grande       Agua Purificada Ciel Agua Purificada
## 630          Extra Grande       Agua Saborizada          Ciel Exprim
## 631          Extra Grande       Agua Saborizada            Ciel Mini
## 632          Extra Grande      Bebidas de Fruta       Delaware Punch
## 633          Extra Grande      Bebidas de Fruta               Frutsi
## 634          Extra Grande      Bebidas de Fruta                Pulpy
## 635          Extra Grande      Bebidas de Fruta           Valle Frut
## 636          Extra Grande      Bebidas de Fruta           Valle Frut
## 637          Extra Grande      Bebidas de Fruta           Valle Frut
## 638          Extra Grande      Bebidas de Fruta           Valle Frut
## 639          Extra Grande      Bebidas de Fruta           Valle Frut
## 640          Extra Grande   Bebidas Energeticas                 Burn
## 641          Extra Grande   Bebidas Energeticas                 Burn
## 642          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 643          Extra Grande           Colas Light       Coca-Cola Life
## 644          Extra Grande           Colas Light       Coca-Cola Life
## 645          Extra Grande           Colas Light       Coca-Cola Life
## 646          Extra Grande           Colas Light      Coca-Cola Light
## 647          Extra Grande           Colas Light      Coca-Cola Light
## 648          Extra Grande           Colas Light      Coca-Cola Light
## 649          Extra Grande           Colas Light      Coca-Cola Light
## 650          Extra Grande           Colas Light      Coca-Cola Light
## 651          Extra Grande           Colas Light      Coca-Cola Light
## 652          Extra Grande           Colas Light      Coca-Cola Light
## 653          Extra Grande           Colas Light      Coca-Cola Light
## 654          Extra Grande           Colas Light  Coca-Cola Light Sin
## 655          Extra Grande           Colas Light       Coca-Cola Zero
## 656          Extra Grande           Colas Light       Coca-Cola Zero
## 657          Extra Grande           Colas Light       Coca-Cola Zero
## 658          Extra Grande           Colas Light       Coca-Cola Zero
## 659          Extra Grande         Colas Regular            Coca-Cola
## 660          Extra Grande         Colas Regular            Coca-Cola
## 661          Extra Grande         Colas Regular            Coca-Cola
## 662          Extra Grande         Colas Regular            Coca-Cola
## 663          Extra Grande         Colas Regular            Coca-Cola
## 664          Extra Grande         Colas Regular            Coca-Cola
## 665          Extra Grande         Colas Regular            Coca-Cola
## 666          Extra Grande         Colas Regular            Coca-Cola
## 667          Extra Grande         Colas Regular            Coca-Cola
## 668          Extra Grande         Colas Regular            Coca-Cola
## 669          Extra Grande         Colas Regular            Coca-Cola
## 670          Extra Grande         Colas Regular            Coca-Cola
## 671          Extra Grande         Colas Regular            Coca-Cola
## 672          Extra Grande         Colas Regular            Coca-Cola
## 673          Extra Grande         Colas Regular            Coca-Cola
## 674          Extra Grande         Colas Regular            Coca-Cola
## 675          Extra Grande         Colas Regular            Coca-Cola
## 676          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 677          Extra Grande Isot\x97nicos Regular             Powerade
## 678          Extra Grande Isot\x97nicos Regular             Powerade
## 679          Extra Grande   Jugos y N\x8ectares            Del Valle
## 680          Extra Grande   Jugos y N\x8ectares            Del Valle
## 681          Extra Grande   Jugos y N\x8ectares            Del Valle
## 682          Extra Grande   Jugos y N\x8ectares            Del Valle
## 683          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 684          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 685          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 686          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 687          Extra Grande     Leche UHT Regular   Santa Clara Entera
## 688          Extra Grande     Leche UHT Regular    Santa Clara Light
## 689          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 690          Extra Grande         Sabores Light           Fanta Zero
## 691          Extra Grande         Sabores Light          Fresca Zero
## 692          Extra Grande         Sabores Light    Manzana Lift Zero
## 693          Extra Grande         Sabores Light          Sprite Zero
## 694          Extra Grande       Sabores Regular     Del Valle y Nada
## 695          Extra Grande       Sabores Regular                Fanta
## 696          Extra Grande       Sabores Regular                Fanta
## 697          Extra Grande       Sabores Regular                Fanta
## 698          Extra Grande       Sabores Regular                Fanta
## 699          Extra Grande       Sabores Regular                Fanta
## 700          Extra Grande       Sabores Regular                Fanta
## 701          Extra Grande       Sabores Regular                Fanta
## 702          Extra Grande       Sabores Regular               Fresca
## 703          Extra Grande       Sabores Regular               Fresca
## 704          Extra Grande       Sabores Regular               Fresca
## 705          Extra Grande       Sabores Regular               Fresca
## 706          Extra Grande       Sabores Regular               Fresca
## 707          Extra Grande       Sabores Regular         Manzana Lift
## 708          Extra Grande       Sabores Regular         Manzana Lift
## 709          Extra Grande       Sabores Regular         Manzana Lift
## 710          Extra Grande       Sabores Regular         Manzana Lift
## 711          Extra Grande       Sabores Regular               Senzao
## 712          Extra Grande       Sabores Regular        Sidral Mundet
## 713          Extra Grande       Sabores Regular        Sidral Mundet
## 714          Extra Grande       Sabores Regular        Sidral Mundet
## 715          Extra Grande       Sabores Regular        Sidral Mundet
## 716          Extra Grande       Sabores Regular        Sidral Mundet
## 717          Extra Grande       Sabores Regular               Sprite
## 718          Extra Grande       Sabores Regular               Sprite
## 719          Extra Grande       Sabores Regular               Sprite
## 720          Extra Grande       Sabores Regular               Sprite
## 721          Extra Grande       Sabores Regular               Sprite
## 722          Extra Grande       Sabores Regular               Sprite
## 723          Extra Grande       Sabores Regular               Sprite
## 724          Extra Grande           T\x8e Light       Fuze Tea Light
## 725          Extra Grande         T\x8e Regular             Fuze Tea
## 726          Extra Grande         T\x8e Regular             Fuze Tea
## 727          Extra Grande          Agua Mineral    Ciel Mineralizada
## 728          Extra Grande          Agua Mineral      Topo Chico A.M.
## 729          Extra Grande       Agua Purificada Ciel Agua Purificada
## 730          Extra Grande       Agua Purificada Ciel Agua Purificada
## 731          Extra Grande       Agua Purificada Ciel Agua Purificada
## 732          Extra Grande       Agua Purificada Ciel Agua Purificada
## 733          Extra Grande       Agua Purificada Ciel Agua Purificada
## 734          Extra Grande       Agua Saborizada          Ciel Exprim
## 735          Extra Grande      Bebidas de Fruta               Bebere
## 736          Extra Grande      Bebidas de Fruta       Delaware Punch
## 737          Extra Grande      Bebidas de Fruta       Delaware Punch
## 738          Extra Grande      Bebidas de Fruta               Frutsi
## 739          Extra Grande      Bebidas de Fruta                Pulpy
## 740          Extra Grande      Bebidas de Fruta           Valle Frut
## 741          Extra Grande      Bebidas de Fruta           Valle Frut
## 742          Extra Grande      Bebidas de Fruta           Valle Frut
## 743          Extra Grande      Bebidas de Fruta           Valle Frut
## 744          Extra Grande      Bebidas de Fruta           Valle Frut
## 745          Extra Grande   Bebidas Energeticas                 Burn
## 746          Extra Grande   Bebidas Energeticas                 Burn
## 747          Extra Grande   Bebidas Energeticas           Glac\x8eau
## 748          Extra Grande           Colas Light       Coca-Cola Life
## 749          Extra Grande           Colas Light       Coca-Cola Life
## 750          Extra Grande           Colas Light       Coca-Cola Life
## 751          Extra Grande           Colas Light       Coca-Cola Life
## 752          Extra Grande           Colas Light       Coca-Cola Life
## 753          Extra Grande           Colas Light      Coca-Cola Light
## 754          Extra Grande           Colas Light      Coca-Cola Light
## 755          Extra Grande           Colas Light      Coca-Cola Light
## 756          Extra Grande           Colas Light      Coca-Cola Light
## 757          Extra Grande           Colas Light      Coca-Cola Light
## 758          Extra Grande           Colas Light      Coca-Cola Light
## 759          Extra Grande           Colas Light  Coca-Cola Light Sin
## 760          Extra Grande           Colas Light  Coca-Cola Light Sin
## 761          Extra Grande           Colas Light       Coca-Cola Zero
## 762          Extra Grande           Colas Light       Coca-Cola Zero
## 763          Extra Grande           Colas Light       Coca-Cola Zero
## 764          Extra Grande           Colas Light       Coca-Cola Zero
## 765          Extra Grande           Colas Light       Coca-Cola Zero
## 766          Extra Grande           Colas Light       Coca-Cola Zero
## 767          Extra Grande         Colas Regular            Coca-Cola
## 768          Extra Grande         Colas Regular            Coca-Cola
## 769          Extra Grande         Colas Regular            Coca-Cola
## 770          Extra Grande         Colas Regular            Coca-Cola
## 771          Extra Grande         Colas Regular            Coca-Cola
## 772          Extra Grande         Colas Regular            Coca-Cola
## 773          Extra Grande         Colas Regular            Coca-Cola
## 774          Extra Grande         Colas Regular            Coca-Cola
## 775          Extra Grande         Colas Regular            Coca-Cola
## 776          Extra Grande         Colas Regular            Coca-Cola
## 777          Extra Grande         Colas Regular            Coca-Cola
## 778          Extra Grande         Colas Regular            Coca-Cola
## 779          Extra Grande         Colas Regular            Coca-Cola
## 780          Extra Grande         Colas Regular            Coca-Cola
## 781          Extra Grande         Colas Regular            Coca-Cola
## 782          Extra Grande         Colas Regular            Coca-Cola
## 783          Extra Grande         Colas Regular            Coca-Cola
## 784          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 785          Extra Grande Isot\x97nicos Regular             Powerade
## 786          Extra Grande Isot\x97nicos Regular             Powerade
## 787          Extra Grande Isot\x97nicos Regular             Powerade
## 788          Extra Grande   Jugos y N\x8ectares            Del Valle
## 789          Extra Grande   Jugos y N\x8ectares            Del Valle
## 790          Extra Grande   Jugos y N\x8ectares            Del Valle
## 791          Extra Grande   Jugos y N\x8ectares            Del Valle
## 792          Extra Grande   Jugos y N\x8ectares            Del Valle
## 793          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 794          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 795          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 796          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 797          Extra Grande     Leche UHT Regular   Santa Clara Entera
## 798          Extra Grande     Leche UHT Regular    Santa Clara Light
## 799          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 800          Extra Grande         Sabores Light           Fanta Zero
## 801          Extra Grande         Sabores Light    Manzana Lift Zero
## 802          Extra Grande         Sabores Light  Sidral Mundet Light
## 803          Extra Grande         Sabores Light          Sprite Zero
## 804          Extra Grande       Sabores Regular     Del Valle y Nada
## 805          Extra Grande       Sabores Regular                Fanta
## 806          Extra Grande       Sabores Regular                Fanta
## 807          Extra Grande       Sabores Regular                Fanta
## 808          Extra Grande       Sabores Regular                Fanta
## 809          Extra Grande       Sabores Regular               Fresca
## 810          Extra Grande       Sabores Regular               Fresca
## 811          Extra Grande       Sabores Regular               Fresca
## 812          Extra Grande       Sabores Regular               Fresca
## 813          Extra Grande       Sabores Regular         Manzana Lift
## 814          Extra Grande       Sabores Regular         Manzana Lift
## 815          Extra Grande       Sabores Regular         Manzana Lift
## 816          Extra Grande       Sabores Regular         Manzana Lift
## 817          Extra Grande       Sabores Regular               Senzao
## 818          Extra Grande       Sabores Regular        Sidral Mundet
## 819          Extra Grande       Sabores Regular        Sidral Mundet
## 820          Extra Grande       Sabores Regular        Sidral Mundet
## 821          Extra Grande       Sabores Regular        Sidral Mundet
## 822          Extra Grande       Sabores Regular        Sidral Mundet
## 823          Extra Grande       Sabores Regular               Sprite
## 824          Extra Grande       Sabores Regular               Sprite
## 825          Extra Grande       Sabores Regular               Sprite
## 826          Extra Grande       Sabores Regular               Sprite
## 827          Extra Grande       Sabores Regular               Sprite
## 828          Extra Grande       Sabores Regular               Sprite
## 829          Extra Grande       Sabores Regular               Sprite
## 830          Extra Grande           T\x8e Light       Fuze Tea Light
## 831          Extra Grande         T\x8e Regular             Fuze Tea
## 832          Extra Grande         T\x8e Regular             Fuze Tea
## 833          Extra Grande         T\x8e Regular             Fuze Tea
## 834          Extra Grande          Agua Mineral    Ciel Mineralizada
## 835          Extra Grande          Agua Mineral      Topo Chico A.M.
## 836          Extra Grande       Agua Purificada Ciel Agua Purificada
## 837          Extra Grande       Agua Purificada Ciel Agua Purificada
## 838          Extra Grande       Agua Purificada Ciel Agua Purificada
## 839          Extra Grande       Agua Saborizada          Ciel Exprim
## 840          Extra Grande       Agua Saborizada            Ciel Mini
## 841          Extra Grande      Bebidas de Fruta       Delaware Punch
## 842          Extra Grande      Bebidas de Fruta       Delaware Punch
## 843          Extra Grande      Bebidas de Fruta               Frutsi
## 844          Extra Grande      Bebidas de Fruta           Valle Frut
## 845          Extra Grande      Bebidas de Fruta           Valle Frut
## 846          Extra Grande      Bebidas de Fruta           Valle Frut
## 847          Extra Grande      Bebidas de Fruta           Valle Frut
## 848          Extra Grande      Bebidas de Fruta           Valle Frut
## 849          Extra Grande   Bebidas Energeticas                 Burn
## 850          Extra Grande   Bebidas Energeticas                 Burn
## 851          Extra Grande           Colas Light       Coca-Cola Life
## 852          Extra Grande           Colas Light       Coca-Cola Life
## 853          Extra Grande           Colas Light       Coca-Cola Life
## 854          Extra Grande           Colas Light       Coca-Cola Life
## 855          Extra Grande           Colas Light      Coca-Cola Light
## 856          Extra Grande           Colas Light      Coca-Cola Light
## 857          Extra Grande           Colas Light      Coca-Cola Light
## 858          Extra Grande           Colas Light      Coca-Cola Light
## 859          Extra Grande           Colas Light      Coca-Cola Light
## 860          Extra Grande           Colas Light      Coca-Cola Light
## 861          Extra Grande           Colas Light      Coca-Cola Light
## 862          Extra Grande           Colas Light      Coca-Cola Light
## 863          Extra Grande           Colas Light       Coca-Cola Zero
## 864          Extra Grande           Colas Light       Coca-Cola Zero
## 865          Extra Grande           Colas Light       Coca-Cola Zero
## 866          Extra Grande           Colas Light       Coca-Cola Zero
## 867          Extra Grande           Colas Light       Coca-Cola Zero
## 868          Extra Grande         Colas Regular            Coca-Cola
## 869          Extra Grande         Colas Regular            Coca-Cola
## 870          Extra Grande         Colas Regular            Coca-Cola
## 871          Extra Grande         Colas Regular            Coca-Cola
## 872          Extra Grande         Colas Regular            Coca-Cola
## 873          Extra Grande         Colas Regular            Coca-Cola
## 874          Extra Grande         Colas Regular            Coca-Cola
## 875          Extra Grande         Colas Regular            Coca-Cola
## 876          Extra Grande         Colas Regular            Coca-Cola
## 877          Extra Grande         Colas Regular            Coca-Cola
## 878          Extra Grande         Colas Regular            Coca-Cola
## 879          Extra Grande         Colas Regular            Coca-Cola
## 880          Extra Grande         Colas Regular            Coca-Cola
## 881          Extra Grande         Colas Regular            Coca-Cola
## 882          Extra Grande         Colas Regular            Coca-Cola
## 883          Extra Grande         Colas Regular            Coca-Cola
## 884          Extra Grande         Colas Regular            Coca-Cola
## 885          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 886          Extra Grande Isot\x97nicos Regular             Powerade
## 887          Extra Grande Isot\x97nicos Regular             Powerade
## 888          Extra Grande Isot\x97nicos Regular             Powerade
## 889          Extra Grande   Jugos y N\x8ectares            Del Valle
## 890          Extra Grande   Jugos y N\x8ectares            Del Valle
## 891          Extra Grande   Jugos y N\x8ectares            Del Valle
## 892          Extra Grande   Jugos y N\x8ectares            Del Valle
## 893          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 894          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 895          Extra Grande     Leche UHT Regular   Santa Clara Entera
## 896          Extra Grande     Leche UHT Regular    Santa Clara Light
## 897          Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 898          Extra Grande         Sabores Light          Sprite Zero
## 899          Extra Grande       Sabores Regular     Del Valle y Nada
## 900          Extra Grande       Sabores Regular     Del Valle y Nada
## 901          Extra Grande       Sabores Regular                Fanta
## 902          Extra Grande       Sabores Regular                Fanta
## 903          Extra Grande       Sabores Regular                Fanta
## 904          Extra Grande       Sabores Regular                Fanta
## 905          Extra Grande       Sabores Regular                Fanta
## 906          Extra Grande       Sabores Regular                Fanta
## 907          Extra Grande       Sabores Regular                Fanta
## 908          Extra Grande       Sabores Regular               Fresca
## 909          Extra Grande       Sabores Regular               Fresca
## 910          Extra Grande       Sabores Regular               Fresca
## 911          Extra Grande       Sabores Regular               Fresca
## 912          Extra Grande       Sabores Regular               Fresca
## 913          Extra Grande       Sabores Regular               Fresca
## 914          Extra Grande       Sabores Regular         Manzana Lift
## 915          Extra Grande       Sabores Regular         Manzana Lift
## 916          Extra Grande       Sabores Regular         Manzana Lift
## 917          Extra Grande       Sabores Regular         Manzana Lift
## 918          Extra Grande       Sabores Regular         Manzana Lift
## 919          Extra Grande       Sabores Regular               Senzao
## 920          Extra Grande       Sabores Regular        Sidral Mundet
## 921          Extra Grande       Sabores Regular        Sidral Mundet
## 922          Extra Grande       Sabores Regular        Sidral Mundet
## 923          Extra Grande       Sabores Regular        Sidral Mundet
## 924          Extra Grande       Sabores Regular               Sprite
## 925          Extra Grande       Sabores Regular               Sprite
## 926          Extra Grande       Sabores Regular               Sprite
## 927          Extra Grande       Sabores Regular               Sprite
## 928          Extra Grande       Sabores Regular               Sprite
## 929          Extra Grande       Sabores Regular               Sprite
## 930          Extra Grande       Sabores Regular               Sprite
## 931          Extra Grande         T\x8e Regular             Fuze Tea
## 932          Extra Grande         T\x8e Regular             Fuze Tea
## 933          Extra Grande         T\x8e Regular             Fuze Tea
## 934          Extra Grande          Agua Mineral    Ciel Mineralizada
## 935          Extra Grande          Agua Mineral      Topo Chico A.M.
## 936          Extra Grande          Agua Mineral      Topo Chico A.M.
## 937          Extra Grande       Agua Purificada Ciel Agua Purificada
## 938          Extra Grande       Agua Purificada Ciel Agua Purificada
## 939          Extra Grande       Agua Purificada Ciel Agua Purificada
## 940          Extra Grande       Agua Saborizada          Ciel Exprim
## 941          Extra Grande       Agua Saborizada            Ciel Mini
## 942          Extra Grande      Bebidas de Fruta       Delaware Punch
## 943          Extra Grande      Bebidas de Fruta       Delaware Punch
## 944          Extra Grande      Bebidas de Fruta               Frutsi
## 945          Extra Grande      Bebidas de Fruta                Pulpy
## 946          Extra Grande      Bebidas de Fruta           Valle Frut
## 947          Extra Grande      Bebidas de Fruta           Valle Frut
## 948          Extra Grande      Bebidas de Fruta           Valle Frut
## 949          Extra Grande      Bebidas de Fruta           Valle Frut
## 950          Extra Grande           Colas Light       Coca-Cola Life
## 951          Extra Grande           Colas Light       Coca-Cola Life
## 952          Extra Grande           Colas Light      Coca-Cola Light
## 953          Extra Grande           Colas Light      Coca-Cola Light
## 954          Extra Grande           Colas Light      Coca-Cola Light
## 955          Extra Grande           Colas Light      Coca-Cola Light
## 956          Extra Grande           Colas Light      Coca-Cola Light
## 957          Extra Grande           Colas Light      Coca-Cola Light
## 958          Extra Grande           Colas Light      Coca-Cola Light
## 959          Extra Grande           Colas Light      Coca-Cola Light
## 960          Extra Grande           Colas Light      Coca-Cola Light
## 961          Extra Grande           Colas Light       Coca-Cola Zero
## 962          Extra Grande           Colas Light       Coca-Cola Zero
## 963          Extra Grande           Colas Light       Coca-Cola Zero
## 964          Extra Grande           Colas Light       Coca-Cola Zero
## 965          Extra Grande           Colas Light       Coca-Cola Zero
## 966          Extra Grande         Colas Regular            Coca-Cola
## 967          Extra Grande         Colas Regular            Coca-Cola
## 968          Extra Grande         Colas Regular            Coca-Cola
## 969          Extra Grande         Colas Regular            Coca-Cola
## 970          Extra Grande         Colas Regular            Coca-Cola
## 971          Extra Grande         Colas Regular            Coca-Cola
## 972          Extra Grande         Colas Regular            Coca-Cola
## 973          Extra Grande         Colas Regular            Coca-Cola
## 974          Extra Grande         Colas Regular            Coca-Cola
## 975          Extra Grande         Colas Regular            Coca-Cola
## 976          Extra Grande         Colas Regular            Coca-Cola
## 977          Extra Grande         Colas Regular            Coca-Cola
## 978          Extra Grande         Colas Regular            Coca-Cola
## 979          Extra Grande         Colas Regular            Coca-Cola
## 980          Extra Grande         Colas Regular            Coca-Cola
## 981          Extra Grande         Colas Regular            Coca-Cola
## 982          Extra Grande         Colas Regular            Coca-Cola
## 983          Extra Grande         Colas Regular            Coca-Cola
## 984          Extra Grande         Colas Regular            Coca-Cola
## 985          Extra Grande         Colas Regular            Coca-Cola
## 986          Extra Grande   Isot\x97nicos Light        Powerade Zero
## 987          Extra Grande Isot\x97nicos Regular             Powerade
## 988          Extra Grande Isot\x97nicos Regular             Powerade
## 989          Extra Grande Isot\x97nicos Regular             Powerade
## 990          Extra Grande   Jugos y N\x8ectares            Del Valle
## 991          Extra Grande   Jugos y N\x8ectares            Del Valle
## 992          Extra Grande   Jugos y N\x8ectares            Del Valle
## 993          Extra Grande   Jugos y N\x8ectares            Del Valle
## 994          Extra Grande   Jugos y N\x8ectares            Del Valle
## 995          Extra Grande   Jugos y N\x8ectares            Del Valle
## 996          Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 997          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 998          Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 999          Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1000         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1001         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1002         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1003         Extra Grande         Sabores Light          Sprite Zero
## 1004         Extra Grande       Sabores Regular     Del Valle y Nada
## 1005         Extra Grande       Sabores Regular     Del Valle y Nada
## 1006         Extra Grande       Sabores Regular     Del Valle y Nada
## 1007         Extra Grande       Sabores Regular                Fanta
## 1008         Extra Grande       Sabores Regular                Fanta
## 1009         Extra Grande       Sabores Regular                Fanta
## 1010         Extra Grande       Sabores Regular                Fanta
## 1011         Extra Grande       Sabores Regular                Fanta
## 1012         Extra Grande       Sabores Regular                Fanta
## 1013         Extra Grande       Sabores Regular                Fanta
## 1014         Extra Grande       Sabores Regular               Fresca
## 1015         Extra Grande       Sabores Regular               Fresca
## 1016         Extra Grande       Sabores Regular               Fresca
## 1017         Extra Grande       Sabores Regular               Fresca
## 1018         Extra Grande       Sabores Regular               Fresca
## 1019         Extra Grande       Sabores Regular               Fresca
## 1020         Extra Grande       Sabores Regular               Fresca
## 1021         Extra Grande       Sabores Regular               Fresca
## 1022         Extra Grande       Sabores Regular         Manzana Lift
## 1023         Extra Grande       Sabores Regular         Manzana Lift
## 1024         Extra Grande       Sabores Regular         Manzana Lift
## 1025         Extra Grande       Sabores Regular         Manzana Lift
## 1026         Extra Grande       Sabores Regular         Manzana Lift
## 1027         Extra Grande       Sabores Regular               Senzao
## 1028         Extra Grande       Sabores Regular        Sidral Mundet
## 1029         Extra Grande       Sabores Regular        Sidral Mundet
## 1030         Extra Grande       Sabores Regular        Sidral Mundet
## 1031         Extra Grande       Sabores Regular        Sidral Mundet
## 1032         Extra Grande       Sabores Regular        Sidral Mundet
## 1033         Extra Grande       Sabores Regular               Sprite
## 1034         Extra Grande       Sabores Regular               Sprite
## 1035         Extra Grande       Sabores Regular               Sprite
## 1036         Extra Grande       Sabores Regular               Sprite
## 1037         Extra Grande       Sabores Regular               Sprite
## 1038         Extra Grande       Sabores Regular               Sprite
## 1039         Extra Grande       Sabores Regular               Sprite
## 1040         Extra Grande         T\x8e Regular             Fuze Tea
## 1041         Extra Grande         T\x8e Regular             Fuze Tea
## 1042         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1043         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1044         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1045         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1046         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1047         Extra Grande       Agua Saborizada          Ciel Exprim
## 1048         Extra Grande       Agua Saborizada            Ciel Mini
## 1049         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1050         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1051         Extra Grande      Bebidas de Fruta               Frutsi
## 1052         Extra Grande      Bebidas de Fruta                Pulpy
## 1053         Extra Grande      Bebidas de Fruta           Valle Frut
## 1054         Extra Grande      Bebidas de Fruta           Valle Frut
## 1055         Extra Grande      Bebidas de Fruta           Valle Frut
## 1056         Extra Grande      Bebidas de Fruta           Valle Frut
## 1057         Extra Grande      Bebidas de Fruta           Valle Frut
## 1058         Extra Grande   Bebidas Energeticas                 Burn
## 1059         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1060         Extra Grande           Colas Light       Coca-Cola Life
## 1061         Extra Grande           Colas Light       Coca-Cola Life
## 1062         Extra Grande           Colas Light      Coca-Cola Light
## 1063         Extra Grande           Colas Light      Coca-Cola Light
## 1064         Extra Grande           Colas Light      Coca-Cola Light
## 1065         Extra Grande           Colas Light      Coca-Cola Light
## 1066         Extra Grande           Colas Light      Coca-Cola Light
## 1067         Extra Grande           Colas Light      Coca-Cola Light
## 1068         Extra Grande           Colas Light       Coca-Cola Zero
## 1069         Extra Grande         Colas Regular            Coca-Cola
## 1070         Extra Grande         Colas Regular            Coca-Cola
## 1071         Extra Grande         Colas Regular            Coca-Cola
## 1072         Extra Grande         Colas Regular            Coca-Cola
## 1073         Extra Grande         Colas Regular            Coca-Cola
## 1074         Extra Grande         Colas Regular            Coca-Cola
## 1075         Extra Grande         Colas Regular            Coca-Cola
## 1076         Extra Grande         Colas Regular            Coca-Cola
## 1077         Extra Grande         Colas Regular            Coca-Cola
## 1078         Extra Grande         Colas Regular            Coca-Cola
## 1079         Extra Grande         Colas Regular            Coca-Cola
## 1080         Extra Grande         Colas Regular            Coca-Cola
## 1081         Extra Grande         Colas Regular            Coca-Cola
## 1082         Extra Grande         Colas Regular            Coca-Cola
## 1083         Extra Grande         Colas Regular            Coca-Cola
## 1084         Extra Grande Isot\x97nicos Regular             Powerade
## 1085         Extra Grande Isot\x97nicos Regular             Powerade
## 1086         Extra Grande Isot\x97nicos Regular             Powerade
## 1087         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1088         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1089         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1090         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1091         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1092         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1093         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1094         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1095         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1096         Extra Grande         Sabores Light          Sprite Zero
## 1097         Extra Grande       Sabores Regular     Del Valle y Nada
## 1098         Extra Grande       Sabores Regular                Fanta
## 1099         Extra Grande       Sabores Regular                Fanta
## 1100         Extra Grande       Sabores Regular                Fanta
## 1101         Extra Grande       Sabores Regular                Fanta
## 1102         Extra Grande       Sabores Regular                Fanta
## 1103         Extra Grande       Sabores Regular                Fanta
## 1104         Extra Grande       Sabores Regular               Fresca
## 1105         Extra Grande       Sabores Regular               Fresca
## 1106         Extra Grande       Sabores Regular               Fresca
## 1107         Extra Grande       Sabores Regular               Fresca
## 1108         Extra Grande       Sabores Regular               Fresca
## 1109         Extra Grande       Sabores Regular               Fresca
## 1110         Extra Grande       Sabores Regular               Fresca
## 1111         Extra Grande       Sabores Regular         Manzana Lift
## 1112         Extra Grande       Sabores Regular         Manzana Lift
## 1113         Extra Grande       Sabores Regular         Manzana Lift
## 1114         Extra Grande       Sabores Regular         Manzana Lift
## 1115         Extra Grande       Sabores Regular         Manzana Lift
## 1116         Extra Grande       Sabores Regular               Senzao
## 1117         Extra Grande       Sabores Regular        Sidral Mundet
## 1118         Extra Grande       Sabores Regular        Sidral Mundet
## 1119         Extra Grande       Sabores Regular        Sidral Mundet
## 1120         Extra Grande       Sabores Regular        Sidral Mundet
## 1121         Extra Grande       Sabores Regular        Sidral Mundet
## 1122         Extra Grande       Sabores Regular               Sprite
## 1123         Extra Grande       Sabores Regular               Sprite
## 1124         Extra Grande       Sabores Regular               Sprite
## 1125         Extra Grande       Sabores Regular               Sprite
## 1126         Extra Grande       Sabores Regular               Sprite
## 1127         Extra Grande       Sabores Regular               Sprite
## 1128         Extra Grande           T\x8e Light       Fuze Tea Light
## 1129         Extra Grande         T\x8e Regular             Fuze Tea
## 1130         Extra Grande         T\x8e Regular             Fuze Tea
## 1131         Extra Grande         T\x8e Regular             Fuze Tea
## 1132         Extra Grande         T\x8e Regular             Fuze Tea
## 1133         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1134         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1135         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1136         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1137         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1138         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1139         Extra Grande       Agua Saborizada          Ciel Exprim
## 1140         Extra Grande       Agua Saborizada            Ciel Mini
## 1141         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1142         Extra Grande      Bebidas de Fruta               Frutsi
## 1143         Extra Grande      Bebidas de Fruta                Pulpy
## 1144         Extra Grande      Bebidas de Fruta           Valle Frut
## 1145         Extra Grande      Bebidas de Fruta           Valle Frut
## 1146         Extra Grande      Bebidas de Fruta           Valle Frut
## 1147         Extra Grande      Bebidas de Fruta           Valle Frut
## 1148         Extra Grande   Bebidas Energeticas                 Burn
## 1149         Extra Grande   Bebidas Energeticas                 Burn
## 1150         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1151         Extra Grande           Colas Light       Coca-Cola Life
## 1152         Extra Grande           Colas Light      Coca-Cola Light
## 1153         Extra Grande           Colas Light      Coca-Cola Light
## 1154         Extra Grande           Colas Light      Coca-Cola Light
## 1155         Extra Grande           Colas Light      Coca-Cola Light
## 1156         Extra Grande           Colas Light      Coca-Cola Light
## 1157         Extra Grande           Colas Light      Coca-Cola Light
## 1158         Extra Grande         Colas Regular            Coca-Cola
## 1159         Extra Grande         Colas Regular            Coca-Cola
## 1160         Extra Grande         Colas Regular            Coca-Cola
## 1161         Extra Grande         Colas Regular            Coca-Cola
## 1162         Extra Grande         Colas Regular            Coca-Cola
## 1163         Extra Grande         Colas Regular            Coca-Cola
## 1164         Extra Grande         Colas Regular            Coca-Cola
## 1165         Extra Grande         Colas Regular            Coca-Cola
## 1166         Extra Grande         Colas Regular            Coca-Cola
## 1167         Extra Grande         Colas Regular            Coca-Cola
## 1168         Extra Grande         Colas Regular            Coca-Cola
## 1169         Extra Grande         Colas Regular            Coca-Cola
## 1170         Extra Grande         Colas Regular            Coca-Cola
## 1171         Extra Grande         Colas Regular            Coca-Cola
## 1172         Extra Grande         Colas Regular            Coca-Cola
## 1173         Extra Grande Isot\x97nicos Regular             Powerade
## 1174         Extra Grande Isot\x97nicos Regular             Powerade
## 1175         Extra Grande Isot\x97nicos Regular             Powerade
## 1176         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1177         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1178         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1179         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1180         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1181         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1182         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1183         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1184         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1185         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1186         Extra Grande         Sabores Light           Fanta Zero
## 1187         Extra Grande         Sabores Light          Fresca Zero
## 1188         Extra Grande         Sabores Light    Manzana Lift Zero
## 1189         Extra Grande         Sabores Light          Sprite Zero
## 1190         Extra Grande       Sabores Regular     Del Valle y Nada
## 1191         Extra Grande       Sabores Regular                Fanta
## 1192         Extra Grande       Sabores Regular                Fanta
## 1193         Extra Grande       Sabores Regular                Fanta
## 1194         Extra Grande       Sabores Regular                Fanta
## 1195         Extra Grande       Sabores Regular                Fanta
## 1196         Extra Grande       Sabores Regular                Fanta
## 1197         Extra Grande       Sabores Regular                Fanta
## 1198         Extra Grande       Sabores Regular               Fresca
## 1199         Extra Grande       Sabores Regular               Fresca
## 1200         Extra Grande       Sabores Regular               Fresca
## 1201         Extra Grande       Sabores Regular               Fresca
## 1202         Extra Grande       Sabores Regular               Fresca
## 1203         Extra Grande       Sabores Regular               Fresca
## 1204         Extra Grande       Sabores Regular               Fresca
## 1205         Extra Grande       Sabores Regular         Manzana Lift
## 1206         Extra Grande       Sabores Regular         Manzana Lift
## 1207         Extra Grande       Sabores Regular         Manzana Lift
## 1208         Extra Grande       Sabores Regular         Manzana Lift
## 1209         Extra Grande       Sabores Regular         Manzana Lift
## 1210         Extra Grande       Sabores Regular         Manzana Lift
## 1211         Extra Grande       Sabores Regular               Senzao
## 1212         Extra Grande       Sabores Regular        Sidral Mundet
## 1213         Extra Grande       Sabores Regular        Sidral Mundet
## 1214         Extra Grande       Sabores Regular               Sprite
## 1215         Extra Grande       Sabores Regular               Sprite
## 1216         Extra Grande       Sabores Regular               Sprite
## 1217         Extra Grande       Sabores Regular               Sprite
## 1218         Extra Grande       Sabores Regular               Sprite
## 1219         Extra Grande       Sabores Regular               Sprite
## 1220         Extra Grande       Sabores Regular               Sprite
## 1221         Extra Grande       Sabores Regular               Sprite
## 1222         Extra Grande           T\x8e Light       Fuze Tea Light
## 1223         Extra Grande         T\x8e Regular             Fuze Tea
## 1224         Extra Grande         T\x8e Regular             Fuze Tea
## 1225         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1226         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1227         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1228         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1229         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1230         Extra Grande       Agua Saborizada          Ciel Exprim
## 1231         Extra Grande       Agua Saborizada            Ciel Mini
## 1232         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1233         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1234         Extra Grande      Bebidas de Fruta               Frutsi
## 1235         Extra Grande      Bebidas de Fruta                Pulpy
## 1236         Extra Grande      Bebidas de Fruta           Valle Frut
## 1237         Extra Grande      Bebidas de Fruta           Valle Frut
## 1238         Extra Grande           Colas Light      Coca-Cola Light
## 1239         Extra Grande           Colas Light      Coca-Cola Light
## 1240         Extra Grande           Colas Light      Coca-Cola Light
## 1241         Extra Grande           Colas Light      Coca-Cola Light
## 1242         Extra Grande           Colas Light      Coca-Cola Light
## 1243         Extra Grande         Colas Regular            Coca-Cola
## 1244         Extra Grande         Colas Regular            Coca-Cola
## 1245         Extra Grande         Colas Regular            Coca-Cola
## 1246         Extra Grande         Colas Regular            Coca-Cola
## 1247         Extra Grande         Colas Regular            Coca-Cola
## 1248         Extra Grande         Colas Regular            Coca-Cola
## 1249         Extra Grande         Colas Regular            Coca-Cola
## 1250         Extra Grande         Colas Regular            Coca-Cola
## 1251         Extra Grande         Colas Regular            Coca-Cola
## 1252         Extra Grande         Colas Regular            Coca-Cola
## 1253         Extra Grande         Colas Regular            Coca-Cola
## 1254         Extra Grande         Colas Regular            Coca-Cola
## 1255         Extra Grande Isot\x97nicos Regular             Powerade
## 1256         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1257         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1258         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1259         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1260         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1261         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1262         Extra Grande       Sabores Regular     Del Valle y Nada
## 1263         Extra Grande       Sabores Regular     Del Valle y Nada
## 1264         Extra Grande       Sabores Regular                Fanta
## 1265         Extra Grande       Sabores Regular                Fanta
## 1266         Extra Grande       Sabores Regular                Fanta
## 1267         Extra Grande       Sabores Regular                Fanta
## 1268         Extra Grande       Sabores Regular                Fanta
## 1269         Extra Grande       Sabores Regular                Fanta
## 1270         Extra Grande       Sabores Regular                Fanta
## 1271         Extra Grande       Sabores Regular               Fresca
## 1272         Extra Grande       Sabores Regular               Fresca
## 1273         Extra Grande       Sabores Regular               Fresca
## 1274         Extra Grande       Sabores Regular               Fresca
## 1275         Extra Grande       Sabores Regular               Fresca
## 1276         Extra Grande       Sabores Regular         Manzana Lift
## 1277         Extra Grande       Sabores Regular         Manzana Lift
## 1278         Extra Grande       Sabores Regular         Manzana Lift
## 1279         Extra Grande       Sabores Regular         Manzana Lift
## 1280         Extra Grande       Sabores Regular        Sidral Mundet
## 1281         Extra Grande       Sabores Regular        Sidral Mundet
## 1282         Extra Grande       Sabores Regular        Sidral Mundet
## 1283         Extra Grande       Sabores Regular               Sprite
## 1284         Extra Grande       Sabores Regular               Sprite
## 1285         Extra Grande       Sabores Regular               Sprite
## 1286         Extra Grande       Sabores Regular               Sprite
## 1287         Extra Grande       Sabores Regular               Sprite
## 1288         Extra Grande       Sabores Regular               Sprite
## 1289         Extra Grande       Sabores Regular               Sprite
## 1290         Extra Grande         T\x8e Regular             Fuze Tea
## 1291         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1292         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1293         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1294         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1295         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1296         Extra Grande       Agua Saborizada          Ciel Exprim
## 1297         Extra Grande       Agua Saborizada            Ciel Mini
## 1298         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1299         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1300         Extra Grande      Bebidas de Fruta               Frutsi
## 1301         Extra Grande      Bebidas de Fruta                Pulpy
## 1302         Extra Grande      Bebidas de Fruta           Valle Frut
## 1303         Extra Grande      Bebidas de Fruta           Valle Frut
## 1304         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1305         Extra Grande           Colas Light       Coca-Cola Life
## 1306         Extra Grande           Colas Light       Coca-Cola Life
## 1307         Extra Grande           Colas Light      Coca-Cola Light
## 1308         Extra Grande           Colas Light      Coca-Cola Light
## 1309         Extra Grande           Colas Light      Coca-Cola Light
## 1310         Extra Grande           Colas Light      Coca-Cola Light
## 1311         Extra Grande           Colas Light      Coca-Cola Light
## 1312         Extra Grande           Colas Light      Coca-Cola Light
## 1313         Extra Grande           Colas Light      Coca-Cola Light
## 1314         Extra Grande           Colas Light      Coca-Cola Light
## 1315         Extra Grande           Colas Light      Coca-Cola Light
## 1316         Extra Grande           Colas Light      Coca-Cola Light
## 1317         Extra Grande           Colas Light       Coca-Cola Zero
## 1318         Extra Grande           Colas Light       Coca-Cola Zero
## 1319         Extra Grande           Colas Light       Coca-Cola Zero
## 1320         Extra Grande         Colas Regular            Coca-Cola
## 1321         Extra Grande         Colas Regular            Coca-Cola
## 1322         Extra Grande         Colas Regular            Coca-Cola
## 1323         Extra Grande         Colas Regular            Coca-Cola
## 1324         Extra Grande         Colas Regular            Coca-Cola
## 1325         Extra Grande         Colas Regular            Coca-Cola
## 1326         Extra Grande         Colas Regular            Coca-Cola
## 1327         Extra Grande         Colas Regular            Coca-Cola
## 1328         Extra Grande         Colas Regular            Coca-Cola
## 1329         Extra Grande         Colas Regular            Coca-Cola
## 1330         Extra Grande         Colas Regular            Coca-Cola
## 1331         Extra Grande         Colas Regular            Coca-Cola
## 1332         Extra Grande         Colas Regular            Coca-Cola
## 1333         Extra Grande         Colas Regular            Coca-Cola
## 1334         Extra Grande Isot\x97nicos Regular             Powerade
## 1335         Extra Grande Isot\x97nicos Regular             Powerade
## 1336         Extra Grande Isot\x97nicos Regular             Powerade
## 1337         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1338         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1339         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1340         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1341         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1342         Extra Grande         Sabores Light          Sprite Zero
## 1343         Extra Grande       Sabores Regular     Del Valle y Nada
## 1344         Extra Grande       Sabores Regular                Fanta
## 1345         Extra Grande       Sabores Regular                Fanta
## 1346         Extra Grande       Sabores Regular                Fanta
## 1347         Extra Grande       Sabores Regular                Fanta
## 1348         Extra Grande       Sabores Regular                Fanta
## 1349         Extra Grande       Sabores Regular                Fanta
## 1350         Extra Grande       Sabores Regular                Fanta
## 1351         Extra Grande       Sabores Regular               Fresca
## 1352         Extra Grande       Sabores Regular               Fresca
## 1353         Extra Grande       Sabores Regular               Fresca
## 1354         Extra Grande       Sabores Regular               Fresca
## 1355         Extra Grande       Sabores Regular               Fresca
## 1356         Extra Grande       Sabores Regular               Fresca
## 1357         Extra Grande       Sabores Regular               Fresca
## 1358         Extra Grande       Sabores Regular         Manzana Lift
## 1359         Extra Grande       Sabores Regular         Manzana Lift
## 1360         Extra Grande       Sabores Regular         Manzana Lift
## 1361         Extra Grande       Sabores Regular         Manzana Lift
## 1362         Extra Grande       Sabores Regular               Senzao
## 1363         Extra Grande       Sabores Regular        Sidral Mundet
## 1364         Extra Grande       Sabores Regular        Sidral Mundet
## 1365         Extra Grande       Sabores Regular        Sidral Mundet
## 1366         Extra Grande       Sabores Regular        Sidral Mundet
## 1367         Extra Grande       Sabores Regular        Sidral Mundet
## 1368         Extra Grande       Sabores Regular               Sprite
## 1369         Extra Grande       Sabores Regular               Sprite
## 1370         Extra Grande       Sabores Regular               Sprite
## 1371         Extra Grande       Sabores Regular               Sprite
## 1372         Extra Grande       Sabores Regular               Sprite
## 1373         Extra Grande       Sabores Regular               Sprite
## 1374         Extra Grande       Sabores Regular               Sprite
## 1375         Extra Grande         T\x8e Regular             Fuze Tea
## 1376         Extra Grande         T\x8e Regular             Fuze Tea
## 1377         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1378         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1379         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1380         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1381         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1382         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1383         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1384         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1385         Extra Grande       Agua Saborizada          Ciel Exprim
## 1386         Extra Grande       Agua Saborizada            Ciel Mini
## 1387         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1388         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1389         Extra Grande      Bebidas de Fruta               Frutsi
## 1390         Extra Grande      Bebidas de Fruta                Pulpy
## 1391         Extra Grande      Bebidas de Fruta           Valle Frut
## 1392         Extra Grande      Bebidas de Fruta           Valle Frut
## 1393         Extra Grande      Bebidas de Fruta           Valle Frut
## 1394         Extra Grande      Bebidas de Fruta           Valle Frut
## 1395         Extra Grande   Bebidas Energeticas                 Burn
## 1396         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1397         Extra Grande           Colas Light       Coca-Cola Life
## 1398         Extra Grande           Colas Light      Coca-Cola Light
## 1399         Extra Grande           Colas Light      Coca-Cola Light
## 1400         Extra Grande           Colas Light      Coca-Cola Light
## 1401         Extra Grande           Colas Light      Coca-Cola Light
## 1402         Extra Grande           Colas Light      Coca-Cola Light
## 1403         Extra Grande           Colas Light      Coca-Cola Light
## 1404         Extra Grande           Colas Light      Coca-Cola Light
## 1405         Extra Grande           Colas Light      Coca-Cola Light
## 1406         Extra Grande           Colas Light       Coca-Cola Zero
## 1407         Extra Grande           Colas Light       Coca-Cola Zero
## 1408         Extra Grande           Colas Light       Coca-Cola Zero
## 1409         Extra Grande           Colas Light       Coca-Cola Zero
## 1410         Extra Grande           Colas Light       Coca-Cola Zero
## 1411         Extra Grande         Colas Regular            Coca-Cola
## 1412         Extra Grande         Colas Regular            Coca-Cola
## 1413         Extra Grande         Colas Regular            Coca-Cola
## 1414         Extra Grande         Colas Regular            Coca-Cola
## 1415         Extra Grande         Colas Regular            Coca-Cola
## 1416         Extra Grande         Colas Regular            Coca-Cola
## 1417         Extra Grande         Colas Regular            Coca-Cola
## 1418         Extra Grande         Colas Regular            Coca-Cola
## 1419         Extra Grande         Colas Regular            Coca-Cola
## 1420         Extra Grande         Colas Regular            Coca-Cola
## 1421         Extra Grande         Colas Regular            Coca-Cola
## 1422         Extra Grande         Colas Regular            Coca-Cola
## 1423         Extra Grande         Colas Regular            Coca-Cola
## 1424         Extra Grande         Colas Regular            Coca-Cola
## 1425         Extra Grande         Colas Regular            Coca-Cola
## 1426         Extra Grande         Colas Regular            Coca-Cola
## 1427         Extra Grande         Colas Regular            Coca-Cola
## 1428         Extra Grande Isot\x97nicos Regular             Powerade
## 1429         Extra Grande Isot\x97nicos Regular             Powerade
## 1430         Extra Grande Isot\x97nicos Regular             Powerade
## 1431         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1432         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1433         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1434         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1435         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1436         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1437         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1438         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1439         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1440         Extra Grande         Sabores Light          Sprite Zero
## 1441         Extra Grande       Sabores Regular     Del Valle y Nada
## 1442         Extra Grande       Sabores Regular                Fanta
## 1443         Extra Grande       Sabores Regular                Fanta
## 1444         Extra Grande       Sabores Regular                Fanta
## 1445         Extra Grande       Sabores Regular                Fanta
## 1446         Extra Grande       Sabores Regular                Fanta
## 1447         Extra Grande       Sabores Regular                Fanta
## 1448         Extra Grande       Sabores Regular                Fanta
## 1449         Extra Grande       Sabores Regular               Fresca
## 1450         Extra Grande       Sabores Regular               Fresca
## 1451         Extra Grande       Sabores Regular               Fresca
## 1452         Extra Grande       Sabores Regular               Fresca
## 1453         Extra Grande       Sabores Regular               Fresca
## 1454         Extra Grande       Sabores Regular               Fresca
## 1455         Extra Grande       Sabores Regular               Fresca
## 1456         Extra Grande       Sabores Regular         Manzana Lift
## 1457         Extra Grande       Sabores Regular         Manzana Lift
## 1458         Extra Grande       Sabores Regular         Manzana Lift
## 1459         Extra Grande       Sabores Regular         Manzana Lift
## 1460         Extra Grande       Sabores Regular         Manzana Lift
## 1461         Extra Grande       Sabores Regular         Manzana Lift
## 1462         Extra Grande       Sabores Regular               Senzao
## 1463         Extra Grande       Sabores Regular        Sidral Mundet
## 1464         Extra Grande       Sabores Regular        Sidral Mundet
## 1465         Extra Grande       Sabores Regular        Sidral Mundet
## 1466         Extra Grande       Sabores Regular        Sidral Mundet
## 1467         Extra Grande       Sabores Regular        Sidral Mundet
## 1468         Extra Grande       Sabores Regular        Sidral Mundet
## 1469         Extra Grande       Sabores Regular        Sidral Mundet
## 1470         Extra Grande       Sabores Regular               Sprite
## 1471         Extra Grande       Sabores Regular               Sprite
## 1472         Extra Grande       Sabores Regular               Sprite
## 1473         Extra Grande       Sabores Regular               Sprite
## 1474         Extra Grande       Sabores Regular               Sprite
## 1475         Extra Grande       Sabores Regular               Sprite
## 1476         Extra Grande       Sabores Regular               Sprite
## 1477         Extra Grande       Sabores Regular               Sprite
## 1478         Extra Grande           T\x8e Light       Fuze Tea Light
## 1479         Extra Grande         T\x8e Regular             Fuze Tea
## 1480         Extra Grande         T\x8e Regular             Fuze Tea
## 1481         Extra Grande         T\x8e Regular             Fuze Tea
## 1482         Extra Grande         T\x8e Regular             Fuze Tea
## 1483         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1484         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1485         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1486         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1487         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1488         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1489         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1490         Extra Grande       Agua Saborizada          Ciel Exprim
## 1491         Extra Grande       Agua Saborizada      Ciel Saborizada
## 1492         Extra Grande      Bebidas de Fruta               Bebere
## 1493         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1494         Extra Grande      Bebidas de Fruta               Frutsi
## 1495         Extra Grande      Bebidas de Fruta                Pulpy
## 1496         Extra Grande      Bebidas de Fruta           Valle Frut
## 1497         Extra Grande      Bebidas de Fruta           Valle Frut
## 1498         Extra Grande      Bebidas de Fruta           Valle Frut
## 1499         Extra Grande      Bebidas de Fruta           Valle Frut
## 1500         Extra Grande   Bebidas Energeticas                 Burn
## 1501         Extra Grande   Bebidas Energeticas                 Burn
## 1502         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1503         Extra Grande           Colas Light      Coca-Cola Light
## 1504         Extra Grande           Colas Light      Coca-Cola Light
## 1505         Extra Grande           Colas Light      Coca-Cola Light
## 1506         Extra Grande           Colas Light      Coca-Cola Light
## 1507         Extra Grande           Colas Light      Coca-Cola Light
## 1508         Extra Grande           Colas Light      Coca-Cola Light
## 1509         Extra Grande           Colas Light      Coca-Cola Light
## 1510         Extra Grande           Colas Light       Coca-Cola Zero
## 1511         Extra Grande           Colas Light       Coca-Cola Zero
## 1512         Extra Grande           Colas Light       Coca-Cola Zero
## 1513         Extra Grande         Colas Regular            Coca-Cola
## 1514         Extra Grande         Colas Regular            Coca-Cola
## 1515         Extra Grande         Colas Regular            Coca-Cola
## 1516         Extra Grande         Colas Regular            Coca-Cola
## 1517         Extra Grande         Colas Regular            Coca-Cola
## 1518         Extra Grande         Colas Regular            Coca-Cola
## 1519         Extra Grande         Colas Regular            Coca-Cola
## 1520         Extra Grande         Colas Regular            Coca-Cola
## 1521         Extra Grande         Colas Regular            Coca-Cola
## 1522         Extra Grande         Colas Regular            Coca-Cola
## 1523         Extra Grande         Colas Regular            Coca-Cola
## 1524         Extra Grande         Colas Regular            Coca-Cola
## 1525         Extra Grande         Colas Regular            Coca-Cola
## 1526         Extra Grande         Colas Regular            Coca-Cola
## 1527         Extra Grande         Colas Regular            Coca-Cola
## 1528         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 1529         Extra Grande Isot\x97nicos Regular             Powerade
## 1530         Extra Grande Isot\x97nicos Regular             Powerade
## 1531         Extra Grande Isot\x97nicos Regular             Powerade
## 1532         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1533         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1534         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1535         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1536         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1537         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1538         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1539         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1540         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1541         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1542         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1543         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1544         Extra Grande         Sabores Light          Sprite Zero
## 1545         Extra Grande       Sabores Regular     Del Valle y Nada
## 1546         Extra Grande       Sabores Regular                Fanta
## 1547         Extra Grande       Sabores Regular                Fanta
## 1548         Extra Grande       Sabores Regular                Fanta
## 1549         Extra Grande       Sabores Regular                Fanta
## 1550         Extra Grande       Sabores Regular                Fanta
## 1551         Extra Grande       Sabores Regular                Fanta
## 1552         Extra Grande       Sabores Regular               Fresca
## 1553         Extra Grande       Sabores Regular               Fresca
## 1554         Extra Grande       Sabores Regular               Fresca
## 1555         Extra Grande       Sabores Regular               Fresca
## 1556         Extra Grande       Sabores Regular               Fresca
## 1557         Extra Grande       Sabores Regular               Fresca
## 1558         Extra Grande       Sabores Regular         Manzana Lift
## 1559         Extra Grande       Sabores Regular         Manzana Lift
## 1560         Extra Grande       Sabores Regular         Manzana Lift
## 1561         Extra Grande       Sabores Regular         Manzana Lift
## 1562         Extra Grande       Sabores Regular         Manzana Lift
## 1563         Extra Grande       Sabores Regular               Senzao
## 1564         Extra Grande       Sabores Regular        Sidral Mundet
## 1565         Extra Grande       Sabores Regular        Sidral Mundet
## 1566         Extra Grande       Sabores Regular        Sidral Mundet
## 1567         Extra Grande       Sabores Regular        Sidral Mundet
## 1568         Extra Grande       Sabores Regular        Sidral Mundet
## 1569         Extra Grande       Sabores Regular        Sidral Mundet
## 1570         Extra Grande       Sabores Regular               Sprite
## 1571         Extra Grande       Sabores Regular               Sprite
## 1572         Extra Grande       Sabores Regular               Sprite
## 1573         Extra Grande       Sabores Regular               Sprite
## 1574         Extra Grande       Sabores Regular               Sprite
## 1575         Extra Grande       Sabores Regular               Sprite
## 1576         Extra Grande         T\x8e Regular             Fuze Tea
## 1577         Extra Grande         T\x8e Regular             Fuze Tea
## 1578         Extra Grande         T\x8e Regular             Fuze Tea
## 1579         Extra Grande         T\x8e Regular             Fuze Tea
## 1580         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1581         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1582         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1583         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1584         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1585         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1586         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1587         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1588         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1589         Extra Grande       Agua Saborizada          Ciel Exprim
## 1590         Extra Grande       Agua Saborizada            Ciel Mini
## 1591         Extra Grande       Agua Saborizada      Ciel Saborizada
## 1592         Extra Grande      Bebidas de Fruta               Bebere
## 1593         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1594         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1595         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1596         Extra Grande      Bebidas de Fruta               Frutsi
## 1597         Extra Grande      Bebidas de Fruta                Pulpy
## 1598         Extra Grande      Bebidas de Fruta           Valle Frut
## 1599         Extra Grande      Bebidas de Fruta           Valle Frut
## 1600         Extra Grande      Bebidas de Fruta           Valle Frut
## 1601         Extra Grande      Bebidas de Fruta           Valle Frut
## 1602         Extra Grande      Bebidas de Fruta           Valle Frut
## 1603         Extra Grande   Bebidas Energeticas                 Burn
## 1604         Extra Grande   Bebidas Energeticas                 Burn
## 1605         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1606         Extra Grande           Colas Light       Coca-Cola Life
## 1607         Extra Grande           Colas Light      Coca-Cola Light
## 1608         Extra Grande           Colas Light      Coca-Cola Light
## 1609         Extra Grande           Colas Light       Coca-Cola Zero
## 1610         Extra Grande         Colas Regular            Coca-Cola
## 1611         Extra Grande         Colas Regular            Coca-Cola
## 1612         Extra Grande         Colas Regular            Coca-Cola
## 1613         Extra Grande         Colas Regular            Coca-Cola
## 1614         Extra Grande         Colas Regular            Coca-Cola
## 1615         Extra Grande         Colas Regular            Coca-Cola
## 1616         Extra Grande         Colas Regular            Coca-Cola
## 1617         Extra Grande         Colas Regular            Coca-Cola
## 1618         Extra Grande         Colas Regular            Coca-Cola
## 1619         Extra Grande         Colas Regular            Coca-Cola
## 1620         Extra Grande         Colas Regular            Coca-Cola
## 1621         Extra Grande         Colas Regular            Coca-Cola
## 1622         Extra Grande         Colas Regular            Coca-Cola
## 1623         Extra Grande         Colas Regular            Coca-Cola
## 1624         Extra Grande         Colas Regular            Coca-Cola
## 1625         Extra Grande         Colas Regular            Coca-Cola
## 1626         Extra Grande         Colas Regular            Coca-Cola
## 1627         Extra Grande         Colas Regular            Coca-Cola
## 1628         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 1629         Extra Grande Isot\x97nicos Regular             Powerade
## 1630         Extra Grande Isot\x97nicos Regular             Powerade
## 1631         Extra Grande Isot\x97nicos Regular             Powerade
## 1632         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1633         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1634         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1635         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1636         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1637         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1638         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1639         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1640         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1641         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1642         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1643         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1644         Extra Grande       Sabores Regular     Del Valle y Nada
## 1645         Extra Grande       Sabores Regular     Del Valle y Nada
## 1646         Extra Grande       Sabores Regular                Fanta
## 1647         Extra Grande       Sabores Regular                Fanta
## 1648         Extra Grande       Sabores Regular                Fanta
## 1649         Extra Grande       Sabores Regular                Fanta
## 1650         Extra Grande       Sabores Regular                Fanta
## 1651         Extra Grande       Sabores Regular                Fanta
## 1652         Extra Grande       Sabores Regular                Fanta
## 1653         Extra Grande       Sabores Regular                Fanta
## 1654         Extra Grande       Sabores Regular                Fanta
## 1655         Extra Grande       Sabores Regular                Fanta
## 1656         Extra Grande       Sabores Regular               Fresca
## 1657         Extra Grande       Sabores Regular               Fresca
## 1658         Extra Grande       Sabores Regular               Fresca
## 1659         Extra Grande       Sabores Regular               Fresca
## 1660         Extra Grande       Sabores Regular               Fresca
## 1661         Extra Grande       Sabores Regular               Fresca
## 1662         Extra Grande       Sabores Regular               Fresca
## 1663         Extra Grande       Sabores Regular               Fresca
## 1664         Extra Grande       Sabores Regular               Fresca
## 1665         Extra Grande       Sabores Regular               Fresca
## 1666         Extra Grande       Sabores Regular               Fresca
## 1667         Extra Grande       Sabores Regular         Manzana Lift
## 1668         Extra Grande       Sabores Regular         Manzana Lift
## 1669         Extra Grande       Sabores Regular         Manzana Lift
## 1670         Extra Grande       Sabores Regular         Manzana Lift
## 1671         Extra Grande       Sabores Regular         Manzana Lift
## 1672         Extra Grande       Sabores Regular         Manzana Lift
## 1673         Extra Grande       Sabores Regular         Manzana Lift
## 1674         Extra Grande       Sabores Regular         Manzana Lift
## 1675         Extra Grande       Sabores Regular               Senzao
## 1676         Extra Grande       Sabores Regular        Sidral Mundet
## 1677         Extra Grande       Sabores Regular        Sidral Mundet
## 1678         Extra Grande       Sabores Regular        Sidral Mundet
## 1679         Extra Grande       Sabores Regular        Sidral Mundet
## 1680         Extra Grande       Sabores Regular        Sidral Mundet
## 1681         Extra Grande       Sabores Regular        Sidral Mundet
## 1682         Extra Grande       Sabores Regular        Sidral Mundet
## 1683         Extra Grande       Sabores Regular               Sprite
## 1684         Extra Grande       Sabores Regular               Sprite
## 1685         Extra Grande       Sabores Regular               Sprite
## 1686         Extra Grande       Sabores Regular               Sprite
## 1687         Extra Grande       Sabores Regular               Sprite
## 1688         Extra Grande       Sabores Regular               Sprite
## 1689         Extra Grande       Sabores Regular               Sprite
## 1690         Extra Grande       Sabores Regular               Sprite
## 1691         Extra Grande       Sabores Regular               Sprite
## 1692         Extra Grande       Sabores Regular               Sprite
## 1693         Extra Grande       Sabores Regular               Sprite
## 1694         Extra Grande         T\x8e Regular             Fuze Tea
## 1695         Extra Grande         T\x8e Regular             Fuze Tea
## 1696         Extra Grande         T\x8e Regular             Fuze Tea
## 1697         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1698         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1699         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1700         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1701         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1702         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1703         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1704         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1705         Extra Grande       Agua Saborizada          Ciel Exprim
## 1706         Extra Grande       Agua Saborizada            Ciel Mini
## 1707         Extra Grande       Agua Saborizada      Ciel Saborizada
## 1708         Extra Grande      Bebidas de Fruta               Bebere
## 1709         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1710         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1711         Extra Grande      Bebidas de Fruta               Frutsi
## 1712         Extra Grande      Bebidas de Fruta                Pulpy
## 1713         Extra Grande      Bebidas de Fruta           Valle Frut
## 1714         Extra Grande      Bebidas de Fruta           Valle Frut
## 1715         Extra Grande      Bebidas de Fruta           Valle Frut
## 1716         Extra Grande      Bebidas de Fruta           Valle Frut
## 1717         Extra Grande      Bebidas de Fruta           Valle Frut
## 1718         Extra Grande      Bebidas de Fruta           Valle Frut
## 1719         Extra Grande   Bebidas Energeticas                 Burn
## 1720         Extra Grande   Bebidas Energeticas                 Burn
## 1721         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1722         Extra Grande           Colas Light       Coca-Cola Life
## 1723         Extra Grande           Colas Light       Coca-Cola Life
## 1724         Extra Grande           Colas Light       Coca-Cola Life
## 1725         Extra Grande           Colas Light       Coca-Cola Life
## 1726         Extra Grande           Colas Light      Coca-Cola Light
## 1727         Extra Grande           Colas Light      Coca-Cola Light
## 1728         Extra Grande           Colas Light      Coca-Cola Light
## 1729         Extra Grande           Colas Light      Coca-Cola Light
## 1730         Extra Grande           Colas Light      Coca-Cola Light
## 1731         Extra Grande           Colas Light      Coca-Cola Light
## 1732         Extra Grande           Colas Light      Coca-Cola Light
## 1733         Extra Grande           Colas Light      Coca-Cola Light
## 1734         Extra Grande           Colas Light      Coca-Cola Light
## 1735         Extra Grande           Colas Light       Coca-Cola Zero
## 1736         Extra Grande           Colas Light       Coca-Cola Zero
## 1737         Extra Grande           Colas Light       Coca-Cola Zero
## 1738         Extra Grande           Colas Light       Coca-Cola Zero
## 1739         Extra Grande           Colas Light       Coca-Cola Zero
## 1740         Extra Grande         Colas Regular            Coca-Cola
## 1741         Extra Grande         Colas Regular            Coca-Cola
## 1742         Extra Grande         Colas Regular            Coca-Cola
## 1743         Extra Grande         Colas Regular            Coca-Cola
## 1744         Extra Grande         Colas Regular            Coca-Cola
## 1745         Extra Grande         Colas Regular            Coca-Cola
## 1746         Extra Grande         Colas Regular            Coca-Cola
## 1747         Extra Grande         Colas Regular            Coca-Cola
## 1748         Extra Grande         Colas Regular            Coca-Cola
## 1749         Extra Grande         Colas Regular            Coca-Cola
## 1750         Extra Grande         Colas Regular            Coca-Cola
## 1751         Extra Grande         Colas Regular            Coca-Cola
## 1752         Extra Grande         Colas Regular            Coca-Cola
## 1753         Extra Grande         Colas Regular            Coca-Cola
## 1754         Extra Grande         Colas Regular            Coca-Cola
## 1755         Extra Grande         Colas Regular            Coca-Cola
## 1756         Extra Grande         Colas Regular            Coca-Cola
## 1757         Extra Grande         Colas Regular            Coca-Cola
## 1758         Extra Grande         Colas Regular            Coca-Cola
## 1759         Extra Grande         Colas Regular            Coca-Cola
## 1760         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 1761         Extra Grande Isot\x97nicos Regular             Powerade
## 1762         Extra Grande Isot\x97nicos Regular             Powerade
## 1763         Extra Grande Isot\x97nicos Regular             Powerade
## 1764         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1765         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1766         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1767         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1768         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1769         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1770         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1771         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1772         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1773         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1774         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1775         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1776         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1777         Extra Grande         Sabores Light          Sprite Zero
## 1778         Extra Grande       Sabores Regular     Del Valle y Nada
## 1779         Extra Grande       Sabores Regular     Del Valle y Nada
## 1780         Extra Grande       Sabores Regular                Fanta
## 1781         Extra Grande       Sabores Regular                Fanta
## 1782         Extra Grande       Sabores Regular                Fanta
## 1783         Extra Grande       Sabores Regular                Fanta
## 1784         Extra Grande       Sabores Regular                Fanta
## 1785         Extra Grande       Sabores Regular                Fanta
## 1786         Extra Grande       Sabores Regular                Fanta
## 1787         Extra Grande       Sabores Regular                Fanta
## 1788         Extra Grande       Sabores Regular               Fresca
## 1789         Extra Grande       Sabores Regular               Fresca
## 1790         Extra Grande       Sabores Regular               Fresca
## 1791         Extra Grande       Sabores Regular               Fresca
## 1792         Extra Grande       Sabores Regular               Fresca
## 1793         Extra Grande       Sabores Regular               Fresca
## 1794         Extra Grande       Sabores Regular         Manzana Lift
## 1795         Extra Grande       Sabores Regular         Manzana Lift
## 1796         Extra Grande       Sabores Regular         Manzana Lift
## 1797         Extra Grande       Sabores Regular         Manzana Lift
## 1798         Extra Grande       Sabores Regular         Manzana Lift
## 1799         Extra Grande       Sabores Regular         Manzana Lift
## 1800         Extra Grande       Sabores Regular         Manzana Lift
## 1801         Extra Grande       Sabores Regular               Senzao
## 1802         Extra Grande       Sabores Regular        Sidral Mundet
## 1803         Extra Grande       Sabores Regular        Sidral Mundet
## 1804         Extra Grande       Sabores Regular        Sidral Mundet
## 1805         Extra Grande       Sabores Regular        Sidral Mundet
## 1806         Extra Grande       Sabores Regular        Sidral Mundet
## 1807         Extra Grande       Sabores Regular        Sidral Mundet
## 1808         Extra Grande       Sabores Regular               Sprite
## 1809         Extra Grande       Sabores Regular               Sprite
## 1810         Extra Grande       Sabores Regular               Sprite
## 1811         Extra Grande       Sabores Regular               Sprite
## 1812         Extra Grande       Sabores Regular               Sprite
## 1813         Extra Grande       Sabores Regular               Sprite
## 1814         Extra Grande       Sabores Regular               Sprite
## 1815         Extra Grande       Sabores Regular               Sprite
## 1816         Extra Grande       Sabores Regular               Sprite
## 1817         Extra Grande       Sabores Regular               Sprite
## 1818         Extra Grande       Sabores Regular               Sprite
## 1819         Extra Grande           T\x8e Light       Fuze Tea Light
## 1820         Extra Grande         T\x8e Regular             Fuze Tea
## 1821         Extra Grande         T\x8e Regular             Fuze Tea
## 1822         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1823         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1824         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1825         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1826         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1827         Extra Grande       Agua Saborizada            Ciel Mini
## 1828         Extra Grande       Agua Saborizada      Ciel Saborizada
## 1829         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1830         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1831         Extra Grande      Bebidas de Fruta               Frutsi
## 1832         Extra Grande      Bebidas de Fruta                Pulpy
## 1833         Extra Grande      Bebidas de Fruta           Valle Frut
## 1834         Extra Grande      Bebidas de Fruta           Valle Frut
## 1835         Extra Grande      Bebidas de Fruta           Valle Frut
## 1836         Extra Grande      Bebidas de Fruta           Valle Frut
## 1837         Extra Grande           Colas Light       Coca-Cola Life
## 1838         Extra Grande           Colas Light       Coca-Cola Life
## 1839         Extra Grande           Colas Light      Coca-Cola Light
## 1840         Extra Grande           Colas Light      Coca-Cola Light
## 1841         Extra Grande           Colas Light      Coca-Cola Light
## 1842         Extra Grande           Colas Light      Coca-Cola Light
## 1843         Extra Grande           Colas Light      Coca-Cola Light
## 1844         Extra Grande           Colas Light      Coca-Cola Light
## 1845         Extra Grande           Colas Light      Coca-Cola Light
## 1846         Extra Grande           Colas Light      Coca-Cola Light
## 1847         Extra Grande           Colas Light      Coca-Cola Light
## 1848         Extra Grande           Colas Light      Coca-Cola Light
## 1849         Extra Grande           Colas Light       Coca-Cola Zero
## 1850         Extra Grande           Colas Light       Coca-Cola Zero
## 1851         Extra Grande           Colas Light       Coca-Cola Zero
## 1852         Extra Grande           Colas Light       Coca-Cola Zero
## 1853         Extra Grande         Colas Regular            Coca-Cola
## 1854         Extra Grande         Colas Regular            Coca-Cola
## 1855         Extra Grande         Colas Regular            Coca-Cola
## 1856         Extra Grande         Colas Regular            Coca-Cola
## 1857         Extra Grande         Colas Regular            Coca-Cola
## 1858         Extra Grande         Colas Regular            Coca-Cola
## 1859         Extra Grande         Colas Regular            Coca-Cola
## 1860         Extra Grande         Colas Regular            Coca-Cola
## 1861         Extra Grande         Colas Regular            Coca-Cola
## 1862         Extra Grande         Colas Regular            Coca-Cola
## 1863         Extra Grande         Colas Regular            Coca-Cola
## 1864         Extra Grande         Colas Regular            Coca-Cola
## 1865         Extra Grande         Colas Regular            Coca-Cola
## 1866         Extra Grande         Colas Regular            Coca-Cola
## 1867         Extra Grande         Colas Regular            Coca-Cola
## 1868         Extra Grande         Colas Regular            Coca-Cola
## 1869         Extra Grande Isot\x97nicos Regular             Powerade
## 1870         Extra Grande Isot\x97nicos Regular             Powerade
## 1871         Extra Grande Isot\x97nicos Regular             Powerade
## 1872         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1873         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1874         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1875         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1876         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1877         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1878         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1879         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1880         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1881         Extra Grande         Sabores Light          Sprite Zero
## 1882         Extra Grande       Sabores Regular     Del Valle y Nada
## 1883         Extra Grande       Sabores Regular     Del Valle y Nada
## 1884         Extra Grande       Sabores Regular                Fanta
## 1885         Extra Grande       Sabores Regular                Fanta
## 1886         Extra Grande       Sabores Regular                Fanta
## 1887         Extra Grande       Sabores Regular                Fanta
## 1888         Extra Grande       Sabores Regular                Fanta
## 1889         Extra Grande       Sabores Regular                Fanta
## 1890         Extra Grande       Sabores Regular                Fanta
## 1891         Extra Grande       Sabores Regular                Fanta
## 1892         Extra Grande       Sabores Regular               Fresca
## 1893         Extra Grande       Sabores Regular               Fresca
## 1894         Extra Grande       Sabores Regular               Fresca
## 1895         Extra Grande       Sabores Regular               Fresca
## 1896         Extra Grande       Sabores Regular               Fresca
## 1897         Extra Grande       Sabores Regular               Fresca
## 1898         Extra Grande       Sabores Regular               Fresca
## 1899         Extra Grande       Sabores Regular         Manzana Lift
## 1900         Extra Grande       Sabores Regular         Manzana Lift
## 1901         Extra Grande       Sabores Regular         Manzana Lift
## 1902         Extra Grande       Sabores Regular         Manzana Lift
## 1903         Extra Grande       Sabores Regular         Manzana Lift
## 1904         Extra Grande       Sabores Regular               Senzao
## 1905         Extra Grande       Sabores Regular        Sidral Mundet
## 1906         Extra Grande       Sabores Regular        Sidral Mundet
## 1907         Extra Grande       Sabores Regular        Sidral Mundet
## 1908         Extra Grande       Sabores Regular        Sidral Mundet
## 1909         Extra Grande       Sabores Regular        Sidral Mundet
## 1910         Extra Grande       Sabores Regular        Sidral Mundet
## 1911         Extra Grande       Sabores Regular        Sidral Mundet
## 1912         Extra Grande       Sabores Regular               Sprite
## 1913         Extra Grande       Sabores Regular               Sprite
## 1914         Extra Grande       Sabores Regular               Sprite
## 1915         Extra Grande       Sabores Regular               Sprite
## 1916         Extra Grande       Sabores Regular               Sprite
## 1917         Extra Grande       Sabores Regular               Sprite
## 1918         Extra Grande       Sabores Regular               Sprite
## 1919         Extra Grande       Sabores Regular               Sprite
## 1920         Extra Grande       Sabores Regular               Sprite
## 1921         Extra Grande         T\x8e Regular             Fuze Tea
## 1922         Extra Grande         T\x8e Regular             Fuze Tea
## 1923         Extra Grande          Agua Mineral    Ciel Mineralizada
## 1924         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1925         Extra Grande          Agua Mineral      Topo Chico A.M.
## 1926         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1927         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1928         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1929         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1930         Extra Grande       Agua Purificada Ciel Agua Purificada
## 1931         Extra Grande       Agua Saborizada            Ciel Mini
## 1932         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1933         Extra Grande      Bebidas de Fruta       Delaware Punch
## 1934         Extra Grande      Bebidas de Fruta               Frutsi
## 1935         Extra Grande      Bebidas de Fruta                Pulpy
## 1936         Extra Grande      Bebidas de Fruta           Valle Frut
## 1937         Extra Grande      Bebidas de Fruta           Valle Frut
## 1938         Extra Grande      Bebidas de Fruta           Valle Frut
## 1939         Extra Grande      Bebidas de Fruta           Valle Frut
## 1940         Extra Grande      Bebidas de Fruta           Valle Frut
## 1941         Extra Grande   Bebidas Energeticas                 Burn
## 1942         Extra Grande   Bebidas Energeticas                 Burn
## 1943         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 1944         Extra Grande           Colas Light      Coca-Cola Light
## 1945         Extra Grande           Colas Light      Coca-Cola Light
## 1946         Extra Grande           Colas Light      Coca-Cola Light
## 1947         Extra Grande         Colas Regular            Coca-Cola
## 1948         Extra Grande         Colas Regular            Coca-Cola
## 1949         Extra Grande         Colas Regular            Coca-Cola
## 1950         Extra Grande         Colas Regular            Coca-Cola
## 1951         Extra Grande         Colas Regular            Coca-Cola
## 1952         Extra Grande         Colas Regular            Coca-Cola
## 1953         Extra Grande         Colas Regular            Coca-Cola
## 1954         Extra Grande         Colas Regular            Coca-Cola
## 1955         Extra Grande         Colas Regular            Coca-Cola
## 1956         Extra Grande         Colas Regular            Coca-Cola
## 1957         Extra Grande         Colas Regular            Coca-Cola
## 1958         Extra Grande         Colas Regular            Coca-Cola
## 1959         Extra Grande         Colas Regular            Coca-Cola
## 1960         Extra Grande         Colas Regular            Coca-Cola
## 1961         Extra Grande         Colas Regular            Coca-Cola
## 1962         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 1963         Extra Grande Isot\x97nicos Regular             Powerade
## 1964         Extra Grande Isot\x97nicos Regular             Powerade
## 1965         Extra Grande Isot\x97nicos Regular             Powerade
## 1966         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1967         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1968         Extra Grande   Jugos y N\x8ectares            Del Valle
## 1969         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 1970         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1971         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 1972         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 1973         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 1974         Extra Grande     Leche UHT Regular    Santa Clara Light
## 1975         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 1976         Extra Grande         Sabores Light    Manzana Lift Zero
## 1977         Extra Grande       Sabores Regular     Del Valle y Nada
## 1978         Extra Grande       Sabores Regular                Fanta
## 1979         Extra Grande       Sabores Regular                Fanta
## 1980         Extra Grande       Sabores Regular                Fanta
## 1981         Extra Grande       Sabores Regular                Fanta
## 1982         Extra Grande       Sabores Regular                Fanta
## 1983         Extra Grande       Sabores Regular                Fanta
## 1984         Extra Grande       Sabores Regular                Fanta
## 1985         Extra Grande       Sabores Regular                Fanta
## 1986         Extra Grande       Sabores Regular                Fanta
## 1987         Extra Grande       Sabores Regular                Fanta
## 1988         Extra Grande       Sabores Regular               Fresca
## 1989         Extra Grande       Sabores Regular               Fresca
## 1990         Extra Grande       Sabores Regular               Fresca
## 1991         Extra Grande       Sabores Regular               Fresca
## 1992         Extra Grande       Sabores Regular               Fresca
## 1993         Extra Grande       Sabores Regular               Fresca
## 1994         Extra Grande       Sabores Regular               Fresca
## 1995         Extra Grande       Sabores Regular               Fresca
## 1996         Extra Grande       Sabores Regular               Fresca
## 1997         Extra Grande       Sabores Regular               Fresca
## 1998         Extra Grande       Sabores Regular         Manzana Lift
## 1999         Extra Grande       Sabores Regular         Manzana Lift
## 2000         Extra Grande       Sabores Regular         Manzana Lift
## 2001         Extra Grande       Sabores Regular         Manzana Lift
## 2002         Extra Grande       Sabores Regular         Manzana Lift
## 2003         Extra Grande       Sabores Regular         Manzana Lift
## 2004         Extra Grande       Sabores Regular         Manzana Lift
## 2005         Extra Grande       Sabores Regular         Manzana Lift
## 2006         Extra Grande       Sabores Regular               Senzao
## 2007         Extra Grande       Sabores Regular        Sidral Mundet
## 2008         Extra Grande       Sabores Regular        Sidral Mundet
## 2009         Extra Grande       Sabores Regular        Sidral Mundet
## 2010         Extra Grande       Sabores Regular        Sidral Mundet
## 2011         Extra Grande       Sabores Regular               Sprite
## 2012         Extra Grande       Sabores Regular               Sprite
## 2013         Extra Grande       Sabores Regular               Sprite
## 2014         Extra Grande       Sabores Regular               Sprite
## 2015         Extra Grande       Sabores Regular               Sprite
## 2016         Extra Grande       Sabores Regular               Sprite
## 2017         Extra Grande       Sabores Regular               Sprite
## 2018         Extra Grande       Sabores Regular               Sprite
## 2019         Extra Grande       Sabores Regular               Sprite
## 2020         Extra Grande       Sabores Regular               Sprite
## 2021         Extra Grande         T\x8e Regular             Fuze Tea
## 2022         Extra Grande         T\x8e Regular             Fuze Tea
## 2023         Extra Grande         T\x8e Regular             Fuze Tea
## 2024         Extra Grande         T\x8e Regular             Fuze Tea
## 2025         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2026         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2027         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2028         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2029         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2030         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2031         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2032         Extra Grande       Agua Saborizada          Ciel Exprim
## 2033         Extra Grande       Agua Saborizada            Ciel Mini
## 2034         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2035         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2036         Extra Grande      Bebidas de Fruta               Bebere
## 2037         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2038         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2039         Extra Grande      Bebidas de Fruta               Frutsi
## 2040         Extra Grande      Bebidas de Fruta                Pulpy
## 2041         Extra Grande      Bebidas de Fruta           Valle Frut
## 2042         Extra Grande      Bebidas de Fruta           Valle Frut
## 2043         Extra Grande      Bebidas de Fruta           Valle Frut
## 2044         Extra Grande      Bebidas de Fruta           Valle Frut
## 2045         Extra Grande      Bebidas de Fruta           Valle Frut
## 2046         Extra Grande   Bebidas Energeticas                 Burn
## 2047         Extra Grande   Bebidas Energeticas                 Burn
## 2048         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2049         Extra Grande           Colas Light       Coca-Cola Life
## 2050         Extra Grande           Colas Light       Coca-Cola Life
## 2051         Extra Grande           Colas Light       Coca-Cola Life
## 2052         Extra Grande           Colas Light      Coca-Cola Light
## 2053         Extra Grande           Colas Light      Coca-Cola Light
## 2054         Extra Grande           Colas Light      Coca-Cola Light
## 2055         Extra Grande           Colas Light      Coca-Cola Light
## 2056         Extra Grande           Colas Light      Coca-Cola Light
## 2057         Extra Grande           Colas Light      Coca-Cola Light
## 2058         Extra Grande           Colas Light      Coca-Cola Light
## 2059         Extra Grande           Colas Light      Coca-Cola Light
## 2060         Extra Grande           Colas Light       Coca-Cola Zero
## 2061         Extra Grande           Colas Light       Coca-Cola Zero
## 2062         Extra Grande           Colas Light       Coca-Cola Zero
## 2063         Extra Grande           Colas Light       Coca-Cola Zero
## 2064         Extra Grande         Colas Regular            Coca-Cola
## 2065         Extra Grande         Colas Regular            Coca-Cola
## 2066         Extra Grande         Colas Regular            Coca-Cola
## 2067         Extra Grande         Colas Regular            Coca-Cola
## 2068         Extra Grande         Colas Regular            Coca-Cola
## 2069         Extra Grande         Colas Regular            Coca-Cola
## 2070         Extra Grande         Colas Regular            Coca-Cola
## 2071         Extra Grande         Colas Regular            Coca-Cola
## 2072         Extra Grande         Colas Regular            Coca-Cola
## 2073         Extra Grande         Colas Regular            Coca-Cola
## 2074         Extra Grande         Colas Regular            Coca-Cola
## 2075         Extra Grande         Colas Regular            Coca-Cola
## 2076         Extra Grande         Colas Regular            Coca-Cola
## 2077         Extra Grande         Colas Regular            Coca-Cola
## 2078         Extra Grande         Colas Regular            Coca-Cola
## 2079         Extra Grande         Colas Regular            Coca-Cola
## 2080         Extra Grande         Colas Regular            Coca-Cola
## 2081         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2082         Extra Grande Isot\x97nicos Regular             Powerade
## 2083         Extra Grande Isot\x97nicos Regular             Powerade
## 2084         Extra Grande Isot\x97nicos Regular             Powerade
## 2085         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2086         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2087         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2088         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2089         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2090         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2091         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2092         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2093         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 2094         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 2095         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 2096         Extra Grande     Leche UHT Regular    Santa Clara Light
## 2097         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2098         Extra Grande         Sabores Light          Sprite Zero
## 2099         Extra Grande       Sabores Regular     Del Valle y Nada
## 2100         Extra Grande       Sabores Regular     Del Valle y Nada
## 2101         Extra Grande       Sabores Regular     Del Valle y Nada
## 2102         Extra Grande       Sabores Regular                Fanta
## 2103         Extra Grande       Sabores Regular                Fanta
## 2104         Extra Grande       Sabores Regular                Fanta
## 2105         Extra Grande       Sabores Regular                Fanta
## 2106         Extra Grande       Sabores Regular                Fanta
## 2107         Extra Grande       Sabores Regular                Fanta
## 2108         Extra Grande       Sabores Regular                Fanta
## 2109         Extra Grande       Sabores Regular                Fanta
## 2110         Extra Grande       Sabores Regular                Fanta
## 2111         Extra Grande       Sabores Regular                Fanta
## 2112         Extra Grande       Sabores Regular               Fresca
## 2113         Extra Grande       Sabores Regular               Fresca
## 2114         Extra Grande       Sabores Regular               Fresca
## 2115         Extra Grande       Sabores Regular               Fresca
## 2116         Extra Grande       Sabores Regular               Fresca
## 2117         Extra Grande       Sabores Regular               Fresca
## 2118         Extra Grande       Sabores Regular               Fresca
## 2119         Extra Grande       Sabores Regular               Fresca
## 2120         Extra Grande       Sabores Regular               Fresca
## 2121         Extra Grande       Sabores Regular               Fresca
## 2122         Extra Grande       Sabores Regular         Manzana Lift
## 2123         Extra Grande       Sabores Regular         Manzana Lift
## 2124         Extra Grande       Sabores Regular         Manzana Lift
## 2125         Extra Grande       Sabores Regular         Manzana Lift
## 2126         Extra Grande       Sabores Regular         Manzana Lift
## 2127         Extra Grande       Sabores Regular         Manzana Lift
## 2128         Extra Grande       Sabores Regular         Manzana Lift
## 2129         Extra Grande       Sabores Regular         Manzana Lift
## 2130         Extra Grande       Sabores Regular               Senzao
## 2131         Extra Grande       Sabores Regular        Sidral Mundet
## 2132         Extra Grande       Sabores Regular        Sidral Mundet
## 2133         Extra Grande       Sabores Regular        Sidral Mundet
## 2134         Extra Grande       Sabores Regular        Sidral Mundet
## 2135         Extra Grande       Sabores Regular        Sidral Mundet
## 2136         Extra Grande       Sabores Regular        Sidral Mundet
## 2137         Extra Grande       Sabores Regular        Sidral Mundet
## 2138         Extra Grande       Sabores Regular               Sprite
## 2139         Extra Grande       Sabores Regular               Sprite
## 2140         Extra Grande       Sabores Regular               Sprite
## 2141         Extra Grande       Sabores Regular               Sprite
## 2142         Extra Grande       Sabores Regular               Sprite
## 2143         Extra Grande       Sabores Regular               Sprite
## 2144         Extra Grande       Sabores Regular               Sprite
## 2145         Extra Grande       Sabores Regular               Sprite
## 2146         Extra Grande       Sabores Regular               Sprite
## 2147         Extra Grande       Sabores Regular               Sprite
## 2148         Extra Grande       Sabores Regular               Sprite
## 2149         Extra Grande         T\x8e Regular             Fuze Tea
## 2150         Extra Grande         T\x8e Regular             Fuze Tea
## 2151         Extra Grande         T\x8e Regular             Fuze Tea
## 2152         Extra Grande         T\x8e Regular             Fuze Tea
## 2153         Extra Grande         T\x8e Regular             Fuze Tea
## 2154         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2155         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2156         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2157         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2158         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2159         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2160         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2161         Extra Grande       Agua Saborizada            Ciel Mini
## 2162         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2163         Extra Grande      Bebidas de Fruta               Frutsi
## 2164         Extra Grande      Bebidas de Fruta           Valle Frut
## 2165         Extra Grande      Bebidas de Fruta           Valle Frut
## 2166         Extra Grande      Bebidas de Fruta           Valle Frut
## 2167         Extra Grande   Bebidas Energeticas                 Burn
## 2168         Extra Grande           Colas Light      Coca-Cola Light
## 2169         Extra Grande           Colas Light      Coca-Cola Light
## 2170         Extra Grande           Colas Light      Coca-Cola Light
## 2171         Extra Grande           Colas Light      Coca-Cola Light
## 2172         Extra Grande         Colas Regular            Coca-Cola
## 2173         Extra Grande         Colas Regular            Coca-Cola
## 2174         Extra Grande         Colas Regular            Coca-Cola
## 2175         Extra Grande         Colas Regular            Coca-Cola
## 2176         Extra Grande         Colas Regular            Coca-Cola
## 2177         Extra Grande         Colas Regular            Coca-Cola
## 2178         Extra Grande         Colas Regular            Coca-Cola
## 2179         Extra Grande         Colas Regular            Coca-Cola
## 2180         Extra Grande         Colas Regular            Coca-Cola
## 2181         Extra Grande         Colas Regular            Coca-Cola
## 2182         Extra Grande         Colas Regular            Coca-Cola
## 2183         Extra Grande         Colas Regular            Coca-Cola
## 2184         Extra Grande         Colas Regular            Coca-Cola
## 2185         Extra Grande         Colas Regular            Coca-Cola
## 2186         Extra Grande         Colas Regular            Coca-Cola
## 2187         Extra Grande         Colas Regular            Coca-Cola
## 2188         Extra Grande         Colas Regular            Coca-Cola
## 2189         Extra Grande         Colas Regular            Coca-Cola
## 2190         Extra Grande Isot\x97nicos Regular             Powerade
## 2191         Extra Grande Isot\x97nicos Regular             Powerade
## 2192         Extra Grande Isot\x97nicos Regular             Powerade
## 2193         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2194         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2195         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2196         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2197         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2198         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2199         Extra Grande       Sabores Regular     Del Valle y Nada
## 2200         Extra Grande       Sabores Regular     Del Valle y Nada
## 2201         Extra Grande       Sabores Regular                Fanta
## 2202         Extra Grande       Sabores Regular                Fanta
## 2203         Extra Grande       Sabores Regular                Fanta
## 2204         Extra Grande       Sabores Regular                Fanta
## 2205         Extra Grande       Sabores Regular                Fanta
## 2206         Extra Grande       Sabores Regular                Fanta
## 2207         Extra Grande       Sabores Regular                Fanta
## 2208         Extra Grande       Sabores Regular                Fanta
## 2209         Extra Grande       Sabores Regular                Fanta
## 2210         Extra Grande       Sabores Regular               Fresca
## 2211         Extra Grande       Sabores Regular               Fresca
## 2212         Extra Grande       Sabores Regular               Fresca
## 2213         Extra Grande       Sabores Regular               Fresca
## 2214         Extra Grande       Sabores Regular               Fresca
## 2215         Extra Grande       Sabores Regular               Fresca
## 2216         Extra Grande       Sabores Regular               Fresca
## 2217         Extra Grande       Sabores Regular         Manzana Lift
## 2218         Extra Grande       Sabores Regular         Manzana Lift
## 2219         Extra Grande       Sabores Regular         Manzana Lift
## 2220         Extra Grande       Sabores Regular         Manzana Lift
## 2221         Extra Grande       Sabores Regular         Manzana Lift
## 2222         Extra Grande       Sabores Regular         Manzana Lift
## 2223         Extra Grande       Sabores Regular        Sidral Mundet
## 2224         Extra Grande       Sabores Regular        Sidral Mundet
## 2225         Extra Grande       Sabores Regular        Sidral Mundet
## 2226         Extra Grande       Sabores Regular               Sprite
## 2227         Extra Grande       Sabores Regular               Sprite
## 2228         Extra Grande       Sabores Regular               Sprite
## 2229         Extra Grande       Sabores Regular               Sprite
## 2230         Extra Grande       Sabores Regular               Sprite
## 2231         Extra Grande       Sabores Regular               Sprite
## 2232         Extra Grande       Sabores Regular               Sprite
## 2233         Extra Grande       Sabores Regular               Sprite
## 2234         Extra Grande         T\x8e Regular             Fuze Tea
## 2235         Extra Grande         T\x8e Regular             Fuze Tea
## 2236         Extra Grande         T\x8e Regular             Fuze Tea
## 2237         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2238         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2239         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2240         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2241         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2242         Extra Grande       Agua Saborizada            Ciel Mini
## 2243         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2244         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2245         Extra Grande      Bebidas de Fruta               Frutsi
## 2246         Extra Grande      Bebidas de Fruta                Pulpy
## 2247         Extra Grande      Bebidas de Fruta           Valle Frut
## 2248         Extra Grande      Bebidas de Fruta           Valle Frut
## 2249         Extra Grande      Bebidas de Fruta           Valle Frut
## 2250         Extra Grande           Colas Light      Coca-Cola Light
## 2251         Extra Grande           Colas Light      Coca-Cola Light
## 2252         Extra Grande           Colas Light      Coca-Cola Light
## 2253         Extra Grande         Colas Regular            Coca-Cola
## 2254         Extra Grande         Colas Regular            Coca-Cola
## 2255         Extra Grande         Colas Regular            Coca-Cola
## 2256         Extra Grande         Colas Regular            Coca-Cola
## 2257         Extra Grande         Colas Regular            Coca-Cola
## 2258         Extra Grande         Colas Regular            Coca-Cola
## 2259         Extra Grande         Colas Regular            Coca-Cola
## 2260         Extra Grande         Colas Regular            Coca-Cola
## 2261         Extra Grande         Colas Regular            Coca-Cola
## 2262         Extra Grande         Colas Regular            Coca-Cola
## 2263         Extra Grande         Colas Regular            Coca-Cola
## 2264         Extra Grande         Colas Regular            Coca-Cola
## 2265         Extra Grande         Colas Regular            Coca-Cola
## 2266         Extra Grande         Colas Regular            Coca-Cola
## 2267         Extra Grande Isot\x97nicos Regular             Powerade
## 2268         Extra Grande Isot\x97nicos Regular             Powerade
## 2269         Extra Grande Isot\x97nicos Regular             Powerade
## 2270         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2271         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2272         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2273         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2274         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2275         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 2276         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2277         Extra Grande       Sabores Regular     Del Valle y Nada
## 2278         Extra Grande       Sabores Regular                Fanta
## 2279         Extra Grande       Sabores Regular                Fanta
## 2280         Extra Grande       Sabores Regular                Fanta
## 2281         Extra Grande       Sabores Regular                Fanta
## 2282         Extra Grande       Sabores Regular                Fanta
## 2283         Extra Grande       Sabores Regular               Fresca
## 2284         Extra Grande       Sabores Regular               Fresca
## 2285         Extra Grande       Sabores Regular               Fresca
## 2286         Extra Grande       Sabores Regular               Fresca
## 2287         Extra Grande       Sabores Regular         Manzana Lift
## 2288         Extra Grande       Sabores Regular         Manzana Lift
## 2289         Extra Grande       Sabores Regular         Manzana Lift
## 2290         Extra Grande       Sabores Regular               Senzao
## 2291         Extra Grande       Sabores Regular        Sidral Mundet
## 2292         Extra Grande       Sabores Regular        Sidral Mundet
## 2293         Extra Grande       Sabores Regular        Sidral Mundet
## 2294         Extra Grande       Sabores Regular        Sidral Mundet
## 2295         Extra Grande       Sabores Regular        Sidral Mundet
## 2296         Extra Grande       Sabores Regular               Sprite
## 2297         Extra Grande       Sabores Regular               Sprite
## 2298         Extra Grande       Sabores Regular               Sprite
## 2299         Extra Grande       Sabores Regular               Sprite
## 2300         Extra Grande       Sabores Regular               Sprite
## 2301         Extra Grande       Sabores Regular               Sprite
## 2302         Extra Grande         T\x8e Regular             Fuze Tea
## 2303         Extra Grande         T\x8e Regular             Fuze Tea
## 2304         Extra Grande         T\x8e Regular             Fuze Tea
## 2305         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2306         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2307         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2308         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2309         Extra Grande       Agua Saborizada          Ciel Exprim
## 2310         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2311         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2312         Extra Grande      Bebidas de Fruta               Bebere
## 2313         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2314         Extra Grande      Bebidas de Fruta               Frutsi
## 2315         Extra Grande      Bebidas de Fruta                Pulpy
## 2316         Extra Grande      Bebidas de Fruta           Valle Frut
## 2317         Extra Grande      Bebidas de Fruta           Valle Frut
## 2318         Extra Grande      Bebidas de Fruta           Valle Frut
## 2319         Extra Grande      Bebidas de Fruta           Valle Frut
## 2320         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2321         Extra Grande           Colas Light       Coca-Cola Life
## 2322         Extra Grande           Colas Light      Coca-Cola Light
## 2323         Extra Grande           Colas Light      Coca-Cola Light
## 2324         Extra Grande           Colas Light      Coca-Cola Light
## 2325         Extra Grande           Colas Light      Coca-Cola Light
## 2326         Extra Grande           Colas Light      Coca-Cola Light
## 2327         Extra Grande           Colas Light      Coca-Cola Light
## 2328         Extra Grande           Colas Light       Coca-Cola Zero
## 2329         Extra Grande           Colas Light       Coca-Cola Zero
## 2330         Extra Grande           Colas Light       Coca-Cola Zero
## 2331         Extra Grande           Colas Light       Coca-Cola Zero
## 2332         Extra Grande         Colas Regular            Coca-Cola
## 2333         Extra Grande         Colas Regular            Coca-Cola
## 2334         Extra Grande         Colas Regular            Coca-Cola
## 2335         Extra Grande         Colas Regular            Coca-Cola
## 2336         Extra Grande         Colas Regular            Coca-Cola
## 2337         Extra Grande         Colas Regular            Coca-Cola
## 2338         Extra Grande         Colas Regular            Coca-Cola
## 2339         Extra Grande         Colas Regular            Coca-Cola
## 2340         Extra Grande         Colas Regular            Coca-Cola
## 2341         Extra Grande         Colas Regular            Coca-Cola
## 2342         Extra Grande         Colas Regular            Coca-Cola
## 2343         Extra Grande         Colas Regular            Coca-Cola
## 2344         Extra Grande         Colas Regular            Coca-Cola
## 2345         Extra Grande         Colas Regular            Coca-Cola
## 2346         Extra Grande Isot\x97nicos Regular             Powerade
## 2347         Extra Grande Isot\x97nicos Regular             Powerade
## 2348         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2349         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2350         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2351         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2352         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2353         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2354         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2355         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2356         Extra Grande         Sabores Light          Sprite Zero
## 2357         Extra Grande       Sabores Regular     Del Valle y Nada
## 2358         Extra Grande       Sabores Regular     Del Valle y Nada
## 2359         Extra Grande       Sabores Regular                Fanta
## 2360         Extra Grande       Sabores Regular                Fanta
## 2361         Extra Grande       Sabores Regular                Fanta
## 2362         Extra Grande       Sabores Regular                Fanta
## 2363         Extra Grande       Sabores Regular                Fanta
## 2364         Extra Grande       Sabores Regular                Fanta
## 2365         Extra Grande       Sabores Regular               Fresca
## 2366         Extra Grande       Sabores Regular               Fresca
## 2367         Extra Grande       Sabores Regular               Fresca
## 2368         Extra Grande       Sabores Regular               Fresca
## 2369         Extra Grande       Sabores Regular               Fresca
## 2370         Extra Grande       Sabores Regular         Manzana Lift
## 2371         Extra Grande       Sabores Regular         Manzana Lift
## 2372         Extra Grande       Sabores Regular         Manzana Lift
## 2373         Extra Grande       Sabores Regular         Manzana Lift
## 2374         Extra Grande       Sabores Regular        Sidral Mundet
## 2375         Extra Grande       Sabores Regular        Sidral Mundet
## 2376         Extra Grande       Sabores Regular        Sidral Mundet
## 2377         Extra Grande       Sabores Regular               Sprite
## 2378         Extra Grande       Sabores Regular               Sprite
## 2379         Extra Grande       Sabores Regular               Sprite
## 2380         Extra Grande       Sabores Regular               Sprite
## 2381         Extra Grande       Sabores Regular               Sprite
## 2382         Extra Grande       Sabores Regular               Sprite
## 2383         Extra Grande       Sabores Regular               Sprite
## 2384         Extra Grande       Sabores Regular               Sprite
## 2385         Extra Grande         T\x8e Regular             Fuze Tea
## 2386         Extra Grande         T\x8e Regular             Fuze Tea
## 2387         Extra Grande         T\x8e Regular             Fuze Tea
## 2388         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2389         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2390         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2391         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2392         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2393         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2394         Extra Grande       Agua Saborizada          Ciel Exprim
## 2395         Extra Grande       Agua Saborizada            Ciel Mini
## 2396         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2397         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2398         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2399         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2400         Extra Grande      Bebidas de Fruta               Frutsi
## 2401         Extra Grande      Bebidas de Fruta                Pulpy
## 2402         Extra Grande      Bebidas de Fruta           Valle Frut
## 2403         Extra Grande      Bebidas de Fruta           Valle Frut
## 2404         Extra Grande      Bebidas de Fruta           Valle Frut
## 2405         Extra Grande      Bebidas de Fruta           Valle Frut
## 2406         Extra Grande      Bebidas de Fruta           Valle Frut
## 2407         Extra Grande   Bebidas Energeticas                 Burn
## 2408         Extra Grande   Bebidas Energeticas                 Burn
## 2409         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2410         Extra Grande           Colas Light       Coca-Cola Life
## 2411         Extra Grande           Colas Light       Coca-Cola Life
## 2412         Extra Grande           Colas Light       Coca-Cola Life
## 2413         Extra Grande           Colas Light      Coca-Cola Light
## 2414         Extra Grande           Colas Light      Coca-Cola Light
## 2415         Extra Grande           Colas Light      Coca-Cola Light
## 2416         Extra Grande           Colas Light      Coca-Cola Light
## 2417         Extra Grande           Colas Light      Coca-Cola Light
## 2418         Extra Grande           Colas Light      Coca-Cola Light
## 2419         Extra Grande           Colas Light       Coca-Cola Zero
## 2420         Extra Grande           Colas Light       Coca-Cola Zero
## 2421         Extra Grande           Colas Light       Coca-Cola Zero
## 2422         Extra Grande           Colas Light       Coca-Cola Zero
## 2423         Extra Grande         Colas Regular            Coca-Cola
## 2424         Extra Grande         Colas Regular            Coca-Cola
## 2425         Extra Grande         Colas Regular            Coca-Cola
## 2426         Extra Grande         Colas Regular            Coca-Cola
## 2427         Extra Grande         Colas Regular            Coca-Cola
## 2428         Extra Grande         Colas Regular            Coca-Cola
## 2429         Extra Grande         Colas Regular            Coca-Cola
## 2430         Extra Grande         Colas Regular            Coca-Cola
## 2431         Extra Grande         Colas Regular            Coca-Cola
## 2432         Extra Grande         Colas Regular            Coca-Cola
## 2433         Extra Grande         Colas Regular            Coca-Cola
## 2434         Extra Grande         Colas Regular            Coca-Cola
## 2435         Extra Grande         Colas Regular            Coca-Cola
## 2436         Extra Grande         Colas Regular            Coca-Cola
## 2437         Extra Grande         Colas Regular            Coca-Cola
## 2438         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2439         Extra Grande Isot\x97nicos Regular             Powerade
## 2440         Extra Grande Isot\x97nicos Regular             Powerade
## 2441         Extra Grande Isot\x97nicos Regular             Powerade
## 2442         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2443         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2444         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2445         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2446         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2447         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2448         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 2449         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 2450         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 2451         Extra Grande     Leche UHT Regular    Santa Clara Light
## 2452         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2453         Extra Grande         Sabores Light          Sprite Zero
## 2454         Extra Grande       Sabores Regular     Del Valle y Nada
## 2455         Extra Grande       Sabores Regular     Del Valle y Nada
## 2456         Extra Grande       Sabores Regular                Fanta
## 2457         Extra Grande       Sabores Regular                Fanta
## 2458         Extra Grande       Sabores Regular                Fanta
## 2459         Extra Grande       Sabores Regular                Fanta
## 2460         Extra Grande       Sabores Regular                Fanta
## 2461         Extra Grande       Sabores Regular                Fanta
## 2462         Extra Grande       Sabores Regular                Fanta
## 2463         Extra Grande       Sabores Regular                Fanta
## 2464         Extra Grande       Sabores Regular                Fanta
## 2465         Extra Grande       Sabores Regular               Fresca
## 2466         Extra Grande       Sabores Regular               Fresca
## 2467         Extra Grande       Sabores Regular               Fresca
## 2468         Extra Grande       Sabores Regular               Fresca
## 2469         Extra Grande       Sabores Regular               Fresca
## 2470         Extra Grande       Sabores Regular               Fresca
## 2471         Extra Grande       Sabores Regular               Fresca
## 2472         Extra Grande       Sabores Regular               Fresca
## 2473         Extra Grande       Sabores Regular               Fresca
## 2474         Extra Grande       Sabores Regular         Manzana Lift
## 2475         Extra Grande       Sabores Regular         Manzana Lift
## 2476         Extra Grande       Sabores Regular         Manzana Lift
## 2477         Extra Grande       Sabores Regular         Manzana Lift
## 2478         Extra Grande       Sabores Regular         Manzana Lift
## 2479         Extra Grande       Sabores Regular         Manzana Lift
## 2480         Extra Grande       Sabores Regular               Senzao
## 2481         Extra Grande       Sabores Regular        Sidral Mundet
## 2482         Extra Grande       Sabores Regular        Sidral Mundet
## 2483         Extra Grande       Sabores Regular        Sidral Mundet
## 2484         Extra Grande       Sabores Regular        Sidral Mundet
## 2485         Extra Grande       Sabores Regular        Sidral Mundet
## 2486         Extra Grande       Sabores Regular        Sidral Mundet
## 2487         Extra Grande       Sabores Regular               Sprite
## 2488         Extra Grande       Sabores Regular               Sprite
## 2489         Extra Grande       Sabores Regular               Sprite
## 2490         Extra Grande       Sabores Regular               Sprite
## 2491         Extra Grande       Sabores Regular               Sprite
## 2492         Extra Grande       Sabores Regular               Sprite
## 2493         Extra Grande       Sabores Regular               Sprite
## 2494         Extra Grande       Sabores Regular               Sprite
## 2495         Extra Grande       Sabores Regular               Sprite
## 2496         Extra Grande       Sabores Regular               Sprite
## 2497         Extra Grande         T\x8e Regular             Fuze Tea
## 2498         Extra Grande         T\x8e Regular             Fuze Tea
## 2499         Extra Grande         T\x8e Regular             Fuze Tea
## 2500         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2501         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2502         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2503         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2504         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2505         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2506         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2507         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2508         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2509         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2510         Extra Grande       Agua Saborizada          Ciel Exprim
## 2511         Extra Grande       Agua Saborizada          Ciel Exprim
## 2512         Extra Grande       Agua Saborizada            Ciel Mini
## 2513         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2514         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2515         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2516         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2517         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2518         Extra Grande      Bebidas de Fruta               Frutsi
## 2519         Extra Grande      Bebidas de Fruta                Pulpy
## 2520         Extra Grande      Bebidas de Fruta           Valle Frut
## 2521         Extra Grande      Bebidas de Fruta           Valle Frut
## 2522         Extra Grande      Bebidas de Fruta           Valle Frut
## 2523         Extra Grande      Bebidas de Fruta           Valle Frut
## 2524         Extra Grande      Bebidas de Fruta           Valle Frut
## 2525         Extra Grande   Bebidas Energeticas                 Burn
## 2526         Extra Grande   Bebidas Energeticas                 Burn
## 2527         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2528         Extra Grande           Colas Light       Coca-Cola Life
## 2529         Extra Grande           Colas Light       Coca-Cola Life
## 2530         Extra Grande           Colas Light      Coca-Cola Light
## 2531         Extra Grande           Colas Light      Coca-Cola Light
## 2532         Extra Grande           Colas Light      Coca-Cola Light
## 2533         Extra Grande           Colas Light      Coca-Cola Light
## 2534         Extra Grande           Colas Light      Coca-Cola Light
## 2535         Extra Grande           Colas Light      Coca-Cola Light
## 2536         Extra Grande           Colas Light       Coca-Cola Zero
## 2537         Extra Grande           Colas Light       Coca-Cola Zero
## 2538         Extra Grande           Colas Light       Coca-Cola Zero
## 2539         Extra Grande           Colas Light       Coca-Cola Zero
## 2540         Extra Grande           Colas Light       Coca-Cola Zero
## 2541         Extra Grande         Colas Regular            Coca-Cola
## 2542         Extra Grande         Colas Regular            Coca-Cola
## 2543         Extra Grande         Colas Regular            Coca-Cola
## 2544         Extra Grande         Colas Regular            Coca-Cola
## 2545         Extra Grande         Colas Regular            Coca-Cola
## 2546         Extra Grande         Colas Regular            Coca-Cola
## 2547         Extra Grande         Colas Regular            Coca-Cola
## 2548         Extra Grande         Colas Regular            Coca-Cola
## 2549         Extra Grande         Colas Regular            Coca-Cola
## 2550         Extra Grande         Colas Regular            Coca-Cola
## 2551         Extra Grande         Colas Regular            Coca-Cola
## 2552         Extra Grande         Colas Regular            Coca-Cola
## 2553         Extra Grande         Colas Regular            Coca-Cola
## 2554         Extra Grande         Colas Regular            Coca-Cola
## 2555         Extra Grande         Colas Regular            Coca-Cola
## 2556         Extra Grande         Colas Regular            Coca-Cola
## 2557         Extra Grande         Colas Regular            Coca-Cola
## 2558         Extra Grande         Colas Regular            Coca-Cola
## 2559         Extra Grande         Colas Regular            Coca-Cola
## 2560         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2561         Extra Grande Isot\x97nicos Regular             Powerade
## 2562         Extra Grande Isot\x97nicos Regular             Powerade
## 2563         Extra Grande Isot\x97nicos Regular             Powerade
## 2564         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2565         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2566         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2567         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2568         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2569         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2570         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2571         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2572         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2573         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2574         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 2575         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2576         Extra Grande         Sabores Light    Manzana Lift Zero
## 2577         Extra Grande         Sabores Light          Sprite Zero
## 2578         Extra Grande       Sabores Regular     Del Valle y Nada
## 2579         Extra Grande       Sabores Regular     Del Valle y Nada
## 2580         Extra Grande       Sabores Regular     Del Valle y Nada
## 2581         Extra Grande       Sabores Regular                Fanta
## 2582         Extra Grande       Sabores Regular                Fanta
## 2583         Extra Grande       Sabores Regular                Fanta
## 2584         Extra Grande       Sabores Regular                Fanta
## 2585         Extra Grande       Sabores Regular                Fanta
## 2586         Extra Grande       Sabores Regular                Fanta
## 2587         Extra Grande       Sabores Regular                Fanta
## 2588         Extra Grande       Sabores Regular                Fanta
## 2589         Extra Grande       Sabores Regular                Fanta
## 2590         Extra Grande       Sabores Regular                Fanta
## 2591         Extra Grande       Sabores Regular                Fanta
## 2592         Extra Grande       Sabores Regular               Fresca
## 2593         Extra Grande       Sabores Regular               Fresca
## 2594         Extra Grande       Sabores Regular               Fresca
## 2595         Extra Grande       Sabores Regular               Fresca
## 2596         Extra Grande       Sabores Regular               Fresca
## 2597         Extra Grande       Sabores Regular               Fresca
## 2598         Extra Grande       Sabores Regular               Fresca
## 2599         Extra Grande       Sabores Regular               Fresca
## 2600         Extra Grande       Sabores Regular               Fresca
## 2601         Extra Grande       Sabores Regular               Fresca
## 2602         Extra Grande       Sabores Regular               Fresca
## 2603         Extra Grande       Sabores Regular         Manzana Lift
## 2604         Extra Grande       Sabores Regular         Manzana Lift
## 2605         Extra Grande       Sabores Regular         Manzana Lift
## 2606         Extra Grande       Sabores Regular         Manzana Lift
## 2607         Extra Grande       Sabores Regular         Manzana Lift
## 2608         Extra Grande       Sabores Regular         Manzana Lift
## 2609         Extra Grande       Sabores Regular         Manzana Lift
## 2610         Extra Grande       Sabores Regular         Manzana Lift
## 2611         Extra Grande       Sabores Regular         Manzana Lift
## 2612         Extra Grande       Sabores Regular               Senzao
## 2613         Extra Grande       Sabores Regular        Sidral Mundet
## 2614         Extra Grande       Sabores Regular        Sidral Mundet
## 2615         Extra Grande       Sabores Regular        Sidral Mundet
## 2616         Extra Grande       Sabores Regular        Sidral Mundet
## 2617         Extra Grande       Sabores Regular        Sidral Mundet
## 2618         Extra Grande       Sabores Regular        Sidral Mundet
## 2619         Extra Grande       Sabores Regular        Sidral Mundet
## 2620         Extra Grande       Sabores Regular               Sprite
## 2621         Extra Grande       Sabores Regular               Sprite
## 2622         Extra Grande       Sabores Regular               Sprite
## 2623         Extra Grande       Sabores Regular               Sprite
## 2624         Extra Grande       Sabores Regular               Sprite
## 2625         Extra Grande       Sabores Regular               Sprite
## 2626         Extra Grande       Sabores Regular               Sprite
## 2627         Extra Grande       Sabores Regular               Sprite
## 2628         Extra Grande       Sabores Regular               Sprite
## 2629         Extra Grande       Sabores Regular               Sprite
## 2630         Extra Grande       Sabores Regular               Sprite
## 2631         Extra Grande         T\x8e Regular             Fuze Tea
## 2632         Extra Grande         T\x8e Regular             Fuze Tea
## 2633         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2634         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2635         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2636         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2637         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2638         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2639         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2640         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2641         Extra Grande       Agua Saborizada          Ciel Exprim
## 2642         Extra Grande       Agua Saborizada          Ciel Exprim
## 2643         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2644         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2645         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2646         Extra Grande      Bebidas de Fruta               Frutsi
## 2647         Extra Grande      Bebidas de Fruta                Pulpy
## 2648         Extra Grande      Bebidas de Fruta           Valle Frut
## 2649         Extra Grande      Bebidas de Fruta           Valle Frut
## 2650         Extra Grande      Bebidas de Fruta           Valle Frut
## 2651         Extra Grande      Bebidas de Fruta           Valle Frut
## 2652         Extra Grande      Bebidas de Fruta           Valle Frut
## 2653         Extra Grande   Bebidas Energeticas                 Burn
## 2654         Extra Grande           Colas Light       Coca-Cola Life
## 2655         Extra Grande           Colas Light       Coca-Cola Life
## 2656         Extra Grande           Colas Light       Coca-Cola Life
## 2657         Extra Grande           Colas Light       Coca-Cola Life
## 2658         Extra Grande           Colas Light       Coca-Cola Life
## 2659         Extra Grande           Colas Light      Coca-Cola Light
## 2660         Extra Grande           Colas Light      Coca-Cola Light
## 2661         Extra Grande           Colas Light      Coca-Cola Light
## 2662         Extra Grande           Colas Light      Coca-Cola Light
## 2663         Extra Grande           Colas Light      Coca-Cola Light
## 2664         Extra Grande           Colas Light      Coca-Cola Light
## 2665         Extra Grande           Colas Light       Coca-Cola Zero
## 2666         Extra Grande           Colas Light       Coca-Cola Zero
## 2667         Extra Grande           Colas Light       Coca-Cola Zero
## 2668         Extra Grande           Colas Light       Coca-Cola Zero
## 2669         Extra Grande         Colas Regular            Coca-Cola
## 2670         Extra Grande         Colas Regular            Coca-Cola
## 2671         Extra Grande         Colas Regular            Coca-Cola
## 2672         Extra Grande         Colas Regular            Coca-Cola
## 2673         Extra Grande         Colas Regular            Coca-Cola
## 2674         Extra Grande         Colas Regular            Coca-Cola
## 2675         Extra Grande         Colas Regular            Coca-Cola
## 2676         Extra Grande         Colas Regular            Coca-Cola
## 2677         Extra Grande         Colas Regular            Coca-Cola
## 2678         Extra Grande         Colas Regular            Coca-Cola
## 2679         Extra Grande         Colas Regular            Coca-Cola
## 2680         Extra Grande         Colas Regular            Coca-Cola
## 2681         Extra Grande         Colas Regular            Coca-Cola
## 2682         Extra Grande         Colas Regular            Coca-Cola
## 2683         Extra Grande         Colas Regular            Coca-Cola
## 2684         Extra Grande         Colas Regular            Coca-Cola
## 2685         Extra Grande         Colas Regular            Coca-Cola
## 2686         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2687         Extra Grande Isot\x97nicos Regular             Powerade
## 2688         Extra Grande Isot\x97nicos Regular             Powerade
## 2689         Extra Grande Isot\x97nicos Regular             Powerade
## 2690         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2691         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2692         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2693         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2694         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2695         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2696         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 2697         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2698         Extra Grande         Sabores Light          Sprite Zero
## 2699         Extra Grande       Sabores Regular     Del Valle y Nada
## 2700         Extra Grande       Sabores Regular     Del Valle y Nada
## 2701         Extra Grande       Sabores Regular     Del Valle y Nada
## 2702         Extra Grande       Sabores Regular                Fanta
## 2703         Extra Grande       Sabores Regular                Fanta
## 2704         Extra Grande       Sabores Regular                Fanta
## 2705         Extra Grande       Sabores Regular                Fanta
## 2706         Extra Grande       Sabores Regular                Fanta
## 2707         Extra Grande       Sabores Regular                Fanta
## 2708         Extra Grande       Sabores Regular                Fanta
## 2709         Extra Grande       Sabores Regular                Fanta
## 2710         Extra Grande       Sabores Regular                Fanta
## 2711         Extra Grande       Sabores Regular                Fanta
## 2712         Extra Grande       Sabores Regular               Fresca
## 2713         Extra Grande       Sabores Regular               Fresca
## 2714         Extra Grande       Sabores Regular               Fresca
## 2715         Extra Grande       Sabores Regular               Fresca
## 2716         Extra Grande       Sabores Regular               Fresca
## 2717         Extra Grande       Sabores Regular               Fresca
## 2718         Extra Grande       Sabores Regular               Fresca
## 2719         Extra Grande       Sabores Regular               Fresca
## 2720         Extra Grande       Sabores Regular         Manzana Lift
## 2721         Extra Grande       Sabores Regular         Manzana Lift
## 2722         Extra Grande       Sabores Regular         Manzana Lift
## 2723         Extra Grande       Sabores Regular         Manzana Lift
## 2724         Extra Grande       Sabores Regular         Manzana Lift
## 2725         Extra Grande       Sabores Regular         Manzana Lift
## 2726         Extra Grande       Sabores Regular         Manzana Lift
## 2727         Extra Grande       Sabores Regular         Manzana Lift
## 2728         Extra Grande       Sabores Regular         Manzana Lift
## 2729         Extra Grande       Sabores Regular               Senzao
## 2730         Extra Grande       Sabores Regular        Sidral Mundet
## 2731         Extra Grande       Sabores Regular        Sidral Mundet
## 2732         Extra Grande       Sabores Regular        Sidral Mundet
## 2733         Extra Grande       Sabores Regular        Sidral Mundet
## 2734         Extra Grande       Sabores Regular        Sidral Mundet
## 2735         Extra Grande       Sabores Regular        Sidral Mundet
## 2736         Extra Grande       Sabores Regular               Sprite
## 2737         Extra Grande       Sabores Regular               Sprite
## 2738         Extra Grande       Sabores Regular               Sprite
## 2739         Extra Grande       Sabores Regular               Sprite
## 2740         Extra Grande       Sabores Regular               Sprite
## 2741         Extra Grande       Sabores Regular               Sprite
## 2742         Extra Grande       Sabores Regular               Sprite
## 2743         Extra Grande       Sabores Regular               Sprite
## 2744         Extra Grande       Sabores Regular               Sprite
## 2745         Extra Grande       Sabores Regular               Sprite
## 2746         Extra Grande         T\x8e Regular             Fuze Tea
## 2747         Extra Grande         T\x8e Regular             Fuze Tea
## 2748         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2749         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2750         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2751         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2752         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2753         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2754         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2755         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2756         Extra Grande       Agua Saborizada          Ciel Exprim
## 2757         Extra Grande       Agua Saborizada            Ciel Mini
## 2758         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2759         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2760         Extra Grande      Bebidas de Fruta               Frutsi
## 2761         Extra Grande      Bebidas de Fruta                Pulpy
## 2762         Extra Grande      Bebidas de Fruta           Valle Frut
## 2763         Extra Grande      Bebidas de Fruta           Valle Frut
## 2764         Extra Grande      Bebidas de Fruta           Valle Frut
## 2765         Extra Grande   Bebidas Energeticas                 Burn
## 2766         Extra Grande   Bebidas Energeticas                 Burn
## 2767         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2768         Extra Grande           Colas Light      Coca-Cola Light
## 2769         Extra Grande           Colas Light      Coca-Cola Light
## 2770         Extra Grande         Colas Regular            Coca-Cola
## 2771         Extra Grande         Colas Regular            Coca-Cola
## 2772         Extra Grande         Colas Regular            Coca-Cola
## 2773         Extra Grande         Colas Regular            Coca-Cola
## 2774         Extra Grande         Colas Regular            Coca-Cola
## 2775         Extra Grande         Colas Regular            Coca-Cola
## 2776         Extra Grande         Colas Regular            Coca-Cola
## 2777         Extra Grande         Colas Regular            Coca-Cola
## 2778         Extra Grande         Colas Regular            Coca-Cola
## 2779         Extra Grande         Colas Regular            Coca-Cola
## 2780         Extra Grande         Colas Regular            Coca-Cola
## 2781         Extra Grande         Colas Regular            Coca-Cola
## 2782         Extra Grande         Colas Regular            Coca-Cola
## 2783         Extra Grande Isot\x97nicos Regular             Powerade
## 2784         Extra Grande Isot\x97nicos Regular             Powerade
## 2785         Extra Grande Isot\x97nicos Regular             Powerade
## 2786         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2787         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2788         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2789         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2790         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2791         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2792         Extra Grande         Sabores Light          Sprite Zero
## 2793         Extra Grande       Sabores Regular     Del Valle y Nada
## 2794         Extra Grande       Sabores Regular     Del Valle y Nada
## 2795         Extra Grande       Sabores Regular                Fanta
## 2796         Extra Grande       Sabores Regular                Fanta
## 2797         Extra Grande       Sabores Regular                Fanta
## 2798         Extra Grande       Sabores Regular                Fanta
## 2799         Extra Grande       Sabores Regular                Fanta
## 2800         Extra Grande       Sabores Regular                Fanta
## 2801         Extra Grande       Sabores Regular                Fanta
## 2802         Extra Grande       Sabores Regular               Fresca
## 2803         Extra Grande       Sabores Regular               Fresca
## 2804         Extra Grande       Sabores Regular               Fresca
## 2805         Extra Grande       Sabores Regular               Fresca
## 2806         Extra Grande       Sabores Regular               Fresca
## 2807         Extra Grande       Sabores Regular               Fresca
## 2808         Extra Grande       Sabores Regular               Fresca
## 2809         Extra Grande       Sabores Regular         Manzana Lift
## 2810         Extra Grande       Sabores Regular         Manzana Lift
## 2811         Extra Grande       Sabores Regular         Manzana Lift
## 2812         Extra Grande       Sabores Regular         Manzana Lift
## 2813         Extra Grande       Sabores Regular         Manzana Lift
## 2814         Extra Grande       Sabores Regular               Senzao
## 2815         Extra Grande       Sabores Regular        Sidral Mundet
## 2816         Extra Grande       Sabores Regular        Sidral Mundet
## 2817         Extra Grande       Sabores Regular        Sidral Mundet
## 2818         Extra Grande       Sabores Regular        Sidral Mundet
## 2819         Extra Grande       Sabores Regular               Sprite
## 2820         Extra Grande       Sabores Regular               Sprite
## 2821         Extra Grande       Sabores Regular               Sprite
## 2822         Extra Grande       Sabores Regular               Sprite
## 2823         Extra Grande       Sabores Regular               Sprite
## 2824         Extra Grande       Sabores Regular               Sprite
## 2825         Extra Grande       Sabores Regular               Sprite
## 2826         Extra Grande         T\x8e Regular             Fuze Tea
## 2827         Extra Grande         T\x8e Regular             Fuze Tea
## 2828         Extra Grande         T\x8e Regular             Fuze Tea
## 2829         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2830         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2831         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2832         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2833         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2834         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2835         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2836         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2837         Extra Grande       Agua Saborizada            Ciel Mini
## 2838         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2839         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2840         Extra Grande      Bebidas de Fruta               Frutsi
## 2841         Extra Grande      Bebidas de Fruta                Pulpy
## 2842         Extra Grande      Bebidas de Fruta           Valle Frut
## 2843         Extra Grande      Bebidas de Fruta           Valle Frut
## 2844         Extra Grande      Bebidas de Fruta           Valle Frut
## 2845         Extra Grande      Bebidas de Fruta           Valle Frut
## 2846         Extra Grande   Bebidas Energeticas                 Burn
## 2847         Extra Grande   Bebidas Energeticas                 Burn
## 2848         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2849         Extra Grande           Colas Light       Coca-Cola Life
## 2850         Extra Grande           Colas Light      Coca-Cola Light
## 2851         Extra Grande           Colas Light      Coca-Cola Light
## 2852         Extra Grande           Colas Light      Coca-Cola Light
## 2853         Extra Grande           Colas Light      Coca-Cola Light
## 2854         Extra Grande           Colas Light      Coca-Cola Light
## 2855         Extra Grande           Colas Light      Coca-Cola Light
## 2856         Extra Grande           Colas Light       Coca-Cola Zero
## 2857         Extra Grande           Colas Light       Coca-Cola Zero
## 2858         Extra Grande           Colas Light       Coca-Cola Zero
## 2859         Extra Grande           Colas Light       Coca-Cola Zero
## 2860         Extra Grande           Colas Light       Coca-Cola Zero
## 2861         Extra Grande         Colas Regular            Coca-Cola
## 2862         Extra Grande         Colas Regular            Coca-Cola
## 2863         Extra Grande         Colas Regular            Coca-Cola
## 2864         Extra Grande         Colas Regular            Coca-Cola
## 2865         Extra Grande         Colas Regular            Coca-Cola
## 2866         Extra Grande         Colas Regular            Coca-Cola
## 2867         Extra Grande         Colas Regular            Coca-Cola
## 2868         Extra Grande         Colas Regular            Coca-Cola
## 2869         Extra Grande         Colas Regular            Coca-Cola
## 2870         Extra Grande         Colas Regular            Coca-Cola
## 2871         Extra Grande         Colas Regular            Coca-Cola
## 2872         Extra Grande         Colas Regular            Coca-Cola
## 2873         Extra Grande         Colas Regular            Coca-Cola
## 2874         Extra Grande         Colas Regular            Coca-Cola
## 2875         Extra Grande         Colas Regular            Coca-Cola
## 2876         Extra Grande         Colas Regular            Coca-Cola
## 2877         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2878         Extra Grande Isot\x97nicos Regular             Powerade
## 2879         Extra Grande Isot\x97nicos Regular             Powerade
## 2880         Extra Grande Isot\x97nicos Regular             Powerade
## 2881         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2882         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2883         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2884         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2885         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2886         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 2887         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 2888         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 2889         Extra Grande         Sabores Light  Sidral Mundet Light
## 2890         Extra Grande       Sabores Regular     Del Valle y Nada
## 2891         Extra Grande       Sabores Regular     Del Valle y Nada
## 2892         Extra Grande       Sabores Regular                Fanta
## 2893         Extra Grande       Sabores Regular                Fanta
## 2894         Extra Grande       Sabores Regular                Fanta
## 2895         Extra Grande       Sabores Regular                Fanta
## 2896         Extra Grande       Sabores Regular                Fanta
## 2897         Extra Grande       Sabores Regular                Fanta
## 2898         Extra Grande       Sabores Regular                Fanta
## 2899         Extra Grande       Sabores Regular                Fanta
## 2900         Extra Grande       Sabores Regular                Fanta
## 2901         Extra Grande       Sabores Regular               Fresca
## 2902         Extra Grande       Sabores Regular               Fresca
## 2903         Extra Grande       Sabores Regular               Fresca
## 2904         Extra Grande       Sabores Regular               Fresca
## 2905         Extra Grande       Sabores Regular               Fresca
## 2906         Extra Grande       Sabores Regular               Fresca
## 2907         Extra Grande       Sabores Regular               Fresca
## 2908         Extra Grande       Sabores Regular               Fresca
## 2909         Extra Grande       Sabores Regular               Fresca
## 2910         Extra Grande       Sabores Regular         Manzana Lift
## 2911         Extra Grande       Sabores Regular         Manzana Lift
## 2912         Extra Grande       Sabores Regular         Manzana Lift
## 2913         Extra Grande       Sabores Regular         Manzana Lift
## 2914         Extra Grande       Sabores Regular         Manzana Lift
## 2915         Extra Grande       Sabores Regular         Manzana Lift
## 2916         Extra Grande       Sabores Regular               Senzao
## 2917         Extra Grande       Sabores Regular        Sidral Mundet
## 2918         Extra Grande       Sabores Regular        Sidral Mundet
## 2919         Extra Grande       Sabores Regular        Sidral Mundet
## 2920         Extra Grande       Sabores Regular        Sidral Mundet
## 2921         Extra Grande       Sabores Regular        Sidral Mundet
## 2922         Extra Grande       Sabores Regular               Sprite
## 2923         Extra Grande       Sabores Regular               Sprite
## 2924         Extra Grande       Sabores Regular               Sprite
## 2925         Extra Grande       Sabores Regular               Sprite
## 2926         Extra Grande       Sabores Regular               Sprite
## 2927         Extra Grande       Sabores Regular               Sprite
## 2928         Extra Grande       Sabores Regular               Sprite
## 2929         Extra Grande       Sabores Regular               Sprite
## 2930         Extra Grande       Sabores Regular               Sprite
## 2931         Extra Grande         T\x8e Regular             Fuze Tea
## 2932         Extra Grande         T\x8e Regular             Fuze Tea
## 2933         Extra Grande         T\x8e Regular             Fuze Tea
## 2934         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2935         Extra Grande          Agua Mineral    Ciel Mineralizada
## 2936         Extra Grande          Agua Mineral      Topo Chico A.M.
## 2937         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2938         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2939         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2940         Extra Grande       Agua Purificada Ciel Agua Purificada
## 2941         Extra Grande       Agua Saborizada          Ciel Exprim
## 2942         Extra Grande       Agua Saborizada          Ciel Exprim
## 2943         Extra Grande       Agua Saborizada          Ciel Exprim
## 2944         Extra Grande       Agua Saborizada            Ciel Mini
## 2945         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2946         Extra Grande       Agua Saborizada      Ciel Saborizada
## 2947         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2948         Extra Grande      Bebidas de Fruta       Delaware Punch
## 2949         Extra Grande      Bebidas de Fruta               Frutsi
## 2950         Extra Grande      Bebidas de Fruta                Pulpy
## 2951         Extra Grande      Bebidas de Fruta           Valle Frut
## 2952         Extra Grande      Bebidas de Fruta           Valle Frut
## 2953         Extra Grande      Bebidas de Fruta           Valle Frut
## 2954         Extra Grande      Bebidas de Fruta           Valle Frut
## 2955         Extra Grande      Bebidas de Fruta           Valle Frut
## 2956         Extra Grande   Bebidas Energeticas                 Burn
## 2957         Extra Grande   Bebidas Energeticas                 Burn
## 2958         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 2959         Extra Grande           Colas Light       Coca-Cola Life
## 2960         Extra Grande           Colas Light      Coca-Cola Light
## 2961         Extra Grande           Colas Light      Coca-Cola Light
## 2962         Extra Grande           Colas Light      Coca-Cola Light
## 2963         Extra Grande           Colas Light      Coca-Cola Light
## 2964         Extra Grande           Colas Light      Coca-Cola Light
## 2965         Extra Grande           Colas Light      Coca-Cola Light
## 2966         Extra Grande           Colas Light      Coca-Cola Light
## 2967         Extra Grande           Colas Light      Coca-Cola Light
## 2968         Extra Grande           Colas Light      Coca-Cola Light
## 2969         Extra Grande           Colas Light       Coca-Cola Zero
## 2970         Extra Grande           Colas Light       Coca-Cola Zero
## 2971         Extra Grande           Colas Light       Coca-Cola Zero
## 2972         Extra Grande           Colas Light       Coca-Cola Zero
## 2973         Extra Grande         Colas Regular            Coca-Cola
## 2974         Extra Grande         Colas Regular            Coca-Cola
## 2975         Extra Grande         Colas Regular            Coca-Cola
## 2976         Extra Grande         Colas Regular            Coca-Cola
## 2977         Extra Grande         Colas Regular            Coca-Cola
## 2978         Extra Grande         Colas Regular            Coca-Cola
## 2979         Extra Grande         Colas Regular            Coca-Cola
## 2980         Extra Grande         Colas Regular            Coca-Cola
## 2981         Extra Grande         Colas Regular            Coca-Cola
## 2982         Extra Grande         Colas Regular            Coca-Cola
## 2983         Extra Grande         Colas Regular            Coca-Cola
## 2984         Extra Grande         Colas Regular            Coca-Cola
## 2985         Extra Grande         Colas Regular            Coca-Cola
## 2986         Extra Grande         Colas Regular            Coca-Cola
## 2987         Extra Grande         Colas Regular            Coca-Cola
## 2988         Extra Grande         Colas Regular            Coca-Cola
## 2989         Extra Grande         Colas Regular            Coca-Cola
## 2990         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 2991         Extra Grande Isot\x97nicos Regular             Powerade
## 2992         Extra Grande Isot\x97nicos Regular             Powerade
## 2993         Extra Grande Isot\x97nicos Regular             Powerade
## 2994         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2995         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2996         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2997         Extra Grande   Jugos y N\x8ectares            Del Valle
## 2998         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 2999         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3000         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3001         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 3002         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 3003         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3004         Extra Grande         Sabores Light          Sprite Zero
## 3005         Extra Grande       Sabores Regular     Del Valle y Nada
## 3006         Extra Grande       Sabores Regular                Fanta
## 3007         Extra Grande       Sabores Regular                Fanta
## 3008         Extra Grande       Sabores Regular                Fanta
## 3009         Extra Grande       Sabores Regular                Fanta
## 3010         Extra Grande       Sabores Regular                Fanta
## 3011         Extra Grande       Sabores Regular                Fanta
## 3012         Extra Grande       Sabores Regular                Fanta
## 3013         Extra Grande       Sabores Regular                Fanta
## 3014         Extra Grande       Sabores Regular               Fresca
## 3015         Extra Grande       Sabores Regular               Fresca
## 3016         Extra Grande       Sabores Regular               Fresca
## 3017         Extra Grande       Sabores Regular               Fresca
## 3018         Extra Grande       Sabores Regular               Fresca
## 3019         Extra Grande       Sabores Regular               Fresca
## 3020         Extra Grande       Sabores Regular               Fresca
## 3021         Extra Grande       Sabores Regular               Fresca
## 3022         Extra Grande       Sabores Regular               Fresca
## 3023         Extra Grande       Sabores Regular         Manzana Lift
## 3024         Extra Grande       Sabores Regular         Manzana Lift
## 3025         Extra Grande       Sabores Regular         Manzana Lift
## 3026         Extra Grande       Sabores Regular         Manzana Lift
## 3027         Extra Grande       Sabores Regular         Manzana Lift
## 3028         Extra Grande       Sabores Regular               Senzao
## 3029         Extra Grande       Sabores Regular        Sidral Mundet
## 3030         Extra Grande       Sabores Regular        Sidral Mundet
## 3031         Extra Grande       Sabores Regular        Sidral Mundet
## 3032         Extra Grande       Sabores Regular        Sidral Mundet
## 3033         Extra Grande       Sabores Regular        Sidral Mundet
## 3034         Extra Grande       Sabores Regular        Sidral Mundet
## 3035         Extra Grande       Sabores Regular        Sidral Mundet
## 3036         Extra Grande       Sabores Regular        Sidral Mundet
## 3037         Extra Grande       Sabores Regular               Sprite
## 3038         Extra Grande       Sabores Regular               Sprite
## 3039         Extra Grande       Sabores Regular               Sprite
## 3040         Extra Grande       Sabores Regular               Sprite
## 3041         Extra Grande       Sabores Regular               Sprite
## 3042         Extra Grande       Sabores Regular               Sprite
## 3043         Extra Grande       Sabores Regular               Sprite
## 3044         Extra Grande       Sabores Regular               Sprite
## 3045         Extra Grande           T\x8e Light       Fuze Tea Light
## 3046         Extra Grande         T\x8e Regular             Fuze Tea
## 3047         Extra Grande         T\x8e Regular             Fuze Tea
## 3048         Extra Grande         T\x8e Regular             Fuze Tea
## 3049         Extra Grande         T\x8e Regular             Fuze Tea
## 3050         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3051         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3052         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3053         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3054         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3055         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3056         Extra Grande      Bebidas de Fruta               Frutsi
## 3057         Extra Grande      Bebidas de Fruta                Pulpy
## 3058         Extra Grande      Bebidas de Fruta           Valle Frut
## 3059         Extra Grande      Bebidas de Fruta           Valle Frut
## 3060         Extra Grande   Bebidas Energeticas                 Burn
## 3061         Extra Grande           Colas Light       Coca-Cola Life
## 3062         Extra Grande           Colas Light       Coca-Cola Life
## 3063         Extra Grande           Colas Light      Coca-Cola Light
## 3064         Extra Grande           Colas Light      Coca-Cola Light
## 3065         Extra Grande           Colas Light      Coca-Cola Light
## 3066         Extra Grande           Colas Light      Coca-Cola Light
## 3067         Extra Grande           Colas Light      Coca-Cola Light
## 3068         Extra Grande           Colas Light       Coca-Cola Zero
## 3069         Extra Grande         Colas Regular            Coca-Cola
## 3070         Extra Grande         Colas Regular            Coca-Cola
## 3071         Extra Grande         Colas Regular            Coca-Cola
## 3072         Extra Grande         Colas Regular            Coca-Cola
## 3073         Extra Grande         Colas Regular            Coca-Cola
## 3074         Extra Grande         Colas Regular            Coca-Cola
## 3075         Extra Grande         Colas Regular            Coca-Cola
## 3076         Extra Grande         Colas Regular            Coca-Cola
## 3077         Extra Grande         Colas Regular            Coca-Cola
## 3078         Extra Grande         Colas Regular            Coca-Cola
## 3079         Extra Grande         Colas Regular            Coca-Cola
## 3080         Extra Grande         Colas Regular            Coca-Cola
## 3081         Extra Grande         Colas Regular            Coca-Cola
## 3082         Extra Grande         Colas Regular            Coca-Cola
## 3083         Extra Grande         Colas Regular            Coca-Cola
## 3084         Extra Grande         Colas Regular            Coca-Cola
## 3085         Extra Grande Isot\x97nicos Regular             Powerade
## 3086         Extra Grande Isot\x97nicos Regular             Powerade
## 3087         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3088         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3089         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3090         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3091         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3092         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 3093         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3094         Extra Grande         Sabores Light          Sprite Zero
## 3095         Extra Grande       Sabores Regular     Del Valle y Nada
## 3096         Extra Grande       Sabores Regular                Fanta
## 3097         Extra Grande       Sabores Regular                Fanta
## 3098         Extra Grande       Sabores Regular                Fanta
## 3099         Extra Grande       Sabores Regular                Fanta
## 3100         Extra Grande       Sabores Regular                Fanta
## 3101         Extra Grande       Sabores Regular                Fanta
## 3102         Extra Grande       Sabores Regular                Fanta
## 3103         Extra Grande       Sabores Regular               Fresca
## 3104         Extra Grande       Sabores Regular               Fresca
## 3105         Extra Grande       Sabores Regular               Fresca
## 3106         Extra Grande       Sabores Regular               Fresca
## 3107         Extra Grande       Sabores Regular         Manzana Lift
## 3108         Extra Grande       Sabores Regular         Manzana Lift
## 3109         Extra Grande       Sabores Regular         Manzana Lift
## 3110         Extra Grande       Sabores Regular         Manzana Lift
## 3111         Extra Grande       Sabores Regular        Sidral Mundet
## 3112         Extra Grande       Sabores Regular        Sidral Mundet
## 3113         Extra Grande       Sabores Regular        Sidral Mundet
## 3114         Extra Grande       Sabores Regular        Sidral Mundet
## 3115         Extra Grande       Sabores Regular        Sidral Mundet
## 3116         Extra Grande       Sabores Regular               Sprite
## 3117         Extra Grande       Sabores Regular               Sprite
## 3118         Extra Grande       Sabores Regular               Sprite
## 3119         Extra Grande       Sabores Regular               Sprite
## 3120         Extra Grande       Sabores Regular               Sprite
## 3121         Extra Grande       Sabores Regular               Sprite
## 3122         Extra Grande       Sabores Regular               Sprite
## 3123         Extra Grande         T\x8e Regular             Fuze Tea
## 3124         Extra Grande         T\x8e Regular             Fuze Tea
## 3125         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3126         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3127         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3128         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3129         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3130         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3131         Extra Grande       Agua Saborizada          Ciel Exprim
## 3132         Extra Grande       Agua Saborizada            Ciel Mini
## 3133         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3134         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3135         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3136         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3137         Extra Grande      Bebidas de Fruta               Frutsi
## 3138         Extra Grande      Bebidas de Fruta                Pulpy
## 3139         Extra Grande      Bebidas de Fruta           Valle Frut
## 3140         Extra Grande      Bebidas de Fruta           Valle Frut
## 3141         Extra Grande      Bebidas de Fruta           Valle Frut
## 3142         Extra Grande      Bebidas de Fruta           Valle Frut
## 3143         Extra Grande      Bebidas de Fruta           Valle Frut
## 3144         Extra Grande           Colas Light       Coca-Cola Life
## 3145         Extra Grande           Colas Light       Coca-Cola Life
## 3146         Extra Grande           Colas Light      Coca-Cola Light
## 3147         Extra Grande           Colas Light      Coca-Cola Light
## 3148         Extra Grande           Colas Light      Coca-Cola Light
## 3149         Extra Grande           Colas Light      Coca-Cola Light
## 3150         Extra Grande           Colas Light      Coca-Cola Light
## 3151         Extra Grande           Colas Light      Coca-Cola Light
## 3152         Extra Grande           Colas Light       Coca-Cola Zero
## 3153         Extra Grande           Colas Light       Coca-Cola Zero
## 3154         Extra Grande           Colas Light       Coca-Cola Zero
## 3155         Extra Grande           Colas Light       Coca-Cola Zero
## 3156         Extra Grande         Colas Regular            Coca-Cola
## 3157         Extra Grande         Colas Regular            Coca-Cola
## 3158         Extra Grande         Colas Regular            Coca-Cola
## 3159         Extra Grande         Colas Regular            Coca-Cola
## 3160         Extra Grande         Colas Regular            Coca-Cola
## 3161         Extra Grande         Colas Regular            Coca-Cola
## 3162         Extra Grande         Colas Regular            Coca-Cola
## 3163         Extra Grande         Colas Regular            Coca-Cola
## 3164         Extra Grande         Colas Regular            Coca-Cola
## 3165         Extra Grande         Colas Regular            Coca-Cola
## 3166         Extra Grande         Colas Regular            Coca-Cola
## 3167         Extra Grande         Colas Regular            Coca-Cola
## 3168         Extra Grande         Colas Regular            Coca-Cola
## 3169         Extra Grande         Colas Regular            Coca-Cola
## 3170         Extra Grande         Colas Regular            Coca-Cola
## 3171         Extra Grande         Colas Regular            Coca-Cola
## 3172         Extra Grande         Colas Regular            Coca-Cola
## 3173         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3174         Extra Grande Isot\x97nicos Regular             Powerade
## 3175         Extra Grande Isot\x97nicos Regular             Powerade
## 3176         Extra Grande Isot\x97nicos Regular             Powerade
## 3177         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3178         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3179         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3180         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3181         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3182         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3183         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3184         Extra Grande         Sabores Light          Sprite Zero
## 3185         Extra Grande       Sabores Regular     Del Valle y Nada
## 3186         Extra Grande       Sabores Regular                Fanta
## 3187         Extra Grande       Sabores Regular                Fanta
## 3188         Extra Grande       Sabores Regular                Fanta
## 3189         Extra Grande       Sabores Regular                Fanta
## 3190         Extra Grande       Sabores Regular                Fanta
## 3191         Extra Grande       Sabores Regular                Fanta
## 3192         Extra Grande       Sabores Regular                Fanta
## 3193         Extra Grande       Sabores Regular                Fanta
## 3194         Extra Grande       Sabores Regular                Fanta
## 3195         Extra Grande       Sabores Regular               Fresca
## 3196         Extra Grande       Sabores Regular               Fresca
## 3197         Extra Grande       Sabores Regular               Fresca
## 3198         Extra Grande       Sabores Regular               Fresca
## 3199         Extra Grande       Sabores Regular               Fresca
## 3200         Extra Grande       Sabores Regular               Fresca
## 3201         Extra Grande       Sabores Regular               Fresca
## 3202         Extra Grande       Sabores Regular         Manzana Lift
## 3203         Extra Grande       Sabores Regular         Manzana Lift
## 3204         Extra Grande       Sabores Regular         Manzana Lift
## 3205         Extra Grande       Sabores Regular         Manzana Lift
## 3206         Extra Grande       Sabores Regular         Manzana Lift
## 3207         Extra Grande       Sabores Regular         Manzana Lift
## 3208         Extra Grande       Sabores Regular               Senzao
## 3209         Extra Grande       Sabores Regular        Sidral Mundet
## 3210         Extra Grande       Sabores Regular        Sidral Mundet
## 3211         Extra Grande       Sabores Regular        Sidral Mundet
## 3212         Extra Grande       Sabores Regular        Sidral Mundet
## 3213         Extra Grande       Sabores Regular               Sprite
## 3214         Extra Grande       Sabores Regular               Sprite
## 3215         Extra Grande       Sabores Regular               Sprite
## 3216         Extra Grande       Sabores Regular               Sprite
## 3217         Extra Grande       Sabores Regular               Sprite
## 3218         Extra Grande       Sabores Regular               Sprite
## 3219         Extra Grande       Sabores Regular               Sprite
## 3220         Extra Grande       Sabores Regular               Sprite
## 3221         Extra Grande       Sabores Regular               Sprite
## 3222         Extra Grande         T\x8e Regular             Fuze Tea
## 3223         Extra Grande         T\x8e Regular             Fuze Tea
## 3224         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3225         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3226         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3227         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3228         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3229         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3230         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3231         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3232         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3233         Extra Grande       Agua Saborizada          Ciel Exprim
## 3234         Extra Grande       Agua Saborizada          Ciel Exprim
## 3235         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3236         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3237         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3238         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3239         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3240         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3241         Extra Grande      Bebidas de Fruta               Frutsi
## 3242         Extra Grande      Bebidas de Fruta                Pulpy
## 3243         Extra Grande      Bebidas de Fruta           Valle Frut
## 3244         Extra Grande      Bebidas de Fruta           Valle Frut
## 3245         Extra Grande      Bebidas de Fruta           Valle Frut
## 3246         Extra Grande      Bebidas de Fruta           Valle Frut
## 3247         Extra Grande   Bebidas Energeticas                 Burn
## 3248         Extra Grande   Bebidas Energeticas                 Burn
## 3249         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3250         Extra Grande           Colas Light       Coca-Cola Life
## 3251         Extra Grande           Colas Light       Coca-Cola Life
## 3252         Extra Grande           Colas Light      Coca-Cola Light
## 3253         Extra Grande           Colas Light      Coca-Cola Light
## 3254         Extra Grande           Colas Light      Coca-Cola Light
## 3255         Extra Grande           Colas Light      Coca-Cola Light
## 3256         Extra Grande           Colas Light      Coca-Cola Light
## 3257         Extra Grande           Colas Light      Coca-Cola Light
## 3258         Extra Grande           Colas Light      Coca-Cola Light
## 3259         Extra Grande           Colas Light      Coca-Cola Light
## 3260         Extra Grande           Colas Light       Coca-Cola Zero
## 3261         Extra Grande           Colas Light       Coca-Cola Zero
## 3262         Extra Grande           Colas Light       Coca-Cola Zero
## 3263         Extra Grande         Colas Regular            Coca-Cola
## 3264         Extra Grande         Colas Regular            Coca-Cola
## 3265         Extra Grande         Colas Regular            Coca-Cola
## 3266         Extra Grande         Colas Regular            Coca-Cola
## 3267         Extra Grande         Colas Regular            Coca-Cola
## 3268         Extra Grande         Colas Regular            Coca-Cola
## 3269         Extra Grande         Colas Regular            Coca-Cola
## 3270         Extra Grande         Colas Regular            Coca-Cola
## 3271         Extra Grande         Colas Regular            Coca-Cola
## 3272         Extra Grande         Colas Regular            Coca-Cola
## 3273         Extra Grande         Colas Regular            Coca-Cola
## 3274         Extra Grande         Colas Regular            Coca-Cola
## 3275         Extra Grande         Colas Regular            Coca-Cola
## 3276         Extra Grande         Colas Regular            Coca-Cola
## 3277         Extra Grande         Colas Regular            Coca-Cola
## 3278         Extra Grande         Colas Regular            Coca-Cola
## 3279         Extra Grande         Colas Regular            Coca-Cola
## 3280         Extra Grande         Colas Regular            Coca-Cola
## 3281         Extra Grande Isot\x97nicos Regular             Powerade
## 3282         Extra Grande Isot\x97nicos Regular             Powerade
## 3283         Extra Grande Isot\x97nicos Regular             Powerade
## 3284         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3285         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3286         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3287         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3288         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3289         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3290         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 3291         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 3292         Extra Grande     Leche UHT Regular    Santa Clara Light
## 3293         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3294         Extra Grande         Sabores Light          Sprite Zero
## 3295         Extra Grande       Sabores Regular     Del Valle y Nada
## 3296         Extra Grande       Sabores Regular                Fanta
## 3297         Extra Grande       Sabores Regular                Fanta
## 3298         Extra Grande       Sabores Regular                Fanta
## 3299         Extra Grande       Sabores Regular                Fanta
## 3300         Extra Grande       Sabores Regular                Fanta
## 3301         Extra Grande       Sabores Regular                Fanta
## 3302         Extra Grande       Sabores Regular                Fanta
## 3303         Extra Grande       Sabores Regular                Fanta
## 3304         Extra Grande       Sabores Regular                Fanta
## 3305         Extra Grande       Sabores Regular                Fanta
## 3306         Extra Grande       Sabores Regular                Fanta
## 3307         Extra Grande       Sabores Regular                Fanta
## 3308         Extra Grande       Sabores Regular               Fresca
## 3309         Extra Grande       Sabores Regular               Fresca
## 3310         Extra Grande       Sabores Regular               Fresca
## 3311         Extra Grande       Sabores Regular               Fresca
## 3312         Extra Grande       Sabores Regular               Fresca
## 3313         Extra Grande       Sabores Regular               Fresca
## 3314         Extra Grande       Sabores Regular               Fresca
## 3315         Extra Grande       Sabores Regular               Fresca
## 3316         Extra Grande       Sabores Regular               Fresca
## 3317         Extra Grande       Sabores Regular         Manzana Lift
## 3318         Extra Grande       Sabores Regular         Manzana Lift
## 3319         Extra Grande       Sabores Regular         Manzana Lift
## 3320         Extra Grande       Sabores Regular         Manzana Lift
## 3321         Extra Grande       Sabores Regular         Manzana Lift
## 3322         Extra Grande       Sabores Regular         Manzana Lift
## 3323         Extra Grande       Sabores Regular         Manzana Lift
## 3324         Extra Grande       Sabores Regular               Senzao
## 3325         Extra Grande       Sabores Regular        Sidral Mundet
## 3326         Extra Grande       Sabores Regular        Sidral Mundet
## 3327         Extra Grande       Sabores Regular        Sidral Mundet
## 3328         Extra Grande       Sabores Regular        Sidral Mundet
## 3329         Extra Grande       Sabores Regular        Sidral Mundet
## 3330         Extra Grande       Sabores Regular        Sidral Mundet
## 3331         Extra Grande       Sabores Regular               Sprite
## 3332         Extra Grande       Sabores Regular               Sprite
## 3333         Extra Grande       Sabores Regular               Sprite
## 3334         Extra Grande       Sabores Regular               Sprite
## 3335         Extra Grande       Sabores Regular               Sprite
## 3336         Extra Grande       Sabores Regular               Sprite
## 3337         Extra Grande       Sabores Regular               Sprite
## 3338         Extra Grande       Sabores Regular               Sprite
## 3339         Extra Grande       Sabores Regular               Sprite
## 3340         Extra Grande       Sabores Regular               Sprite
## 3341         Extra Grande         T\x8e Regular             Fuze Tea
## 3342         Extra Grande         T\x8e Regular             Fuze Tea
## 3343         Extra Grande         T\x8e Regular             Fuze Tea
## 3344         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3345         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3346         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3347         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3348         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3349         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3350         Extra Grande      Bebidas de Fruta               Frutsi
## 3351         Extra Grande      Bebidas de Fruta                Pulpy
## 3352         Extra Grande      Bebidas de Fruta           Valle Frut
## 3353         Extra Grande      Bebidas de Fruta           Valle Frut
## 3354         Extra Grande      Bebidas de Fruta           Valle Frut
## 3355         Extra Grande      Bebidas de Fruta           Valle Frut
## 3356         Extra Grande   Bebidas Energeticas                 Burn
## 3357         Extra Grande   Bebidas Energeticas                 Burn
## 3358         Extra Grande           Colas Light       Coca-Cola Life
## 3359         Extra Grande           Colas Light      Coca-Cola Light
## 3360         Extra Grande           Colas Light      Coca-Cola Light
## 3361         Extra Grande         Colas Regular            Coca-Cola
## 3362         Extra Grande         Colas Regular            Coca-Cola
## 3363         Extra Grande         Colas Regular            Coca-Cola
## 3364         Extra Grande         Colas Regular            Coca-Cola
## 3365         Extra Grande         Colas Regular            Coca-Cola
## 3366         Extra Grande         Colas Regular            Coca-Cola
## 3367         Extra Grande         Colas Regular            Coca-Cola
## 3368         Extra Grande         Colas Regular            Coca-Cola
## 3369         Extra Grande         Colas Regular            Coca-Cola
## 3370         Extra Grande         Colas Regular            Coca-Cola
## 3371         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3372         Extra Grande Isot\x97nicos Regular             Powerade
## 3373         Extra Grande Isot\x97nicos Regular             Powerade
## 3374         Extra Grande Isot\x97nicos Regular             Powerade
## 3375         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3376         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3377         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3378         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3379         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3380         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3381         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3382         Extra Grande       Sabores Regular                Fanta
## 3383         Extra Grande       Sabores Regular                Fanta
## 3384         Extra Grande       Sabores Regular                Fanta
## 3385         Extra Grande       Sabores Regular                Fanta
## 3386         Extra Grande       Sabores Regular                Fanta
## 3387         Extra Grande       Sabores Regular                Fanta
## 3388         Extra Grande       Sabores Regular               Fresca
## 3389         Extra Grande       Sabores Regular               Fresca
## 3390         Extra Grande       Sabores Regular               Fresca
## 3391         Extra Grande       Sabores Regular               Fresca
## 3392         Extra Grande       Sabores Regular               Fresca
## 3393         Extra Grande       Sabores Regular         Manzana Lift
## 3394         Extra Grande       Sabores Regular         Manzana Lift
## 3395         Extra Grande       Sabores Regular         Manzana Lift
## 3396         Extra Grande       Sabores Regular         Manzana Lift
## 3397         Extra Grande       Sabores Regular        Sidral Mundet
## 3398         Extra Grande       Sabores Regular        Sidral Mundet
## 3399         Extra Grande       Sabores Regular        Sidral Mundet
## 3400         Extra Grande       Sabores Regular               Sprite
## 3401         Extra Grande       Sabores Regular               Sprite
## 3402         Extra Grande       Sabores Regular               Sprite
## 3403         Extra Grande       Sabores Regular               Sprite
## 3404         Extra Grande       Sabores Regular               Sprite
## 3405         Extra Grande       Sabores Regular               Sprite
## 3406         Extra Grande         T\x8e Regular             Fuze Tea
## 3407         Extra Grande         T\x8e Regular             Fuze Tea
## 3408         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3409         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3410         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3411         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3412         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3413         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3414         Extra Grande       Agua Saborizada          Ciel Exprim
## 3415         Extra Grande       Agua Saborizada          Ciel Exprim
## 3416         Extra Grande       Agua Saborizada            Ciel Mini
## 3417         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3418         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3419         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3420         Extra Grande      Bebidas de Fruta               Frutsi
## 3421         Extra Grande      Bebidas de Fruta                Pulpy
## 3422         Extra Grande      Bebidas de Fruta           Valle Frut
## 3423         Extra Grande      Bebidas de Fruta           Valle Frut
## 3424         Extra Grande      Bebidas de Fruta           Valle Frut
## 3425         Extra Grande      Bebidas de Fruta           Valle Frut
## 3426         Extra Grande      Bebidas de Fruta           Valle Frut
## 3427         Extra Grande      Bebidas de Fruta           Valle Frut
## 3428         Extra Grande   Bebidas Energeticas                 Burn
## 3429         Extra Grande   Bebidas Energeticas                 Burn
## 3430         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3431         Extra Grande           Colas Light       Coca-Cola Life
## 3432         Extra Grande           Colas Light       Coca-Cola Life
## 3433         Extra Grande           Colas Light       Coca-Cola Life
## 3434         Extra Grande           Colas Light       Coca-Cola Life
## 3435         Extra Grande           Colas Light      Coca-Cola Light
## 3436         Extra Grande           Colas Light      Coca-Cola Light
## 3437         Extra Grande           Colas Light      Coca-Cola Light
## 3438         Extra Grande           Colas Light      Coca-Cola Light
## 3439         Extra Grande           Colas Light      Coca-Cola Light
## 3440         Extra Grande           Colas Light       Coca-Cola Zero
## 3441         Extra Grande           Colas Light       Coca-Cola Zero
## 3442         Extra Grande           Colas Light       Coca-Cola Zero
## 3443         Extra Grande           Colas Light       Coca-Cola Zero
## 3444         Extra Grande         Colas Regular            Coca-Cola
## 3445         Extra Grande         Colas Regular            Coca-Cola
## 3446         Extra Grande         Colas Regular            Coca-Cola
## 3447         Extra Grande         Colas Regular            Coca-Cola
## 3448         Extra Grande         Colas Regular            Coca-Cola
## 3449         Extra Grande         Colas Regular            Coca-Cola
## 3450         Extra Grande         Colas Regular            Coca-Cola
## 3451         Extra Grande         Colas Regular            Coca-Cola
## 3452         Extra Grande         Colas Regular            Coca-Cola
## 3453         Extra Grande         Colas Regular            Coca-Cola
## 3454         Extra Grande         Colas Regular            Coca-Cola
## 3455         Extra Grande         Colas Regular            Coca-Cola
## 3456         Extra Grande         Colas Regular            Coca-Cola
## 3457         Extra Grande         Colas Regular            Coca-Cola
## 3458         Extra Grande         Colas Regular            Coca-Cola
## 3459         Extra Grande         Colas Regular            Coca-Cola
## 3460         Extra Grande         Colas Regular            Coca-Cola
## 3461         Extra Grande         Colas Regular            Coca-Cola
## 3462         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3463         Extra Grande Isot\x97nicos Regular             Powerade
## 3464         Extra Grande Isot\x97nicos Regular             Powerade
## 3465         Extra Grande Isot\x97nicos Regular             Powerade
## 3466         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3467         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3468         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3469         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3470         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3471         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3472         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 3473         Extra Grande  Leche UHT Especializ Santa Clara Deslacto
## 3474         Extra Grande     Leche UHT Regular   Santa Clara Entera
## 3475         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3476         Extra Grande         Sabores Light          Sprite Zero
## 3477         Extra Grande       Sabores Regular     Del Valle y Nada
## 3478         Extra Grande       Sabores Regular     Del Valle y Nada
## 3479         Extra Grande       Sabores Regular     Del Valle y Nada
## 3480         Extra Grande       Sabores Regular                Fanta
## 3481         Extra Grande       Sabores Regular                Fanta
## 3482         Extra Grande       Sabores Regular                Fanta
## 3483         Extra Grande       Sabores Regular                Fanta
## 3484         Extra Grande       Sabores Regular                Fanta
## 3485         Extra Grande       Sabores Regular                Fanta
## 3486         Extra Grande       Sabores Regular                Fanta
## 3487         Extra Grande       Sabores Regular                Fanta
## 3488         Extra Grande       Sabores Regular                Fanta
## 3489         Extra Grande       Sabores Regular               Fresca
## 3490         Extra Grande       Sabores Regular               Fresca
## 3491         Extra Grande       Sabores Regular               Fresca
## 3492         Extra Grande       Sabores Regular               Fresca
## 3493         Extra Grande       Sabores Regular               Fresca
## 3494         Extra Grande       Sabores Regular               Fresca
## 3495         Extra Grande       Sabores Regular               Fresca
## 3496         Extra Grande       Sabores Regular               Fresca
## 3497         Extra Grande       Sabores Regular               Fresca
## 3498         Extra Grande       Sabores Regular         Manzana Lift
## 3499         Extra Grande       Sabores Regular         Manzana Lift
## 3500         Extra Grande       Sabores Regular         Manzana Lift
## 3501         Extra Grande       Sabores Regular         Manzana Lift
## 3502         Extra Grande       Sabores Regular         Manzana Lift
## 3503         Extra Grande       Sabores Regular         Manzana Lift
## 3504         Extra Grande       Sabores Regular         Manzana Lift
## 3505         Extra Grande       Sabores Regular               Senzao
## 3506         Extra Grande       Sabores Regular        Sidral Mundet
## 3507         Extra Grande       Sabores Regular        Sidral Mundet
## 3508         Extra Grande       Sabores Regular        Sidral Mundet
## 3509         Extra Grande       Sabores Regular        Sidral Mundet
## 3510         Extra Grande       Sabores Regular        Sidral Mundet
## 3511         Extra Grande       Sabores Regular               Sprite
## 3512         Extra Grande       Sabores Regular               Sprite
## 3513         Extra Grande       Sabores Regular               Sprite
## 3514         Extra Grande       Sabores Regular               Sprite
## 3515         Extra Grande       Sabores Regular               Sprite
## 3516         Extra Grande       Sabores Regular               Sprite
## 3517         Extra Grande       Sabores Regular               Sprite
## 3518         Extra Grande       Sabores Regular               Sprite
## 3519         Extra Grande       Sabores Regular               Sprite
## 3520         Extra Grande           T\x8e Light       Fuze Tea Light
## 3521         Extra Grande         T\x8e Regular             Fuze Tea
## 3522         Extra Grande         T\x8e Regular             Fuze Tea
## 3523         Extra Grande         T\x8e Regular             Fuze Tea
## 3524         Extra Grande         T\x8e Regular             Fuze Tea
## 3525         Extra Grande         T\x8e Regular             Fuze Tea
## 3526         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3527         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3528         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3529         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3530         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3531         Extra Grande       Agua Saborizada            Ciel Mini
## 3532         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3533         Extra Grande      Bebidas de Fruta               Frutsi
## 3534         Extra Grande      Bebidas de Fruta           Valle Frut
## 3535         Extra Grande      Bebidas de Fruta           Valle Frut
## 3536         Extra Grande      Bebidas de Fruta           Valle Frut
## 3537         Extra Grande           Colas Light       Coca-Cola Life
## 3538         Extra Grande           Colas Light      Coca-Cola Light
## 3539         Extra Grande           Colas Light      Coca-Cola Light
## 3540         Extra Grande           Colas Light      Coca-Cola Light
## 3541         Extra Grande           Colas Light      Coca-Cola Light
## 3542         Extra Grande           Colas Light      Coca-Cola Light
## 3543         Extra Grande           Colas Light      Coca-Cola Light
## 3544         Extra Grande           Colas Light      Coca-Cola Light
## 3545         Extra Grande           Colas Light       Coca-Cola Zero
## 3546         Extra Grande         Colas Regular            Coca-Cola
## 3547         Extra Grande         Colas Regular            Coca-Cola
## 3548         Extra Grande         Colas Regular            Coca-Cola
## 3549         Extra Grande         Colas Regular            Coca-Cola
## 3550         Extra Grande         Colas Regular            Coca-Cola
## 3551         Extra Grande         Colas Regular            Coca-Cola
## 3552         Extra Grande         Colas Regular            Coca-Cola
## 3553         Extra Grande         Colas Regular            Coca-Cola
## 3554         Extra Grande         Colas Regular            Coca-Cola
## 3555         Extra Grande         Colas Regular            Coca-Cola
## 3556         Extra Grande         Colas Regular            Coca-Cola
## 3557         Extra Grande         Colas Regular            Coca-Cola
## 3558         Extra Grande         Colas Regular            Coca-Cola
## 3559         Extra Grande         Colas Regular            Coca-Cola
## 3560         Extra Grande         Colas Regular            Coca-Cola
## 3561         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3562         Extra Grande Isot\x97nicos Regular             Powerade
## 3563         Extra Grande Isot\x97nicos Regular             Powerade
## 3564         Extra Grande Isot\x97nicos Regular             Powerade
## 3565         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3566         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3567         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3568         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3569         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3570         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3571         Extra Grande       Sabores Regular     Del Valle y Nada
## 3572         Extra Grande       Sabores Regular     Del Valle y Nada
## 3573         Extra Grande       Sabores Regular                Fanta
## 3574         Extra Grande       Sabores Regular                Fanta
## 3575         Extra Grande       Sabores Regular                Fanta
## 3576         Extra Grande       Sabores Regular                Fanta
## 3577         Extra Grande       Sabores Regular                Fanta
## 3578         Extra Grande       Sabores Regular                Fanta
## 3579         Extra Grande       Sabores Regular               Fresca
## 3580         Extra Grande       Sabores Regular               Fresca
## 3581         Extra Grande       Sabores Regular               Fresca
## 3582         Extra Grande       Sabores Regular               Fresca
## 3583         Extra Grande       Sabores Regular               Fresca
## 3584         Extra Grande       Sabores Regular               Fresca
## 3585         Extra Grande       Sabores Regular               Fresca
## 3586         Extra Grande       Sabores Regular         Manzana Lift
## 3587         Extra Grande       Sabores Regular         Manzana Lift
## 3588         Extra Grande       Sabores Regular         Manzana Lift
## 3589         Extra Grande       Sabores Regular         Manzana Lift
## 3590         Extra Grande       Sabores Regular        Sidral Mundet
## 3591         Extra Grande       Sabores Regular        Sidral Mundet
## 3592         Extra Grande       Sabores Regular        Sidral Mundet
## 3593         Extra Grande       Sabores Regular        Sidral Mundet
## 3594         Extra Grande       Sabores Regular        Sidral Mundet
## 3595         Extra Grande       Sabores Regular               Sprite
## 3596         Extra Grande       Sabores Regular               Sprite
## 3597         Extra Grande       Sabores Regular               Sprite
## 3598         Extra Grande       Sabores Regular               Sprite
## 3599         Extra Grande       Sabores Regular               Sprite
## 3600         Extra Grande       Sabores Regular               Sprite
## 3601         Extra Grande         T\x8e Regular             Fuze Tea
## 3602         Extra Grande         T\x8e Regular             Fuze Tea
## 3603         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3604         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3605         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3606         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3607         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3608         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3609         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3610         Extra Grande       Agua Saborizada          Ciel Exprim
## 3611         Extra Grande       Agua Saborizada            Ciel Mini
## 3612         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3613         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3614         Extra Grande      Bebidas de Fruta               Frutsi
## 3615         Extra Grande      Bebidas de Fruta                Pulpy
## 3616         Extra Grande      Bebidas de Fruta           Valle Frut
## 3617         Extra Grande      Bebidas de Fruta           Valle Frut
## 3618         Extra Grande      Bebidas de Fruta           Valle Frut
## 3619         Extra Grande      Bebidas de Fruta           Valle Frut
## 3620         Extra Grande   Bebidas Energeticas                 Burn
## 3621         Extra Grande   Bebidas Energeticas                 Burn
## 3622         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3623         Extra Grande           Colas Light       Coca-Cola Life
## 3624         Extra Grande           Colas Light       Coca-Cola Life
## 3625         Extra Grande           Colas Light      Coca-Cola Light
## 3626         Extra Grande           Colas Light      Coca-Cola Light
## 3627         Extra Grande           Colas Light      Coca-Cola Light
## 3628         Extra Grande           Colas Light      Coca-Cola Light
## 3629         Extra Grande           Colas Light      Coca-Cola Light
## 3630         Extra Grande           Colas Light       Coca-Cola Zero
## 3631         Extra Grande           Colas Light       Coca-Cola Zero
## 3632         Extra Grande           Colas Light       Coca-Cola Zero
## 3633         Extra Grande         Colas Regular            Coca-Cola
## 3634         Extra Grande         Colas Regular            Coca-Cola
## 3635         Extra Grande         Colas Regular            Coca-Cola
## 3636         Extra Grande         Colas Regular            Coca-Cola
## 3637         Extra Grande         Colas Regular            Coca-Cola
## 3638         Extra Grande         Colas Regular            Coca-Cola
## 3639         Extra Grande         Colas Regular            Coca-Cola
## 3640         Extra Grande         Colas Regular            Coca-Cola
## 3641         Extra Grande         Colas Regular            Coca-Cola
## 3642         Extra Grande         Colas Regular            Coca-Cola
## 3643         Extra Grande         Colas Regular            Coca-Cola
## 3644         Extra Grande         Colas Regular            Coca-Cola
## 3645         Extra Grande         Colas Regular            Coca-Cola
## 3646         Extra Grande         Colas Regular            Coca-Cola
## 3647         Extra Grande         Colas Regular            Coca-Cola
## 3648         Extra Grande         Colas Regular            Coca-Cola
## 3649         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3650         Extra Grande Isot\x97nicos Regular             Powerade
## 3651         Extra Grande Isot\x97nicos Regular             Powerade
## 3652         Extra Grande Isot\x97nicos Regular             Powerade
## 3653         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3654         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3655         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3656         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3657         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3658         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3659         Extra Grande         Sabores Light          Sprite Zero
## 3660         Extra Grande       Sabores Regular     Del Valle y Nada
## 3661         Extra Grande       Sabores Regular     Del Valle y Nada
## 3662         Extra Grande       Sabores Regular                Fanta
## 3663         Extra Grande       Sabores Regular                Fanta
## 3664         Extra Grande       Sabores Regular                Fanta
## 3665         Extra Grande       Sabores Regular                Fanta
## 3666         Extra Grande       Sabores Regular                Fanta
## 3667         Extra Grande       Sabores Regular                Fanta
## 3668         Extra Grande       Sabores Regular                Fanta
## 3669         Extra Grande       Sabores Regular               Fresca
## 3670         Extra Grande       Sabores Regular               Fresca
## 3671         Extra Grande       Sabores Regular               Fresca
## 3672         Extra Grande       Sabores Regular               Fresca
## 3673         Extra Grande       Sabores Regular               Fresca
## 3674         Extra Grande       Sabores Regular               Fresca
## 3675         Extra Grande       Sabores Regular               Fresca
## 3676         Extra Grande       Sabores Regular         Manzana Lift
## 3677         Extra Grande       Sabores Regular         Manzana Lift
## 3678         Extra Grande       Sabores Regular         Manzana Lift
## 3679         Extra Grande       Sabores Regular         Manzana Lift
## 3680         Extra Grande       Sabores Regular         Manzana Lift
## 3681         Extra Grande       Sabores Regular               Senzao
## 3682         Extra Grande       Sabores Regular        Sidral Mundet
## 3683         Extra Grande       Sabores Regular        Sidral Mundet
## 3684         Extra Grande       Sabores Regular        Sidral Mundet
## 3685         Extra Grande       Sabores Regular        Sidral Mundet
## 3686         Extra Grande       Sabores Regular        Sidral Mundet
## 3687         Extra Grande       Sabores Regular               Sprite
## 3688         Extra Grande       Sabores Regular               Sprite
## 3689         Extra Grande       Sabores Regular               Sprite
## 3690         Extra Grande       Sabores Regular               Sprite
## 3691         Extra Grande       Sabores Regular               Sprite
## 3692         Extra Grande       Sabores Regular               Sprite
## 3693         Extra Grande       Sabores Regular               Sprite
## 3694         Extra Grande         T\x8e Regular             Fuze Tea
## 3695         Extra Grande         T\x8e Regular             Fuze Tea
## 3696         Extra Grande         T\x8e Regular             Fuze Tea
## 3697         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3698         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3699         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3700         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3701         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3702         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3703         Extra Grande       Agua Saborizada          Ciel Exprim
## 3704         Extra Grande       Agua Saborizada            Ciel Mini
## 3705         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3706         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3707         Extra Grande      Bebidas de Fruta               Frutsi
## 3708         Extra Grande      Bebidas de Fruta                Pulpy
## 3709         Extra Grande      Bebidas de Fruta           Valle Frut
## 3710         Extra Grande      Bebidas de Fruta           Valle Frut
## 3711         Extra Grande      Bebidas de Fruta           Valle Frut
## 3712         Extra Grande      Bebidas de Fruta           Valle Frut
## 3713         Extra Grande      Bebidas de Fruta           Valle Frut
## 3714         Extra Grande   Bebidas Energeticas                 Burn
## 3715         Extra Grande   Bebidas Energeticas                 Burn
## 3716         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3717         Extra Grande           Colas Light       Coca-Cola Life
## 3718         Extra Grande           Colas Light       Coca-Cola Life
## 3719         Extra Grande           Colas Light       Coca-Cola Life
## 3720         Extra Grande           Colas Light      Coca-Cola Light
## 3721         Extra Grande           Colas Light      Coca-Cola Light
## 3722         Extra Grande           Colas Light      Coca-Cola Light
## 3723         Extra Grande           Colas Light      Coca-Cola Light
## 3724         Extra Grande           Colas Light       Coca-Cola Zero
## 3725         Extra Grande           Colas Light       Coca-Cola Zero
## 3726         Extra Grande         Colas Regular            Coca-Cola
## 3727         Extra Grande         Colas Regular            Coca-Cola
## 3728         Extra Grande         Colas Regular            Coca-Cola
## 3729         Extra Grande         Colas Regular            Coca-Cola
## 3730         Extra Grande         Colas Regular            Coca-Cola
## 3731         Extra Grande         Colas Regular            Coca-Cola
## 3732         Extra Grande         Colas Regular            Coca-Cola
## 3733         Extra Grande         Colas Regular            Coca-Cola
## 3734         Extra Grande         Colas Regular            Coca-Cola
## 3735         Extra Grande         Colas Regular            Coca-Cola
## 3736         Extra Grande         Colas Regular            Coca-Cola
## 3737         Extra Grande         Colas Regular            Coca-Cola
## 3738         Extra Grande         Colas Regular            Coca-Cola
## 3739         Extra Grande         Colas Regular            Coca-Cola
## 3740         Extra Grande         Colas Regular            Coca-Cola
## 3741         Extra Grande         Colas Regular            Coca-Cola
## 3742         Extra Grande Isot\x97nicos Regular             Powerade
## 3743         Extra Grande Isot\x97nicos Regular             Powerade
## 3744         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3745         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3746         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3747         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3748         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3749         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3750         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3751         Extra Grande         Sabores Light  Sidral Mundet Light
## 3752         Extra Grande       Sabores Regular     Del Valle y Nada
## 3753         Extra Grande       Sabores Regular                Fanta
## 3754         Extra Grande       Sabores Regular                Fanta
## 3755         Extra Grande       Sabores Regular                Fanta
## 3756         Extra Grande       Sabores Regular                Fanta
## 3757         Extra Grande       Sabores Regular                Fanta
## 3758         Extra Grande       Sabores Regular                Fanta
## 3759         Extra Grande       Sabores Regular                Fanta
## 3760         Extra Grande       Sabores Regular                Fanta
## 3761         Extra Grande       Sabores Regular               Fresca
## 3762         Extra Grande       Sabores Regular               Fresca
## 3763         Extra Grande       Sabores Regular               Fresca
## 3764         Extra Grande       Sabores Regular               Fresca
## 3765         Extra Grande       Sabores Regular               Fresca
## 3766         Extra Grande       Sabores Regular               Fresca
## 3767         Extra Grande       Sabores Regular               Fresca
## 3768         Extra Grande       Sabores Regular               Fresca
## 3769         Extra Grande       Sabores Regular         Manzana Lift
## 3770         Extra Grande       Sabores Regular         Manzana Lift
## 3771         Extra Grande       Sabores Regular         Manzana Lift
## 3772         Extra Grande       Sabores Regular         Manzana Lift
## 3773         Extra Grande       Sabores Regular         Manzana Lift
## 3774         Extra Grande       Sabores Regular         Manzana Lift
## 3775         Extra Grande       Sabores Regular        Sidral Mundet
## 3776         Extra Grande       Sabores Regular        Sidral Mundet
## 3777         Extra Grande       Sabores Regular        Sidral Mundet
## 3778         Extra Grande       Sabores Regular        Sidral Mundet
## 3779         Extra Grande       Sabores Regular        Sidral Mundet
## 3780         Extra Grande       Sabores Regular        Sidral Mundet
## 3781         Extra Grande       Sabores Regular               Sprite
## 3782         Extra Grande       Sabores Regular               Sprite
## 3783         Extra Grande       Sabores Regular               Sprite
## 3784         Extra Grande       Sabores Regular               Sprite
## 3785         Extra Grande       Sabores Regular               Sprite
## 3786         Extra Grande       Sabores Regular               Sprite
## 3787         Extra Grande       Sabores Regular               Sprite
## 3788         Extra Grande       Sabores Regular               Sprite
## 3789         Extra Grande         T\x8e Regular             Fuze Tea
## 3790         Extra Grande         T\x8e Regular             Fuze Tea
## 3791         Extra Grande         T\x8e Regular             Fuze Tea
## 3792         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3793         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3794         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3795         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3796         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3797         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3798         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3799         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3800         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3801         Extra Grande       Agua Saborizada          Ciel Exprim
## 3802         Extra Grande       Agua Saborizada            Ciel Mini
## 3803         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3804         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3805         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3806         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3807         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3808         Extra Grande      Bebidas de Fruta               Frutsi
## 3809         Extra Grande      Bebidas de Fruta                Pulpy
## 3810         Extra Grande      Bebidas de Fruta           Valle Frut
## 3811         Extra Grande      Bebidas de Fruta           Valle Frut
## 3812         Extra Grande      Bebidas de Fruta           Valle Frut
## 3813         Extra Grande      Bebidas de Fruta           Valle Frut
## 3814         Extra Grande      Bebidas de Fruta           Valle Frut
## 3815         Extra Grande   Bebidas Energeticas                 Burn
## 3816         Extra Grande   Bebidas Energeticas                 Burn
## 3817         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3818         Extra Grande           Colas Light       Coca-Cola Life
## 3819         Extra Grande           Colas Light      Coca-Cola Light
## 3820         Extra Grande           Colas Light      Coca-Cola Light
## 3821         Extra Grande           Colas Light      Coca-Cola Light
## 3822         Extra Grande         Colas Regular            Coca-Cola
## 3823         Extra Grande         Colas Regular            Coca-Cola
## 3824         Extra Grande         Colas Regular            Coca-Cola
## 3825         Extra Grande         Colas Regular            Coca-Cola
## 3826         Extra Grande         Colas Regular            Coca-Cola
## 3827         Extra Grande         Colas Regular            Coca-Cola
## 3828         Extra Grande         Colas Regular            Coca-Cola
## 3829         Extra Grande         Colas Regular            Coca-Cola
## 3830         Extra Grande         Colas Regular            Coca-Cola
## 3831         Extra Grande         Colas Regular            Coca-Cola
## 3832         Extra Grande         Colas Regular            Coca-Cola
## 3833         Extra Grande         Colas Regular            Coca-Cola
## 3834         Extra Grande         Colas Regular            Coca-Cola
## 3835         Extra Grande         Colas Regular            Coca-Cola
## 3836         Extra Grande   Isot\x97nicos Light        Powerade Zero
## 3837         Extra Grande Isot\x97nicos Regular             Powerade
## 3838         Extra Grande Isot\x97nicos Regular             Powerade
## 3839         Extra Grande Isot\x97nicos Regular             Powerade
## 3840         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3841         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3842         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3843         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3844         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3845         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3846         Extra Grande     Leche UHT Regular    Santa Clara Light
## 3847         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3848         Extra Grande         Sabores Light  Sidral Mundet Light
## 3849         Extra Grande       Sabores Regular     Del Valle y Nada
## 3850         Extra Grande       Sabores Regular                Fanta
## 3851         Extra Grande       Sabores Regular                Fanta
## 3852         Extra Grande       Sabores Regular                Fanta
## 3853         Extra Grande       Sabores Regular                Fanta
## 3854         Extra Grande       Sabores Regular                Fanta
## 3855         Extra Grande       Sabores Regular                Fanta
## 3856         Extra Grande       Sabores Regular                Fanta
## 3857         Extra Grande       Sabores Regular                Fanta
## 3858         Extra Grande       Sabores Regular                Fanta
## 3859         Extra Grande       Sabores Regular                Fanta
## 3860         Extra Grande       Sabores Regular               Fresca
## 3861         Extra Grande       Sabores Regular               Fresca
## 3862         Extra Grande       Sabores Regular               Fresca
## 3863         Extra Grande       Sabores Regular               Fresca
## 3864         Extra Grande       Sabores Regular               Fresca
## 3865         Extra Grande       Sabores Regular               Fresca
## 3866         Extra Grande       Sabores Regular               Fresca
## 3867         Extra Grande       Sabores Regular               Fresca
## 3868         Extra Grande       Sabores Regular               Fresca
## 3869         Extra Grande       Sabores Regular               Fresca
## 3870         Extra Grande       Sabores Regular         Manzana Lift
## 3871         Extra Grande       Sabores Regular         Manzana Lift
## 3872         Extra Grande       Sabores Regular         Manzana Lift
## 3873         Extra Grande       Sabores Regular         Manzana Lift
## 3874         Extra Grande       Sabores Regular         Manzana Lift
## 3875         Extra Grande       Sabores Regular         Manzana Lift
## 3876         Extra Grande       Sabores Regular         Manzana Lift
## 3877         Extra Grande       Sabores Regular        Sidral Mundet
## 3878         Extra Grande       Sabores Regular        Sidral Mundet
## 3879         Extra Grande       Sabores Regular        Sidral Mundet
## 3880         Extra Grande       Sabores Regular        Sidral Mundet
## 3881         Extra Grande       Sabores Regular        Sidral Mundet
## 3882         Extra Grande       Sabores Regular        Sidral Mundet
## 3883         Extra Grande       Sabores Regular               Sprite
## 3884         Extra Grande       Sabores Regular               Sprite
## 3885         Extra Grande       Sabores Regular               Sprite
## 3886         Extra Grande       Sabores Regular               Sprite
## 3887         Extra Grande       Sabores Regular               Sprite
## 3888         Extra Grande       Sabores Regular               Sprite
## 3889         Extra Grande       Sabores Regular               Sprite
## 3890         Extra Grande       Sabores Regular               Sprite
## 3891         Extra Grande       Sabores Regular               Sprite
## 3892         Extra Grande       Sabores Regular               Sprite
## 3893         Extra Grande         T\x8e Regular             Fuze Tea
## 3894         Extra Grande         T\x8e Regular             Fuze Tea
## 3895         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3896         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3897         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3898         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3899         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3900         Extra Grande       Agua Saborizada            Ciel Mini
## 3901         Extra Grande       Agua Saborizada      Ciel Saborizada
## 3902         Extra Grande      Bebidas de Fruta               Bebere
## 3903         Extra Grande      Bebidas de Fruta       Delaware Punch
## 3904         Extra Grande      Bebidas de Fruta               Frutsi
## 3905         Extra Grande      Bebidas de Fruta                Pulpy
## 3906         Extra Grande      Bebidas de Fruta           Valle Frut
## 3907         Extra Grande      Bebidas de Fruta           Valle Frut
## 3908         Extra Grande      Bebidas de Fruta           Valle Frut
## 3909         Extra Grande      Bebidas de Fruta           Valle Frut
## 3910         Extra Grande      Bebidas de Fruta           Valle Frut
## 3911         Extra Grande      Bebidas de Fruta           Valle Frut
## 3912         Extra Grande   Bebidas Energeticas                 Burn
## 3913         Extra Grande   Bebidas Energeticas                 Burn
## 3914         Extra Grande   Bebidas Energeticas           Glac\x8eau
## 3915         Extra Grande           Colas Light       Coca-Cola Life
## 3916         Extra Grande           Colas Light       Coca-Cola Life
## 3917         Extra Grande           Colas Light      Coca-Cola Light
## 3918         Extra Grande           Colas Light      Coca-Cola Light
## 3919         Extra Grande           Colas Light      Coca-Cola Light
## 3920         Extra Grande           Colas Light      Coca-Cola Light
## 3921         Extra Grande           Colas Light      Coca-Cola Light
## 3922         Extra Grande           Colas Light       Coca-Cola Zero
## 3923         Extra Grande         Colas Regular            Coca-Cola
## 3924         Extra Grande         Colas Regular            Coca-Cola
## 3925         Extra Grande         Colas Regular            Coca-Cola
## 3926         Extra Grande         Colas Regular            Coca-Cola
## 3927         Extra Grande         Colas Regular            Coca-Cola
## 3928         Extra Grande         Colas Regular            Coca-Cola
## 3929         Extra Grande         Colas Regular            Coca-Cola
## 3930         Extra Grande         Colas Regular            Coca-Cola
## 3931         Extra Grande         Colas Regular            Coca-Cola
## 3932         Extra Grande         Colas Regular            Coca-Cola
## 3933         Extra Grande         Colas Regular            Coca-Cola
## 3934         Extra Grande         Colas Regular            Coca-Cola
## 3935         Extra Grande         Colas Regular            Coca-Cola
## 3936         Extra Grande         Colas Regular            Coca-Cola
## 3937         Extra Grande Isot\x97nicos Regular             Powerade
## 3938         Extra Grande Isot\x97nicos Regular             Powerade
## 3939         Extra Grande Isot\x97nicos Regular             Powerade
## 3940         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3941         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3942         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3943         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3944         Extra Grande   Jugos y N\x8ectares            Del Valle
## 3945         Extra Grande   Jugos y N\x8ectares Del Valle Nutridefen
## 3946         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3947         Extra Grande   Jugos y N\x8ectares    Del Valle Reserva
## 3948         Extra Grande  Leche UHT Saborizada Santa Clara Saboriza
## 3949         Extra Grande       Sabores Regular     Del Valle y Nada
## 3950         Extra Grande       Sabores Regular                Fanta
## 3951         Extra Grande       Sabores Regular                Fanta
## 3952         Extra Grande       Sabores Regular                Fanta
## 3953         Extra Grande       Sabores Regular                Fanta
## 3954         Extra Grande       Sabores Regular                Fanta
## 3955         Extra Grande       Sabores Regular                Fanta
## 3956         Extra Grande       Sabores Regular                Fanta
## 3957         Extra Grande       Sabores Regular                Fanta
## 3958         Extra Grande       Sabores Regular               Fresca
## 3959         Extra Grande       Sabores Regular               Fresca
## 3960         Extra Grande       Sabores Regular               Fresca
## 3961         Extra Grande       Sabores Regular               Fresca
## 3962         Extra Grande       Sabores Regular               Fresca
## 3963         Extra Grande       Sabores Regular               Fresca
## 3964         Extra Grande       Sabores Regular               Fresca
## 3965         Extra Grande       Sabores Regular               Fresca
## 3966         Extra Grande       Sabores Regular         Manzana Lift
## 3967         Extra Grande       Sabores Regular         Manzana Lift
## 3968         Extra Grande       Sabores Regular         Manzana Lift
## 3969         Extra Grande       Sabores Regular         Manzana Lift
## 3970         Extra Grande       Sabores Regular         Manzana Lift
## 3971         Extra Grande       Sabores Regular         Manzana Lift
## 3972         Extra Grande       Sabores Regular        Sidral Mundet
## 3973         Extra Grande       Sabores Regular        Sidral Mundet
## 3974         Extra Grande       Sabores Regular        Sidral Mundet
## 3975         Extra Grande       Sabores Regular        Sidral Mundet
## 3976         Extra Grande       Sabores Regular        Sidral Mundet
## 3977         Extra Grande       Sabores Regular        Sidral Mundet
## 3978         Extra Grande       Sabores Regular               Sprite
## 3979         Extra Grande       Sabores Regular               Sprite
## 3980         Extra Grande       Sabores Regular               Sprite
## 3981         Extra Grande       Sabores Regular               Sprite
## 3982         Extra Grande       Sabores Regular               Sprite
## 3983         Extra Grande       Sabores Regular               Sprite
## 3984         Extra Grande       Sabores Regular               Sprite
## 3985         Extra Grande       Sabores Regular               Sprite
## 3986         Extra Grande         T\x8e Regular             Fuze Tea
## 3987         Extra Grande         T\x8e Regular             Fuze Tea
## 3988         Extra Grande         T\x8e Regular             Fuze Tea
## 3989         Extra Grande         T\x8e Regular             Fuze Tea
## 3990         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3991         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3992         Extra Grande          Agua Mineral    Ciel Mineralizada
## 3993         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3994         Extra Grande          Agua Mineral      Topo Chico A.M.
## 3995         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3996         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3997         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3998         Extra Grande       Agua Purificada Ciel Agua Purificada
## 3999         Extra Grande       Agua Purificada Ciel Agua Purificada
##          Presentacion     Tamano Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2        1 Ltro. N.R. Individual No Retornable    NA       2     8     4    4
## 3         1.5 Lts. NR Individual No Retornable    NA      NA     3     6    3
## 4           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 5      300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 6        1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 7      250 ml. NR PET Individual No Retornable     1      NA    NA    NA    0
## 8           600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 9      250 ml. NR PET Individual No Retornable     3       3     4     4    4
## 10          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 11       1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 12    100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 13      12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 14          2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 15        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 16       1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 17         2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 18   500 ml NR Vidrio Individual No Retornable     6      NA    NA     4   NA
## 19       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 20       1.250 Lts NR   Familiar No Retornable    13      13     8    21   29
## 21        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 22       1.5 Lts. Ret   Familiar    Retornable    41      38    44    76   57
## 23      12 Oz. NR Pet Individual No Retornable    15      11     9    18   17
## 24         12 Oz. Ret Individual    Retornable     5       2     2     3    3
## 25          2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 26         2 Lts. Ret   Familiar    Retornable    14       6     8    14    3
## 27        2.5 Lts. NR   Familiar No Retornable    14      21    28    32   14
## 28   2.5 Lts. Ret Pet   Familiar    Retornable    99      81    81   109   81
## 29   500 ml NR Vidrio Individual No Retornable    25       6    11    27   27
## 30         500 ml Ret Individual    Retornable    95      74    80   129  106
## 31           8 Oz. NR Individual No Retornable     3       2     1     3    4
## 32               Lata Individual No Retornable     2       3     2     3    5
## 33        Lata 16 Oz. Individual No Retornable     6      NA     4     2    4
## 34        Lata 235 ml Individual No Retornable     3       1    NA     1    1
## 35          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 36       1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 37      500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 38          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 39       250 ml Tetra Individual No Retornable     2       0     0     0    0
## 40      413 ml NR VId Individual No Retornable     1       1     1     0    1
## 41     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 42     300 ML. NR PET Individual No Retornable     0      NA    NA     0   NA
## 43      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 44       200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 45          600 ml NR Individual No Retornable     1       1    NA     1    1
## 46        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 47       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 48          2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 49     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 50          400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 51         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 52          600 ml NR Individual No Retornable     2      NA     1     2    1
## 53               Lata Individual No Retornable     0      NA    NA     0   NA
## 54        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 55       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 56     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 57          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 58         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 59          600 ml NR Individual No Retornable    NA       1    NA    NA    2
## 60               Lata Individual No Retornable     0      NA    NA     0   NA
## 61        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 62     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 63          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 64         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 65          600 ml NR Individual No Retornable    NA       1    NA     1    1
## 66               Lata Individual No Retornable     0      NA    NA     0   NA
## 67       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 68          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 69         500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 70          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 71        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 72       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 73          2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 74     250 ml. NR PET Individual No Retornable     0      NA    NA     1    0
## 75          400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 76         500 ml Ret Individual    Retornable     1      NA     1     2    4
## 77          600 ml NR Individual No Retornable     1       2     3     2    4
## 78               Lata Individual No Retornable     0      NA    NA     0   NA
## 79        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 80      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 81          600 ml NR Individual No Retornable     1       1     1     1    1
## 82          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 83        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 84          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 85       1 Ltro. N.R. Individual No Retornable     2       8     4     8    4
## 86        1.5 Lts. NR Individual No Retornable     3      NA     3     6    6
## 87          5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 88          600 ml NR Individual No Retornable     5       3     3    NA    3
## 89          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 90     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 91      500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 92     250 ml. NR PET Individual No Retornable     2       3     3     3    4
## 93          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 94       1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    1
## 95      12 Oz. NR Pet Individual No Retornable     2      NA    NA     1    2
## 96          2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 97        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 98        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 99      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 100  500 ml NR Vidrio Individual No Retornable     2       4    NA     2    2
## 101       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 102      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 104        2 Lts. Ret   Familiar    Retornable    NA      NA     3    NA   NA
## 105         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 106  500 ml NR Vidrio Individual No Retornable     2       2     2     2    4
## 107          8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 108       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 109  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 110       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 111      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     3      NA     3     8   NA
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable     6       3     6     6    3
## 115     12 Oz. NR Pet Individual No Retornable     3       3     5     3    8
## 116         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 117        2 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 118       2.5 Lts. NR   Familiar No Retornable     7      NA     4    NA   NA
## 119  2.5 Lts. Ret Pet   Familiar    Retornable    46      39    35    32   53
## 120     500 ml NR PET Individual No Retornable     2       4     4     6    4
## 121  500 ml NR Vidrio Individual No Retornable     8      13    11     6   13
## 122        500 ml Ret Individual    Retornable    49      46    46    38   46
## 123          8 Oz. NR Individual No Retornable     5       3     3     5    3
## 124              Lata Individual No Retornable     2       2     2     2    2
## 125       Lata 235 ml Individual No Retornable     3       3     4     2    2
## 126      1 Ltro. N.R. Individual No Retornable     1       1    NA     1    3
## 127     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 128         600 ml NR Individual No Retornable     1       1    NA     2    4
## 129      250 ml Tetra Individual No Retornable     0       0     1     0    0
## 130     413 ml NR VId Individual No Retornable     3      NA     1     1    1
## 131     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 132    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 133      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 134    300 ML. NR PET Individual No Retornable     1       0    NA     0   NA
## 135     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 136      200 ml Tetra Individual No Retornable    NA       1    NA     0    0
## 137         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 138         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 139       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 140      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 141         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 142         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 143        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 144         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 145       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 146      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 147         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 148         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 149        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 150         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 151       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 152       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 153         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 154         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 155        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 156         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 157         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 158      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 159         2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 160         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 161        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 162         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 163       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 164       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 165      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 166         2 Lts. NR   Familiar No Retornable     1      NA     1     1    3
## 167         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 168        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 169         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 170       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 171     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 172         600 ml NR Individual No Retornable     1      NA     1    NA    3
## 173         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 174         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 175      1 Ltro. N.R. Individual No Retornable     2      27     6    15   17
## 176       1.5 Lts. NR Individual No Retornable     6      41    10    16   38
## 177    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 178     350 ML NR PET Individual No Retornable    NA      NA    NA    NA    1
## 179         600 ml NR Individual No Retornable    NA       5     8     5   15
## 180       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 181    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 182       1.5 Lts. NR Individual No Retornable    NA      NA    NA     6   NA
## 183         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 184         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 185    250 ml. NR PET Individual No Retornable     4       1     1     3    5
## 186         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 187      1 Ltro. N.R.   Familiar No Retornable     1       1    NA     3    4
## 188     12 Oz. NR Pet Individual No Retornable     2       2    NA     1    2
## 189         2 Lts. NR   Familiar No Retornable     6       6     6    17    6
## 190       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 191       Lata 450 ml Individual No Retornable    NA      NA    NA     1   NA
## 192     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 193      1 Ltro. N.R.   Familiar No Retornable    NA       6    NA    NA   NA
## 194        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 195  500 ml NR Vidrio Individual No Retornable     2       2    NA    NA   NA
## 196       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 197      1 Ltro. N.R.   Familiar No Retornable     6       6     8    11    8
## 198        12 Oz. Ret Individual    Retornable     2       3    NA    NA   NA
## 199         2 Lts. NR   Familiar No Retornable     3      11     3     6    6
## 200        2 Lts. Ret   Familiar    Retornable     8       8     6    11   11
## 201       2.5 Lts. NR   Familiar No Retornable     4       7     7     7   11
## 202         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 203  500 ml NR Vidrio Individual No Retornable    11      11    11    13   11
## 204          8 Oz. NR Individual No Retornable     2       3    NA     1    1
## 205              Lata Individual No Retornable    NA      NA    NA     2    3
## 206       Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 207      1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA    2
## 208     12 Oz. NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 209         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 210  500 ml NR Vidrio Individual No Retornable    NA       4     2     2    2
## 211      1 Ltro. N.R.   Familiar No Retornable    17      11    15    11   13
## 212      1.250 Lts NR   Familiar No Retornable     8      11    29     8   13
## 213       1.5 Lts. NR   Familiar No Retornable    NA       3     3    13    6
## 214      1.5 Lts. Ret   Familiar    Retornable    16      16    19    10   22
## 215     12 Oz. NR Pet Individual No Retornable     9       8     8     6    9
## 216        12 Oz. Ret Individual    Retornable     2       3     3     3    3
## 217         2 Lts. NR   Familiar No Retornable     6       6     6    14   17
## 218        2 Lts. Ret   Familiar    Retornable     6       8     6     8    8
## 219       2.5 Lts. NR   Familiar No Retornable    18      28    25    39   28
## 220  2.5 Lts. Ret Pet   Familiar    Retornable    56      53    32    56   56
## 221         400 ml NR Individual No Retornable    NA      NA    NA     5    2
## 222     500 ml NR PET Individual No Retornable     4       2     4     6    4
## 223  500 ml NR Vidrio Individual No Retornable    21      21    15    27   25
## 224        500 ml Ret Individual    Retornable    57      53    49    87   57
## 225          8 Oz. NR Individual No Retornable     3       7     6     9    8
## 226              Lata Individual No Retornable     5      11    NA     3    6
## 227       Lata 16 Oz. Individual No Retornable     2      10    NA    NA   NA
## 228       Lata 235 ml Individual No Retornable     1       5     4     4    3
## 229      1 Ltro. N.R. Individual No Retornable     1       1     2     2    2
## 230     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 231         600 ml NR Individual No Retornable     3      NA     2     4    4
## 232     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 233   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 234      250 ml Tetra Individual No Retornable     2       0    NA     0    0
## 235    250 ML. NR VID Individual No Retornable     1      NA    NA    NA    0
## 236     413 ml NR VId Individual No Retornable     6       5     3     3    4
## 237    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 238      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 239     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 240     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 241      200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 242         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 243       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 244         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 245      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 246         2 Lts. NR   Familiar No Retornable     3       4     3     3    6
## 247       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 248         400 ml NR Individual No Retornable    NA       1     1    NA    2
## 249        500 ml Ret Individual    Retornable     2       1     2     2    1
## 250         600 ml NR Individual No Retornable    NA       1     3     1    2
## 251       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 252         2 Lts. NR   Familiar No Retornable    NA       1    NA     6    3
## 253       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 254         400 ml NR Individual No Retornable    NA       1    NA     1    1
## 255        500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 256         600 ml NR Individual No Retornable    NA       1     1     3    1
## 257       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 258         2 Lts. NR   Familiar No Retornable    NA       1    NA     3    3
## 259       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 260         400 ml NR Individual No Retornable    NA       1     1    NA    4
## 261        500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 262         600 ml NR Individual No Retornable    NA       1     2     2    1
## 263         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 264         2 Lts. NR   Familiar No Retornable     3      11    NA     6    3
## 265       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 266        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 267         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 268       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 269      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 270         2 Lts. NR   Familiar No Retornable     6      10     8     8   11
## 271       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     2    7
## 272         400 ml NR Individual No Retornable     0       1     2     0    8
## 273        500 ml Ret Individual    Retornable     2       3    NA     2    3
## 274         600 ml NR Individual No Retornable     2       2     4     3    2
## 275       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 276     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 277         600 ml NR Individual No Retornable     4       6     1     2    4
## 278       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 279         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 280         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 281       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 282         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 283      1 Ltro. N.R. Individual No Retornable     4      11    66     2    2
## 284       1.5 Lts. NR Individual No Retornable     6       3    67     3    3
## 285    300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 286         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 287         600 ml NR Individual No Retornable    NA      NA    51    NA   NA
## 288      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 289       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 290         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 291    300 ML. NR PET Individual No Retornable    NA       0     2    NA    3
## 292      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    3
## 293       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 294         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 295    250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 296         600 ml NR Individual No Retornable     3      NA     1     1   NA
## 297    250 ml. NR PET Individual No Retornable     4       1     6     5    5
## 298         400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 299      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 300      1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 301     12 Oz. NR Pet Individual No Retornable    NA       2     4     1    1
## 302         2 Lts. NR   Familiar No Retornable    NA       6     8     6   NA
## 303         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 304       Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 305       Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 306     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 307      1 Ltro. N.R.   Familiar No Retornable     2       6    NA    NA   NA
## 308     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 309  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 310      1 Ltro. N.R.   Familiar No Retornable    NA      27    NA    27   NA
## 311         2 Lts. NR   Familiar No Retornable    48      NA    NA    70   NA
## 312       2.5 Lts. NR   Familiar No Retornable    14      18     4    56   NA
## 313  500 ml NR Vidrio Individual No Retornable    13      25    32    25   NA
## 314          8 Oz. NR Individual No Retornable     2       3     2    16   NA
## 315              Lata Individual No Retornable     2      NA    NA    NA    2
## 316      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 317          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 318      1 Ltro. N.R.   Familiar No Retornable    36      27    NA    27   NA
## 319      1.250 Lts NR   Familiar No Retornable    NA      45    NA    34   NA
## 320       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 321      1.5 Lts. Ret   Familiar    Retornable    44       3    22    98   86
## 322     12 Oz. NR Pet Individual No Retornable     3      17    12    18   21
## 323        12 Oz. Ret Individual    Retornable    23      NA    NA    NA   NA
## 324         2 Lts. NR   Familiar No Retornable     8      42    NA    42   NA
## 325        2 Lts. Ret   Familiar    Retornable    NA       6    NA     8    6
## 326       2.5 Lts. NR   Familiar No Retornable    63      46   187     4   56
## 327  2.5 Lts. Ret Pet   Familiar    Retornable   240     222   278    42   95
## 328     500 ml NR PET Individual No Retornable     6       4     4     6    6
## 329  500 ml NR Vidrio Individual No Retornable    11      85    -4    25   53
## 330        500 ml Ret Individual    Retornable   192     129   205   499   11
## 331          8 Oz. NR Individual No Retornable    13      NA    15    13   NA
## 332              Lata Individual No Retornable    NA      NA     3    NA   NA
## 333       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    4
## 334       Lata 235 ml Individual No Retornable     1      15    NA    NA   NA
## 335         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 336      1 Ltro. N.R. Individual No Retornable     1       2     1     5    1
## 337     500 ml NR PET Individual No Retornable    NA      NA     1     2    1
## 338         600 ml NR Individual No Retornable     1       3     3     5    2
## 339     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 340   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 341      250 ml Tetra Individual No Retornable     2       2     0     1    1
## 342    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 343     413 ml NR VId Individual No Retornable     3       2    12     1    4
## 344     500 ml NR PET Individual No Retornable     3       1     1     4    2
## 345    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 346      1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 347    300 ML. NR PET Individual No Retornable     1      NA     1     1    1
## 348     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 349     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 350      200 ml Tetra Individual No Retornable    NA       1     1     0    0
## 351         600 ml NR Individual No Retornable     1       1     1     2    3
## 352       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 353         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 354       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 355      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 356        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 357         2 Lts. NR   Familiar No Retornable    NA      11    31     3    8
## 358        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    6
## 359    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 360         400 ml NR Individual No Retornable    NA       2     1     1    2
## 361        500 ml Ret Individual    Retornable     2      NA     7     2    8
## 362         600 ml NR Individual No Retornable     1       1     3     1    1
## 363       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 364      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 365         2 Lts. NR   Familiar No Retornable    NA       6    NA     3    6
## 366    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 367         400 ml NR Individual No Retornable     1       1    NA     1    2
## 368        500 ml Ret Individual    Retornable     2      NA     3    NA    6
## 369         600 ml NR Individual No Retornable     1      NA     1     1    1
## 370       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 371      1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 372        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 373         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11    3
## 374    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 375         400 ml NR Individual No Retornable    NA       2    NA     1    2
## 376     500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 377        500 ml Ret Individual    Retornable    NA      NA     7    NA    2
## 378         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 379         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 380      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 381         2 Lts. NR   Familiar No Retornable     8      11    28    NA   NA
## 382         400 ml NR Individual No Retornable    NA       1     0    NA    2
## 383        500 ml Ret Individual    Retornable    NA      NA     2    NA    6
## 384         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 385       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 386      1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 387       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 388      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 389        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 390         2 Lts. NR   Familiar No Retornable    NA      11    42    11   NA
## 391        2 Lts. Ret   Familiar    Retornable    NA      NA     6     6    6
## 392    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 393         400 ml NR Individual No Retornable    NA       1     1     1    0
## 394     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 395        500 ml Ret Individual    Retornable     2       2     7    NA    6
## 396         600 ml NR Individual No Retornable     3      NA     7     6    1
## 397       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 398     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 399         600 ml NR Individual No Retornable     1       6    11     5   10
## 400       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 401       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 403       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 404         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 405      1 Ltro. N.R. Individual No Retornable     4       2     2     4    4
## 406       1.5 Lts. NR Individual No Retornable     6       3     3    10    3
## 407         600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 408      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 409    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 410      1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 411    250 ml. NR PET Individual No Retornable     0      NA     0     1   NA
## 412     500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 413         600 ml NR Individual No Retornable     1       1     1    NA    1
## 414    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 415         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 416      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2    1
## 417      1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 418     12 Oz. NR Pet Individual No Retornable     2       1     1     1    2
## 419         2 Lts. NR   Familiar No Retornable     6       6     3     6    6
## 420         600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 421       Lata 235 ml Individual No Retornable    NA       0     1     1    1
## 422       Lata 237 ml Individual No Retornable     1      NA    NA    NA   NA
## 423       Lata 450 ml Individual No Retornable     1       1     1     1    1
## 424     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 425  500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 426      1 Ltro. N.R.   Familiar No Retornable    11      11    17    11    8
## 427         2 Lts. NR   Familiar No Retornable     3       6     8    11   11
## 428       2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 429         400 ml NR Individual No Retornable     2       2     3     3    3
## 430  500 ml NR Vidrio Individual No Retornable    17      13    15     8   15
## 431          8 Oz. NR Individual No Retornable     1       1     2     1    1
## 432      1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 433         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 434  500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 435          8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    21      NA    NA    NA    2
## 437      1.250 Lts NR   Familiar No Retornable    16      34    45    45   32
## 438       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 439      1.5 Lts. Ret   Familiar    Retornable    22      13    29    44   10
## 440     12 Oz. NR Pet Individual No Retornable     9       6    15    12   14
## 441        12 Oz. Ret Individual    Retornable     8       5     5     8    5
## 442         2 Lts. NR   Familiar No Retornable     3       3     6    13    3
## 443        2 Lts. Ret   Familiar    Retornable     6       3     3     8    3
## 444       2.5 Lts. NR   Familiar No Retornable    49      60    49    63   60
## 445  2.5 Lts. Ret Pet   Familiar    Retornable   102      70   116   134  130
## 446     500 ml NR PET Individual No Retornable     4       6     4     8    6
## 447  500 ml NR Vidrio Individual No Retornable    27      23    42    40   32
## 448        500 ml Ret Individual    Retornable    72      55    70    80   91
## 449         710 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 450          8 Oz. NR Individual No Retornable    21      14    15    15   16
## 451              Lata Individual No Retornable     2       3     3     2    2
## 452       Lata 235 ml Individual No Retornable     3       3     3     3    2
## 453         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 454      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 455     500 ml NR PET Individual No Retornable     1       1    NA     2   NA
## 456         600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 457      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 458    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 459     413 ml NR VId Individual No Retornable     2      NA     3     1    1
## 460    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 461      1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 462    300 ML. NR PET Individual No Retornable     1      NA    NA    NA    0
## 463     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 464     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 465      200 ml Tetra Individual No Retornable     1       0     0     0    0
## 466         600 ml NR Individual No Retornable     3       1     1     2    3
## 467         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 468       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 469      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 470         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 471       2.5 Lts. NR   Familiar No Retornable    NA      NA     7     4    4
## 472    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 473         400 ml NR Individual No Retornable     1      NA     0     0    1
## 474     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 475        500 ml Ret Individual    Retornable    NA       2    NA     3    2
## 476         600 ml NR Individual No Retornable     1       1    NA     2    1
## 477       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 478      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 479         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 480       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 481    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 482         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 483     500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 484        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 485         600 ml NR Individual No Retornable     1      NA     1     1    1
## 486       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 487         2 Lts. NR   Familiar No Retornable    NA      NA     1     3    3
## 488       2.5 Lts. NR   Familiar No Retornable    NA       4     4     7   NA
## 489    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 490         400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 491     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 492        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 493         600 ml NR Individual No Retornable     1       2     1     3    1
## 494     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 495         600 ml NR Individual No Retornable     1      NA     2    NA   NA
## 496      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 497         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 498       2.5 Lts. NR   Familiar No Retornable    NA       4    11     7    4
## 499    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 500         400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 501         600 ml NR Individual No Retornable     1      NA     1    NA    1
## 502       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 503      1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 504      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 505         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 506       2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    7
## 507    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 508         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 509     500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 510        500 ml Ret Individual    Retornable     2       2     2     1   NA
## 511         600 ml NR Individual No Retornable     2       2     1     3    3
## 512       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 513         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 514         600 ml NR Individual No Retornable     3       1     6     3    1
## 515         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 516         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 517         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 518      1 Ltro. N.R. Individual No Retornable     2       8   150     2    2
## 519       1.5 Lts. NR Individual No Retornable     3       6    10     3    3
## 520    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 521         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 522         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 523         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 524    300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 525      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 526    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 527         600 ml NR Individual No Retornable     2       1     3     1    1
## 528    250 ml. NR PET Individual No Retornable    NA      NA    NA     2    2
## 529         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 530      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 531      1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 532     12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 533         2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 534         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 535       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 536       Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 537     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 538      1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 539     237 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 540  500 ml NR Vidrio Individual No Retornable     2       4    NA    NA    2
## 541      1 Ltro. N.R.   Familiar No Retornable    11      13    13    13   42
## 542        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 543         2 Lts. NR   Familiar No Retornable    14      17    11    11   11
## 544        2 Lts. Ret   Familiar    Retornable     8       8    14    14    8
## 545       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 546  500 ml NR Vidrio Individual No Retornable    15      17    17    21   17
## 547          8 Oz. NR Individual No Retornable     2       1     3     2    3
## 548              Lata Individual No Retornable     2       2     2    NA   NA
## 549      1 Ltro. N.R.   Familiar No Retornable     2       4     4     4    2
## 550         2 Lts. NR   Familiar No Retornable    11      14    14    17   14
## 551  500 ml NR Vidrio Individual No Retornable     2       4     6     4    4
## 552       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 553      1 Ltro. N.R.   Familiar No Retornable    13      17    17    19   51
## 554      1.250 Lts NR   Familiar No Retornable    16      16    11    11    8
## 555       1.5 Lts. NR   Familiar No Retornable    13      16    16    10    6
## 556      1.5 Lts. Ret   Familiar    Retornable    32      32    48    35  120
## 557     12 Oz. NR Pet Individual No Retornable     9       6    12    14   11
## 558        12 Oz. Ret Individual    Retornable     5      NA     5     5    5
## 559         2 Lts. NR   Familiar No Retornable    17      14    14    18   20
## 560        2 Lts. Ret   Familiar    Retornable    11      11    11     6   14
## 561       2.5 Lts. NR   Familiar No Retornable    25      60    74   116  190
## 562  2.5 Lts. Ret Pet   Familiar    Retornable   120     106   116   113  225
## 563  500 ml NR Vidrio Individual No Retornable    23      25    21    38   55
## 564        500 ml Ret Individual    Retornable    80      82    97    97  222
## 565       6.5 Oz. Ret Individual    Retornable    NA       1     1    NA   NA
## 566          8 Oz. NR Individual No Retornable     3       5     6     6   20
## 567              Lata Individual No Retornable     6       3     6     6   24
## 568       Lata 16 Oz. Individual No Retornable     4       6     4     8    2
## 569       Lata 235 ml Individual No Retornable     2       4     4     4    5
## 570      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    2
## 571     500 ml NR PET Individual No Retornable    NA       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable     1       1    NA     3    1
## 573      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 574     413 ml NR VId Individual No Retornable    NA      NA     3    NA    1
## 575      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 576    300 ML. NR PET Individual No Retornable     1       1     1    NA   NA
## 577     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 578      200 ml Tetra Individual No Retornable    NA       0     0     1    1
## 579         600 ml NR Individual No Retornable     1       1     1     2    1
## 580         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 581       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 582      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    4
## 583      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 584         2 Lts. NR   Familiar No Retornable    NA      NA     4     3    6
## 585       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 586    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 587         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 588        500 ml Ret Individual    Retornable     1       2     1     1    1
## 589         600 ml NR Individual No Retornable     1       3     1     2    2
## 590       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 591      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 592         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 593    250 ml. NR PET Individual No Retornable     1       0     1     0    0
## 594         400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 595        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 596         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 597       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 598      1 Ltro. N.R.   Familiar No Retornable    NA      NA     4    NA   NA
## 599         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 600    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 601         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 602        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 603         600 ml NR Individual No Retornable    NA      NA     2     1    1
## 604         600 ml NR Individual No Retornable     2       1    NA    NA    1
## 605      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 606         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 607       2.5 Lts. NR   Familiar No Retornable     4       7     7    NA   NA
## 608         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 609         600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 610       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 611      1 Ltro. N.R.   Familiar No Retornable     8       6     8     8    4
## 612      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 613         2 Lts. NR   Familiar No Retornable     3      NA     4    NA    6
## 614       2.5 Lts. NR   Familiar No Retornable    NA       7     4     7   NA
## 615    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 616         400 ml NR Individual No Retornable     0       0     0     1    0
## 617        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 618         600 ml NR Individual No Retornable     1       3     3     3    3
## 619       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 620     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 621         600 ml NR Individual No Retornable     3      18     2     1   11
## 622       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 623       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 624         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 625         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 626      1 Ltro. N.R. Individual No Retornable     6      15     2     2    8
## 627       1.5 Lts. NR Individual No Retornable    10      13     3     6   10
## 628    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 629         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 630         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 631    300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 632     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 633    250 ml. NR PET Individual No Retornable     7       6     5     7    4
## 634         400 ml NR Individual No Retornable     3       2     3     3    2
## 635      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 636      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 637     12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 638         2 Lts. NR   Familiar No Retornable     3       3    14    25   17
## 639         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 640       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 641       Lata 450 ml Individual No Retornable    NA      NA     1     1    3
## 642     500 ml NR PET Individual No Retornable     3      NA     2     1    3
## 643      1 Ltro. N.R.   Familiar No Retornable     2       6     6    NA   NA
## 644     237 ml NR Vid Individual No Retornable     2      NA    NA     1   NA
## 645  500 ml NR Vidrio Individual No Retornable     4      NA     4     6    2
## 646      1 Ltro. N.R.   Familiar No Retornable    44      66    40    46   72
## 647        12 Oz. Ret Individual    Retornable    14      11    11    14   15
## 648         2 Lts. NR   Familiar No Retornable    99     116    68    76  113
## 649        2 Lts. Ret   Familiar    Retornable    82      76    82    82  104
## 650       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 651  500 ml NR Vidrio Individual No Retornable    42      40    40    68   46
## 652          8 Oz. NR Individual No Retornable    15      16    16    18   17
## 653              Lata Individual No Retornable     8       8     9     8    9
## 654         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 655      1 Ltro. N.R.   Familiar No Retornable     6       8     8     4    4
## 656         2 Lts. NR   Familiar No Retornable    34      14    37    31   42
## 657  500 ml NR Vidrio Individual No Retornable     6       2     6     4    4
## 658          8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 659      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    8
## 660      1.250 Lts NR   Familiar No Retornable    98     114    69    87   74
## 661       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 662      1.5 Lts. Ret   Familiar    Retornable     3       6     3     3    3
## 663     12 Oz. NR Pet Individual No Retornable     9       6     6    14    9
## 664        12 Oz. Ret Individual    Retornable    17      14    14    17   12
## 665         2 Lts. NR   Familiar No Retornable    82      96    54    93   85
## 666        2 Lts. Ret   Familiar    Retornable    34      31    23    56   34
## 667       2.5 Lts. NR   Familiar No Retornable   109     180   127   106  169
## 668  2.5 Lts. Ret Pet   Familiar    Retornable   120     116   144   173  183
## 669         400 ml NR Individual No Retornable     2      NA    NA    NA    2
## 670  500 ml NR Vidrio Individual No Retornable    44      38    61    89   87
## 671        500 ml Ret Individual    Retornable    82      78    72   123   53
## 672          8 Oz. NR Individual No Retornable    30      20    21    30   29
## 673              Lata Individual No Retornable     6       5     9     6    8
## 674       Lata 16 Oz. Individual No Retornable     2      NA     4     4    2
## 675       Lata 235 ml Individual No Retornable    NA       2     2     4    1
## 676         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 677      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 678     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 679     1 Ltro. Tetra   Familiar No Retornable    23      19    15    20   13
## 680      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 681    250 ML. NR VID Individual No Retornable     4       3     5     2    3
## 682     413 ml NR VId Individual No Retornable     5      20    19    NA   37
## 683    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 684      1 Ltro. N.R.   Familiar No Retornable     4       4     4     2    4
## 685     1 Ltro. Tetra   Familiar No Retornable     2       2     2     2   NA
## 686     1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 687     1 Ltro. Tetra   Familiar No Retornable     4       2     1     3    2
## 688     1 Ltro. Tetra   Familiar No Retornable     2       2     3     3    1
## 689      200 ml Tetra Individual No Retornable     0       1     0     0    0
## 690         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 691         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 692         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 693         600 ml NR Individual No Retornable     8       5     9    14    7
## 694         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 695        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 696         2 Lts. NR   Familiar No Retornable    NA       3     8     6   20
## 697        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 698         400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 699        500 ml Ret Individual    Retornable     1       2    NA     1   NA
## 700         600 ml NR Individual No Retornable     1       4     1     3    4
## 701       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 702         2 Lts. NR   Familiar No Retornable    NA       3     8     8    3
## 703         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 704        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 705         600 ml NR Individual No Retornable    NA       4     3     2    2
## 706       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 707         2 Lts. NR   Familiar No Retornable    NA      NA     6     3   NA
## 708         400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 709        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 710         600 ml NR Individual No Retornable     1       5     3     3    1
## 711         600 ml NR Individual No Retornable     1       2     4     4    1
## 712         2 Lts. NR   Familiar No Retornable     8      14     6    17   20
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 715         600 ml NR Individual No Retornable     1       3     3     3    4
## 716       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 717        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 718         2 Lts. NR   Familiar No Retornable     3      14    17    20   11
## 719    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 720         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 721        500 ml Ret Individual    Retornable     1      NA     2     3   NA
## 722         600 ml NR Individual No Retornable     1       5     5     3    3
## 723       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 724         600 ml NR Individual No Retornable     5      NA     1     3   NA
## 725     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 726         600 ml NR Individual No Retornable    16      13    13    22   14
## 727         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 728         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 729      1 Ltro. N.R. Individual No Retornable     6      55    11    NA   25
## 730       1.5 Lts. NR Individual No Retornable    NA      38     6    NA   48
## 731     355 Ml NR Pet Individual No Retornable     2      20    NA    NA    8
## 732         5 Lts. NR   Familiar No Retornable    35     106    28    25   49
## 733         600 ml NR Individual No Retornable     8      33    NA    13   18
## 734      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 735         473 ml NR Individual No Retornable     2      NA    NA     1   NA
## 736    250 ml. NR PET Individual No Retornable     3      NA     3     1   NA
## 737         600 ml NR Individual No Retornable     3       5    NA    NA   NA
## 738    250 ml. NR PET Individual No Retornable     8       8     2     2    4
## 739         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 740      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 741      1 Ltro. N.R. Individual No Retornable    NA      NA     4     2   NA
## 742     12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 743         2 Lts. NR   Familiar No Retornable    11      17     6    17    6
## 744         600 ml NR Individual No Retornable     3       3     3    NA    3
## 745       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 746       Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 747     500 ml NR PET Individual No Retornable     3      NA     3    NA    3
## 748      1 Ltro. N.R.   Familiar No Retornable     6      NA     6    NA   NA
## 749     237 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 750  500 ml NR Vidrio Individual No Retornable     2       2     6     8    4
## 751         600 ml NR Individual No Retornable    NA      NA    NA     5   13
## 752              Lata Individual No Retornable    NA       2     2     2   NA
## 753      1 Ltro. N.R.   Familiar No Retornable    72      72    59   127   87
## 754         2 Lts. NR   Familiar No Retornable    37     155   189    NA  121
## 755  500 ml NR Vidrio Individual No Retornable    38      68    38    74   82
## 756         600 ml NR Individual No Retornable    NA       5     8     5   10
## 757          8 Oz. NR Individual No Retornable    15      11    21    NA   40
## 758              Lata Individual No Retornable     6       5    11     9   17
## 759         600 ml NR Individual No Retornable     8       5     5     8    5
## 760       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 761      1 Ltro. N.R.   Familiar No Retornable    11      15    13    15   17
## 762         2 Lts. NR   Familiar No Retornable    17      23    28    31   17
## 763  500 ml NR Vidrio Individual No Retornable     4       4     6     6    6
## 764         600 ml NR Individual No Retornable     5       8     5     8    8
## 765          8 Oz. NR Individual No Retornable     2       2     1     1    2
## 766              Lata Individual No Retornable    NA       2     2    NA    3
## 767      1 Ltro. N.R.   Familiar No Retornable    95     159    32   161  118
## 768      1.250 Lts NR   Familiar No Retornable    NA      NA    58    90   21
## 769       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 770      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 771     12 Oz. NR Pet Individual No Retornable     3      NA    NA    NA   NA
## 772         2 Lts. NR   Familiar No Retornable   163     217   355   107  192
## 773       2.5 Lts. NR   Familiar No Retornable   123     240   335   183  243
## 774  2.5 Lts. Ret Pet   Familiar    Retornable    46     204   190   134  183
## 775         400 ml NR Individual No Retornable    27      24    41     8   71
## 776     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 777  500 ml NR Vidrio Individual No Retornable    68      76   135   120  116
## 778        500 ml Ret Individual    Retornable   154     139    95   224   87
## 779       6.5 Oz. Ret Individual    Retornable     2       1    NA    NA   NA
## 780         600 ml NR Individual No Retornable    28      10    20    20   20
## 781          8 Oz. NR Individual No Retornable    24      22    35    10   68
## 782              Lata Individual No Retornable    18      18    24    21   41
## 783       Lata 16 Oz. Individual No Retornable    10      NA    NA     4    6
## 784         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 785      1 Ltro. N.R. Individual No Retornable    NA      NA     1     2    2
## 786     500 ml NR PET Individual No Retornable     2       2     2    NA    3
## 787         600 ml NR Individual No Retornable    NA      NA     3     3   NA
## 788     1 Ltro. Tetra   Familiar No Retornable    20      13     9    13   30
## 789      250 ml Tetra Individual No Retornable     8      NA     4    NA    2
## 790    250 ML. NR VID Individual No Retornable     3       1     2    NA    2
## 791     413 ml NR VId Individual No Retornable    20      24    19    NA   NA
## 792       Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 793      1 Ltro. N.R.   Familiar No Retornable     4       4    NA     2    4
## 794    300 ML. NR PET Individual No Retornable     2       1     1     1    0
## 795     1 Ltro. Tetra   Familiar No Retornable    13      10    14     8   10
## 796     1 Ltro. Tetra   Familiar No Retornable     6       3    10    11    8
## 797     1 Ltro. Tetra   Familiar No Retornable    10       6     7    12   10
## 798     1 Ltro. Tetra   Familiar No Retornable    11       5     4     7    6
## 799      200 ml Tetra Individual No Retornable     2       2     3     1    6
## 800         600 ml NR Individual No Retornable     5       3    NA    NA    8
## 801         600 ml NR Individual No Retornable    NA       5     3     3    3
## 802         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 803         600 ml NR Individual No Retornable     5       5     5    10    3
## 804         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 805         2 Lts. NR   Familiar No Retornable    NA       6     6    14   NA
## 806    250 ml. NR PET Individual No Retornable     1       3     3     1    1
## 807         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 808         600 ml NR Individual No Retornable     3      NA    NA     3    8
## 809         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 810    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 811         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 812         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 813         2 Lts. NR   Familiar No Retornable    NA      11    NA    11    3
## 814    250 ml. NR PET Individual No Retornable     3      NA     1     3    3
## 815         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 816         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 817         600 ml NR Individual No Retornable    NA       3    NA     3    5
## 818         2 Lts. NR   Familiar No Retornable    NA       8     3    11    3
## 819    250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 820         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 821        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 822         600 ml NR Individual No Retornable     3       5    NA     5    5
## 823      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable    NA      14     8    48    6
## 825       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 826    250 ml. NR PET Individual No Retornable     5       1     3     4    4
## 827         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 828        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 829         600 ml NR Individual No Retornable     3      NA     3    NA   10
## 830         600 ml NR Individual No Retornable     5       6     3     7    4
## 831     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 832         600 ml NR Individual No Retornable    15      18    16     6   21
## 833       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 834         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 835         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 836      1 Ltro. N.R. Individual No Retornable    13      19    17    13   15
## 837       1.5 Lts. NR Individual No Retornable    10      19    19    19   29
## 838         600 ml NR Individual No Retornable     3       5     5     5    8
## 839      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 840    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 841    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 842         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 843    250 ml. NR PET Individual No Retornable     1      NA    NA     0    0
## 844      1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    5
## 845      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 846     12 Oz. NR Pet Individual No Retornable    NA       2     2     1    1
## 847         2 Lts. NR   Familiar No Retornable     6       3     6     6   11
## 848         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 849       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 850       Lata 450 ml Individual No Retornable    NA       3    NA     1    1
## 851        12 Oz. Ret Individual    Retornable    NA      NA     2    NA    2
## 852     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 853  500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 854       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 855      1 Ltro. N.R.   Familiar No Retornable    23      25    21    21   27
## 856        12 Oz. Ret Individual    Retornable    15      17    18    15   23
## 857         2 Lts. NR   Familiar No Retornable    28      20    14    20   17
## 858        2 Lts. Ret   Familiar    Retornable    23      20    25    23   34
## 859         400 ml NR Individual No Retornable     7       8     5     7   10
## 860  500 ml NR Vidrio Individual No Retornable    19      19    23    23   23
## 861          8 Oz. NR Individual No Retornable     3       5     2     7    4
## 862              Lata Individual No Retornable     5       6     6     8    8
## 863      1 Ltro. N.R.   Familiar No Retornable     6      13     8     6    8
## 864         2 Lts. NR   Familiar No Retornable    NA      NA     3     6    3
## 865         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 866  500 ml NR Vidrio Individual No Retornable     4       4     6     8    8
## 867          8 Oz. NR Individual No Retornable     1       2    NA     1    2
## 868      1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA   NA
## 869      1.250 Lts NR   Familiar No Retornable    45      61    40    53   55
## 870       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 871      1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 872     12 Oz. NR Pet Individual No Retornable    14      14    11    11   14
## 873        12 Oz. Ret Individual    Retornable    11      12    11    11    9
## 874         2 Lts. NR   Familiar No Retornable    NA       6    NA     6   NA
## 875        2 Lts. Ret   Familiar    Retornable    23      14    11     8    8
## 876       2.5 Lts. NR   Familiar No Retornable    63      56    63    67   63
## 877  2.5 Lts. Ret Pet   Familiar    Retornable   190     208   116   201  240
## 878         400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 879  500 ml NR Vidrio Individual No Retornable    36      32    38    34   38
## 880        500 ml Ret Individual    Retornable    80      80    59    85   87
## 881          8 Oz. NR Individual No Retornable    12      13     6    15   12
## 882              Lata Individual No Retornable     8       6     9     9   11
## 883       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 884       Lata 235 ml Individual No Retornable    NA       2     1    NA   NA
## 885         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 886      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    7
## 887     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 888         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 889     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 890      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 891    250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 892     413 ml NR VId Individual No Retornable     3       3     2     3    3
## 893    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 894      1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    4
## 895     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 896     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 897      200 ml Tetra Individual No Retornable     0       0     0     0    1
## 898         600 ml NR Individual No Retornable     3       4     4     4    4
## 899         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 900       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 901      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 902         2 Lts. NR   Familiar No Retornable     3       3     1     4    4
## 903    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 904         400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 905        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 906         600 ml NR Individual No Retornable     1       1     1     1    1
## 907       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 908         2 Lts. NR   Familiar No Retornable     3      NA     1     4    9
## 909    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 910         400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 911        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 912         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 913       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 914         2 Lts. NR   Familiar No Retornable    NA      NA     1     1    1
## 915    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 916         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 917        500 ml Ret Individual    Retornable    NA       2    NA     1    2
## 918         600 ml NR Individual No Retornable    NA       2     1     1    1
## 919         600 ml NR Individual No Retornable     1       4     1     1    3
## 920         2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 921    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 922        500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 923       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 924      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 925         2 Lts. NR   Familiar No Retornable     6       8     4     9   18
## 926    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 927         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 928        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 929         600 ml NR Individual No Retornable     4       4     4     3    4
## 930       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 931     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 932         600 ml NR Individual No Retornable    NA      NA    NA     1   10
## 933       Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 934         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 935       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 936         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 937      1 Ltro. N.R. Individual No Retornable     2       2     2     6    2
## 938       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 939         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 940      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 941    300 ML. NR PET Individual No Retornable    NA      NA     1     1    1
## 942    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 943         600 ml NR Individual No Retornable     1      NA     1     4    1
## 944    250 ml. NR PET Individual No Retornable     1      NA     2     1   NA
## 945         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 946      1 Ltro. N.R.   Familiar No Retornable     1       1     1    NA    1
## 947      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 948     12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 949         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 950      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 951  500 ml NR Vidrio Individual No Retornable     4       4     2     2   NA
## 952      1 Ltro. N.R.   Familiar No Retornable    25      30    27    27   36
## 953        12 Oz. Ret Individual    Retornable     8       6     5     3    6
## 954         2 Lts. NR   Familiar No Retornable    39      28    31    37   39
## 955        2 Lts. Ret   Familiar    Retornable    28      28    17    25   28
## 956  500 ml NR Vidrio Individual No Retornable    25      25    11    19   21
## 957         600 ml NR Individual No Retornable     5      10    10    10    8
## 958          8 Oz. NR Individual No Retornable     4       5     4     4    6
## 959              Lata Individual No Retornable     5       9     5     5    8
## 960       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 961      1 Ltro. N.R.   Familiar No Retornable     4       8     6     8    8
## 962         2 Lts. NR   Familiar No Retornable     6       6    14    11    8
## 963  500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 964         600 ml NR Individual No Retornable     5       3     3     5    5
## 965          8 Oz. NR Individual No Retornable     1       1     3     1    3
## 966      1 Ltro. N.R.   Familiar No Retornable    34      34    34    42   42
## 967      1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 968       1.5 Lts. NR   Familiar No Retornable    25      22    22    22   29
## 969      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 970     12 Oz. NR Pet Individual No Retornable     6       8    11     8   11
## 971        12 Oz. Ret Individual    Retornable    11       5     3     6    2
## 972         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11   NA
## 973        2 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 974       2.5 Lts. NR   Familiar No Retornable    49      88    77    95  130
## 975  2.5 Lts. Ret Pet   Familiar    Retornable    49      70    67    53   39
## 976         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 977     500 ml NR PET Individual No Retornable    13      13    11    15   17
## 978  500 ml NR Vidrio Individual No Retornable    27      44    59    19   36
## 979        500 ml Ret Individual    Retornable    36      42    38    55   30
## 980       6.5 Oz. Ret Individual    Retornable     2       2     2     2    2
## 981         710 ml NR Individual No Retornable    15      12     9    12   12
## 982          8 Oz. NR Individual No Retornable    15      17    17    23   22
## 983              Lata Individual No Retornable     3       6     3     9    3
## 984       Lata 16 Oz. Individual No Retornable     4       6     2     6    2
## 985       Lata 235 ml Individual No Retornable     3       4     2     3    2
## 986         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 987      1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 988     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 989         600 ml NR Individual No Retornable     4      NA     3     1    2
## 990     1 Ltro. Tetra   Familiar No Retornable     4       4     5     2    4
## 991   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 992      250 ml Tetra Individual No Retornable     1       0     2     0    0
## 993    250 ML. NR VID Individual No Retornable     2       3     2     1    2
## 994     413 ml NR VId Individual No Retornable     6       1     4     3    8
## 995       Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 996    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 997      1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 998    300 ML. NR PET Individual No Retornable     2      NA     1     1    1
## 999     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1000    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1002     200 ml Tetra Individual No Retornable     1       1     1     0    1
## 1003        600 ml NR Individual No Retornable     4       1     3     2    4
## 1004      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1007     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1008        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1009        400 ml NR Individual No Retornable    NA      NA     0     0    1
## 1010    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1011       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1012        600 ml NR Individual No Retornable     1       2     2     1    3
## 1013      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1014     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 1015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1016     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1017        2 Lts. NR   Familiar No Retornable    NA       3     3     3    6
## 1018        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1019       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1020        600 ml NR Individual No Retornable     1       1    NA     1    3
## 1021      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1022     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2    2
## 1023        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1024    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1025       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1026        600 ml NR Individual No Retornable     3      NA     2     1    1
## 1027        600 ml NR Individual No Retornable     3       1     3     1   NA
## 1028        2 Lts. NR   Familiar No Retornable     6       6    14    14   14
## 1029        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1030       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1031        600 ml NR Individual No Retornable     3       1     5     1    3
## 1032      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1033     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     4    4
## 1034        2 Lts. NR   Familiar No Retornable     3       6     8     3   14
## 1035   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1036        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1037       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 1038        600 ml NR Individual No Retornable     1       3     1     2    3
## 1039      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1040        600 ml NR Individual No Retornable     8      11     5     4    6
## 1041      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1042       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1043        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1044        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1045     1 Ltro. N.R. Individual No Retornable     4       4     2     2    2
## 1046      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 1047     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1048   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1049   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1050        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 1051   250 ml. NR PET Individual No Retornable     1       1     1     1    4
## 1052        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1053     1 Ltro. N.R.   Familiar No Retornable     1       1     1     2    1
## 1054     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 1055    12 Oz. NR Pet Individual No Retornable     2       1     2     2    1
## 1056        2 Lts. NR   Familiar No Retornable    NA      NA    11    NA   NA
## 1057        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1058      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1059    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1060        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1061      Lata 235 ml Individual No Retornable     1      NA     1     1   NA
## 1062     1 Ltro. N.R.   Familiar No Retornable    11       8    13    13   11
## 1063        2 Lts. NR   Familiar No Retornable     8       8     3     6    3
## 1064       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1065 500 ml NR Vidrio Individual No Retornable    21      21    19    23   25
## 1066         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 1067      Lata 235 ml Individual No Retornable    NA       1     1     1   NA
## 1068        600 ml NR Individual No Retornable     2       1     2     3    3
## 1069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1070     1.250 Lts NR   Familiar No Retornable    21      24    29    37   29
## 1071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1072     1.5 Lts. Ret   Familiar    Retornable     3       3     3    13    6
## 1073    12 Oz. NR Pet Individual No Retornable     5       6     8    11    5
## 1074       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1075        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1076      2.5 Lts. NR   Familiar No Retornable    35      53    53    60   42
## 1077 2.5 Lts. Ret Pet   Familiar    Retornable    70      74    70    95   81
## 1078 500 ml NR Vidrio Individual No Retornable    23      25    30    38   27
## 1079       500 ml Ret Individual    Retornable    74      72    89    95   91
## 1080      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1081         8 Oz. NR Individual No Retornable     3       2     4     8    5
## 1082             Lata Individual No Retornable     3       2     5     5    3
## 1083      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 1084     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1085    500 ml NR PET Individual No Retornable     1       1    NA     1    1
## 1086        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1087     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1088   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 1089    413 ml NR VId Individual No Retornable     2       3     2     5    5
## 1090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1091    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1095     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1096        600 ml NR Individual No Retornable     3       1     3     4    3
## 1097        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1098        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1099   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1100        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1101       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1102        600 ml NR Individual No Retornable     1       2     3     4    3
## 1103      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1104      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1105        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1106   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1107        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1108       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1109        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1110      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1111        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1112   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1113        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1114       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1115        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1116        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1117        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 1118        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 1119       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1120        600 ml NR Individual No Retornable     1      NA     3     3    3
## 1121      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1122        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 1123   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1124        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1125       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1126        600 ml NR Individual No Retornable     1       2     3     4    3
## 1127      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1128        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1129    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1130        600 ml NR Individual No Retornable     3      NA     3    NA   NA
## 1131      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1132      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1134        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1135     1 Ltro. N.R. Individual No Retornable     2       2     2     2    4
## 1136      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 1137        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1138        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1139     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1140   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1141   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1142   250 ml. NR PET Individual No Retornable     2       3     3     5    3
## 1143        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1144     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     2    1
## 1145     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1146    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 1147        2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 1148      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1149      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1152     1 Ltro. N.R.   Familiar No Retornable     4      11    13     8   11
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1154      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1155 500 ml NR Vidrio Individual No Retornable     2       8     6    11    8
## 1156         8 Oz. NR Individual No Retornable     2       1     2     1    2
## 1157             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1158     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1159     1.250 Lts NR   Familiar No Retornable    21      26    37    26   24
## 1160      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1161     1.5 Lts. Ret   Familiar    Retornable     6       6    16     6   25
## 1162    12 Oz. NR Pet Individual No Retornable    12       9     6    11   12
## 1163        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 1164      2.5 Lts. NR   Familiar No Retornable     7      11    18    32   35
## 1165 2.5 Lts. Ret Pet   Familiar    Retornable   155     113   159   169  180
## 1166    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 1167 500 ml NR Vidrio Individual No Retornable    17      15    21    19   25
## 1168       500 ml Ret Individual    Retornable   106      74    95   114   95
## 1169         8 Oz. NR Individual No Retornable     4       1     4     4    4
## 1170             Lata Individual No Retornable     2       3     3     3    3
## 1171      Lata 16 Oz. Individual No Retornable    NA       2     4     4    2
## 1172      Lata 235 ml Individual No Retornable    NA       1    NA     1    2
## 1173     1 Ltro. N.R. Individual No Retornable     1       1     1     3    1
## 1174    500 ml NR PET Individual No Retornable     1      NA    NA     1   NA
## 1175        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1176    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1177     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1178    413 ml NR VId Individual No Retornable     4       2     2     3    2
## 1179   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1180     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1181   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 1182    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1183    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1184    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1185     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1186        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1187        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1188        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1189        600 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 1190        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1191        2 Lts. NR   Familiar No Retornable    NA       1     1     3    1
## 1192   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1193        400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 1194       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1195        600 ml NR Individual No Retornable     2       1     1     1    2
## 1196             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1197      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1198      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1199        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1200   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1201       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1202        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1203             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1204      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1205        2 Lts. NR   Familiar No Retornable    NA       1     4    NA    1
## 1206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1207        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1208       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1209        600 ml NR Individual No Retornable     2       1     1     1    1
## 1210             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1212        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1213      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1215        2 Lts. NR   Familiar No Retornable     3       1     4    NA    1
## 1216   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1217        400 ml NR Individual No Retornable     0      NA     0     0    0
## 1218       500 ml Ret Individual    Retornable     4       1     1    NA    1
## 1219        600 ml NR Individual No Retornable     2       1     1     1    2
## 1220             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1221      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1222        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1223        600 ml NR Individual No Retornable    NA       4     3     4   10
## 1224      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1225        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1226        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1227     1 Ltro. N.R. Individual No Retornable     2       2     6     2    2
## 1228      1.5 Lts. NR Individual No Retornable    NA       3     6     3   10
## 1229        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 1230        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1231   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1232   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1233        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1234   250 ml. NR PET Individual No Retornable     0       1    NA    NA   NA
## 1235        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1236     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1237    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1238     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1239       12 Oz. Ret Individual    Retornable    NA       2    NA    NA    2
## 1240        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1241 500 ml NR Vidrio Individual No Retornable     6       4     2     4    6
## 1242         8 Oz. NR Individual No Retornable    NA       1     2     2    3
## 1243     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1244     1.250 Lts NR   Familiar No Retornable     5      11    13     8   11
## 1245      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1246     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1247    12 Oz. NR Pet Individual No Retornable     5       3     6     3    6
## 1248      2.5 Lts. NR   Familiar No Retornable    NA       4    14    14   25
## 1249 2.5 Lts. Ret Pet   Familiar    Retornable    21      42    42    56   63
## 1250 500 ml NR Vidrio Individual No Retornable     8      13    13    11   13
## 1251       500 ml Ret Individual    Retornable    23      42    40    40   44
## 1252         8 Oz. NR Individual No Retornable     1       2     2     2    1
## 1253             Lata Individual No Retornable    NA      NA     2    NA    2
## 1254      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 1255     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1256    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1257     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1258   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 1259    413 ml NR VId Individual No Retornable     3       6     1     5    4
## 1260      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 1261     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1262        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1263      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1264       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1265        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1266   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1267        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1268       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1269        600 ml NR Individual No Retornable     1       2     1     1    1
## 1270      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 1272   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1273        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1274       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1275      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1276   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1277        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1278       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1279        600 ml NR Individual No Retornable     2       1     1     1   NA
## 1280       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1281        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1282      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1283     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1284        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1285   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1286        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1287       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1288        600 ml NR Individual No Retornable     2       2     1     3    1
## 1289      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1290        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 1291        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1292        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1293     1 Ltro. N.R. Individual No Retornable     2      NA     4     2    4
## 1294      1.5 Lts. NR Individual No Retornable     3      NA     6     3    6
## 1295        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1296        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1297   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1298   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1299        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1300   250 ml. NR PET Individual No Retornable     3       1     4     3    1
## 1301        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1302     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 1303    12 Oz. NR Pet Individual No Retornable     2      NA     1     1    1
## 1304    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1305 500 ml NR Vidrio Individual No Retornable     2       2    NA     4    2
## 1306      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1307     1 Ltro. N.R.   Familiar No Retornable    11       8     8    13   15
## 1308       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1309        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1310       2 Lts. Ret   Familiar    Retornable     6       8     6    11    8
## 1311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1312        400 ml NR Individual No Retornable    NA      NA     2     3    3
## 1313 500 ml NR Vidrio Individual No Retornable     4       2     6     8   11
## 1314        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1315         8 Oz. NR Individual No Retornable     1       1    NA     1    2
## 1316             Lata Individual No Retornable    NA       2    NA     2    2
## 1317     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 1318 500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 1319        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1320     1 Ltro. N.R.   Familiar No Retornable    13      11    11     8   17
## 1321     1.250 Lts NR   Familiar No Retornable    13      11    16    18   11
## 1322      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1323     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1324    12 Oz. NR Pet Individual No Retornable     5      11     9     8   11
## 1325        2 Lts. NR   Familiar No Retornable     6       3     3     6    3
## 1326       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     6   NA
## 1327      2.5 Lts. NR   Familiar No Retornable    NA      18    21    21   25
## 1328 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    81    99   81
## 1329 500 ml NR Vidrio Individual No Retornable    11       6     8    15   11
## 1330       500 ml Ret Individual    Retornable    34      49    59    59   44
## 1331         8 Oz. NR Individual No Retornable     9       7    11     8   14
## 1332             Lata Individual No Retornable     6       5     5     6    8
## 1333      Lata 235 ml Individual No Retornable     2      NA     1    NA   NA
## 1334     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1335    500 ml NR PET Individual No Retornable     1      NA     2    NA   NA
## 1336        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1337     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1338    413 ml NR VId Individual No Retornable    NA      NA     2    NA   NA
## 1339    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1341     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1342        600 ml NR Individual No Retornable     1       1     1     1    1
## 1343        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1344     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2   NA
## 1345        2 Lts. NR   Familiar No Retornable    NA       3     6     6    8
## 1346   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1347        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1348       500 ml Ret Individual    Retornable    NA       2    NA     3    1
## 1349        600 ml NR Individual No Retornable     1       1     1     3    1
## 1350      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1351      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1352        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1353   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1354        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1356        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1357      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1358   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1359        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1360       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1361        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1362        600 ml NR Individual No Retornable     1       1     1     1    2
## 1363        2 Lts. NR   Familiar No Retornable     3       3    11     6    8
## 1364        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1365       500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 1366        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1367      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1368     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1370   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1371        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 1372       500 ml Ret Individual    Retornable    NA      NA     2     3    1
## 1373        600 ml NR Individual No Retornable     2       2     1     1    1
## 1374      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1375    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1376        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1378      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1379        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1380     1 Ltro. N.R. Individual No Retornable    19     108     2     2   13
## 1381      1.5 Lts. NR Individual No Retornable    16      73     3     3   16
## 1382    355 Ml NR Pet Individual No Retornable     3      18    NA    NA   NA
## 1383        5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 1384        600 ml NR Individual No Retornable     8      48    NA    NA   NA
## 1385     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1386   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1387   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1388        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1389   250 ml. NR PET Individual No Retornable     3       1    NA     2    2
## 1390        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1391     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    2
## 1392     1 Ltro. N.R. Individual No Retornable    NA       2     4    NA   NA
## 1393    12 Oz. NR Pet Individual No Retornable     2       2     3     1    2
## 1394        2 Lts. NR   Familiar No Retornable    NA       8     8     3    6
## 1395      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1396    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1397 500 ml NR Vidrio Individual No Retornable     4       4     2     2    6
## 1398     1 Ltro. N.R.   Familiar No Retornable    15       8    15    15   13
## 1399       12 Oz. Ret Individual    Retornable     2       2     2     2    2
## 1400      2.5 Lts. NR   Familiar No Retornable    11       7    11     4    7
## 1401        400 ml NR Individual No Retornable     3       3     5     3    2
## 1402 500 ml NR Vidrio Individual No Retornable    15      15    17    19   30
## 1403         8 Oz. NR Individual No Retornable     4       6     5     7    9
## 1404             Lata Individual No Retornable     3       2     5     5    3
## 1405      Lata 235 ml Individual No Retornable     1       2     2     1   NA
## 1406     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1407        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1408 500 ml NR Vidrio Individual No Retornable     4       2     4     6    8
## 1409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1410         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1411     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1412     1.250 Lts NR   Familiar No Retornable    40      26    40    45   21
## 1413      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1414     1.5 Lts. Ret   Familiar    Retornable    25      35    73    54   16
## 1415    12 Oz. NR Pet Individual No Retornable    17      15    21    39   12
## 1416       12 Oz. Ret Individual    Retornable    NA       2     3     3    3
## 1417        2 Lts. NR   Familiar No Retornable     3      NA    NA     6   NA
## 1418      2.5 Lts. NR   Familiar No Retornable    42      28    81     4   NA
## 1419 2.5 Lts. Ret Pet   Familiar    Retornable   151     127   151   134  229
## 1420    500 ml NR PET Individual No Retornable     4       4     4    NA   NA
## 1421 500 ml NR Vidrio Individual No Retornable    36      36    44    30   32
## 1422       500 ml Ret Individual    Retornable    82      68    85    91   97
## 1423      6.5 Oz. Ret Individual    Retornable     2       1     1     1    1
## 1424         8 Oz. NR Individual No Retornable     9       8    13     9   13
## 1425             Lata Individual No Retornable     9       6     6     8    9
## 1426      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1427      Lata 235 ml Individual No Retornable     7       7     5     4    5
## 1428     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 1429    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1430        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1431    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1432     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 1433   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1434    413 ml NR VId Individual No Retornable     2      NA     2     1    1
## 1435   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1436     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA    2
## 1437   300 ML. NR PET Individual No Retornable    NA       3     1     2   NA
## 1438    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1439     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1440        600 ml NR Individual No Retornable     5      NA    NA    NA    3
## 1441        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1442        2 Lts. NR   Familiar No Retornable    NA      NA     1     3    6
## 1443      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA    4
## 1444   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1445        400 ml NR Individual No Retornable     0       1     2     1    3
## 1446       500 ml Ret Individual    Retornable     2      NA     3     2    4
## 1447        600 ml NR Individual No Retornable     1       1     1     2    2
## 1448      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1449      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1450        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1451   250 ml. NR PET Individual No Retornable     0       1     1     0    0
## 1452        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1453       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 1454        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1455      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1456        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1457      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1459        400 ml NR Individual No Retornable    NA      NA     0     1   NA
## 1460       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 1461        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1462        600 ml NR Individual No Retornable     3       1     1     3    2
## 1463     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1464        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 1465      2.5 Lts. NR   Familiar No Retornable    11      NA    11    NA   NA
## 1466        400 ml NR Individual No Retornable    NA       1    NA     0    3
## 1467       500 ml Ret Individual    Retornable     4       2    11     4    6
## 1468        600 ml NR Individual No Retornable     3      NA    NA     1    3
## 1469      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1470      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1471        2 Lts. NR   Familiar No Retornable    NA       6     1    NA    4
## 1472      2.5 Lts. NR   Familiar No Retornable    11       4     7     7    7
## 1473   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1474        400 ml NR Individual No Retornable     1       2     2     2    1
## 1475       500 ml Ret Individual    Retornable     2      NA     1     2   11
## 1476        600 ml NR Individual No Retornable     3       1     1     3    1
## 1477      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1479    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1480        600 ml NR Individual No Retornable     6      10     4     4    6
## 1481      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1482      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1483        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1486     1 Ltro. N.R. Individual No Retornable     6      27    11     4    2
## 1487      1.5 Lts. NR Individual No Retornable     3       3    10    13    3
## 1488        5 Lts. NR   Familiar No Retornable    18      28    14    14   28
## 1489        600 ml NR Individual No Retornable    NA      10    NA     8   NA
## 1490        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1491      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1492        473 ml NR Individual No Retornable     1       1     1     2    3
## 1493        600 ml NR Individual No Retornable     4       3     3     3    4
## 1494   250 ml. NR PET Individual No Retornable     6       2    NA     2    6
## 1495        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1496     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 1497    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 1498        2 Lts. NR   Familiar No Retornable    NA      37    NA    28   NA
## 1499        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1500      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1501      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 1502    500 ml NR PET Individual No Retornable    NA       3    NA     1    1
## 1503     1 Ltro. N.R.   Familiar No Retornable     6       8     8     8   13
## 1504        2 Lts. NR   Familiar No Retornable     6       6     3    14    8
## 1505       2 Lts. Ret   Familiar    Retornable     6      NA     3     3    6
## 1506        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1507 500 ml NR Vidrio Individual No Retornable    17      32    17    21   40
## 1508         8 Oz. NR Individual No Retornable     2       1     4     3    3
## 1509             Lata Individual No Retornable    NA       2    NA     2    2
## 1510     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1511 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1512        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1513     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1514     1.250 Lts NR   Familiar No Retornable    48      71    32    42   77
## 1515      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1516     1.5 Lts. Ret   Familiar    Retornable    22      19    25    25   29
## 1517    12 Oz. NR Pet Individual No Retornable    17      12    15    15   30
## 1518        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 1519       2 Lts. Ret   Familiar    Retornable    11       6     8     8   14
## 1520      2.5 Lts. NR   Familiar No Retornable    49      88    49    88  102
## 1521 2.5 Lts. Ret Pet   Familiar    Retornable    74     232    42   144  236
## 1522 500 ml NR Vidrio Individual No Retornable    25      53    11    19   44
## 1523       500 ml Ret Individual    Retornable    23     101    25    80  118
## 1524         8 Oz. NR Individual No Retornable     6       4     8     7    6
## 1525             Lata Individual No Retornable     5       5     3     7    6
## 1526      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 1527      Lata 235 ml Individual No Retornable     6       6     4     6    4
## 1528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1529     1 Ltro. N.R. Individual No Retornable    NA       2     1     1    1
## 1530    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1531        600 ml NR Individual No Retornable     8      NA    NA    NA    3
## 1532    1 Ltro. Tetra   Familiar No Retornable     4      NA     4     2    2
## 1533     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1534   250 ML. NR VID Individual No Retornable     1       2    NA     3    2
## 1535    413 ml NR VId Individual No Retornable     3      22    NA     1   NA
## 1536   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1537     1 Ltro. N.R.   Familiar No Retornable     4       2     2     2    4
## 1538   300 ML. NR PET Individual No Retornable     1       1     0     1    0
## 1539    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1540    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1541    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1542    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1543     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1544        600 ml NR Individual No Retornable     6       1     3     3    4
## 1545        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1546      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1547        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 1548        400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 1549       500 ml Ret Individual    Retornable    NA      NA     1     2    1
## 1550        600 ml NR Individual No Retornable     4       3     3     4    4
## 1551      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1552      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1553        2 Lts. NR   Familiar No Retornable    NA       3     6     3    8
## 1554        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1555       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1556        600 ml NR Individual No Retornable     4       1     3     3    2
## 1557      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1558      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1559   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1560        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1561       500 ml Ret Individual    Retornable     2      NA     1    NA    1
## 1562        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1563        600 ml NR Individual No Retornable     2       1     3     3    4
## 1564       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 1565        2 Lts. NR   Familiar No Retornable     3      17     8    14   20
## 1566        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1567       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1568        600 ml NR Individual No Retornable     4       3     4     4    4
## 1569      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1570      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1571        2 Lts. NR   Familiar No Retornable    NA      23     3    14   23
## 1572        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1573       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1574        600 ml NR Individual No Retornable     4       3     4     4    4
## 1575      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1576    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1577        600 ml NR Individual No Retornable     6       8     7    13   10
## 1578      Lata 222 ml Individual No Retornable    NA      NA     3    NA   NA
## 1579      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1580        2 Lts. NR   Familiar No Retornable    NA       3    11    NA    3
## 1581        600 ml NR Individual No Retornable     3      NA     5     5    3
## 1582        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1583     1 Ltro. N.R. Individual No Retornable     6      15    21     2    2
## 1584      1.5 Lts. NR Individual No Retornable    10       6    16    13    6
## 1585   300 ML. NR PET Individual No Retornable    NA      NA     2     1   NA
## 1586    355 Ml NR Pet Individual No Retornable     3       3     5    NA    3
## 1587        5 Lts. NR   Familiar No Retornable     4       4     4    NA    7
## 1588        600 ml NR Individual No Retornable     5       8    10     3    5
## 1589     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1590   300 ML. NR PET Individual No Retornable     4       5     4     3    2
## 1591      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1592        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1593   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1594    500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 1595        600 ml NR Individual No Retornable     3       3    NA    NA    1
## 1596   250 ml. NR PET Individual No Retornable     7       5     4     7   NA
## 1597        400 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1598     1 Ltro. N.R.   Familiar No Retornable     1       3     1     1    1
## 1599     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1600    12 Oz. NR Pet Individual No Retornable     3       3     1     1    2
## 1601        2 Lts. NR   Familiar No Retornable     8      17     3    20    6
## 1602        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1603      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1604      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1605    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1606      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 1607 500 ml NR Vidrio Individual No Retornable     4       2     8    NA    8
## 1608      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1609 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2   NA
## 1610     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6   NA
## 1611     1.250 Lts NR   Familiar No Retornable    21      11    29    NA   11
## 1612      1.5 Lts. NR   Familiar No Retornable    25      25    25     3   29
## 1613     1.5 Lts. Ret   Familiar    Retornable    25      32    16    38   29
## 1614     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1615    12 Oz. NR Pet Individual No Retornable    15      17    27    30   26
## 1616       12 Oz. Ret Individual    Retornable    NA      NA    NA     3   NA
## 1617        2 Lts. NR   Familiar No Retornable    NA       3    NA     6   NA
## 1618       2 Lts. Ret   Familiar    Retornable    NA       6     3    NA   NA
## 1619      2.5 Lts. NR   Familiar No Retornable    70     116   102    77   67
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    56      88   106    42   74
## 1621    500 ml NR PET Individual No Retornable     2       2    15    NA   NA
## 1622 500 ml NR Vidrio Individual No Retornable    19       6    27    23    4
## 1623       500 ml Ret Individual    Retornable    72      85    82   139  104
## 1624         8 Oz. NR Individual No Retornable     4       4     4     3    4
## 1625             Lata Individual No Retornable     2       2     6     5   NA
## 1626      Lata 16 Oz. Individual No Retornable     6       4     6     2    6
## 1627      Lata 235 ml Individual No Retornable     8       7     8     3    8
## 1628        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1629     1 Ltro. N.R. Individual No Retornable     1       1     1     8    4
## 1630    500 ml NR PET Individual No Retornable     3      NA     1     5    2
## 1631        600 ml NR Individual No Retornable    10       4     5    15   13
## 1632    1 Ltro. Tetra   Familiar No Retornable    NA      NA     2     1    1
## 1633  125 ml NR Tetra Individual No Retornable     1       1     1    NA    1
## 1634     250 ml Tetra Individual No Retornable     4       2     2     1    0
## 1635   250 ML. NR VID Individual No Retornable     1       3    NA    NA    2
## 1636    413 ml NR VId Individual No Retornable    14      11     7    10   16
## 1637      Lata 335 ml Individual No Retornable    NA      NA     1    NA   NA
## 1638   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1639     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    2
## 1640   300 ML. NR PET Individual No Retornable     1       0     1     1   NA
## 1641    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1642    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1643     200 ml Tetra Individual No Retornable     0       0     1     0    0
## 1644        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1645      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1646      1.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 1647     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1648        2 Lts. NR   Familiar No Retornable     3      NA    11     6    6
## 1649       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1650      2.5 Lts. NR   Familiar No Retornable     7       7     7     8    7
## 1651   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1652        400 ml NR Individual No Retornable     3       5     5     3    8
## 1653       500 ml Ret Individual    Retornable    NA       1     2     2   NA
## 1654        600 ml NR Individual No Retornable     3       6    NA     2   NA
## 1655      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1656      1.5 Lts. NR   Familiar No Retornable     3       2    NA    NA   NA
## 1657     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1658        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 1659       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1660      2.5 Lts. NR   Familiar No Retornable     7      25    18     1    4
## 1661   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1662        400 ml NR Individual No Retornable     5       2     9     5    8
## 1663    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1664       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1665        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1666      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1667      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1668        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1669       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1670      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1671   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1672        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1673       500 ml Ret Individual    Retornable    NA       1     2     2    2
## 1674        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1675        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1676     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1677        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1678      2.5 Lts. NR   Familiar No Retornable     7       4     4     4   NA
## 1679        400 ml NR Individual No Retornable    NA      NA     3     0    4
## 1680       500 ml Ret Individual    Retornable     2      NA    NA    NA    6
## 1681        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1682      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1683      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1684     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1685     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1686        2 Lts. NR   Familiar No Retornable     3      NA     6     3    8
## 1687       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1688      2.5 Lts. NR   Familiar No Retornable    NA      14     4     4    7
## 1689   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1690        400 ml NR Individual No Retornable     2       3     5     3    5
## 1691       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1692        600 ml NR Individual No Retornable    NA       2    NA    NA   NA
## 1693      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1694        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1695      Lata 222 ml Individual No Retornable    NA       0    NA    NA   NA
## 1696      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1697        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 1698        600 ml NR Individual No Retornable     1       4    NA     5    5
## 1699        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1700     1 Ltro. N.R. Individual No Retornable     2      95     2     2   27
## 1701      1.5 Lts. NR Individual No Retornable     6     101     3    16   35
## 1702   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1703        5 Lts. NR   Familiar No Retornable     7      14    NA    18    7
## 1704        600 ml NR Individual No Retornable     5      36    NA     8   10
## 1705        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1706   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1707        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1708        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1709   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1710        600 ml NR Individual No Retornable     5       4    NA    NA   NA
## 1711   250 ml. NR PET Individual No Retornable    NA       2    NA     1   NA
## 1712        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1714     1 Ltro. N.R. Individual No Retornable     2       4     2     2    4
## 1715  100 ml NR Tetra Individual No Retornable    NA       4    NA    NA   NA
## 1716    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1717        2 Lts. NR   Familiar No Retornable     3       8     3    11    3
## 1718        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 1719      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1720      Lata 450 ml Individual No Retornable     1      NA     1    NA   NA
## 1721    500 ml NR PET Individual No Retornable     3      NA    NA    NA   NA
## 1722     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1723    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 1724 500 ml NR Vidrio Individual No Retornable     4       2     2     2    4
## 1725      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 1726     1 Ltro. N.R.   Familiar No Retornable    23      23    30    40   42
## 1727       12 Oz. Ret Individual    Retornable     6       8     6     9   14
## 1728        2 Lts. NR   Familiar No Retornable    28      31    37    34   59
## 1729       2 Lts. Ret   Familiar    Retornable     6       6     8     8   11
## 1730        400 ml NR Individual No Retornable     3      14     5    19   14
## 1731 500 ml NR Vidrio Individual No Retornable    36      40    34    32   49
## 1732         8 Oz. NR Individual No Retornable     3       4     3     8    8
## 1733             Lata Individual No Retornable     3       3     3     5    5
## 1734      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1735     1 Ltro. N.R.   Familiar No Retornable     8       4     8     8   11
## 1736        2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 1737 500 ml NR Vidrio Individual No Retornable     6       6     6     2    6
## 1738         8 Oz. NR Individual No Retornable    NA       2    NA     1    1
## 1739             Lata Individual No Retornable    NA      NA    NA     2   NA
## 1740     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 1741     1.250 Lts NR   Familiar No Retornable    53      53    53    90   69
## 1742      1.5 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 1743     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1744    12 Oz. NR Pet Individual No Retornable    17      17    17    21   32
## 1745       12 Oz. Ret Individual    Retornable    17      17    20    27   29
## 1746        2 Lts. NR   Familiar No Retornable    28      28    25    62   73
## 1747       2 Lts. Ret   Familiar    Retornable     6       6     6     8   14
## 1748      2.5 Lts. NR   Familiar No Retornable    81      85    77    70   85
## 1749 2.5 Lts. Ret Pet   Familiar    Retornable    35      28    32    28   28
## 1750        400 ml NR Individual No Retornable     7       2     3    NA    5
## 1751    500 ml NR PET Individual No Retornable    21      15    13    25   15
## 1752 500 ml NR Vidrio Individual No Retornable    49      55    38    49   72
## 1753       500 ml Ret Individual    Retornable    55      53    38    57   80
## 1754      6.5 Oz. Ret Individual    Retornable     2       2     1     2    2
## 1755        710 ml NR Individual No Retornable     6       3     9    18   18
## 1756         8 Oz. NR Individual No Retornable    13      13    12    20   22
## 1757             Lata Individual No Retornable     5       6     6     8    8
## 1758      Lata 16 Oz. Individual No Retornable     2       2     4     6    8
## 1759      Lata 235 ml Individual No Retornable     4       6     4     5    6
## 1760        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1761     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1762    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1763        600 ml NR Individual No Retornable     1      NA     2     3    3
## 1764    1 Ltro. Tetra   Familiar No Retornable     2       1     1     5    2
## 1765     250 ml Tetra Individual No Retornable     2       1     2     1   NA
## 1766   250 ML. NR VID Individual No Retornable     1       1     1     2    2
## 1767    413 ml NR VId Individual No Retornable     3      13    NA     1    2
## 1768      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1769   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1770     1 Ltro. N.R.   Familiar No Retornable     2       2     2     6    2
## 1771   300 ML. NR PET Individual No Retornable     0       1    NA     1    1
## 1772    1 Ltro. Tetra   Familiar No Retornable     1       4     7    NA    3
## 1773    1 Ltro. Tetra   Familiar No Retornable     1       3     4     3   NA
## 1774    1 Ltro. Tetra   Familiar No Retornable     4       1     7    NA   NA
## 1775    1 Ltro. Tetra   Familiar No Retornable     5       2     6     5    5
## 1776     200 ml Tetra Individual No Retornable     1       1     0     1    1
## 1777        600 ml NR Individual No Retornable     3       4     5     8    9
## 1778        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1780     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4    4
## 1781     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1782        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   11
## 1783   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1784        400 ml NR Individual No Retornable     2       2     4     3    6
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1786        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1787      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1788     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1789        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1790   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 1791        400 ml NR Individual No Retornable     1      NA     1    NA   NA
## 1792       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1793      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1794     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1797        400 ml NR Individual No Retornable     1      NA     4    NA    2
## 1798    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 1799       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1801        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1803        2 Lts. NR   Familiar No Retornable     6       3     3     3    6
## 1804        400 ml NR Individual No Retornable    NA      NA     2     2    2
## 1805       500 ml Ret Individual    Retornable     2       2    NA     2    2
## 1806        600 ml NR Individual No Retornable    NA      NA     1     4    1
## 1807      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1808     1 Ltro. N.R.   Familiar No Retornable     6       6     4     4    4
## 1809      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1810     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1811       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1812        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 1813   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1814        400 ml NR Individual No Retornable     4      NA     4     5    7
## 1815    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 1816       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1817        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1818      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1819        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1820        600 ml NR Individual No Retornable     6       2     3    10    7
## 1821      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1823     1 Ltro. N.R. Individual No Retornable     2       8     6     6   13
## 1824      1.5 Lts. NR Individual No Retornable     6       6     3     6    6
## 1825        5 Lts. NR   Familiar No Retornable    11       7     4     7    7
## 1826        600 ml NR Individual No Retornable     3       3     3     3    5
## 1827   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 1828        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1829   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1830        600 ml NR Individual No Retornable     1       2     1     1    3
## 1831   250 ml. NR PET Individual No Retornable     1       0     1     1    2
## 1832        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1833     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA   NA
## 1834     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1835    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1836        2 Lts. NR   Familiar No Retornable     3       3    NA     3    3
## 1837 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1838      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1839     1 Ltro. N.R.   Familiar No Retornable     6      13     8    13   11
## 1840       12 Oz. Ret Individual    Retornable     5       3     3     5    3
## 1841        2 Lts. NR   Familiar No Retornable     6       8     6     6   11
## 1842       2 Lts. Ret   Familiar    Retornable     6       3     3    11    6
## 1843      2.5 Lts. NR   Familiar No Retornable     7       4     4     4    7
## 1844        400 ml NR Individual No Retornable    12      12     8    17   15
## 1845 500 ml NR Vidrio Individual No Retornable     8       6     6    13   11
## 1846         8 Oz. NR Individual No Retornable     1       1     1    NA    1
## 1847             Lata Individual No Retornable     5       2     5     5    6
## 1848      Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 1849     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 1850        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1851 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 1852         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1853     1 Ltro. N.R.   Familiar No Retornable     4       6     8     8   13
## 1854     1.250 Lts NR   Familiar No Retornable    11      11    16    11   18
## 1855      1.5 Lts. NR   Familiar No Retornable     6       6    10     6    6
## 1856     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1857    12 Oz. NR Pet Individual No Retornable     3       3     3     5    2
## 1858       12 Oz. Ret Individual    Retornable     6       6     6     6    9
## 1859        2 Lts. NR   Familiar No Retornable     8      23     8    17   23
## 1860       2 Lts. Ret   Familiar    Retornable     8       6     6    14    8
## 1861      2.5 Lts. NR   Familiar No Retornable     7      18    14    11   18
## 1862 2.5 Lts. Ret Pet   Familiar    Retornable    25      56    35    53   53
## 1863 500 ml NR Vidrio Individual No Retornable    21      25    19    23   23
## 1864       500 ml Ret Individual    Retornable    23      15    53     8   36
## 1865         8 Oz. NR Individual No Retornable     5       7     6     6    8
## 1866             Lata Individual No Retornable     2       5     2     5    2
## 1867      Lata 16 Oz. Individual No Retornable    NA      NA     2    NA    2
## 1868      Lata 235 ml Individual No Retornable     2       7     5     2    4
## 1869     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1870    500 ml NR PET Individual No Retornable     1       2     1     2    2
## 1871        600 ml NR Individual No Retornable     1      NA     1     1    2
## 1872    1 Ltro. Tetra   Familiar No Retornable     5       2     3     2    3
## 1873     250 ml Tetra Individual No Retornable     2       0     0    NA   NA
## 1874   250 ML. NR VID Individual No Retornable     1       1     1     1    1
## 1875    413 ml NR VId Individual No Retornable     2       1     1     2    1
## 1876    500 ml NR PET Individual No Retornable     6       2     2     5    3
## 1877     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1878   300 ML. NR PET Individual No Retornable    NA       1     0     1    1
## 1879    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1880     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1881        600 ml NR Individual No Retornable     4       4     2     4    3
## 1882        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1883      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1885       12 Oz. Ret Individual    Retornable     2      NA     2     2    2
## 1886        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    6
## 1887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1888        400 ml NR Individual No Retornable     0      NA    NA     1   NA
## 1889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 1890        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1891      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1892     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1893       12 Oz. Ret Individual    Retornable     0      NA    NA    NA   NA
## 1894        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1895   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1896       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1897        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1898      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1899       12 Oz. Ret Individual    Retornable     0       2    NA    NA   NA
## 1900   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1901        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1902       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1904        600 ml NR Individual No Retornable     1       1     3     1    2
## 1905     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1906       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1907        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 1908        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1909       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 1910        600 ml NR Individual No Retornable     1       1     1     3    1
## 1911      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1912     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4   NA
## 1913     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1914       12 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 1915        2 Lts. NR   Familiar No Retornable    NA       3     6     3    3
## 1916   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1917        400 ml NR Individual No Retornable    NA       0     2     1    1
## 1918       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1919        600 ml NR Individual No Retornable     1       4     3     3    3
## 1920      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1921        600 ml NR Individual No Retornable     4       3     6     3   10
## 1922      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1923        600 ml NR Individual No Retornable     2      NA     1     1    1
## 1924      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1925        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1926     1 Ltro. N.R. Individual No Retornable     4       2    NA     4   11
## 1927      1.5 Lts. NR Individual No Retornable     3       3    NA    10   13
## 1928   300 ML. NR PET Individual No Retornable    NA      NA     1     0   NA
## 1929        5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1930        600 ml NR Individual No Retornable     8      NA    NA    NA   NA
## 1931   300 ML. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1932   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1933        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1934   250 ml. NR PET Individual No Retornable     1      NA    NA     2    1
## 1935        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1936     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1937     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 1938    12 Oz. NR Pet Individual No Retornable    NA       1    NA     1    1
## 1939        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    6
## 1940        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1941      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1942      Lata 450 ml Individual No Retornable     1      NA    NA    NA    1
## 1943    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1944     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1945 500 ml NR Vidrio Individual No Retornable     2       2     4    NA   NA
## 1946      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1947     1 Ltro. N.R.   Familiar No Retornable    11      11    11     2   13
## 1948     1.250 Lts NR   Familiar No Retornable     8       8     8     8   13
## 1949      1.5 Lts. NR   Familiar No Retornable    16       3     6     6   13
## 1950     1.5 Lts. Ret   Familiar    Retornable    10       6     3     6    6
## 1951    12 Oz. NR Pet Individual No Retornable     2       2     3     2    2
## 1952        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1953      2.5 Lts. NR   Familiar No Retornable    63      39    35    11   95
## 1954 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    14    11    4
## 1955    500 ml NR PET Individual No Retornable     4       6     6     2    4
## 1956 500 ml NR Vidrio Individual No Retornable    15      11    13     6   15
## 1957       500 ml Ret Individual    Retornable    40      27    25    25   19
## 1958         8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 1959             Lata Individual No Retornable     6       2     3    NA    3
## 1960      Lata 16 Oz. Individual No Retornable     2       4     4     2    6
## 1961      Lata 235 ml Individual No Retornable     5       3     3     2    4
## 1962        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1963     1 Ltro. N.R. Individual No Retornable    NA       1    NA     1    1
## 1964    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1965        600 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 1966     250 ml Tetra Individual No Retornable    NA       0     0     2    0
## 1967   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1968    413 ml NR VId Individual No Retornable    NA      NA    NA     3    0
## 1969   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1970     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1971   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1972    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1973    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1974    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1975     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 1976        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1977      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1978      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1980        2 Lts. NR   Familiar No Retornable     4       1    NA     1   NA
## 1981      2.5 Lts. NR   Familiar No Retornable     2       3     1     2   NA
## 1982   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1983        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 1984       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 1985        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1986             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1987      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1988      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1989     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1990        2 Lts. NR   Familiar No Retornable     1       1     3     1    8
## 1991      2.5 Lts. NR   Familiar No Retornable     9       3     4     5    4
## 1992   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1993        400 ml NR Individual No Retornable     1       0     1     0    1
## 1994       500 ml Ret Individual    Retornable     3       3     2     1    5
## 1995        600 ml NR Individual No Retornable     2       3     1     1    1
## 1996             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1997      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1998      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1999        2 Lts. NR   Familiar No Retornable     1       1    NA     1   NA
## 2000      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2001   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2002        400 ml NR Individual No Retornable     1      NA     0     0    0
## 2003       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2004        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2005             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2006        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2007     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2008   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2009       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2010      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2011      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 2012     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2013        2 Lts. NR   Familiar No Retornable     1       1    NA     1    6
## 2014      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2015   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2016        400 ml NR Individual No Retornable     1       0     1     0    1
## 2017       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2018        600 ml NR Individual No Retornable     4       2     1    NA    1
## 2019             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2020      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2021    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2022        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2023      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2024      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2025        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2026        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2027     1 Ltro. N.R. Individual No Retornable    15      49    40    25   59
## 2028      1.5 Lts. NR Individual No Retornable    10      13    NA    10   60
## 2029   300 ML. NR PET Individual No Retornable    NA      NA     0    NA    0
## 2030        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2031        600 ml NR Individual No Retornable    13      25    13    15   10
## 2032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2033   300 ML. NR PET Individual No Retornable     1       3    NA    NA    2
## 2034     1 Ltro. N.R. Individual No Retornable     3       6     1     2    8
## 2035        600 ml NR Individual No Retornable     6       3     2    NA    8
## 2036        473 ml NR Individual No Retornable     1       3     1     1    2
## 2037   250 ml. NR PET Individual No Retornable     0       2    NA    NA   NA
## 2038        600 ml NR Individual No Retornable     8       5     3     3    5
## 2039   250 ml. NR PET Individual No Retornable     8       8     5     6   12
## 2040        400 ml NR Individual No Retornable     0       1     1     0    0
## 2041     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 2042     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 2043    12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 2044        2 Lts. NR   Familiar No Retornable     8       6     8     6   14
## 2045        600 ml NR Individual No Retornable     3       1    NA    NA   NA
## 2046      Lata 235 ml Individual No Retornable     1       0     1     1    2
## 2047      Lata 450 ml Individual No Retornable     2       4     4     4   11
## 2048    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2049     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA   NA
## 2050    237 ml NR Vid Individual No Retornable     1       2     1    NA    1
## 2051 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2052     1 Ltro. N.R.   Familiar No Retornable     8       6    17    NA   15
## 2053       12 Oz. Ret Individual    Retornable     2       3     3     2    5
## 2054        2 Lts. NR   Familiar No Retornable    14      14    14    20   23
## 2055       2 Lts. Ret   Familiar    Retornable     3       8     6    14   11
## 2056 500 ml NR Vidrio Individual No Retornable     6      17    13    17   30
## 2057         8 Oz. NR Individual No Retornable     7       4     8     7    6
## 2058             Lata Individual No Retornable    NA      NA    NA     2    2
## 2059      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2060     1 Ltro. N.R.   Familiar No Retornable     4       6    11    NA    8
## 2061        2 Lts. NR   Familiar No Retornable     8       8     3     8    6
## 2062 500 ml NR Vidrio Individual No Retornable    NA       6    NA     4    4
## 2063         8 Oz. NR Individual No Retornable    NA       2    NA    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable    11      17    23    NA   38
## 2065     1.250 Lts NR   Familiar No Retornable    40      61    63    NA   66
## 2066      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2067     1.5 Lts. Ret   Familiar    Retornable    10       3     6     6    6
## 2068    12 Oz. NR Pet Individual No Retornable    27      20    30    15   27
## 2069       12 Oz. Ret Individual    Retornable     2      18    18    NA    3
## 2070        2 Lts. NR   Familiar No Retornable    42      59    34    42   28
## 2071       2 Lts. Ret   Familiar    Retornable    14      17    14     8   17
## 2072      2.5 Lts. NR   Familiar No Retornable    63     194    85    42   92
## 2073 2.5 Lts. Ret Pet   Familiar    Retornable    32      56    63    42   56
## 2074    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2075 500 ml NR Vidrio Individual No Retornable    46      95    51    25   78
## 2076       500 ml Ret Individual    Retornable    53      91    59   114   95
## 2077         8 Oz. NR Individual No Retornable    14      24    12     8   17
## 2078             Lata Individual No Retornable     3       5    14     2    8
## 2079      Lata 16 Oz. Individual No Retornable    NA       6    12     2    6
## 2080      Lata 235 ml Individual No Retornable     4       4    11     4    7
## 2081        600 ml NR Individual No Retornable    NA       3     2     3    3
## 2082     1 Ltro. N.R. Individual No Retornable     4       3     2     3    8
## 2083    500 ml NR PET Individual No Retornable     8       6     5     6    7
## 2084        600 ml NR Individual No Retornable     8       8     8    10   11
## 2085    1 Ltro. Tetra   Familiar No Retornable     6       2     2    NA    4
## 2086  125 ml NR Tetra Individual No Retornable     1       1     0     1    2
## 2087     250 ml Tetra Individual No Retornable     5       1     1     2    0
## 2088   250 ML. NR VID Individual No Retornable     7       6    NA     2    5
## 2089    413 ml NR VId Individual No Retornable    14      19    10    13   19
## 2090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2091     1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 2092   300 ML. NR PET Individual No Retornable     2       3     0     1    2
## 2093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2095    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2096    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2097     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2098        600 ml NR Individual No Retornable     2       2    NA     3    1
## 2099      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2100        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2101      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2102      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2104        2 Lts. NR   Familiar No Retornable    NA       6     3     6    1
## 2105      2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA   14
## 2106   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2107        400 ml NR Individual No Retornable     0       0     1     1    1
## 2108       500 ml Ret Individual    Retornable     1       1     6     1    2
## 2109        600 ml NR Individual No Retornable     3       2     4     4    3
## 2110             Lata Individual No Retornable    NA      NA     0     0   NA
## 2111      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2112      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2113     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2114        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2115      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   18
## 2116   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2117        400 ml NR Individual No Retornable     0       0     0     1   NA
## 2118       500 ml Ret Individual    Retornable     1       1     2     5   NA
## 2119        600 ml NR Individual No Retornable     4       4     6     4    5
## 2120             Lata Individual No Retornable    NA      NA     0     0   NA
## 2121      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2122      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2123        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2124      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2125   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2126        400 ml NR Individual No Retornable     0      NA     0     1   NA
## 2127       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 2128        600 ml NR Individual No Retornable     1       3     1     2    1
## 2129             Lata Individual No Retornable    NA      NA     0     0   NA
## 2130        600 ml NR Individual No Retornable     3       3     4     4    3
## 2131     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2132        2 Lts. NR   Familiar No Retornable    NA      11     8    NA    1
## 2133      2.5 Lts. NR   Familiar No Retornable     7       4    NA    NA   21
## 2134        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2135       500 ml Ret Individual    Retornable    NA      NA     4    NA    2
## 2136        600 ml NR Individual No Retornable     4       5     3     5    4
## 2137      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2138      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2139     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2140       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2141        2 Lts. NR   Familiar No Retornable    NA      11     6    NA    1
## 2142      2.5 Lts. NR   Familiar No Retornable     7      11    NA     4   28
## 2143   250 ml. NR PET Individual No Retornable     0       0    NA    NA    3
## 2144        400 ml NR Individual No Retornable     1      NA     1     1   NA
## 2145       500 ml Ret Individual    Retornable     1       1    NA     3    6
## 2146        600 ml NR Individual No Retornable     4       8     6     5    8
## 2147             Lata Individual No Retornable    NA      NA     0     0   NA
## 2148      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2149     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2151        600 ml NR Individual No Retornable    30      50    25    37   36
## 2152      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2153      Lata 453 ml Individual No Retornable    NA       1     1     3    7
## 2154        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2155        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2156        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2157     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 2158      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 2159   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2160        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2161   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2162   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2163   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 2164     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2165    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2166        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2167      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2168     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     4    2
## 2169        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2170       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2171 500 ml NR Vidrio Individual No Retornable   142      25    NA     6   66
## 2172     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2173     1.250 Lts NR   Familiar No Retornable   124      85    NA    26   95
## 2174      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2175     1.5 Lts. Ret   Familiar    Retornable   206     117    25    63   86
## 2176    12 Oz. NR Pet Individual No Retornable    11       8     2    23   15
## 2177       12 Oz. Ret Individual    Retornable    15      NA    NA    NA   32
## 2178        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   17
## 2179       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2180      2.5 Lts. NR   Familiar No Retornable   310     113    NA    14   46
## 2181 2.5 Lts. Ret Pet   Familiar    Retornable   778     419    67   335  257
## 2182        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2183    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2184 500 ml NR Vidrio Individual No Retornable   152      38    NA    70   82
## 2185       500 ml Ret Individual    Retornable   934     579   254   311  353
## 2186         8 Oz. NR Individual No Retornable     8       6     2    17    5
## 2187             Lata Individual No Retornable     2       2     2    NA    2
## 2188      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2189      Lata 235 ml Individual No Retornable    NA       1    NA    NA    3
## 2190     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2191    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2192        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2193     250 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 2194   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2195    413 ml NR VId Individual No Retornable     1      NA    NA     5   NA
## 2196   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2197     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2198     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2201      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2202     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2203       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2204        2 Lts. NR   Familiar No Retornable    NA       6     1     3   20
## 2205   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2206        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2207       500 ml Ret Individual    Retornable    10       7     2     3   16
## 2208        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2209      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2210      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2211       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2212        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 2213   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2214        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2215       500 ml Ret Individual    Retornable   223      64    32    73   29
## 2216      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2217      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2218       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2219        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2220   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2221        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2222       500 ml Ret Individual    Retornable   244       1    21    39   45
## 2223        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2224       500 ml Ret Individual    Retornable     4      NA     4     4   NA
## 2225      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2226      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2227     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2228       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3      NA     4    NA    8
## 2230   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2231        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2232       500 ml Ret Individual    Retornable     1       5     4    22   20
## 2233      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2234        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2235      Lata 222 ml Individual No Retornable    NA      NA     4    NA   NA
## 2236      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2237        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2238        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2239     1 Ltro. N.R. Individual No Retornable     2       4     4    NA    2
## 2240      1.5 Lts. NR Individual No Retornable     3      19     3    NA    3
## 2241        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2242   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2243     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2244        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2245   250 ml. NR PET Individual No Retornable     2       3     1     4    3
## 2246        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2247     1 Ltro. N.R.   Familiar No Retornable    NA       3     1    NA    1
## 2248    12 Oz. NR Pet Individual No Retornable    NA       3     1    NA    1
## 2249        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2250     1 Ltro. N.R.   Familiar No Retornable     8       2     2     6    2
## 2251 500 ml NR Vidrio Individual No Retornable     4       2     4     8    6
## 2252         8 Oz. NR Individual No Retornable    NA       1    NA     1    1
## 2253     1 Ltro. N.R.   Familiar No Retornable    13       4     6     4    8
## 2254     1.250 Lts NR   Familiar No Retornable     3       3    NA     3   NA
## 2255      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2256     1.5 Lts. Ret   Familiar    Retornable    22       3     6    48    3
## 2257    12 Oz. NR Pet Individual No Retornable     5       5     5    12    2
## 2258      2.5 Lts. NR   Familiar No Retornable    NA      NA     7    35   28
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable    74      81    74    85   21
## 2260        400 ml NR Individual No Retornable     3       3     2     2   NA
## 2261    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262 500 ml NR Vidrio Individual No Retornable     6       4     6    11   13
## 2263       500 ml Ret Individual    Retornable   116      93   118   123  110
## 2264         8 Oz. NR Individual No Retornable     2       3     2     4    4
## 2265      Lata 16 Oz. Individual No Retornable     2       2    NA     4   NA
## 2266      Lata 235 ml Individual No Retornable     2       2     2     1   NA
## 2267     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2268    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2269        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2270  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2271     250 ml Tetra Individual No Retornable     0       4     0    NA    0
## 2272   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2273    413 ml NR VId Individual No Retornable     5       5     5     4    7
## 2274   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 2275    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2276     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2277        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2278        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 2279        400 ml NR Individual No Retornable     0       0     0     0    0
## 2280       500 ml Ret Individual    Retornable    NA       2     2    NA   NA
## 2281        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2282      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2283        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 2284        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2285       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2286      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2287        2 Lts. NR   Familiar No Retornable     3       6    NA    11    3
## 2288        400 ml NR Individual No Retornable     0      NA     0     0   NA
## 2289       500 ml Ret Individual    Retornable     2       2     2     6    6
## 2290        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2291     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2292        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 2293        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2294       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2295      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2296     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2297        2 Lts. NR   Familiar No Retornable     6       1     3     8   NA
## 2298        400 ml NR Individual No Retornable     0       0     0     0   NA
## 2299       500 ml Ret Individual    Retornable     4       4     2     6    8
## 2300        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2301      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2302    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303        600 ml NR Individual No Retornable     1       3     3    NA    1
## 2304      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2306     1 Ltro. N.R. Individual No Retornable    17       8    NA     2    2
## 2307      1.5 Lts. NR Individual No Retornable    22       3    NA     3    3
## 2308        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2309     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2310     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2311        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2312        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2313   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2314   250 ml. NR PET Individual No Retornable     3       4     1     2    3
## 2315        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2316     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2317     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2318    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2319        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2320    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2321 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 2322     1 Ltro. N.R.   Familiar No Retornable    13      38    19    25   19
## 2323       12 Oz. Ret Individual    Retornable     3      NA     3     2    3
## 2324        2 Lts. NR   Familiar No Retornable    48      39    76     3   51
## 2325 500 ml NR Vidrio Individual No Retornable     8       4    32    NA   11
## 2326         8 Oz. NR Individual No Retornable     2       1     2     2    3
## 2327             Lata Individual No Retornable     2       3    NA     5    2
## 2328     1 Ltro. N.R.   Familiar No Retornable     6       4     6     2    8
## 2329 500 ml NR Vidrio Individual No Retornable     2       4     4    NA    6
## 2330        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2331         8 Oz. NR Individual No Retornable     2      NA     2     1   NA
## 2332     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2333     1.250 Lts NR   Familiar No Retornable    58      69    53    71   50
## 2334      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2335     1.5 Lts. Ret   Familiar    Retornable     3       3     6     3    3
## 2336     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2337    12 Oz. NR Pet Individual No Retornable     9      23     5    23    5
## 2338        2 Lts. NR   Familiar No Retornable    NA      NA    34    34    6
## 2339      2.5 Lts. NR   Familiar No Retornable    NA     201   187    42  180
## 2340 2.5 Lts. Ret Pet   Familiar    Retornable    67      95   148   130   46
## 2341 500 ml NR Vidrio Individual No Retornable    36      25    27    NA   49
## 2342       500 ml Ret Individual    Retornable    53      59    34   125   34
## 2343         8 Oz. NR Individual No Retornable     6       6     5     7   10
## 2344             Lata Individual No Retornable     3      24    NA     4    5
## 2345      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 2346     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2347    500 ml NR PET Individual No Retornable    NA      NA     1     1   NA
## 2348  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2349     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 2350   250 ML. NR VID Individual No Retornable     2       1     1    NA    2
## 2351    413 ml NR VId Individual No Retornable     6       5    18     4   11
## 2352   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2353     1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    6
## 2354   300 ML. NR PET Individual No Retornable    NA       2    NA     1    1
## 2355     200 ml Tetra Individual No Retornable    NA       0     0    NA    0
## 2356        600 ml NR Individual No Retornable     3      NA    NA    NA    1
## 2357        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2358      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2359     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2360        2 Lts. NR   Familiar No Retornable     6       8     6    17   NA
## 2361   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2362        400 ml NR Individual No Retornable     0      NA     2     0    0
## 2363       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2364        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2365     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2366        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 2367   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2368        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2369       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2370        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2371   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2372        400 ml NR Individual No Retornable     0      NA     2    NA   NA
## 2373       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2374     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2375        2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 2376       500 ml Ret Individual    Retornable     6       2    13     6    8
## 2377      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2378     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2379     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2380        2 Lts. NR   Familiar No Retornable     3      14    14    14   31
## 2381   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2382        400 ml NR Individual No Retornable     0       0     2    NA   NA
## 2383       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2384        600 ml NR Individual No Retornable     3       1     1     1    1
## 2385    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2386        600 ml NR Individual No Retornable     2      16    NA    NA    9
## 2387      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2388        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2389        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2390        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2391     1 Ltro. N.R. Individual No Retornable     2       4     6    19    6
## 2392      1.5 Lts. NR Individual No Retornable     3      16    35    25   32
## 2393        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 2394        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2395   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2396     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2397      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2398        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2399        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2400   250 ml. NR PET Individual No Retornable    11       1     8     6   16
## 2401        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2402     1 Ltro. N.R.   Familiar No Retornable     1       1     3     2    2
## 2403     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2404    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 2405        2 Lts. NR   Familiar No Retornable    23      14     8    17   11
## 2406        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2407      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 2408      Lata 450 ml Individual No Retornable    NA       1     1     2    1
## 2409    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2410    237 ml NR Vid Individual No Retornable    NA      NA    NA     1   NA
## 2411 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     4    4
## 2412      Lata 235 ml Individual No Retornable     1      NA    NA    NA    1
## 2413     1 Ltro. N.R.   Familiar No Retornable    21       2    23    13   32
## 2414        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2415      2.5 Lts. NR   Familiar No Retornable    32      25    53     7   92
## 2416 500 ml NR Vidrio Individual No Retornable    17      21    13    13   32
## 2417         8 Oz. NR Individual No Retornable     4       2    NA    NA    3
## 2418             Lata Individual No Retornable     2       2    NA    NA   NA
## 2419     1 Ltro. N.R.   Familiar No Retornable     6       2     2     8    8
## 2420        2 Lts. NR   Familiar No Retornable    11      23     3    14   NA
## 2421 500 ml NR Vidrio Individual No Retornable    13      15    13     4    8
## 2422         8 Oz. NR Individual No Retornable     2      NA    NA    NA    4
## 2423     1 Ltro. N.R.   Familiar No Retornable     2      NA    11     2   NA
## 2424     1.250 Lts NR   Familiar No Retornable    NA     161   172    11  198
## 2425      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2426     1.5 Lts. Ret   Familiar    Retornable    54      48    54   105   73
## 2427    12 Oz. NR Pet Individual No Retornable    12       5     2     5    2
## 2428        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2429      2.5 Lts. NR   Familiar No Retornable   190     229   204    NA  324
## 2430 2.5 Lts. Ret Pet   Familiar    Retornable   151     229   215   148  204
## 2431    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2432 500 ml NR Vidrio Individual No Retornable    40      51    38    27   91
## 2433       500 ml Ret Individual    Retornable    34     116     2    87  144
## 2434         8 Oz. NR Individual No Retornable    21       9    10    11   22
## 2435             Lata Individual No Retornable     6      12    NA     9   12
## 2436      Lata 16 Oz. Individual No Retornable     6      12     6    NA   24
## 2437      Lata 235 ml Individual No Retornable     2       5    NA    NA    3
## 2438        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2439     1 Ltro. N.R. Individual No Retornable    NA       1     1     5    1
## 2440    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2441        600 ml NR Individual No Retornable     3       1    NA     3    4
## 2442     250 ml Tetra Individual No Retornable     0       0     0     1    1
## 2443   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 2444    413 ml NR VId Individual No Retornable     4       4     5     3    8
## 2445   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2446     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4   NA
## 2447   300 ML. NR PET Individual No Retornable     1       1     0     1    1
## 2448    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2449    1 Ltro. Tetra   Familiar No Retornable     2       1     2     3    2
## 2450    1 Ltro. Tetra   Familiar No Retornable     2       1     5     3    6
## 2451    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2452     200 ml Tetra Individual No Retornable     0       2     2     2    3
## 2453        600 ml NR Individual No Retornable     1       3     3     3    1
## 2454        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2455      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2457      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2458     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2459        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    1
## 2460      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2461        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2462       500 ml Ret Individual    Retornable     2       2     1     5    2
## 2463        600 ml NR Individual No Retornable     3       2     3     3    3
## 2464      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2465     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2466      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2467     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2468        2 Lts. NR   Familiar No Retornable    NA      11    11     3    1
## 2469      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2470        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 2471       500 ml Ret Individual    Retornable     2       2     3     5    4
## 2472        600 ml NR Individual No Retornable     4       2    NA    NA    4
## 2473      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2474      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2475        2 Lts. NR   Familiar No Retornable    NA      11    11    NA    1
## 2476      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    9
## 2477        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2478       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2479        600 ml NR Individual No Retornable     1       2    NA     2    3
## 2480        600 ml NR Individual No Retornable     3       2     3     1    1
## 2481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2482        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    3
## 2483      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA    4
## 2484       500 ml Ret Individual    Retornable    NA       4     2    NA   NA
## 2485        600 ml NR Individual No Retornable     3      NA    NA     1   NA
## 2486      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2487     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2488      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2489     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2490        2 Lts. NR   Familiar No Retornable     3      17    25    20    1
## 2491      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2492        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2493    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2494       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2495        600 ml NR Individual No Retornable     2      NA    NA     2    3
## 2496      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2497    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2498        600 ml NR Individual No Retornable    13      12    12     7   11
## 2499      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2500        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 2501        600 ml NR Individual No Retornable     5       5     5     8    5
## 2502      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504     1 Ltro. N.R. Individual No Retornable    17      21    40    15   59
## 2505      1.5 Lts. NR Individual No Retornable     3      19    38    44   76
## 2506   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2507    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2508        5 Lts. NR   Familiar No Retornable    11      NA     4    14   21
## 2509        600 ml NR Individual No Retornable    20      23    23    15   20
## 2510     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2511        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2512   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2513     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2514      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2515   250 ml. NR PET Individual No Retornable     2       2     2     2    2
## 2516    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2517        600 ml NR Individual No Retornable     5       3     3     3    5
## 2518   250 ml. NR PET Individual No Retornable     4       1     0     8    5
## 2519        400 ml NR Individual No Retornable     2       2    NA     3   NA
## 2520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 2521     1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 2522    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 2523        2 Lts. NR   Familiar No Retornable     8       8     8     8    8
## 2524        600 ml NR Individual No Retornable     8       8     3     8    3
## 2525      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2526      Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 2527    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 2528 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2529      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 2530     1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    6
## 2531        2 Lts. NR   Familiar No Retornable    11       6    14    NA    8
## 2532 500 ml NR Vidrio Individual No Retornable    11       4    19    11   21
## 2533        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2534         8 Oz. NR Individual No Retornable     3      NA     1     3    2
## 2535             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2536     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2537    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2538        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2539        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2540 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 2541     1 Ltro. N.R.   Familiar No Retornable    80      87    85    80  156
## 2542     1.250 Lts NR   Familiar No Retornable     5       8    26     8   11
## 2543      1.5 Lts. NR   Familiar No Retornable     3       3    22     6   16
## 2544     1.5 Lts. Ret   Familiar    Retornable    22      22    22    22   32
## 2545    12 Oz. NR Pet Individual No Retornable    33      20    24    14   41
## 2546       12 Oz. Ret Individual    Retornable     3      NA     2     3    3
## 2547        2 Lts. NR   Familiar No Retornable    31      14    17    14   25
## 2548       2 Lts. Ret   Familiar    Retornable     8       6    20     3   23
## 2549      2.5 Lts. NR   Familiar No Retornable   183     240   137   275  303
## 2550 2.5 Lts. Ret Pet   Familiar    Retornable    21      32    63    39   42
## 2551    500 ml NR PET Individual No Retornable    49      44    51    55   53
## 2552 500 ml NR Vidrio Individual No Retornable    78      51   131    78  125
## 2553       500 ml Ret Individual    Retornable   129      74    89   120  201
## 2554      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 2555        710 ml NR Individual No Retornable     3       6     9    NA    3
## 2556         8 Oz. NR Individual No Retornable    14      15    17    12   16
## 2557             Lata Individual No Retornable    20      11    18    11   24
## 2558      Lata 16 Oz. Individual No Retornable     8      10    10     8   18
## 2559      Lata 235 ml Individual No Retornable     6       6     4     5    7
## 2560        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2561     1 Ltro. N.R. Individual No Retornable     1       2     1     3    1
## 2562    500 ml NR PET Individual No Retornable    NA       1     2     2   NA
## 2563        600 ml NR Individual No Retornable     4       4     3     4    7
## 2564     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 2565   250 ML. NR VID Individual No Retornable     1      NA    NA     1    1
## 2566   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2567    413 ml NR VId Individual No Retornable     8       3     2     3    6
## 2568    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2569      Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 2570      Lata 453 ml Individual No Retornable     2       2     2    NA    1
## 2571   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2572     1 Ltro. N.R.   Familiar No Retornable     2       6    NA     6    2
## 2573   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 2574    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2575     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 2576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2577        600 ml NR Individual No Retornable     3      NA     5     8   10
## 2578      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2579        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2580      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2581     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    4
## 2582      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2583     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2584        2 Lts. NR   Familiar No Retornable     3       6     7     4   NA
## 2585      2.5 Lts. NR   Familiar No Retornable    11      NA    11     4    4
## 2586   250 ml. NR PET Individual No Retornable     5       2     3     2    2
## 2587        400 ml NR Individual No Retornable     3       8     4     9    6
## 2588       500 ml Ret Individual    Retornable     4       2     5     5   10
## 2589        600 ml NR Individual No Retornable    11       3    18    13   18
## 2590             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2591      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2592     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2593      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2594     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2595        2 Lts. NR   Familiar No Retornable    NA       6    15     4    3
## 2596      2.5 Lts. NR   Familiar No Retornable     4       4    14     7   14
## 2597   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2598        400 ml NR Individual No Retornable     2       1     2     4    7
## 2599       500 ml Ret Individual    Retornable     2       2     9     5   12
## 2600        600 ml NR Individual No Retornable     4      NA    13    10   13
## 2601             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2602      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2603     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2604      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2605        2 Lts. NR   Familiar No Retornable     3       3     7     6   NA
## 2606      2.5 Lts. NR   Familiar No Retornable     4      NA    11     7   NA
## 2607   250 ml. NR PET Individual No Retornable     3       2     2     2    2
## 2608        400 ml NR Individual No Retornable     2       1     2     3    7
## 2609       500 ml Ret Individual    Retornable     4       2     7     5   10
## 2610        600 ml NR Individual No Retornable     8      NA     8     8    8
## 2611             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2612        600 ml NR Individual No Retornable    NA      NA     8     5   NA
## 2613     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2614        2 Lts. NR   Familiar No Retornable    NA       3    NA     6    6
## 2615      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2616        400 ml NR Individual No Retornable     2       1    NA     2   NA
## 2617       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 2618        600 ml NR Individual No Retornable    NA      NA    NA     4   NA
## 2619      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2620     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 2621      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2622     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2623        2 Lts. NR   Familiar No Retornable    NA       6     7     6    6
## 2624      2.5 Lts. NR   Familiar No Retornable     4       4    14     7    7
## 2625   250 ml. NR PET Individual No Retornable     3       2     4     2    3
## 2626        400 ml NR Individual No Retornable     2       3     3     6    5
## 2627       500 ml Ret Individual    Retornable     4       2     9     7   12
## 2628        600 ml NR Individual No Retornable     9      NA    15    10   20
## 2629             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2630      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2631    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2632        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 2633       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2634        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2635      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2636        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2637     1 Ltro. N.R. Individual No Retornable     2       4     8     6    2
## 2638      1.5 Lts. NR Individual No Retornable     3       6    13    10   NA
## 2639   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2640        600 ml NR Individual No Retornable     3       8     5     3    3
## 2641     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2642        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2643        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2644   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2645        600 ml NR Individual No Retornable     1       1     1     3    3
## 2646   250 ml. NR PET Individual No Retornable     3       4     1     0    3
## 2647        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2648     1 Ltro. N.R.   Familiar No Retornable     1       2     3    NA   NA
## 2649     1 Ltro. N.R. Individual No Retornable     2      NA     2     4    2
## 2650    12 Oz. NR Pet Individual No Retornable     2       2     2     1   NA
## 2651        2 Lts. NR   Familiar No Retornable     3       8    11    20   14
## 2652        600 ml NR Individual No Retornable     3      NA    NA     4    3
## 2653      Lata 450 ml Individual No Retornable    NA      NA     1    NA    1
## 2654     1 Ltro. N.R.   Familiar No Retornable     4       4     2    NA   NA
## 2655    237 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 2656 500 ml NR Vidrio Individual No Retornable     2      NA     6    NA   NA
## 2657             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2658      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 2659     1 Ltro. N.R.   Familiar No Retornable    17      23    30    30   21
## 2660        2 Lts. NR   Familiar No Retornable    20      31    31    25   23
## 2661       2 Lts. Ret   Familiar    Retornable    NA       3     3     3    3
## 2662 500 ml NR Vidrio Individual No Retornable    13      17    17    17   19
## 2663         8 Oz. NR Individual No Retornable     4       3     2     4    5
## 2664             Lata Individual No Retornable    NA       3     2     2   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     4       6     8     2    6
## 2666        2 Lts. NR   Familiar No Retornable    11       8     6     6    8
## 2667 500 ml NR Vidrio Individual No Retornable     2       4     4     2    2
## 2668         8 Oz. NR Individual No Retornable    NA       1     1     1    2
## 2669     1 Ltro. N.R.   Familiar No Retornable    82      78    68    74   95
## 2670     1.250 Lts NR   Familiar No Retornable    34      26    24    29   26
## 2671      1.5 Lts. NR   Familiar No Retornable    16      16    25    25   19
## 2672     1.5 Lts. Ret   Familiar    Retornable    38      35    44    44   32
## 2673    12 Oz. NR Pet Individual No Retornable    26      20    20    27   24
## 2674        2 Lts. NR   Familiar No Retornable    45      54    54    37   68
## 2675       2 Lts. Ret   Familiar    Retornable    25      25    25    17   17
## 2676      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2677 2.5 Lts. Ret Pet   Familiar    Retornable   261     208   151   208  271
## 2678    500 ml NR PET Individual No Retornable    17      17     8    11    6
## 2679 500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA   30
## 2680       500 ml Ret Individual    Retornable   129      91    76    89  101
## 2681        710 ml NR Individual No Retornable    12       6    12     6   12
## 2682         8 Oz. NR Individual No Retornable    12      12     9    14   11
## 2683             Lata Individual No Retornable    11       9     8     9   11
## 2684      Lata 16 Oz. Individual No Retornable     8      10     8     8    8
## 2685      Lata 235 ml Individual No Retornable     7       8     6     5    8
## 2686        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2687     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2688    500 ml NR PET Individual No Retornable     1       4     2     3    2
## 2689        600 ml NR Individual No Retornable    NA       3     4     6    8
## 2690     250 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2691   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2692    413 ml NR VId Individual No Retornable     3      NA     4     7    4
## 2693   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2694     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     4    2
## 2695   300 ML. NR PET Individual No Retornable     0       1    NA     0    0
## 2696    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2697     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     3       3     4     2    2
## 2699      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2700        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2701      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2702     1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 2703      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2704        2 Lts. NR   Familiar No Retornable     1      NA     4     4    3
## 2705      2.5 Lts. NR   Familiar No Retornable     4       6     6     1    7
## 2706   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2707        400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 2708       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2709        600 ml NR Individual No Retornable     3       4     3     4    4
## 2710             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2711      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2712      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2713        2 Lts. NR   Familiar No Retornable     1      NA     1     4    3
## 2714      2.5 Lts. NR   Familiar No Retornable     1       3     3     1   NA
## 2715   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2716       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2717        600 ml NR Individual No Retornable     1       3     1     1    3
## 2718             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2719      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2720     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2722        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 2723      2.5 Lts. NR   Familiar No Retornable     4       3     3     1   NA
## 2724   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2725        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2726       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2727        600 ml NR Individual No Retornable     3       3     1     1    1
## 2728             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2729        600 ml NR Individual No Retornable     1       2     3     1    2
## 2730        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2731      2.5 Lts. NR   Familiar No Retornable     4       4     4    NA    4
## 2732        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2733       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2735      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2736     1 Ltro. N.R.   Familiar No Retornable     6       2     6     4    2
## 2737      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2738        2 Lts. NR   Familiar No Retornable     1      NA     4     6    3
## 2739      2.5 Lts. NR   Familiar No Retornable     8       8    10     3    7
## 2740   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2741        400 ml NR Individual No Retornable     0      NA    NA    NA    3
## 2742       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2743        600 ml NR Individual No Retornable     4       4     4     6    4
## 2744             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2745      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2746        600 ml NR Individual No Retornable     6      10     4    10   10
## 2747      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2748       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2749        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2750        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2751     1 Ltro. N.R. Individual No Retornable     4       6     8     2    6
## 2752      1.5 Lts. NR Individual No Retornable     3       6    10    10    3
## 2753   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2754        5 Lts. NR   Familiar No Retornable     4       7     4     4   NA
## 2755        600 ml NR Individual No Retornable     3       5     5    NA    3
## 2756        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2757   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2759        600 ml NR Individual No Retornable     1       1     1     1    1
## 2760   250 ml. NR PET Individual No Retornable     2       4     3     3    4
## 2761        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2762     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 2763    12 Oz. NR Pet Individual No Retornable    NA       3     1     1    1
## 2764        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2765      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 2766      Lata 450 ml Individual No Retornable     1      NA    NA     1   NA
## 2767    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2768     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2   NA
## 2769 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2770     1 Ltro. N.R.   Familiar No Retornable    11       6    13     8   13
## 2771      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2772     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 2773    12 Oz. NR Pet Individual No Retornable     8       5     5     6    6
## 2774       12 Oz. Ret Individual    Retornable     3       3     3     5    5
## 2775        2 Lts. NR   Familiar No Retornable    11       8    11    14    8
## 2776      2.5 Lts. NR   Familiar No Retornable    28      35    46    49   39
## 2777 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    18    11   14
## 2778 500 ml NR Vidrio Individual No Retornable    23      15    23    23   21
## 2779       500 ml Ret Individual    Retornable    23      21    32    42   42
## 2780         8 Oz. NR Individual No Retornable     1       2     2     3    3
## 2781             Lata Individual No Retornable     2       2     3     3    2
## 2782      Lata 235 ml Individual No Retornable     2       1     2     2    2
## 2783     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2784    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2785        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2786     250 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2787   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2788    413 ml NR VId Individual No Retornable     1       1     1     3    3
## 2789   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2790   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2791     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2792        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2793        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2794      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2795     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2796        2 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 2797   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2798        400 ml NR Individual No Retornable     1       0     0     0    3
## 2799       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2800        600 ml NR Individual No Retornable     4       2     3     3    4
## 2801      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2803        2 Lts. NR   Familiar No Retornable     6       6    NA     3    3
## 2804   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2805        400 ml NR Individual No Retornable     1       0     0     1    1
## 2806       500 ml Ret Individual    Retornable     1       1     3     2    2
## 2807        600 ml NR Individual No Retornable     3       1     2     2    2
## 2808      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2809        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2810   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2811        400 ml NR Individual No Retornable     0      NA     0     0    1
## 2812       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2813        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2814        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2815     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2816        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2817        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2818      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2819     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2820        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2821   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2822        400 ml NR Individual No Retornable     1       1    NA     1    1
## 2823       500 ml Ret Individual    Retornable     3       1     1     2   NA
## 2824        600 ml NR Individual No Retornable     3       1     3     1    3
## 2825      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2826    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2827        600 ml NR Individual No Retornable     2       1     1     3    3
## 2828      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2829        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2830        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2831      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2832        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2833     1 Ltro. N.R. Individual No Retornable    NA       8     2     2   55
## 2834      1.5 Lts. NR Individual No Retornable    NA       3     3     3    3
## 2835        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2836        600 ml NR Individual No Retornable    10      20    NA    10   15
## 2837   300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2838   250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 2839        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2840   250 ml. NR PET Individual No Retornable     4       6     2     3   10
## 2841        400 ml NR Individual No Retornable    NA       0     0     1    0
## 2842     1 Ltro. N.R.   Familiar No Retornable     2       1     1    NA    2
## 2843     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2844    12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 2845        2 Lts. NR   Familiar No Retornable     8      14    NA     6   11
## 2846      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2847      Lata 450 ml Individual No Retornable    NA      NA     1     3    2
## 2848    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2849 500 ml NR Vidrio Individual No Retornable     4       2    NA     4    2
## 2850     1 Ltro. N.R.   Familiar No Retornable     6       4     2     6    6
## 2851        2 Lts. NR   Familiar No Retornable    11      14     8     8   17
## 2852        400 ml NR Individual No Retornable     2       2    NA     2    2
## 2853 500 ml NR Vidrio Individual No Retornable     8      21     4     8    6
## 2854         8 Oz. NR Individual No Retornable     1      NA    NA     1    1
## 2855             Lata Individual No Retornable    NA      NA     2    NA   NA
## 2856     1 Ltro. N.R.   Familiar No Retornable     2       2     6    NA    2
## 2857 500 ml NR Vidrio Individual No Retornable     4       2     6     2    2
## 2858         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 2859             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2860      Lata 235 ml Individual No Retornable     1       3    NA    NA   NA
## 2861     1 Ltro. N.R.   Familiar No Retornable    NA      25    42    42   70
## 2862     1.250 Lts NR   Familiar No Retornable    NA      NA    11     8   40
## 2863      1.5 Lts. NR   Familiar No Retornable    NA      NA    13    16   51
## 2864     1.5 Lts. Ret   Familiar    Retornable    98      48    41   288    3
## 2865    12 Oz. NR Pet Individual No Retornable     5      18     6    36    5
## 2866        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    3
## 2867       2 Lts. Ret   Familiar    Retornable     6       3     3     8    8
## 2868      2.5 Lts. NR   Familiar No Retornable    NA     144   120    NA  190
## 2869 2.5 Lts. Ret Pet   Familiar    Retornable   130     338   247   416   77
## 2870    500 ml NR PET Individual No Retornable     2       8     8    19   34
## 2871 500 ml NR Vidrio Individual No Retornable     6     167    NA    NA   97
## 2872       500 ml Ret Individual    Retornable   101     251   222   839   44
## 2873         8 Oz. NR Individual No Retornable    NA       2     4     4    7
## 2874             Lata Individual No Retornable    NA      NA     8    21   18
## 2875      Lata 16 Oz. Individual No Retornable    NA      NA     6    14   28
## 2876      Lata 235 ml Individual No Retornable     9       4     7     8    3
## 2877        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2878     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 2879    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2880        600 ml NR Individual No Retornable     1       3     2    NA    3
## 2881  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2882     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2883   250 ML. NR VID Individual No Retornable     2       2     1    NA    1
## 2884    413 ml NR VId Individual No Retornable    10      21    NA     2   18
## 2885     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 2886   300 ML. NR PET Individual No Retornable     0       1     1     1    1
## 2887    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2888     200 ml Tetra Individual No Retornable     0       1     2     0    1
## 2889        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2890      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2891      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2892     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 2893      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2894     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2895        2 Lts. NR   Familiar No Retornable     3      14     6    14    6
## 2896   250 ml. NR PET Individual No Retornable     3       1     1     1    1
## 2897        400 ml NR Individual No Retornable    NA      NA     2    NA    2
## 2898       500 ml Ret Individual    Retornable     8       3    15    35   NA
## 2899        600 ml NR Individual No Retornable     5       3     3     3    5
## 2900      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2901     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2902      1.5 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2903     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2904        2 Lts. NR   Familiar No Retornable    NA       6     6     8    3
## 2905   250 ml. NR PET Individual No Retornable     1       1     0     0    1
## 2906        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2907       500 ml Ret Individual    Retornable     4       5    13    31   NA
## 2908        600 ml NR Individual No Retornable     3       3    NA     3    3
## 2909      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2910      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2911        2 Lts. NR   Familiar No Retornable     3      NA    NA     3    3
## 2912   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 2913        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2914       500 ml Ret Individual    Retornable     2       3     6    35   NA
## 2915        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2916        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2917     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2918        2 Lts. NR   Familiar No Retornable     6       3     3    NA   NA
## 2919        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 2920       500 ml Ret Individual    Retornable     8       4     4    11   NA
## 2921      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2922     1 Ltro. N.R.   Familiar No Retornable     6       4    NA     2    4
## 2923      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2924     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2925        2 Lts. NR   Familiar No Retornable    NA      14     8    20   20
## 2926   250 ml. NR PET Individual No Retornable     3       1     1     1    2
## 2927        400 ml NR Individual No Retornable     0       2     3     2    2
## 2928       500 ml Ret Individual    Retornable     4       9    15    45    2
## 2929        600 ml NR Individual No Retornable     8       3     3     5    8
## 2930      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2931    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable    NA       3    NA    NA    6
## 2933      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2934        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2935        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2936        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2937     1 Ltro. N.R. Individual No Retornable     6      11    15    11   13
## 2938      1.5 Lts. NR Individual No Retornable     6      13    25    22   19
## 2939   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 2940        600 ml NR Individual No Retornable     5       3     3     8    5
## 2941     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2942      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2943        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2944   300 ML. NR PET Individual No Retornable     1       1     2     1    1
## 2945     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2946      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2947   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2948        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2949   250 ml. NR PET Individual No Retornable     5       5     1     5    3
## 2950        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 2951     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    5
## 2952     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2953    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    2
## 2954        2 Lts. NR   Familiar No Retornable    NA      11    NA     8    6
## 2955        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2956      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2957      Lata 450 ml Individual No Retornable     1       1    NA     1    1
## 2958    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 2959 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2960     1 Ltro. N.R.   Familiar No Retornable    19      15    19    17   21
## 2961        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2962       2 Lts. Ret   Familiar    Retornable     6      NA    NA    NA   NA
## 2963      2.5 Lts. NR   Familiar No Retornable    25      21    21    28   28
## 2964        400 ml NR Individual No Retornable     3       3     3     2    2
## 2965 500 ml NR Vidrio Individual No Retornable    21      13    13    13   11
## 2966         8 Oz. NR Individual No Retornable    NA      NA     1     1   NA
## 2967             Lata Individual No Retornable     2      NA    NA    NA    2
## 2968      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2969     1 Ltro. N.R.   Familiar No Retornable    11       6     6     4    6
## 2970        2 Lts. NR   Familiar No Retornable     3       6     6     6    6
## 2971 500 ml NR Vidrio Individual No Retornable     8       4     6     6    6
## 2972      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2973     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 2974     1.250 Lts NR   Familiar No Retornable    71      69    77    87   61
## 2975      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2976     1.5 Lts. Ret   Familiar    Retornable    44      38    29    25   29
## 2977    12 Oz. NR Pet Individual No Retornable     3       5     6     9    9
## 2978        2 Lts. NR   Familiar No Retornable    31      23    31    46   31
## 2979       2 Lts. Ret   Familiar    Retornable     6      NA    NA     8    3
## 2980      2.5 Lts. NR   Familiar No Retornable    63     130    85   162  116
## 2981 2.5 Lts. Ret Pet   Familiar    Retornable    56     162    70   197  169
## 2982        400 ml NR Individual No Retornable     5      NA    NA    NA   NA
## 2983    500 ml NR PET Individual No Retornable     2       2     6    11    8
## 2984 500 ml NR Vidrio Individual No Retornable    25      53    61    59   49
## 2985       500 ml Ret Individual    Retornable   144     137   139   273   91
## 2986         8 Oz. NR Individual No Retornable     9       4     7     7    6
## 2987             Lata Individual No Retornable     3       5     2     5    3
## 2988      Lata 16 Oz. Individual No Retornable     2      NA     4     4    6
## 2989      Lata 235 ml Individual No Retornable     3       5     5     6    4
## 2990        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2991     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    4
## 2992    500 ml NR PET Individual No Retornable     1      NA     1     2    1
## 2993        600 ml NR Individual No Retornable     1      NA    NA     2    1
## 2994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2995     250 ml Tetra Individual No Retornable     3       0     0     1    1
## 2996   250 ML. NR VID Individual No Retornable     1       1     0     1    2
## 2997    413 ml NR VId Individual No Retornable     5       5     7     5    9
## 2998   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2999     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3000   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 3001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3002    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3003     200 ml Tetra Individual No Retornable     0       0     1     1    2
## 3004        600 ml NR Individual No Retornable     4       4     5     3    3
## 3005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3006     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3007        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3008      2.5 Lts. NR   Familiar No Retornable    11       4    11    14    7
## 3009   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3010        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3011       500 ml Ret Individual    Retornable    13       8    13    13   17
## 3012        600 ml NR Individual No Retornable     1       2     3     3    2
## 3013      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3014     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3015     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3016        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3017      2.5 Lts. NR   Familiar No Retornable     7       4     7    11    7
## 3018   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3019        400 ml NR Individual No Retornable    NA      NA    NA     2    1
## 3020       500 ml Ret Individual    Retornable     1       6     2     8    4
## 3021        600 ml NR Individual No Retornable     1       1     3     1    3
## 3022      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3023      2.5 Lts. NR   Familiar No Retornable    NA       7     4    11    4
## 3024   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3025        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3026       500 ml Ret Individual    Retornable     9       8     8     6    2
## 3027        600 ml NR Individual No Retornable     1       2     2     1    1
## 3028        600 ml NR Individual No Retornable     1       3    NA     2    3
## 3029     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3030        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3031      2.5 Lts. NR   Familiar No Retornable    11      11     7     7   14
## 3032   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3033        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3034       500 ml Ret Individual    Retornable     8       4     4     8   13
## 3035        600 ml NR Individual No Retornable     3       4     3     4    3
## 3036      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3037     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3038        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 3039      2.5 Lts. NR   Familiar No Retornable    11      11     7    18   14
## 3040   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3041        400 ml NR Individual No Retornable     2       0     1     2    2
## 3042       500 ml Ret Individual    Retornable    17      13    13    23   15
## 3043        600 ml NR Individual No Retornable     4       5     4     3    4
## 3044      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3045        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3046    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3047        600 ml NR Individual No Retornable     3       6     1     3    8
## 3048      Lata 222 ml Individual No Retornable    NA      NA     0    NA   NA
## 3049      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    1
## 3050        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3051     1 Ltro. N.R. Individual No Retornable     8      19    13     2   15
## 3052      1.5 Lts. NR Individual No Retornable     3       3    13     6    3
## 3053   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3054   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3055        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3056   250 ml. NR PET Individual No Retornable     2       3    NA     1    2
## 3057        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3058     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3059    12 Oz. NR Pet Individual No Retornable     2       1     2     1    1
## 3060      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3061       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3062      Lata 235 ml Individual No Retornable     1       1     1     1   NA
## 3063     1 Ltro. N.R.   Familiar No Retornable    17      19    15     8   17
## 3064        2 Lts. NR   Familiar No Retornable     6       8     3    NA    6
## 3065       2 Lts. Ret   Familiar    Retornable     6       6     3     8   11
## 3066 500 ml NR Vidrio Individual No Retornable    23      NA    23    13   11
## 3067         8 Oz. NR Individual No Retornable     1      NA    NA     1    2
## 3068 500 ml NR Vidrio Individual No Retornable     4      NA     4     2    2
## 3069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3070     1.250 Lts NR   Familiar No Retornable    48      42    32    32   32
## 3071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3072     1.5 Lts. Ret   Familiar    Retornable    22      32    22    38   19
## 3073    12 Oz. NR Pet Individual No Retornable     5       6     6     6    5
## 3074       12 Oz. Ret Individual    Retornable     6       3     6     6    5
## 3075        2 Lts. NR   Familiar No Retornable    17      17     8    11   NA
## 3076       2 Lts. Ret   Familiar    Retornable     6       8     8    23   NA
## 3077      2.5 Lts. NR   Familiar No Retornable    NA      28    70    NA   70
## 3078 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    63    42  176
## 3079    500 ml NR PET Individual No Retornable    17      15    11    15   19
## 3080 500 ml NR Vidrio Individual No Retornable    36      13    19    NA   32
## 3081       500 ml Ret Individual    Retornable    46      36    21    49   17
## 3082         8 Oz. NR Individual No Retornable    11       5     6     6   10
## 3083             Lata Individual No Retornable    NA      NA     3     3    3
## 3084      Lata 235 ml Individual No Retornable     4       1     2     2    2
## 3085     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3086        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3087    1 Ltro. Tetra   Familiar No Retornable     8      12    NA    NA    2
## 3088     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 3089   250 ML. NR VID Individual No Retornable    NA       1     4    NA    3
## 3090    413 ml NR VId Individual No Retornable     7      21    NA    NA   NA
## 3091   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3094        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3095        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3096     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3097        2 Lts. NR   Familiar No Retornable     8       3     8    11    6
## 3098   250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 3099        400 ml NR Individual No Retornable    NA       2    NA     0    0
## 3100       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3101        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3102      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3104        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3105       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3106      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3107      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3108   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3109        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3110       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3111     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3112        2 Lts. NR   Familiar No Retornable    14       6    14     3    6
## 3113       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 3114        600 ml NR Individual No Retornable     1       1     1     1    1
## 3115      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3116     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3117        2 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 3118   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 3119        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 3120       500 ml Ret Individual    Retornable    NA      NA     3    NA   NA
## 3121        600 ml NR Individual No Retornable     3       8    NA     1    1
## 3122      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3123    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3124        600 ml NR Individual No Retornable    NA      NA     4    NA    3
## 3125        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3126        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3127     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3128      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3129   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3130        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3131     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3132   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3133     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3134      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3135   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA       0     1    NA    1
## 3138        400 ml NR Individual No Retornable     0      NA     0    NA    0
## 3139     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    3
## 3140     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3141    12 Oz. NR Pet Individual No Retornable     2      NA     2     1    1
## 3142        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3143        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3144 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 3145      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3146     1 Ltro. N.R.   Familiar No Retornable     2       2     4     6    2
## 3147        2 Lts. NR   Familiar No Retornable     8       6     3     8    3
## 3148 500 ml NR Vidrio Individual No Retornable     6       6     6     6    4
## 3149         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 3150             Lata Individual No Retornable     2      NA    NA     2   NA
## 3151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3152     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 3153 500 ml NR Vidrio Individual No Retornable     4       4     2     2    2
## 3154         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3155      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 3156     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3157     1.250 Lts NR   Familiar No Retornable    18      21    29    29   29
## 3158      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3159     1.5 Lts. Ret   Familiar    Retornable    13       6    16    25   10
## 3160    12 Oz. NR Pet Individual No Retornable     9      12     6    18    6
## 3161        2 Lts. NR   Familiar No Retornable    23      17    11    14   20
## 3162       2 Lts. Ret   Familiar    Retornable    11       6    11     8   11
## 3163      2.5 Lts. NR   Familiar No Retornable    21      32     7    25   28
## 3164 2.5 Lts. Ret Pet   Familiar    Retornable    35      11     7    35   28
## 3165 500 ml NR Vidrio Individual No Retornable    NA      38    NA     6   42
## 3166       500 ml Ret Individual    Retornable    46      34    44    44   51
## 3167        600 ml NR Individual No Retornable    NA      13     3     8    8
## 3168        710 ml NR Individual No Retornable    NA       6     3     3   NA
## 3169         8 Oz. NR Individual No Retornable    NA       7     4     5    5
## 3170             Lata Individual No Retornable     2       2     6     3   NA
## 3171      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3172      Lata 235 ml Individual No Retornable     4       2     2     2    2
## 3173        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3174     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3175    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3176        600 ml NR Individual No Retornable    NA       3    NA    NA    1
## 3177    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3178     250 ml Tetra Individual No Retornable     1      NA     0     0    0
## 3179    413 ml NR VId Individual No Retornable    NA       2     1    NA    2
## 3180   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3181     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3182   300 ML. NR PET Individual No Retornable     1      NA     0    NA    1
## 3183     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3184        600 ml NR Individual No Retornable    NA       3     3    NA    2
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 3187      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3188     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3190   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3191        400 ml NR Individual No Retornable    NA       0     1     0    0
## 3192       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3193        600 ml NR Individual No Retornable    NA       1     1     1    1
## 3194      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3195      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3197   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3198        400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 3199       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3200        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3201      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3202      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3203        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3204   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3205        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3206       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3207        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3208        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3209        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3210        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3212      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3213     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3215     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3216        2 Lts. NR   Familiar No Retornable     6       3    NA     6   NA
## 3217   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3218        400 ml NR Individual No Retornable     0       0     0     1    0
## 3219       500 ml Ret Individual    Retornable    NA      NA     1     1    4
## 3220        600 ml NR Individual No Retornable    NA       3     1     1    2
## 3221      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3222    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3223        600 ml NR Individual No Retornable     4       4    NA     1    3
## 3224       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3225        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 3226        600 ml NR Individual No Retornable     8       8     6    10   10
## 3227        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3228     1 Ltro. N.R. Individual No Retornable    13      17     2     6   19
## 3229      1.5 Lts. NR Individual No Retornable     3      44     3    10   22
## 3230   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3231    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3232        600 ml NR Individual No Retornable    NA      10    10    NA    5
## 3233     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3234      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3235     1 Ltro. N.R. Individual No Retornable    NA       3    NA     1    4
## 3236      1.5 Lts. NR Individual No Retornable     2       2     2     6    8
## 3237       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3238   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3239    500 ml NR PET Individual No Retornable     1       3     1     1    1
## 3240        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3241   250 ml. NR PET Individual No Retornable     6       0     1     2    4
## 3242        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3243     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 3244     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 3245    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3246        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3247      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3248      Lata 450 ml Individual No Retornable    NA       1     1     1   NA
## 3249    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3250       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3251      Lata 235 ml Individual No Retornable    NA      NA     1     1   NA
## 3252     1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 3253       12 Oz. Ret Individual    Retornable     3       2     3     8    6
## 3254        2 Lts. NR   Familiar No Retornable    NA       3     3     6   NA
## 3255       2 Lts. Ret   Familiar    Retornable     3       8     6     8   11
## 3256 500 ml NR Vidrio Individual No Retornable    17      15    15    17   34
## 3257         8 Oz. NR Individual No Retornable     2       1     2    NA    1
## 3258             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3259      Lata 235 ml Individual No Retornable     2       3     2     2    1
## 3260 500 ml NR Vidrio Individual No Retornable     2       2     2     2   11
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3263     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3264     1.250 Lts NR   Familiar No Retornable    50      61     3    55   87
## 3265      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3266     1.5 Lts. Ret   Familiar    Retornable    98      79    44   124  181
## 3267    12 Oz. NR Pet Individual No Retornable    20      23    23    44   32
## 3268       12 Oz. Ret Individual    Retornable    41      38    60    38   99
## 3269        2 Lts. NR   Familiar No Retornable    11      NA    NA     3   NA
## 3270       2 Lts. Ret   Familiar    Retornable     3      11    NA     6    6
## 3271      2.5 Lts. NR   Familiar No Retornable    70      53    42    42   81
## 3272 2.5 Lts. Ret Pet   Familiar    Retornable   423     366   447   683  866
## 3273    500 ml NR PET Individual No Retornable    46      34    21    27   38
## 3274 500 ml NR Vidrio Individual No Retornable    55      42    34    57   82
## 3275       500 ml Ret Individual    Retornable   306     203   334   505  611
## 3276      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3277         8 Oz. NR Individual No Retornable    17      13    13    22   16
## 3278             Lata Individual No Retornable     6       6    12     9   15
## 3279      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3280      Lata 235 ml Individual No Retornable     3       1     2     3    2
## 3281     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3282    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3283        600 ml NR Individual No Retornable     6       4    NA     6    4
## 3284     250 ml Tetra Individual No Retornable     3       2     0     0    1
## 3285   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3286    413 ml NR VId Individual No Retornable     3       6     2     2    4
## 3287   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3289   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 3290    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3291    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3292    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3293     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3294        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3295        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3296      1.5 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 3297     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3298       12 Oz. Ret Individual    Retornable     3       2     6     5   11
## 3299        2 Lts. NR   Familiar No Retornable    NA       8     8     8    3
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3301   250 ml. NR PET Individual No Retornable     1      NA     0     3   NA
## 3302        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3303    500 ml NR PET Individual No Retornable    NA       2     2     2    2
## 3304       500 ml Ret Individual    Retornable     6       7     7     8    8
## 3305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3306             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3307      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3308      1.5 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3309     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3310        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3312   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3313        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3314    500 ml NR PET Individual No Retornable     2       2    NA     2    4
## 3315       500 ml Ret Individual    Retornable    NA       1     1    NA   13
## 3316      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3317      1.5 Lts. NR   Familiar No Retornable     6       3     6     3    6
## 3318       12 Oz. Ret Individual    Retornable     3       3     2     3    6
## 3319        2 Lts. NR   Familiar No Retornable    NA       6     3    NA   NA
## 3320   250 ml. NR PET Individual No Retornable     1      NA     0     1   NA
## 3321        400 ml NR Individual No Retornable     2       2    NA     2    2
## 3322    500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 3323       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3324        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3325     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3326       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3327        2 Lts. NR   Familiar No Retornable     3       8    11    11   11
## 3328      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3329       500 ml Ret Individual    Retornable     6       6     4    11    6
## 3330      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3331      1.5 Lts. NR   Familiar No Retornable     3       6     6     3    6
## 3332     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3333       12 Oz. Ret Individual    Retornable     5       3     5     6   11
## 3334        2 Lts. NR   Familiar No Retornable     3      14    17    17   11
## 3335      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3336   250 ml. NR PET Individual No Retornable     3      NA     0     1    1
## 3337        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3338    500 ml NR PET Individual No Retornable     2       2     4     4    4
## 3339       500 ml Ret Individual    Retornable    11       9    12     6   13
## 3340      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3341    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3342        600 ml NR Individual No Retornable     6       4     5     6    4
## 3343      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3344     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 3345      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 3346        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3347      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3348        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3349   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3350   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3351        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3352     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3353     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3354    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3355        2 Lts. NR   Familiar No Retornable     6       6    NA     3   NA
## 3356      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3357      Lata 450 ml Individual No Retornable    NA      NA     1     1    1
## 3358 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3359     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA    2
## 3360 500 ml NR Vidrio Individual No Retornable     2       4     4     2    4
## 3361     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3362     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    11   16
## 3363      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3364     1.5 Lts. Ret   Familiar    Retornable    10      13    16    22   16
## 3365    12 Oz. NR Pet Individual No Retornable     5       3     2     3    3
## 3366 2.5 Lts. Ret Pet   Familiar    Retornable    67      49    56    70   70
## 3367 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3368       500 ml Ret Individual    Retornable    19      11    21    32   25
## 3369         8 Oz. NR Individual No Retornable    NA       2     1     1    1
## 3370      Lata 235 ml Individual No Retornable     1      NA    NA     1    1
## 3371        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3372     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3374        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3375     250 ml Tetra Individual No Retornable    NA       1     2    NA    2
## 3376   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3377    413 ml NR VId Individual No Retornable     4       2     4    NA    3
## 3378   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3379     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3380   300 ML. NR PET Individual No Retornable    NA      NA     0     0    1
## 3381     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3382      1.5 Lts. NR   Familiar No Retornable     3       5     3     3    2
## 3383     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3384        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3385   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3386        400 ml NR Individual No Retornable     0       0     0    NA    0
## 3387       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3388      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3389     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3390   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3391        400 ml NR Individual No Retornable    NA       0    NA     0   NA
## 3392       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3393      1.5 Lts. NR   Familiar No Retornable     3       3     5     2    2
## 3394   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3395        400 ml NR Individual No Retornable     0       0    NA     0    1
## 3396       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3399        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3400      1.5 Lts. NR   Familiar No Retornable     3       5     5     3    3
## 3401     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3402        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 3403   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3404        400 ml NR Individual No Retornable     0       0     0     0    0
## 3405       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3406    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3407        600 ml NR Individual No Retornable     1       1     1     3    2
## 3408        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3410     1 Ltro. N.R. Individual No Retornable     4       2     6     2    6
## 3411      1.5 Lts. NR Individual No Retornable     3       3    16     3   10
## 3412   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 3413        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 3414      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3415        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3416   300 ML. NR PET Individual No Retornable     1      NA     1     1    2
## 3417      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3418   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3419        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3420   250 ml. NR PET Individual No Retornable     6       3     3     4    5
## 3421        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3422     1 Ltro. N.R.   Familiar No Retornable     1       1     2     5    5
## 3423     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3424  100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3425    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3426        2 Lts. NR   Familiar No Retornable     3       6     6    14    6
## 3427        600 ml NR Individual No Retornable     3       1    NA     1   NA
## 3428      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3429      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3430    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3431     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 3432    237 ml NR Vid Individual No Retornable     1       1    NA    NA    1
## 3433 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    4
## 3434      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3435     1 Ltro. N.R.   Familiar No Retornable    32      32    30    32   44
## 3436        2 Lts. NR   Familiar No Retornable    37      39    59    48   65
## 3437 500 ml NR Vidrio Individual No Retornable    17      19    17    25   40
## 3438         8 Oz. NR Individual No Retornable     4       6     3     2    4
## 3439             Lata Individual No Retornable     3       2    NA     3    3
## 3440     1 Ltro. N.R.   Familiar No Retornable     4       6     8     6   11
## 3441        2 Lts. NR   Familiar No Retornable     8      17    11    14   14
## 3442 500 ml NR Vidrio Individual No Retornable     4       6     2     6    6
## 3443         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R.   Familiar No Retornable    38      34    34    40   57
## 3445     1.250 Lts NR   Familiar No Retornable    32      26    55    48   58
## 3446      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447     1.5 Lts. Ret   Familiar    Retornable     6      13    10    16   16
## 3448    12 Oz. NR Pet Individual No Retornable     5       3     8     6   11
## 3449       12 Oz. Ret Individual    Retornable     8       6     5     6    2
## 3450        2 Lts. NR   Familiar No Retornable    56      65    93    93  110
## 3451       2 Lts. Ret   Familiar    Retornable     6      11     8     3   14
## 3452      2.5 Lts. NR   Familiar No Retornable    88      67   144    81  123
## 3453 2.5 Lts. Ret Pet   Familiar    Retornable    60      67   127    67   85
## 3454    500 ml NR PET Individual No Retornable    NA       2    NA     4    2
## 3455 500 ml NR Vidrio Individual No Retornable    25      21    27    32   46
## 3456       500 ml Ret Individual    Retornable    23      27    42    66   42
## 3457        710 ml NR Individual No Retornable     9       6     3     3   12
## 3458         8 Oz. NR Individual No Retornable     7       8    11     9   12
## 3459             Lata Individual No Retornable     6       5     5     6    8
## 3460      Lata 16 Oz. Individual No Retornable     2       2     4     4    8
## 3461      Lata 235 ml Individual No Retornable     1       1     3     4    2
## 3462        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3463     1 Ltro. N.R. Individual No Retornable     1       2     1     2    2
## 3464    500 ml NR PET Individual No Retornable     1      NA    NA     1    3
## 3465        600 ml NR Individual No Retornable     3       1     1     3    8
## 3466     250 ml Tetra Individual No Retornable     2       1     1     1    1
## 3467   250 ML. NR VID Individual No Retornable     1       1     1    NA    1
## 3468    413 ml NR VId Individual No Retornable     5       3     3     4    7
## 3469   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3470     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA    4
## 3471   300 ML. NR PET Individual No Retornable     1       1    NA    NA    1
## 3472    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3473    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3474    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3475     200 ml Tetra Individual No Retornable     0       0     0     1    0
## 3476        600 ml NR Individual No Retornable     1       2     2    10    2
## 3477      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3479      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3480     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4    2
## 3481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3482       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3483        2 Lts. NR   Familiar No Retornable     3       3     8    14   11
## 3484   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3485        400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 3486       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3487        600 ml NR Individual No Retornable     1       2     1     1    1
## 3488      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3489     1 Ltro. N.R.   Familiar No Retornable     4       2    NA    NA   NA
## 3490     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3491       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3492        2 Lts. NR   Familiar No Retornable     3       3     8    NA    6
## 3493   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3494        400 ml NR Individual No Retornable     0       0    NA    NA    0
## 3495       500 ml Ret Individual    Retornable     1       1     1     3    2
## 3496        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3497      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3498     1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA    4
## 3499       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3501   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3502        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3503       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3504        600 ml NR Individual No Retornable    NA       2    NA    NA    2
## 3505        600 ml NR Individual No Retornable     1       2     1     1    1
## 3506     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3507        2 Lts. NR   Familiar No Retornable    14       6    14    11   11
## 3508        400 ml NR Individual No Retornable    NA       0     0    NA    0
## 3509        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3510      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3511     1 Ltro. N.R.   Familiar No Retornable     6       2     2     6    2
## 3512     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3513       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3514        2 Lts. NR   Familiar No Retornable     6      NA     6    14   11
## 3515   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3516        400 ml NR Individual No Retornable    NA       1    NA     0    0
## 3517       500 ml Ret Individual    Retornable     1       1     1     3    6
## 3518        600 ml NR Individual No Retornable     2       1     3     1    4
## 3519      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3520        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3521    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3522        600 ml NR Individual No Retornable    12       7     4     6   10
## 3523      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3524      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 3525      LATA 680 ML Individual No Retornable    NA      NA     1     1   NA
## 3526       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3527        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3529     1 Ltro. N.R. Individual No Retornable     2       2    NA     2    2
## 3530      1.5 Lts. NR Individual No Retornable     3       6    NA     3    3
## 3531   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3532   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3533   250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 3534     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1    1
## 3535    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3536        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3537     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 3538     1 Ltro. N.R.   Familiar No Retornable    11      11     8    11    8
## 3539        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3540       2 Lts. Ret   Familiar    Retornable     8       8     8    11    6
## 3541        400 ml NR Individual No Retornable     2       3    NA     2   NA
## 3542 500 ml NR Vidrio Individual No Retornable     6       8     8    11    6
## 3543         8 Oz. NR Individual No Retornable     2      NA     1     1   NA
## 3544             Lata Individual No Retornable     2      NA     2     1   NA
## 3545     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3546     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3547     1.250 Lts NR   Familiar No Retornable    50      42    45    45   32
## 3548      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3549     1.5 Lts. Ret   Familiar    Retornable    19      22    25    32   22
## 3550    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3551       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3552       2 Lts. Ret   Familiar    Retornable    17      11    11    11   14
## 3553      2.5 Lts. NR   Familiar No Retornable    63      49    56    63   63
## 3554 2.5 Lts. Ret Pet   Familiar    Retornable   183     151   134   215  155
## 3555        400 ml NR Individual No Retornable     8       8     8     8   10
## 3556 500 ml NR Vidrio Individual No Retornable    13      13    13    19   17
## 3557       500 ml Ret Individual    Retornable    40      44    34    46   53
## 3558         8 Oz. NR Individual No Retornable     3       3     2     2    3
## 3559             Lata Individual No Retornable     5       3     3     3    5
## 3560      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 3561        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3562     1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 3563    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 3564        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3565     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 3566    413 ml NR VId Individual No Retornable     5       4     3     5    3
## 3567   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3568     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3569   300 ML. NR PET Individual No Retornable     0       0    NA     0    0
## 3570     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3571        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3572      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3573     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3574        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3575   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3576        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3577       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3578      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3579      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3580     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3581        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3582   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3583        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3584       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3585      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3586        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3587   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3588        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3589       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3590     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3591        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3592        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3593       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3594      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3595     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3596        2 Lts. NR   Familiar No Retornable     3       3     3     6   NA
## 3597   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3598        400 ml NR Individual No Retornable     0      NA    NA     0    2
## 3599       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3600      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3601    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3602        600 ml NR Individual No Retornable     3       1     1     3    5
## 3603       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3604        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3605      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3607     1 Ltro. N.R. Individual No Retornable     8       8    15     4    8
## 3608      1.5 Lts. NR Individual No Retornable    13       3    16     3   16
## 3609        600 ml NR Individual No Retornable    10      NA     3     5    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3611   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3612      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3613        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3614   250 ml. NR PET Individual No Retornable     3       3     4     2    3
## 3615        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3616     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3617     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3618    12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 3619        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3620      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3621      Lata 450 ml Individual No Retornable    NA      NA     1    NA   NA
## 3622    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3623 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3624      Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 3625     1 Ltro. N.R.   Familiar No Retornable    11       6     8    11   17
## 3626        2 Lts. NR   Familiar No Retornable     6       8     6     3    8
## 3627        400 ml NR Individual No Retornable     5       3     3     2    2
## 3628 500 ml NR Vidrio Individual No Retornable    13       4    11    11    8
## 3629         8 Oz. NR Individual No Retornable     1       2     1     2    2
## 3630     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    4
## 3631        2 Lts. NR   Familiar No Retornable    NA       3     6     6    3
## 3632 500 ml NR Vidrio Individual No Retornable     2       2     4     2    4
## 3633     1 Ltro. N.R.   Familiar No Retornable    42      25    25    42   30
## 3634     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3635      1.5 Lts. NR   Familiar No Retornable    10       6    19    13   19
## 3636     1.5 Lts. Ret   Familiar    Retornable    16      13    22    22   19
## 3637    12 Oz. NR Pet Individual No Retornable     5       6     6     6    8
## 3638        2 Lts. NR   Familiar No Retornable    25      20    11    17   25
## 3639      2.5 Lts. NR   Familiar No Retornable    35      32    42    56   63
## 3640 2.5 Lts. Ret Pet   Familiar    Retornable    92     116   162   148  232
## 3641        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3642    500 ml NR PET Individual No Retornable     8       8     8     8   11
## 3643 500 ml NR Vidrio Individual No Retornable    25      15    19    23   32
## 3644       500 ml Ret Individual    Retornable    36      40    57    17   34
## 3645         8 Oz. NR Individual No Retornable     8       6     8     7    8
## 3646             Lata Individual No Retornable     2       3     3     5    3
## 3647      Lata 16 Oz. Individual No Retornable     2      NA     4     2    4
## 3648      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 3649        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3650     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3651    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3652        600 ml NR Individual No Retornable     3       2    NA    NA    3
## 3653  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 3654     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3655   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3656    413 ml NR VId Individual No Retornable     5       3     7     3    8
## 3657   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3658     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 3659        600 ml NR Individual No Retornable     1       1     1     2    2
## 3660        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3661      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3662      1.5 Lts. NR   Familiar No Retornable     5       3     2     3    3
## 3663     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3664        2 Lts. NR   Familiar No Retornable     6      NA     6     3   NA
## 3665        400 ml NR Individual No Retornable    NA       0     0     0    1
## 3666       500 ml Ret Individual    Retornable     1      NA     1     1    3
## 3667        600 ml NR Individual No Retornable     1       1     2     1    1
## 3668      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3669      1.5 Lts. NR   Familiar No Retornable     5       2     2     2    2
## 3670     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3671        2 Lts. NR   Familiar No Retornable     4      NA     4    NA    6
## 3672        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3673       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3674        600 ml NR Individual No Retornable     1       1     1     1    1
## 3675      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3676      1.5 Lts. NR   Familiar No Retornable     3       5     2     3    2
## 3677        2 Lts. NR   Familiar No Retornable     1      NA     1    NA    6
## 3678        400 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3679       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3680        600 ml NR Individual No Retornable    NA       1    NA     2    1
## 3681        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3682     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3683        2 Lts. NR   Familiar No Retornable     6      NA     6    NA    3
## 3684        400 ml NR Individual No Retornable    NA       0     0     0    0
## 3685       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 3686      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3687      1.5 Lts. NR   Familiar No Retornable     8       2     5     2    3
## 3688     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3689        2 Lts. NR   Familiar No Retornable     6       6     6     3    6
## 3690        400 ml NR Individual No Retornable     0       0     0     1    1
## 3691       500 ml Ret Individual    Retornable     1      NA     3     1    5
## 3692        600 ml NR Individual No Retornable     2       1     1     2    3
## 3693      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3694    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3695        600 ml NR Individual No Retornable    NA      NA     3     3    4
## 3696      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3697        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3698        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3699     1 Ltro. N.R. Individual No Retornable     2       8    15    11   13
## 3700      1.5 Lts. NR Individual No Retornable    10      16    19    10   13
## 3701   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3702        600 ml NR Individual No Retornable    10      15    13    15   15
## 3703     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3704   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3705        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3706        600 ml NR Individual No Retornable     3      NA     4    NA   NA
## 3707   250 ml. NR PET Individual No Retornable     5       4     6     4    3
## 3708        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3709     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     3    4
## 3710  100 ml NR Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3711    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 3712        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3713        600 ml NR Individual No Retornable    NA       3    NA     1    1
## 3714      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3715      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3716    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3717    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3718 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3719      Lata 235 ml Individual No Retornable     2       3     1     1   NA
## 3720     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    4
## 3721 500 ml NR Vidrio Individual No Retornable     4       6     2     6    4
## 3722         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3723             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3724 500 ml NR Vidrio Individual No Retornable     2       2    NA     2   NA
## 3725         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 3726     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3727     1.250 Lts NR   Familiar No Retornable    61      37    79    29   55
## 3728      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3729     1.5 Lts. Ret   Familiar    Retornable   130     101   149   133  193
## 3730    12 Oz. NR Pet Individual No Retornable     6      11    14    11   12
## 3731        2 Lts. NR   Familiar No Retornable     6      NA    NA     1   NA
## 3732       2 Lts. Ret   Familiar    Retornable    NA       3     3     6    3
## 3733      2.5 Lts. NR   Familiar No Retornable    NA      32    32    35   46
## 3734 2.5 Lts. Ret Pet   Familiar    Retornable   243     159   211   215  208
## 3735    500 ml NR PET Individual No Retornable    15       4    19    13   13
## 3736 500 ml NR Vidrio Individual No Retornable     8      17    17    13   23
## 3737       500 ml Ret Individual    Retornable   186     125   146   175  188
## 3738         8 Oz. NR Individual No Retornable     4       4     4     7    6
## 3739             Lata Individual No Retornable     5       2     5     3    3
## 3740      Lata 16 Oz. Individual No Retornable    NA      NA     4     6    4
## 3741      Lata 235 ml Individual No Retornable     9       7     7     3    4
## 3742     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3743        600 ml NR Individual No Retornable     1       1     3     1    2
## 3744     250 ml Tetra Individual No Retornable     2       0     0     0    1
## 3745   250 ML. NR VID Individual No Retornable    NA       0    NA    NA   NA
## 3746    413 ml NR VId Individual No Retornable     6       7     8     3    5
## 3747   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3748     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA    2
## 3749   300 ML. NR PET Individual No Retornable     1      NA     1    NA    1
## 3750     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3751        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3752      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3753      1.5 Lts. NR   Familiar No Retornable    10       3    11    10    4
## 3754     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3755        2 Lts. NR   Familiar No Retornable     1      NA     1    12   NA
## 3756        400 ml NR Individual No Retornable     1       4     2     0    2
## 3757       500 ml Ret Individual    Retornable     7       2     6     2    6
## 3758        600 ml NR Individual No Retornable     3       3     3    NA    3
## 3759             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3760      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3761      1.5 Lts. NR   Familiar No Retornable     3      NA     5     3    4
## 3762     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3763        2 Lts. NR   Familiar No Retornable     1      NA     1     6   NA
## 3764        400 ml NR Individual No Retornable     1       1     2    NA    1
## 3765       500 ml Ret Individual    Retornable     5       4     6     2    2
## 3766        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 3767             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3768      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3769      1.5 Lts. NR   Familiar No Retornable     3       3     6     6    7
## 3770        2 Lts. NR   Familiar No Retornable     1      NA     1     4   NA
## 3771        400 ml NR Individual No Retornable     1       2    NA    NA   NA
## 3772       500 ml Ret Individual    Retornable     3       4    NA    NA    2
## 3773        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3774             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3775     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3776        2 Lts. NR   Familiar No Retornable    NA      NA     3     8   NA
## 3777        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3778       500 ml Ret Individual    Retornable     4      NA     4     2    4
## 3779        600 ml NR Individual No Retornable    NA       1     3    NA    3
## 3780      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3781      1.5 Lts. NR   Familiar No Retornable    10       3    10    10    7
## 3782     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable     1       3     1     9    6
## 3784        400 ml NR Individual No Retornable     3       3     2     0    5
## 3785       500 ml Ret Individual    Retornable     7       8     8     6    8
## 3786        600 ml NR Individual No Retornable     3       4     5     3    5
## 3787             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3788      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3789    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3790        600 ml NR Individual No Retornable     1      NA     1     3    6
## 3791      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3792        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 3793        600 ml NR Individual No Retornable     5      NA     5     3    5
## 3794      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796     1 Ltro. N.R. Individual No Retornable     6      51     4     2    2
## 3797      1.5 Lts. NR Individual No Retornable     6      10    10    16   19
## 3798   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3799        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3800        600 ml NR Individual No Retornable     5       3     3     5    3
## 3801        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3802   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3803     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3804      1.5 Lts. NR Individual No Retornable    NA       3    NA     2   NA
## 3805        600 ml NR Individual No Retornable    NA      NA    NA    NA    4
## 3806   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3807        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3808   250 ml. NR PET Individual No Retornable     9       8    11    10    7
## 3809        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3810     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3811  100 ml NR Tetra Individual No Retornable     0       0    NA    NA   NA
## 3812    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 3813        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3816      Lata 450 ml Individual No Retornable     1      NA     1     1   NA
## 3817    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3818      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3819     1 Ltro. N.R.   Familiar No Retornable     2       4     4     2    6
## 3820 500 ml NR Vidrio Individual No Retornable     6       2    11    13    6
## 3821             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3822     1 Ltro. N.R.   Familiar No Retornable     8       8    40    NA   42
## 3823      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3824     1.5 Lts. Ret   Familiar    Retornable    35     127    86   206   44
## 3825    12 Oz. NR Pet Individual No Retornable    21      26     9    11   44
## 3826        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3827       2 Lts. Ret   Familiar    Retornable     6       3    NA    NA   NA
## 3828      2.5 Lts. NR   Familiar No Retornable    18      25    32    18   63
## 3829 2.5 Lts. Ret Pet   Familiar    Retornable   173     271   243   328  370
## 3830 500 ml NR Vidrio Individual No Retornable    25      13    23    15   72
## 3831       500 ml Ret Individual    Retornable   112     154   192   165  159
## 3832         8 Oz. NR Individual No Retornable     5       4     4     5    5
## 3833             Lata Individual No Retornable     2       3     6     6    3
## 3834      Lata 16 Oz. Individual No Retornable    12       8    14    10   16
## 3835      Lata 235 ml Individual No Retornable     4       3     5     4    8
## 3836        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3837     1 Ltro. N.R. Individual No Retornable    NA       2     3     1    1
## 3838    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3839        600 ml NR Individual No Retornable     3       1    NA     3    1
## 3840     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3841   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    1
## 3842    413 ml NR VId Individual No Retornable    10       5     8    NA    7
## 3843   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3844     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2   NA
## 3845   300 ML. NR PET Individual No Retornable    NA       1     1     2    1
## 3846    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3848        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3849      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3850      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3851     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3852        2 Lts. NR   Familiar No Retornable     3       6     3     6    6
## 3853       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3854      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3855   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3856        400 ml NR Individual No Retornable     1       1     3     1    3
## 3857       500 ml Ret Individual    Retornable    NA      NA     7     6   12
## 3858        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3859      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3860      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3861     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3862        2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 3863      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3864   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3865        400 ml NR Individual No Retornable    NA      NA     3     1    2
## 3866       500 ml Ret Individual    Retornable     2       2     5     2    7
## 3867        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3868             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3869      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3870      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3871        2 Lts. NR   Familiar No Retornable    NA       6    NA     3   NA
## 3872      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3873   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3874        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3875       500 ml Ret Individual    Retornable    NA      NA     7     2   14
## 3876        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3877     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3878        2 Lts. NR   Familiar No Retornable    NA       8     3     6   14
## 3879      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    7
## 3880        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3881       500 ml Ret Individual    Retornable     6       4     4    NA    8
## 3882      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3883      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3885        2 Lts. NR   Familiar No Retornable    NA       6    17    20    8
## 3886      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    7
## 3887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3888        400 ml NR Individual No Retornable    NA       1     3     1    2
## 3889       500 ml Ret Individual    Retornable    15       6    14    15    7
## 3890        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3891             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3892      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3893    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3894        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 3895        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3896        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3897     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3898      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 3899   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3900   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3901        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3902        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable     6       5     3    NA    6
## 3905        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3906     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 3907     1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 3908  100 ml NR Tetra Individual No Retornable     3      NA    NA    NA   NA
## 3909    12 Oz. NR Pet Individual No Retornable     2       2     4     1    2
## 3910        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 3911        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3912      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3913      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3914    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3915 500 ml NR Vidrio Individual No Retornable    NA      NA     4    NA   NA
## 3916      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3917     1 Ltro. N.R.   Familiar No Retornable     4       8     6     6    8
## 3918        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3919 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    6
## 3920        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 3921         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3922 500 ml NR Vidrio Individual No Retornable     2       6     4     2    8
## 3923     1 Ltro. N.R.   Familiar No Retornable     4       8    30    NA   34
## 3924     1.250 Lts NR   Familiar No Retornable    16       5    18     8    8
## 3925      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3926     1.5 Lts. Ret   Familiar    Retornable    54      32    32    51   32
## 3927    12 Oz. NR Pet Individual No Retornable     6       6     2    23    2
## 3928        2 Lts. NR   Familiar No Retornable    NA      NA    NA    17   NA
## 3929      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    53   95
## 3930 2.5 Lts. Ret Pet   Familiar    Retornable   123     159   211   162  144
## 3931    500 ml NR PET Individual No Retornable     6      21    NA    30   NA
## 3932 500 ml NR Vidrio Individual No Retornable     2       6     6    44   25
## 3933       500 ml Ret Individual    Retornable   110     118   120    76  142
## 3934        710 ml NR Individual No Retornable     3       6     3    NA    3
## 3935         8 Oz. NR Individual No Retornable     2       3     3     1   NA
## 3936      Lata 235 ml Individual No Retornable     1       3     3     6   NA
## 3937     1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 3938    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3939        600 ml NR Individual No Retornable     1      NA     1     3    1
## 3940    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3941  100 ml NR Tetra Individual No Retornable    NA       2    NA    NA    1
## 3942     250 ml Tetra Individual No Retornable     6       0     7     0    4
## 3943   250 ML. NR VID Individual No Retornable    NA       0    NA     1    2
## 3944    413 ml NR VId Individual No Retornable     2       2    NA     2    9
## 3945   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 3947   300 ML. NR PET Individual No Retornable     0       0    NA     0    1
## 3948     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3949      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3950      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3951     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3952        2 Lts. NR   Familiar No Retornable    NA       4     1     3   NA
## 3953      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    11   NA
## 3954        400 ml NR Individual No Retornable     0       0     1     0    0
## 3955       500 ml Ret Individual    Retornable     1      NA    NA    NA   10
## 3956        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3957      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3958      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3959     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3961      2.5 Lts. NR   Familiar No Retornable    NA       4     7     7    7
## 3962        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3963       500 ml Ret Individual    Retornable     1      NA    NA    NA    3
## 3964        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3965      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3966      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3967        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3968      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3969        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3970       500 ml Ret Individual    Retornable     1      NA    NA    NA    1
## 3971        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3972     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3973        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3974      2.5 Lts. NR   Familiar No Retornable    NA      NA    11    18   11
## 3975        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3976       500 ml Ret Individual    Retornable    NA       2    NA     2    2
## 3977      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3978      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3980        2 Lts. NR   Familiar No Retornable     3       6     1     8    3
## 3981      2.5 Lts. NR   Familiar No Retornable    NA       4     4    11    4
## 3982        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3983       500 ml Ret Individual    Retornable     1      NA     2    NA    3
## 3984        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3985      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3986    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3987        600 ml NR Individual No Retornable     2      NA    NA     3    8
## 3988      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3989      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3990        2 Lts. NR   Familiar No Retornable     6       6     6     8   14
## 3991        600 ml NR Individual No Retornable     3       3     3     3    9
## 3992             Lata Individual No Retornable     2       2    NA     2    3
## 3993      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3994        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3995     1 Ltro. N.R. Individual No Retornable    15       8    13    11   19
## 3996      1.5 Lts. NR Individual No Retornable     6       3    13    29   25
## 3997   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3998        5 Lts. NR   Familiar No Retornable    11      11    11    11   18
## 3999        600 ml NR Individual No Retornable     8      13     8    10   13
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA         1
## 2        2     2      2          2       2         4         2
## 3        3     3      3          3       3         3         3
## 4       NA    NA     NA         NA      NA        NA         1
## 5       NA    NA     NA         NA      NA         0        NA
## 6       NA    NA     NA         NA      NA        NA        NA
## 7       NA     0     NA         NA       0        NA        NA
## 8        1    NA      1          1      NA        NA        NA
## 9        4     4      7          4       3         1         3
## 10       0    NA     NA         NA      NA        NA        NA
## 11       1     1      1          1       1         1         1
## 12      NA    NA     NA         NA      NA        NA        NA
## 13       1     1      1          2       1         1         1
## 14      NA     6      3          6      NA         3        17
## 15      NA    NA     NA          1      NA        NA        NA
## 16      NA    NA      2         NA      NA        NA         2
## 17      NA    NA     NA         NA       3        NA        NA
## 18       4     2      2         NA       4         2         4
## 19      NA    NA     NA          2      NA         4         2
## 20       8    NA     NA         NA      NA        NA        NA
## 21      10    25     32         19      32        10        38
## 22      67    86     60         67      76        67        89
## 23      14    15     15          8      21        26        11
## 24       2     2      3          2       2         2         2
## 25      NA     6     NA         NA      NA        NA        NA
## 26       8    17      6          3       3         6         8
## 27      14    25     35         18      28        14       278
## 28      95   127     81        102      92       120       109
## 29      23    30     25         21      42        32        25
## 30     108   127     95         93     139        93       101
## 31       2     3      3          2       5         2         2
## 32       2     2      5         NA       3        NA         3
## 33       2     4      4          6       4         2         2
## 34       1     3      2          4       2         2         2
## 35      NA    NA      1         NA      NA        NA        NA
## 36       1     1      1          1       1         1         1
## 37      NA    NA     NA         NA      NA        NA        NA
## 38      NA    NA     NA         NA      NA        NA        NA
## 39       0     0      0          0       0         0         0
## 40       1     2     NA          0       1        NA         3
## 41      NA    NA     NA         NA       0        NA        NA
## 42       1    NA     NA         NA      NA        NA        NA
## 43      NA    NA     NA         NA      NA        NA         1
## 44       0     0      0          0       0         0         0
## 45       1     1     NA         NA      NA        NA         1
## 46      NA    NA     NA         NA       1         1        NA
## 47       1    NA     NA         NA      NA        NA        NA
## 48       3     3     NA         NA      NA        NA         3
## 49      NA     0      1         NA       0        NA        NA
## 50       1     0      0          0      NA         0         0
## 51       2     1     NA          2       1         1         1
## 52       3     1      1          2       1         1         1
## 53      NA    NA     NA         NA      NA        NA        NA
## 54      NA    NA     NA         NA      NA        NA        NA
## 55       1    NA     NA         NA      NA        NA        NA
## 56      NA     0     NA         NA       0        NA        NA
## 57       1    NA     NA         NA      NA        NA        NA
## 58       2     1     NA         NA       1         1         1
## 59      NA     1      1         NA       2        NA         1
## 60      NA    NA     NA         NA      NA        NA        NA
## 61      NA    NA     NA         NA      NA        NA        NA
## 62      NA     0     NA         NA       0        NA        NA
## 63       1    NA     NA         NA      NA        NA        NA
## 64       2     1     NA         NA       1         1         1
## 65      NA    NA      1          1       3         1         1
## 66      NA    NA     NA         NA      NA        NA        NA
## 67       1    NA     NA         NA      NA        NA        NA
## 68      NA    NA      3         NA       3         3        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3    NA      3          3       1        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72       1    NA     NA         NA      NA        NA        NA
## 73       3     3      3          3      NA        NA         6
## 74      NA     0     NA         NA       0        NA        NA
## 75       1    NA     NA         NA       0        NA        NA
## 76       2     1      2          4       1         1         1
## 77      NA     1      2          1       3         1         3
## 78      NA    NA     NA         NA      NA        NA        NA
## 79      NA    NA     NA         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA         1
## 81       1    NA      1          1       1        NA         1
## 82      NA    NA     NA         NA       1        NA         1
## 83      NA    NA     NA         NA      NA        NA         3
## 84      NA    NA     NA         NA      NA         1        NA
## 85       4     4      4          8       6         2         2
## 86       6     6      6          3       3         3         3
## 87      NA    NA      4         NA      NA        NA        NA
## 88       3     3     NA          3       8        NA         3
## 89      NA    NA     NA         NA      NA        NA         1
## 90      NA    NA     NA         NA      NA         0        NA
## 91      NA    NA     NA         NA      NA        NA        NA
## 92       5     3      5          3       3         3         3
## 93       0    NA     NA         NA      NA        NA        NA
## 94       3     1      2          1       1         1         2
## 95       1     1      2          1       2         1         2
## 96       6    NA      3         NA      NA        NA         6
## 97      NA     0     NA         NA      NA         0         0
## 98       1    NA     NA          1      NA        NA        NA
## 99       1    NA     NA         NA      NA        NA        NA
## 100     NA     2      2         NA      NA        NA        NA
## 101     NA     1     NA          1       1        NA        NA
## 102      2     2      2          2       4         2         2
## 103      3    NA     NA         NA      NA        NA         3
## 104     NA    NA     NA         NA      NA        NA        NA
## 105      2    NA     NA         NA      NA        NA         2
## 106      2     6      4          6       4         4         4
## 107     NA    NA      1         NA       1        NA        NA
## 108     NA     1     NA          1      NA        NA         1
## 109     NA    NA     NA         NA      NA        NA        NA
## 110      1    NA     NA         NA       1        NA        NA
## 111     NA    NA      2          4       2         2         2
## 112     NA    NA     NA         NA      NA        NA        NA
## 113      3     3     NA          3       3         3         3
## 114     10    13      6         13      16        10         6
## 115      5     3      5          3       5         6         5
## 116     NA    NA     NA         NA      NA        NA         3
## 117     NA    NA     NA         NA      NA        NA        NA
## 118     NA    NA     NA         NA      NA         7        NA
## 119     39    42     39         60      28        25        25
## 120      4     4      2          4       2         6        NA
## 121     15    11      8         11      11        11         8
## 122     44    36     27         40      40        25        23
## 123      3     4      5          4       4         6         4
## 124      2     2     NA          3       3         3         5
## 125      1     3      2          1       3         1         2
## 126      1     2      1          1       1         1         1
## 127     NA    NA     NA         NA      NA        NA        NA
## 128      3     1     NA          1       2         2         2
## 129      0     0      0          1       0         1         0
## 130      1     2      2          2       1         2         3
## 131     NA    NA     NA         NA      NA        NA        NA
## 132     NA    NA     NA          1       0        NA        NA
## 133     NA    NA     NA         NA       2        NA        NA
## 134      0     0      0          0       1         0        NA
## 135     NA    NA     NA         NA      NA        NA         1
## 136      0     0      1          1       0         0         0
## 137     NA     1     NA         NA       1        NA        NA
## 138     NA    NA     NA         NA       1         1        NA
## 139     NA    NA     NA         NA      NA         2         2
## 140      2     1      1         NA      NA        NA        NA
## 141      3     1     NA         NA      NA         1         3
## 142      0     0     NA          0      NA        NA         0
## 143     NA    NA     NA         NA      NA        NA        NA
## 144     NA     1      1         NA       1        NA        NA
## 145     NA    NA     NA         NA      NA        NA        NA
## 146      2     1      1         NA      NA        NA        NA
## 147     NA     1     NA         NA      NA         1        NA
## 148      0    NA     NA         NA      NA        NA        NA
## 149      2    NA     NA         NA      NA        NA        NA
## 150     NA    NA     NA         NA       1        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152     NA    NA     NA         NA      NA        NA         2
## 153     NA     1     NA         NA       3         1        NA
## 154      1    NA     NA         NA      NA         0        NA
## 155     NA    NA     NA          2      NA         2         2
## 156     NA     1     NA         NA      NA        NA        NA
## 157     NA    NA     NA         NA      NA        NA        NA
## 158      2     1      1         NA      NA        NA        NA
## 159     NA    NA      3         NA      NA        NA        NA
## 160     NA    NA      0         NA      NA        NA        NA
## 161     NA     2      2          2       4        NA        NA
## 162     NA    NA      1         NA      NA        NA        NA
## 163     NA    NA     NA         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA         2         2
## 165      2     1      1         NA      NA        NA        NA
## 166     NA     1     NA          3      NA         1         6
## 167      0    NA     NA          0       0        NA        NA
## 168     NA    NA     NA         NA      NA        NA        NA
## 169     NA     1      1          1       1        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171     NA     3     NA         NA       1        NA        NA
## 172      1     1     NA          1      NA         1         3
## 173     NA    NA     NA         NA      NA        NA        NA
## 174     NA    NA     NA         NA      NA         3         1
## 175     13    21     15         13       4        11         8
## 176     32    38     13          6       6        13        22
## 177     NA    NA     NA          0      NA        NA        NA
## 178     NA    NA     NA         NA      NA        NA        NA
## 179     13     8     10          5       8         5         8
## 180     NA    NA     NA         NA      NA        NA         3
## 181     NA    NA     NA         NA      NA         0        NA
## 182      3    NA     NA         NA      NA        NA        NA
## 183     NA    NA     NA         NA      NA        NA        NA
## 184     NA     2     NA          1      NA         1         1
## 185      2     4     NA          1       1         2         1
## 186      0     1     NA         NA      NA         0         1
## 187      2     2      2         NA       2         1         1
## 188      1     1     NA          1      NA         1         2
## 189     17    11      3          3       3        NA        NA
## 190     NA    NA     NA         NA      NA        NA         0
## 191      1     1     NA         NA      NA        NA        NA
## 192      1    NA     NA         NA      NA        NA        NA
## 193     NA    NA     NA         NA      NA        NA        NA
## 194     NA    NA     NA         NA      NA        NA        NA
## 195      2    NA     NA         NA      NA        NA        NA
## 196     NA    NA     NA         NA      NA        NA        NA
## 197      8     6     11         13       8        13        11
## 198      2    NA      3         NA       2         2         2
## 199      6     8      3          8      11         6         3
## 200      6    11      6         17      11        11        20
## 201     14     7     NA         11       4        11         7
## 202     NA    NA     NA         NA      NA        NA         2
## 203      6    11     21         15      17        19        13
## 204      1     3      2          1       2         2         3
## 205     NA    NA     NA          1       1        NA        NA
## 206     NA     1      1          1      NA        NA        NA
## 207     NA     2      2          2       2         2         2
## 208     NA    NA     NA         NA      NA        NA        NA
## 209     NA    NA     NA          3      NA        NA         6
## 210      2     4      2          4       4         2         2
## 211     11    15     23         23      15        19        19
## 212      5    NA     NA         NA      NA        NA        NA
## 213     16    25     25         16      22        19        29
## 214      6    19     19         19      10        13        13
## 215      5    11     15         14      17        14        14
## 216      2     5      2          3       5         2         3
## 217     14    14     17         14      14        11        14
## 218      3     6     11          6       3        11         8
## 219     25    39     42         60      28        77        25
## 220     25    39     60         63      99        49       106
## 221     NA    NA     NA         NA      NA        NA        NA
## 222      4     6      2         NA      NA        NA        NA
## 223     13    44     57         32      34        38        32
## 224     42    78     72        108      93        66        82
## 225      8     9     11         12       9        12        16
## 226      2     2      2          3       2         5         3
## 227      4     2      4          4       4         4         4
## 228      3     3      3          3       3         2         4
## 229      1     4     NA          1       2         1         1
## 230     NA    NA     NA         NA      NA        NA         1
## 231      1     3     NA          3       3         1         2
## 232     NA     3     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      0     0     NA          0      NA         0         0
## 235     NA    NA     NA         NA      NA        NA        NA
## 236      4     6      1         NA      NA         2         7
## 237      1     1     NA         NA      NA         0        NA
## 238     NA    NA     NA         NA      NA         2        NA
## 239     NA    NA     NA          1      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      0     0     NA          0      NA         0         1
## 242      1     5      2          1       1         3         4
## 243     NA    NA     NA         NA      NA         3         3
## 244     NA    NA     NA         NA       1         2         7
## 245     NA    NA     NA         NA      NA        NA        NA
## 246      3     6      4          8       4         4         3
## 247     NA    NA     NA         NA      NA        NA        NA
## 248     NA     1      1          0      NA        NA         1
## 249      2     1      1         NA       2         2        NA
## 250      1     1      3          4       3         2         3
## 251     NA    NA     NA         NA      NA        NA         0
## 252     NA     3      4          3       7         6         8
## 253     NA    NA     NA         NA      NA        NA        NA
## 254     NA     0      0         NA      NA        NA        NA
## 255     NA     1      1         NA       2        NA        NA
## 256      3     2      2          1       2         3         1
## 257     NA    NA     NA         NA      NA        NA         0
## 258      3     6      4          3       1         4         6
## 259     NA    NA     NA         NA      NA        NA        NA
## 260      0     1      0          0      NA        NA        NA
## 261     NA     1      1         NA       2        NA         2
## 262      2     3      3          3       2         3         2
## 263      1     1     NA          1       1         2         3
## 264     NA    NA     NA         NA       3         3         6
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA    NA     NA         NA      NA        NA         3
## 268     NA    NA     NA         NA      NA        NA         0
## 269     NA    NA     NA         NA      NA        NA        NA
## 270      3     6     10          8      10        12         8
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      1     1      1          1       0         0         0
## 273     NA     1      3          2       2         2        NA
## 274      3     2      4          4       4         3         3
## 275     NA    NA     NA         NA      NA        NA         0
## 276     NA     1     NA         NA      NA         1        NA
## 277      1     6      1          3       4         7         8
## 278     NA    NA      0         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        14
## 280     NA    NA     NA         NA       1        NA         3
## 281     NA    NA     NA         NA      NA        NA         3
## 282     NA    NA     NA         NA      NA        NA         4
## 283      2     2      2         51       2         2         2
## 284      3     3      3        165       3         3        19
## 285      0     0     NA         NA      NA        NA        NA
## 286     NA    NA     NA         35      NA        NA        NA
## 287     NA    NA     NA         NA      NA        NA        NA
## 288     NA    NA     NA         NA      NA        NA         1
## 289     NA    NA     NA         NA      NA        NA         3
## 290     NA    NA     NA         NA      NA        NA         1
## 291      2     1      1          2       2         0         2
## 292      2     1     NA          2      NA        NA         1
## 293     NA    NA     NA          2      NA        NA        NA
## 294     NA    NA     NA         NA      NA        NA        NA
## 295     NA     1      0         NA      NA        NA        NA
## 296      1     1      1          1       3         1         1
## 297     11     1     16         NA      NA        NA        NA
## 298      1    NA     NA          1       1        NA         0
## 299      1     1      1          1       1         1         1
## 300     NA    NA     NA         NA      NA        NA        NA
## 301      1     1      1          1       1         1         1
## 302     11    NA     NA         14      NA        NA        31
## 303     NA    NA      1         NA       1        NA        NA
## 304      0    NA      0          0       0         0         0
## 305      1     1     NA          1       1        NA         3
## 306      1    NA     NA         NA      NA        NA        NA
## 307     NA    NA     NA         NA      NA        NA        NA
## 308      1    NA     NA         NA      NA        NA        NA
## 309      2     6      2          4       2         2         4
## 310     NA    NA     NA          4       6         6         6
## 311     NA    NA     NA         NA      11         3         8
## 312     NA    NA     NA          7      11         7        18
## 313     25    25      4         44      NA         4        30
## 314     NA    NA     NA          1       3         2         1
## 315     NA    NA     NA         NA       1        NA        NA
## 316     NA    NA     NA         NA      NA        NA         2
## 317     NA    NA      1         NA      NA        NA        NA
## 318     27     4     NA          6      38         2        23
## 319     NA    NA     NA         NA      NA        NA        NA
## 320     41     3     38          3       3        13        55
## 321     44    79     51         10     120        35        44
## 322      6    17      6         20      33         3         8
## 323     NA     2      2         12      36        NA        41
## 324     37    NA      3         NA      37        NA        17
## 325     37    NA     NA         NA      NA        NA        NA
## 326     92    NA     99         NA      60         7        21
## 327    380   215    567          7     324         4       299
## 328     34    NA     NA         NA      NA         4        30
## 329     51    25     80          4      72        NA        57
## 330      2    11    220        251     142        72       118
## 331     13    13      4         18      13         1         1
## 332      2     3     NA          3       3         5         2
## 333      2     6      4          2       8         6         2
## 334      1     4      3          6       3         5         3
## 335     NA     1     NA         NA      NA        NA        NA
## 336      3     2      1          1       1         1         1
## 337      2     2     NA         NA       1        NA         2
## 338      6     6     NA         NA       3         1         3
## 339     NA    NA     NA          4      NA         1         1
## 340     NA    NA     NA         NA      NA        NA        NA
## 341      1     1      1          1       1         1         1
## 342     NA    NA     NA         NA      NA        NA        NA
## 343     26     2      1         NA      NA        NA        NA
## 344      3    NA      1          2       1        NA        NA
## 345      1    NA     NA          1      NA        NA        NA
## 346     NA     2     NA          2       2         2        NA
## 347      1     0      0          0       1        NA         1
## 348     NA    NA     NA         NA      NA        NA         1
## 349      1    NA     NA         NA      NA        NA        NA
## 350      1     1      1          2       1         1         2
## 351     NA     1      1          1       1        NA         2
## 352     NA    NA     NA         NA      NA         6        NA
## 353     NA    NA     NA         NA       3         8         1
## 354     NA    NA     NA         NA       2         2         2
## 355      2    NA     NA         NA      NA        NA        NA
## 356     NA    NA     NA          2      12        NA        NA
## 357     28    NA     NA         12      11        NA        17
## 358     NA     3     NA         NA       3        NA        NA
## 359     NA    NA      0         NA      NA        NA        NA
## 360      1     0      1          1       4         2        NA
## 361     NA    NA     NA          1      NA         1         3
## 362      1    NA      4          1       4        NA         5
## 363     NA    NA     NA         NA      NA        NA        NA
## 364      2    NA      3         NA      NA        NA        NA
## 365      6     3     NA          9       6        NA         8
## 366     NA    NA      0         NA      NA        NA        NA
## 367     NA    NA      1         NA      NA         2        NA
## 368     NA    NA     NA          1      NA         1         1
## 369     NA    NA     NA         NA       1        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371     NA    NA      4         NA       2        NA        NA
## 372     NA    NA     NA          2       9        NA        NA
## 373      6     3      3         12      NA        NA         8
## 374     NA    NA      0         NA      NA        NA        NA
## 375      1    NA     NA          1       4        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377     NA    NA     NA          5      NA         1         7
## 378      1     3     NA          1      NA        NA         3
## 379     NA    NA     NA         NA       2        NA        NA
## 380      2    NA     NA         NA      NA        NA        NA
## 381     31    NA     NA         NA      11         3         8
## 382     NA    NA     NA         NA      NA         2        NA
## 383     NA    NA     NA         NA      NA         2        NA
## 384     NA    NA     NA          3       1        NA        NA
## 385     NA    NA     NA         NA      NA        NA        NA
## 386      2     2      4          2       4         2        NA
## 387     NA    NA     NA         NA      NA        NA         2
## 388      2    NA     NA         NA      NA        NA        NA
## 389     NA    NA     NA          2       9        NA        NA
## 390     31    NA     NA          9      11         3         6
## 391      3     6      3          8       3         3         6
## 392     NA    NA      0         NA      NA        NA        NA
## 393      3    NA      1          0       4         3         0
## 394      2    NA     NA         NA      NA        NA        NA
## 395      2     6      2          1      11         1         5
## 396      9     3      4          3       4        NA         5
## 397     NA    NA     NA         NA      NA        NA        NA
## 398     NA     1      2          2      NA         3         2
## 399     13     8     11          5       9        10         4
## 400      1    NA     NA         NA      NA        NA        NA
## 401      0    NA      1         NA      NA        NA        NA
## 402     NA    NA     NA         NA       3         1         1
## 403     NA    NA     NA         NA      NA        NA         3
## 404     NA    NA     NA         NA      NA         1        NA
## 405      2     4      4          2       4         2         4
## 406      3     3      3          3       3         3         6
## 407     NA    NA     NA          3      NA         3        NA
## 408     NA    NA     NA         NA      NA        NA         3
## 409     NA    NA     NA         NA      NA         1        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411     NA    NA     NA         NA       0        NA        NA
## 412      1    NA      1         NA      NA         1         1
## 413      1     1      3         NA       3         1         1
## 414      4    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA       0        NA        NA
## 416      1     1      1          1       1         1         1
## 417     NA    NA     NA         NA      NA        NA        NA
## 418      1     1      1          1       1         1         1
## 419      6     6      6          8       6         3         3
## 420     NA     1      1         NA      NA         1        NA
## 421      1     0      0          1       1         1         1
## 422     NA    NA     NA         NA      NA        NA        NA
## 423      1    NA      1          1       1         1        NA
## 424      1    NA     NA         NA      NA        NA        NA
## 425      2     2      4         NA       2        NA         2
## 426     13    11     11          8       8         8        11
## 427     11     6      8          8       3        NA        11
## 428     NA    NA     NA         NA      NA        NA        NA
## 429      2     2      3          3       5         2        NA
## 430     15    15     15         17      21        11        17
## 431      2     1      2          1       1         2         3
## 432      2     2      2          2       2         2        NA
## 433     NA     0     NA         NA      NA        NA        NA
## 434      4     2     NA          4       2         4         2
## 435     NA    NA     NA         NA      NA        NA        NA
## 436     15    30     30         30      30        25        17
## 437     24    NA     NA         NA      NA        NA        NA
## 438      3    10     13         16      19        10        19
## 439     13    16      6         10      10        10        16
## 440     12    12     15         14      17        12        12
## 441      8     6      6          8       9         6         9
## 442      3    NA     NA          3       6         6         6
## 443      6     3      3          3      NA         3        NA
## 444     46    67     67         85      99        60       190
## 445     99   116    137        106     148        53        67
## 446      8     8      8         13      11         8         8
## 447     40    34     40         40      40        30        30
## 448     70    82     46         55      72        44        51
## 449     NA    NA     NA         NA      NA        NA        NA
## 450     18    20     16         19      16        17        20
## 451     NA     2     NA         NA      NA        NA        NA
## 452      1    NA     NA         NA      NA        NA        NA
## 453     NA    NA     NA         NA      NA        NA        NA
## 454      1     1      2          1       1         1         1
## 455     NA    NA     NA         NA      NA        NA        NA
## 456      1     1     NA         NA      NA         1        NA
## 457      0     0      0          0       0         0         0
## 458     NA    NA     NA         NA       0        NA         0
## 459      4     3      2          3      NA         1         3
## 460     NA    NA     NA         NA       0        NA        NA
## 461     NA     2     NA          2      NA         2        NA
## 462      0    NA     NA          1       1         0        NA
## 463      1    NA     NA         NA       1        NA        NA
## 464     NA    NA     NA         NA      NA         1        NA
## 465      0     0      0          0       1         1         0
## 466      3     3      3          2       1         1        NA
## 467     NA    NA     NA         NA      NA         1         2
## 468     NA    NA     NA         NA       1         1         1
## 469      1    NA     NA         NA      NA        NA        NA
## 470     NA    NA     NA         NA       4         3         3
## 471      4     4      7         NA       4         4         7
## 472     NA    NA     NA         NA       0        NA        NA
## 473      0    NA     NA         NA       0         0        NA
## 474      2    NA     NA         NA       2         2        NA
## 475      2     3     NA         NA       2        NA        NA
## 476      1     1      3          2       1         2         1
## 477     NA    NA     NA         NA      NA        NA        NA
## 478      1    NA     NA         NA      NA        NA        NA
## 479     NA    NA     NA         NA       1        NA        NA
## 480      4    NA      4          4       4        NA         4
## 481     NA    NA     NA         NA       0        NA        NA
## 482     NA    NA     NA         NA      NA         0        NA
## 483     NA    NA      4         NA      NA        NA        NA
## 484     NA     1     NA         NA       4         2         2
## 485      1     1      1          1       2        NA         1
## 486     NA    NA     NA         NA      NA        NA        NA
## 487     NA    NA     NA         NA       4        NA        NA
## 488      4     4      9          7       4        NA         7
## 489     NA    NA     NA         NA       0        NA        NA
## 490     NA    NA      0         NA      NA        NA        NA
## 491      2    NA      2          2      NA        NA        NA
## 492     NA     1     NA         NA      NA        NA        NA
## 493      1     1      1          1       2         1         1
## 494     NA    NA     NA         NA      NA        NA        NA
## 495      1     1      1          1       3         1         1
## 496      1    NA     NA         NA       3        NA        NA
## 497     NA    NA      3          3      NA        NA        NA
## 498      4     7      4          4       7         4         7
## 499     NA    NA     NA         NA      NA        NA        NA
## 500     NA     0     NA          0      NA        NA        NA
## 501      1     1      1          1       1         3         1
## 502     NA    NA     NA         NA      NA        NA        NA
## 503     NA     2     NA          2       2        NA        NA
## 504      1    NA     NA         NA      NA        NA        NA
## 505      3     3      3         NA       1        NA         3
## 506      7     7      7          4       9         7         7
## 507     NA    NA     NA         NA       0        NA        NA
## 508      0    NA     NA         NA       1        NA         0
## 509      2    NA     NA         NA       4        NA         2
## 510     NA     3      2          2      NA        NA        NA
## 511      1     1      3          2       1         2         1
## 512     NA    NA     NA         NA      NA        NA        NA
## 513     NA    NA     NA         NA      NA         1        NA
## 514      3     1      3          4       2         4         5
## 515     NA    NA     NA         NA       3        NA        NA
## 516     NA    NA     NA         NA       1         1        NA
## 517     NA    NA     NA         NA      NA         1         1
## 518      2     2      2          2       2         2        19
## 519      3    10      3          3      22         3         3
## 520     NA    NA     NA          0      NA        NA        NA
## 521     NA    NA     NA         NA      NA        NA         7
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA    NA     NA         NA      NA        NA         1
## 524     NA    NA     NA         NA      NA         0        NA
## 525     NA     1      1         NA      NA        NA        NA
## 526     NA     1      0          1      NA         1         1
## 527      1     1      1         NA       1         1         1
## 528      4     2      5          2       2         2        NA
## 529      1     0     NA          1       0        NA        NA
## 530      3     1      1          1       1         1         1
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      2     1      1          1       1         1         1
## 533      6     3      6          3       3         3        37
## 534     NA    NA      1         NA       1        NA        NA
## 535     NA    NA     NA          0      NA        NA         0
## 536      1    NA     NA          1      NA        NA        NA
## 537      2    NA     NA         NA      NA        NA        NA
## 538     NA    NA     NA         NA      NA        NA        NA
## 539     NA    NA     NA         NA      NA        NA        NA
## 540     NA    NA     NA         NA      NA        NA        NA
## 541      2    32      4         15      21        17        40
## 542      2     3     NA         NA      NA         2        NA
## 543      8     6     14         11       8         8        14
## 544     14     8     11         14       8         8        14
## 545     NA    NA     NA         NA      NA        NA         4
## 546     46    30      4         21      15        19        11
## 547      2     2      4          3       4         3         3
## 548     NA    NA     NA         NA      NA        NA        NA
## 549      4     6      4          6      13         6         2
## 550      8     6     14         11       6         8        14
## 551      4     2      4          8       4         4         4
## 552     NA    NA     NA         NA      NA        NA        NA
## 553     27    32      4         27      15        13        61
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     51     3     10         25      29        10        54
## 556     10    25     44         32      51        41        76
## 557     24    12      8          9      20        14        12
## 558      5     3      6          6       3         3         2
## 559     17     8     17         31      28        20        14
## 560      3    14      3         14      17        11        17
## 561     88    NA     85         60      95        85       116
## 562    116    88    123        116     236        14       197
## 563     30    30      8         34      30        21        15
## 564    131    53     34         78     118       120       142
## 565      1     1     NA         NA      NA        NA         1
## 566      2     5      7          6       6         6         6
## 567     NA    NA     NA          2       6         3         6
## 568     30    NA     NA          6      12        12        34
## 569      3     3      3          2       5         4         4
## 570      2     2      1          1       1         1         1
## 571     NA    NA     NA         NA      NA        NA         1
## 572      3    NA      3         NA      NA         3        NA
## 573      1     1      0          0       0         0         0
## 574      3     2     NA         NA      NA        NA        NA
## 575      2     2      2         NA      NA        NA        NA
## 576      0     1      0          0       1         1         0
## 577      1    NA     NA         NA      NA        NA        NA
## 578      2     2      1          2       0         2         1
## 579      1     1      1          2       2         1         1
## 580     NA    NA     NA         NA       3         2         3
## 581     NA    NA     NA         NA       3         1        NA
## 582      4    NA      2          2       2         2         2
## 583      2    NA      1          1      NA        NA        NA
## 584      3    10      1          4      12         3        14
## 585     NA    NA     NA         NA      NA        NA        NA
## 586     NA     1      0          1      NA         1         1
## 587     NA    NA     NA          0      NA        NA        NA
## 588      1     2      1          1       2         1         5
## 589      3     1      1          2       1         1         2
## 590     NA    NA      0         NA      NA        NA        NA
## 591      2    NA      1          1      NA        NA        NA
## 592     NA     1      1          4       1        NA         6
## 593     NA     0      0          0      NA         0         0
## 594     NA    NA     NA         NA       0        NA         0
## 595      1    NA      1          1       2         1         1
## 596      1    NA      1         NA      NA         1         1
## 597     NA    NA      0         NA      NA        NA        NA
## 598     NA    NA      2          2       2         2         2
## 599     NA     1      1          4       4        NA        NA
## 600     NA     1      0          1      NA         1         1
## 601     NA    NA      0         NA      NA        NA        NA
## 602      1    NA      1          1       2         1         1
## 603      1     1      1         NA      NA         1         1
## 604      1     1      1          2       1         3         2
## 605      2    NA      1          1      NA        NA        NA
## 606      3     8     NA         NA       6         6         8
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     NA     3      1         NA       1         3        NA
## 610     NA    NA      0         NA      NA        NA        NA
## 611     34    NA     NA          2      11        11         8
## 612      2    NA      1          1      NA        NA        NA
## 613     NA    15      1          4      12         3        23
## 614     NA    NA     NA         NA      NA        NA        NA
## 615     NA     1      0          2      NA         1         1
## 616      0     0      1          1      NA         1        NA
## 617      3    NA      1          1       2         1         5
## 618      2     3      3          1       1         1         2
## 619     NA    NA      0         NA      NA        NA        NA
## 620     NA     1      1          2      NA         2         3
## 621     13     3      7          4       6        10        13
## 622      1    NA      0          0       1        NA        NA
## 623      0    NA      1          1      NA        NA        NA
## 624     NA    NA     NA         NA       1         1        NA
## 625     NA    NA     NA         NA      NA         1        NA
## 626      6     6      6          4       6         4         2
## 627      3     6      3          6       3         3         3
## 628     NA    NA     NA         NA       0        NA        NA
## 629     NA    NA     NA         NA      NA        NA         4
## 630     NA    NA     NA         NA      NA        NA         1
## 631     NA    NA     NA         NA      NA         0        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633      9     7     13          0       3         3         4
## 634      1     3      2          4       3         2         1
## 635      1    NA      1          4      NA        NA         1
## 636     NA     6     NA         NA       2         2        NA
## 637      1     1      1          1       2         2         3
## 638     25    23     11         17      34        25        17
## 639     NA    NA      1         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA         0
## 641     NA    NA      1         NA      NA        NA         1
## 642      7    NA     NA         NA      NA        NA        NA
## 643     NA    NA     NA         NA      NA        NA        NA
## 644     NA    NA     NA         NA      NA        NA        NA
## 645      4     4      8          6      NA        NA         2
## 646     44    72     49         49      53        53        57
## 647     15    12     15         11       9         6         6
## 648    101    93    116         76      96       101        96
## 649     96    54     99         54      51        73        45
## 650     NA    NA      4         NA      NA        NA        NA
## 651     55    61     70         51      78        51        66
## 652     16    18     11         19      14        12        20
## 653      6     5      5          6       6         8         6
## 654     NA    NA     NA          3       3        NA        NA
## 655      6    11      4          4       2         6         8
## 656     20    20     20         25      23        23        34
## 657      4     6      6          2       4         2         8
## 658      1     1      2         NA      NA         1        NA
## 659     NA    15     25         42      49        55        55
## 660     45    NA     NA         NA      NA        NA        NA
## 661     79    73    114         16       6         3        10
## 662      3     3      3          3       3         3         3
## 663     18     5      9          9       5         8        11
## 664     12    12     12         11       9         8         9
## 665     73    85     79         56      93       110       116
## 666     28    42     42         39      23        14        39
## 667    201   130    211         77     173       109       204
## 668    197   137    176        169     183       201       166
## 669     NA    NA     NA         NA      NA        NA        NA
## 670     74    49     59         49      66        66        87
## 671    125    78    101         85      70       116        74
## 672     33    36     27         26      14        22        25
## 673      3     9      5          9       8        11         9
## 674      8     4      2          4       2         4         6
## 675     NA     1      1         NA      NA        NA        NA
## 676     NA     1     NA         NA      NA        NA        NA
## 677      1     1      1          1       1         1         1
## 678     NA    NA     NA         NA      NA        NA         1
## 679      8    16     10         18      14         9        18
## 680      0     0      0          0       0         0         1
## 681      4     5      5          6       3         1         4
## 682      2    25     20          2      17        NA        21
## 683     NA     0     NA         NA      NA        NA        NA
## 684      2     6      4          4       2         2         6
## 685      2     3      2          3       5         4         3
## 686      2     5      4          1       5         1         2
## 687      3     4      3          5       5         2         4
## 688      3     1      2         NA       3         5         2
## 689      0     0      0          1       0         0         0
## 690      3     1     NA         NA      NA        NA        NA
## 691      3     1     NA         NA      NA        NA        NA
## 692     NA     1     NA         NA      NA        NA        NA
## 693      8     7      6          6       8         3         6
## 694     NA    NA     NA         NA       1         5         5
## 695      3    NA     NA         NA      NA        NA        NA
## 696     11     3     14         11      11        11        11
## 697     NA    NA     NA         NA      NA         3        NA
## 698      0    NA      0         NA       0        NA        NA
## 699      1     2     NA         NA      NA        NA         4
## 700      3     4      3          4       3         2         2
## 701     NA    NA     NA         NA      NA        NA        NA
## 702      8    NA     NA          6       6         3         8
## 703      0    NA      1          0      NA         0        NA
## 704      1    NA      2          2      NA        NA         2
## 705     NA    NA      1          1       3         2         1
## 706     NA    NA     NA         NA      NA        NA        NA
## 707     NA    NA      3          6       3         8        NA
## 708      0    NA      0         NA       1        NA        NA
## 709      1    NA     NA         NA      NA        NA         2
## 710      1    NA      3          3       4         1         3
## 711     NA     1     NA          4       1         1         4
## 712     23     6     14         17      11        11        11
## 713     NA    NA     NA         NA       0        NA        NA
## 714     NA    NA     NA         NA      NA        NA        NA
## 715      5     1      1          1       5         3         5
## 716     NA    NA     NA         NA      NA        NA        NA
## 717      2    NA     NA         NA      NA        NA        NA
## 718      8    14     11         17      17        20        17
## 719     NA    NA      3         NA      NA        NA        NA
## 720      0     0      0         NA      NA        NA         0
## 721      1    NA     NA         NA       2         2        NA
## 722      5     5      6          5       6         2         3
## 723     NA    NA     NA         NA      NA        NA        NA
## 724     NA     2     NA         NA      NA        NA         1
## 725     NA    NA      1         NA      NA         1        NA
## 726     11    17     10         22      12        13        17
## 727     NA    NA     NA         NA      NA        NA         1
## 728     NA    NA     NA         NA      NA         1        NA
## 729     51    NA     NA         57       2         2        53
## 730     25    NA     22         38       3         3        51
## 731      3     8      8          6       3         6         5
## 732     25    42      7         21      25        32        11
## 733     18     5      8         66       3        NA         5
## 734     NA    NA     NA         NA      NA        NA         1
## 735     NA    NA     NA         NA      NA        NA        NA
## 736      1     3     NA          2       2         1         1
## 737      3     5     NA         NA       5         4        NA
## 738      3    NA     NA          3       2         4        NA
## 739      0    NA     NA          1       1        NA         0
## 740     NA    NA     NA          1       1        NA         1
## 741      2    NA     NA         NA      NA         2        NA
## 742     NA    NA     NA          1       1        NA         1
## 743     31    14     NA         NA      NA        25        NA
## 744      3    NA      3          3      NA        NA        NA
## 745     NA    NA     NA         NA      NA        NA         0
## 746     NA    NA     NA         NA      NA        NA         1
## 747      1    NA     NA         NA      NA        NA         5
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      2     1     NA          1       1         1         1
## 750      8     6      2         11       8         2         8
## 751      3     5     NA         NA      NA        NA        NA
## 752     NA    NA     NA         NA       2         2         2
## 753     30    72    108         42      93        57        55
## 754    251     6    158         62     124        93       194
## 755      8    27     95         15      27        49        30
## 756     13    18      8          5      13         8         8
## 757     10    NA      8         11      19        10        17
## 758      5    12      9          8      12         6         3
## 759     NA    NA      5         10      18         5        NA
## 760     NA    NA     NA         NA       1        NA        NA
## 761     17    17     21         19      17        13        17
## 762     17    31     17         14      11        11        20
## 763      8     2      4          6       6         2         6
## 764      3     3      5          5       5         3         8
## 765      2     2      1          1       3         1         2
## 766     NA     2      3          3       2         2         3
## 767      8    82    156         40     137        61        63
## 768     61    42     42         32      NA        NA        NA
## 769     NA    NA     NA         16      51        22        22
## 770      3     3      3          3       3         3         3
## 771      2    NA     21         29      36        14        35
## 772    211    42    304         82     186       271       113
## 773    275    39    370         99     204       155       345
## 774    144   166     53        243      85        53       176
## 775      7    NA     NA         NA      NA        NA        NA
## 776     NA    NA     NA         NA      NA        NA        42
## 777     49    34    188         59      72       108        51
## 778    169   142     82        182     133       148       251
## 779     NA    NA     NA         NA      NA        NA        NA
## 780     25    15     20         36      41        36        25
## 781     16     5     23         16      25        23        22
## 782     NA    18     14         17      17         6         6
## 783      6    12     NA          6       4         4         4
## 784     NA     1     NA         NA      NA        NA        NA
## 785     NA     1     NA          2       1        NA         3
## 786      3     1      2          2       3        NA         2
## 787      1     3      1          2       8        NA         1
## 788     13     6     14         17      23        15        18
## 789      5     2      3          5       2         4         2
## 790      4     2      2          1       4         1         3
## 791      7     4     23         NA       1         5         9
## 792     NA    NA     NA         NA      NA        NA        NA
## 793      4     2      2          6       2         2         4
## 794      1     2      1          1       1         1         1
## 795     NA     6      5         13      14         4         1
## 796      5     4     13          2       8         3         4
## 797      8     7      7         12      11         1         4
## 798      7     2      7          3       3         2        NA
## 799      3     4      4          4       0         1         4
## 800      8     3     NA          3       3         3        NA
## 801     NA    NA      5          8       5         5         3
## 802     NA    NA     NA         NA      NA         3        NA
## 803      3    15      6         10       4         5         3
## 804     NA    NA     NA         NA       1         3         3
## 805     NA     3     NA          8       3         3        NA
## 806      3     4      1          3       3         3        NA
## 807     NA    NA     NA          2       0        NA        NA
## 808     NA     5      3          3       3         3         3
## 809      8     3     NA          3      NA        NA        NA
## 810     NA    NA     NA          0       0        NA        NA
## 811     NA     0     NA          3      NA        NA        NA
## 812     NA     3     NA          3      NA        NA         1
## 813     NA    NA     NA         NA      NA        NA        NA
## 814      1    NA      1          2       2        NA         1
## 815     NA     0     NA          3      NA        NA        NA
## 816     NA     8     NA          3       3         5         3
## 817      3     5     NA          8       3        NA        NA
## 818      3     3      3          6       8         3         3
## 819     NA    NA     NA          1       1        NA         1
## 820     NA    NA     NA         NA      NA        NA        NA
## 821     NA    NA     NA         NA      NA         2        NA
## 822      3     3      3          3       3         1        NA
## 823      3     3     NA         NA      NA        NA        NA
## 824     NA     3      3          8       8        NA        NA
## 825     NA     7     NA         NA      NA        NA        NA
## 826      4     3      1          3       3         1         3
## 827     NA     1     NA          2      NA         0         0
## 828     NA    NA     NA          2       2        NA         2
## 829      3     8      8          3       8         3         3
## 830      6     3      1         NA      NA         4         3
## 831     NA    NA      4         NA      NA         5         3
## 832     21     5     16         16      16        18         7
## 833     NA    NA     NA          0      NA        NA        NA
## 834     NA    NA     NA         NA       1        NA        NA
## 835     NA    NA     NA         NA      NA         1        NA
## 836     17    15     27         27      25        17        17
## 837     22    25     19         16      16        13        16
## 838      3    10     10          5       8         5         5
## 839     NA    NA     NA         NA      NA        NA         1
## 840     NA    NA     NA         NA       0         0         1
## 841      0     1      1          1       1         1         1
## 842     NA    NA      1         NA      NA         1        NA
## 843     NA     1      2          2      NA        NA         1
## 844      1     1      1          1      NA         1        NA
## 845     NA    NA     NA         NA       2        NA         2
## 846      1     1      1          1       1         1         1
## 847      6     8     11          8       6         6        11
## 848     NA    NA      1         NA      NA        NA        NA
## 849     NA    NA     NA          0       0         0        NA
## 850     NA     2     NA          1      NA        NA         1
## 851     NA    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA       1        NA        NA
## 853      2     2     NA         NA      NA        NA        NA
## 854     NA    NA     NA         NA      NA        NA        NA
## 855     25    32     38         27      44        30        59
## 856     17    17     17         17      15        18        11
## 857     23    25     23         17      23        17        14
## 858     17    34     28         17      28        20        25
## 859      8    15     12         10      12         8         8
## 860     17    21     19         19      19        25        25
## 861      4     6      5          4       5         7         6
## 862      8    11     11          8      11        11        11
## 863      8    13     15         15      11         6        11
## 864     NA     3      6          8       6         3         6
## 865     NA    NA      0         NA      NA        NA        NA
## 866      8    11     11          8       8         6         6
## 867     NA    NA     NA         NA      NA        NA        NA
## 868     NA    NA      4          2       2         2         2
## 869     40    NA     NA         NA      NA        NA        NA
## 870     25    89     86         95      63        48        95
## 871     22    22     25         25      16        19        22
## 872      9    18     20         30      27        17         9
## 873     17    17     15         14      12        12        14
## 874      3    NA     NA         NA      NA        NA        NA
## 875      3     6      6          3      NA        NA        NA
## 876     74    88    102        113      60        63       120
## 877    222   268    247        236     215        81       148
## 878     NA    NA     NA         NA      NA        NA        NA
## 879     34    46     57         59      34        46        23
## 880     82   116    118        127     104        57        89
## 881     12    16     15         11      16        11        10
## 882     11    14      9         11      11         9         9
## 883     NA    NA     NA         NA      NA         2        NA
## 884     NA    NA     NA         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      1     1      1          1       1         3         1
## 887     NA    NA     NA         NA      NA        NA        NA
## 888     NA    NA     NA         NA      NA        NA        NA
## 889     NA    NA     NA         NA      NA        NA         7
## 890      0     0      0          0       0         0         0
## 891     NA    NA      0         NA      NA        NA        NA
## 892      3    19      3          3       3         5         4
## 893     NA    NA     NA         NA       0        NA        NA
## 894      2     4      2          6       2         4         2
## 895      1    NA     NA         NA      NA        NA        NA
## 896     NA    NA     NA         NA       1        NA         1
## 897      0     0      0          0       0         0         0
## 898      3     6      6          6       4         5         5
## 899     NA    NA     NA         NA      NA         1        NA
## 900     NA    NA     NA         NA       1        NA        NA
## 901     NA    NA     NA          2      NA        NA        NA
## 902      3     8      3          6      NA         3         6
## 903      0     1      1          1       1         1         1
## 904      0    NA     NA         NA      NA         1        NA
## 905      1     1     NA         NA       1         1         1
## 906      2     2      1          2       1         3         1
## 907     NA    NA     NA         NA      NA        NA        NA
## 908      3     3      6          3      NA        NA         8
## 909      0     1      1          0       0         0         0
## 910      0    NA     NA         NA      NA        NA        NA
## 911      1     1     NA         NA       1         1         1
## 912     NA    NA      1         NA      NA         1        NA
## 913     NA    NA     NA         NA      NA        NA        NA
## 914     NA    NA     NA         NA      NA        NA        NA
## 915      0     1      1          1       1         1         1
## 916      0    NA      0          0      NA        NA        NA
## 917      1     1      2          2       1         1         1
## 918      2     3      1          2       1         3         1
## 919      3     4      3          4       1         3         2
## 920      8    14      8         17       8         6         6
## 921     NA    NA     NA         NA      NA        NA        NA
## 922     NA    NA     NA          2       2        NA         2
## 923     NA    NA     NA         NA      NA        NA        NA
## 924     NA    NA     NA          2      NA        NA        NA
## 925     11    11      6         20      11        14        17
## 926      0     2      1          1       1         1         1
## 927      0     0     NA         NA       0        NA         0
## 928      1     1     NA         NA       1         1         1
## 929      4     6      4          5       4         5         4
## 930     NA    NA     NA         NA      NA        NA        NA
## 931     NA     5      2         NA       3         2         4
## 932      3     4     NA          4      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     NA    NA     NA         NA       1         1         1
## 935     NA    NA     NA         NA      NA        NA         2
## 936     NA    NA     NA         NA      NA         1         3
## 937      2     2      2          2       2         2         4
## 938      3     3      3          3       3         3         6
## 939      4    NA     NA         NA      NA        NA         4
## 940     NA    NA     NA         NA      NA        NA         2
## 941     NA    NA     NA          1      NA         1         2
## 942      1     1      1          1       1         1        NA
## 943      1     3      3          2       1         3         1
## 944      1     1      2          2       1         2         1
## 945     NA    NA     NA         NA      NA        NA         2
## 946      1    NA     NA          1       1         1         1
## 947     NA     2      4          2       2        NA        NA
## 948      2     1      1          1       1         1         1
## 949     NA    NA     NA         NA      NA        NA        NA
## 950     NA    NA     NA         NA      NA        NA        NA
## 951      2    NA     NA         NA      NA         2        NA
## 952     30    32     36         51      30        32        23
## 953      8     5      6         11       9         8         8
## 954     28    28     31         31      28        34        34
## 955     23    17     17         31      31        23        20
## 956     25    19     23         25      23        21        15
## 957      8     8      8          8      10         8        10
## 958      4     4      5          7       6         5         6
## 959      8     5      6          6       5         5         3
## 960      1    NA     NA         NA      NA        NA        NA
## 961      6     6      6          8       6         6         6
## 962      8     3      6         11      NA         6        11
## 963      4     4      4          4       4         8         6
## 964      5     3      8          3      NA        NA        NA
## 965      2     3      2          1       1         3         1
## 966     51    46     68         55      40        34        57
## 967     NA    NA     NA         NA      NA        NA        NA
## 968     25    29     32         25      29        38        35
## 969      3     3      3          3       3         3         6
## 970     11    11     11          9      20        11         6
## 971     NA     6      8          3       5         5         5
## 972     NA    NA     NA         NA      NA        NA        NA
## 973      6    NA     11          8      11         3         6
## 974     74   102    102         74      85       102        99
## 975    113    18     88         14      95       113        88
## 976      2    NA     NA         NA      NA        NA        NA
## 977     25    30     30         23      21        25        30
## 978     51    27     36         36      34        30        23
## 979     46    38     66         55      72        91        23
## 980      3     2      1          1       1         2         2
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     24    23     23         18      16        17        16
## 983      3     5      5          6       3         6         3
## 984      6     4      4          6       4         2         4
## 985      4     2      3          4       3         4         2
## 986     NA    NA     NA         NA      NA        NA        NA
## 987      1     1      1          2       1         2         1
## 988     NA    NA     NA         NA      NA        NA        NA
## 989      1    NA      1         NA       5        NA         1
## 990      5     3      6          4       4        NA         2
## 991     NA    NA     NA          1      NA        NA        NA
## 992      1     0      2          1       0         2         0
## 993      1     2      1          2       1         2         3
## 994      6     7     10          5       3         8         5
## 995      1    NA      1          0      NA        NA         2
## 996      1    NA     NA         NA      NA        NA        NA
## 997     NA     4      4          6       4         4         4
## 998      1     1      2          2       3         1         2
## 999      1    NA     NA         NA      NA        NA        NA
## 1000    NA    NA     NA         NA      NA        NA         2
## 1001    NA    NA     NA         NA      NA        NA         1
## 1002     1     1      1          0       1         1         1
## 1003     1     4      3          5       7         8         9
## 1004    NA    NA     NA         NA       3        NA         3
## 1005    NA    NA     NA         NA       2         6         4
## 1006    NA    NA     NA         NA       1        NA        NA
## 1007     4     2     NA          4       4        NA         4
## 1008     3     6      3          3       8         8         3
## 1009     0    NA      0         NA       0        NA         1
## 1010    NA    NA     NA         NA       2        NA         2
## 1011     1     1      1          1      NA         1         2
## 1012     3     3      2          3       2         1         3
## 1013    NA    NA     NA         NA      NA        NA        NA
## 1014    NA    NA     NA         NA      NA        NA        NA
## 1015    NA    NA      0         NA      NA        NA        NA
## 1016    NA    NA     NA          3      NA        NA        NA
## 1017     6     6      3          6      NA        NA        NA
## 1018    NA    NA     NA         NA      NA         0        NA
## 1019     1     1      3          5      NA         1        NA
## 1020     2     1     NA          4       1        NA         3
## 1021    NA    NA     NA         NA      NA        NA        NA
## 1022     2     2      2          2       2         2        NA
## 1023    NA    NA     NA         NA      NA        NA        NA
## 1024    NA    NA     NA         NA      NA        NA         2
## 1025     1     1      1          1      NA         1        NA
## 1026     1     2      1          1       1        NA         3
## 1027     2     1      2          1       4         3         3
## 1028    14     8     14         14       6         3        14
## 1029    NA    NA     NA         NA      NA        NA        NA
## 1030    NA    NA     NA         NA       2         2        NA
## 1031     3     1      3          1       3         4         5
## 1032    NA    NA     NA         NA      NA        NA        NA
## 1033     6     2      2          6       4         4         8
## 1034     6     6      6          8       6         3         6
## 1035    NA    NA      1         NA      NA        NA         1
## 1036    NA     0     NA          0      NA        NA         0
## 1037     1     1      1          1      NA         1        NA
## 1038     3     3      3          3       2         4         6
## 1039    NA    NA     NA         NA      NA        NA        NA
## 1040     8     4      4          8       6        11        15
## 1041     0    NA     NA         NA      NA        NA        NA
## 1042    NA    NA     NA         NA      NA         2        NA
## 1043    NA    NA     NA         NA      NA        NA         1
## 1044    NA    NA     NA         NA      NA         1         1
## 1045     2     4      2          2       2         2         2
## 1046    13     6      3          3       3         3         3
## 1047    NA    NA     NA         NA      NA        NA         1
## 1048    NA    NA     NA         NA      NA         1        NA
## 1049    NA    NA     NA         NA      NA        NA        NA
## 1050     1    NA     NA         NA       1        NA        NA
## 1051     1     2      2          2       2         1         1
## 1052    NA    NA     NA         NA       0        NA        NA
## 1053     2     1      1          1       1         1         1
## 1054    NA    NA     NA         NA      NA        NA        NA
## 1055     1     1      1          2       1         1         1
## 1056     3    NA     14          6       6         6        NA
## 1057    NA     1     NA         NA      NA        NA        NA
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     2    NA     NA         NA      NA        NA        NA
## 1060    NA    NA     NA         NA      NA        NA        NA
## 1061     1     1     NA         NA      NA        NA        NA
## 1062    13    13     15         13      13        11        11
## 1063     6     6      3          3       6         8        11
## 1064    NA    NA      3          3      NA        NA        NA
## 1065    34    30     25         25      25        25        17
## 1066     1     1     NA         NA       1         1        NA
## 1067     1     1     NA          2       1         1        NA
## 1068     3     3      4          6       4         4         4
## 1069    NA    NA      2         13      11         8        13
## 1070    24    24     32         NA      NA        NA        NA
## 1071     3     6      2         13      16        10        13
## 1072     3     3      3          3       3         3         3
## 1073     9    11     11         12      11         6        11
## 1074    NA     2      3         NA       2        NA        NA
## 1075    NA     3     NA          3      NA        NA        NA
## 1076    56    67     70         46      46        46        67
## 1077    92   102     67         85      77        56        81
## 1078    36    38     34         25      38        32        25
## 1079   116   101    108         89     101        70        70
## 1080     1     1     NA         NA      NA        NA        NA
## 1081     6     6      5          5       6         3         5
## 1082     6     5      6          5       5        NA         2
## 1083     2     2      1          1       1         1        NA
## 1084     1     1      1          1       1         2         1
## 1085    NA    NA     NA         NA      NA        NA        NA
## 1086     1    NA     NA          1       1        NA        NA
## 1087     0     0      0          0       0         0         0
## 1088    NA    NA      0         NA      NA        NA        NA
## 1089    NA     3      3         NA       3         1        NA
## 1090    NA     0     NA         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA         1         1
## 1092     1    NA     NA         NA      NA        NA        NA
## 1093    NA     1     NA         NA      NA        NA        NA
## 1094    NA    NA     NA         NA      NA         1        NA
## 1095     0     0      0          0       0         0         0
## 1096     4     4      4          4       4         3         3
## 1097    NA    NA     NA         NA       1         1         1
## 1098     1     3      3         NA       3        NA        NA
## 1099    NA    NA     NA         NA      NA        NA        NA
## 1100    NA    NA     NA         NA       0        NA        NA
## 1101    NA    NA     NA         NA       1        NA        NA
## 1102     4     3      3          4       3         3         4
## 1103     0     0      0         NA       0         0        NA
## 1104    NA    NA      2         NA      NA        NA        NA
## 1105     1    NA     NA         NA      NA        NA         3
## 1106    NA    NA     NA         NA      NA        NA        NA
## 1107    NA    NA     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA       1         2        NA
## 1109     1    NA     NA         NA      NA        NA        NA
## 1110     0     0      0         NA       0         0        NA
## 1111     1     3     NA         NA      NA        NA        NA
## 1112    NA    NA     NA         NA      NA        NA        NA
## 1113    NA     0     NA         NA      NA        NA        NA
## 1114    NA    NA     NA         NA       1        NA        NA
## 1115    NA    NA     NA          1      NA        NA        NA
## 1116    NA     3     NA          1      NA         1        NA
## 1117    NA    NA     NA         NA      NA         3        NA
## 1118    NA    NA     NA         NA      NA         0        NA
## 1119    NA     4      2          2      NA        NA        NA
## 1120     4     4      4          4       4         5         4
## 1121     0     0      0         NA       0         0        NA
## 1122     4     3      3          3      NA        NA        NA
## 1123    NA    NA     NA         NA      NA        NA        NA
## 1124     0    NA      0          0      NA        NA         0
## 1125     2    NA     NA         NA       1        NA         2
## 1126     4     4      3          4       3         4         4
## 1127     0     0      0         NA       0         0        NA
## 1128    NA    NA     NA         NA      NA        NA        NA
## 1129    NA     1     NA         NA      NA        NA        NA
## 1130     1    NA     NA          1       1         3         1
## 1131     0    NA     NA         NA      NA        NA        NA
## 1132     2    NA     NA         NA      NA        NA        NA
## 1133    NA    NA     NA         NA      NA         1        NA
## 1134    NA    NA     NA         NA      NA         1         1
## 1135     2     2      2          2       2         2         2
## 1136     3     3      3          6       6         3         3
## 1137    NA    NA      4         NA      NA        NA        NA
## 1138    NA    NA     NA         NA      NA        NA        NA
## 1139    NA    NA     NA         NA      NA        NA         1
## 1140    NA    NA     NA         NA      NA         0        NA
## 1141     0    NA      1         NA      NA        NA        NA
## 1142     4     5      4          5       3         3         1
## 1143    NA    NA     NA         NA       0        NA        NA
## 1144     1     1     NA          1       1         1         1
## 1145    NA    NA      2         NA      NA        NA        NA
## 1146     1     1      2          1       1         1         1
## 1147    NA    NA     NA         NA      NA        NA        NA
## 1148    NA    NA     NA         NA      NA        NA         0
## 1149    NA    NA     NA         NA      NA        NA         1
## 1150     1     1     NA         NA      NA        NA         1
## 1151    NA     1     NA         NA      NA        NA        NA
## 1152    11     6      4          8      11        11         6
## 1153     3    NA     NA         NA      NA        NA         6
## 1154     7    NA     NA         NA      NA        NA        NA
## 1155    11     6     13          6       8        15         6
## 1156     2     1      2          3       3         3         2
## 1157    NA    NA     NA          2      NA        NA        NA
## 1158    NA    NA     NA          2       2         2         2
## 1159    21    NA     NA         NA      NA        NA        NA
## 1160    19    22     50         32      35        35        38
## 1161    16    13     16         16      19        22        22
## 1162    12     9     12          9      12        11         8
## 1163    NA    NA     NA         NA       6         3        NA
## 1164    46    28     53         49      35        77        88
## 1165   218   130    187        159     173       116       201
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167    27    19     36         25      23        21        25
## 1168   135    53    114        120     131        99        89
## 1169     5     5      6          6       5         7         4
## 1170     5     3      5          2       5         5         6
## 1171     6     4      6          4       2         4         6
## 1172     4     2      1          2      NA         2         1
## 1173     1     1      1          1       1         1         1
## 1174    NA    NA     NA         NA      NA        NA        NA
## 1175    NA    NA     NA         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA         2
## 1177     0     0      0          0       0         0         0
## 1178     2     4      2          6       4         2         2
## 1179     0    NA     NA         NA      NA        NA        NA
## 1180    NA     2     NA          4      NA         4         6
## 1181    NA     0     NA         NA      NA        NA        NA
## 1182    NA     1     NA         NA      NA         1        NA
## 1183    NA    NA     NA         NA      NA        NA         1
## 1184     1    NA     NA         NA      NA        NA        NA
## 1185     0     0      0          0       0         0         0
## 1186     1    NA     NA         NA      NA        NA        NA
## 1187     1    NA     NA         NA      NA        NA        NA
## 1188     1    NA     NA         NA      NA        NA        NA
## 1189     1    NA     NA         NA      NA         1        NA
## 1190    NA    NA     NA         NA       2        NA         2
## 1191     1     1      1         NA      NA         1         1
## 1192     0    NA      1         NA      NA        NA        NA
## 1193    NA    NA      1          0       0         0         0
## 1194     2     1      1         NA       1         2         2
## 1195     1     1      1          1       1         1         2
## 1196     0    NA      0         NA      NA        NA         0
## 1197    NA    NA     NA         NA      NA         0        NA
## 1198    NA    NA      1         NA      NA        NA        NA
## 1199     1     4      1         NA      NA         1         6
## 1200     0    NA      0         NA      NA        NA        NA
## 1201     2     1      1         NA       1        NA        NA
## 1202     1     1      1          2       1         1        NA
## 1203     0    NA      0         NA      NA        NA         0
## 1204    NA    NA     NA         NA      NA         0        NA
## 1205     1     1      1         NA      NA         1         1
## 1206     0    NA      1         NA      NA        NA        NA
## 1207    NA    NA     NA         NA      NA        NA        NA
## 1208     2     1      1         NA       1        NA        NA
## 1209     1     1      1          2       1         1         2
## 1210     0    NA      0         NA      NA        NA         0
## 1211     1    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA        NA
## 1213    NA    NA     NA         NA      NA         0        NA
## 1214    NA    NA      1         NA      NA        NA        NA
## 1215     4     1      1          3       3         1         6
## 1216     0    NA      1         NA      NA        NA        NA
## 1217     0     0     NA         NA      NA        NA        NA
## 1218     2     1      1          2       1        NA        NA
## 1219     1     2      1          2       1         1         1
## 1220     0    NA      0         NA      NA        NA         0
## 1221    NA    NA     NA         NA      NA         0        NA
## 1222    NA    NA     NA         NA      NA        NA        NA
## 1223     3    NA      5          1       3        NA        NA
## 1224    NA    NA      0         NA      NA        NA        NA
## 1225    NA    NA     NA         NA       1         1        NA
## 1226    NA    NA     NA         NA      NA         1        NA
## 1227     2     4      4          4       2         2        NA
## 1228    NA     6      6          3       3         3        NA
## 1229     3     3      3         NA       3        NA        NA
## 1230    NA    NA     NA         NA      NA        NA         1
## 1231    NA    NA     NA         NA      NA         0        NA
## 1232    NA    NA      1         NA      NA         0         0
## 1233     1     1      2          1       1         1         2
## 1234     0    NA      0         NA      NA        NA        NA
## 1235     0    NA     NA         NA      NA        NA         0
## 1236    NA    NA     NA         NA      NA         1        NA
## 1237    NA    NA     NA         NA      NA         1        NA
## 1238     2     2      4          2       2         4         2
## 1239     2    NA      2         NA       2         2         2
## 1240     3     3      3         NA       6        NA         6
## 1241     4     4      8          6       6         8         2
## 1242     2     3      2          2       1         3         2
## 1243    NA    NA     NA         NA      NA         2         6
## 1244     5    NA     NA         NA      NA        NA        NA
## 1245     6    22     29         16      25        22        16
## 1246     3     3      6          3       3         6         3
## 1247     5     5      5          3       8         6         5
## 1248    18    11     18          4      14        14        28
## 1249    46    56     49         70      70        53        70
## 1250    15    21     15         13      17        13        17
## 1251    57    61     59         49      55        51        53
## 1252     2     2      4          1       4         2         3
## 1253    NA     1      0          2       2         1         1
## 1254    NA     1      1          1      NA         1         1
## 1255    NA    NA     NA         NA      NA         1        NA
## 1256    NA    NA     NA         NA      NA        NA         1
## 1257    NA    NA     NA         NA      NA         0        NA
## 1258    NA    NA     NA         NA      NA        NA        NA
## 1259     5     7      3          3       4         5         2
## 1260    NA    NA     NA         NA      NA        NA        NA
## 1261    NA    NA     NA         NA      NA         0        NA
## 1262    NA    NA     NA         NA       1        NA        NA
## 1263    NA    NA     NA         NA       1        NA        NA
## 1264    NA    NA      2         NA      NA        NA        NA
## 1265    NA    NA     NA         NA       3        NA         3
## 1266    NA    NA      1         NA      NA         0         0
## 1267    NA    NA     NA          0      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     1     1      1          1       1         1         1
## 1270    NA     0     NA         NA      NA        NA        NA
## 1271    NA    NA     NA         NA      NA        NA        NA
## 1272    NA    NA      0         NA      NA         0         0
## 1273    NA    NA     NA         NA      NA        NA         0
## 1274    NA    NA     NA          2      NA         2        NA
## 1275    NA     0     NA         NA      NA        NA        NA
## 1276    NA    NA      1         NA      NA         0         0
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     1     1      3         NA       1         1         1
## 1280    NA    NA      2         NA      NA        NA        NA
## 1281    NA    NA     NA         NA      NA        NA        NA
## 1282    NA     0     NA         NA      NA        NA        NA
## 1283     2     2     NA         NA      NA        NA        NA
## 1284     3    NA     NA          6       3         6         6
## 1285    NA    NA      1         NA      NA         0         0
## 1286    NA    NA     NA         NA      NA         0        NA
## 1287    NA    NA     NA         NA      NA        NA         2
## 1288     2     3      3          1       2         1         3
## 1289    NA     0     NA         NA      NA        NA        NA
## 1290     1    NA     NA          1      NA        NA         1
## 1291    NA    NA     NA         NA       1        NA         1
## 1292    NA    NA     NA         NA      NA        NA         1
## 1293     2     2      2          2       4         2         2
## 1294     3     3      3          3       3         3         3
## 1295    NA    NA     NA         NA      NA        NA        NA
## 1296    NA    NA     NA         NA      NA        NA         1
## 1297    NA    NA     NA         NA      NA         1        NA
## 1298     0    NA     NA         NA      NA        NA        NA
## 1299    NA     1     NA         NA      NA        NA        NA
## 1300     2     3      3          1       3         1         2
## 1301    NA    NA     NA         NA       0        NA        NA
## 1302     1     1      1          1       1         1         1
## 1303     1     1      1          1       1         1         1
## 1304     1    NA     NA         NA      NA        NA        NA
## 1305    NA     2      2          4       4         2         2
## 1306    NA    NA     NA         NA      NA        NA        NA
## 1307    13    17     15         17      19        15        15
## 1308    NA    NA     NA         NA      NA        NA        NA
## 1309     6     6      3          3       8         3         8
## 1310     6    11      6          8       6         6         8
## 1311     4    NA     NA         NA      NA        NA        NA
## 1312     3     3      2          3       3         3         2
## 1313     6     6      4          8       2         4         6
## 1314     3    NA     NA         NA      NA        NA        NA
## 1315     1     1      1         NA      NA        NA         1
## 1316    NA     2      2         NA      NA         2        NA
## 1317     4     2     NA          2       4         2         6
## 1318     4     2      2          2       2         4         2
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320    13    11     13         15      19        17        17
## 1321    16    21     16         NA      NA        NA        NA
## 1322    NA    NA      3         10       6        10        16
## 1323     3     3      3          3       3         6         3
## 1324     9     9     14          9      20        12        12
## 1325     3    NA     NA         NA      NA        NA        NA
## 1326    NA    NA      8         NA      NA        NA        NA
## 1327    25    28     32         18      25        25        77
## 1328    99    88    102         88      92        88       116
## 1329     8    15     13         13      15        15        25
## 1330    46    42     38         44      46        38        42
## 1331    13    13     11         10      11        12        12
## 1332     6     8      5          5       6         5         3
## 1333    NA    NA     NA         NA      NA        NA         1
## 1334     1     1      1          1       1         1         1
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA     1      1          1       1        NA        NA
## 1337     0     0      0          0       0         0         0
## 1338    NA    NA     NA         NA       2         2         2
## 1339    NA    NA     NA         NA      NA        NA         1
## 1340     1     1     NA         NA      NA         1        NA
## 1341     0     0      0          0       0         0         0
## 1342     2    NA      2          2       3         3         3
## 1343    NA    NA     NA         NA       1        NA        NA
## 1344     2     2      2          2      NA        NA         2
## 1345     3     3      3          8      NA         6         6
## 1346     0    NA     NA         NA      NA        NA        NA
## 1347    NA    NA     NA          0      NA        NA         0
## 1348    NA     2     NA         NA       3         1         3
## 1349     2     3      3          1       3         3         3
## 1350    NA    NA     NA         NA      NA        NA        NA
## 1351    NA    NA      3         NA      NA        NA        NA
## 1352    NA     3     NA         NA      NA        NA        NA
## 1353     0    NA     NA         NA      NA        NA        NA
## 1354    NA    NA      0         NA      NA        NA        NA
## 1355    NA    NA      2         NA       1         1         1
## 1356    NA     1     NA          1       1        NA         1
## 1357    NA    NA     NA         NA      NA        NA        NA
## 1358     0    NA     NA         NA      NA        NA        NA
## 1359    NA    NA     NA         NA      NA        NA        NA
## 1360    NA    NA     NA         NA       1         1         1
## 1361    NA     1      1         NA      NA        NA        NA
## 1362     2     3      2          1       1         2         2
## 1363     3     3      3          6       3        NA        11
## 1364    NA     0     NA         NA      NA        NA        NA
## 1365     2    NA     NA         NA      NA        NA        NA
## 1366     1     1      1          1      NA         1         4
## 1367    NA    NA     NA         NA      NA        NA        NA
## 1368     2     2      2          2      NA        NA        NA
## 1369     6    NA      3          3       3        NA         8
## 1370     0    NA     NA         NA      NA        NA        NA
## 1371     0    NA     NA         NA       0         0        NA
## 1372     2     2     NA          2       1         1         1
## 1373     1     3      2          1       3         2         1
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    NA     1     NA         NA      NA        NA         2
## 1376    NA    NA      1          1      NA        NA         2
## 1377    NA    NA     NA         NA       1         1         1
## 1378    NA    NA     NA         NA      NA        NA         3
## 1379    NA    NA     NA         NA      NA         1        NA
## 1380    15    11     17         25       4        19        13
## 1381    13    13     19         19       6        13         6
## 1382     3     3      3          6      NA         3         2
## 1383    NA     4      7         NA      NA        NA        NA
## 1384     5     3     NA          5      NA        NA        NA
## 1385    NA    NA     NA         NA      NA        NA         1
## 1386    NA    NA     NA          1      NA         0        NA
## 1387     1     1     NA          1       0         1         0
## 1388     1    NA      1          1       1        NA        NA
## 1389     4     4      5          3       2         1         3
## 1390     2    NA     NA         NA      NA        NA         0
## 1391     1     1     NA         NA       1         2         1
## 1392     2    NA      2          2      NA        NA         2
## 1393     1     1      2          2       1         1         1
## 1394     8     6      3          6       6        NA         6
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396     1    NA      1         NA      NA        NA        NA
## 1397     2     4      2          6       2         2         4
## 1398    15    19     13         19      17        15        15
## 1399     3     2      3          2       3         2         2
## 1400    11    14     11         11      11        14         4
## 1401     3     3      2          3       2         2         2
## 1402    19    32     13         30      19        19        17
## 1403     8     8      7          7       7         9         5
## 1404     5     5      3          3       3         2         3
## 1405    NA    NA     NA         NA      NA        NA        NA
## 1406     4     4      4          4       4         2        NA
## 1407    NA    NA     NA          3      NA         3        NA
## 1408     4     6      4         11       4         2         6
## 1409    NA    NA     NA         NA      NA         1        NA
## 1410     2    NA     NA         NA      NA        NA        NA
## 1411    NA    NA     NA          2       2         2         2
## 1412    26    NA     NA         NA      NA        NA        NA
## 1413    19    76     20         48      44        41        48
## 1414    32    44     41         51      35        19        67
## 1415    24    26     23         17      18        21        18
## 1416     3     3      2          2       3         3         2
## 1417    NA    NA     NA         NA      NA        NA        NA
## 1418    18    25     39         25      70        NA       137
## 1419   151   190    134        166     162       127       180
## 1420    NA    NA     NA         NA      NA        NA        NA
## 1421    19    44     30         19      17        23        49
## 1422    99   131     80         74     114       112        85
## 1423     2     2      2          2       1         2         1
## 1424    13    12     13         14      10        15         9
## 1425     8     9      8         NA      NA         2         6
## 1426    NA     2      4          4       6         2         4
## 1427     5     5      5          4       5         5         5
## 1428     1     1      1          1       1         2         1
## 1429    NA    NA     NA         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA        NA
## 1431    NA    NA     NA         NA      NA        NA         1
## 1432     0     0      0          0       0         0         0
## 1433    NA    NA     NA         NA      NA        NA         0
## 1434     0     2     NA         NA       0        NA         3
## 1435    NA    NA     NA         NA       0        NA        NA
## 1436     2    NA      2          2       2        NA         2
## 1437    NA     1      1          1       0         1         0
## 1438    NA    NA     NA         NA      NA        NA         1
## 1439     0     0      0          0       0         0         0
## 1440     1     5      3          5       3         4         2
## 1441    NA    NA     NA         NA       3         3         1
## 1442    NA    NA     NA          4       3        NA         8
## 1443    NA    NA     NA          5      NA        NA        NA
## 1444     1     1      1          1       0         1         0
## 1445     3     2     NA          1       3         1         3
## 1446    NA     2      4          3       2        NA        NA
## 1447     2     3      4          3       3         2         3
## 1448     0    NA     NA         NA      NA        NA        NA
## 1449    NA    NA      1         NA      NA        NA        NA
## 1450    NA    NA     NA          1      NA        NA        NA
## 1451     0     1     NA          1       0         0         0
## 1452    NA    NA     NA          0      NA        NA        NA
## 1453    NA    NA     NA          1      NA        NA        NA
## 1454    NA    NA     NA         NA      NA         1         1
## 1455     0    NA     NA         NA      NA        NA        NA
## 1456     3     3     NA          1      NA        NA        NA
## 1457    NA    NA     NA         NA      NA         2        NA
## 1458     1     1     NA          1       0         1         0
## 1459    NA    NA     NA         NA       1        NA        NA
## 1460    NA    NA     NA          1      NA        NA        NA
## 1461    NA    NA     NA         NA      NA        NA        NA
## 1462     3     3      3          3       1         3         1
## 1463     3     3     NA         NA      NA        NA        NA
## 1464    NA    NA      3         NA      NA         3        11
## 1465     4     4      7         NA       4        NA        NA
## 1466     6     5      2          3       5         1         3
## 1467     2     4      6          2       2        NA         2
## 1468    NA    NA     NA         NA      NA         3         3
## 1469     0    NA     NA         NA      NA        NA        NA
## 1470    NA    NA      3         NA      NA         2        NA
## 1471    NA     3     NA          1      NA        NA        NA
## 1472     4     4      4          9      NA         4        NA
## 1473     1     1      1          1       0         1         0
## 1474     3     3      1          3       3         3         3
## 1475     4     6      2         11       2         4         6
## 1476     4     6      3          4       3         6         3
## 1477     0    NA     NA         NA      NA        NA        NA
## 1478    NA    NA     NA         NA      NA         3        NA
## 1479    NA    NA      1         NA      NA         2        NA
## 1480     7     6      9          3       6        10         4
## 1481     0    NA     NA         NA      NA        NA        NA
## 1482    NA    NA      0         NA      NA        NA        NA
## 1483    NA    NA     NA          3      NA        NA        NA
## 1484    NA    NA     NA         NA      NA         1        NA
## 1485    NA    NA     NA         NA      NA         1         1
## 1486     2     2      2          2       2        21         2
## 1487     3     3      3         NA       3        32         3
## 1488    11    28     21         35       4        NA         7
## 1489    NA    NA     NA         NA      NA        13        NA
## 1490    NA    NA     NA         NA      NA        NA         1
## 1491    NA    NA     NA          2      NA        NA        NA
## 1492     2     3     NA          2       0         0         3
## 1493     1     5      1          3       3         3         3
## 1494    NA    NA     16         NA      NA         1        NA
## 1495    NA    NA     NA         NA       1        NA         0
## 1496     1     1      1          1       1         1        NA
## 1497     1     1      1          1       1         1        NA
## 1498    28    NA     NA         31      NA        NA        NA
## 1499    NA    NA      1         NA      NA        NA        NA
## 1500    NA    NA      1         NA      NA        NA         1
## 1501     1     1      3          2      NA        NA         3
## 1502     5    NA     NA         NA      NA        NA         1
## 1503     8     8     15         15      13        17        11
## 1504     8    11     11         11       6        11        NA
## 1505     6     6      3         NA       6         3        NA
## 1506    NA    NA     NA         NA      NA         2        NA
## 1507    NA    34     19         21      30        21        36
## 1508     3     3      3          4       2         3         2
## 1509     2     3     NA          2       2         2         1
## 1510    NA    NA     NA         NA      NA         2         4
## 1511     4     2     NA         NA       2         4        NA
## 1512    NA    NA      3         NA      NA        NA        NA
## 1513    NA    NA     NA         25      46        27        25
## 1514     5    NA     NA         NA      NA        NA        NA
## 1515    38    86     51          3      NA        57        38
## 1516    29    67     51         13      63        48         3
## 1517     2    15     15         36       9        18        20
## 1518    NA     3     NA         NA      NA         3        NA
## 1519     8    11     11          8       6         3        NA
## 1520    56   127     77         49     137        42        53
## 1521   127   243    148        225     166       201        88
## 1522    30    49     34         21      61        38        53
## 1523    59    66     82         85      66        36        95
## 1524     6     9      8         10      10         8         7
## 1525     6     6      8          8      11         3         3
## 1526    NA     2     NA         NA      NA         2        NA
## 1527     6     8      9          8       7         6         7
## 1528    NA     1      1         NA      NA        NA        NA
## 1529     1     1      1          1       1         1        NA
## 1530    NA    NA      1         NA      NA        NA        NA
## 1531     1     3      3         NA      NA        NA        NA
## 1532     2     9     NA          2       5         4         4
## 1533     0     0      0          0       0         0         1
## 1534     1     2      1          1       0         2         2
## 1535    NA     5      5          4       5         4         8
## 1536    NA    NA     NA         NA       0        NA        NA
## 1537     2     2      4          2       4         2         4
## 1538     1     2      1          2       1         2         1
## 1539    NA    NA     NA         NA      NA         1        NA
## 1540    NA    NA     NA         NA      NA        NA         1
## 1541     1    NA     NA         NA      NA        NA        NA
## 1542    NA     1     NA         NA      NA        NA        NA
## 1543     0     0      0          0       0         0        NA
## 1544     5     3      4          3       4         3         2
## 1545    NA    NA     NA         NA       1         4         4
## 1546    NA    NA     NA         NA      NA         2        NA
## 1547     8    11      6          6      14         6        11
## 1548     0    NA     NA         NA      NA         1         1
## 1549     1     1      1         NA       1         1         2
## 1550     3     4      4          6       4         3         4
## 1551    NA    NA     NA         NA      NA         0        NA
## 1552    NA    NA     NA         NA      NA         2        NA
## 1553    NA     3     NA         NA       3         3        NA
## 1554     0    NA     NA         NA      NA         1        NA
## 1555     1     1      1         NA       1         1        NA
## 1556     3     3      3          3       5         4         3
## 1557    NA    NA     NA         NA      NA         0        NA
## 1558    NA    NA     NA         NA      NA         2         2
## 1559     1    NA     NA         NA      NA        NA        NA
## 1560    NA    NA     NA         NA      NA         1        NA
## 1561     1     1      1         NA       1         1        NA
## 1562    NA    NA     NA         NA      NA         1         2
## 1563     4     3      3          4       3         2         3
## 1564    NA    NA     NA         NA      NA        NA        NA
## 1565    17    20     11         14      11         8        14
## 1566     0    NA     NA         NA       0        NA         3
## 1567    NA    NA     NA         NA      NA        NA        NA
## 1568     4     4      4          4       3         4         3
## 1569    NA    NA     NA         NA      NA         0        NA
## 1570    NA    NA     NA         NA      NA         2        NA
## 1571    NA    17     25         25      17        11        14
## 1572     1     0      0         NA      NA         1         2
## 1573     1     1      1          2       1         1        NA
## 1574     6     6      5          6       4         6         3
## 1575    NA    NA     NA         NA      NA         0        NA
## 1576    NA     2      1          2      NA         1        NA
## 1577     2    11      6         10       4         7         6
## 1578    NA    NA     NA         NA      NA        NA        NA
## 1579    NA    NA      0         NA      NA        NA        NA
## 1580    11     6      3          8       6         3        11
## 1581     9     5      5          5      10         6         1
## 1582    NA    NA     NA         NA      NA         1        NA
## 1583     8     2      2          6      11         2         6
## 1584    22    10     10         10      13         3        35
## 1585    NA    NA     NA         NA      NA        NA        NA
## 1586    14     2     NA          2       6        NA        11
## 1587     7    NA      7         NA       4        NA         7
## 1588    23     5      3          8      15        NA         8
## 1589    NA    NA     NA         NA      NA        NA         1
## 1590     3    NA      3         NA      NA         2        NA
## 1591    NA    NA     NA          3      NA        NA        NA
## 1592    NA    NA     NA         NA       1        NA        NA
## 1593     1     0     NA          0       1         0        NA
## 1594    NA    NA      1         NA      NA        NA        NA
## 1595     3    NA     NA         NA      NA        NA        NA
## 1596     8     8      3         NA      NA        NA         2
## 1597     0    NA     NA          0      NA        NA         1
## 1598     1     5      1          1       3         1         1
## 1599    NA    NA     NA         NA      NA        NA        NA
## 1600     1     6      1          2       2         1         1
## 1601     8    11      3          8      11        17         8
## 1602    NA    NA     NA         NA       1        NA        NA
## 1603    NA    NA     NA         NA      NA        NA        NA
## 1604    NA    NA     NA         NA      NA        NA         1
## 1605     1    NA     NA         NA      NA        NA        NA
## 1606    NA    NA     NA         NA      NA        NA        NA
## 1607     8     2      6          8       2         8         8
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA     NA         NA      NA        NA        NA
## 1610    NA    NA      4         11      15        13         2
## 1611    21    21     24         NA      NA        NA        NA
## 1612    35    35     20         16      48        35        29
## 1613    19    38     48         29      57        16        32
## 1614    NA    NA     NA         NA      NA        NA        NA
## 1615    14    33     29         18      20        24        23
## 1616    NA    NA     NA          2      NA        NA        NA
## 1617    NA    NA     NA         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619   127   106     35         53     137       109       180
## 1620    46    56     60         56      88        67        67
## 1621     2    NA     NA         NA       6        NA        NA
## 1622    15    55     36         27      23        21        49
## 1623    82    36     68         85     142        34        63
## 1624     5     4      3          3       4         2         4
## 1625     5     2      2          3       3         5         3
## 1626    10     6      6          8       6         6         4
## 1627    10     8      7          7      11         9        12
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     4     6      1          5      11         1         1
## 1630     2     3     NA         NA      NA        NA        NA
## 1631    10    10     NA          6      13         8         2
## 1632     2     3      1          3       5         7         8
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634     0     0      0          0       0         0         1
## 1635    NA    NA      1         NA      NA        NA         1
## 1636     5    15      5          5      11        18         4
## 1637    NA    NA     NA         NA      NA        NA        NA
## 1638     1    NA     NA         NA       0        NA        NA
## 1639     2     2     NA         NA       4        NA         6
## 1640     1     0      2          1       3         1         2
## 1641    NA    NA     NA         NA      NA         1        NA
## 1642    NA    NA     NA         NA      NA        NA        NA
## 1643     0     0      1          0       0         1         1
## 1644    NA    NA     NA         NA       5        10         3
## 1645    NA    NA     NA         NA      NA         2         1
## 1646     2    NA      2          1      NA         2        NA
## 1647     1    NA     NA         NA      NA        NA        NA
## 1648    14     6     11          6       6        11         8
## 1649    NA    NA     NA         NA      NA        NA        NA
## 1650     7    NA     NA         NA      NA        NA        NA
## 1651     1     0     NA          0       1         0        NA
## 1652    10     6      5          8       5         5         8
## 1653     1     1      5          2       1         1         1
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     2     2      1          2       2         2         3
## 1656     2    NA      2          2      NA         2        NA
## 1657     1    NA     NA         NA      NA        NA        NA
## 1658    17     8      6          6      28        37        20
## 1659    NA    NA     NA         NA      NA        NA        NA
## 1660     4    NA     NA         NA      NA        NA         2
## 1661     1     0     NA          0       0         0        NA
## 1662    10    NA      5          3       9         9         5
## 1663    NA    NA     NA         NA      NA         2        NA
## 1664     1     1      5          2       1         1         1
## 1665    NA    NA     NA         NA       1        NA        NA
## 1666     2     2      1          2       2         2         3
## 1667     2    NA      2          1      NA         2        NA
## 1668    NA    NA     NA         NA      NA        NA        NA
## 1669    NA    NA     NA         NA      NA        NA        NA
## 1670    NA    NA     NA         NA      NA        NA        NA
## 1671     1     0     NA          0       1         0        NA
## 1672     3    NA     NA         NA      NA        NA         2
## 1673     1     1      3         NA       1         1         1
## 1674    NA    NA     NA         NA       1        NA        NA
## 1675    NA    NA     NA         NA      NA        NA        NA
## 1676     1    NA     NA         NA      NA        NA        NA
## 1677     8     3      3          3       6         8         6
## 1678     4    NA     NA         NA      NA        NA        NA
## 1679     3     3      2          3       7         5         3
## 1680    NA    NA     NA         NA      NA        NA        NA
## 1681    NA    NA     NA         NA      NA        NA        NA
## 1682     2     2      1          2       2         2         3
## 1683     2    NA      2          1      NA         2        NA
## 1684     1    NA     NA         NA      NA        NA        NA
## 1685    NA    NA     NA         NA      NA        NA        NA
## 1686     8     3      3          3      11         8         8
## 1687    NA    NA     NA         NA      NA        NA        NA
## 1688     4    NA     NA         NA      NA        NA        NA
## 1689     1     0     NA          0       1         0        NA
## 1690    14    NA      4          3       9         7         7
## 1691     1     1      3          2       1         1         1
## 1692    NA    NA     NA         NA      NA        NA        NA
## 1693     2     2      1          2       2         2         3
## 1694    NA    NA     NA         NA      NA         1        NA
## 1695    NA    NA     NA         NA      NA        NA        NA
## 1696    NA    NA      0         NA      NA        NA        NA
## 1697     3     3      3          6      NA        NA        NA
## 1698     5     1      4          4       2        NA        NA
## 1699    NA    NA     NA         NA      NA         1        NA
## 1700    27    19     17         17       4         8         2
## 1701    41    19     29          6       3        13         3
## 1702    NA    NA      0         NA      NA        NA        NA
## 1703     4    11     60         NA      NA        NA         7
## 1704    10     3     15          3      10        NA        NA
## 1705    NA    NA     NA         NA      NA        NA         1
## 1706    NA    NA      1         NA      NA         0        NA
## 1707    NA    NA     NA         NA      NA         1        NA
## 1708    NA    NA     NA          0      NA        NA        NA
## 1709     1     0     NA          0      NA        NA        NA
## 1710     1     2      2          2       1         1         3
## 1711     1     1      1         NA       1        NA        NA
## 1712    NA    NA     NA         NA      NA        NA         0
## 1713    NA     1     NA          1       1         1         1
## 1714     2    NA      2         NA      NA        NA        NA
## 1715    NA    NA     NA         NA      NA        NA        NA
## 1716    NA     1      1          1       1         1         1
## 1717     8     3      6          8       3         6         6
## 1718     3     3      1         NA      NA        NA        NA
## 1719    NA    NA      0          0      NA        NA        NA
## 1720    NA     1      1         NA      NA        NA        NA
## 1721    NA    NA      1         NA      NA        NA        NA
## 1722    NA    NA     NA         NA      NA        NA        NA
## 1723    NA    NA     NA         NA      NA        NA        NA
## 1724     6     2      2          6      NA         4         2
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726    40    42     40         38      46        42        40
## 1727     6    14      9         11      12        12        12
## 1728    39    45     51         42      54        54        51
## 1729    11     6      8          8       8        NA         6
## 1730    12    10     10         12      10         7         3
## 1731    40    57     38         44      55        38        42
## 1732     8     8      7          8       7         6        11
## 1733     6     3      3          6       6        NA         6
## 1734    NA     1     NA         NA      NA         2        NA
## 1735    11    15     13          8       8         4        11
## 1736    17    17     14          6      14        11        14
## 1737     4     6      6          8       6         6         8
## 1738     1     2     NA          2       1         2         1
## 1739    NA    NA     NA         NA      NA        NA        NA
## 1740     4     8     27         42      34        34        38
## 1741    45    NA     NA         NA      NA        NA        NA
## 1742    29    70     51         48      57        44        29
## 1743     3     3      3          3       3         3         3
## 1744    23    24     33         33      24        29        23
## 1745    29    29     29         27      35        26        32
## 1746    73    54     68         48      59        45        62
## 1747     8     8      6          6       8         6         3
## 1748    92    77     99         60      63        85        56
## 1749    28    49     32         32      42        46        46
## 1750    NA    NA     NA         NA      NA        NA        NA
## 1751    19    17     21         13      23        15        23
## 1752    76    74     74         70      93        53        70
## 1753    80    66     82         85      93        59        74
## 1754     2     1      1          2       1        NA         1
## 1755    NA    NA     NA         NA      NA        NA        NA
## 1756    23    20     20         18      19        18        21
## 1757    11    12     14          6       8         8        11
## 1758    10     6      6          4       8         6         8
## 1759     6     7      5          8       6         7         7
## 1760    NA    NA     NA         NA      NA        NA        NA
## 1761     2     2      1          2       1         1         2
## 1762    NA     1     NA         NA      NA        NA        NA
## 1763     3     1      4          1      NA        NA        NA
## 1764     1     4      4          6       2         4         3
## 1765     1     1      1          1       0         0         0
## 1766     5    NA      2         NA       1        NA         2
## 1767     2     3      4          1       3         2         3
## 1768    NA    NA     NA         NA      NA        NA         2
## 1769    NA    NA     NA         NA       0        NA        NA
## 1770    NA    NA      4          2       2         2         2
## 1771     1    NA      0          1       1        NA         0
## 1772     2     1      1          4       6         2         3
## 1773     3     2      4          4       4         3         2
## 1774     2     2      4          5       2         3         1
## 1775     5     4     NA          1       3         3        NA
## 1776     1     2      0          3       1         1         2
## 1777     8     6      8          9       9         8         6
## 1778    NA    NA     NA         NA       3         8         4
## 1779    NA    NA     NA         NA       1         1        NA
## 1780     4     4      2          4       4         2         2
## 1781     2    NA     NA         NA      NA        NA        NA
## 1782    NA    NA      3          3       6        NA         4
## 1783     1     0     NA          0      NA        NA        NA
## 1784     3     5      7          2       2         2         5
## 1785     3     2      3          1       1         1         3
## 1786    NA    NA     NA          1      NA        NA         1
## 1787     0     0      0          0      NA         0        NA
## 1788     2    NA     NA         NA      NA        NA        NA
## 1789    NA    NA     NA          3      NA        NA         1
## 1790     1     0     NA          0      NA        NA        NA
## 1791    NA    NA     NA         NA      NA         2        NA
## 1792     3     2      1          1       1         1         1
## 1793     0     0      0          0      NA         0        NA
## 1794     2     2     NA          4       2         2         2
## 1795    NA    NA     NA         NA      NA        NA         1
## 1796     1     0     NA          0      NA        NA        NA
## 1797     3    NA      2          2      NA        NA        NA
## 1798    NA    NA     NA         NA      NA        NA        NA
## 1799     3     2      1          1       1         1         1
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801    NA    NA     NA         NA      NA        NA        NA
## 1802     2    NA     NA         NA      NA        NA        NA
## 1803     6     3      6          3       6        14         6
## 1804     3     2      3          2       2         5         3
## 1805     4    NA     NA          6      NA         2         2
## 1806     5     3     NA          1       1        NA        NA
## 1807     0     0      0          0      NA         0        NA
## 1808     8     8      2          8       4         8         4
## 1809    NA    NA     NA         NA      NA        NA         0
## 1810     2    NA     NA         NA      NA        NA        NA
## 1811    NA    NA     NA         NA      NA        NA         2
## 1812     6     3      8          3       3         6         9
## 1813     1     0      1          0      NA        NA        NA
## 1814     7     5      7          5       2         5         3
## 1815    NA    NA     NA         NA      NA        NA        NA
## 1816     3     2      1          1       1         1         1
## 1817    NA    NA      5          3      NA         3         4
## 1818     0     0      0          0      NA         0        NA
## 1819    NA    NA     NA         NA      NA        NA        NA
## 1820     8     1      4          2       3         5         4
## 1821    NA    NA      0         NA      NA        NA        NA
## 1822    NA    NA     NA         NA      NA         1        NA
## 1823     8    11      8          4       4         6         6
## 1824     6    10      3          3       3        13         3
## 1825     7    11     14         NA       7         7        11
## 1826     3     3      5          3       5         3         5
## 1827     3     1      1          1       2         1         1
## 1828    NA    NA     NA         NA      NA         1        NA
## 1829    NA    NA     NA         NA      NA        NA        NA
## 1830     3     3      1          1       2         2         1
## 1831     1     1     NA          1       2        NA         1
## 1832    NA    NA     NA         NA      NA        NA         0
## 1833    NA     1      1         NA       1         1         1
## 1834    NA    NA     NA          2      NA        NA        NA
## 1835    NA     1      1          1       1         1         1
## 1836     3     6     NA          8       3         3         6
## 1837    NA    NA     NA         NA      NA        NA        NA
## 1838    NA     1     NA         NA      NA        NA        NA
## 1839    11    11     17         11      15        13        15
## 1840     6     6      5          6       6         6         3
## 1841     6     6      8          3       8        11         6
## 1842     6     6      8          3       6         8         8
## 1843    11     4     11         NA       4         4         4
## 1844    12    12     12         12      14        14        12
## 1845     8     4     11          8      11         6         8
## 1846     3     1      2          2       1         1         4
## 1847     6     5      5          3       2         2         2
## 1848    NA    NA      1         NA       1        NA         1
## 1849    NA    NA      2          2      NA         2         2
## 1850     3    NA     NA         NA       3        NA         6
## 1851     4     2     NA          2       2        NA         2
## 1852     1    NA     NA          1      NA         1         1
## 1853    15    13      6          8      13         6         8
## 1854     5    NA     NA         NA      NA        NA        NA
## 1855     6    22     29         25      25        25        22
## 1856     3     3      3          6       3         3         6
## 1857     2     5      2          2       3         3         3
## 1858     9     6      8          9       6         8         9
## 1859    17    20     23         31      23        17        42
## 1860     6     8     14         11      11        11        11
## 1861    14    11     14         21      18        18       162
## 1862    49    28     35         60      35        42        53
## 1863    23    25     23         30      27        21        32
## 1864    11    17     11         32      42         6        15
## 1865     4     4      4          3       6         4         4
## 1866     5     2      3          2       3         3         3
## 1867     2     2      2          2       2         2         2
## 1868     4     3      3          3       2         3         3
## 1869     3     1      1          1       1         1         1
## 1870     2     2     NA          1       1         1         1
## 1871     3     2      1          1       1         1         1
## 1872     1     1      1          2       4         2         2
## 1873    NA     0      0          0       0         0         0
## 1874     1     1      0          2       0         0         1
## 1875     3     3      2          3       1         2         3
## 1876     4     2      2          4       2         1         4
## 1877    NA     2     NA         NA       2        NA        NA
## 1878     1    NA      0          1      NA         0         0
## 1879     1    NA     NA         NA       1        NA         1
## 1880    NA     0      0          0       0         0         0
## 1881     6     4      2          4       4         3         6
## 1882    NA    NA     NA         NA       1        NA        NA
## 1883    NA    NA     NA         NA      NA        NA         1
## 1884     1    NA     NA         NA      NA        NA        NA
## 1885    NA     2      3          2       2        NA         3
## 1886    NA     6      3          3      NA         3        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     0     NA          1       0         1         1
## 1889     2    NA     NA         NA      NA         1        NA
## 1890     1     1      1          2       1        NA         4
## 1891     0     0      0          0       0         0         0
## 1892     1    NA     NA         NA      NA        NA        NA
## 1893    NA    NA     NA         NA      NA        NA        NA
## 1894     3    NA      3          3      NA        NA        NA
## 1895    NA    NA     NA         NA      NA        NA        NA
## 1896    NA    NA     NA         NA      NA         1        NA
## 1897    NA     1     NA          1       1        NA         1
## 1898     0     0      0          0       0         0         0
## 1899    NA    NA     NA          2      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA       0        NA        NA
## 1902    NA    NA     NA         NA      NA         1         2
## 1903     1    NA     NA         NA      NA        NA        NA
## 1904     2     1      1          5       2         1         1
## 1905     1    NA     NA         NA      NA        NA        NA
## 1906     2    NA     NA         NA      NA        NA        NA
## 1907     3     3      6          6       3        NA        NA
## 1908     0     0     NA         NA       0         0         0
## 1909     2    NA      4         NA      NA        NA        NA
## 1910     1    NA      1          1       1        NA        NA
## 1911     0     0      0          0       0         0         0
## 1912    NA     2      2         NA       2        NA         2
## 1913     1    NA     NA         NA      NA        NA        NA
## 1914    NA     3      2          2      NA         3         2
## 1915    NA     3     NA          6       3        NA         3
## 1916    NA    NA      1         NA      NA        NA        NA
## 1917     3     1      2          3       1         3         2
## 1918    NA     2     NA          2       2         1        NA
## 1919     1     3      2          3       3         2         5
## 1920     0     0      0          0       0         0         0
## 1921     7     5      3          7       3         5         6
## 1922    NA    NA      0         NA      NA        NA        NA
## 1923     1     1     NA          1       1         1         2
## 1924    NA    NA     NA         NA      NA        NA         3
## 1925    NA    NA     NA         NA      NA         1         1
## 1926    11     8      2          6       4         8         4
## 1927    19    13      3          3       6        16        13
## 1928    NA    NA     NA          1      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930     5     3      3          3      NA         3         3
## 1931    NA    NA     NA         NA      NA         0        NA
## 1932     0     0      0          0       0        NA         0
## 1933     2    NA      1          1       2         3         1
## 1934     4     2      2          3       3         4         3
## 1935     0     0      0          0       1         0         1
## 1936     1     1      1          1       1         1         1
## 1937    NA    NA     NA         NA      NA        NA        NA
## 1938     1     1      1          2       1         1         1
## 1939     3     6      3          6      NA         8         3
## 1940     1    NA     NA         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA         0
## 1942     1     1     NA         NA      NA         1         1
## 1943    NA    NA     NA         NA      NA        NA         2
## 1944    NA    NA      2          2      NA        NA         2
## 1945     2    NA      2         NA      NA        NA        NA
## 1946    NA     1     NA         NA      NA        NA        NA
## 1947    11    11     13          6       4         6         6
## 1948     5    NA     NA         NA      NA        NA        NA
## 1949    10    13      6          6      10        32        19
## 1950     6    10      6          3       6        10         6
## 1951     3     2      2          2       2         3         6
## 1952    NA    NA     NA         NA      NA        NA        NA
## 1953    74   106     60         11      11        70        60
## 1954    14    14      7          7       7        21         7
## 1955     4     8      4          2      NA         6         2
## 1956    21     8     11          6       4        21        13
## 1957    34    19     17         15       6        32        25
## 1958     2     1      2          1       1         2         1
## 1959    NA     2      2         NA       2         5         2
## 1960     4     2     NA          4      NA         8         2
## 1961     4     1      2          1      NA         3         2
## 1962    NA    NA     NA         NA      NA        NA        NA
## 1963     1     1      1          1       1         1         1
## 1964    NA    NA     NA         NA      NA        NA        NA
## 1965    NA     5     NA          4       3         2         1
## 1966     0     2      0          1       1         0         2
## 1967    NA     1     NA          1       1         1         1
## 1968     1     3     NA          0       3         1        NA
## 1969    NA    NA     NA         NA       0        NA         1
## 1970    NA     2      2         NA      NA         2         2
## 1971     1    NA      0          1       1         0         0
## 1972    NA    NA     NA         NA       1         1        NA
## 1973     1    NA      1         NA      NA         1        NA
## 1974    NA    NA     NA         NA      NA         1        NA
## 1975     0     1      0          1       1         0         1
## 1976    NA    NA     NA         NA      NA        NA         3
## 1977    NA    NA     NA         NA       1        NA        NA
## 1978    NA    NA      2         NA      NA         2         2
## 1979     1    NA     NA         NA      NA        NA        NA
## 1980     3     3      2         NA       3         1         1
## 1981     1     2      1         NA      NA         1         1
## 1982     0     0      0          0       0        NA         0
## 1983     2     2      0          0       0        NA        NA
## 1984    NA     1     NA          2      NA         1         1
## 1985     2    NA     NA          1       1        NA         1
## 1986     1    NA      0         NA      NA        NA        NA
## 1987     0     0      0          0       0         0         0
## 1988    NA    NA      2         NA      NA         2         1
## 1989     1    NA     NA         NA      NA        NA        NA
## 1990    NA     3      2         14      NA         1         1
## 1991     1     2      1          4      NA         1        11
## 1992     0     0      0          0       0        NA         0
## 1993     1     1      0         NA      NA        NA        NA
## 1994    NA     1     NA         NA      NA         1         1
## 1995     3     1     NA         NA      NA        NA         2
## 1996     1    NA      0         NA      NA        NA        NA
## 1997     0     0      0          0       0         0         0
## 1998    NA    NA      2         NA      NA         2         1
## 1999    NA     3      2         NA      NA         1         1
## 2000     1     2      1         NA      NA         1         4
## 2001     0     0      0          0       0        NA         0
## 2002     1     0      0         NA      NA         0        NA
## 2003    NA     1     NA         NA      NA         1         1
## 2004     1    NA     NA         NA      NA        NA         2
## 2005     1    NA      0         NA      NA        NA        NA
## 2006     1    NA     NA         NA      NA        NA         1
## 2007     1    NA     NA         NA      NA        NA        NA
## 2008    NA    NA      1         NA      NA        NA        NA
## 2009    NA    NA     NA         NA       2        NA        NA
## 2010     0     0      0          0       0         0         0
## 2011    NA    NA      2         NA      NA         2         1
## 2012     1    NA     NA         NA      NA        NA        NA
## 2013    NA     6      2         NA      NA         1         1
## 2014     1     2      1         NA      NA         1         4
## 2015     0     0      0          0       0        NA         0
## 2016     2     2      0         NA      NA        NA         0
## 2017     2     1      2         NA      NA         1         1
## 2018     3     1     NA          1       1         1         5
## 2019     1    NA      0         NA      NA        NA        NA
## 2020     0     0      0          0       0         0         0
## 2021    NA     1     NA         NA       1         1        NA
## 2022     2     2      1          2       1         1         3
## 2023     0    NA     NA         NA      NA        NA        NA
## 2024    NA    NA      0         NA      NA        NA        NA
## 2025    NA    NA     NA         NA       1        NA        NA
## 2026    NA    NA     NA         NA      NA         1        NA
## 2027    53    27     42         55      19         4        23
## 2028    57    29     57         29       3         6        13
## 2029     0    NA     NA          1      NA         0         1
## 2030    NA    NA     NA         NA      NA        NA        18
## 2031    20    13     15          8      15        13        13
## 2032    NA    NA     NA         NA      NA        NA         3
## 2033    NA    NA     NA         NA      NA         1        NA
## 2034    12     2      5          6       2         1        NA
## 2035     1     1      2          3       3         1        NA
## 2036     1     1      1         NA      NA        NA        NA
## 2037    NA    NA     NA         NA      NA        NA        NA
## 2038     2     4      3          3       3         4         4
## 2039     4     5      4          4       3         3         2
## 2040    NA    NA      0         NA       0         1        NA
## 2041    NA    NA      1          1       1         1        NA
## 2042    NA     2     NA         NA      NA        NA        NA
## 2043    NA     1      1          2       1         1        NA
## 2044     6    14      6         NA      NA        14        NA
## 2045    NA    NA      1         NA      NA         3        NA
## 2046     2     2      1          0       1         1         4
## 2047     3     8     NA          4      NA        NA        NA
## 2048    NA    NA     NA         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     1     1      1          1      NA         2        NA
## 2051     4    NA      4          6       4         4         4
## 2052    11    21     13          6       6        13         4
## 2053     2     5      2          2       3         5         2
## 2054    17    17     17          6      14        14         3
## 2055     6    14     17         20      11        11        11
## 2056    32    23     27         25      23        27        27
## 2057     9     6      8          6       9         8         4
## 2058     3    NA      3         NA       2         2         2
## 2059     1    NA     NA         NA      NA        NA        NA
## 2060     4     4      4          8       6        11         2
## 2061     3     3      6          6       8         3         6
## 2062     4     2      6          4       4         2         6
## 2063     1    NA      1          1       1         2        NA
## 2064    NA    42     46         44      13        23        51
## 2065    18    NA     NA         NA      NA        NA        NA
## 2066    51     3     54         NA      51         6        32
## 2067    13    13     16         25      19        16         3
## 2068    27    21     23         21      17        17        12
## 2069     6     3     NA          3       3        NA         3
## 2070    62    34     65         45      59        54        73
## 2071    20    23     28         28      17         6        NA
## 2072   120   130    120         85     109        42       130
## 2073    88    56     99        109      67         4        46
## 2074    NA    NA     NA          4      NA        NA        NA
## 2075    32    87     68        106      61       110        23
## 2076    61    61    108         70     112       120        19
## 2077    21    10     23         32      16        26        25
## 2078    15     3     17          0       8         9        12
## 2079    18    NA     12         NA      NA         8        12
## 2080    17    NA     14         NA       5         6        10
## 2081     3     2      1         NA       1         3        NA
## 2082     2     2      3          2       1         1        NA
## 2083     6     3      2          3       5         4         1
## 2084    11    11      6          7       8         9         5
## 2085    NA     3      1          3      NA         1        NA
## 2086     2    NA     NA         NA      NA        NA        NA
## 2087    NA     0      3          2       0         2         0
## 2088     2     1      3         NA      NA        NA        NA
## 2089    32     2     NA         NA      NA        23         2
## 2090     3    NA     NA         NA       0        NA        NA
## 2091     2     2      2          2      NA         4         4
## 2092     3    NA      2         NA       1         2         0
## 2093    NA    NA     NA          4      NA         1         1
## 2094    NA    NA     NA          2       3         1         1
## 2095    NA     1     NA          6       1         2        NA
## 2096    NA    NA     NA          5      12         1        NA
## 2097    NA     1      0          2       1         2         3
## 2098     3     1      2          2       3         1         2
## 2099    NA    NA     NA         NA       6         3        10
## 2100    NA    NA     NA         NA       5         8         5
## 2101    NA    NA     NA         NA       3         1         2
## 2102     3     3      2         NA       5         2         2
## 2103     1     1      1         NA      NA        NA        NA
## 2104    NA     3      3         NA      NA        NA         6
## 2105    11    NA     18         NA      NA        NA        NA
## 2106    NA    NA     NA         NA      NA        NA        NA
## 2107     1    NA      2          3      NA         1         4
## 2108    NA     2     NA          8       2        NA        NA
## 2109     6     5      3          3       1         3         4
## 2110    NA    NA     NA         NA      NA        NA        NA
## 2111     0    NA     NA         NA      NA        NA        NA
## 2112     2     3      2         NA       5         2         2
## 2113     1     1      1         NA      NA        NA        NA
## 2114     6    NA     NA         NA       3        NA        NA
## 2115    NA     7     NA         NA       7         7         7
## 2116    NA    NA     NA         NA      NA        NA        NA
## 2117     1     0     NA          1      NA         2         3
## 2118     6     2     NA          4       2        NA         4
## 2119     3     3      3          2       3         3         2
## 2120    NA    NA     NA         NA      NA        NA        NA
## 2121     0    NA     NA         NA      NA        NA        NA
## 2122     2     3      2         NA       5         2         2
## 2123    NA     3     NA         NA      NA        NA        NA
## 2124    NA    NA     NA         NA      NA        NA        NA
## 2125    NA    NA     NA         NA      NA        NA        NA
## 2126     1     0      0          0       2         0         3
## 2127    NA    NA     NA         NA      NA        NA        NA
## 2128     2     2      2          3       1         3         3
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     5     5      4          3       6         1         3
## 2131     1     1      1         NA      NA        NA        NA
## 2132    NA    NA     NA          3      NA         3        11
## 2133     4    11      7         NA       7         4         7
## 2134    NA    NA     NA          1       5        NA         4
## 2135     2     2     NA          6       2         6        NA
## 2136     3     5      4          3       5         5         5
## 2137     0    NA     NA         NA      NA        NA        NA
## 2138     2     3      2         NA       5         2         2
## 2139     1     1      1         NA      NA        NA        NA
## 2140    NA     2     NA         NA      NA        NA        NA
## 2141     3     3      3          3      NA        NA        NA
## 2142    14    NA     18         NA      11        NA         7
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     4     3      3          2       7         1         7
## 2145     2     2      2         13       4        NA        NA
## 2146     8     1      3          8       7         8         3
## 2147    NA    NA     NA         NA      NA        NA        NA
## 2148     0    NA     NA         NA      NA        NA        NA
## 2149    NA    NA     NA         NA      NA        NA        NA
## 2150    NA     1      1         NA      NA         1        NA
## 2151    43    13     30         22      33        26        25
## 2152     2    NA      0         NA       0        NA        NA
## 2153     7     5      3          2       1         2         2
## 2154    NA    NA     NA         11      NA        NA        14
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    NA    NA     NA         NA      NA         1        NA
## 2157     2     2      2          2       2         2         2
## 2158     3     3      3         13       3         3         3
## 2159     0    NA     NA         NA      NA        NA        NA
## 2160     3    NA     NA         NA      NA        NA        NA
## 2161     0    NA     NA         NA      NA        NA        NA
## 2162    NA    NA      0         NA      NA        NA        NA
## 2163     1     2      7         NA      NA         0         4
## 2164     1     1      1          1       1         1         1
## 2165     1     1      1          1       1         1         1
## 2166    NA     6     NA         NA      NA        NA        17
## 2167    NA    NA     NA         NA      NA        NA         0
## 2168     4     2     NA         NA       2        NA         2
## 2169    NA    NA     NA         NA      NA        NA        NA
## 2170    NA    NA     NA          3      NA        NA        NA
## 2171    32    11     36        108     101       171       108
## 2172     2     2     NA          4      57         2         6
## 2173    26    NA     NA         NA      NA        NA         3
## 2174    60    57    387        260     539        44        51
## 2175    63   127     79        171     143       143       260
## 2176    29    15     17         24      44         8        15
## 2177    NA     3      8          8      NA        NA        NA
## 2178     3    NA     NA         NA      NA         3         3
## 2179    NA    NA     NA          6      NA        NA         3
## 2180    99    95     60        194     102       159       335
## 2181   278   271    310        514     391       232       662
## 2182     7    NA     NA         NA      NA        NA        NA
## 2183    NA    NA     NA          2      NA        NA         4
## 2184   101    57     42        133     249       197       146
## 2185   486   714    530        562     719       746        NA
## 2186    43    10      3          9       5         8         7
## 2187     2    NA      2         NA      NA         3         3
## 2188    NA    NA      2          2       4         8         2
## 2189     4    NA      4          2       2         3         2
## 2190     1     1      1          1       1         1         1
## 2191    NA    NA     NA         NA      NA        NA        NA
## 2192    NA    NA     NA         NA       1        NA        NA
## 2193     0     0      0          0       0         0         1
## 2194    NA    NA     NA         NA      NA         0        NA
## 2195     3    10     NA         NA      NA        NA        NA
## 2196     0    NA     NA         NA      NA        NA        NA
## 2197    NA    NA      2         NA      NA        NA        NA
## 2198     0     0      0          0       0         0         0
## 2199    NA    NA     NA         NA       1         1        NA
## 2200    NA    NA     NA         NA       1        NA        NA
## 2201    NA    NA      1         NA      NA        NA         1
## 2202    NA     3     NA         NA      NA        NA         3
## 2203    NA     0      1          1      NA        NA        NA
## 2204     6     9     10         NA       4         3         1
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206     3     1      0          1       3         0         0
## 2207     3    22      3          9       5         4        12
## 2208    NA    NA     NA          3      NA        NA        NA
## 2209     1    NA     NA          0      NA        NA         0
## 2210    NA    NA      4         NA      NA        NA         1
## 2211    NA     0      1          1      NA        NA        NA
## 2212     8     1      1         14       1        NA         9
## 2213    NA    NA      0         NA      NA        NA        NA
## 2214     1     1     NA          2       1        NA        NA
## 2215   126   119    100         55      60        88       126
## 2216     1    NA     NA          0      NA        NA         0
## 2217    NA    NA      1         NA      NA        NA         1
## 2218    NA     0      1          1      NA        NA        NA
## 2219    NA     4      1          6       1        NA         1
## 2220    NA    NA      0         NA      NA        NA        NA
## 2221     2     1     NA          2       1        NA        NA
## 2222   128   132    100         60      83       107       126
## 2223     3     6      3         11      NA        NA         3
## 2224    NA    19      2         NA       8        NA        11
## 2225     1    NA     NA          0      NA        NA         0
## 2226    NA    NA      1         NA      NA         3         1
## 2227    NA    NA     NA         NA      NA        NA         3
## 2228    NA     0      1          1      NA        NA        NA
## 2229     3    20     13          6       9        NA        23
## 2230    NA    NA      0         NA      NA        NA         1
## 2231     3     1      0          0       0         1        NA
## 2232     7    24      9          3      11         2        10
## 2233     1    NA     NA          0      NA        NA         0
## 2234    NA     1     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236     1    NA      1         NA      NA        NA        NA
## 2237    NA    NA     NA         NA       1         1        NA
## 2238    NA    NA     NA         NA      NA         1        NA
## 2239     4     2      2          2       2         2         6
## 2240    10     6     10          3       3         3        10
## 2241    NA    NA     28         NA      NA        NA         4
## 2242    NA    NA     NA         NA      NA         0        NA
## 2243    NA    NA     NA         NA      NA        NA        NA
## 2244     1    NA     NA         NA      NA        NA        NA
## 2245     3     3      1          2       1         3        NA
## 2246     1    NA     NA          0       0        NA         1
## 2247     1     1      1          1       1         1         1
## 2248     2     2      1          1       1         1         1
## 2249    NA     3     NA         NA       6        NA        14
## 2250     4     2      6         NA       4         4        NA
## 2251     4     8      6          6       6         6         2
## 2252     1     2     NA          2      NA        NA         1
## 2253     6    13      8          2       6         8         4
## 2254    NA    NA     NA         NA      NA        NA        NA
## 2255     3     3      6          3       3         6         3
## 2256    NA     3     13          6       6        13        19
## 2257     5     8      8          2       2         5         6
## 2258    21    77      4         NA       7        25        42
## 2259    42   106     60         39      63        35        63
## 2260    NA    NA     NA         NA      NA        NA        NA
## 2261    NA    NA     NA         NA      NA        NA         2
## 2262    11    13     13         11      30        42        27
## 2263   106   118    125        142     110        36       101
## 2264     3     5      3          5       1         2         5
## 2265     2     2      2         NA       2         2         2
## 2266     1    NA      2         NA       1         1        NA
## 2267     1     1      1          1       1         1         1
## 2268    NA    NA     NA         NA      NA        NA        NA
## 2269    NA    NA     NA         NA       1        NA        NA
## 2270    NA    NA     NA         NA      NA        NA        NA
## 2271     2     0      0          0       0         0         0
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     3     5      3          5       6         4         7
## 2274    NA     0     NA         NA      NA        NA        NA
## 2275    NA    NA     NA         NA      NA        NA         1
## 2276     0     0      0          0       0         0         0
## 2277    NA    NA     NA         NA       5        NA        NA
## 2278    NA     3     NA         NA       3        NA        NA
## 2279     0    NA     NA          0       2         0        NA
## 2280     2     2     NA         NA      NA         1        NA
## 2281    NA    NA     NA         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283    NA    NA     NA         NA      NA        NA        NA
## 2284    NA     0     NA         NA      NA        NA        NA
## 2285    NA    NA     NA         NA      NA         1        NA
## 2286    NA    NA     NA         NA      NA        NA        NA
## 2287     8     8      6          3       6         6         6
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289     8     4      2         NA      NA         1        NA
## 2290    NA    NA     NA         NA      NA        NA        NA
## 2291     3    NA     NA         NA      NA        NA        NA
## 2292    NA    NA     NA         NA      NA         3         3
## 2293    NA    NA     NA         NA      NA        NA        NA
## 2294    NA    NA     NA         NA      NA        NA        NA
## 2295    NA    NA     NA         NA      NA        NA        NA
## 2296     3    NA     NA         NA      NA        NA        NA
## 2297    NA     3      6          6      NA        NA         8
## 2298    NA     0      0         NA       0        NA         0
## 2299     8     4     NA          2       2         1         2
## 2300    NA    NA     NA         NA      NA        NA        NA
## 2301    NA    NA     NA         NA      NA        NA        NA
## 2302    NA    NA     NA         NA      NA        NA         1
## 2303     1    NA     NA         NA      NA         1        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305    NA    NA     NA         NA      NA         1        NA
## 2306    23    NA      2          2       4         2         2
## 2307     3    NA     10          3       6         3         3
## 2308    NA    NA     NA         NA      NA        13        NA
## 2309    NA    NA     NA         NA      NA        NA         1
## 2310    NA    NA      1         NA      NA        NA        NA
## 2311    NA    NA     NA         NA      NA        NA        NA
## 2312    NA    NA     NA         NA       0        NA        NA
## 2313    NA    NA      0         NA      NA        NA        NA
## 2314     3    NA     NA          1      NA        NA         1
## 2315     1    NA     NA         NA       0        NA         0
## 2316    NA    NA      1          1       1         1         1
## 2317     2    NA     NA         NA      NA        NA        NA
## 2318     1    NA      1          1       1         1         1
## 2319    11    NA     NA         NA      NA        11        14
## 2320     3    NA     NA         NA      NA        NA        NA
## 2321     2     4     NA          4       2        NA        NA
## 2322    36    NA     25         NA      13        17        13
## 2323     3     2      2          3       3         2         2
## 2324    76    65     42         34      70        48        34
## 2325    23     2      6         17      19        13        17
## 2326     2     1      1          3       2         2         4
## 2327     5     2      2          2       3         2         2
## 2328     6     6      6          6       4         6         4
## 2329     6     2      4          6       6         2         6
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331     2     2      1          1       1         1         2
## 2332    NA    NA     NA          2       2        NA        NA
## 2333    NA    NA     NA         NA      NA        NA        NA
## 2334    38   114    155         76     120        86        63
## 2335     3     3      3          3       3         3        16
## 2336    NA    NA     NA         NA      NA        NA        NA
## 2337    18     8     17         17      18        20        12
## 2338     6    34     42         34      34        39        34
## 2339   137   127    148         53     208       166       116
## 2340   123    NA    166         85     144       215       109
## 2341    36    13     55         34      59        30        30
## 2342    70     2     66         93      36        82        68
## 2343    16     6     13          9      11         6        12
## 2344    26    NA     12          9      14         5        18
## 2345    NA    NA     NA         NA      NA        NA        NA
## 2346     2    NA      1          1       1         1         1
## 2347    NA    NA     NA         NA      NA        NA         1
## 2348    NA    NA     NA         NA      NA        NA        NA
## 2349     0     0      0          0       0         0         0
## 2350    NA    NA     NA         NA      NA         1        NA
## 2351    NA     0      2         NA       4         5         5
## 2352    NA    NA     NA         NA       0        NA        NA
## 2353     6     2      4          8       2         4         6
## 2354     1     1     NA          1       3         1         1
## 2355     0    NA      0          0       0         0         0
## 2356     3    NA      1          1       1        NA         1
## 2357    NA    NA     NA         NA      NA         1        NA
## 2358    NA    NA     NA         NA       1        NA        NA
## 2359     2    NA     NA         NA      NA        NA        NA
## 2360     8    NA     11          6       8         6        11
## 2361    NA    NA      2         NA      NA        NA        NA
## 2362    NA    NA      0         NA      NA         0        NA
## 2363    NA    NA     NA         NA      NA         1         2
## 2364    NA    NA      1          1      NA         1        NA
## 2365     2    NA     NA         NA      NA        NA        NA
## 2366     6    NA      3          3       3        NA        11
## 2367    NA    NA      0         NA      NA        NA        NA
## 2368    NA    NA     NA         NA       0        NA        NA
## 2369    NA    NA     NA         NA      NA         1        NA
## 2370     3    NA      6          3      NA        NA        NA
## 2371    NA    NA      0         NA      NA        NA        NA
## 2372     2    NA     NA         NA      NA        NA        NA
## 2373    NA    NA     NA         NA      NA         1        NA
## 2374     2    NA     NA         NA      NA        NA        NA
## 2375     6     8      8          3       6         6        NA
## 2376    23     4      6          6      13         8        NA
## 2377    NA    NA     NA         NA      NA         2        NA
## 2378     2    NA     NA         NA      NA        NA        NA
## 2379    NA    NA     NA         NA      NA        NA        NA
## 2380    17    14      8         14       8         8        28
## 2381    NA    NA      2         NA      NA        NA        NA
## 2382     2    NA     NA          0      NA        NA         0
## 2383    NA    NA     NA         NA      NA         1        NA
## 2384     3    NA     NA          1      NA         3         1
## 2385    NA    NA     NA         NA       1         1        NA
## 2386     9    NA     NA         NA      NA         4         9
## 2387     0    NA     NA         NA      NA        NA        NA
## 2388    NA    NA     NA         39      NA        NA        NA
## 2389    NA    NA     NA         NA       1         1        NA
## 2390    NA    NA     NA         NA      NA         1        NA
## 2391    11     2      2          2       4         6         2
## 2392    25     6     38         29      25        19         3
## 2393     3    NA      3          3       5         3        NA
## 2394    NA    NA     NA         NA      NA        NA         1
## 2395    NA    NA     NA         NA      NA         0        NA
## 2396    NA    NA      1         NA      NA        NA        NA
## 2397    NA    NA     NA          2      NA        NA        NA
## 2398    NA     1     NA         NA      NA        NA        NA
## 2399     3    NA      2         NA       3         1         1
## 2400    12     6     16         NA       4         6         7
## 2401     1     0     NA         NA      NA        NA         0
## 2402     3     1      2          1       1         1         2
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404     1     1      1          1       1         1         1
## 2405    23    11     28         NA      14        11        NA
## 2406    NA    NA     NA         NA      NA        NA        NA
## 2407    NA     0     NA          0       0        NA        NA
## 2408    NA    NA      1          1      NA        NA        NA
## 2409     1    NA      1         NA      NA        NA        NA
## 2410    NA    NA     NA         NA      NA        NA        NA
## 2411    NA    NA      2          2      NA         2         4
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    11    25     34         21      19        21        36
## 2414    NA    NA      6         NA      NA         3        NA
## 2415    14     4     25         49      NA        32        14
## 2416    17    13     17         30      11        17        NA
## 2417     1     1     NA          2       2         1         6
## 2418    NA     2     NA         NA      NA        NA        NA
## 2419    11     6      6          6       2         8        11
## 2420     6     8      3         11      NA         6        14
## 2421    13     8     13         17      17        15        17
## 2422    NA    NA     NA         NA      NA        NA         2
## 2423    NA    NA      4          2      NA         2         4
## 2424    45   106    106        148      79        50        NA
## 2425    NA    NA     NA         13      NA        13       108
## 2426    29    57     79        105      89        16        98
## 2427     2     3      3          3       2         9        17
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    88   215    187        282      70       254       141
## 2430    99   352     53        285     106       243       159
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    13    42     46         42      38        34        59
## 2433    27    40     63         93      70        95        51
## 2434     8    16     16         16      25         7        19
## 2435     9     9     12          9       8         8        21
## 2436     6    12     10         10      10        12        28
## 2437     5     3      4          2       4         1        13
## 2438    NA     1     NA         NA      NA        NA        NA
## 2439     3     1      2          1       1         1         1
## 2440    NA    NA      1         NA      NA        NA        NA
## 2441     3     3      4          3       3         3        NA
## 2442     0     0      0          0       1         0         0
## 2443    NA    NA      1         NA      NA        NA         1
## 2444     2     4     13         NA       8         7         7
## 2445     1    NA     NA         NA       1        NA        NA
## 2446     2    NA      4         NA       2        NA        NA
## 2447     0    NA      1          0      NA         0        NA
## 2448     4     6      1          1       7        NA         5
## 2449     1     2      5          2       7         2         4
## 2450     5     7      7         NA       5         4         6
## 2451     4     3      3         NA       5         2        NA
## 2452     2     2      5          3       5         2         4
## 2453     1     1      1          2      NA         1         1
## 2454    NA    NA     NA         NA       1        NA         3
## 2455    NA    NA     NA         NA      NA         1        NA
## 2456    NA    NA      2         NA      NA        NA        NA
## 2457    NA    NA     NA          1      NA         1         2
## 2458     1    NA     NA         NA      NA        NA        NA
## 2459     4     5      1         14      NA         3        NA
## 2460     9    13      3          3      NA         2        10
## 2461    NA     1      1         NA      NA        NA        NA
## 2462     1     2      4          2       2         4         7
## 2463     4     1      3          4       1         2         2
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA      2         NA      NA        NA        NA
## 2466    NA    NA     NA          1      NA         1         2
## 2467     1    NA     NA         NA      NA        NA        NA
## 2468     4     5      1         14      NA        NA         6
## 2469     5     6      3          3      NA         2         3
## 2470    NA     0      0         NA      NA        NA        NA
## 2471     1     2      2          2       2         4         5
## 2472     4     2      1          3       2         1         1
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA          1      NA         1         2
## 2475     1     2      1         NA      NA        NA        NA
## 2476     9     6      3         10      NA         5         3
## 2477    NA     0     NA          0       0         0         0
## 2478     3     2      2          2       2         4         5
## 2479     3     1      1          3       2         1         1
## 2480    NA    NA     NA         NA      NA        NA        NA
## 2481     1    NA     NA         NA      NA        NA        NA
## 2482     6     6     NA         23      NA        NA         3
## 2483    NA    NA      7         NA      NA         4         4
## 2484    NA    NA     NA         NA      NA        NA         2
## 2485     3     1     NA         NA      NA         1        NA
## 2486    NA    NA     NA         NA      NA        NA        NA
## 2487    NA    NA      4         NA      NA        NA        NA
## 2488    NA    NA     NA          1      NA         1         2
## 2489     1    NA     NA         NA      NA        NA        NA
## 2490     1     5      1         20       3        NA        NA
## 2491     9    10      6          3      NA         2         3
## 2492     0     0      0         NA      NA        NA        NA
## 2493    NA    NA     NA         NA      NA        NA        NA
## 2494     3     2      2          2       2         4         3
## 2495     4     3      3          3       2         3         1
## 2496    NA    NA     NA         NA      NA        NA        NA
## 2497    NA     2      3         NA       1         1        NA
## 2498    12     9     15          8      16         6         4
## 2499     0    NA     NA         NA      NA        NA        NA
## 2500    NA    NA     NA          6      NA        NA         8
## 2501     5     8      3          3       3        NA         4
## 2502    NA    NA     NA         NA      NA        NA         3
## 2503    NA    NA     NA         NA      NA         1         4
## 2504    27    19     23         36      25        15         6
## 2505    44    32     35         44      32        13        25
## 2506    NA    NA     NA          1      NA        NA        NA
## 2507     2    NA      2         NA       3         8        NA
## 2508    NA    14     14         11      28        11         7
## 2509    20    13     18         10      28        15        NA
## 2510    NA    NA     NA         NA      NA        NA         2
## 2511    NA    NA     NA         NA      NA        NA         1
## 2512    NA     1     NA         NA      NA        NA        NA
## 2513     2    NA     NA         NA       2         2        NA
## 2514    NA    NA     NA          2      NA        NA        NA
## 2515     1     2      3          1       3         1         1
## 2516    NA    NA     NA          3       2         3        NA
## 2517     3     3     NA          5       3         8         3
## 2518     3     5      5          9       4         7         3
## 2519     2     5      0          2       1         7         3
## 2520     1     4      2          1       1         1         1
## 2521    NA    NA     NA         NA      NA        NA        NA
## 2522     1     1      1          1       1         1         1
## 2523     8     3     14          6      11         8        20
## 2524    10     6      6         NA       4         3         3
## 2525    NA    NA      0          0      NA        NA         0
## 2526    NA    NA      1          2      NA        NA         1
## 2527     1    NA      2          1      NA         1         2
## 2528     2     2     NA          2       2        NA        NA
## 2529     2     1      1          2       1        NA         2
## 2530     2     6      4         NA       2         2         6
## 2531    14     8     11         NA      11        11        14
## 2532    21    11     13         17      19        13        19
## 2533    NA    10     NA         NA      NA        NA        NA
## 2534     2     1      1          2       1         2         1
## 2535    NA    NA      2         NA       2        NA        NA
## 2536     2    NA     NA         NA      NA        NA        NA
## 2537    NA    NA     NA         NA      NA         2        NA
## 2538    NA    NA      3         NA       6        NA        NA
## 2539    NA    NA      2         NA      NA        NA        NA
## 2540     4     2      2          4       2         4        NA
## 2541    95   104     93        123      66        59        44
## 2542    29     3      5         NA      NA        NA        NA
## 2543    10    32     32         44      57        44        35
## 2544    41    29     48         25      51        19        16
## 2545    60    66     32         36      29        35        27
## 2546    NA    NA     NA         NA      NA        NA        NA
## 2547    25    17     31         14       6        14        25
## 2548    20     6     14         25      17        17         6
## 2549   229   232    236        282     275       148       257
## 2550    70    67     74        102      85        28        21
## 2551    66    36     42         40      59        34        51
## 2552   112   135    133        148     116        93       159
## 2553   239   184    161        161     150        87        78
## 2554    NA    NA     NA         NA      NA        NA        NA
## 2555     3     9      3          6       3         6        NA
## 2556    14    13      8          7       3         8        19
## 2557    21    15     21         14      17        14        12
## 2558    18     8     12         10       8        10         6
## 2559     6     6      3          4       4         1         4
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1     2      3          2       1         1         2
## 2562    NA    NA     NA         NA      NA         2        NA
## 2563     7     8      6          7       6         5         6
## 2564     0     0      0          0       1         0         2
## 2565     1    NA      1         NA      NA        NA         1
## 2566    NA    NA      0         NA      NA        NA        NA
## 2567     9     2      7         10       7         7         8
## 2568     2     2     NA         NA       2         4         2
## 2569    NA    NA     NA         NA      NA        NA        NA
## 2570    NA     4      2          2       1        NA        NA
## 2571    NA    NA     NA          1       0        NA        NA
## 2572     4     4     13          4       4        NA        NA
## 2573     3     2      1          2       1         1         1
## 2574    NA    NA      1         NA      NA        NA        NA
## 2575     0     0      1          1       1         0         1
## 2576    NA    NA      3         NA      NA        NA        NA
## 2577    10     5      8         10       5         8         5
## 2578    NA    NA     NA         NA       6        NA         3
## 2579    NA    NA     NA         NA       6        11        NA
## 2580    NA    NA     NA         NA       1        NA         1
## 2581    NA    NA     NA          2      NA        NA        NA
## 2582     2     2      2          4       1         2         4
## 2583     1     2     NA         NA      NA        NA        NA
## 2584     3     3     NA          6       1        NA        11
## 2585     7     7      5          7       7         7         7
## 2586     2     2      2          1       3         1         1
## 2587     6     7      1          6       3         2         4
## 2588    11    10      7          3       7        NA         2
## 2589    16     8     13          5      13        13         6
## 2590    NA     0     NA          0      NA        NA         1
## 2591    NA     0      0          0      NA         1         0
## 2592    NA    NA     NA          2      NA        NA        NA
## 2593     5     2      4          4       1         2         6
## 2594     1     2     NA         NA      NA        NA        NA
## 2595     3     8     NA         11       1        NA         6
## 2596     7    18      9          7       7        14        21
## 2597     1     1      1          1       2         1         1
## 2598     6     5      1          4       5         2         5
## 2599    13     3     10          3       7        NA         2
## 2600     8    10      8         10      13        15        16
## 2601    NA     0     NA          0      NA        NA         1
## 2602    NA     0      0          0      NA         1         0
## 2603    NA    NA     NA          2      NA        NA        NA
## 2604     2     2      2          4       1         5         4
## 2605    NA    NA     NA          3       1         3         6
## 2606    NA    11      5         NA       7         7        NA
## 2607     1     2      2          1       3         1         1
## 2608     5     3      0          3       4         2         5
## 2609     5     3      7          5       5        NA         2
## 2610     6     5      5          5       6         1         8
## 2611    NA     0     NA          0      NA        NA         1
## 2612     5     5      8          5      10         5         5
## 2613     1     2     NA         NA      NA        NA        NA
## 2614    NA     8     NA          3      NA         6        NA
## 2615     4     4     NA         NA      NA         4        NA
## 2616    NA    NA     NA         NA      NA        NA        NA
## 2617    NA     4      2         NA      NA        NA        NA
## 2618     5    NA     NA         NA       3         3        NA
## 2619    NA     0      0          0      NA         1         0
## 2620     2    NA      2          2      NA        NA         2
## 2621     2     2      2          4       1         5         6
## 2622     1     2     NA         NA      NA        NA        NA
## 2623     3    11      3          6       6         3        11
## 2624    11    11      5          7       7        14        14
## 2625     3     3      2          1       4         1         1
## 2626     8     5      1          4       4         3         6
## 2627    15     7      7          3       9         2         2
## 2628    15    15     15         10      17        10        19
## 2629    NA     0     NA          0      NA        NA         1
## 2630    NA     0      0          0      NA         1         0
## 2631    NA     2      1         NA      NA        NA         1
## 2632     6     6      7         NA       6         1         6
## 2633    NA    NA     NA         NA      NA         2        NA
## 2634    NA    NA     NA         NA       1        NA         1
## 2635    NA    NA     NA         NA      NA         2         5
## 2636    NA    NA     NA         NA      NA         1         4
## 2637     8    11     11          8       4         4         2
## 2638    13    19     19         10      16        10         6
## 2639    NA    NA     NA          1      NA        NA        NA
## 2640     5     5      3          8       3         3         5
## 2641    NA    NA     NA         NA      NA        NA         1
## 2642    NA    NA     NA         NA      NA        NA         1
## 2643    NA    NA     NA         NA      NA        NA        NA
## 2644     1     0      0         NA       1         1        NA
## 2645     2     3      4          4       3         3         2
## 2646     2     5      4          6       4         4         4
## 2647    NA    NA     NA          1      NA        NA        NA
## 2648    NA     2      4          2       2         2         4
## 2649     6     6      2          6       2        NA         2
## 2650    NA     1      1          2       1         1         1
## 2651    17    17     20         25      17        23        25
## 2652     3     4      4          4       1         4         4
## 2653     1     1      1          1      NA         1         1
## 2654    NA    NA     NA         NA      NA        NA        NA
## 2655     1    NA     NA         NA      NA        NA        NA
## 2656     2    NA      2         NA       4         2        NA
## 2657     1    NA     NA         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    21    30     25         34      23        27        34
## 2660    28    37     45         34      48        42        54
## 2661    11     3      3         NA       6        NA         6
## 2662    21    21     17         21      21        19        30
## 2663     5     7      7          5       4         6         5
## 2664     3     3      3          3       3         2         3
## 2665     6    11      8          8       8         4         2
## 2666     6     8     11          8       6         8         8
## 2667     4     4      4          2       4         4         2
## 2668     1    NA      1          1       1         2         1
## 2669    59   101     78         72      85        59        87
## 2670    18    NA     NA         NA      NA        NA        NA
## 2671    25    41     51         48      41        57        60
## 2672    29    38     38         38      51        38        54
## 2673    15    15     15          8      14        17        18
## 2674    23    54     48         45      56        65        73
## 2675    17    31     34         37      31        20        37
## 2676    NA     7      7         NA      74       162        60
## 2677   141   240    169        240     197       176       144
## 2678    11    13     11         17      17        13        17
## 2679    NA    NA      4         NA      19        40        61
## 2680    70    91     97         91      91        70        34
## 2681     9    12     12          9      15         9         6
## 2682    14    14     14         14       9        12        13
## 2683    11     8      7         12       9         6         6
## 2684    10     8     12         12       8         6         8
## 2685     6     8      5          7       6         7         4
## 2686    NA    NA      1         NA      NA        NA        NA
## 2687     3     2      2          3       1         1         2
## 2688     1     2     NA         NA      NA        NA        NA
## 2689     7     4      5          6       4         6         5
## 2690    NA     0      0          0       0         0         0
## 2691    NA    NA     NA         NA      NA        NA         1
## 2692     6     3      8          9       7         7         8
## 2693    NA    NA     NA         NA       0        NA        NA
## 2694    NA     2      2          4       4         2        NA
## 2695     1     1      1          1       1         1         1
## 2696    NA    NA     NA         NA      NA        NA         1
## 2697    NA     0      0          0       0         0         0
## 2698     3     5      4          4       3         4         4
## 2699    NA    NA     NA         NA      10        13        NA
## 2700    NA    NA     NA         NA       3         3         1
## 2701    NA    NA     NA         NA       1         1        NA
## 2702    NA     2      2          6       4         6         2
## 2703    NA     1     NA         NA      NA         2         1
## 2704     1     5      9          5      18         4        12
## 2705     8     4     NA         NA      NA         4        NA
## 2706     1     0      0         NA       1         1        NA
## 2707    NA    NA     NA         NA      NA        NA        NA
## 2708     2     2      1          1       1         3         1
## 2709     3     6      6          4       6         4         6
## 2710     0     1      0          1       1         0         1
## 2711     1     1     NA         NA       0        NA         1
## 2712    NA     1     NA         NA      NA         2         1
## 2713     1     5      4          5       4         4         6
## 2714     1    NA     NA         NA      NA        NA        NA
## 2715     0     0      0         NA       0         0        NA
## 2716     2     2      1          1       1         1         1
## 2717     3     3      3          3       3         2         4
## 2718     0     1      0          1       1         0         1
## 2719     1     1     NA         NA       0        NA         1
## 2720     2    NA     NA         NA      NA        NA        NA
## 2721    NA     1     NA         NA      NA         2         1
## 2722     1     4      4          5       4         4         4
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     1     0      0         NA       1         1        NA
## 2725    NA    NA     NA          0      NA        NA        NA
## 2726     2     2      1          1       1         1         1
## 2727     3     3      4          4       4         3         3
## 2728     0     1      0          1       1         0         1
## 2729     2     4      3          2       3         2         3
## 2730     3     9      6          3      11         6         3
## 2731    NA     7     NA         NA      NA        NA        NA
## 2732    NA    NA     NA         NA      NA        NA        NA
## 2733     2    NA     NA         NA      NA        NA        NA
## 2734     1     4      1          1       3         3         1
## 2735     1     1     NA         NA       0        NA         1
## 2736     4     6      4          6       6         6         6
## 2737    NA     1     NA         NA      NA         2         1
## 2738     4     5     12          5      20         4        12
## 2739     8     4     NA         NA      NA         4        NA
## 2740     1     0      0         NA       1         1        NA
## 2741     0     0      0         NA       0         0         0
## 2742     2     2      1          1       1         1         1
## 2743     4     8      7          4       8         6         5
## 2744     0     1      0          1       1         0         1
## 2745     1     1     NA         NA       0        NA         1
## 2746    10    11      8         14      11        12        11
## 2747     0    NA     NA         NA      NA        NA        NA
## 2748    NA    NA     NA         NA       2        NA         2
## 2749    NA    NA     NA         NA      NA         1        NA
## 2750    NA    NA     NA         NA      NA         1         1
## 2751     6     4      2          6       6         2         2
## 2752     3     6     10          3      10         3         6
## 2753    NA    NA     NA          0      NA        NA        NA
## 2754    NA    NA      4         NA       4        NA        18
## 2755     3    NA      3         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA         1
## 2757    NA    NA     NA         NA      NA         0        NA
## 2758    NA    NA     NA         NA      NA        NA        NA
## 2759     1     1      1         NA       1         1         1
## 2760     2     3      6          3       4         4         2
## 2761     0    NA     NA          0      NA        NA        NA
## 2762     1     1      1          1       2         1         1
## 2763     1     1      2          1       2         1         1
## 2764     3    NA      3          3      NA         3         3
## 2765    NA     0      0         NA      NA         0         0
## 2766    NA    NA     NA          1       1         1        NA
## 2767     1    NA      1         NA      NA         1        NA
## 2768     2    NA     NA          2       2         2        NA
## 2769     4     2      2          2       2         4        NA
## 2770    15     8      6         11      15        13        13
## 2771    NA    NA     NA          3       3         3         3
## 2772     3     3      3          3       3         3         3
## 2773     8     5      8          5       6         6         6
## 2774     5     5      3          2       2         2         2
## 2775     8     6      8          6       6         8         8
## 2776    35    42     46         42      21        35        11
## 2777    11    21      7          7      14         7        25
## 2778    21    23     23         23      25        19        25
## 2779    76    34     61         53      40        32        40
## 2780     3     1      3          1       3         1         1
## 2781     2     3      2          2       3         2         2
## 2782     1     1      1          1       2         1        NA
## 2783     1     1      1          1       1         1         1
## 2784    NA    NA      1         NA      NA        NA        NA
## 2785    NA     1      1         NA      NA        NA        NA
## 2786     0     0      0          0       0         0         0
## 2787    NA    NA      0         NA      NA        NA         0
## 2788     4     3      3          3       1         0         2
## 2789     1    NA     NA         NA      NA        NA        NA
## 2790     0    NA     NA          0       0         0        NA
## 2791     0     1      0          0       0         0         0
## 2792    NA    NA     NA         NA      NA        NA        NA
## 2793    NA    NA     NA         NA      NA         1         1
## 2794    NA    NA     NA         NA       1        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     6    NA      3          1       3         3         3
## 2797    NA    NA     NA         NA      NA        NA        NA
## 2798     1     1      1          1       0        NA        NA
## 2799     1     2      1          1       1        NA        NA
## 2800     4     2      2          1       3         1         1
## 2801    NA    NA     NA         NA      NA        NA        NA
## 2802     1    NA     NA         NA      NA        NA        NA
## 2803     3     3     NA          4       3        NA         3
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     1     1      1          1       1         1        NA
## 2806     3     2      1          1       1        NA        NA
## 2807     2     1      2          1       2         1         1
## 2808    NA    NA     NA         NA      NA        NA        NA
## 2809    NA    NA      3          1      NA        NA        NA
## 2810    NA    NA     NA         NA      NA        NA        NA
## 2811    NA     1     NA         NA       0         0        NA
## 2812     1     2      1          1       1         2        NA
## 2813    NA    NA     NA         NA       1        NA        NA
## 2814     1     1      1          1       1        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     3    NA     NA         NA      NA        NA        NA
## 2817    NA    NA     NA         NA      NA        NA        NA
## 2818    NA    NA     NA         NA      NA        NA        NA
## 2819     1    NA     NA         NA      NA        NA        NA
## 2820     3     3      6          1       3         3        NA
## 2821    NA    NA     NA         NA      NA        NA        NA
## 2822     1     1      1          0       1         1         0
## 2823     1     2      1          1       1        NA         2
## 2824     3     2      2          1       1         1         1
## 2825    NA    NA     NA         NA      NA        NA        NA
## 2826    NA     1     NA          2      NA        NA        NA
## 2827     2     3      2         NA       3         3         3
## 2828     0    NA     NA         NA      NA        NA        NA
## 2829    NA    NA     NA         17      NA        NA        NA
## 2830    NA    NA     NA         NA       1        NA        NA
## 2831    NA    NA     NA         NA      NA         3        NA
## 2832    NA    NA     NA         NA      NA         1         1
## 2833    19    15      6          2      34         2        23
## 2834    16    22     22          3      98         3        35
## 2835    NA    NA     NA         NA      NA        NA        18
## 2836    18    NA     10          5      23        NA         5
## 2837    NA    NA     NA         NA      NA         1        NA
## 2838     1     1      0          1       1         1         1
## 2839     3    NA      3         NA       3         3         3
## 2840     5     3     13          2       8         4         1
## 2841     3    NA     NA         NA       0        NA        NA
## 2842     1     1      1         NA      NA         2         1
## 2843    NA    NA     NA          2       2        NA        NA
## 2844     1     1      1          1       1         2         1
## 2845    28    NA     NA         NA      14        NA        NA
## 2846     2     1      1          1       1         0         2
## 2847     1     1      4          2      NA        NA         2
## 2848     3    NA     NA         NA      NA        NA        NA
## 2849     2     2     NA          2       2         2        NA
## 2850    11     4      2          6      11         8         2
## 2851     6     6      8          8       6        11         6
## 2852     2    NA      2          2       2         2        NA
## 2853     8     8     11          6       4         8         4
## 2854    NA    NA     NA          1       1        NA        NA
## 2855    NA    NA     NA         NA      NA        NA        NA
## 2856     2     4      6          4      NA         2         4
## 2857     4     6      4          6       4         6         2
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859    NA    NA     NA          2      NA         2        NA
## 2860     1    NA      1         NA       1        NA         1
## 2861    NA    80     NA         70      25         6        89
## 2862    NA    NA     NA         NA      NA        NA        NA
## 2863     3    44     38         79      38        10        92
## 2864     3     6      3         79      41        41       187
## 2865     2    11      3         15      20         2        20
## 2866    NA     3      6         NA       3         3         8
## 2867    NA     3      3          6       3         3         6
## 2868    42   176     85         35      NA        60        18
## 2869     4   306    162        169     130       623       169
## 2870    NA    21      4         34      25        NA        25
## 2871    25    68     51         51      51         8       150
## 2872    15    49    277        139     199        91       395
## 2873     8     3      4          7       4         7         2
## 2874    NA    14     12         27       1        NA         9
## 2875    NA    NA     12         28      NA         2        14
## 2876     5     6      4          4       5         3         4
## 2877    NA    NA     NA         NA      NA        NA        NA
## 2878     1     4      2          1       1         5         3
## 2879    NA    NA     NA         NA      NA        NA        NA
## 2880    NA     3     NA         NA       3         2         2
## 2881    NA    NA     NA         NA      NA        NA        NA
## 2882     0     0      0          0       0         1         0
## 2883     2    NA      2          1      NA         2         1
## 2884     3    NA     12         NA      NA         2         1
## 2885     2     2     NA          2       2         2         2
## 2886     1    NA     NA          1      NA        NA         0
## 2887    NA    NA     NA         NA      NA        NA         1
## 2888     2     1      1          0       2         1         1
## 2889    NA    NA     NA          1       1        NA        NA
## 2890    NA    NA     NA         NA       6        NA        NA
## 2891    NA    NA     NA         NA       1         1        NA
## 2892    NA     2      4         NA       2         2        NA
## 2893    NA    NA     NA          1      NA        NA         3
## 2894     3     1     NA          1      NA         1        NA
## 2895     6    17      3         11      NA         3        10
## 2896     1     1      0          1       1         1         1
## 2897     0     2      3         NA      NA         1         1
## 2898     3     8     15          8       9         1        14
## 2899     8     5      3          5       5         5         8
## 2900     0     1      1         NA       1         0         1
## 2901    NA    NA     NA         NA      11        NA        NA
## 2902    NA    NA     NA          1      NA        NA        NA
## 2903    NA     4     NA          1      NA         1        NA
## 2904     3     8     NA          6       8        NA        10
## 2905     0     1      0          0       1         0         1
## 2906    NA     0     NA          2      NA         1         1
## 2907     3    15     15          4      13         5        18
## 2908     3    NA      3          3       3        NA         3
## 2909     0     1      1         NA       1         0         1
## 2910    NA    NA     NA          1      NA        NA        NA
## 2911     3     8     NA         NA      NA        NA        13
## 2912     1     1      0          1       1         1         1
## 2913    NA     2     NA         NA       1         1         1
## 2914     1    11     11          4       9         3         5
## 2915     5     3     NA          3      NA         1         5
## 2916     1     1      3         NA      NA        NA        NA
## 2917    NA     1     NA          1      NA         1        NA
## 2918    NA     3      6         NA      NA        NA        NA
## 2919    NA    NA     NA          0      NA        NA        NA
## 2920    NA    NA      2          2      NA        NA        NA
## 2921     0     1      1         NA       1         0         1
## 2922     4     4      4          2       2         2         2
## 2923    NA    NA     NA          1      NA         2         3
## 2924     3     4      3          1      NA         1        NA
## 2925    14    23     NA         11      NA         3        13
## 2926     1     2      0          1       1         1         1
## 2927     2     2      0         NA       1         1         1
## 2928     7     6     19          8      11         5        12
## 2929     8     5      5          8       5         5        10
## 2930     0     1      1         NA       1         0         1
## 2931    NA     3     NA         NA      NA         1        NA
## 2932     1    NA      2          2      NA         6        NA
## 2933    NA    NA      0         NA      NA        NA        NA
## 2934    NA    NA     NA          6       3         3        NA
## 2935    NA    NA      2          3       8        NA        NA
## 2936    NA    NA     NA         NA      NA         1         3
## 2937    13     8      6         17       8         4         2
## 2938    22    16     22         19      13        10         6
## 2939    NA     0     NA          1      NA        NA        NA
## 2940     3     3      3          5       3        NA        NA
## 2941    NA    NA     NA         NA      NA        NA         1
## 2942    NA    NA     NA         NA      NA        NA         2
## 2943    NA    NA     NA         NA      NA        NA         1
## 2944     0     1     NA          2      NA        NA         1
## 2945     1     1     NA         NA       2        NA        NA
## 2946    NA    NA     NA          5      NA        NA        NA
## 2947     0    NA      0         NA       1        NA        NA
## 2948     1     1      1          1       3         1         1
## 2949     6     2      4          5      NA         1         2
## 2950     1     0     NA          1       0         0         0
## 2951     2     1      4          2       2         1         1
## 2952    NA    NA     NA         NA      NA        NA        NA
## 2953     1     1      1          2       1         1         1
## 2954     3     3      3          8      17        NA         3
## 2955    NA    NA     NA         NA      NA        NA        NA
## 2956     0     0      0          0      NA         0         0
## 2957     1    NA      1          1       1         1         1
## 2958     1    NA      2         NA      NA         1         1
## 2959    NA    NA     NA         NA      NA         4        NA
## 2960    17    19     15         21      17        15        23
## 2961     8     6     NA          3      NA        NA        NA
## 2962    NA    NA     NA         NA      NA         3        NA
## 2963    14    14     21         11      14        11        21
## 2964    NA    NA     NA         NA      NA        NA        NA
## 2965    13    19     15         17      15        11        19
## 2966     1     1      2          1       2         1         1
## 2967     2     2      2          2       2         3        NA
## 2968    NA    NA     NA         NA      NA        NA        NA
## 2969     8     8      6          8       8         4         8
## 2970     6     3      6          8       8         3         6
## 2971     4     6      6          4       4         8         6
## 2972    NA    NA     NA         NA       1        NA        NA
## 2973    NA    NA      2         NA      NA         2         2
## 2974    50    74     69         77      53        58        98
## 2975    19    NA     NA          6       3         3        NA
## 2976    48    48     48         41      38        51        48
## 2977     9     5      8          5      11         2         8
## 2978    39    25     31         34      39        39        31
## 2979     3    NA     NA          6       6         3        NA
## 2980   141   102    155        159      95        81       377
## 2981   113   102    148        169     151        95       197
## 2982    NA    NA     NA         NA      NA        NA        NA
## 2983    11     8     15          8      11        11        13
## 2984    61    57     46         55      59        38        76
## 2985   148   129    175        139     118        97       165
## 2986     6     6      6          7       6         7         6
## 2987     6     5      5          8       5         3         3
## 2988     6     6      6          4       6         6         4
## 2989     4     5      5          3       4         1         4
## 2990    NA    NA      1         NA      NA        NA        NA
## 2991     3     1      2          2       1         1         1
## 2992     1     2      2          1      NA        NA         1
## 2993     1     3      2          3       4        NA         2
## 2994    NA    NA     NA         NA      NA         1         1
## 2995     1     1      1          1       0         1         1
## 2996    NA     1      1         NA       1         1         1
## 2997     6     6      7          6      10         5         9
## 2998     1    NA     NA          1       0         0        NA
## 2999     2     2      2          2       4         4         2
## 3000     2     1      1          1       2        NA         1
## 3001    NA    NA     NA         NA       1         1         1
## 3002    NA    NA     NA          1      NA        NA        NA
## 3003     1     1      1          1       1         2         2
## 3004     3     3      4          6       1         3         4
## 3005    NA    NA     NA         NA       4         4         4
## 3006     1    NA     NA         NA      NA        NA        NA
## 3007    NA     3     NA          6      NA        NA         3
## 3008    14    18     11          7       7        11        18
## 3009     0    NA      0         NA       1        NA        NA
## 3010     1     1     NA         NA       0        NA         0
## 3011    13    12     23         10      13        13        11
## 3012     3     2      3          2       4         4         3
## 3013     0    NA     NA         NA      NA        NA        NA
## 3014    NA    NA     NA         NA       2        NA        NA
## 3015     1    NA     NA         NA      NA        NA        NA
## 3016    NA    NA     NA          3       6         3        NA
## 3017     7     7      7          7       4         4        18
## 3018     0    NA      0         NA       0        NA        NA
## 3019     1     1      0          0      NA        NA        NA
## 3020    NA     3     NA          3       5        NA         4
## 3021     2     2      2          3       1         1         3
## 3022     0    NA     NA         NA      NA        NA        NA
## 3023    11     4      7          4      NA         7         7
## 3024     0    NA      0         NA       1        NA        NA
## 3025     1     2     NA         NA      NA        NA        NA
## 3026     2     1      6          3       5         2         2
## 3027     3     2      3          3       3         1         1
## 3028     2     1      1          1       4         3         1
## 3029     1    NA     NA         NA      NA        NA        NA
## 3030    NA     3     NA          3      NA        NA        NA
## 3031    11     7     18         NA       4        11        25
## 3032    NA    NA     NA         NA      NA        NA        NA
## 3033    NA    NA      1         NA      NA        NA        NA
## 3034    17    11     17          2       6        13         6
## 3035     3     4      3          1       4         3         3
## 3036     0    NA     NA         NA      NA        NA        NA
## 3037     1     3     NA         NA      NA        NA        NA
## 3038     3     8      3          8       3        NA        NA
## 3039    21    18     14          4       7        14        18
## 3040     0    NA      0         NA       1        NA        NA
## 3041     0     1      1         NA       0         0        NA
## 3042    23    20     21         16       9        11         2
## 3043     4     4      3          3       6         4         5
## 3044     0    NA     NA         NA      NA        NA        NA
## 3045    NA    NA     NA         NA      NA        NA        NA
## 3046    NA     1      1         NA      NA        NA         1
## 3047    10     4      8          6       3         3         5
## 3048     1    NA     NA         NA      NA        NA        NA
## 3049     0     0      0         NA       0        NA        NA
## 3050    NA    NA     NA         NA      NA         1        NA
## 3051    19    11     13         13       2        15         4
## 3052     3     3      3         13       3         6         6
## 3053    NA    NA     NA          1      NA        NA        NA
## 3054    NA    NA     NA         NA       1        NA        NA
## 3055     1    NA     NA         NA      NA        NA        NA
## 3056     3     3     NA          6       2         2         3
## 3057    NA    NA     NA         NA       1        NA        NA
## 3058     1     1      1          1       2         1         1
## 3059     1     1      1          1       1         1         1
## 3060    NA    NA     NA         NA      NA        NA         0
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA    NA     NA         NA      NA        NA        NA
## 3063    13    15     23         13      17        13         8
## 3064     8     3      3          6       3        NA         8
## 3065    11    11     17          8       8         6         8
## 3066    23    13     25         21      21        13        13
## 3067     1     2      1          4      NA         2         3
## 3068     2     4      2          2       2        NA         2
## 3069    NA    NA     NA         NA       2        NA        NA
## 3070    26    NA     NA         NA      NA        NA        NA
## 3071    38    38     70         41      60        35        76
## 3072    22    29     22         29      32        32        29
## 3073     6     6      6          3       6         8         6
## 3074     3     5      9          5       8         6         5
## 3075     8    17     NA         17       8        14        11
## 3076     8    14      6          6       8        NA        11
## 3077    42    42     70         42      NA        56        85
## 3078    99   127     85        127      63        81        88
## 3079    19    21     13         17      19        13        17
## 3080    13    30     23         25      34        13        38
## 3081    32    17     32         42      44        38        25
## 3082     6    15     NA         15      NA         6         6
## 3083     3     3      3          3       3         3        NA
## 3084     2     4      2          2       2         2         2
## 3085     1     1      1          1       1         1         1
## 3086    NA    NA     NA         NA       1        NA        NA
## 3087     4     6      4          4       6         2         6
## 3088     0     0      0          0       0         0         0
## 3089    NA    NA      4         NA      NA        NA        NA
## 3090     5     0     NA         NA       7        17        NA
## 3091     1    NA     NA         NA      NA        NA        NA
## 3092    NA    NA     NA         NA      NA         1        NA
## 3093     0     0      0          0       0         0         0
## 3094     3     3      3          3       1         1        NA
## 3095    NA    NA     NA         NA       8         9        10
## 3096    NA     1     NA          3       6        NA        NA
## 3097     8    11     14          8       8         6        14
## 3098     3     1     NA         NA      NA         1         1
## 3099    NA    NA      0         NA       0        NA        NA
## 3100    NA    NA     NA         NA       1         2         1
## 3101     3     3      4          1       1         1         1
## 3102    NA    NA     NA         NA      NA        NA        NA
## 3103    NA     1     NA         NA      NA        NA        NA
## 3104    NA    NA     NA         NA      NA        NA        NA
## 3105    NA    NA     NA         NA       1        NA         1
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107    NA    NA     NA         NA       3        NA        NA
## 3108     1     1     NA         NA       1        NA         1
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA       1        NA         1
## 3111     3     1     NA         NA      NA        NA        NA
## 3112     3     8      6          6       6         8         3
## 3113    NA    NA      2         NA      NA        NA        NA
## 3114     3     3      4          1       4         1        NA
## 3115    NA    NA     NA         NA      NA        NA        NA
## 3116     3     4     NA          3      NA         3        NA
## 3117     6     8     14          3       3         8        11
## 3118     1     1     NA          1       1         1         1
## 3119     0     0     NA          0      NA         0         0
## 3120     2     2     NA          2       1        NA         3
## 3121     3    NA      3          1       1         1         1
## 3122    NA    NA     NA         NA      NA        NA        NA
## 3123    NA    NA     NA         NA       2        NA        NA
## 3124     3    NA     NA         NA       3        NA        NA
## 3125    NA    NA     NA         NA       5        NA        NA
## 3126    NA    NA     NA         NA      NA         1        NA
## 3127     2     2      2         76     114         2         2
## 3128     3     3      3         73     155        10         3
## 3129    NA    NA     NA         NA      NA        NA        NA
## 3130    NA     3     NA         25      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA         2
## 3132    NA    NA     NA         NA      NA         0        NA
## 3133    NA    NA     NA         NA       6        NA        NA
## 3134    NA    NA     NA          2      NA        NA        NA
## 3135    NA    NA      0         NA      NA        NA        NA
## 3136    NA    NA     NA         NA       1        NA        NA
## 3137     1    NA     NA          0       4        NA         1
## 3138    NA     0      0          0       2        NA         1
## 3139     1     1      1          4       4         1         2
## 3140    NA    NA     NA         NA      NA        NA        NA
## 3141     1     1      1          2       1         1         1
## 3142    NA    NA      3          6      NA        NA        NA
## 3143    NA    NA      1         NA      NA        NA        NA
## 3144     2     2     NA         NA       4        NA         2
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     2     2      4          4      17        NA        11
## 3147     3    NA      6          3       8         3         3
## 3148     6     6      4          8      36         4        13
## 3149     1     2      1          2       8        NA         2
## 3150    NA     2      2          3       6         2        NA
## 3151    NA    NA     NA         NA       2        NA        NA
## 3152    NA     2      4          2       8        NA         6
## 3153     2     2     NA          4      11        NA         2
## 3154    NA    NA      1          1       2         1         1
## 3155    NA    NA     NA         NA      NA        NA        NA
## 3156    NA    NA     NA         NA      17        NA         2
## 3157    18    NA     NA         NA      NA        NA        NA
## 3158    13    35     41         54     298        51        41
## 3159    19    13     16         25      29        13        19
## 3160     6     5      8         21      66        11        14
## 3161    17    11     17         20      68        11        11
## 3162     3     8     14         23      17         6         6
## 3163    25    28     14         53     461        70        63
## 3164    35    14     39         53      60        25        46
## 3165     6     8     32         59     366        25        80
## 3166    59    40     49         55     123        87        23
## 3167     3     5      5         10      86        18        13
## 3168     3    NA      6         15      51         6        15
## 3169     4     2      4         12      17         2         4
## 3170     2     3      8          6      47         6         6
## 3171    NA    NA     NA         NA      30         4         2
## 3172     5     1      3          4      13        NA         2
## 3173    NA     1     NA         NA      NA        NA        NA
## 3174     2     1      1          2       4         1         1
## 3175    NA    NA     NA         NA       3        NA        NA
## 3176    NA    NA      1         NA      10        NA        NA
## 3177    NA    NA     NA         NA       4        NA        NA
## 3178     0     0      0          0       0         1         0
## 3179     1     2      2          6      13        NA         6
## 3180    NA    NA     NA         NA       1        NA        NA
## 3181     4     2     NA         NA       2         2         4
## 3182     0     0     NA          0       2        NA         1
## 3183     0     0      0          0       0         0         0
## 3184     1     2      3          4       5         1         1
## 3185    NA    NA     NA         NA      15         1         8
## 3186    NA    NA     NA         NA       4         4        NA
## 3187    NA    NA     NA         NA      NA        NA         2
## 3188     3    NA     NA         NA      NA        NA        NA
## 3189    NA     3      3          6      28        NA        NA
## 3190    NA    NA      0         NA      NA        NA        NA
## 3191     0     1      1          0       6         0         1
## 3192    NA    NA     NA          1       1         2         1
## 3193     1     1      1          1      13        NA         5
## 3194     0     0      0          0       1        NA        NA
## 3195    NA    NA     NA         NA       3        NA         2
## 3196    NA    NA     NA         NA      25        NA        NA
## 3197    NA    NA      0         NA      NA        NA        NA
## 3198    NA    NA     NA         NA       5        NA        NA
## 3199    NA    NA     NA          1       1        NA         1
## 3200    NA    NA     NA         NA       3        NA        NA
## 3201     0     0      0          0       1        NA        NA
## 3202    NA    NA     NA         NA      NA        NA         2
## 3203    NA    NA     NA         NA      11        NA        NA
## 3204    NA    NA      0         NA      NA        NA        NA
## 3205    NA    NA     NA         NA      NA         0         1
## 3206    NA    NA     NA          1       1        NA         1
## 3207    NA    NA     NA         NA       3        NA        NA
## 3208     1     1     NA          3      13         3         3
## 3209     3    NA      3          6       8        NA         3
## 3210    NA    NA     NA         NA       3        NA        NA
## 3211    NA    NA     NA         NA       1        NA        NA
## 3212     0     0      0          0       1        NA        NA
## 3213    NA     2      2         NA      11         4        NA
## 3214    NA    NA     NA         NA       3        NA         2
## 3215     3    NA     NA         NA      NA        NA        NA
## 3216     6     3     NA          8      28         3         6
## 3217    NA    NA      0         NA      NA        NA        NA
## 3218     1     0      1          0      11         0         2
## 3219     2     2      2          1       3        NA         1
## 3220     2     2      3          4      20         1         6
## 3221     0     0      0          0       1        NA        NA
## 3222    NA     1      1         NA       4        NA        NA
## 3223     1     1      1         NA      18        NA         4
## 3224    NA     2     NA         NA      NA         2        NA
## 3225    NA     3      3         NA       3        17        NA
## 3226     8    10     10          9      10        NA         1
## 3227    NA    NA     NA         NA      NA         1        NA
## 3228    44     4      2         85      17         2         8
## 3229    19     6      3        130      29        19        13
## 3230    NA    NA     NA          2      NA        NA        NA
## 3231    NA    NA     NA         NA       6        NA        NA
## 3232     5     8      3         18      38        NA        NA
## 3233    NA    NA     NA         NA      NA        NA        -1
## 3234    NA    NA     NA         NA      NA        NA         2
## 3235     3    NA     NA         NA      NA        NA         1
## 3236     6     5      3          5       3        NA        NA
## 3237    NA    NA     NA         NA      NA         2        NA
## 3238     0     0      1          1       1         0         1
## 3239     1    NA     NA          1       5         1         2
## 3240     1     1     NA         NA      NA        NA        NA
## 3241     1     4      2          1       1        NA         2
## 3242     0    NA     NA         NA      NA        NA         0
## 3243     1     1      1          1       1         1         1
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     1     1      1          1       2         2         1
## 3246    NA    NA     NA          3      NA        NA        NA
## 3247    NA    NA     NA         NA      NA         0        NA
## 3248     1     1     NA         NA      NA         1        NA
## 3249     1    NA      1         NA       1         1         1
## 3250    NA    NA     NA         NA      NA        NA        NA
## 3251    NA    NA     NA         NA      NA        NA        NA
## 3252     4     2      4          4      11         4         2
## 3253     6     9     11          9      14        11        15
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255     8    11     14         11       8         6         3
## 3256    21    27     38         38      49        27        21
## 3257     1     1      1          1       1         1         1
## 3258     2     3      3         NA      NA        NA        NA
## 3259     1    NA      1          1       1         1        NA
## 3260     2     4      2          4      NA         2         2
## 3261    NA    NA     NA         NA       3        NA        NA
## 3262    NA    NA     NA         NA       0        NA        NA
## 3263    NA    NA     NA         11      25        15        NA
## 3264    61    NA     NA         NA      NA        NA        NA
## 3265    60    86    113         92      86        86        70
## 3266   111   301     44        143     133       130       101
## 3267    44    23     27         63      26        35        29
## 3268   114    78    114        105     132        78       126
## 3269    NA    NA     NA         NA      NA        NA        NA
## 3270     8     6      3          6       8        NA         3
## 3271    81    77     95        113     120        88       127
## 3272   359   771    317        578     511       352       412
## 3273    11    36     34         61      38        32        38
## 3274    80    66     97        131     230        97       106
## 3275   249   499    273        355     562       260       256
## 3276    NA    NA     NA          1       1         1         2
## 3277    13     6     13         11      21         9        13
## 3278    17    12     15         17      27        15        12
## 3279    NA    NA      2         NA      NA        NA        NA
## 3280    NA     3      4          6       2         2         1
## 3281     1     2      1          1       1         2         2
## 3282    NA     1     NA         NA       2        NA        NA
## 3283     3     6      5          6       4         3        NA
## 3284     0     0      0          0       1         0         0
## 3285    NA     0     NA         NA      NA        NA         1
## 3286     3     1      3         NA       3         2         2
## 3287     1    NA     NA         NA       1        NA        NA
## 3288     2     2     NA          2       2         2        NA
## 3289     1     1      0          1       2         1         0
## 3290    NA    NA     NA         NA       2         1        NA
## 3291     1    NA     NA         NA       2        NA        NA
## 3292    NA    NA     NA         NA       1        NA        NA
## 3293     0     0      0          1       0         0         0
## 3294     5     5      5          5       6        NA        NA
## 3295    NA    NA     NA         NA      11        10         6
## 3296     3     3      2          3       3         3         3
## 3297     3    NA     NA         NA      NA        NA        NA
## 3298     9     9      9          9      14        11        11
## 3299     6     3      6          8       6        11        11
## 3300    NA    NA     NA         NA      NA        NA        NA
## 3301     2     0      1          1       1         0         1
## 3302     2    NA     NA          2      NA        NA         0
## 3303     2     4      4          8       5         2         2
## 3304    11    15      1          8      11         5         7
## 3305    NA    NA     NA         NA      NA        33        NA
## 3306    NA     2     NA         NA      NA        NA        NA
## 3307    NA    NA     NA         NA      NA        NA        NA
## 3308     6    NA      8         NA       6        NA         6
## 3309     3    NA     NA         NA      NA        NA        NA
## 3310     6     8     NA          6      12         6         3
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312     0     0      1          0       0         0         0
## 3313    NA    NA     NA          0      NA        NA        NA
## 3314     4     2     NA          6       3         4        NA
## 3315     2     1      1         12       1         1         1
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     3     6      3          6      NA         6        NA
## 3318     3     3      3          6       8         9         3
## 3319    NA    NA     NA         NA       6        NA        NA
## 3320     2     0      1          2       1         0         1
## 3321     2    NA     NA          2      NA        NA        NA
## 3322    NA     4      2          2       3         8         2
## 3323     2     7      1          2       5         1        -2
## 3324    NA    NA     NA         NA       2        NA        NA
## 3325     3    NA     NA         NA      NA        NA        NA
## 3326    NA     5      3          5       3         2         5
## 3327    11    11      3         17      11        11         8
## 3328    NA    NA     NA         NA      NA        NA         4
## 3329     6     4     NA         NA       6         4         6
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331    10     6      3          6      10        10        10
## 3332     3    NA     NA         NA      NA        NA        NA
## 3333     8     9     11          9      15        12         8
## 3334    23    17     NA         14      15        23        11
## 3335    NA    NA     NA         NA      NA        NA        NA
## 3336     2     0      1          1       1         0         1
## 3337     2     0      0          3       0         0         0
## 3338     6     8     11          6       7         8         6
## 3339    15    17     11         12       9         9         9
## 3340    NA    NA     NA         NA      NA        NA        NA
## 3341    NA     2      2         NA      NA        NA         1
## 3342     3     1      5          5      10         3         1
## 3343     0    NA     NA         NA      NA        NA        NA
## 3344    NA    NA      2          2       2         2         2
## 3345    NA    NA      3          3       3         3         3
## 3346    NA    NA     NA          3      NA        NA        NA
## 3347    NA    NA     NA          2      NA        NA        NA
## 3348     3    NA     NA          3      NA        NA        NA
## 3349    NA     0     NA          0       0         0         0
## 3350    NA    NA     21         NA      NA        NA        NA
## 3351    NA     0     NA          0      NA        NA        NA
## 3352     2    NA      1         NA       1         1         1
## 3353    NA    NA     NA          4      NA        NA        NA
## 3354     1    NA      1          1       1         1         1
## 3355     8     3     11          3      NA         3         6
## 3356    NA     0     NA         NA      NA         0         0
## 3357    NA    NA     NA          1       1         1        NA
## 3358     2    NA     NA         NA      NA        NA        NA
## 3359     2    NA      2          2       2         2         2
## 3360     4     4      4          6       6         2         4
## 3361    NA    NA     NA          2       2        NA        NA
## 3362    16    NA     NA         NA      NA        NA        NA
## 3363     3    22     29         38      38        32        16
## 3364    22    16     22         16      22        16        16
## 3365     3     3      3          2       3         3         2
## 3366    56    46     56         53      46        32        32
## 3367    NA    NA     NA          2      NA        NA         2
## 3368    27    23     25         25      19        21        21
## 3369     1     1      1          1       1         1         1
## 3370     1     1      2          1       2         1        NA
## 3371    NA    NA      1         NA      NA        NA        NA
## 3372    NA    NA      1          1       1         1         1
## 3373    NA     1     NA         NA      NA        NA        NA
## 3374     3    NA     NA         NA       4        NA         3
## 3375     2    NA      1          3       0         2         2
## 3376    NA    NA     NA         NA      NA         0         0
## 3377     2    NA      3          2       1         3         3
## 3378     1    NA     NA         NA      NA        NA        NA
## 3379     4    NA     NA         NA      NA         4        NA
## 3380     0    NA     NA         NA      NA        NA        NA
## 3381    NA    NA      0          0       0         0         0
## 3382     2     2      2         NA       3         2        NA
## 3383     2    NA     NA         NA      NA        NA        NA
## 3384    NA     3     NA         NA       3         3        NA
## 3385    NA     0     NA          0       0         0         0
## 3386     0    NA     NA         NA       1         0         1
## 3387    NA    NA      1         NA       1         1         1
## 3388     2     2     NA         NA      NA        NA        NA
## 3389     2    NA     NA         NA      NA        NA        NA
## 3390    NA     0     NA          0       0         0         0
## 3391     0     0     NA          0      NA        NA         0
## 3392    NA    NA      1         NA       1         1         1
## 3393     2     2      2          2       3         2         3
## 3394    NA     0     NA          0       0         0         0
## 3395     0    NA     NA         NA      NA        NA        NA
## 3396    NA    NA      1         NA       1         1         1
## 3397     2    NA     NA         NA      NA        NA        NA
## 3398    NA     3      3          3       3         3        NA
## 3399    NA    NA     NA          0      NA        NA        NA
## 3400     2     2      2          3       3         2         2
## 3401     2    NA     NA         NA      NA        NA        NA
## 3402     3     3     NA          3       3        NA         3
## 3403    NA     0     NA          0       0         0         0
## 3404     1     1      0          0      NA         0         1
## 3405    NA    NA      1          2       1         1         1
## 3406    NA    NA      1         NA      NA         1        NA
## 3407     1    NA      3         NA      NA         3         3
## 3408    NA    NA     NA         11      NA        NA        NA
## 3409    NA    NA     NA         NA      NA         1         1
## 3410     6     4     15         11       4         6         2
## 3411     6    13     22          3      10        13         6
## 3412     0    NA     NA          0       1         0         0
## 3413     5    NA      5          3      NA         3        NA
## 3414    NA    NA     NA         NA      NA        NA         2
## 3415    NA    NA     NA         NA      NA        NA         1
## 3416    NA     1      1          2       1         2         1
## 3417    NA    NA     NA          2      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA     1     NA         NA       1         1         2
## 3420     5     7     11          2       7         3         2
## 3421     0     1      0         NA       1        NA         0
## 3422     2     5      2          2       3         3         3
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424    NA    NA     NA         NA      NA        NA        NA
## 3425     1     2      2          1       1         1         2
## 3426    14     8     17         NA       8        11        17
## 3427     1    NA      1          4       1        NA        NA
## 3428     0     0     NA          0      NA         0         0
## 3429    NA     1     NA         NA      NA         1         1
## 3430     1     2     NA          1      NA         1         2
## 3431    NA    NA     NA         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     2     2      2          2       2         2        NA
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    17    32     27         30      51        17        44
## 3436    54    65     48         54      70        59        68
## 3437     2    27     19         23      23        27        25
## 3438     3     3      3          3       4         4         1
## 3439     3     2     NA          3       3         2         3
## 3440     8     8      8         11      15         8        13
## 3441    17    23     25         20      23        20        31
## 3442     6     6      4          8       4         4         4
## 3443     1     1      1          1       1         1         1
## 3444    23    46     46         49      72        17        53
## 3445     5    NA     NA         NA      NA        NA        NA
## 3446    29    48     44         35      67        73        35
## 3447    10     3     13         16      10        16        NA
## 3448     5    12      9          9      17         8         9
## 3449     6     8      5          5      NA        NA        NA
## 3450    99    87     76         73     101        62       104
## 3451     6     8      6         14       6         3        NA
## 3452   109   116    159        102     120       102        63
## 3453    60    99    120        106     148        85       123
## 3454     4     2     NA         NA      NA        NA        NA
## 3455    49    19     40         36      36        38        42
## 3456    59    30     40         19      15        42         8
## 3457     6     9      6         12      12         6         3
## 3458     9    11     13         11       9         9        11
## 3459     9     5      8          8       8         5         8
## 3460     2     8      2          6       6         6         4
## 3461     5     3      4          3       5         2         3
## 3462    NA    NA     NA         NA      NA        NA        NA
## 3463     2     2      1          2       1         2         1
## 3464     3     3      3          1      NA        NA        NA
## 3465     4     5      8          4       3         2         2
## 3466     0     1      0          0       0         1         1
## 3467    NA    NA      0         NA      NA        NA         1
## 3468     8     6     10          3       7         6         9
## 3469     0    NA     NA          1      NA        NA        NA
## 3470     2     4     NA          2       4        NA         4
## 3471     0     1      0          0       0         0         0
## 3472    NA    NA     NA         NA      NA        NA         1
## 3473    NA    NA     NA         NA      NA        NA         1
## 3474    NA    NA     NA         NA      NA        NA         2
## 3475     0     0      0          0       0         0         1
## 3476     6     5      4          2       4         3         4
## 3477    NA    NA     NA         NA      NA        NA         3
## 3478    NA    NA     NA         NA      NA        NA         1
## 3479    NA    NA     NA         NA       1        NA         1
## 3480     4    11     NA          4       4         2         2
## 3481    NA     1     NA         NA      NA        NA        NA
## 3482     0    NA     NA         NA      NA        NA        NA
## 3483     8     8      6          6      14         6         6
## 3484    NA    NA     NA         NA      NA        NA        NA
## 3485     1    NA     NA         NA      NA        NA        NA
## 3486     2     1      1          1      NA        NA        NA
## 3487     2     1      1          3       1         3         1
## 3488    NA    NA     NA         NA      NA        NA        NA
## 3489    NA     2     NA         NA      NA        NA        NA
## 3490    NA     1     NA         NA      NA        NA        NA
## 3491     0    NA     NA         NA      NA        NA        NA
## 3492     6     3      3         20      NA        NA         6
## 3493    NA    NA     NA         NA      NA        NA        NA
## 3494    NA     0     NA         NA      NA        NA        NA
## 3495     2     1      1          1      NA        NA        NA
## 3496     1     1      1          1       1         1        NA
## 3497    NA    NA     NA         NA      NA        NA        NA
## 3498     4    NA     NA         NA      NA        NA        NA
## 3499     0    NA     NA         NA      NA        NA        NA
## 3500    NA    NA     NA         NA      NA        NA         3
## 3501    NA    NA     NA         NA      NA        NA        NA
## 3502    NA     0     NA         NA      NA        NA        NA
## 3503     2     1      1          1      NA        NA        NA
## 3504     1    NA     NA          1      NA         1         1
## 3505     1     2      1          2      NA         1         1
## 3506    NA     1     NA         NA      NA        NA        NA
## 3507    20    17     17          8      23         8         3
## 3508    NA    NA     NA         NA      NA        NA         0
## 3509    NA     1     NA          1       3         1        NA
## 3510    NA    NA     NA         NA      NA        NA        NA
## 3511     4     4      2          6       4         4         2
## 3512    NA     1     NA         NA      NA        NA        NA
## 3513     0    NA     NA         NA      NA        NA        NA
## 3514    11    14      8          8      14         6         8
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516     1     1      0          0      NA        NA        NA
## 3517     2     3      1          1       2        NA        NA
## 3518     3     3      3         15       3         3         1
## 3519    NA    NA     NA         NA      NA        NA        NA
## 3520    NA    NA     NA         NA      NA        NA         2
## 3521    NA     2      2          2       4         1         3
## 3522     8    10     15          6      10         6        10
## 3523     0    NA     NA         NA      NA        NA        NA
## 3524    NA    NA     NA         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526    NA    NA     NA         NA       2        NA         2
## 3527    NA    NA     NA         NA      NA         1        NA
## 3528    NA    NA     NA         NA      NA         1        NA
## 3529     4     2      2          2       2         2         4
## 3530     6     3      3          3       3         3         6
## 3531    NA    NA     NA         NA      NA         0        NA
## 3532    NA    NA      0         NA      NA        NA        NA
## 3533     4     2      4          2       3         1         3
## 3534     2     1      1          1       1         1         1
## 3535     2     1      1          2       2         2         1
## 3536    NA    NA     NA          3      NA        NA        NA
## 3537    NA    NA     NA         NA      NA        NA        NA
## 3538     6     8      8         13       6         6         6
## 3539     8     3      3          3       3         3         6
## 3540    11    11     11         11      14        14        14
## 3541    NA     3     NA          2       2         2         2
## 3542     8    13     11         11       8         8         6
## 3543     2    NA     NA          1       1         1         1
## 3544     2     2     NA          2      NA        NA         2
## 3545     2     2      4         NA       4         2         2
## 3546    NA    NA      2          2       4         2        NA
## 3547    32    NA     NA         NA      NA        NA        NA
## 3548    19    54     48         48      63        38        64
## 3549    35    38     41         32      54        35        38
## 3550     3     8      6          5       6         8         8
## 3551    NA    NA     NA         NA      NA        NA        NA
## 3552    11    14     11         11      17        14        17
## 3553    63    60     46         63      53        35       162
## 3554   201   187    169        127     159       229       162
## 3555     3    NA     NA         NA      NA        NA        NA
## 3556    17    17     21         21      27        17        17
## 3557    44    40     40         55      42        72        38
## 3558     3     2      3          4       4         4         4
## 3559     3     5      5          5       3         3         5
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561    NA     1     NA         NA      NA        NA        NA
## 3562     1     1      1          2       1         1         1
## 3563    NA     1     NA         NA      NA        NA        NA
## 3564    NA    NA      1         NA       1         1        NA
## 3565     0     0      0          0       0         0         0
## 3566     6     5      6          7       7         5         2
## 3567     0    NA     NA         NA      NA        NA        NA
## 3568    NA    NA      2         NA      NA         2        NA
## 3569    NA    NA     NA          0       0         0         0
## 3570     0     0      0          0       0         0         0
## 3571    NA    NA     NA         NA       3         1         3
## 3572    NA    NA     NA         NA       1         1         1
## 3573    NA     1     NA         NA      NA        NA        NA
## 3574     1    NA     NA          1      NA        NA         4
## 3575    NA    NA      0         NA      NA        NA        NA
## 3576    NA     0     NA          0      NA         0        NA
## 3577     1     1      1         NA       1         2         1
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579    NA    NA     NA         NA      NA        NA         0
## 3580    NA     1     NA         NA      NA        NA        NA
## 3581     1    NA     NA          1      NA         3         1
## 3582    NA    NA      0         NA      NA        NA        NA
## 3583    NA     0     NA          0      NA        NA        NA
## 3584     1     1      1         NA       1        NA         1
## 3585    NA    NA     NA         NA      NA        NA        NA
## 3586     1    NA     NA          1      NA        NA         1
## 3587    NA    NA      0         NA      NA        NA        NA
## 3588    NA     0     NA         NA      NA        NA        NA
## 3589     1     1      1         NA       1        NA         1
## 3590    NA     1     NA          3      NA        NA        NA
## 3591     3     6     11          6      11        NA         6
## 3592     0    NA     NA          0       0        NA        NA
## 3593    NA     2      2         NA      NA        NA        NA
## 3594    NA    NA     NA         NA      NA        NA        NA
## 3595    NA     1     NA         NA      NA        NA        NA
## 3596     4    NA     NA          1      NA        NA         1
## 3597    NA    NA      0         NA      NA        NA        NA
## 3598    NA     0      0          1      NA         1         0
## 3599     1     1      1          2       1        NA         1
## 3600    NA    NA     NA         NA      NA        NA        NA
## 3601    NA     1     NA         NA      NA        NA        NA
## 3602     6     3      6          6       4         4         5
## 3603    NA    NA     NA         NA       2         2         2
## 3604    NA    NA     NA         17      NA        NA        NA
## 3605    NA    NA     NA         NA      NA        NA         2
## 3606    NA    NA     NA         NA      NA         1        NA
## 3607     8     8      8         11       6        15         2
## 3608    13    13     13         10       6         6         6
## 3609     3     8      3          3       5         3        NA
## 3610    NA    NA     NA         NA      NA        NA         1
## 3611    NA    NA     NA         NA      NA         1        NA
## 3612    NA    NA     NA          3      NA        NA        NA
## 3613     1    NA     NA         NA      NA        NA        NA
## 3614     2     3      2          1       2         2         1
## 3615    NA    NA      1          1      NA        NA        NA
## 3616     1     1      4          1       1         3         1
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618     1     1      1          1       1         1         1
## 3619    NA     6      3          3      NA         3         6
## 3620    NA    NA     NA         NA      NA        NA         0
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     1     1     NA         NA      NA        NA        NA
## 3623     2     2      2          2      NA        NA        NA
## 3624    NA    NA     NA         NA      NA        NA        NA
## 3625     8    11     15         11      17         6        13
## 3626     8    11     14          6      11        11        14
## 3627     3     2      3          2       3         3        NA
## 3628    13     8     11          8      13         8         8
## 3629     2     2      2          1       3         3         3
## 3630     2     2      4          2       2         4         4
## 3631     3     8      8          6       3        NA         8
## 3632     6     4      2          4       2         4        NA
## 3633    25    25     34         34      34        21        25
## 3634    NA    NA     NA         NA      NA        NA        NA
## 3635    16    13     16         19      13        19        13
## 3636    16    32     32         19      32        22        25
## 3637     5     6      9         14       6         3         8
## 3638    23    23     31         45      31        23        11
## 3639    46    49     63         60      25        42        35
## 3640     4    99    137        123     208        35       130
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642     8    11     13          8       8         8        11
## 3643    13    15     30         32      27        27        17
## 3644    15    25     36         21      25         8        21
## 3645     8     8     10          6      10         4         6
## 3646     2     2      3          3       3         3         2
## 3647     2     2      2          2       2         6        NA
## 3648     2     2      2          2       3         1        NA
## 3649    NA    NA     NA         NA      NA        NA        NA
## 3650     2     2      1          1       1         1         1
## 3651     1    NA      1          1      NA        NA         1
## 3652    NA     1     NA         NA       2        NA         1
## 3653    NA    NA     NA         NA      NA        NA        NA
## 3654     0     0      2          0       0         0         0
## 3655    NA    NA     NA         NA      NA        NA         0
## 3656     2     4      5          4       4         3        NA
## 3657     0    NA     NA         NA       1        NA        NA
## 3658     0     0      0          0       0         0         0
## 3659     1     1      1          1       1         1         1
## 3660    NA    NA     NA         NA      NA         1         1
## 3661    NA    NA     NA         NA       1        NA        NA
## 3662    NA     2      3          1       1         2         1
## 3663     2     1     NA         NA       1        NA        NA
## 3664     3     1     NA          1       3         1         1
## 3665     1     0      1          0       1         0         0
## 3666    NA     1      1          1       1         1         1
## 3667     1     1      1          1       1         3         1
## 3668     0    NA     NA         NA       0        NA        NA
## 3669    NA    NA     NA          1       1         1         1
## 3670     2     1     NA         NA       1        NA        NA
## 3671    NA     1     NA          7       3         1         1
## 3672     1     0      0          0       1        NA         0
## 3673    NA     1      1          1       1         1         1
## 3674    NA     1      1          1       1         1         1
## 3675     0    NA     NA         NA       0        NA        NA
## 3676    NA     2      2          1       2         1         1
## 3677    NA     1     NA          1       3         1         1
## 3678     1     0      0          0       1        NA         0
## 3679    NA     1      1          1       1         1         1
## 3680     1     1      1          1       1         1        NA
## 3681     1    NA     NA          1      NA         1        NA
## 3682     2     1     NA         NA       1        NA        NA
## 3683    NA    NA      3          3       3         6        NA
## 3684    NA    NA      0         NA      NA        NA        NA
## 3685    NA    NA     NA         NA      NA        NA        NA
## 3686     0    NA     NA         NA       0        NA        NA
## 3687    NA     2     NA          1       2         1         4
## 3688     2     1     NA         NA       1        NA        NA
## 3689     6     1      3          4       3         1         4
## 3690     1     1      0          0       1         1         0
## 3691     2     1      1          1       1         1         1
## 3692     1     1      1          1       1         1         1
## 3693     0    NA     NA         NA       0        NA        NA
## 3694    NA    NA     NA         NA       1        NA        NA
## 3695     4     6      5          3       4         3         4
## 3696     0     0     NA         NA      NA        NA        NA
## 3697    NA    NA     NA         NA       1        NA        NA
## 3698    NA    NA     NA         NA      NA         1        NA
## 3699    13     6     15          2       6         4         2
## 3700    16    13     10          6      13         6         3
## 3701    NA    NA     NA          1      NA        NA        NA
## 3702    15    10      8          5      15        13         8
## 3703    NA    NA     NA         NA      NA        NA         1
## 3704    NA    NA     NA         NA      NA         0        NA
## 3705    NA    NA     NA         NA      NA        NA        NA
## 3706    NA     3     NA         NA       3         3         1
## 3707     3     4      2          3       6         4         5
## 3708    NA     0     NA          0       0        NA         1
## 3709     1     3      1          3       3         3         1
## 3710    NA    NA     NA         NA      NA        NA        NA
## 3711     2     1      1          2       2         1         2
## 3712     6    NA      3         NA      NA         8        NA
## 3713     1     1      1         NA       2         1         1
## 3714    NA     0     NA         NA      NA        NA        NA
## 3715     1     1     NA         NA       1         1        NA
## 3716     1    NA     NA         NA      NA         1         1
## 3717    NA    NA     NA         NA      NA        NA        NA
## 3718    NA    NA     NA         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720     2     2     NA          4       2         2         2
## 3721     4     4      4          4       2         4         6
## 3722    NA    NA     NA         NA      NA         1        NA
## 3723    NA    NA     NA          2      NA        NA        NA
## 3724    NA    NA     NA         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726    NA    NA     NA          2       2         2         2
## 3727     8    NA     NA         NA      NA        NA        NA
## 3728    10    48     44         38      29        16        52
## 3729   171   159    165        120     105       111       146
## 3730    11     9     11         20      18        21        15
## 3731    NA    NA     NA         NA      NA        NA        NA
## 3732     3     6      6          6       3         3         6
## 3733     7    42     35         32      21        35         7
## 3734   229   218    162        208     247       155       166
## 3735    17     8     13         13      17        17        21
## 3736    19    17     13         15      21        27        19
## 3737   186   123    118        154     171       156       129
## 3738    12     6      7          4       5         6         6
## 3739     3     2      3          3       2         5         2
## 3740     4     2      6         NA       4         6         2
## 3741     4     2      3          1       3         3         3
## 3742     1     1      1          1       1         1         1
## 3743     1     2      1          1       2         1        NA
## 3744     0     2      0          0       1         0         0
## 3745    NA    NA      1         NA      NA        NA        NA
## 3746     7     7      3          3       7         6         4
## 3747    NA    NA     NA         NA       0        NA        NA
## 3748     2    NA     NA         NA      NA         2         2
## 3749     1    NA     NA          0       1         2         0
## 3750     0     0      0          0       0         0         0
## 3751    NA    NA      1         NA      NA        NA        NA
## 3752    NA    NA     NA         NA       1        NA         1
## 3753    10    10      6         10      10        NA         6
## 3754     5     1     NA         NA      NA        NA        NA
## 3755     1     2      2          4       3         1         4
## 3756     0     2      2          2       3         1         3
## 3757     4     2      5          1       2         2         5
## 3758     5     1      3          5       3         3         3
## 3759    NA    NA     NA         NA      NA        NA        NA
## 3760    NA    NA     NA         NA       0        NA        NA
## 3761     3     3     NA          3       4         6         2
## 3762     2     4     NA         NA      NA        NA        NA
## 3763     1     2      2          1       3         1         1
## 3764     2     2     NA          4       2         2        NA
## 3765     4     2      3          5       2         2         3
## 3766     3     1      3          3      NA         3        NA
## 3767    NA    NA     NA         NA      NA        NA        NA
## 3768    NA    NA     NA         NA       0        NA        NA
## 3769     3     3      6          6       7        10        10
## 3770     1     2      2          1       3         1         1
## 3771    NA    NA     NA          2      NA         2         2
## 3772    NA    NA      3          1       2         2         1
## 3773    NA    NA     NA          3      NA         3         3
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775     2     1     NA         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777     2    NA      2          1      NA         2        NA
## 3778     2     4      2         NA       2        NA         2
## 3779     3     1      3         NA       3        NA        NA
## 3780    NA    NA     NA         NA       0        NA        NA
## 3781    10    10     10         10      10        10         9
## 3782     2     1     NA         NA      NA        NA        NA
## 3783     4     2      2          1       3         1         1
## 3784     3     1      2          5       2         3         2
## 3785     8     2      7          3       4         2         5
## 3786     5     4      5          5       3         5         3
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788    NA    NA     NA         NA       0        NA        NA
## 3789    NA     2     NA         NA      NA        NA        NA
## 3790     1     1      1         NA       1         1         3
## 3791    NA    NA      0         NA      NA        NA        NA
## 3792    NA    NA     NA          6      NA        NA        NA
## 3793     8     3      8          5      NA         3        NA
## 3794    NA    NA     NA         NA      NA        NA         3
## 3795    NA    NA     NA         NA      NA         1        NA
## 3796     6    15      2          6      13        11         2
## 3797    13    13      3          3      16        22        10
## 3798    NA    NA     NA          0      NA        NA        NA
## 3799    NA    NA      7         NA      NA        NA        NA
## 3800     8     3      5         NA      NA        NA         5
## 3801    NA    NA     NA         NA      NA        NA         1
## 3802    NA    NA     NA         NA      NA         0        NA
## 3803    NA     1     NA         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806     2    NA      1         NA      NA        NA        NA
## 3807     1    NA     NA         NA      NA        NA        NA
## 3808    15     8     NA         13       6        11        10
## 3809     1    NA     NA         NA       0        NA         0
## 3810     1     2      2          1       3         1         2
## 3811    NA    NA     NA         NA      NA        NA        NA
## 3812     1     1      1          1       1         1         1
## 3813     3     3     NA          3      48        NA         3
## 3814    NA    NA      1         NA      NA        NA        NA
## 3815    NA     0      0         NA      NA        NA         0
## 3816     1     1      1         NA      NA        NA         1
## 3817     1    NA      2         NA      NA         1         1
## 3818    NA    NA     NA         NA      NA        NA        NA
## 3819     6     6      6         NA       2         4         2
## 3820     8     8      8          6       6         4         6
## 3821    NA    NA     NA          3      NA        NA        NA
## 3822    30    NA     19         42       2        11         8
## 3823    NA    NA     NA          3       3         3         7
## 3824   136    86     92        155     114        79       120
## 3825     2    14     11         33      36         2        21
## 3826    NA    NA     NA         NA      NA        NA        NA
## 3827    NA    NA     NA         NA      NA        NA        NA
## 3828    42    NA     14         56       7        28        42
## 3829   250   271    468        377     402        11       380
## 3830    NA    11     11         40      25        13        27
## 3831   467    32    213        395     404        13       207
## 3832     4     5      4          4       4         4         7
## 3833    12    NA      2          9       5         3         5
## 3834    20    NA      8         14      10         6         6
## 3835    NA     1      4          3       2         2         1
## 3836    NA    NA      1         NA      NA        NA        NA
## 3837     1     1      1          1       1         1         1
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA       7         1        NA
## 3840     0     0      0          0       1         0         1
## 3841    NA    NA     NA         NA      NA         1        NA
## 3842     3     8      4         NA      10        10        10
## 3843     0    NA     NA         NA       1        NA        NA
## 3844     2     2      2         NA       2        NA         2
## 3845    NA     1      1          0       1        NA         1
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     0     0      0          0       0         0         0
## 3848    NA    NA      1         NA      NA        NA        NA
## 3849    NA    NA     NA         NA       1        NA        NA
## 3850    NA    NA     NA         NA      NA         1        NA
## 3851     1     1     NA         NA      NA        NA        NA
## 3852    NA     6     NA          6      14        NA         6
## 3853    NA    NA     NA         NA      NA        NA         6
## 3854    NA    NA     NA         NA      NA        NA         4
## 3855     2    NA      1         NA      NA        NA        NA
## 3856     2     0     NA          3       5        NA         3
## 3857    NA    NA     21          3      NA         2         6
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA         1        NA
## 3861     1     1     NA         NA      NA        NA         3
## 3862    NA     8      3          8      14        NA         1
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864     1    NA      1         NA      NA        NA        NA
## 3865     4     0     NA          3       4        NA         3
## 3866     2     4      6         14      NA        NA         6
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA          5      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA         1        NA
## 3871    NA    NA      3          3      14         3         4
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873     2    NA      1         NA      NA        NA        NA
## 3874     2     0      1          2       4         2         2
## 3875    NA     2      4          3      NA         2        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1     4     NA         NA      NA        NA        NA
## 3878    NA    NA      3          3       8        NA        NA
## 3879    NA    NA     NA         NA      NA        NA         4
## 3880     0     0     NA          2       2        NA        NA
## 3881    NA    NA      4         NA       2        NA         2
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA      3         NA      NA         1         1
## 3884     1     1     NA         NA      NA        NA        NA
## 3885     3    11     NA          8      17        NA        12
## 3886    NA    NA     NA         NA      NA        NA         4
## 3887     3    NA      1         NA      NA        NA         1
## 3888     3     3     NA          3       4         2         3
## 3889    11    NA     12         14      NA         2         8
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA          2      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA     2      1         NA       2        NA         1
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA       1        NA        NA
## 3896    NA    NA     NA         NA      NA         1        NA
## 3897     2     2      2          2       2         2         2
## 3898     3     3      3          3       3         3         3
## 3899    NA    NA     NA          1      NA        NA        NA
## 3900    NA    NA     NA         NA      NA         0        NA
## 3901    NA     1     NA         NA      NA        NA        NA
## 3902    NA    NA     NA          1      NA        NA        NA
## 3903    NA     1     NA         NA      NA        NA         1
## 3904     3     6      5          7       7         1         4
## 3905    NA     0     NA          1      NA        NA        NA
## 3906    NA     3      1          3       2         3         3
## 3907     2    NA     NA         NA      NA        NA        NA
## 3908     0    NA     NA         NA      NA        NA        NA
## 3909     2     2      2          2       2         1         2
## 3910     6     6      8         14       6         3        14
## 3911    NA    NA      1         NA      NA        NA        NA
## 3912    NA    NA     NA          0      NA        NA         0
## 3913    NA    NA     NA          1      NA         1         1
## 3914    NA    NA     NA         NA      NA        NA        NA
## 3915    NA    NA     NA          2      NA        NA         2
## 3916    NA    NA     NA         NA      NA        NA        NA
## 3917     4     2      8          2       2        NA        NA
## 3918    NA     6     NA         NA       6        NA        NA
## 3919     6     2      6          2      NA        NA        NA
## 3920    NA    NA     NA         NA      NA        NA        NA
## 3921    NA    NA     NA         NA      NA        NA        NA
## 3922     6    NA      4          8      NA         2        NA
## 3923    NA     4     NA         11       2         2        NA
## 3924    NA    NA     NA         NA      NA        NA        NA
## 3925    NA    NA     NA          3       3         3        NA
## 3926    44    51     25         70      44        29        41
## 3927     2     8      5         14      11         2        23
## 3928    NA    NA     NA         NA      NA        NA        NA
## 3929    NA    NA     49         NA      NA        NA        NA
## 3930    95   151    144        137      85       173       106
## 3931    NA     6      8          8       4         8         4
## 3932    17    13     53         34      NA        NA        NA
## 3933    63    91     91         72     137       114        82
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA     1      1          2       1        NA        NA
## 3936    NA     1     NA         NA      NA        NA        NA
## 3937     1     2      1          1       1         1         1
## 3938    NA    NA     NA          1      NA        NA        NA
## 3939     3     3      2         NA       1        NA         1
## 3940    NA     1     NA         NA      NA        NA        NA
## 3941     3     1      2          2       1         2         2
## 3942     4     0      2          5       2         2         4
## 3943    NA    NA      0         NA      NA        NA        NA
## 3944     4     6      6          8       8         2        NA
## 3945    NA    NA     NA          1       0        NA         1
## 3946     2     2     NA          4       2        NA         2
## 3947     1     1      1         NA       1        NA         1
## 3948     1     0      0          1       0         0         1
## 3949    NA    NA     NA         NA       1         1        NA
## 3950    NA    NA     NA         NA      NA         1        NA
## 3951     1    NA     NA         NA      NA        NA        NA
## 3952     3     1      3         NA       1        NA         1
## 3953     4     4      4          4       7        NA         4
## 3954     2     0     NA          0       0        NA        NA
## 3955     2    NA     NA          2       1        NA         1
## 3956    NA    NA     NA         NA      NA        NA         1
## 3957    NA    NA     NA         NA      NA        NA        NA
## 3958    NA    NA     NA         NA      NA         1        NA
## 3959     1    NA     NA         NA      NA        NA        NA
## 3960    NA     6     NA         NA       1        NA         1
## 3961    NA    NA     18          4       4         4        NA
## 3962     2    NA     NA         NA       0        NA        NA
## 3963     2    NA     NA         NA       1        NA         1
## 3964    NA    NA     NA         NA      NA        NA         1
## 3965    NA    NA     NA         NA      NA        NA        NA
## 3966    NA    NA     NA         NA      NA         1        NA
## 3967    NA     1     NA          3       1        NA         1
## 3968    NA    NA     NA          4      NA        NA         4
## 3969     0    NA     NA         NA       1        NA        NA
## 3970     2    NA     NA         NA       1        NA         1
## 3971    NA    NA     NA         NA      NA        NA         1
## 3972     1    NA     NA         NA      NA        NA        NA
## 3973    NA    NA     NA         NA      NA        NA        NA
## 3974     4    NA      4          4       4        NA        NA
## 3975     0    NA     NA         NA      NA        NA         0
## 3976    NA    NA     NA         NA      NA        NA        NA
## 3977    NA    NA     NA         NA      NA        NA        NA
## 3978    NA    NA     NA         NA      NA         1        NA
## 3979     1    NA     NA         NA      NA        NA        NA
## 3980    NA     6     NA         NA       1         3         1
## 3981     4    NA     NA          4      NA        NA         7
## 3982     3    NA      0         NA       1         0         0
## 3983     2     4      2         NA       1         2         1
## 3984    NA    NA     NA         NA      NA        NA         1
## 3985    NA    NA     NA         NA      NA        NA        NA
## 3986    NA    NA      1         NA      NA        NA        NA
## 3987     4     3      3         NA       6        NA         3
## 3988     0     0     NA         NA      NA        NA        NA
## 3989    NA    NA      0         NA      NA        NA        NA
## 3990     8     8      8         NA       8         3        NA
## 3991     5     4      5          1       5         4         1
## 3992    NA    NA      3         NA      NA         2         2
## 3993    NA    NA     NA         NA      NA        NA         5
## 3994    NA    NA     NA         NA      NA         1         4
## 3995    11    11     17         17      15         6         4
## 3996    16    13     29         25      19        10         6
## 3997    NA    NA     NA          1      NA        NA        NA
## 3998    25    14     25          7      11        11        11
## 3999    18     8     10         13       5         8         5
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Year                : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  77737 77737 77737 77737 77737 77737 77737 77737 77737 77737 ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamano.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamano              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : int  NA NA NA NA NA NA 1 NA 3 NA ...
##  $ Febrero             : int  NA 2 NA NA NA NA NA 1 3 NA ...
##  $ Marzo               : int  NA 8 3 NA NA 1 NA NA 4 NA ...
##  $ Abril               : int  NA 4 6 NA NA NA NA 1 4 NA ...
##  $ Mayo                : int  NA 4 3 NA NA NA 0 NA 4 NA ...
##  $ Junio               : int  NA 2 3 NA NA NA NA 1 4 0 ...
##  $ Julio               : int  NA 2 3 NA NA NA 0 NA 4 NA ...
##  $ Agosto              : int  NA 2 3 NA NA NA NA 1 7 NA ...
##  $ Septiembre          : int  NA 2 3 NA NA NA NA 1 4 NA ...
##  $ Octubre             : int  NA 2 3 NA NA NA 0 NA 3 NA ...
##  $ Noviembre           : int  NA 4 3 NA 0 NA NA NA 1 NA ...
##  $ Diciembre           : int  1 2 3 1 NA NA NA NA 3 NA ...

Limpiar todos los nombres de una tabla.

#install.packages("janitor")
library(janitor)
base_de_datos_1 <- clean_names(base_de_datos)

Exportar csv.

write.csv(base_de_datos, file="bd_arca_limpia.csv", row.names = FALSE)

Conclusiones

En conclusión, al trabajar con una base de datos necesitamos ver su estructura y encontrar datos NA para así poder limpiarlos al igual que los nombres de las columnas para poder trabajar mejor con la información y poder analizarla al exportar la base de datos limpia. Con ello, podemos usar las funciones anteriores para obtener las medidas de tendencia central, acomodar, filtrar y/o seleccionar datos para poder interpretar los datos más relevantes. En este documento podemos notar estas diversas funciones para analizar las ventas de cada mes con las sucursales de cada tienda de abarrotes y su tamaño.